wcd9xxx-irq.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878
  1. /* Copyright (c) 2011-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <linux/bitops.h>
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/sched.h>
  16. #include <linux/irq.h>
  17. #include <linux/mfd/core.h>
  18. #include <linux/regmap.h>
  19. #include <linux/delay.h>
  20. #include <linux/irqdomain.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/of.h>
  23. #include <linux/of_irq.h>
  24. #include <linux/slab.h>
  25. #include <linux/ratelimit.h>
  26. #include <soc/qcom/pm.h>
  27. #include <linux/gpio.h>
  28. #include <linux/of_gpio.h>
  29. #include <linux/mfd/wcd9xxx/wcd9xxx_registers.h>
  30. #include "core.h"
  31. #include "wcd9xxx-irq.h"
  32. #define BYTE_BIT_MASK(nr) (1UL << ((nr) % BITS_PER_BYTE))
  33. #define BIT_BYTE(nr) ((nr) / BITS_PER_BYTE)
  34. #define WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS 100
  35. #ifndef NO_IRQ
  36. #define NO_IRQ (-1)
  37. #endif
  38. #ifdef CONFIG_OF
  39. struct wcd9xxx_irq_drv_data {
  40. struct irq_domain *domain;
  41. int irq;
  42. };
  43. #endif
  44. static int virq_to_phyirq(
  45. struct wcd9xxx_core_resource *wcd9xxx_res, int virq);
  46. static int phyirq_to_virq(
  47. struct wcd9xxx_core_resource *wcd9xxx_res, int irq);
  48. static unsigned int wcd9xxx_irq_get_upstream_irq(
  49. struct wcd9xxx_core_resource *wcd9xxx_res);
  50. static void wcd9xxx_irq_put_downstream_irq(
  51. struct wcd9xxx_core_resource *wcd9xxx_res);
  52. static void wcd9xxx_irq_put_upstream_irq(
  53. struct wcd9xxx_core_resource *wcd9xxx_res);
  54. static int wcd9xxx_map_irq(
  55. struct wcd9xxx_core_resource *wcd9xxx_res, int irq);
  56. static void wcd9xxx_irq_lock(struct irq_data *data)
  57. {
  58. struct wcd9xxx_core_resource *wcd9xxx_res =
  59. irq_data_get_irq_chip_data(data);
  60. mutex_lock(&wcd9xxx_res->irq_lock);
  61. }
  62. static void wcd9xxx_irq_sync_unlock(struct irq_data *data)
  63. {
  64. struct wcd9xxx_core_resource *wcd9xxx_res =
  65. irq_data_get_irq_chip_data(data);
  66. int i;
  67. if ((ARRAY_SIZE(wcd9xxx_res->irq_masks_cur) >
  68. WCD9XXX_MAX_IRQ_REGS) ||
  69. (ARRAY_SIZE(wcd9xxx_res->irq_masks_cache) >
  70. WCD9XXX_MAX_IRQ_REGS)) {
  71. pr_err("%s: Array Size out of bound\n", __func__);
  72. return;
  73. }
  74. if (!wcd9xxx_res->wcd_core_regmap) {
  75. pr_err("%s: Codec core regmap not defined\n",
  76. __func__);
  77. return;
  78. }
  79. for (i = 0; i < ARRAY_SIZE(wcd9xxx_res->irq_masks_cur); i++) {
  80. /* If there's been a change in the mask write it back
  81. * to the hardware.
  82. */
  83. if (wcd9xxx_res->irq_masks_cur[i] !=
  84. wcd9xxx_res->irq_masks_cache[i]) {
  85. wcd9xxx_res->irq_masks_cache[i] =
  86. wcd9xxx_res->irq_masks_cur[i];
  87. regmap_write(wcd9xxx_res->wcd_core_regmap,
  88. wcd9xxx_res->intr_reg[WCD9XXX_INTR_MASK_BASE] + i,
  89. wcd9xxx_res->irq_masks_cur[i]);
  90. }
  91. }
  92. mutex_unlock(&wcd9xxx_res->irq_lock);
  93. }
  94. static void wcd9xxx_irq_enable(struct irq_data *data)
  95. {
  96. struct wcd9xxx_core_resource *wcd9xxx_res =
  97. irq_data_get_irq_chip_data(data);
  98. int wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
  99. int byte = BIT_BYTE(wcd9xxx_irq);
  100. int size = ARRAY_SIZE(wcd9xxx_res->irq_masks_cur);
  101. if ((byte < size) && (byte >= 0)) {
  102. wcd9xxx_res->irq_masks_cur[byte] &=
  103. ~(BYTE_BIT_MASK(wcd9xxx_irq));
  104. } else {
  105. pr_err("%s: Array size is %d but index is %d: Out of range\n",
  106. __func__, size, byte);
  107. }
  108. }
  109. static void wcd9xxx_irq_disable(struct irq_data *data)
  110. {
  111. struct wcd9xxx_core_resource *wcd9xxx_res =
  112. irq_data_get_irq_chip_data(data);
  113. int wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
  114. int byte = BIT_BYTE(wcd9xxx_irq);
  115. int size = ARRAY_SIZE(wcd9xxx_res->irq_masks_cur);
  116. if ((byte < size) && (byte >= 0)) {
  117. wcd9xxx_res->irq_masks_cur[byte]
  118. |= BYTE_BIT_MASK(wcd9xxx_irq);
  119. } else {
  120. pr_err("%s: Array size is %d but index is %d: Out of range\n",
  121. __func__, size, byte);
  122. }
  123. }
  124. static void wcd9xxx_irq_ack(struct irq_data *data)
  125. {
  126. int wcd9xxx_irq = 0;
  127. struct wcd9xxx_core_resource *wcd9xxx_res =
  128. irq_data_get_irq_chip_data(data);
  129. if (wcd9xxx_res == NULL) {
  130. pr_err("%s: wcd9xxx_res is NULL\n", __func__);
  131. return;
  132. }
  133. wcd9xxx_irq = virq_to_phyirq(wcd9xxx_res, data->irq);
  134. pr_debug("%s: IRQ_ACK called for WCD9XXX IRQ: %d\n",
  135. __func__, wcd9xxx_irq);
  136. }
  137. static void wcd9xxx_irq_mask(struct irq_data *d)
  138. {
  139. /* do nothing but required as linux calls irq_mask without NULL check */
  140. }
  141. static struct irq_chip wcd9xxx_irq_chip = {
  142. .name = "wcd9xxx",
  143. .irq_bus_lock = wcd9xxx_irq_lock,
  144. .irq_bus_sync_unlock = wcd9xxx_irq_sync_unlock,
  145. .irq_disable = wcd9xxx_irq_disable,
  146. .irq_enable = wcd9xxx_irq_enable,
  147. .irq_mask = wcd9xxx_irq_mask,
  148. .irq_ack = wcd9xxx_irq_ack,
  149. };
  150. bool wcd9xxx_lock_sleep(
  151. struct wcd9xxx_core_resource *wcd9xxx_res)
  152. {
  153. enum wcd9xxx_pm_state os;
  154. /*
  155. * wcd9xxx_{lock/unlock}_sleep will be called by wcd9xxx_irq_thread
  156. * and its subroutines only motly.
  157. * but btn0_lpress_fn is not wcd9xxx_irq_thread's subroutine and
  158. * It can race with wcd9xxx_irq_thread.
  159. * So need to embrace wlock_holders with mutex.
  160. *
  161. * If system didn't resume, we can simply return false so codec driver's
  162. * IRQ handler can return without handling IRQ.
  163. * As interrupt line is still active, codec will have another IRQ to
  164. * retry shortly.
  165. */
  166. mutex_lock(&wcd9xxx_res->pm_lock);
  167. if (wcd9xxx_res->wlock_holders++ == 0) {
  168. pr_debug("%s: holding wake lock\n", __func__);
  169. pm_qos_update_request(&wcd9xxx_res->pm_qos_req,
  170. msm_cpuidle_get_deep_idle_latency());
  171. pm_stay_awake(wcd9xxx_res->dev);
  172. }
  173. mutex_unlock(&wcd9xxx_res->pm_lock);
  174. if (!wait_event_timeout(wcd9xxx_res->pm_wq,
  175. ((os = wcd9xxx_pm_cmpxchg(wcd9xxx_res,
  176. WCD9XXX_PM_SLEEPABLE,
  177. WCD9XXX_PM_AWAKE)) ==
  178. WCD9XXX_PM_SLEEPABLE ||
  179. (os == WCD9XXX_PM_AWAKE)),
  180. msecs_to_jiffies(
  181. WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS))) {
  182. pr_warn("%s: system didn't resume within %dms, s %d, w %d\n",
  183. __func__,
  184. WCD9XXX_SYSTEM_RESUME_TIMEOUT_MS, wcd9xxx_res->pm_state,
  185. wcd9xxx_res->wlock_holders);
  186. wcd9xxx_unlock_sleep(wcd9xxx_res);
  187. return false;
  188. }
  189. wake_up_all(&wcd9xxx_res->pm_wq);
  190. return true;
  191. }
  192. EXPORT_SYMBOL(wcd9xxx_lock_sleep);
  193. void wcd9xxx_unlock_sleep(
  194. struct wcd9xxx_core_resource *wcd9xxx_res)
  195. {
  196. mutex_lock(&wcd9xxx_res->pm_lock);
  197. if (--wcd9xxx_res->wlock_holders == 0) {
  198. pr_debug("%s: releasing wake lock pm_state %d -> %d\n",
  199. __func__, wcd9xxx_res->pm_state, WCD9XXX_PM_SLEEPABLE);
  200. /*
  201. * if wcd9xxx_lock_sleep failed, pm_state would be still
  202. * WCD9XXX_PM_ASLEEP, don't overwrite
  203. */
  204. if (likely(wcd9xxx_res->pm_state == WCD9XXX_PM_AWAKE))
  205. wcd9xxx_res->pm_state = WCD9XXX_PM_SLEEPABLE;
  206. pm_qos_update_request(&wcd9xxx_res->pm_qos_req,
  207. PM_QOS_DEFAULT_VALUE);
  208. pm_relax(wcd9xxx_res->dev);
  209. }
  210. mutex_unlock(&wcd9xxx_res->pm_lock);
  211. wake_up_all(&wcd9xxx_res->pm_wq);
  212. }
  213. EXPORT_SYMBOL(wcd9xxx_unlock_sleep);
  214. void wcd9xxx_nested_irq_lock(struct wcd9xxx_core_resource *wcd9xxx_res)
  215. {
  216. mutex_lock(&wcd9xxx_res->nested_irq_lock);
  217. }
  218. void wcd9xxx_nested_irq_unlock(struct wcd9xxx_core_resource *wcd9xxx_res)
  219. {
  220. mutex_unlock(&wcd9xxx_res->nested_irq_lock);
  221. }
  222. static void wcd9xxx_irq_dispatch(struct wcd9xxx_core_resource *wcd9xxx_res,
  223. struct intr_data *irqdata)
  224. {
  225. int irqbit = irqdata->intr_num;
  226. if (!wcd9xxx_res->wcd_core_regmap) {
  227. pr_err("%s: codec core regmap not defined\n",
  228. __func__);
  229. return;
  230. }
  231. if (irqdata->clear_first) {
  232. wcd9xxx_nested_irq_lock(wcd9xxx_res);
  233. regmap_write(wcd9xxx_res->wcd_core_regmap,
  234. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE] +
  235. BIT_BYTE(irqbit),
  236. BYTE_BIT_MASK(irqbit));
  237. if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
  238. regmap_write(wcd9xxx_res->wcd_core_regmap,
  239. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
  240. 0x02);
  241. handle_nested_irq(phyirq_to_virq(wcd9xxx_res, irqbit));
  242. wcd9xxx_nested_irq_unlock(wcd9xxx_res);
  243. } else {
  244. wcd9xxx_nested_irq_lock(wcd9xxx_res);
  245. handle_nested_irq(phyirq_to_virq(wcd9xxx_res, irqbit));
  246. regmap_write(wcd9xxx_res->wcd_core_regmap,
  247. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE] +
  248. BIT_BYTE(irqbit),
  249. BYTE_BIT_MASK(irqbit));
  250. if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
  251. regmap_write(wcd9xxx_res->wcd_core_regmap,
  252. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
  253. 0x02);
  254. wcd9xxx_nested_irq_unlock(wcd9xxx_res);
  255. }
  256. }
  257. static irqreturn_t wcd9xxx_irq_thread(int irq, void *data)
  258. {
  259. int ret;
  260. int i;
  261. struct intr_data irqdata;
  262. char linebuf[128];
  263. static DEFINE_RATELIMIT_STATE(ratelimit, 5 * HZ, 1);
  264. struct wcd9xxx_core_resource *wcd9xxx_res = data;
  265. int num_irq_regs = wcd9xxx_res->num_irq_regs;
  266. u8 status[4], status1[4] = {0}, unmask_status[4] = {0};
  267. if (unlikely(wcd9xxx_lock_sleep(wcd9xxx_res) == false)) {
  268. dev_err(wcd9xxx_res->dev, "Failed to hold suspend\n");
  269. return IRQ_NONE;
  270. }
  271. if (!wcd9xxx_res->wcd_core_regmap) {
  272. dev_err(wcd9xxx_res->dev,
  273. "%s: Codec core regmap not supplied\n",
  274. __func__);
  275. goto err_disable_irq;
  276. }
  277. memset(status, 0, sizeof(status));
  278. ret = regmap_bulk_read(wcd9xxx_res->wcd_core_regmap,
  279. wcd9xxx_res->intr_reg[WCD9XXX_INTR_STATUS_BASE],
  280. status, num_irq_regs);
  281. if (ret < 0) {
  282. dev_err(wcd9xxx_res->dev,
  283. "Failed to read interrupt status: %d\n", ret);
  284. goto err_disable_irq;
  285. }
  286. /*
  287. * If status is 0 return without clearing.
  288. * status contains: HW status - masked interrupts
  289. * status1 contains: unhandled interrupts - masked interrupts
  290. * unmasked_status contains: unhandled interrupts
  291. */
  292. if (unlikely(!memcmp(status, status1, sizeof(status)))) {
  293. pr_debug("%s: status is 0\n", __func__);
  294. wcd9xxx_unlock_sleep(wcd9xxx_res);
  295. return IRQ_HANDLED;
  296. }
  297. /*
  298. * Copy status to unmask_status before masking, otherwise SW may miss
  299. * to clear masked interrupt in corner case.
  300. */
  301. memcpy(unmask_status, status, sizeof(unmask_status));
  302. /* Apply masking */
  303. for (i = 0; i < num_irq_regs; i++)
  304. status[i] &= ~wcd9xxx_res->irq_masks_cur[i];
  305. memcpy(status1, status, sizeof(status1));
  306. /* Find out which interrupt was triggered and call that interrupt's
  307. * handler function
  308. *
  309. * Since codec has only one hardware irq line which is shared by
  310. * codec's different internal interrupts, so it's possible master irq
  311. * handler dispatches multiple nested irq handlers after breaking
  312. * order. Dispatch interrupts in the order that is maintained by
  313. * the interrupt table.
  314. */
  315. for (i = 0; i < wcd9xxx_res->intr_table_size; i++) {
  316. irqdata = wcd9xxx_res->intr_table[i];
  317. if (status[BIT_BYTE(irqdata.intr_num)] &
  318. BYTE_BIT_MASK(irqdata.intr_num)) {
  319. wcd9xxx_irq_dispatch(wcd9xxx_res, &irqdata);
  320. status1[BIT_BYTE(irqdata.intr_num)] &=
  321. ~BYTE_BIT_MASK(irqdata.intr_num);
  322. unmask_status[BIT_BYTE(irqdata.intr_num)] &=
  323. ~BYTE_BIT_MASK(irqdata.intr_num);
  324. }
  325. }
  326. /*
  327. * As a failsafe if unhandled irq is found, clear it to prevent
  328. * interrupt storm.
  329. * Note that we can say there was an unhandled irq only when no irq
  330. * handled by nested irq handler since Taiko supports qdsp as irqs'
  331. * destination for few irqs. Therefore driver shouldn't clear pending
  332. * irqs when few handled while few others not.
  333. */
  334. if (unlikely(!memcmp(status, status1, sizeof(status)))) {
  335. if (__ratelimit(&ratelimit)) {
  336. pr_warn("%s: Unhandled irq found\n", __func__);
  337. hex_dump_to_buffer(status, sizeof(status), 16, 1,
  338. linebuf, sizeof(linebuf), false);
  339. pr_warn("%s: status0 : %s\n", __func__, linebuf);
  340. hex_dump_to_buffer(status1, sizeof(status1), 16, 1,
  341. linebuf, sizeof(linebuf), false);
  342. pr_warn("%s: status1 : %s\n", __func__, linebuf);
  343. }
  344. /*
  345. * unmask_status contains unhandled interrupts, hence clear all
  346. * unhandled interrupts.
  347. */
  348. ret = regmap_bulk_write(wcd9xxx_res->wcd_core_regmap,
  349. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLEAR_BASE],
  350. unmask_status, num_irq_regs);
  351. if (wcd9xxx_get_intf_type() == WCD9XXX_INTERFACE_TYPE_I2C)
  352. regmap_write(wcd9xxx_res->wcd_core_regmap,
  353. wcd9xxx_res->intr_reg[WCD9XXX_INTR_CLR_COMMIT],
  354. 0x02);
  355. }
  356. wcd9xxx_unlock_sleep(wcd9xxx_res);
  357. return IRQ_HANDLED;
  358. err_disable_irq:
  359. dev_err(wcd9xxx_res->dev,
  360. "Disable irq %d\n", wcd9xxx_res->irq);
  361. disable_irq_wake(wcd9xxx_res->irq);
  362. disable_irq_nosync(wcd9xxx_res->irq);
  363. wcd9xxx_unlock_sleep(wcd9xxx_res);
  364. return IRQ_NONE;
  365. }
  366. /**
  367. * wcd9xxx_free_irq
  368. *
  369. * @wcd9xxx_res: pointer to core resource
  370. * irq: irq number
  371. * @data: data pointer
  372. *
  373. */
  374. void wcd9xxx_free_irq(struct wcd9xxx_core_resource *wcd9xxx_res,
  375. int irq, void *data)
  376. {
  377. free_irq(phyirq_to_virq(wcd9xxx_res, irq), data);
  378. }
  379. EXPORT_SYMBOL(wcd9xxx_free_irq);
  380. /**
  381. * wcd9xxx_enable_irq
  382. *
  383. * @wcd9xxx_res: pointer to core resource
  384. * irq: irq number
  385. *
  386. */
  387. void wcd9xxx_enable_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
  388. {
  389. if (wcd9xxx_res->irq)
  390. enable_irq(phyirq_to_virq(wcd9xxx_res, irq));
  391. }
  392. EXPORT_SYMBOL(wcd9xxx_enable_irq);
  393. /**
  394. * wcd9xxx_disable_irq
  395. *
  396. * @wcd9xxx_res: pointer to core resource
  397. * irq: irq number
  398. *
  399. */
  400. void wcd9xxx_disable_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
  401. {
  402. if (wcd9xxx_res->irq)
  403. disable_irq_nosync(phyirq_to_virq(wcd9xxx_res, irq));
  404. }
  405. EXPORT_SYMBOL(wcd9xxx_disable_irq);
  406. /**
  407. * wcd9xxx_disable_irq_sync
  408. *
  409. * @wcd9xxx_res: pointer to core resource
  410. * irq: irq number
  411. *
  412. */
  413. void wcd9xxx_disable_irq_sync(
  414. struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
  415. {
  416. if (wcd9xxx_res->irq)
  417. disable_irq(phyirq_to_virq(wcd9xxx_res, irq));
  418. }
  419. EXPORT_SYMBOL(wcd9xxx_disable_irq_sync);
  420. static int wcd9xxx_irq_setup_downstream_irq(
  421. struct wcd9xxx_core_resource *wcd9xxx_res)
  422. {
  423. int irq, virq, ret;
  424. pr_debug("%s: enter\n", __func__);
  425. for (irq = 0; irq < wcd9xxx_res->num_irqs; irq++) {
  426. /* Map OF irq */
  427. virq = wcd9xxx_map_irq(wcd9xxx_res, irq);
  428. pr_debug("%s: irq %d -> %d\n", __func__, irq, virq);
  429. if (virq == NO_IRQ) {
  430. pr_err("%s, No interrupt specifier for irq %d\n",
  431. __func__, irq);
  432. return NO_IRQ;
  433. }
  434. ret = irq_set_chip_data(virq, wcd9xxx_res);
  435. if (ret) {
  436. pr_err("%s: Failed to configure irq %d (%d)\n",
  437. __func__, irq, ret);
  438. return ret;
  439. }
  440. if (wcd9xxx_res->irq_level_high[irq])
  441. irq_set_chip_and_handler(virq, &wcd9xxx_irq_chip,
  442. handle_level_irq);
  443. else
  444. irq_set_chip_and_handler(virq, &wcd9xxx_irq_chip,
  445. handle_edge_irq);
  446. irq_set_nested_thread(virq, 1);
  447. }
  448. pr_debug("%s: leave\n", __func__);
  449. return 0;
  450. }
  451. /**
  452. * wcd9xxx_irq_init
  453. *
  454. * @wcd9xxx_res: pointer to core resource
  455. *
  456. * Returns 0 on success, appropriate error code otherwise
  457. */
  458. int wcd9xxx_irq_init(struct wcd9xxx_core_resource *wcd9xxx_res)
  459. {
  460. int i, ret;
  461. u8 irq_level[wcd9xxx_res->num_irq_regs];
  462. struct irq_domain *domain;
  463. struct device_node *pnode;
  464. mutex_init(&wcd9xxx_res->irq_lock);
  465. mutex_init(&wcd9xxx_res->nested_irq_lock);
  466. pnode = of_irq_find_parent(wcd9xxx_res->dev->of_node);
  467. if (unlikely(!pnode))
  468. return -EINVAL;
  469. domain = irq_find_host(pnode);
  470. if (unlikely(!domain))
  471. return -EINVAL;
  472. wcd9xxx_res->domain = domain;
  473. wcd9xxx_res->irq = wcd9xxx_irq_get_upstream_irq(wcd9xxx_res);
  474. if (!wcd9xxx_res->irq) {
  475. pr_warn("%s: irq driver is not yet initialized\n", __func__);
  476. mutex_destroy(&wcd9xxx_res->irq_lock);
  477. mutex_destroy(&wcd9xxx_res->nested_irq_lock);
  478. return -EPROBE_DEFER;
  479. }
  480. pr_debug("%s: probed irq %d\n", __func__, wcd9xxx_res->irq);
  481. /* Setup downstream IRQs */
  482. ret = wcd9xxx_irq_setup_downstream_irq(wcd9xxx_res);
  483. if (ret) {
  484. pr_err("%s: Failed to setup downstream IRQ\n", __func__);
  485. wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
  486. mutex_destroy(&wcd9xxx_res->irq_lock);
  487. mutex_destroy(&wcd9xxx_res->nested_irq_lock);
  488. return ret;
  489. }
  490. /* All other wcd9xxx interrupts are edge triggered */
  491. wcd9xxx_res->irq_level_high[0] = true;
  492. /* mask all the interrupts */
  493. memset(irq_level, 0, wcd9xxx_res->num_irq_regs);
  494. for (i = 0; i < wcd9xxx_res->num_irqs; i++) {
  495. wcd9xxx_res->irq_masks_cur[BIT_BYTE(i)] |= BYTE_BIT_MASK(i);
  496. wcd9xxx_res->irq_masks_cache[BIT_BYTE(i)] |= BYTE_BIT_MASK(i);
  497. irq_level[BIT_BYTE(i)] |=
  498. wcd9xxx_res->irq_level_high[i] << (i % BITS_PER_BYTE);
  499. }
  500. if (!wcd9xxx_res->wcd_core_regmap) {
  501. dev_err(wcd9xxx_res->dev,
  502. "%s: Codec core regmap not defined\n",
  503. __func__);
  504. ret = -EINVAL;
  505. goto fail_irq_init;
  506. }
  507. for (i = 0; i < wcd9xxx_res->num_irq_regs; i++) {
  508. /* Initialize interrupt mask and level registers */
  509. regmap_write(wcd9xxx_res->wcd_core_regmap,
  510. wcd9xxx_res->intr_reg[WCD9XXX_INTR_LEVEL_BASE] + i,
  511. irq_level[i]);
  512. regmap_write(wcd9xxx_res->wcd_core_regmap,
  513. wcd9xxx_res->intr_reg[WCD9XXX_INTR_MASK_BASE] + i,
  514. wcd9xxx_res->irq_masks_cur[i]);
  515. }
  516. ret = request_threaded_irq(wcd9xxx_res->irq, NULL, wcd9xxx_irq_thread,
  517. IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
  518. "wcd9xxx", wcd9xxx_res);
  519. if (ret != 0)
  520. dev_err(wcd9xxx_res->dev, "Failed to request IRQ %d: %d\n",
  521. wcd9xxx_res->irq, ret);
  522. else {
  523. ret = enable_irq_wake(wcd9xxx_res->irq);
  524. if (ret)
  525. dev_err(wcd9xxx_res->dev,
  526. "Failed to set wake interrupt on IRQ %d: %d\n",
  527. wcd9xxx_res->irq, ret);
  528. if (ret)
  529. free_irq(wcd9xxx_res->irq, wcd9xxx_res);
  530. }
  531. if (ret)
  532. goto fail_irq_init;
  533. return ret;
  534. fail_irq_init:
  535. dev_err(wcd9xxx_res->dev,
  536. "%s: Failed to init wcd9xxx irq\n", __func__);
  537. wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
  538. mutex_destroy(&wcd9xxx_res->irq_lock);
  539. mutex_destroy(&wcd9xxx_res->nested_irq_lock);
  540. return ret;
  541. }
  542. EXPORT_SYMBOL(wcd9xxx_irq_init);
  543. int wcd9xxx_request_irq(struct wcd9xxx_core_resource *wcd9xxx_res,
  544. int irq, irq_handler_t handler,
  545. const char *name, void *data)
  546. {
  547. int virq;
  548. virq = phyirq_to_virq(wcd9xxx_res, irq);
  549. return request_threaded_irq(virq, NULL, handler, IRQF_TRIGGER_RISING,
  550. name, data);
  551. }
  552. EXPORT_SYMBOL(wcd9xxx_request_irq);
  553. void wcd9xxx_irq_exit(struct wcd9xxx_core_resource *wcd9xxx_res)
  554. {
  555. dev_dbg(wcd9xxx_res->dev, "%s: Cleaning up irq %d\n", __func__,
  556. wcd9xxx_res->irq);
  557. if (wcd9xxx_res->irq) {
  558. disable_irq_wake(wcd9xxx_res->irq);
  559. free_irq(wcd9xxx_res->irq, wcd9xxx_res);
  560. wcd9xxx_res->irq = 0;
  561. wcd9xxx_irq_put_downstream_irq(wcd9xxx_res);
  562. wcd9xxx_irq_put_upstream_irq(wcd9xxx_res);
  563. }
  564. mutex_destroy(&wcd9xxx_res->irq_lock);
  565. mutex_destroy(&wcd9xxx_res->nested_irq_lock);
  566. }
  567. #ifndef CONFIG_OF
  568. static int phyirq_to_virq(
  569. struct wcd9xxx_core_resource *wcd9xxx_res,
  570. int offset)
  571. {
  572. return wcd9xxx_res->irq_base + offset;
  573. }
  574. static int virq_to_phyirq(
  575. struct wcd9xxx_core_resource *wcd9xxx_res,
  576. int virq)
  577. {
  578. return virq - wcd9xxx_res->irq_base;
  579. }
  580. static unsigned int wcd9xxx_irq_get_upstream_irq(
  581. struct wcd9xxx_core_resource *wcd9xxx_res)
  582. {
  583. return wcd9xxx_res->irq;
  584. }
  585. static void wcd9xxx_irq_put_upstream_irq(
  586. struct wcd9xxx_core_resource *wcd9xxx_res)
  587. {
  588. /* Do nothing */
  589. }
  590. static int wcd9xxx_map_irq(
  591. struct wcd9xxx_core_resource *wcd9xxx_core_res, int irq)
  592. {
  593. return phyirq_to_virq(wcd9xxx_core_res, irq);
  594. }
  595. #else
  596. static struct wcd9xxx_irq_drv_data *
  597. wcd9xxx_irq_add_domain(struct device_node *node,
  598. struct device_node *parent)
  599. {
  600. struct wcd9xxx_irq_drv_data *data = NULL;
  601. pr_debug("%s: node %s, node parent %s\n", __func__,
  602. node->name, node->parent->name);
  603. data = kzalloc(sizeof(*data), GFP_KERNEL);
  604. if (!data)
  605. return NULL;
  606. /*
  607. * wcd9xxx_intc interrupt controller supports N to N irq mapping with
  608. * single cell binding with irq numbers(offsets) only.
  609. * Use irq_domain_simple_ops that has irq_domain_simple_map and
  610. * irq_domain_xlate_onetwocell.
  611. */
  612. data->domain = irq_domain_add_linear(node, WCD9XXX_MAX_NUM_IRQS,
  613. &irq_domain_simple_ops, data);
  614. if (!data->domain) {
  615. kfree(data);
  616. return NULL;
  617. }
  618. return data;
  619. }
  620. static struct wcd9xxx_irq_drv_data *
  621. wcd9xxx_get_irq_drv_d(const struct wcd9xxx_core_resource *wcd9xxx_res)
  622. {
  623. struct irq_domain *domain;
  624. domain = wcd9xxx_res->domain;
  625. if (domain)
  626. return domain->host_data;
  627. else
  628. return NULL;
  629. }
  630. static int phyirq_to_virq(struct wcd9xxx_core_resource *wcd9xxx_res, int offset)
  631. {
  632. struct wcd9xxx_irq_drv_data *data;
  633. data = wcd9xxx_get_irq_drv_d(wcd9xxx_res);
  634. if (!data) {
  635. pr_warn("%s: not registered to interrupt controller\n",
  636. __func__);
  637. return -EINVAL;
  638. }
  639. return irq_linear_revmap(data->domain, offset);
  640. }
  641. static int virq_to_phyirq(struct wcd9xxx_core_resource *wcd9xxx_res, int virq)
  642. {
  643. struct irq_data *irq_data = irq_get_irq_data(virq);
  644. if (unlikely(!irq_data)) {
  645. pr_err("%s: irq_data is NULL", __func__);
  646. return -EINVAL;
  647. }
  648. return irq_data->hwirq;
  649. }
  650. static unsigned int wcd9xxx_irq_get_upstream_irq(
  651. struct wcd9xxx_core_resource *wcd9xxx_res)
  652. {
  653. struct wcd9xxx_irq_drv_data *data;
  654. data = wcd9xxx_get_irq_drv_d(wcd9xxx_res);
  655. if (!data) {
  656. pr_err("%s: interrupt controller is not registered\n",
  657. __func__);
  658. return 0;
  659. }
  660. /* Make sure data is updated before return. */
  661. rmb();
  662. return data->irq;
  663. }
  664. static void wcd9xxx_irq_put_downstream_irq(
  665. struct wcd9xxx_core_resource *wcd9xxx_res)
  666. {
  667. int irq, virq, ret;
  668. /*
  669. * IRQ migration hits error if the chip data and handles
  670. * are not made NULL. make associated data and handles
  671. * to NULL at irq_exit
  672. */
  673. for (irq = 0; irq < wcd9xxx_res->num_irqs; irq++) {
  674. virq = wcd9xxx_map_irq(wcd9xxx_res, irq);
  675. pr_debug("%s: irq %d -> %d\n", __func__, irq, virq);
  676. ret = irq_set_chip_data(virq, NULL);
  677. if (ret) {
  678. pr_err("%s: Failed to configure irq %d (%d)\n",
  679. __func__, irq, ret);
  680. return;
  681. }
  682. irq_set_chip_and_handler(virq, NULL, NULL);
  683. }
  684. }
  685. static void wcd9xxx_irq_put_upstream_irq(
  686. struct wcd9xxx_core_resource *wcd9xxx_res)
  687. {
  688. wcd9xxx_res->domain = NULL;
  689. }
  690. static int wcd9xxx_map_irq(struct wcd9xxx_core_resource *wcd9xxx_res, int irq)
  691. {
  692. return of_irq_to_resource(wcd9xxx_res->dev->of_node, irq, NULL);
  693. }
  694. static int wcd9xxx_irq_probe(struct platform_device *pdev)
  695. {
  696. int irq, dir_apps_irq = -EINVAL;
  697. struct wcd9xxx_irq_drv_data *data;
  698. struct device_node *node = pdev->dev.of_node;
  699. int ret = -EINVAL;
  700. irq = of_get_named_gpio(node, "qcom,gpio-connect", 0);
  701. if (!gpio_is_valid(irq))
  702. dir_apps_irq = platform_get_irq_byname(pdev, "wcd_irq");
  703. if (!gpio_is_valid(irq) && dir_apps_irq < 0) {
  704. dev_err(&pdev->dev, "TLMM connect gpio not found\n");
  705. return -EPROBE_DEFER;
  706. }
  707. if (dir_apps_irq > 0) {
  708. irq = dir_apps_irq;
  709. } else {
  710. irq = gpio_to_irq(irq);
  711. if (irq < 0) {
  712. dev_err(&pdev->dev, "Unable to configure irq\n");
  713. return irq;
  714. }
  715. }
  716. dev_dbg(&pdev->dev, "%s: virq = %d\n", __func__, irq);
  717. data = wcd9xxx_irq_add_domain(node, node->parent);
  718. if (!data) {
  719. pr_err("%s: irq_add_domain failed\n", __func__);
  720. return -EINVAL;
  721. }
  722. data->irq = irq;
  723. /* Make sure irq is saved before return. */
  724. wmb();
  725. ret = 0;
  726. return ret;
  727. }
  728. static int wcd9xxx_irq_remove(struct platform_device *pdev)
  729. {
  730. struct irq_domain *domain;
  731. struct wcd9xxx_irq_drv_data *data;
  732. domain = irq_find_host(pdev->dev.of_node);
  733. if (unlikely(!domain)) {
  734. pr_err("%s: domain is NULL", __func__);
  735. return -EINVAL;
  736. }
  737. data = (struct wcd9xxx_irq_drv_data *)domain->host_data;
  738. data->irq = 0;
  739. /* Make sure irq variable is updated in data, before irq removal. */
  740. wmb();
  741. irq_domain_remove(data->domain);
  742. kfree(data);
  743. return 0;
  744. }
  745. static const struct of_device_id of_match[] = {
  746. { .compatible = "qcom,wcd9xxx-irq" },
  747. { }
  748. };
  749. static struct platform_driver wcd9xxx_irq_driver = {
  750. .probe = wcd9xxx_irq_probe,
  751. .remove = wcd9xxx_irq_remove,
  752. .driver = {
  753. .name = "wcd9xxx_intc",
  754. .owner = THIS_MODULE,
  755. .of_match_table = of_match_ptr(of_match),
  756. },
  757. };
  758. int wcd9xxx_irq_drv_init(void)
  759. {
  760. return platform_driver_register(&wcd9xxx_irq_driver);
  761. }
  762. void wcd9xxx_irq_drv_exit(void)
  763. {
  764. platform_driver_unregister(&wcd9xxx_irq_driver);
  765. }
  766. #endif /* CONFIG_OF */