wcd9xxx-core.c 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2011-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/kernel.h>
  5. #include <linux/module.h>
  6. #include <linux/of_device.h>
  7. #include <linux/slab.h>
  8. #include <linux/ratelimit.h>
  9. #include <linux/mfd/core.h>
  10. #include <linux/delay.h>
  11. #include <linux/gpio.h>
  12. #include <linux/debugfs.h>
  13. #include <linux/i2c.h>
  14. #include <linux/regmap.h>
  15. #include <linux/mfd/wcd9xxx/wcd9xxx_registers.h>
  16. #include <sound/soc.h>
  17. #include <asoc/core.h>
  18. #include <asoc/pdata.h>
  19. #include <asoc/msm-cdc-pinctrl.h>
  20. #include <asoc/msm-cdc-supply.h>
  21. #include <asoc/wcd9xxx-irq.h>
  22. #include "wcd9xxx-utils.h"
  23. #include <asoc/wcd9xxx-regmap.h>
  24. #include <asoc/wcd9xxx-slimslave.h>
  25. #define WCD9XXX_REGISTER_START_OFFSET 0x800
  26. #define WCD9XXX_SLIM_RW_MAX_TRIES 3
  27. #define SLIMBUS_PRESENT_TIMEOUT 100
  28. #define MAX_WCD9XXX_DEVICE 4
  29. #define WCD9XXX_I2C_GSBI_SLAVE_ID "3-000d"
  30. #define WCD9XXX_I2C_TOP_SLAVE_ADDR 0x0d
  31. #define WCD9XXX_ANALOG_I2C_SLAVE_ADDR 0x77
  32. #define WCD9XXX_DIGITAL1_I2C_SLAVE_ADDR 0x66
  33. #define WCD9XXX_DIGITAL2_I2C_SLAVE_ADDR 0x55
  34. #define WCD9XXX_I2C_TOP_LEVEL 0
  35. #define WCD9XXX_I2C_ANALOG 1
  36. #define WCD9XXX_I2C_DIGITAL_1 2
  37. #define WCD9XXX_I2C_DIGITAL_2 3
  38. /*
  39. * Number of return values needs to be checked for each
  40. * registration of Slimbus of I2C bus for each codec
  41. */
  42. #define NUM_WCD9XXX_REG_RET 5
  43. #define SLIM_USR_MC_REPEAT_CHANGE_VALUE 0x0
  44. #define SLIM_REPEAT_WRITE_MAX_SLICE 16
  45. #define REG_BYTES 2
  46. #define VAL_BYTES 1
  47. #define WCD9XXX_PAGE_NUM(reg) (((reg) >> 8) & 0xff)
  48. #define WCD9XXX_PAGE_SIZE 256
  49. struct wcd9xxx_i2c {
  50. struct i2c_client *client;
  51. struct i2c_msg xfer_msg[2];
  52. struct mutex xfer_lock;
  53. int mod_id;
  54. };
  55. static struct regmap_config wcd9xxx_base_regmap_config = {
  56. .reg_bits = 16,
  57. .val_bits = 8,
  58. .can_multi_write = true,
  59. };
  60. static struct regmap_config wcd9xxx_i2c_base_regmap_config = {
  61. .reg_bits = 16,
  62. .val_bits = 8,
  63. .can_multi_write = false,
  64. .use_single_rw = true,
  65. };
  66. static u8 wcd9xxx_pgd_la;
  67. static u8 wcd9xxx_inf_la;
  68. static const int wcd9xxx_cdc_types[] = {
  69. [WCD9XXX] = WCD9XXX,
  70. [WCD9330] = WCD9330,
  71. [WCD9335] = WCD9335,
  72. [WCD934X] = WCD934X,
  73. };
  74. static const struct of_device_id wcd9xxx_of_match[] = {
  75. { .compatible = "qcom,tavil-i2c",
  76. .data = (void *)&wcd9xxx_cdc_types[WCD934X]},
  77. { .compatible = "qcom,tasha-i2c-pgd",
  78. .data = (void *)&wcd9xxx_cdc_types[WCD9335]},
  79. { .compatible = "qcom,wcd9xxx-i2c",
  80. .data = (void *)&wcd9xxx_cdc_types[WCD9330]},
  81. { }
  82. };
  83. MODULE_DEVICE_TABLE(of, wcd9xxx_of_match);
  84. static int wcd9xxx_slim_device_up(struct slim_device *sldev);
  85. static int wcd9xxx_slim_device_down(struct slim_device *sldev);
  86. struct wcd9xxx_i2c wcd9xxx_modules[MAX_WCD9XXX_DEVICE];
  87. /*
  88. * wcd9xxx_vote_ondemand_regulator: Initialize codec dynamic supplies
  89. *
  90. * @wcd9xxx: Pointer to wcd9xxx structure
  91. * @wcd9xxx_pdata: Pointer to wcd9xxx_pdata structure
  92. * @supply_name: supply parameter to initialize regulator
  93. * @enable: flag to initialize/uninitialize supply
  94. *
  95. * Return error code if supply init is failed
  96. */
  97. int wcd9xxx_vote_ondemand_regulator(struct wcd9xxx *wcd9xxx,
  98. struct wcd9xxx_pdata *pdata,
  99. const char *supply_name,
  100. bool enable)
  101. {
  102. int i, rc, index = -EINVAL;
  103. pr_debug("%s: enable %d\n", __func__, enable);
  104. for (i = 0; i < wcd9xxx->num_of_supplies; ++i) {
  105. if (pdata->regulator[i].ondemand &&
  106. wcd9xxx->supplies[i].supply &&
  107. !strcmp(wcd9xxx->supplies[i].supply, supply_name)) {
  108. index = i;
  109. break;
  110. }
  111. }
  112. if (index < 0) {
  113. pr_err("%s: no matching regulator found\n", __func__);
  114. return -EINVAL;
  115. }
  116. if (enable) {
  117. rc = regulator_set_voltage(wcd9xxx->supplies[index].consumer,
  118. pdata->regulator[index].min_uV,
  119. pdata->regulator[index].max_uV);
  120. if (rc) {
  121. pr_err("%s: set regulator voltage failed for %s, err:%d\n",
  122. __func__, supply_name, rc);
  123. return rc;
  124. }
  125. rc = regulator_set_load(wcd9xxx->supplies[index].consumer,
  126. pdata->regulator[index].optimum_uA);
  127. if (rc < 0) {
  128. pr_err("%s: set regulator optimum mode failed for %s, err:%d\n",
  129. __func__, supply_name, rc);
  130. return rc;
  131. }
  132. } else {
  133. regulator_set_voltage(wcd9xxx->supplies[index].consumer, 0,
  134. pdata->regulator[index].max_uV);
  135. regulator_set_load(wcd9xxx->supplies[index].consumer, 0);
  136. }
  137. return 0;
  138. }
  139. EXPORT_SYMBOL(wcd9xxx_vote_ondemand_regulator);
  140. static int wcd9xxx_slim_multi_reg_write(struct wcd9xxx *wcd9xxx,
  141. const void *data, size_t count)
  142. {
  143. unsigned int reg;
  144. struct device *dev;
  145. u8 val[WCD9XXX_PAGE_SIZE];
  146. int ret = 0;
  147. int i = 0;
  148. int n = 0;
  149. unsigned int page_num;
  150. size_t num_regs = (count / (REG_BYTES + VAL_BYTES));
  151. struct wcd9xxx_reg_val *bulk_reg;
  152. u8 *buf;
  153. dev = wcd9xxx->dev;
  154. if (!data) {
  155. dev_err(dev, "%s: data is NULL\n", __func__);
  156. return -EINVAL;
  157. }
  158. if (num_regs == 0)
  159. return -EINVAL;
  160. bulk_reg = kzalloc(num_regs * (sizeof(struct wcd9xxx_reg_val)),
  161. GFP_KERNEL);
  162. if (!bulk_reg)
  163. return -ENOMEM;
  164. buf = (u8 *)data;
  165. reg = *(u16 *)buf;
  166. page_num = WCD9XXX_PAGE_NUM(reg);
  167. for (i = 0, n = 0; n < num_regs; i++, n++) {
  168. reg = *(u16 *)buf;
  169. if (page_num != WCD9XXX_PAGE_NUM(reg)) {
  170. ret = wcd9xxx_slim_bulk_write(wcd9xxx, bulk_reg,
  171. i, false);
  172. page_num = WCD9XXX_PAGE_NUM(reg);
  173. i = 0;
  174. }
  175. buf += REG_BYTES;
  176. val[i] = *buf;
  177. buf += VAL_BYTES;
  178. bulk_reg[i].reg = reg;
  179. bulk_reg[i].buf = &val[i];
  180. bulk_reg[i].bytes = 1;
  181. }
  182. ret = wcd9xxx_slim_bulk_write(wcd9xxx, bulk_reg,
  183. i, false);
  184. if (ret)
  185. dev_err(dev, "%s: error writing bulk regs\n",
  186. __func__);
  187. kfree(bulk_reg);
  188. return ret;
  189. }
  190. /*
  191. * wcd9xxx_interface_reg_read: Read slim interface registers
  192. *
  193. * @wcd9xxx: Pointer to wcd9xxx structure
  194. * @reg: register adderss
  195. *
  196. * Returns register value in success and negative error code in case of failure
  197. */
  198. int wcd9xxx_interface_reg_read(struct wcd9xxx *wcd9xxx, unsigned short reg)
  199. {
  200. u8 val;
  201. int ret;
  202. mutex_lock(&wcd9xxx->io_lock);
  203. ret = wcd9xxx->read_dev(wcd9xxx, reg, 1, (void *)&val,
  204. true);
  205. if (ret < 0)
  206. dev_err(wcd9xxx->dev, "%s: Codec read 0x%x failed\n",
  207. __func__, reg);
  208. else
  209. dev_dbg(wcd9xxx->dev, "%s: Read 0x%02x from 0x%x\n",
  210. __func__, val, reg);
  211. mutex_unlock(&wcd9xxx->io_lock);
  212. if (ret < 0)
  213. return ret;
  214. else
  215. return val;
  216. }
  217. EXPORT_SYMBOL(wcd9xxx_interface_reg_read);
  218. /*
  219. * wcd9xxx_interface_reg_write: Write slim interface registers
  220. *
  221. * @wcd9xxx: Pointer to wcd9xxx structure
  222. * @reg: register adderss
  223. * @val: value of the register to be written
  224. *
  225. * Returns 0 for success and negative error code in case of failure
  226. */
  227. int wcd9xxx_interface_reg_write(struct wcd9xxx *wcd9xxx, unsigned short reg,
  228. u8 val)
  229. {
  230. int ret;
  231. mutex_lock(&wcd9xxx->io_lock);
  232. ret = wcd9xxx->write_dev(wcd9xxx, reg, 1, (void *)&val, true);
  233. dev_dbg(wcd9xxx->dev, "%s: Write %02x to 0x%x ret(%d)\n",
  234. __func__, val, reg, ret);
  235. mutex_unlock(&wcd9xxx->io_lock);
  236. return ret;
  237. }
  238. EXPORT_SYMBOL(wcd9xxx_interface_reg_write);
  239. static int wcd9xxx_slim_read_device(struct wcd9xxx *wcd9xxx, unsigned short reg,
  240. int bytes, void *dest, bool interface)
  241. {
  242. int ret;
  243. struct slim_ele_access msg;
  244. int slim_read_tries = WCD9XXX_SLIM_RW_MAX_TRIES;
  245. msg.start_offset = WCD9XXX_REGISTER_START_OFFSET + reg;
  246. msg.num_bytes = bytes;
  247. msg.comp = NULL;
  248. if (!wcd9xxx->dev_up) {
  249. dev_dbg_ratelimited(
  250. wcd9xxx->dev, "%s: No read allowed. dev_up = %d\n",
  251. __func__, wcd9xxx->dev_up);
  252. return 0;
  253. }
  254. while (1) {
  255. mutex_lock(&wcd9xxx->xfer_lock);
  256. ret = slim_request_val_element(interface ?
  257. wcd9xxx->slim_slave : wcd9xxx->slim,
  258. &msg, dest, bytes);
  259. mutex_unlock(&wcd9xxx->xfer_lock);
  260. if (likely(ret == 0) || (--slim_read_tries == 0))
  261. break;
  262. usleep_range(5000, 5100);
  263. }
  264. if (ret)
  265. dev_err(wcd9xxx->dev, "%s: Error, Codec read failed (%d)\n",
  266. __func__, ret);
  267. return ret;
  268. }
  269. /*
  270. * Interface specifies whether the write is to the interface or general
  271. * registers.
  272. */
  273. static int wcd9xxx_slim_write_device(struct wcd9xxx *wcd9xxx,
  274. unsigned short reg, int bytes, void *src, bool interface)
  275. {
  276. int ret;
  277. struct slim_ele_access msg;
  278. int slim_write_tries = WCD9XXX_SLIM_RW_MAX_TRIES;
  279. msg.start_offset = WCD9XXX_REGISTER_START_OFFSET + reg;
  280. msg.num_bytes = bytes;
  281. msg.comp = NULL;
  282. if (!wcd9xxx->dev_up) {
  283. dev_dbg_ratelimited(
  284. wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
  285. __func__, wcd9xxx->dev_up);
  286. return 0;
  287. }
  288. while (1) {
  289. mutex_lock(&wcd9xxx->xfer_lock);
  290. ret = slim_change_val_element(interface ?
  291. wcd9xxx->slim_slave : wcd9xxx->slim,
  292. &msg, src, bytes);
  293. mutex_unlock(&wcd9xxx->xfer_lock);
  294. if (likely(ret == 0) || (--slim_write_tries == 0))
  295. break;
  296. usleep_range(5000, 5100);
  297. }
  298. if (ret)
  299. pr_err("%s: Error, Codec write failed (%d)\n", __func__, ret);
  300. return ret;
  301. }
  302. static int wcd9xxx_slim_get_allowed_slice(struct wcd9xxx *wcd9xxx,
  303. int bytes)
  304. {
  305. int allowed_sz = bytes;
  306. if (likely(bytes == SLIM_REPEAT_WRITE_MAX_SLICE))
  307. allowed_sz = 16;
  308. else if (bytes >= 12)
  309. allowed_sz = 12;
  310. else if (bytes >= 8)
  311. allowed_sz = 8;
  312. else if (bytes >= 6)
  313. allowed_sz = 6;
  314. else if (bytes >= 4)
  315. allowed_sz = 4;
  316. else
  317. allowed_sz = bytes;
  318. return allowed_sz;
  319. }
  320. /*
  321. * wcd9xxx_slim_write_repeat: Write the same register with multiple values
  322. * @wcd9xxx: handle to wcd core
  323. * @reg: register to be written
  324. * @bytes: number of bytes to be written to reg
  325. * @src: buffer with data content to be written to reg
  326. * This API will write reg with bytes from src in a single slimbus
  327. * transaction. All values from 1 to 16 are supported by this API.
  328. */
  329. int wcd9xxx_slim_write_repeat(struct wcd9xxx *wcd9xxx, unsigned short reg,
  330. int bytes, void *src)
  331. {
  332. int ret = 0, bytes_to_write = bytes, bytes_allowed;
  333. struct slim_ele_access slim_msg;
  334. mutex_lock(&wcd9xxx->io_lock);
  335. if (wcd9xxx->type == WCD9335 || wcd9xxx->type == WCD934X) {
  336. ret = wcd9xxx_page_write(wcd9xxx, &reg);
  337. if (ret)
  338. goto done;
  339. }
  340. slim_msg.start_offset = WCD9XXX_REGISTER_START_OFFSET + reg;
  341. slim_msg.comp = NULL;
  342. if (unlikely(bytes > SLIM_REPEAT_WRITE_MAX_SLICE)) {
  343. dev_err(wcd9xxx->dev, "%s: size %d not supported\n",
  344. __func__, bytes);
  345. ret = -EINVAL;
  346. goto done;
  347. }
  348. if (!wcd9xxx->dev_up) {
  349. dev_dbg_ratelimited(
  350. wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
  351. __func__, wcd9xxx->dev_up);
  352. ret = 0;
  353. goto done;
  354. }
  355. while (bytes_to_write > 0) {
  356. bytes_allowed = wcd9xxx_slim_get_allowed_slice(wcd9xxx,
  357. bytes_to_write);
  358. slim_msg.num_bytes = bytes_allowed;
  359. mutex_lock(&wcd9xxx->xfer_lock);
  360. ret = slim_user_msg(wcd9xxx->slim, wcd9xxx->slim->laddr,
  361. SLIM_MSG_MT_DEST_REFERRED_USER,
  362. SLIM_USR_MC_REPEAT_CHANGE_VALUE,
  363. &slim_msg, src, bytes_allowed);
  364. mutex_unlock(&wcd9xxx->xfer_lock);
  365. if (ret) {
  366. dev_err(wcd9xxx->dev, "%s: failed, ret = %d\n",
  367. __func__, ret);
  368. break;
  369. }
  370. bytes_to_write = bytes_to_write - bytes_allowed;
  371. src = ((u8 *)src) + bytes_allowed;
  372. }
  373. done:
  374. mutex_unlock(&wcd9xxx->io_lock);
  375. return ret;
  376. }
  377. EXPORT_SYMBOL(wcd9xxx_slim_write_repeat);
  378. /*
  379. * wcd9xxx_slim_reserve_bw: API to reserve the slimbus bandwidth
  380. * @wcd9xxx: Handle to the wcd9xxx core
  381. * @bw_ops: value of the bandwidth that is requested
  382. * @commit: Flag to indicate if bandwidth change is to be committed
  383. * right away
  384. */
  385. int wcd9xxx_slim_reserve_bw(struct wcd9xxx *wcd9xxx,
  386. u32 bw_ops, bool commit)
  387. {
  388. if (!wcd9xxx || !wcd9xxx->slim) {
  389. pr_err("%s: Invalid handle to %s\n",
  390. __func__,
  391. (!wcd9xxx) ? "wcd9xxx" : "slim_device");
  392. return -EINVAL;
  393. }
  394. return slim_reservemsg_bw(wcd9xxx->slim, bw_ops, commit);
  395. }
  396. EXPORT_SYMBOL(wcd9xxx_slim_reserve_bw);
  397. /*
  398. * wcd9xxx_slim_bulk_write: API to write multiple registers with one descriptor
  399. * @wcd9xxx: Handle to the wcd9xxx core
  400. * @wcd9xxx_reg_val: structure holding register and values to be written
  401. * @size: Indicates number of messages to be written with one descriptor
  402. * @is_interface: Indicates whether the register is for slim interface or for
  403. * general registers.
  404. * @return: returns 0 if success or error information to the caller in case
  405. * of failure.
  406. */
  407. int wcd9xxx_slim_bulk_write(struct wcd9xxx *wcd9xxx,
  408. struct wcd9xxx_reg_val *bulk_reg,
  409. unsigned int size, bool is_interface)
  410. {
  411. int ret, i;
  412. struct slim_val_inf *msgs;
  413. unsigned short reg;
  414. if (!bulk_reg || !size || !wcd9xxx) {
  415. pr_err("%s: Invalid parameters\n", __func__);
  416. return -EINVAL;
  417. }
  418. if (!wcd9xxx->dev_up) {
  419. dev_dbg_ratelimited(
  420. wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
  421. __func__, wcd9xxx->dev_up);
  422. return 0;
  423. }
  424. msgs = kzalloc(size * (sizeof(struct slim_val_inf)), GFP_KERNEL);
  425. if (!msgs) {
  426. ret = -ENOMEM;
  427. goto mem_fail;
  428. }
  429. mutex_lock(&wcd9xxx->io_lock);
  430. reg = bulk_reg->reg;
  431. for (i = 0; i < size; i++) {
  432. msgs[i].start_offset = WCD9XXX_REGISTER_START_OFFSET +
  433. (bulk_reg->reg & 0xFF);
  434. msgs[i].num_bytes = bulk_reg->bytes;
  435. msgs[i].wbuf = bulk_reg->buf;
  436. bulk_reg++;
  437. }
  438. ret = wcd9xxx_page_write(wcd9xxx, &reg);
  439. if (ret) {
  440. pr_err("%s: Page write error for reg: 0x%x\n",
  441. __func__, reg);
  442. goto err;
  443. }
  444. ret = slim_bulk_msg_write(is_interface ?
  445. wcd9xxx->slim_slave : wcd9xxx->slim,
  446. SLIM_MSG_MT_CORE,
  447. SLIM_MSG_MC_CHANGE_VALUE, msgs, size,
  448. NULL, NULL);
  449. if (ret)
  450. pr_err("%s: Error, Codec bulk write failed (%d)\n",
  451. __func__, ret);
  452. /* 100 usec sleep is needed as per HW requirement */
  453. usleep_range(100, 110);
  454. err:
  455. mutex_unlock(&wcd9xxx->io_lock);
  456. kfree(msgs);
  457. mem_fail:
  458. return ret;
  459. }
  460. EXPORT_SYMBOL(wcd9xxx_slim_bulk_write);
  461. static int wcd9xxx_num_irq_regs(const struct wcd9xxx *wcd9xxx)
  462. {
  463. return (wcd9xxx->codec_type->num_irqs / 8) +
  464. ((wcd9xxx->codec_type->num_irqs % 8) ? 1 : 0);
  465. }
  466. static int wcd9xxx_regmap_init_cache(struct wcd9xxx *wcd9xxx)
  467. {
  468. struct regmap_config *regmap_config;
  469. int rc;
  470. regmap_config = wcd9xxx_get_regmap_config(wcd9xxx->type);
  471. if (!regmap_config) {
  472. dev_err(wcd9xxx->dev, "regmap config is not defined\n");
  473. return -EINVAL;
  474. }
  475. rc = regmap_reinit_cache(wcd9xxx->regmap, regmap_config);
  476. if (rc != 0) {
  477. dev_err(wcd9xxx->dev, "%s:Failed to reinit register cache: %d\n",
  478. __func__, rc);
  479. }
  480. return rc;
  481. }
  482. static int wcd9xxx_device_init(struct wcd9xxx *wcd9xxx)
  483. {
  484. int ret = 0, i;
  485. struct wcd9xxx_core_resource *core_res = &wcd9xxx->core_res;
  486. regmap_patch_fptr regmap_apply_patch = NULL;
  487. mutex_init(&wcd9xxx->io_lock);
  488. mutex_init(&wcd9xxx->xfer_lock);
  489. mutex_init(&wcd9xxx->reset_lock);
  490. ret = wcd9xxx_bringup(wcd9xxx->dev);
  491. if (ret) {
  492. ret = -EPROBE_DEFER;
  493. goto err_bring_up;
  494. }
  495. wcd9xxx->codec_type = devm_kzalloc(wcd9xxx->dev,
  496. sizeof(struct wcd9xxx_codec_type), GFP_KERNEL);
  497. if (!wcd9xxx->codec_type) {
  498. ret = -ENOMEM;
  499. goto err_bring_up;
  500. }
  501. ret = wcd9xxx_get_codec_info(wcd9xxx->dev);
  502. if (ret) {
  503. ret = -EPROBE_DEFER;
  504. goto fail_cdc_fill;
  505. }
  506. wcd9xxx->version = wcd9xxx->codec_type->version;
  507. if (!wcd9xxx->codec_type->dev || !wcd9xxx->codec_type->size)
  508. goto fail_cdc_fill;
  509. core_res->parent = wcd9xxx;
  510. core_res->dev = wcd9xxx->dev;
  511. core_res->intr_table = wcd9xxx->codec_type->intr_tbl;
  512. core_res->intr_table_size = wcd9xxx->codec_type->intr_tbl_size;
  513. for (i = 0; i < WCD9XXX_INTR_REG_MAX; i++)
  514. wcd9xxx->core_res.intr_reg[i] =
  515. wcd9xxx->codec_type->intr_reg[i];
  516. wcd9xxx_core_res_init(&wcd9xxx->core_res,
  517. wcd9xxx->codec_type->num_irqs,
  518. wcd9xxx_num_irq_regs(wcd9xxx),
  519. wcd9xxx->regmap);
  520. if (wcd9xxx_core_irq_init(&wcd9xxx->core_res))
  521. goto err;
  522. ret = wcd9xxx_regmap_init_cache(wcd9xxx);
  523. if (ret)
  524. goto err_irq;
  525. regmap_apply_patch = wcd9xxx_get_regmap_reg_patch(
  526. wcd9xxx->type);
  527. if (regmap_apply_patch) {
  528. ret = regmap_apply_patch(wcd9xxx->regmap,
  529. wcd9xxx->version);
  530. if (ret)
  531. dev_err(wcd9xxx->dev,
  532. "Failed to register patch: %d\n", ret);
  533. }
  534. ret = mfd_add_devices(wcd9xxx->dev, -1, wcd9xxx->codec_type->dev,
  535. wcd9xxx->codec_type->size, NULL, 0, NULL);
  536. if (ret != 0) {
  537. dev_err(wcd9xxx->dev, "Failed to add children: %d\n", ret);
  538. goto err_irq;
  539. }
  540. ret = device_init_wakeup(wcd9xxx->dev, true);
  541. if (ret) {
  542. dev_err(wcd9xxx->dev, "Device wakeup init failed: %d\n", ret);
  543. goto err_irq;
  544. }
  545. return ret;
  546. err_irq:
  547. wcd9xxx_irq_exit(&wcd9xxx->core_res);
  548. fail_cdc_fill:
  549. devm_kfree(wcd9xxx->dev, wcd9xxx->codec_type);
  550. wcd9xxx->codec_type = NULL;
  551. err:
  552. wcd9xxx_bringdown(wcd9xxx->dev);
  553. wcd9xxx_core_res_deinit(&wcd9xxx->core_res);
  554. err_bring_up:
  555. mutex_destroy(&wcd9xxx->io_lock);
  556. mutex_destroy(&wcd9xxx->xfer_lock);
  557. mutex_destroy(&wcd9xxx->reset_lock);
  558. return ret;
  559. }
  560. static void wcd9xxx_device_exit(struct wcd9xxx *wcd9xxx)
  561. {
  562. device_init_wakeup(wcd9xxx->dev, false);
  563. wcd9xxx_irq_exit(&wcd9xxx->core_res);
  564. mfd_remove_devices(wcd9xxx->dev);
  565. wcd9xxx_bringdown(wcd9xxx->dev);
  566. wcd9xxx_reset_low(wcd9xxx->dev);
  567. wcd9xxx_core_res_deinit(&wcd9xxx->core_res);
  568. mutex_destroy(&wcd9xxx->io_lock);
  569. mutex_destroy(&wcd9xxx->xfer_lock);
  570. mutex_destroy(&wcd9xxx->reset_lock);
  571. if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_SLIMBUS)
  572. slim_remove_device(wcd9xxx->slim_slave);
  573. }
  574. #ifdef CONFIG_DEBUG_FS
  575. struct wcd9xxx *debugCodec;
  576. static struct dentry *debugfs_wcd9xxx_dent;
  577. static struct dentry *debugfs_peek;
  578. static struct dentry *debugfs_poke;
  579. static struct dentry *debugfs_power_state;
  580. static struct dentry *debugfs_reg_dump;
  581. static unsigned char read_data;
  582. static int codec_debug_open(struct inode *inode, struct file *file)
  583. {
  584. file->private_data = inode->i_private;
  585. return 0;
  586. }
  587. static int get_parameters(char *buf, long int *param1, int num_of_par)
  588. {
  589. char *token;
  590. int base, cnt;
  591. token = strsep(&buf, " ");
  592. for (cnt = 0; cnt < num_of_par; cnt++) {
  593. if (token != NULL) {
  594. if ((token[1] == 'x') || (token[1] == 'X'))
  595. base = 16;
  596. else
  597. base = 10;
  598. if (kstrtoul(token, base, &param1[cnt]) != 0)
  599. return -EINVAL;
  600. token = strsep(&buf, " ");
  601. } else
  602. return -EINVAL;
  603. }
  604. return 0;
  605. }
  606. static ssize_t wcd9xxx_slimslave_reg_show(char __user *ubuf, size_t count,
  607. loff_t *ppos)
  608. {
  609. int i, reg_val, len;
  610. ssize_t total = 0;
  611. char tmp_buf[25]; /* each line is 12 bytes but 25 for margin of error */
  612. for (i = (int) *ppos / 12; i <= SLIM_MAX_REG_ADDR; i++) {
  613. reg_val = wcd9xxx_interface_reg_read(debugCodec, i);
  614. len = snprintf(tmp_buf, sizeof(tmp_buf),
  615. "0x%.3x: 0x%.2x\n", i, reg_val);
  616. if ((total + len) >= count - 1)
  617. break;
  618. if (copy_to_user((ubuf + total), tmp_buf, len)) {
  619. pr_err("%s: fail to copy reg dump\n", __func__);
  620. total = -EFAULT;
  621. goto copy_err;
  622. }
  623. *ppos += len;
  624. total += len;
  625. }
  626. copy_err:
  627. return total;
  628. }
  629. static ssize_t codec_debug_read(struct file *file, char __user *ubuf,
  630. size_t count, loff_t *ppos)
  631. {
  632. char lbuf[8];
  633. char *access_str = file->private_data;
  634. ssize_t ret_cnt;
  635. if (*ppos < 0 || !count)
  636. return -EINVAL;
  637. if (!strcmp(access_str, "slimslave_peek")) {
  638. snprintf(lbuf, sizeof(lbuf), "0x%x\n", read_data);
  639. ret_cnt = simple_read_from_buffer(ubuf, count, ppos, lbuf,
  640. strnlen(lbuf, 7));
  641. } else if (!strcmp(access_str, "slimslave_reg_dump")) {
  642. ret_cnt = wcd9xxx_slimslave_reg_show(ubuf, count, ppos);
  643. } else {
  644. pr_err("%s: %s not permitted to read\n", __func__, access_str);
  645. ret_cnt = -EPERM;
  646. }
  647. return ret_cnt;
  648. }
  649. static void wcd9xxx_set_reset_pin_state(struct wcd9xxx *wcd9xxx,
  650. struct wcd9xxx_pdata *pdata,
  651. bool active)
  652. {
  653. if (wcd9xxx->wcd_rst_np) {
  654. if (active)
  655. msm_cdc_pinctrl_select_active_state(
  656. wcd9xxx->wcd_rst_np);
  657. else
  658. msm_cdc_pinctrl_select_sleep_state(
  659. wcd9xxx->wcd_rst_np);
  660. return;
  661. } else if (gpio_is_valid(wcd9xxx->reset_gpio)) {
  662. gpio_direction_output(wcd9xxx->reset_gpio,
  663. (active == true ? 1 : 0));
  664. }
  665. }
  666. static int codec_debug_process_cdc_power(char *lbuf)
  667. {
  668. long int param;
  669. int rc;
  670. struct wcd9xxx_pdata *pdata;
  671. if (wcd9xxx_get_intf_type() != WCD9XXX_INTERFACE_TYPE_SLIMBUS) {
  672. pr_err("%s: CODEC is not in SLIMBUS mode\n", __func__);
  673. rc = -EPERM;
  674. goto error_intf;
  675. }
  676. rc = get_parameters(lbuf, &param, 1);
  677. if (likely(!rc)) {
  678. pdata = debugCodec->slim->dev.platform_data;
  679. if (param == 0) {
  680. wcd9xxx_slim_device_down(debugCodec->slim);
  681. msm_cdc_disable_static_supplies(debugCodec->dev,
  682. debugCodec->supplies,
  683. pdata->regulator,
  684. pdata->num_supplies);
  685. wcd9xxx_set_reset_pin_state(debugCodec, pdata, false);
  686. } else if (param == 1) {
  687. msm_cdc_enable_static_supplies(debugCodec->dev,
  688. debugCodec->supplies,
  689. pdata->regulator,
  690. pdata->num_supplies);
  691. usleep_range(1000, 2000);
  692. wcd9xxx_set_reset_pin_state(debugCodec, pdata, false);
  693. usleep_range(1000, 2000);
  694. wcd9xxx_set_reset_pin_state(debugCodec, pdata, true);
  695. usleep_range(1000, 2000);
  696. wcd9xxx_slim_device_up(debugCodec->slim);
  697. } else {
  698. pr_err("%s: invalid command %ld\n", __func__, param);
  699. }
  700. }
  701. error_intf:
  702. return rc;
  703. }
  704. static ssize_t codec_debug_write(struct file *filp,
  705. const char __user *ubuf, size_t cnt, loff_t *ppos)
  706. {
  707. char *access_str = filp->private_data;
  708. char lbuf[32];
  709. int rc;
  710. long int param[5];
  711. if (cnt > sizeof(lbuf) - 1)
  712. return -EINVAL;
  713. rc = copy_from_user(lbuf, ubuf, cnt);
  714. if (rc)
  715. return -EFAULT;
  716. lbuf[cnt] = '\0';
  717. if (!strcmp(access_str, "slimslave_poke")) {
  718. /* write */
  719. rc = get_parameters(lbuf, param, 2);
  720. if ((param[0] <= 0x3FF) && (param[1] <= 0xFF) &&
  721. (rc == 0))
  722. wcd9xxx_interface_reg_write(debugCodec, param[0],
  723. param[1]);
  724. else
  725. rc = -EINVAL;
  726. } else if (!strcmp(access_str, "slimslave_peek")) {
  727. /* read */
  728. rc = get_parameters(lbuf, param, 1);
  729. if ((param[0] <= 0x3FF) && (rc == 0))
  730. read_data = wcd9xxx_interface_reg_read(debugCodec,
  731. param[0]);
  732. else
  733. rc = -EINVAL;
  734. } else if (!strcmp(access_str, "power_state")) {
  735. rc = codec_debug_process_cdc_power(lbuf);
  736. }
  737. if (rc == 0)
  738. rc = cnt;
  739. else
  740. pr_err("%s: rc = %d\n", __func__, rc);
  741. return rc;
  742. }
  743. static const struct file_operations codec_debug_ops = {
  744. .open = codec_debug_open,
  745. .write = codec_debug_write,
  746. .read = codec_debug_read
  747. };
  748. #endif
  749. static struct wcd9xxx_i2c *wcd9xxx_i2c_get_device_info(struct wcd9xxx *wcd9xxx,
  750. u16 reg)
  751. {
  752. u16 mask = 0x0f00;
  753. int value = 0;
  754. struct wcd9xxx_i2c *wcd9xxx_i2c = NULL;
  755. if (wcd9xxx->type == WCD9335) {
  756. wcd9xxx_i2c = &wcd9xxx_modules[0];
  757. } else {
  758. value = ((reg & mask) >> 8) & 0x000f;
  759. switch (value) {
  760. case 0:
  761. wcd9xxx_i2c = &wcd9xxx_modules[0];
  762. break;
  763. case 1:
  764. wcd9xxx_i2c = &wcd9xxx_modules[1];
  765. break;
  766. case 2:
  767. wcd9xxx_i2c = &wcd9xxx_modules[2];
  768. break;
  769. case 3:
  770. wcd9xxx_i2c = &wcd9xxx_modules[3];
  771. break;
  772. default:
  773. break;
  774. }
  775. }
  776. return wcd9xxx_i2c;
  777. }
  778. static int wcd9xxx_i2c_write_device(struct wcd9xxx *wcd9xxx, u16 reg, u8 *value,
  779. u32 bytes)
  780. {
  781. struct i2c_msg *msg;
  782. int ret = 0;
  783. u8 reg_addr = 0;
  784. u8 *data = NULL;
  785. struct wcd9xxx_i2c *wcd9xxx_i2c;
  786. wcd9xxx_i2c = wcd9xxx_i2c_get_device_info(wcd9xxx, reg);
  787. if (wcd9xxx_i2c == NULL || wcd9xxx_i2c->client == NULL) {
  788. pr_err("failed to get device info\n");
  789. return -ENODEV;
  790. }
  791. data = kzalloc(bytes + 1, GFP_KERNEL);
  792. if (!data)
  793. return -ENOMEM;
  794. reg_addr = (u8)reg;
  795. msg = &wcd9xxx_i2c->xfer_msg[0];
  796. msg->addr = wcd9xxx_i2c->client->addr;
  797. msg->len = bytes + 1;
  798. msg->flags = 0;
  799. data[0] = reg;
  800. data[1] = *value;
  801. msg->buf = data;
  802. ret = i2c_transfer(wcd9xxx_i2c->client->adapter,
  803. wcd9xxx_i2c->xfer_msg, 1);
  804. /* Try again if the write fails */
  805. if (ret != 1) {
  806. ret = i2c_transfer(wcd9xxx_i2c->client->adapter,
  807. wcd9xxx_i2c->xfer_msg, 1);
  808. if (ret != 1) {
  809. pr_err("failed to write the device\n");
  810. goto fail;
  811. }
  812. }
  813. pr_debug("write success register = %x val = %x\n", reg, data[1]);
  814. fail:
  815. kfree(data);
  816. return ret;
  817. }
  818. static int wcd9xxx_i2c_read_device(struct wcd9xxx *wcd9xxx, unsigned short reg,
  819. int bytes, unsigned char *dest)
  820. {
  821. struct i2c_msg *msg;
  822. int ret = 0;
  823. u8 reg_addr = 0;
  824. struct wcd9xxx_i2c *wcd9xxx_i2c;
  825. u8 i = 0;
  826. wcd9xxx_i2c = wcd9xxx_i2c_get_device_info(wcd9xxx, reg);
  827. if (wcd9xxx_i2c == NULL || wcd9xxx_i2c->client == NULL) {
  828. pr_err("failed to get device info\n");
  829. return -ENODEV;
  830. }
  831. for (i = 0; i < bytes; i++) {
  832. reg_addr = (u8)reg++;
  833. msg = &wcd9xxx_i2c->xfer_msg[0];
  834. msg->addr = wcd9xxx_i2c->client->addr;
  835. msg->len = 1;
  836. msg->flags = 0;
  837. msg->buf = &reg_addr;
  838. msg = &wcd9xxx_i2c->xfer_msg[1];
  839. msg->addr = wcd9xxx_i2c->client->addr;
  840. msg->len = 1;
  841. msg->flags = I2C_M_RD;
  842. msg->buf = dest++;
  843. ret = i2c_transfer(wcd9xxx_i2c->client->adapter,
  844. wcd9xxx_i2c->xfer_msg, 2);
  845. /* Try again if read fails first time */
  846. if (ret != 2) {
  847. ret = i2c_transfer(wcd9xxx_i2c->client->adapter,
  848. wcd9xxx_i2c->xfer_msg, 2);
  849. if (ret != 2) {
  850. pr_err("failed to read wcd9xxx register\n");
  851. return ret;
  852. }
  853. }
  854. }
  855. return 0;
  856. }
  857. int wcd9xxx_i2c_read(struct wcd9xxx *wcd9xxx, unsigned short reg,
  858. int bytes, void *dest, bool interface_reg)
  859. {
  860. return wcd9xxx_i2c_read_device(wcd9xxx, reg, bytes, dest);
  861. }
  862. int wcd9xxx_i2c_write(struct wcd9xxx *wcd9xxx, unsigned short reg,
  863. int bytes, void *src, bool interface_reg)
  864. {
  865. return wcd9xxx_i2c_write_device(wcd9xxx, reg, src, bytes);
  866. }
  867. static int wcd9xxx_i2c_get_client_index(struct i2c_client *client,
  868. int *wcd9xx_index)
  869. {
  870. int ret = 0;
  871. switch (client->addr) {
  872. case WCD9XXX_I2C_TOP_SLAVE_ADDR:
  873. *wcd9xx_index = WCD9XXX_I2C_TOP_LEVEL;
  874. break;
  875. case WCD9XXX_ANALOG_I2C_SLAVE_ADDR:
  876. *wcd9xx_index = WCD9XXX_I2C_ANALOG;
  877. break;
  878. case WCD9XXX_DIGITAL1_I2C_SLAVE_ADDR:
  879. *wcd9xx_index = WCD9XXX_I2C_DIGITAL_1;
  880. break;
  881. case WCD9XXX_DIGITAL2_I2C_SLAVE_ADDR:
  882. *wcd9xx_index = WCD9XXX_I2C_DIGITAL_2;
  883. break;
  884. default:
  885. ret = -EINVAL;
  886. break;
  887. }
  888. return ret;
  889. }
  890. static int wcd9xxx_i2c_probe(struct i2c_client *client,
  891. const struct i2c_device_id *id)
  892. {
  893. struct wcd9xxx *wcd9xxx = NULL;
  894. struct wcd9xxx_pdata *pdata = NULL;
  895. int val = 0;
  896. int ret = 0;
  897. int wcd9xx_index = 0;
  898. struct device *dev;
  899. int intf_type;
  900. const struct of_device_id *of_id;
  901. intf_type = wcd9xxx_get_intf_type();
  902. pr_debug("%s: interface status %d\n", __func__, intf_type);
  903. if (intf_type == WCD9XXX_INTERFACE_TYPE_SLIMBUS) {
  904. dev_dbg(&client->dev, "%s:Codec is detected in slimbus mode\n",
  905. __func__);
  906. return -ENODEV;
  907. } else if (intf_type == WCD9XXX_INTERFACE_TYPE_I2C) {
  908. ret = wcd9xxx_i2c_get_client_index(client, &wcd9xx_index);
  909. if (ret != 0)
  910. dev_err(&client->dev, "%s: I2C set codec I2C\n"
  911. "client failed\n", __func__);
  912. else {
  913. dev_err(&client->dev, "%s:probe for other slaves\n"
  914. "devices of codec I2C slave Addr = %x\n",
  915. __func__, client->addr);
  916. wcd9xxx_modules[wcd9xx_index].client = client;
  917. }
  918. return ret;
  919. } else if (intf_type == WCD9XXX_INTERFACE_TYPE_PROBING) {
  920. dev = &client->dev;
  921. if (client->dev.of_node) {
  922. dev_dbg(&client->dev, "%s:Platform data\n"
  923. "from device tree\n", __func__);
  924. pdata = wcd9xxx_populate_dt_data(&client->dev);
  925. if (!pdata) {
  926. dev_err(&client->dev,
  927. "%s: Fail to obtain pdata from device tree\n",
  928. __func__);
  929. ret = -EINVAL;
  930. goto fail;
  931. }
  932. client->dev.platform_data = pdata;
  933. } else {
  934. dev_dbg(&client->dev, "%s:Platform data from\n"
  935. "board file\n", __func__);
  936. pdata = client->dev.platform_data;
  937. }
  938. wcd9xxx = devm_kzalloc(&client->dev, sizeof(struct wcd9xxx),
  939. GFP_KERNEL);
  940. if (!wcd9xxx) {
  941. ret = -ENOMEM;
  942. goto fail;
  943. }
  944. if (!pdata) {
  945. dev_dbg(&client->dev, "no platform data?\n");
  946. ret = -EINVAL;
  947. goto fail;
  948. }
  949. wcd9xxx->type = WCD9XXX;
  950. if (client->dev.of_node) {
  951. of_id = of_match_device(wcd9xxx_of_match, &client->dev);
  952. if (of_id) {
  953. wcd9xxx->type = *((int *)of_id->data);
  954. dev_info(&client->dev, "%s: codec type is %d\n",
  955. __func__, wcd9xxx->type);
  956. }
  957. } else {
  958. dev_info(&client->dev, "%s: dev.of_node is NULL, default to WCD9XXX\n",
  959. __func__);
  960. wcd9xxx->type = WCD9XXX;
  961. }
  962. wcd9xxx->regmap = wcd9xxx_regmap_init(&client->dev,
  963. &wcd9xxx_i2c_base_regmap_config);
  964. if (IS_ERR(wcd9xxx->regmap)) {
  965. ret = PTR_ERR(wcd9xxx->regmap);
  966. dev_err(&client->dev, "%s: Failed to allocate register map: %d\n",
  967. __func__, ret);
  968. goto err_codec;
  969. }
  970. wcd9xxx->reset_gpio = pdata->reset_gpio;
  971. wcd9xxx->wcd_rst_np = pdata->wcd_rst_np;
  972. if (!wcd9xxx->wcd_rst_np) {
  973. pdata->use_pinctrl = false;
  974. dev_err(&client->dev, "%s: pinctrl not used for rst_n\n",
  975. __func__);
  976. goto err_codec;
  977. }
  978. if (i2c_check_functionality(client->adapter,
  979. I2C_FUNC_I2C) == 0) {
  980. dev_dbg(&client->dev, "can't talk I2C?\n");
  981. ret = -EIO;
  982. goto fail;
  983. }
  984. dev_set_drvdata(&client->dev, wcd9xxx);
  985. wcd9xxx->dev = &client->dev;
  986. wcd9xxx->dev_up = true;
  987. if (client->dev.of_node)
  988. wcd9xxx->mclk_rate = pdata->mclk_rate;
  989. wcd9xxx->num_of_supplies = pdata->num_supplies;
  990. ret = msm_cdc_init_supplies_v2(wcd9xxx->dev, &wcd9xxx->supplies,
  991. pdata->regulator,
  992. pdata->num_supplies,
  993. pdata->vote_regulator_on_demand);
  994. if (!wcd9xxx->supplies) {
  995. dev_err(wcd9xxx->dev, "%s: Cannot init wcd supplies\n",
  996. __func__);
  997. goto err_codec;
  998. }
  999. ret = msm_cdc_enable_static_supplies(wcd9xxx->dev,
  1000. wcd9xxx->supplies,
  1001. pdata->regulator,
  1002. pdata->num_supplies);
  1003. if (ret) {
  1004. dev_err(wcd9xxx->dev, "%s: wcd static supply enable failed!\n",
  1005. __func__);
  1006. goto err_codec;
  1007. }
  1008. /* For WCD9335, it takes about 600us for the Vout_A and
  1009. * Vout_D to be ready after BUCK_SIDO is powered up\
  1010. * SYS_RST_N shouldn't be pulled high during this time
  1011. */
  1012. if (wcd9xxx->type == WCD9335)
  1013. usleep_range(600, 650);
  1014. else
  1015. usleep_range(5, 10);
  1016. ret = wcd9xxx_reset(wcd9xxx->dev);
  1017. if (ret) {
  1018. pr_err("%s: Resetting Codec failed\n", __func__);
  1019. goto err_supplies;
  1020. }
  1021. ret = wcd9xxx_i2c_get_client_index(client, &wcd9xx_index);
  1022. if (ret != 0) {
  1023. pr_err("%s:Set codec I2C client failed\n", __func__);
  1024. goto err_supplies;
  1025. }
  1026. wcd9xxx_modules[wcd9xx_index].client = client;
  1027. wcd9xxx->read_dev = wcd9xxx_i2c_read;
  1028. wcd9xxx->write_dev = wcd9xxx_i2c_write;
  1029. if (!wcd9xxx->dev->of_node)
  1030. wcd9xxx_assign_irq(&wcd9xxx->core_res,
  1031. pdata->irq, pdata->irq_base);
  1032. ret = wcd9xxx_device_init(wcd9xxx);
  1033. if (ret) {
  1034. pr_err("%s: error, initializing device failed (%d)\n",
  1035. __func__, ret);
  1036. goto err_device_init;
  1037. }
  1038. ret = wcd9xxx_i2c_read(wcd9xxx, WCD9XXX_A_CHIP_STATUS, 1,
  1039. &val, 0);
  1040. if (ret < 0)
  1041. pr_err("%s: failed to read the wcd9xxx status (%d)\n",
  1042. __func__, ret);
  1043. if (val != wcd9xxx->codec_type->i2c_chip_status)
  1044. pr_err("%s: unknown chip status 0x%x\n", __func__, val);
  1045. wcd9xxx_set_intf_type(WCD9XXX_INTERFACE_TYPE_I2C);
  1046. return ret;
  1047. }
  1048. pr_err("%s: I2C probe in wrong state\n", __func__);
  1049. err_device_init:
  1050. wcd9xxx_reset_low(wcd9xxx->dev);
  1051. err_supplies:
  1052. msm_cdc_release_supplies(wcd9xxx->dev, wcd9xxx->supplies,
  1053. pdata->regulator,
  1054. pdata->num_supplies);
  1055. pdata->regulator = NULL;
  1056. pdata->num_supplies = 0;
  1057. err_codec:
  1058. devm_kfree(&client->dev, wcd9xxx);
  1059. dev_set_drvdata(&client->dev, NULL);
  1060. fail:
  1061. return ret;
  1062. }
  1063. static int wcd9xxx_i2c_remove(struct i2c_client *client)
  1064. {
  1065. struct wcd9xxx *wcd9xxx;
  1066. struct wcd9xxx_pdata *pdata = client->dev.platform_data;
  1067. wcd9xxx = dev_get_drvdata(&client->dev);
  1068. msm_cdc_release_supplies(wcd9xxx->dev, wcd9xxx->supplies,
  1069. pdata->regulator,
  1070. pdata->num_supplies);
  1071. wcd9xxx_device_exit(wcd9xxx);
  1072. dev_set_drvdata(&client->dev, NULL);
  1073. return 0;
  1074. }
  1075. static int wcd9xxx_dt_parse_slim_interface_dev_info(struct device *dev,
  1076. struct slim_device *slim_ifd)
  1077. {
  1078. int ret = 0;
  1079. struct property *prop;
  1080. ret = of_property_read_string(dev->of_node, "qcom,cdc-slim-ifd",
  1081. &slim_ifd->name);
  1082. if (ret) {
  1083. dev_err(dev, "Looking up %s property in node %s failed",
  1084. "qcom,cdc-slim-ifd-dev", dev->of_node->full_name);
  1085. return -ENODEV;
  1086. }
  1087. prop = of_find_property(dev->of_node,
  1088. "qcom,cdc-slim-ifd-elemental-addr", NULL);
  1089. if (!prop) {
  1090. dev_err(dev, "Looking up %s property in node %s failed",
  1091. "qcom,cdc-slim-ifd-elemental-addr",
  1092. dev->of_node->full_name);
  1093. return -ENODEV;
  1094. } else if (prop->length != 6) {
  1095. dev_err(dev, "invalid codec slim ifd addr. addr length = %d\n",
  1096. prop->length);
  1097. return -ENODEV;
  1098. }
  1099. memcpy(slim_ifd->e_addr, prop->value, 6);
  1100. return 0;
  1101. }
  1102. static int wcd9xxx_slim_get_laddr(struct slim_device *sb,
  1103. const u8 *e_addr, u8 e_len, u8 *laddr)
  1104. {
  1105. int ret;
  1106. const unsigned long timeout = jiffies +
  1107. msecs_to_jiffies(SLIMBUS_PRESENT_TIMEOUT);
  1108. do {
  1109. ret = slim_get_logical_addr(sb, e_addr, e_len, laddr);
  1110. if (!ret)
  1111. break;
  1112. /* Give SLIMBUS time to report present and be ready. */
  1113. usleep_range(1000, 1100);
  1114. pr_debug_ratelimited("%s: retyring get logical addr\n",
  1115. __func__);
  1116. } while time_before(jiffies, timeout);
  1117. return ret;
  1118. }
  1119. static int wcd9xxx_slim_probe(struct slim_device *slim)
  1120. {
  1121. struct wcd9xxx *wcd9xxx;
  1122. struct wcd9xxx_pdata *pdata;
  1123. const struct slim_device_id *device_id;
  1124. int ret = 0;
  1125. int intf_type;
  1126. intf_type = wcd9xxx_get_intf_type();
  1127. wcd9xxx = devm_kzalloc(&slim->dev, sizeof(struct wcd9xxx),
  1128. GFP_KERNEL);
  1129. if (!wcd9xxx) {
  1130. ret = -ENOMEM;
  1131. goto err;
  1132. }
  1133. if (!slim) {
  1134. ret = -EINVAL;
  1135. goto err;
  1136. }
  1137. if (intf_type == WCD9XXX_INTERFACE_TYPE_I2C) {
  1138. dev_dbg(&slim->dev, "%s:Codec is detected in I2C mode\n",
  1139. __func__);
  1140. ret = -ENODEV;
  1141. goto err;
  1142. }
  1143. if (slim->dev.of_node) {
  1144. dev_dbg(&slim->dev, "Platform data from device tree\n");
  1145. pdata = wcd9xxx_populate_dt_data(&slim->dev);
  1146. if (!pdata) {
  1147. dev_err(&slim->dev,
  1148. "%s: Fail to obtain pdata from device tree\n",
  1149. __func__);
  1150. ret = -EINVAL;
  1151. goto err;
  1152. }
  1153. ret = wcd9xxx_dt_parse_slim_interface_dev_info(&slim->dev,
  1154. &pdata->slimbus_slave_device);
  1155. if (ret) {
  1156. dev_err(&slim->dev, "Error, parsing slim interface\n");
  1157. devm_kfree(&slim->dev, pdata);
  1158. ret = -EINVAL;
  1159. goto err;
  1160. }
  1161. slim->dev.platform_data = pdata;
  1162. } else {
  1163. dev_info(&slim->dev, "Platform data from board file\n");
  1164. pdata = slim->dev.platform_data;
  1165. }
  1166. if (!pdata) {
  1167. dev_err(&slim->dev, "Error, no platform data\n");
  1168. ret = -EINVAL;
  1169. goto err;
  1170. }
  1171. if (!slim->ctrl) {
  1172. dev_err(&slim->dev, "%s: Error, no SLIMBUS control data\n",
  1173. __func__);
  1174. ret = -EINVAL;
  1175. goto err_codec;
  1176. }
  1177. if (pdata->has_buck_vsel_gpio)
  1178. msm_cdc_pinctrl_select_active_state(pdata->buck_vsel_ctl_np);
  1179. if (pdata->has_micb_supply_en_gpio)
  1180. msm_cdc_pinctrl_select_active_state(pdata->micb_en_ctl);
  1181. device_id = slim_get_device_id(slim);
  1182. if (!device_id) {
  1183. dev_err(&slim->dev, "%s: Error, no device id\n", __func__);
  1184. ret = -EINVAL;
  1185. goto err;
  1186. }
  1187. wcd9xxx->type = device_id->driver_data;
  1188. dev_info(&slim->dev, "%s: probing for wcd type: %d, name: %s\n",
  1189. __func__, wcd9xxx->type, device_id->name);
  1190. /* wcd9xxx members init */
  1191. wcd9xxx->multi_reg_write = wcd9xxx_slim_multi_reg_write;
  1192. wcd9xxx->slim = slim;
  1193. slim_set_clientdata(slim, wcd9xxx);
  1194. wcd9xxx->reset_gpio = pdata->reset_gpio;
  1195. wcd9xxx->dev = &slim->dev;
  1196. wcd9xxx->mclk_rate = pdata->mclk_rate;
  1197. wcd9xxx->dev_up = true;
  1198. wcd9xxx->wcd_rst_np = pdata->wcd_rst_np;
  1199. wcd9xxx->regmap = wcd9xxx_regmap_init(&slim->dev,
  1200. &wcd9xxx_base_regmap_config);
  1201. if (IS_ERR(wcd9xxx->regmap)) {
  1202. ret = PTR_ERR(wcd9xxx->regmap);
  1203. dev_err(&slim->dev, "%s: Failed to allocate register map: %d\n",
  1204. __func__, ret);
  1205. goto err_codec;
  1206. }
  1207. if (!wcd9xxx->wcd_rst_np) {
  1208. pdata->use_pinctrl = false;
  1209. dev_err(&slim->dev, "%s: pinctrl not used for rst_n\n",
  1210. __func__);
  1211. goto err_codec;
  1212. }
  1213. wcd9xxx->num_of_supplies = pdata->num_supplies;
  1214. ret = msm_cdc_init_supplies_v2(&slim->dev, &wcd9xxx->supplies,
  1215. pdata->regulator,
  1216. pdata->num_supplies,
  1217. pdata->vote_regulator_on_demand);
  1218. if (!wcd9xxx->supplies) {
  1219. dev_err(wcd9xxx->dev, "%s: Cannot init wcd supplies\n",
  1220. __func__);
  1221. goto err_codec;
  1222. }
  1223. ret = msm_cdc_enable_static_supplies(wcd9xxx->dev,
  1224. wcd9xxx->supplies,
  1225. pdata->regulator,
  1226. pdata->num_supplies);
  1227. if (ret) {
  1228. dev_err(wcd9xxx->dev, "%s: wcd static supply enable failed!\n",
  1229. __func__);
  1230. goto err_codec;
  1231. }
  1232. /*
  1233. * For WCD9335, it takes about 600us for the Vout_A and
  1234. * Vout_D to be ready after BUCK_SIDO is powered up.
  1235. * SYS_RST_N shouldn't be pulled high during this time
  1236. */
  1237. if (wcd9xxx->type == WCD9335 || wcd9xxx->type == WCD934X)
  1238. usleep_range(600, 650);
  1239. else
  1240. usleep_range(5, 10);
  1241. ret = wcd9xxx_reset(&slim->dev);
  1242. if (ret) {
  1243. dev_err(&slim->dev, "%s: Resetting Codec failed\n", __func__);
  1244. goto err_supplies;
  1245. }
  1246. ret = wcd9xxx_slim_get_laddr(wcd9xxx->slim, wcd9xxx->slim->e_addr,
  1247. ARRAY_SIZE(wcd9xxx->slim->e_addr),
  1248. &wcd9xxx->slim->laddr);
  1249. if (ret) {
  1250. dev_err(&slim->dev, "%s: failed to get slimbus %s logical address: %d\n",
  1251. __func__, wcd9xxx->slim->name, ret);
  1252. goto err_reset;
  1253. }
  1254. wcd9xxx->read_dev = wcd9xxx_slim_read_device;
  1255. wcd9xxx->write_dev = wcd9xxx_slim_write_device;
  1256. wcd9xxx_pgd_la = wcd9xxx->slim->laddr;
  1257. wcd9xxx->slim_slave = &pdata->slimbus_slave_device;
  1258. if (!wcd9xxx->dev->of_node)
  1259. wcd9xxx_assign_irq(&wcd9xxx->core_res,
  1260. pdata->irq, pdata->irq_base);
  1261. ret = slim_add_device(slim->ctrl, wcd9xxx->slim_slave);
  1262. if (ret) {
  1263. dev_err(&slim->dev, "%s: error, adding SLIMBUS device failed\n",
  1264. __func__);
  1265. goto err_reset;
  1266. }
  1267. ret = wcd9xxx_slim_get_laddr(wcd9xxx->slim_slave,
  1268. wcd9xxx->slim_slave->e_addr,
  1269. ARRAY_SIZE(wcd9xxx->slim_slave->e_addr),
  1270. &wcd9xxx->slim_slave->laddr);
  1271. if (ret) {
  1272. dev_err(&slim->dev, "%s: failed to get slimbus %s logical address: %d\n",
  1273. __func__, wcd9xxx->slim->name, ret);
  1274. goto err_slim_add;
  1275. }
  1276. wcd9xxx_inf_la = wcd9xxx->slim_slave->laddr;
  1277. wcd9xxx_set_intf_type(WCD9XXX_INTERFACE_TYPE_SLIMBUS);
  1278. ret = wcd9xxx_device_init(wcd9xxx);
  1279. if (ret) {
  1280. dev_err(&slim->dev, "%s: error, initializing device failed (%d)\n",
  1281. __func__, ret);
  1282. goto err_slim_add;
  1283. }
  1284. #ifdef CONFIG_DEBUG_FS
  1285. debugCodec = wcd9xxx;
  1286. debugfs_wcd9xxx_dent = debugfs_create_dir
  1287. ("wcd9xxx_core", 0);
  1288. if (!IS_ERR(debugfs_wcd9xxx_dent)) {
  1289. debugfs_peek = debugfs_create_file("slimslave_peek",
  1290. S_IFREG | 0444, debugfs_wcd9xxx_dent,
  1291. (void *) "slimslave_peek", &codec_debug_ops);
  1292. debugfs_poke = debugfs_create_file("slimslave_poke",
  1293. S_IFREG | 0444, debugfs_wcd9xxx_dent,
  1294. (void *) "slimslave_poke", &codec_debug_ops);
  1295. debugfs_power_state = debugfs_create_file("power_state",
  1296. S_IFREG | 0444, debugfs_wcd9xxx_dent,
  1297. (void *) "power_state", &codec_debug_ops);
  1298. debugfs_reg_dump = debugfs_create_file("slimslave_reg_dump",
  1299. S_IFREG | 0444, debugfs_wcd9xxx_dent,
  1300. (void *) "slimslave_reg_dump", &codec_debug_ops);
  1301. }
  1302. #endif
  1303. return ret;
  1304. err_slim_add:
  1305. slim_remove_device(wcd9xxx->slim_slave);
  1306. err_reset:
  1307. wcd9xxx_reset_low(wcd9xxx->dev);
  1308. err_supplies:
  1309. msm_cdc_release_supplies(wcd9xxx->dev, wcd9xxx->supplies,
  1310. pdata->regulator,
  1311. pdata->num_supplies);
  1312. err_codec:
  1313. slim_set_clientdata(slim, NULL);
  1314. err:
  1315. devm_kfree(&slim->dev, wcd9xxx);
  1316. return ret;
  1317. }
  1318. static int wcd9xxx_slim_remove(struct slim_device *pdev)
  1319. {
  1320. struct wcd9xxx *wcd9xxx;
  1321. struct wcd9xxx_pdata *pdata = pdev->dev.platform_data;
  1322. #ifdef CONFIG_DEBUG_FS
  1323. debugfs_remove_recursive(debugfs_wcd9xxx_dent);
  1324. #endif
  1325. wcd9xxx = slim_get_devicedata(pdev);
  1326. wcd9xxx_deinit_slimslave(wcd9xxx);
  1327. slim_remove_device(wcd9xxx->slim_slave);
  1328. msm_cdc_release_supplies(wcd9xxx->dev, wcd9xxx->supplies,
  1329. pdata->regulator,
  1330. pdata->num_supplies);
  1331. wcd9xxx_device_exit(wcd9xxx);
  1332. slim_set_clientdata(pdev, NULL);
  1333. return 0;
  1334. }
  1335. static int wcd9xxx_device_up(struct wcd9xxx *wcd9xxx)
  1336. {
  1337. int ret = 0;
  1338. struct wcd9xxx_core_resource *wcd9xxx_res = &wcd9xxx->core_res;
  1339. dev_info(wcd9xxx->dev, "%s: codec bring up\n", __func__);
  1340. wcd9xxx_bringup(wcd9xxx->dev);
  1341. ret = wcd9xxx_irq_init(wcd9xxx_res);
  1342. if (ret) {
  1343. pr_err("%s: wcd9xx_irq_init failed : %d\n", __func__, ret);
  1344. } else {
  1345. if (wcd9xxx->post_reset)
  1346. ret = wcd9xxx->post_reset(wcd9xxx);
  1347. }
  1348. return ret;
  1349. }
  1350. static int wcd9xxx_slim_device_reset(struct slim_device *sldev)
  1351. {
  1352. int ret;
  1353. struct wcd9xxx *wcd9xxx = slim_get_devicedata(sldev);
  1354. if (!wcd9xxx) {
  1355. pr_err("%s: wcd9xxx is NULL\n", __func__);
  1356. return -EINVAL;
  1357. }
  1358. dev_info(wcd9xxx->dev, "%s: device reset, dev_up = %d\n",
  1359. __func__, wcd9xxx->dev_up);
  1360. if (wcd9xxx->dev_up)
  1361. return 0;
  1362. mutex_lock(&wcd9xxx->reset_lock);
  1363. ret = wcd9xxx_reset(wcd9xxx->dev);
  1364. if (ret)
  1365. dev_err(wcd9xxx->dev, "%s: Resetting Codec failed\n", __func__);
  1366. mutex_unlock(&wcd9xxx->reset_lock);
  1367. return ret;
  1368. }
  1369. static int wcd9xxx_slim_device_up(struct slim_device *sldev)
  1370. {
  1371. struct wcd9xxx *wcd9xxx = slim_get_devicedata(sldev);
  1372. int ret = 0;
  1373. if (!wcd9xxx) {
  1374. pr_err("%s: wcd9xxx is NULL\n", __func__);
  1375. return -EINVAL;
  1376. }
  1377. dev_info(wcd9xxx->dev, "%s: slim device up, dev_up = %d\n",
  1378. __func__, wcd9xxx->dev_up);
  1379. if (wcd9xxx->dev_up)
  1380. return 0;
  1381. wcd9xxx->dev_up = true;
  1382. mutex_lock(&wcd9xxx->reset_lock);
  1383. ret = wcd9xxx_device_up(wcd9xxx);
  1384. mutex_unlock(&wcd9xxx->reset_lock);
  1385. return ret;
  1386. }
  1387. static int wcd9xxx_slim_device_down(struct slim_device *sldev)
  1388. {
  1389. struct wcd9xxx *wcd9xxx = slim_get_devicedata(sldev);
  1390. if (!wcd9xxx) {
  1391. pr_err("%s: wcd9xxx is NULL\n", __func__);
  1392. return -EINVAL;
  1393. }
  1394. dev_info(wcd9xxx->dev, "%s: device down, dev_up = %d\n",
  1395. __func__, wcd9xxx->dev_up);
  1396. if (!wcd9xxx->dev_up)
  1397. return 0;
  1398. wcd9xxx->dev_up = false;
  1399. mutex_lock(&wcd9xxx->reset_lock);
  1400. if (wcd9xxx->dev_down)
  1401. wcd9xxx->dev_down(wcd9xxx);
  1402. wcd9xxx_irq_exit(&wcd9xxx->core_res);
  1403. wcd9xxx_reset_low(wcd9xxx->dev);
  1404. mutex_unlock(&wcd9xxx->reset_lock);
  1405. return 0;
  1406. }
  1407. static int wcd9xxx_slim_resume(struct slim_device *sldev)
  1408. {
  1409. struct wcd9xxx *wcd9xxx = slim_get_devicedata(sldev);
  1410. return wcd9xxx_core_res_resume(&wcd9xxx->core_res);
  1411. }
  1412. static int wcd9xxx_i2c_resume(struct device *dev)
  1413. {
  1414. struct wcd9xxx *wcd9xxx = dev_get_drvdata(dev);
  1415. if (wcd9xxx)
  1416. return wcd9xxx_core_res_resume(&wcd9xxx->core_res);
  1417. else
  1418. return 0;
  1419. }
  1420. static int wcd9xxx_slim_suspend(struct slim_device *sldev, pm_message_t pmesg)
  1421. {
  1422. struct wcd9xxx *wcd9xxx = slim_get_devicedata(sldev);
  1423. return wcd9xxx_core_res_suspend(&wcd9xxx->core_res, pmesg);
  1424. }
  1425. static int wcd9xxx_i2c_suspend(struct device *dev)
  1426. {
  1427. struct wcd9xxx *wcd9xxx = dev_get_drvdata(dev);
  1428. pm_message_t pmesg = {0};
  1429. if (wcd9xxx)
  1430. return wcd9xxx_core_res_suspend(&wcd9xxx->core_res, pmesg);
  1431. else
  1432. return 0;
  1433. }
  1434. static const struct slim_device_id wcd_slim_device_id[] = {
  1435. {"sitar-slim", 0},
  1436. {"sitar1p1-slim", 0},
  1437. {"tabla-slim", 0},
  1438. {"tabla2x-slim", 0},
  1439. {"taiko-slim-pgd", 0},
  1440. {"tapan-slim-pgd", 0},
  1441. {"tomtom-slim-pgd", WCD9330},
  1442. {"tasha-slim-pgd", WCD9335},
  1443. {"tavil-slim-pgd", WCD934X},
  1444. {}
  1445. };
  1446. static struct slim_driver wcd_slim_driver = {
  1447. .driver = {
  1448. .name = "wcd-slim",
  1449. .owner = THIS_MODULE,
  1450. },
  1451. .probe = wcd9xxx_slim_probe,
  1452. .remove = wcd9xxx_slim_remove,
  1453. .id_table = wcd_slim_device_id,
  1454. .resume = wcd9xxx_slim_resume,
  1455. .suspend = wcd9xxx_slim_suspend,
  1456. .device_up = wcd9xxx_slim_device_up,
  1457. .reset_device = wcd9xxx_slim_device_reset,
  1458. .device_down = wcd9xxx_slim_device_down,
  1459. };
  1460. static struct i2c_device_id wcd9xxx_id_table[] = {
  1461. {"wcd9xxx-i2c", WCD9XXX_I2C_TOP_LEVEL},
  1462. {"wcd9xxx-i2c", WCD9XXX_I2C_ANALOG},
  1463. {"wcd9xxx-i2c", WCD9XXX_I2C_DIGITAL_1},
  1464. {"wcd9xxx-i2c", WCD9XXX_I2C_DIGITAL_2},
  1465. {}
  1466. };
  1467. static struct i2c_device_id tasha_id_table[] = {
  1468. {"tasha-i2c-pgd", WCD9XXX_I2C_TOP_LEVEL},
  1469. {}
  1470. };
  1471. static struct i2c_device_id tavil_id_table[] = {
  1472. {"tavil-i2c", WCD9XXX_I2C_TOP_LEVEL},
  1473. {}
  1474. };
  1475. static struct i2c_device_id tabla_id_table[] = {
  1476. {"tabla top level", WCD9XXX_I2C_TOP_LEVEL},
  1477. {"tabla analog", WCD9XXX_I2C_ANALOG},
  1478. {"tabla digital1", WCD9XXX_I2C_DIGITAL_1},
  1479. {"tabla digital2", WCD9XXX_I2C_DIGITAL_2},
  1480. {}
  1481. };
  1482. MODULE_DEVICE_TABLE(i2c, tabla_id_table);
  1483. static const struct dev_pm_ops wcd9xxx_i2c_pm_ops = {
  1484. .suspend = wcd9xxx_i2c_suspend,
  1485. .resume = wcd9xxx_i2c_resume,
  1486. };
  1487. static struct i2c_driver tabla_i2c_driver = {
  1488. .driver = {
  1489. .owner = THIS_MODULE,
  1490. .name = "tabla-i2c-core",
  1491. .pm = &wcd9xxx_i2c_pm_ops,
  1492. },
  1493. .id_table = tabla_id_table,
  1494. .probe = wcd9xxx_i2c_probe,
  1495. .remove = wcd9xxx_i2c_remove,
  1496. };
  1497. static struct i2c_driver wcd9xxx_i2c_driver = {
  1498. .driver = {
  1499. .owner = THIS_MODULE,
  1500. .name = "wcd9xxx-i2c-core",
  1501. .pm = &wcd9xxx_i2c_pm_ops,
  1502. },
  1503. .id_table = wcd9xxx_id_table,
  1504. .probe = wcd9xxx_i2c_probe,
  1505. .remove = wcd9xxx_i2c_remove,
  1506. };
  1507. static struct i2c_driver wcd9335_i2c_driver = {
  1508. .driver = {
  1509. .owner = THIS_MODULE,
  1510. .name = "tasha-i2c-core",
  1511. .pm = &wcd9xxx_i2c_pm_ops,
  1512. },
  1513. .id_table = tasha_id_table,
  1514. .probe = wcd9xxx_i2c_probe,
  1515. .remove = wcd9xxx_i2c_remove,
  1516. };
  1517. static struct i2c_driver wcd934x_i2c_driver = {
  1518. .driver = {
  1519. .owner = THIS_MODULE,
  1520. .name = "tavil-i2c-core",
  1521. .pm = &wcd9xxx_i2c_pm_ops,
  1522. },
  1523. .id_table = tavil_id_table,
  1524. .probe = wcd9xxx_i2c_probe,
  1525. .remove = wcd9xxx_i2c_remove,
  1526. };
  1527. int wcd9xxx_init(void)
  1528. {
  1529. int ret[NUM_WCD9XXX_REG_RET] = {0};
  1530. int i = 0;
  1531. wcd9xxx_set_intf_type(WCD9XXX_INTERFACE_TYPE_PROBING);
  1532. ret[0] = i2c_add_driver(&tabla_i2c_driver);
  1533. if (ret[0])
  1534. pr_err("%s: Failed to add the tabla2x I2C driver: %d\n",
  1535. __func__, ret[0]);
  1536. ret[1] = i2c_add_driver(&wcd9xxx_i2c_driver);
  1537. if (ret[1])
  1538. pr_err("%s: Failed to add the wcd9xxx I2C driver: %d\n",
  1539. __func__, ret[1]);
  1540. ret[2] = i2c_add_driver(&wcd9335_i2c_driver);
  1541. if (ret[2])
  1542. pr_err("%s: Failed to add the wcd9335 I2C driver: %d\n",
  1543. __func__, ret[2]);
  1544. ret[3] = slim_driver_register(&wcd_slim_driver);
  1545. if (ret[3])
  1546. pr_err("%s: Failed to register wcd SB driver: %d\n",
  1547. __func__, ret[3]);
  1548. ret[4] = i2c_add_driver(&wcd934x_i2c_driver);
  1549. if (ret[4])
  1550. pr_err("%s: Failed to add the wcd934x I2C driver: %d\n",
  1551. __func__, ret[4]);
  1552. for (i = 0; i < NUM_WCD9XXX_REG_RET; i++) {
  1553. if (ret[i])
  1554. return ret[i];
  1555. }
  1556. return 0;
  1557. }
  1558. void wcd9xxx_exit(void)
  1559. {
  1560. wcd9xxx_set_intf_type(WCD9XXX_INTERFACE_TYPE_PROBING);
  1561. i2c_del_driver(&tabla_i2c_driver);
  1562. i2c_del_driver(&wcd9xxx_i2c_driver);
  1563. i2c_del_driver(&wcd9335_i2c_driver);
  1564. i2c_del_driver(&wcd934x_i2c_driver);
  1565. slim_driver_unregister(&wcd_slim_driver);
  1566. }
  1567. MODULE_DESCRIPTION("Codec core driver");
  1568. MODULE_LICENSE("GPL v2");