extcon-rt8973a.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  1. /*
  2. * extcon-rt8973a.c - Richtek RT8973A extcon driver to support USB switches
  3. *
  4. * Copyright (c) 2014 Samsung Electronics Co., Ltd
  5. * Author: Chanwoo Choi <cw00.choi@samsung.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. */
  12. #include <linux/err.h>
  13. #include <linux/i2c.h>
  14. #include <linux/input.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/irqdomain.h>
  17. #include <linux/kernel.h>
  18. #include <linux/module.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/regmap.h>
  21. #include <linux/slab.h>
  22. #include <linux/extcon.h>
  23. #include "extcon-rt8973a.h"
  24. #define DELAY_MS_DEFAULT 20000 /* unit: millisecond */
  25. struct muic_irq {
  26. unsigned int irq;
  27. const char *name;
  28. unsigned int virq;
  29. };
  30. struct reg_data {
  31. u8 reg;
  32. u8 mask;
  33. u8 val;
  34. bool invert;
  35. };
  36. struct rt8973a_muic_info {
  37. struct device *dev;
  38. struct extcon_dev *edev;
  39. struct i2c_client *i2c;
  40. struct regmap *regmap;
  41. struct regmap_irq_chip_data *irq_data;
  42. struct muic_irq *muic_irqs;
  43. unsigned int num_muic_irqs;
  44. int irq;
  45. bool irq_attach;
  46. bool irq_detach;
  47. bool irq_ovp;
  48. bool irq_otp;
  49. struct work_struct irq_work;
  50. struct reg_data *reg_data;
  51. unsigned int num_reg_data;
  52. bool auto_config;
  53. struct mutex mutex;
  54. /*
  55. * Use delayed workqueue to detect cable state and then
  56. * notify cable state to notifiee/platform through uevent.
  57. * After completing the booting of platform, the extcon provider
  58. * driver should notify cable state to upper layer.
  59. */
  60. struct delayed_work wq_detcable;
  61. };
  62. /* Default value of RT8973A register to bring up MUIC device. */
  63. static struct reg_data rt8973a_reg_data[] = {
  64. {
  65. .reg = RT8973A_REG_CONTROL1,
  66. .mask = RT8973A_REG_CONTROL1_ADC_EN_MASK
  67. | RT8973A_REG_CONTROL1_USB_CHD_EN_MASK
  68. | RT8973A_REG_CONTROL1_CHGTYP_MASK
  69. | RT8973A_REG_CONTROL1_SWITCH_OPEN_MASK
  70. | RT8973A_REG_CONTROL1_AUTO_CONFIG_MASK
  71. | RT8973A_REG_CONTROL1_INTM_MASK,
  72. .val = RT8973A_REG_CONTROL1_ADC_EN_MASK
  73. | RT8973A_REG_CONTROL1_USB_CHD_EN_MASK
  74. | RT8973A_REG_CONTROL1_CHGTYP_MASK,
  75. .invert = false,
  76. },
  77. { /* sentinel */ }
  78. };
  79. /* List of detectable cables */
  80. static const unsigned int rt8973a_extcon_cable[] = {
  81. EXTCON_USB,
  82. EXTCON_USB_HOST,
  83. EXTCON_CHG_USB_SDP,
  84. EXTCON_CHG_USB_DCP,
  85. EXTCON_JIG,
  86. EXTCON_NONE,
  87. };
  88. /* Define OVP (Over Voltage Protection), OTP (Over Temperature Protection) */
  89. enum rt8973a_event_type {
  90. RT8973A_EVENT_ATTACH = 1,
  91. RT8973A_EVENT_DETACH,
  92. RT8973A_EVENT_OVP,
  93. RT8973A_EVENT_OTP,
  94. };
  95. /* Define supported accessory type */
  96. enum rt8973a_muic_acc_type {
  97. RT8973A_MUIC_ADC_OTG = 0x0,
  98. RT8973A_MUIC_ADC_AUDIO_SEND_END_BUTTON,
  99. RT8973A_MUIC_ADC_AUDIO_REMOTE_S1_BUTTON,
  100. RT8973A_MUIC_ADC_AUDIO_REMOTE_S2_BUTTON,
  101. RT8973A_MUIC_ADC_AUDIO_REMOTE_S3_BUTTON,
  102. RT8973A_MUIC_ADC_AUDIO_REMOTE_S4_BUTTON,
  103. RT8973A_MUIC_ADC_AUDIO_REMOTE_S5_BUTTON,
  104. RT8973A_MUIC_ADC_AUDIO_REMOTE_S6_BUTTON,
  105. RT8973A_MUIC_ADC_AUDIO_REMOTE_S7_BUTTON,
  106. RT8973A_MUIC_ADC_AUDIO_REMOTE_S8_BUTTON,
  107. RT8973A_MUIC_ADC_AUDIO_REMOTE_S9_BUTTON,
  108. RT8973A_MUIC_ADC_AUDIO_REMOTE_S10_BUTTON,
  109. RT8973A_MUIC_ADC_AUDIO_REMOTE_S11_BUTTON,
  110. RT8973A_MUIC_ADC_AUDIO_REMOTE_S12_BUTTON,
  111. RT8973A_MUIC_ADC_RESERVED_ACC_1,
  112. RT8973A_MUIC_ADC_RESERVED_ACC_2,
  113. RT8973A_MUIC_ADC_RESERVED_ACC_3,
  114. RT8973A_MUIC_ADC_RESERVED_ACC_4,
  115. RT8973A_MUIC_ADC_RESERVED_ACC_5,
  116. RT8973A_MUIC_ADC_AUDIO_TYPE2,
  117. RT8973A_MUIC_ADC_PHONE_POWERED_DEV,
  118. RT8973A_MUIC_ADC_UNKNOWN_ACC_1,
  119. RT8973A_MUIC_ADC_UNKNOWN_ACC_2,
  120. RT8973A_MUIC_ADC_TA,
  121. RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB,
  122. RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB,
  123. RT8973A_MUIC_ADC_UNKNOWN_ACC_3,
  124. RT8973A_MUIC_ADC_UNKNOWN_ACC_4,
  125. RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART,
  126. RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART,
  127. RT8973A_MUIC_ADC_UNKNOWN_ACC_5,
  128. RT8973A_MUIC_ADC_OPEN = 0x1f,
  129. /* The below accessories has same ADC value (0x1f).
  130. So, Device type1 is used to separate specific accessory. */
  131. /* |---------|--ADC| */
  132. /* | [7:5]|[4:0]| */
  133. RT8973A_MUIC_ADC_USB = 0x3f, /* | 001|11111| */
  134. };
  135. /* List of supported interrupt for RT8973A */
  136. static struct muic_irq rt8973a_muic_irqs[] = {
  137. { RT8973A_INT1_ATTACH, "muic-attach" },
  138. { RT8973A_INT1_DETACH, "muic-detach" },
  139. { RT8973A_INT1_CHGDET, "muic-chgdet" },
  140. { RT8973A_INT1_DCD_T, "muic-dcd-t" },
  141. { RT8973A_INT1_OVP, "muic-ovp" },
  142. { RT8973A_INT1_CONNECT, "muic-connect" },
  143. { RT8973A_INT1_ADC_CHG, "muic-adc-chg" },
  144. { RT8973A_INT1_OTP, "muic-otp" },
  145. { RT8973A_INT2_UVLO, "muic-uvlo" },
  146. { RT8973A_INT2_POR, "muic-por" },
  147. { RT8973A_INT2_OTP_FET, "muic-otp-fet" },
  148. { RT8973A_INT2_OVP_FET, "muic-ovp-fet" },
  149. { RT8973A_INT2_OCP_LATCH, "muic-ocp-latch" },
  150. { RT8973A_INT2_OCP, "muic-ocp" },
  151. { RT8973A_INT2_OVP_OCP, "muic-ovp-ocp" },
  152. };
  153. /* Define interrupt list of RT8973A to register regmap_irq */
  154. static const struct regmap_irq rt8973a_irqs[] = {
  155. /* INT1 interrupts */
  156. { .reg_offset = 0, .mask = RT8973A_INT1_ATTACH_MASK, },
  157. { .reg_offset = 0, .mask = RT8973A_INT1_DETACH_MASK, },
  158. { .reg_offset = 0, .mask = RT8973A_INT1_CHGDET_MASK, },
  159. { .reg_offset = 0, .mask = RT8973A_INT1_DCD_T_MASK, },
  160. { .reg_offset = 0, .mask = RT8973A_INT1_OVP_MASK, },
  161. { .reg_offset = 0, .mask = RT8973A_INT1_CONNECT_MASK, },
  162. { .reg_offset = 0, .mask = RT8973A_INT1_ADC_CHG_MASK, },
  163. { .reg_offset = 0, .mask = RT8973A_INT1_OTP_MASK, },
  164. /* INT2 interrupts */
  165. { .reg_offset = 1, .mask = RT8973A_INT2_UVLOT_MASK,},
  166. { .reg_offset = 1, .mask = RT8973A_INT2_POR_MASK, },
  167. { .reg_offset = 1, .mask = RT8973A_INT2_OTP_FET_MASK, },
  168. { .reg_offset = 1, .mask = RT8973A_INT2_OVP_FET_MASK, },
  169. { .reg_offset = 1, .mask = RT8973A_INT2_OCP_LATCH_MASK, },
  170. { .reg_offset = 1, .mask = RT8973A_INT2_OCP_MASK, },
  171. { .reg_offset = 1, .mask = RT8973A_INT2_OVP_OCP_MASK, },
  172. };
  173. static const struct regmap_irq_chip rt8973a_muic_irq_chip = {
  174. .name = "rt8973a",
  175. .status_base = RT8973A_REG_INT1,
  176. .mask_base = RT8973A_REG_INTM1,
  177. .mask_invert = false,
  178. .num_regs = 2,
  179. .irqs = rt8973a_irqs,
  180. .num_irqs = ARRAY_SIZE(rt8973a_irqs),
  181. };
  182. /* Define regmap configuration of RT8973A for I2C communication */
  183. static bool rt8973a_muic_volatile_reg(struct device *dev, unsigned int reg)
  184. {
  185. switch (reg) {
  186. case RT8973A_REG_INTM1:
  187. case RT8973A_REG_INTM2:
  188. return true;
  189. default:
  190. break;
  191. }
  192. return false;
  193. }
  194. static const struct regmap_config rt8973a_muic_regmap_config = {
  195. .reg_bits = 8,
  196. .val_bits = 8,
  197. .volatile_reg = rt8973a_muic_volatile_reg,
  198. .max_register = RT8973A_REG_END,
  199. };
  200. /* Change DM_CON/DP_CON/VBUSIN switch according to cable type */
  201. static int rt8973a_muic_set_path(struct rt8973a_muic_info *info,
  202. unsigned int con_sw, bool attached)
  203. {
  204. int ret;
  205. /*
  206. * Don't need to set h/w path according to cable type
  207. * if Auto-configuration mode of CONTROL1 register is true.
  208. */
  209. if (info->auto_config)
  210. return 0;
  211. if (!attached)
  212. con_sw = DM_DP_SWITCH_UART;
  213. switch (con_sw) {
  214. case DM_DP_SWITCH_OPEN:
  215. case DM_DP_SWITCH_USB:
  216. case DM_DP_SWITCH_UART:
  217. ret = regmap_update_bits(info->regmap, RT8973A_REG_MANUAL_SW1,
  218. RT8973A_REG_MANUAL_SW1_DP_MASK |
  219. RT8973A_REG_MANUAL_SW1_DM_MASK,
  220. con_sw);
  221. if (ret < 0) {
  222. dev_err(info->dev,
  223. "cannot update DM_CON/DP_CON switch\n");
  224. return ret;
  225. }
  226. break;
  227. default:
  228. dev_err(info->dev, "Unknown DM_CON/DP_CON switch type (%d)\n",
  229. con_sw);
  230. return -EINVAL;
  231. }
  232. return 0;
  233. }
  234. static int rt8973a_muic_get_cable_type(struct rt8973a_muic_info *info)
  235. {
  236. unsigned int adc, dev1;
  237. int ret, cable_type;
  238. /* Read ADC value according to external cable or button */
  239. ret = regmap_read(info->regmap, RT8973A_REG_ADC, &adc);
  240. if (ret) {
  241. dev_err(info->dev, "failed to read ADC register\n");
  242. return ret;
  243. }
  244. cable_type = adc & RT8973A_REG_ADC_MASK;
  245. /* Read Device 1 reigster to identify correct cable type */
  246. ret = regmap_read(info->regmap, RT8973A_REG_DEV1, &dev1);
  247. if (ret) {
  248. dev_err(info->dev, "failed to read DEV1 register\n");
  249. return ret;
  250. }
  251. switch (adc) {
  252. case RT8973A_MUIC_ADC_OPEN:
  253. if (dev1 & RT8973A_REG_DEV1_USB_MASK)
  254. cable_type = RT8973A_MUIC_ADC_USB;
  255. else if (dev1 & RT8973A_REG_DEV1_DCPORT_MASK)
  256. cable_type = RT8973A_MUIC_ADC_TA;
  257. else
  258. cable_type = RT8973A_MUIC_ADC_OPEN;
  259. break;
  260. default:
  261. break;
  262. }
  263. return cable_type;
  264. }
  265. static int rt8973a_muic_cable_handler(struct rt8973a_muic_info *info,
  266. enum rt8973a_event_type event)
  267. {
  268. static unsigned int prev_cable_type;
  269. unsigned int con_sw = DM_DP_SWITCH_UART;
  270. int ret, cable_type;
  271. unsigned int id;
  272. bool attached = false;
  273. switch (event) {
  274. case RT8973A_EVENT_ATTACH:
  275. cable_type = rt8973a_muic_get_cable_type(info);
  276. attached = true;
  277. break;
  278. case RT8973A_EVENT_DETACH:
  279. cable_type = prev_cable_type;
  280. attached = false;
  281. break;
  282. case RT8973A_EVENT_OVP:
  283. case RT8973A_EVENT_OTP:
  284. dev_warn(info->dev,
  285. "happen Over %s issue. Need to disconnect all cables\n",
  286. event == RT8973A_EVENT_OVP ? "Voltage" : "Temperature");
  287. cable_type = prev_cable_type;
  288. attached = false;
  289. break;
  290. default:
  291. dev_err(info->dev,
  292. "Cannot handle this event (event:%d)\n", event);
  293. return -EINVAL;
  294. }
  295. prev_cable_type = cable_type;
  296. switch (cable_type) {
  297. case RT8973A_MUIC_ADC_OTG:
  298. id = EXTCON_USB_HOST;
  299. con_sw = DM_DP_SWITCH_USB;
  300. break;
  301. case RT8973A_MUIC_ADC_TA:
  302. id = EXTCON_CHG_USB_DCP;
  303. con_sw = DM_DP_SWITCH_OPEN;
  304. break;
  305. case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_USB:
  306. case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_USB:
  307. id = EXTCON_JIG;
  308. con_sw = DM_DP_SWITCH_USB;
  309. break;
  310. case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_OFF_UART:
  311. case RT8973A_MUIC_ADC_FACTORY_MODE_BOOT_ON_UART:
  312. id = EXTCON_JIG;
  313. con_sw = DM_DP_SWITCH_UART;
  314. break;
  315. case RT8973A_MUIC_ADC_USB:
  316. id = EXTCON_USB;
  317. con_sw = DM_DP_SWITCH_USB;
  318. break;
  319. case RT8973A_MUIC_ADC_OPEN:
  320. return 0;
  321. case RT8973A_MUIC_ADC_UNKNOWN_ACC_1:
  322. case RT8973A_MUIC_ADC_UNKNOWN_ACC_2:
  323. case RT8973A_MUIC_ADC_UNKNOWN_ACC_3:
  324. case RT8973A_MUIC_ADC_UNKNOWN_ACC_4:
  325. case RT8973A_MUIC_ADC_UNKNOWN_ACC_5:
  326. dev_warn(info->dev,
  327. "Unknown accessory type (adc:0x%x)\n", cable_type);
  328. return 0;
  329. case RT8973A_MUIC_ADC_AUDIO_SEND_END_BUTTON:
  330. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S1_BUTTON:
  331. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S2_BUTTON:
  332. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S3_BUTTON:
  333. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S4_BUTTON:
  334. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S5_BUTTON:
  335. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S6_BUTTON:
  336. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S7_BUTTON:
  337. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S8_BUTTON:
  338. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S9_BUTTON:
  339. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S10_BUTTON:
  340. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S11_BUTTON:
  341. case RT8973A_MUIC_ADC_AUDIO_REMOTE_S12_BUTTON:
  342. case RT8973A_MUIC_ADC_AUDIO_TYPE2:
  343. dev_warn(info->dev,
  344. "Audio device/button type (adc:0x%x)\n", cable_type);
  345. return 0;
  346. case RT8973A_MUIC_ADC_RESERVED_ACC_1:
  347. case RT8973A_MUIC_ADC_RESERVED_ACC_2:
  348. case RT8973A_MUIC_ADC_RESERVED_ACC_3:
  349. case RT8973A_MUIC_ADC_RESERVED_ACC_4:
  350. case RT8973A_MUIC_ADC_RESERVED_ACC_5:
  351. case RT8973A_MUIC_ADC_PHONE_POWERED_DEV:
  352. return 0;
  353. default:
  354. dev_err(info->dev,
  355. "Cannot handle this cable_type (adc:0x%x)\n",
  356. cable_type);
  357. return -EINVAL;
  358. }
  359. /* Change internal hardware path(DM_CON/DP_CON) */
  360. ret = rt8973a_muic_set_path(info, con_sw, attached);
  361. if (ret < 0)
  362. return ret;
  363. /* Change the state of external accessory */
  364. extcon_set_state_sync(info->edev, id, attached);
  365. if (id == EXTCON_USB)
  366. extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP,
  367. attached);
  368. return 0;
  369. }
  370. static void rt8973a_muic_irq_work(struct work_struct *work)
  371. {
  372. struct rt8973a_muic_info *info = container_of(work,
  373. struct rt8973a_muic_info, irq_work);
  374. int ret = 0;
  375. if (!info->edev)
  376. return;
  377. mutex_lock(&info->mutex);
  378. /* Detect attached or detached cables */
  379. if (info->irq_attach) {
  380. ret = rt8973a_muic_cable_handler(info, RT8973A_EVENT_ATTACH);
  381. info->irq_attach = false;
  382. }
  383. if (info->irq_detach) {
  384. ret = rt8973a_muic_cable_handler(info, RT8973A_EVENT_DETACH);
  385. info->irq_detach = false;
  386. }
  387. if (info->irq_ovp) {
  388. ret = rt8973a_muic_cable_handler(info, RT8973A_EVENT_OVP);
  389. info->irq_ovp = false;
  390. }
  391. if (info->irq_otp) {
  392. ret = rt8973a_muic_cable_handler(info, RT8973A_EVENT_OTP);
  393. info->irq_otp = false;
  394. }
  395. if (ret < 0)
  396. dev_err(info->dev, "failed to handle MUIC interrupt\n");
  397. mutex_unlock(&info->mutex);
  398. }
  399. static irqreturn_t rt8973a_muic_irq_handler(int irq, void *data)
  400. {
  401. struct rt8973a_muic_info *info = data;
  402. int i, irq_type = -1;
  403. for (i = 0; i < info->num_muic_irqs; i++)
  404. if (irq == info->muic_irqs[i].virq)
  405. irq_type = info->muic_irqs[i].irq;
  406. switch (irq_type) {
  407. case RT8973A_INT1_ATTACH:
  408. info->irq_attach = true;
  409. break;
  410. case RT8973A_INT1_DETACH:
  411. info->irq_detach = true;
  412. break;
  413. case RT8973A_INT1_OVP:
  414. info->irq_ovp = true;
  415. break;
  416. case RT8973A_INT1_OTP:
  417. info->irq_otp = true;
  418. break;
  419. case RT8973A_INT1_CHGDET:
  420. case RT8973A_INT1_DCD_T:
  421. case RT8973A_INT1_CONNECT:
  422. case RT8973A_INT1_ADC_CHG:
  423. case RT8973A_INT2_UVLO:
  424. case RT8973A_INT2_POR:
  425. case RT8973A_INT2_OTP_FET:
  426. case RT8973A_INT2_OVP_FET:
  427. case RT8973A_INT2_OCP_LATCH:
  428. case RT8973A_INT2_OCP:
  429. case RT8973A_INT2_OVP_OCP:
  430. default:
  431. dev_dbg(info->dev,
  432. "Cannot handle this interrupt (%d)\n", irq_type);
  433. break;
  434. }
  435. schedule_work(&info->irq_work);
  436. return IRQ_HANDLED;
  437. }
  438. static void rt8973a_muic_detect_cable_wq(struct work_struct *work)
  439. {
  440. struct rt8973a_muic_info *info = container_of(to_delayed_work(work),
  441. struct rt8973a_muic_info, wq_detcable);
  442. int ret;
  443. /* Notify the state of connector cable or not */
  444. ret = rt8973a_muic_cable_handler(info, RT8973A_EVENT_ATTACH);
  445. if (ret < 0)
  446. dev_warn(info->dev, "failed to detect cable state\n");
  447. }
  448. static void rt8973a_init_dev_type(struct rt8973a_muic_info *info)
  449. {
  450. unsigned int data, vendor_id, version_id;
  451. int i, ret;
  452. /* To test I2C, Print version_id and vendor_id of RT8973A */
  453. ret = regmap_read(info->regmap, RT8973A_REG_DEVICE_ID, &data);
  454. if (ret) {
  455. dev_err(info->dev,
  456. "failed to read DEVICE_ID register: %d\n", ret);
  457. return;
  458. }
  459. vendor_id = ((data & RT8973A_REG_DEVICE_ID_VENDOR_MASK) >>
  460. RT8973A_REG_DEVICE_ID_VENDOR_SHIFT);
  461. version_id = ((data & RT8973A_REG_DEVICE_ID_VERSION_MASK) >>
  462. RT8973A_REG_DEVICE_ID_VERSION_SHIFT);
  463. dev_info(info->dev, "Device type: version: 0x%x, vendor: 0x%x\n",
  464. version_id, vendor_id);
  465. /* Initiazle the register of RT8973A device to bring-up */
  466. for (i = 0; i < info->num_reg_data; i++) {
  467. u8 reg = info->reg_data[i].reg;
  468. u8 mask = info->reg_data[i].mask;
  469. u8 val = 0;
  470. if (info->reg_data[i].invert)
  471. val = ~info->reg_data[i].val;
  472. else
  473. val = info->reg_data[i].val;
  474. regmap_update_bits(info->regmap, reg, mask, val);
  475. }
  476. /* Check whether RT8973A is auto swithcing mode or not */
  477. ret = regmap_read(info->regmap, RT8973A_REG_CONTROL1, &data);
  478. if (ret) {
  479. dev_err(info->dev,
  480. "failed to read CONTROL1 register: %d\n", ret);
  481. return;
  482. }
  483. data &= RT8973A_REG_CONTROL1_AUTO_CONFIG_MASK;
  484. if (data) {
  485. info->auto_config = true;
  486. dev_info(info->dev,
  487. "Enable Auto-configuration for internal path\n");
  488. }
  489. }
  490. static int rt8973a_muic_i2c_probe(struct i2c_client *i2c,
  491. const struct i2c_device_id *id)
  492. {
  493. struct device_node *np = i2c->dev.of_node;
  494. struct rt8973a_muic_info *info;
  495. int i, ret, irq_flags;
  496. if (!np)
  497. return -EINVAL;
  498. info = devm_kzalloc(&i2c->dev, sizeof(*info), GFP_KERNEL);
  499. if (!info)
  500. return -ENOMEM;
  501. i2c_set_clientdata(i2c, info);
  502. info->dev = &i2c->dev;
  503. info->i2c = i2c;
  504. info->irq = i2c->irq;
  505. info->muic_irqs = rt8973a_muic_irqs;
  506. info->num_muic_irqs = ARRAY_SIZE(rt8973a_muic_irqs);
  507. info->reg_data = rt8973a_reg_data;
  508. info->num_reg_data = ARRAY_SIZE(rt8973a_reg_data);
  509. mutex_init(&info->mutex);
  510. INIT_WORK(&info->irq_work, rt8973a_muic_irq_work);
  511. info->regmap = devm_regmap_init_i2c(i2c, &rt8973a_muic_regmap_config);
  512. if (IS_ERR(info->regmap)) {
  513. ret = PTR_ERR(info->regmap);
  514. dev_err(info->dev, "failed to allocate register map: %d\n",
  515. ret);
  516. return ret;
  517. }
  518. /* Support irq domain for RT8973A MUIC device */
  519. irq_flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT | IRQF_SHARED;
  520. ret = regmap_add_irq_chip(info->regmap, info->irq, irq_flags, 0,
  521. &rt8973a_muic_irq_chip, &info->irq_data);
  522. if (ret != 0) {
  523. dev_err(info->dev, "failed to add irq_chip (irq:%d, err:%d)\n",
  524. info->irq, ret);
  525. return ret;
  526. }
  527. for (i = 0; i < info->num_muic_irqs; i++) {
  528. struct muic_irq *muic_irq = &info->muic_irqs[i];
  529. int virq = 0;
  530. virq = regmap_irq_get_virq(info->irq_data, muic_irq->irq);
  531. if (virq <= 0)
  532. return -EINVAL;
  533. muic_irq->virq = virq;
  534. ret = devm_request_threaded_irq(info->dev, virq, NULL,
  535. rt8973a_muic_irq_handler,
  536. IRQF_NO_SUSPEND | IRQF_ONESHOT,
  537. muic_irq->name, info);
  538. if (ret) {
  539. dev_err(info->dev,
  540. "failed: irq request (IRQ: %d, error :%d)\n",
  541. muic_irq->irq, ret);
  542. return ret;
  543. }
  544. }
  545. /* Allocate extcon device */
  546. info->edev = devm_extcon_dev_allocate(info->dev, rt8973a_extcon_cable);
  547. if (IS_ERR(info->edev)) {
  548. dev_err(info->dev, "failed to allocate memory for extcon\n");
  549. return -ENOMEM;
  550. }
  551. /* Register extcon device */
  552. ret = devm_extcon_dev_register(info->dev, info->edev);
  553. if (ret) {
  554. dev_err(info->dev, "failed to register extcon device\n");
  555. return ret;
  556. }
  557. /*
  558. * Detect accessory after completing the initialization of platform
  559. *
  560. * - Use delayed workqueue to detect cable state and then
  561. * notify cable state to notifiee/platform through uevent.
  562. * After completing the booting of platform, the extcon provider
  563. * driver should notify cable state to upper layer.
  564. */
  565. INIT_DELAYED_WORK(&info->wq_detcable, rt8973a_muic_detect_cable_wq);
  566. queue_delayed_work(system_power_efficient_wq, &info->wq_detcable,
  567. msecs_to_jiffies(DELAY_MS_DEFAULT));
  568. /* Initialize RT8973A device and print vendor id and version id */
  569. rt8973a_init_dev_type(info);
  570. return 0;
  571. }
  572. static int rt8973a_muic_i2c_remove(struct i2c_client *i2c)
  573. {
  574. struct rt8973a_muic_info *info = i2c_get_clientdata(i2c);
  575. regmap_del_irq_chip(info->irq, info->irq_data);
  576. return 0;
  577. }
  578. static const struct of_device_id rt8973a_dt_match[] = {
  579. { .compatible = "richtek,rt8973a-muic" },
  580. { },
  581. };
  582. MODULE_DEVICE_TABLE(of, rt8973a_dt_match);
  583. #ifdef CONFIG_PM_SLEEP
  584. static int rt8973a_muic_suspend(struct device *dev)
  585. {
  586. struct i2c_client *i2c = to_i2c_client(dev);
  587. struct rt8973a_muic_info *info = i2c_get_clientdata(i2c);
  588. enable_irq_wake(info->irq);
  589. return 0;
  590. }
  591. static int rt8973a_muic_resume(struct device *dev)
  592. {
  593. struct i2c_client *i2c = to_i2c_client(dev);
  594. struct rt8973a_muic_info *info = i2c_get_clientdata(i2c);
  595. disable_irq_wake(info->irq);
  596. return 0;
  597. }
  598. #endif
  599. static SIMPLE_DEV_PM_OPS(rt8973a_muic_pm_ops,
  600. rt8973a_muic_suspend, rt8973a_muic_resume);
  601. static const struct i2c_device_id rt8973a_i2c_id[] = {
  602. { "rt8973a", TYPE_RT8973A },
  603. { }
  604. };
  605. MODULE_DEVICE_TABLE(i2c, rt8973a_i2c_id);
  606. static struct i2c_driver rt8973a_muic_i2c_driver = {
  607. .driver = {
  608. .name = "rt8973a",
  609. .pm = &rt8973a_muic_pm_ops,
  610. .of_match_table = rt8973a_dt_match,
  611. },
  612. .probe = rt8973a_muic_i2c_probe,
  613. .remove = rt8973a_muic_i2c_remove,
  614. .id_table = rt8973a_i2c_id,
  615. };
  616. static int __init rt8973a_muic_i2c_init(void)
  617. {
  618. return i2c_add_driver(&rt8973a_muic_i2c_driver);
  619. }
  620. subsys_initcall(rt8973a_muic_i2c_init);
  621. MODULE_DESCRIPTION("Richtek RT8973A Extcon driver");
  622. MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
  623. MODULE_LICENSE("GPL");