extcon-rt8973a.c 19 KB

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