88pm860x-core.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  1. /*
  2. * Base driver for Marvell 88PM8607
  3. *
  4. * Copyright (C) 2009 Marvell International Ltd.
  5. *
  6. * Author: Haojian Zhuang <haojian.zhuang@marvell.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/err.h>
  15. #include <linux/i2c.h>
  16. #include <linux/irq.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/irqdomain.h>
  19. #include <linux/of.h>
  20. #include <linux/of_platform.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/regmap.h>
  23. #include <linux/slab.h>
  24. #include <linux/mfd/core.h>
  25. #include <linux/mfd/88pm860x.h>
  26. #include <linux/regulator/machine.h>
  27. #include <linux/power/charger-manager.h>
  28. #define INT_STATUS_NUM 3
  29. static struct resource bk0_resources[] = {
  30. {2, 2, "duty cycle", IORESOURCE_REG, },
  31. {3, 3, "always on", IORESOURCE_REG, },
  32. {3, 3, "current", IORESOURCE_REG, },
  33. };
  34. static struct resource bk1_resources[] = {
  35. {4, 4, "duty cycle", IORESOURCE_REG, },
  36. {5, 5, "always on", IORESOURCE_REG, },
  37. {5, 5, "current", IORESOURCE_REG, },
  38. };
  39. static struct resource bk2_resources[] = {
  40. {6, 6, "duty cycle", IORESOURCE_REG, },
  41. {7, 7, "always on", IORESOURCE_REG, },
  42. {5, 5, "current", IORESOURCE_REG, },
  43. };
  44. static struct resource led0_resources[] = {
  45. /* RGB1 Red LED */
  46. {0xd, 0xd, "control", IORESOURCE_REG, },
  47. {0xc, 0xc, "blink", IORESOURCE_REG, },
  48. };
  49. static struct resource led1_resources[] = {
  50. /* RGB1 Green LED */
  51. {0xe, 0xe, "control", IORESOURCE_REG, },
  52. {0xc, 0xc, "blink", IORESOURCE_REG, },
  53. };
  54. static struct resource led2_resources[] = {
  55. /* RGB1 Blue LED */
  56. {0xf, 0xf, "control", IORESOURCE_REG, },
  57. {0xc, 0xc, "blink", IORESOURCE_REG, },
  58. };
  59. static struct resource led3_resources[] = {
  60. /* RGB2 Red LED */
  61. {0x9, 0x9, "control", IORESOURCE_REG, },
  62. {0x8, 0x8, "blink", IORESOURCE_REG, },
  63. };
  64. static struct resource led4_resources[] = {
  65. /* RGB2 Green LED */
  66. {0xa, 0xa, "control", IORESOURCE_REG, },
  67. {0x8, 0x8, "blink", IORESOURCE_REG, },
  68. };
  69. static struct resource led5_resources[] = {
  70. /* RGB2 Blue LED */
  71. {0xb, 0xb, "control", IORESOURCE_REG, },
  72. {0x8, 0x8, "blink", IORESOURCE_REG, },
  73. };
  74. static struct resource buck1_resources[] = {
  75. {0x24, 0x24, "buck set", IORESOURCE_REG, },
  76. };
  77. static struct resource buck2_resources[] = {
  78. {0x25, 0x25, "buck set", IORESOURCE_REG, },
  79. };
  80. static struct resource buck3_resources[] = {
  81. {0x26, 0x26, "buck set", IORESOURCE_REG, },
  82. };
  83. static struct resource ldo1_resources[] = {
  84. {0x10, 0x10, "ldo set", IORESOURCE_REG, },
  85. };
  86. static struct resource ldo2_resources[] = {
  87. {0x11, 0x11, "ldo set", IORESOURCE_REG, },
  88. };
  89. static struct resource ldo3_resources[] = {
  90. {0x12, 0x12, "ldo set", IORESOURCE_REG, },
  91. };
  92. static struct resource ldo4_resources[] = {
  93. {0x13, 0x13, "ldo set", IORESOURCE_REG, },
  94. };
  95. static struct resource ldo5_resources[] = {
  96. {0x14, 0x14, "ldo set", IORESOURCE_REG, },
  97. };
  98. static struct resource ldo6_resources[] = {
  99. {0x15, 0x15, "ldo set", IORESOURCE_REG, },
  100. };
  101. static struct resource ldo7_resources[] = {
  102. {0x16, 0x16, "ldo set", IORESOURCE_REG, },
  103. };
  104. static struct resource ldo8_resources[] = {
  105. {0x17, 0x17, "ldo set", IORESOURCE_REG, },
  106. };
  107. static struct resource ldo9_resources[] = {
  108. {0x18, 0x18, "ldo set", IORESOURCE_REG, },
  109. };
  110. static struct resource ldo10_resources[] = {
  111. {0x19, 0x19, "ldo set", IORESOURCE_REG, },
  112. };
  113. static struct resource ldo12_resources[] = {
  114. {0x1a, 0x1a, "ldo set", IORESOURCE_REG, },
  115. };
  116. static struct resource ldo_vibrator_resources[] = {
  117. {0x28, 0x28, "ldo set", IORESOURCE_REG, },
  118. };
  119. static struct resource ldo14_resources[] = {
  120. {0x1b, 0x1b, "ldo set", IORESOURCE_REG, },
  121. };
  122. static struct resource touch_resources[] = {
  123. {PM8607_IRQ_PEN, PM8607_IRQ_PEN, "touch", IORESOURCE_IRQ,},
  124. };
  125. static struct resource onkey_resources[] = {
  126. {PM8607_IRQ_ONKEY, PM8607_IRQ_ONKEY, "onkey", IORESOURCE_IRQ,},
  127. };
  128. static struct resource codec_resources[] = {
  129. /* Headset microphone insertion or removal */
  130. {PM8607_IRQ_MICIN, PM8607_IRQ_MICIN, "micin", IORESOURCE_IRQ,},
  131. /* Hook-switch press or release */
  132. {PM8607_IRQ_HOOK, PM8607_IRQ_HOOK, "hook", IORESOURCE_IRQ,},
  133. /* Headset insertion or removal */
  134. {PM8607_IRQ_HEADSET, PM8607_IRQ_HEADSET, "headset", IORESOURCE_IRQ,},
  135. /* Audio short */
  136. {PM8607_IRQ_AUDIO_SHORT, PM8607_IRQ_AUDIO_SHORT, "audio-short",
  137. IORESOURCE_IRQ,},
  138. };
  139. static struct resource battery_resources[] = {
  140. {PM8607_IRQ_CC, PM8607_IRQ_CC, "columb counter", IORESOURCE_IRQ,},
  141. {PM8607_IRQ_BAT, PM8607_IRQ_BAT, "battery", IORESOURCE_IRQ,},
  142. };
  143. static struct resource charger_resources[] = {
  144. {PM8607_IRQ_CHG, PM8607_IRQ_CHG, "charger detect", IORESOURCE_IRQ,},
  145. {PM8607_IRQ_CHG_DONE, PM8607_IRQ_CHG_DONE, "charging done",
  146. IORESOURCE_IRQ,},
  147. {PM8607_IRQ_CHG_FAIL, PM8607_IRQ_CHG_FAIL, "charging timeout",
  148. IORESOURCE_IRQ,},
  149. {PM8607_IRQ_CHG_FAULT, PM8607_IRQ_CHG_FAULT, "charging fault",
  150. IORESOURCE_IRQ,},
  151. {PM8607_IRQ_GPADC1, PM8607_IRQ_GPADC1, "battery temperature",
  152. IORESOURCE_IRQ,},
  153. {PM8607_IRQ_VBAT, PM8607_IRQ_VBAT, "battery voltage", IORESOURCE_IRQ,},
  154. {PM8607_IRQ_VCHG, PM8607_IRQ_VCHG, "vchg voltage", IORESOURCE_IRQ,},
  155. };
  156. static struct resource rtc_resources[] = {
  157. {PM8607_IRQ_RTC, PM8607_IRQ_RTC, "rtc", IORESOURCE_IRQ,},
  158. };
  159. static struct mfd_cell bk_devs[] = {
  160. {
  161. .name = "88pm860x-backlight",
  162. .id = 0,
  163. .num_resources = ARRAY_SIZE(bk0_resources),
  164. .resources = bk0_resources,
  165. }, {
  166. .name = "88pm860x-backlight",
  167. .id = 1,
  168. .num_resources = ARRAY_SIZE(bk1_resources),
  169. .resources = bk1_resources,
  170. }, {
  171. .name = "88pm860x-backlight",
  172. .id = 2,
  173. .num_resources = ARRAY_SIZE(bk2_resources),
  174. .resources = bk2_resources,
  175. },
  176. };
  177. static struct mfd_cell led_devs[] = {
  178. {
  179. .name = "88pm860x-led",
  180. .id = 0,
  181. .num_resources = ARRAY_SIZE(led0_resources),
  182. .resources = led0_resources,
  183. }, {
  184. .name = "88pm860x-led",
  185. .id = 1,
  186. .num_resources = ARRAY_SIZE(led1_resources),
  187. .resources = led1_resources,
  188. }, {
  189. .name = "88pm860x-led",
  190. .id = 2,
  191. .num_resources = ARRAY_SIZE(led2_resources),
  192. .resources = led2_resources,
  193. }, {
  194. .name = "88pm860x-led",
  195. .id = 3,
  196. .num_resources = ARRAY_SIZE(led3_resources),
  197. .resources = led3_resources,
  198. }, {
  199. .name = "88pm860x-led",
  200. .id = 4,
  201. .num_resources = ARRAY_SIZE(led4_resources),
  202. .resources = led4_resources,
  203. }, {
  204. .name = "88pm860x-led",
  205. .id = 5,
  206. .num_resources = ARRAY_SIZE(led5_resources),
  207. .resources = led5_resources,
  208. },
  209. };
  210. static struct mfd_cell reg_devs[] = {
  211. {
  212. .name = "88pm860x-regulator",
  213. .id = 0,
  214. .num_resources = ARRAY_SIZE(buck1_resources),
  215. .resources = buck1_resources,
  216. }, {
  217. .name = "88pm860x-regulator",
  218. .id = 1,
  219. .num_resources = ARRAY_SIZE(buck2_resources),
  220. .resources = buck2_resources,
  221. }, {
  222. .name = "88pm860x-regulator",
  223. .id = 2,
  224. .num_resources = ARRAY_SIZE(buck3_resources),
  225. .resources = buck3_resources,
  226. }, {
  227. .name = "88pm860x-regulator",
  228. .id = 3,
  229. .num_resources = ARRAY_SIZE(ldo1_resources),
  230. .resources = ldo1_resources,
  231. }, {
  232. .name = "88pm860x-regulator",
  233. .id = 4,
  234. .num_resources = ARRAY_SIZE(ldo2_resources),
  235. .resources = ldo2_resources,
  236. }, {
  237. .name = "88pm860x-regulator",
  238. .id = 5,
  239. .num_resources = ARRAY_SIZE(ldo3_resources),
  240. .resources = ldo3_resources,
  241. }, {
  242. .name = "88pm860x-regulator",
  243. .id = 6,
  244. .num_resources = ARRAY_SIZE(ldo4_resources),
  245. .resources = ldo4_resources,
  246. }, {
  247. .name = "88pm860x-regulator",
  248. .id = 7,
  249. .num_resources = ARRAY_SIZE(ldo5_resources),
  250. .resources = ldo5_resources,
  251. }, {
  252. .name = "88pm860x-regulator",
  253. .id = 8,
  254. .num_resources = ARRAY_SIZE(ldo6_resources),
  255. .resources = ldo6_resources,
  256. }, {
  257. .name = "88pm860x-regulator",
  258. .id = 9,
  259. .num_resources = ARRAY_SIZE(ldo7_resources),
  260. .resources = ldo7_resources,
  261. }, {
  262. .name = "88pm860x-regulator",
  263. .id = 10,
  264. .num_resources = ARRAY_SIZE(ldo8_resources),
  265. .resources = ldo8_resources,
  266. }, {
  267. .name = "88pm860x-regulator",
  268. .id = 11,
  269. .num_resources = ARRAY_SIZE(ldo9_resources),
  270. .resources = ldo9_resources,
  271. }, {
  272. .name = "88pm860x-regulator",
  273. .id = 12,
  274. .num_resources = ARRAY_SIZE(ldo10_resources),
  275. .resources = ldo10_resources,
  276. }, {
  277. .name = "88pm860x-regulator",
  278. .id = 13,
  279. .num_resources = ARRAY_SIZE(ldo12_resources),
  280. .resources = ldo12_resources,
  281. }, {
  282. .name = "88pm860x-regulator",
  283. .id = 14,
  284. .num_resources = ARRAY_SIZE(ldo_vibrator_resources),
  285. .resources = ldo_vibrator_resources,
  286. }, {
  287. .name = "88pm860x-regulator",
  288. .id = 15,
  289. .num_resources = ARRAY_SIZE(ldo14_resources),
  290. .resources = ldo14_resources,
  291. },
  292. };
  293. static struct mfd_cell touch_devs[] = {
  294. {"88pm860x-touch", -1,},
  295. };
  296. static struct mfd_cell onkey_devs[] = {
  297. {"88pm860x-onkey", -1,},
  298. };
  299. static struct mfd_cell codec_devs[] = {
  300. {"88pm860x-codec", -1,},
  301. };
  302. static struct regulator_consumer_supply preg_supply[] = {
  303. REGULATOR_SUPPLY("preg", "charger-manager"),
  304. };
  305. static struct regulator_init_data preg_init_data = {
  306. .num_consumer_supplies = ARRAY_SIZE(preg_supply),
  307. .consumer_supplies = &preg_supply[0],
  308. };
  309. static struct charger_regulator chg_desc_regulator_data[] = {
  310. { .regulator_name = "preg", },
  311. };
  312. static struct mfd_cell power_devs[] = {
  313. {"88pm860x-battery", -1,},
  314. {"88pm860x-charger", -1,},
  315. {"88pm860x-preg", -1,},
  316. {"charger-manager", -1,},
  317. };
  318. static struct mfd_cell rtc_devs[] = {
  319. {"88pm860x-rtc", -1,},
  320. };
  321. struct pm860x_irq_data {
  322. int reg;
  323. int mask_reg;
  324. int enable; /* enable or not */
  325. int offs; /* bit offset in mask register */
  326. };
  327. static struct pm860x_irq_data pm860x_irqs[] = {
  328. [PM8607_IRQ_ONKEY] = {
  329. .reg = PM8607_INT_STATUS1,
  330. .mask_reg = PM8607_INT_MASK_1,
  331. .offs = 1 << 0,
  332. },
  333. [PM8607_IRQ_EXTON] = {
  334. .reg = PM8607_INT_STATUS1,
  335. .mask_reg = PM8607_INT_MASK_1,
  336. .offs = 1 << 1,
  337. },
  338. [PM8607_IRQ_CHG] = {
  339. .reg = PM8607_INT_STATUS1,
  340. .mask_reg = PM8607_INT_MASK_1,
  341. .offs = 1 << 2,
  342. },
  343. [PM8607_IRQ_BAT] = {
  344. .reg = PM8607_INT_STATUS1,
  345. .mask_reg = PM8607_INT_MASK_1,
  346. .offs = 1 << 3,
  347. },
  348. [PM8607_IRQ_RTC] = {
  349. .reg = PM8607_INT_STATUS1,
  350. .mask_reg = PM8607_INT_MASK_1,
  351. .offs = 1 << 4,
  352. },
  353. [PM8607_IRQ_CC] = {
  354. .reg = PM8607_INT_STATUS1,
  355. .mask_reg = PM8607_INT_MASK_1,
  356. .offs = 1 << 5,
  357. },
  358. [PM8607_IRQ_VBAT] = {
  359. .reg = PM8607_INT_STATUS2,
  360. .mask_reg = PM8607_INT_MASK_2,
  361. .offs = 1 << 0,
  362. },
  363. [PM8607_IRQ_VCHG] = {
  364. .reg = PM8607_INT_STATUS2,
  365. .mask_reg = PM8607_INT_MASK_2,
  366. .offs = 1 << 1,
  367. },
  368. [PM8607_IRQ_VSYS] = {
  369. .reg = PM8607_INT_STATUS2,
  370. .mask_reg = PM8607_INT_MASK_2,
  371. .offs = 1 << 2,
  372. },
  373. [PM8607_IRQ_TINT] = {
  374. .reg = PM8607_INT_STATUS2,
  375. .mask_reg = PM8607_INT_MASK_2,
  376. .offs = 1 << 3,
  377. },
  378. [PM8607_IRQ_GPADC0] = {
  379. .reg = PM8607_INT_STATUS2,
  380. .mask_reg = PM8607_INT_MASK_2,
  381. .offs = 1 << 4,
  382. },
  383. [PM8607_IRQ_GPADC1] = {
  384. .reg = PM8607_INT_STATUS2,
  385. .mask_reg = PM8607_INT_MASK_2,
  386. .offs = 1 << 5,
  387. },
  388. [PM8607_IRQ_GPADC2] = {
  389. .reg = PM8607_INT_STATUS2,
  390. .mask_reg = PM8607_INT_MASK_2,
  391. .offs = 1 << 6,
  392. },
  393. [PM8607_IRQ_GPADC3] = {
  394. .reg = PM8607_INT_STATUS2,
  395. .mask_reg = PM8607_INT_MASK_2,
  396. .offs = 1 << 7,
  397. },
  398. [PM8607_IRQ_AUDIO_SHORT] = {
  399. .reg = PM8607_INT_STATUS3,
  400. .mask_reg = PM8607_INT_MASK_3,
  401. .offs = 1 << 0,
  402. },
  403. [PM8607_IRQ_PEN] = {
  404. .reg = PM8607_INT_STATUS3,
  405. .mask_reg = PM8607_INT_MASK_3,
  406. .offs = 1 << 1,
  407. },
  408. [PM8607_IRQ_HEADSET] = {
  409. .reg = PM8607_INT_STATUS3,
  410. .mask_reg = PM8607_INT_MASK_3,
  411. .offs = 1 << 2,
  412. },
  413. [PM8607_IRQ_HOOK] = {
  414. .reg = PM8607_INT_STATUS3,
  415. .mask_reg = PM8607_INT_MASK_3,
  416. .offs = 1 << 3,
  417. },
  418. [PM8607_IRQ_MICIN] = {
  419. .reg = PM8607_INT_STATUS3,
  420. .mask_reg = PM8607_INT_MASK_3,
  421. .offs = 1 << 4,
  422. },
  423. [PM8607_IRQ_CHG_FAIL] = {
  424. .reg = PM8607_INT_STATUS3,
  425. .mask_reg = PM8607_INT_MASK_3,
  426. .offs = 1 << 5,
  427. },
  428. [PM8607_IRQ_CHG_DONE] = {
  429. .reg = PM8607_INT_STATUS3,
  430. .mask_reg = PM8607_INT_MASK_3,
  431. .offs = 1 << 6,
  432. },
  433. [PM8607_IRQ_CHG_FAULT] = {
  434. .reg = PM8607_INT_STATUS3,
  435. .mask_reg = PM8607_INT_MASK_3,
  436. .offs = 1 << 7,
  437. },
  438. };
  439. static irqreturn_t pm860x_irq(int irq, void *data)
  440. {
  441. struct pm860x_chip *chip = data;
  442. struct pm860x_irq_data *irq_data;
  443. struct i2c_client *i2c;
  444. int read_reg = -1, value = 0;
  445. int i;
  446. i2c = (chip->id == CHIP_PM8607) ? chip->client : chip->companion;
  447. for (i = 0; i < ARRAY_SIZE(pm860x_irqs); i++) {
  448. irq_data = &pm860x_irqs[i];
  449. if (read_reg != irq_data->reg) {
  450. read_reg = irq_data->reg;
  451. value = pm860x_reg_read(i2c, irq_data->reg);
  452. }
  453. if (value & irq_data->enable)
  454. handle_nested_irq(chip->irq_base + i);
  455. }
  456. return IRQ_HANDLED;
  457. }
  458. static void pm860x_irq_lock(struct irq_data *data)
  459. {
  460. struct pm860x_chip *chip = irq_data_get_irq_chip_data(data);
  461. mutex_lock(&chip->irq_lock);
  462. }
  463. static void pm860x_irq_sync_unlock(struct irq_data *data)
  464. {
  465. struct pm860x_chip *chip = irq_data_get_irq_chip_data(data);
  466. struct pm860x_irq_data *irq_data;
  467. struct i2c_client *i2c;
  468. static unsigned char cached[3] = {0x0, 0x0, 0x0};
  469. unsigned char mask[3];
  470. int i;
  471. i2c = (chip->id == CHIP_PM8607) ? chip->client : chip->companion;
  472. /* Load cached value. In initial, all IRQs are masked */
  473. for (i = 0; i < 3; i++)
  474. mask[i] = cached[i];
  475. for (i = 0; i < ARRAY_SIZE(pm860x_irqs); i++) {
  476. irq_data = &pm860x_irqs[i];
  477. switch (irq_data->mask_reg) {
  478. case PM8607_INT_MASK_1:
  479. mask[0] &= ~irq_data->offs;
  480. mask[0] |= irq_data->enable;
  481. break;
  482. case PM8607_INT_MASK_2:
  483. mask[1] &= ~irq_data->offs;
  484. mask[1] |= irq_data->enable;
  485. break;
  486. case PM8607_INT_MASK_3:
  487. mask[2] &= ~irq_data->offs;
  488. mask[2] |= irq_data->enable;
  489. break;
  490. default:
  491. dev_err(chip->dev, "wrong IRQ\n");
  492. break;
  493. }
  494. }
  495. /* update mask into registers */
  496. for (i = 0; i < 3; i++) {
  497. if (mask[i] != cached[i]) {
  498. cached[i] = mask[i];
  499. pm860x_reg_write(i2c, PM8607_INT_MASK_1 + i, mask[i]);
  500. }
  501. }
  502. mutex_unlock(&chip->irq_lock);
  503. }
  504. static void pm860x_irq_enable(struct irq_data *data)
  505. {
  506. pm860x_irqs[data->hwirq].enable = pm860x_irqs[data->hwirq].offs;
  507. }
  508. static void pm860x_irq_disable(struct irq_data *data)
  509. {
  510. pm860x_irqs[data->hwirq].enable = 0;
  511. }
  512. static struct irq_chip pm860x_irq_chip = {
  513. .name = "88pm860x",
  514. .irq_bus_lock = pm860x_irq_lock,
  515. .irq_bus_sync_unlock = pm860x_irq_sync_unlock,
  516. .irq_enable = pm860x_irq_enable,
  517. .irq_disable = pm860x_irq_disable,
  518. };
  519. static int pm860x_irq_domain_map(struct irq_domain *d, unsigned int virq,
  520. irq_hw_number_t hw)
  521. {
  522. irq_set_chip_data(virq, d->host_data);
  523. irq_set_chip_and_handler(virq, &pm860x_irq_chip, handle_edge_irq);
  524. irq_set_nested_thread(virq, 1);
  525. irq_set_noprobe(virq);
  526. return 0;
  527. }
  528. static const struct irq_domain_ops pm860x_irq_domain_ops = {
  529. .map = pm860x_irq_domain_map,
  530. .xlate = irq_domain_xlate_onetwocell,
  531. };
  532. static int device_irq_init(struct pm860x_chip *chip,
  533. struct pm860x_platform_data *pdata)
  534. {
  535. struct i2c_client *i2c = (chip->id == CHIP_PM8607) ?
  536. chip->client : chip->companion;
  537. unsigned char status_buf[INT_STATUS_NUM];
  538. unsigned long flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT;
  539. int data, mask, ret = -EINVAL;
  540. int nr_irqs, irq_base = -1;
  541. struct device_node *node = i2c->dev.of_node;
  542. mask = PM8607_B0_MISC1_INV_INT | PM8607_B0_MISC1_INT_CLEAR
  543. | PM8607_B0_MISC1_INT_MASK;
  544. data = 0;
  545. chip->irq_mode = 0;
  546. if (pdata && pdata->irq_mode) {
  547. /*
  548. * irq_mode defines the way of clearing interrupt. If it's 1,
  549. * clear IRQ by write. Otherwise, clear it by read.
  550. * This control bit is valid from 88PM8607 B0 steping.
  551. */
  552. data |= PM8607_B0_MISC1_INT_CLEAR;
  553. chip->irq_mode = 1;
  554. }
  555. ret = pm860x_set_bits(i2c, PM8607_B0_MISC1, mask, data);
  556. if (ret < 0)
  557. goto out;
  558. /* mask all IRQs */
  559. memset(status_buf, 0, INT_STATUS_NUM);
  560. ret = pm860x_bulk_write(i2c, PM8607_INT_MASK_1,
  561. INT_STATUS_NUM, status_buf);
  562. if (ret < 0)
  563. goto out;
  564. if (chip->irq_mode) {
  565. /* clear interrupt status by write */
  566. memset(status_buf, 0xFF, INT_STATUS_NUM);
  567. ret = pm860x_bulk_write(i2c, PM8607_INT_STATUS1,
  568. INT_STATUS_NUM, status_buf);
  569. } else {
  570. /* clear interrupt status by read */
  571. ret = pm860x_bulk_read(i2c, PM8607_INT_STATUS1,
  572. INT_STATUS_NUM, status_buf);
  573. }
  574. if (ret < 0)
  575. goto out;
  576. mutex_init(&chip->irq_lock);
  577. if (pdata && pdata->irq_base)
  578. irq_base = pdata->irq_base;
  579. nr_irqs = ARRAY_SIZE(pm860x_irqs);
  580. chip->irq_base = irq_alloc_descs(irq_base, 0, nr_irqs, 0);
  581. if (chip->irq_base < 0) {
  582. dev_err(&i2c->dev, "Failed to allocate interrupts, ret:%d\n",
  583. chip->irq_base);
  584. ret = -EBUSY;
  585. goto out;
  586. }
  587. irq_domain_add_legacy(node, nr_irqs, chip->irq_base, 0,
  588. &pm860x_irq_domain_ops, chip);
  589. chip->core_irq = i2c->irq;
  590. if (!chip->core_irq)
  591. goto out;
  592. ret = request_threaded_irq(chip->core_irq, NULL, pm860x_irq,
  593. flags | IRQF_ONESHOT, "88pm860x", chip);
  594. if (ret) {
  595. dev_err(chip->dev, "Failed to request IRQ: %d\n", ret);
  596. chip->core_irq = 0;
  597. }
  598. return 0;
  599. out:
  600. chip->core_irq = 0;
  601. return ret;
  602. }
  603. static void device_irq_exit(struct pm860x_chip *chip)
  604. {
  605. if (chip->core_irq)
  606. free_irq(chip->core_irq, chip);
  607. }
  608. int pm8606_osc_enable(struct pm860x_chip *chip, unsigned short client)
  609. {
  610. int ret = -EIO;
  611. struct i2c_client *i2c = (chip->id == CHIP_PM8606) ?
  612. chip->client : chip->companion;
  613. dev_dbg(chip->dev, "%s(B): client=0x%x\n", __func__, client);
  614. dev_dbg(chip->dev, "%s(B): vote=0x%x status=%d\n",
  615. __func__, chip->osc_vote,
  616. chip->osc_status);
  617. mutex_lock(&chip->osc_lock);
  618. /* Update voting status */
  619. chip->osc_vote |= client;
  620. /* If reference group is off - turn on*/
  621. if (chip->osc_status != PM8606_REF_GP_OSC_ON) {
  622. chip->osc_status = PM8606_REF_GP_OSC_UNKNOWN;
  623. /* Enable Reference group Vsys */
  624. if (pm860x_set_bits(i2c, PM8606_VSYS,
  625. PM8606_VSYS_EN, PM8606_VSYS_EN))
  626. goto out;
  627. /*Enable Internal Oscillator */
  628. if (pm860x_set_bits(i2c, PM8606_MISC,
  629. PM8606_MISC_OSC_EN, PM8606_MISC_OSC_EN))
  630. goto out;
  631. /* Update status (only if writes succeed) */
  632. chip->osc_status = PM8606_REF_GP_OSC_ON;
  633. }
  634. mutex_unlock(&chip->osc_lock);
  635. dev_dbg(chip->dev, "%s(A): vote=0x%x status=%d ret=%d\n",
  636. __func__, chip->osc_vote,
  637. chip->osc_status, ret);
  638. return 0;
  639. out:
  640. mutex_unlock(&chip->osc_lock);
  641. return ret;
  642. }
  643. EXPORT_SYMBOL(pm8606_osc_enable);
  644. int pm8606_osc_disable(struct pm860x_chip *chip, unsigned short client)
  645. {
  646. int ret = -EIO;
  647. struct i2c_client *i2c = (chip->id == CHIP_PM8606) ?
  648. chip->client : chip->companion;
  649. dev_dbg(chip->dev, "%s(B): client=0x%x\n", __func__, client);
  650. dev_dbg(chip->dev, "%s(B): vote=0x%x status=%d\n",
  651. __func__, chip->osc_vote,
  652. chip->osc_status);
  653. mutex_lock(&chip->osc_lock);
  654. /* Update voting status */
  655. chip->osc_vote &= ~(client);
  656. /*
  657. * If reference group is off and this is the last client to release
  658. * - turn off
  659. */
  660. if ((chip->osc_status != PM8606_REF_GP_OSC_OFF) &&
  661. (chip->osc_vote == REF_GP_NO_CLIENTS)) {
  662. chip->osc_status = PM8606_REF_GP_OSC_UNKNOWN;
  663. /* Disable Reference group Vsys */
  664. if (pm860x_set_bits(i2c, PM8606_VSYS, PM8606_VSYS_EN, 0))
  665. goto out;
  666. /* Disable Internal Oscillator */
  667. if (pm860x_set_bits(i2c, PM8606_MISC, PM8606_MISC_OSC_EN, 0))
  668. goto out;
  669. chip->osc_status = PM8606_REF_GP_OSC_OFF;
  670. }
  671. mutex_unlock(&chip->osc_lock);
  672. dev_dbg(chip->dev, "%s(A): vote=0x%x status=%d ret=%d\n",
  673. __func__, chip->osc_vote,
  674. chip->osc_status, ret);
  675. return 0;
  676. out:
  677. mutex_unlock(&chip->osc_lock);
  678. return ret;
  679. }
  680. EXPORT_SYMBOL(pm8606_osc_disable);
  681. static void device_osc_init(struct i2c_client *i2c)
  682. {
  683. struct pm860x_chip *chip = i2c_get_clientdata(i2c);
  684. mutex_init(&chip->osc_lock);
  685. /* init portofino reference group voting and status */
  686. /* Disable Reference group Vsys */
  687. pm860x_set_bits(i2c, PM8606_VSYS, PM8606_VSYS_EN, 0);
  688. /* Disable Internal Oscillator */
  689. pm860x_set_bits(i2c, PM8606_MISC, PM8606_MISC_OSC_EN, 0);
  690. chip->osc_vote = REF_GP_NO_CLIENTS;
  691. chip->osc_status = PM8606_REF_GP_OSC_OFF;
  692. }
  693. static void device_bk_init(struct pm860x_chip *chip,
  694. struct pm860x_platform_data *pdata)
  695. {
  696. int ret, i;
  697. if (pdata && pdata->backlight) {
  698. if (pdata->num_backlights > ARRAY_SIZE(bk_devs))
  699. pdata->num_backlights = ARRAY_SIZE(bk_devs);
  700. for (i = 0; i < pdata->num_backlights; i++) {
  701. bk_devs[i].platform_data = &pdata->backlight[i];
  702. bk_devs[i].pdata_size =
  703. sizeof(struct pm860x_backlight_pdata);
  704. }
  705. }
  706. ret = mfd_add_devices(chip->dev, 0, bk_devs,
  707. ARRAY_SIZE(bk_devs), NULL, 0, NULL);
  708. if (ret < 0)
  709. dev_err(chip->dev, "Failed to add backlight subdev\n");
  710. }
  711. static void device_led_init(struct pm860x_chip *chip,
  712. struct pm860x_platform_data *pdata)
  713. {
  714. int ret, i;
  715. if (pdata && pdata->led) {
  716. if (pdata->num_leds > ARRAY_SIZE(led_devs))
  717. pdata->num_leds = ARRAY_SIZE(led_devs);
  718. for (i = 0; i < pdata->num_leds; i++) {
  719. led_devs[i].platform_data = &pdata->led[i];
  720. led_devs[i].pdata_size =
  721. sizeof(struct pm860x_led_pdata);
  722. }
  723. }
  724. ret = mfd_add_devices(chip->dev, 0, led_devs,
  725. ARRAY_SIZE(led_devs), NULL, 0, NULL);
  726. if (ret < 0) {
  727. dev_err(chip->dev, "Failed to add led subdev\n");
  728. return;
  729. }
  730. }
  731. static void device_regulator_init(struct pm860x_chip *chip,
  732. struct pm860x_platform_data *pdata)
  733. {
  734. int ret;
  735. if (pdata == NULL)
  736. return;
  737. if (pdata->buck1) {
  738. reg_devs[0].platform_data = pdata->buck1;
  739. reg_devs[0].pdata_size = sizeof(struct regulator_init_data);
  740. }
  741. if (pdata->buck2) {
  742. reg_devs[1].platform_data = pdata->buck2;
  743. reg_devs[1].pdata_size = sizeof(struct regulator_init_data);
  744. }
  745. if (pdata->buck3) {
  746. reg_devs[2].platform_data = pdata->buck3;
  747. reg_devs[2].pdata_size = sizeof(struct regulator_init_data);
  748. }
  749. if (pdata->ldo1) {
  750. reg_devs[3].platform_data = pdata->ldo1;
  751. reg_devs[3].pdata_size = sizeof(struct regulator_init_data);
  752. }
  753. if (pdata->ldo2) {
  754. reg_devs[4].platform_data = pdata->ldo2;
  755. reg_devs[4].pdata_size = sizeof(struct regulator_init_data);
  756. }
  757. if (pdata->ldo3) {
  758. reg_devs[5].platform_data = pdata->ldo3;
  759. reg_devs[5].pdata_size = sizeof(struct regulator_init_data);
  760. }
  761. if (pdata->ldo4) {
  762. reg_devs[6].platform_data = pdata->ldo4;
  763. reg_devs[6].pdata_size = sizeof(struct regulator_init_data);
  764. }
  765. if (pdata->ldo5) {
  766. reg_devs[7].platform_data = pdata->ldo5;
  767. reg_devs[7].pdata_size = sizeof(struct regulator_init_data);
  768. }
  769. if (pdata->ldo6) {
  770. reg_devs[8].platform_data = pdata->ldo6;
  771. reg_devs[8].pdata_size = sizeof(struct regulator_init_data);
  772. }
  773. if (pdata->ldo7) {
  774. reg_devs[9].platform_data = pdata->ldo7;
  775. reg_devs[9].pdata_size = sizeof(struct regulator_init_data);
  776. }
  777. if (pdata->ldo8) {
  778. reg_devs[10].platform_data = pdata->ldo8;
  779. reg_devs[10].pdata_size = sizeof(struct regulator_init_data);
  780. }
  781. if (pdata->ldo9) {
  782. reg_devs[11].platform_data = pdata->ldo9;
  783. reg_devs[11].pdata_size = sizeof(struct regulator_init_data);
  784. }
  785. if (pdata->ldo10) {
  786. reg_devs[12].platform_data = pdata->ldo10;
  787. reg_devs[12].pdata_size = sizeof(struct regulator_init_data);
  788. }
  789. if (pdata->ldo12) {
  790. reg_devs[13].platform_data = pdata->ldo12;
  791. reg_devs[13].pdata_size = sizeof(struct regulator_init_data);
  792. }
  793. if (pdata->ldo_vibrator) {
  794. reg_devs[14].platform_data = pdata->ldo_vibrator;
  795. reg_devs[14].pdata_size = sizeof(struct regulator_init_data);
  796. }
  797. if (pdata->ldo14) {
  798. reg_devs[15].platform_data = pdata->ldo14;
  799. reg_devs[15].pdata_size = sizeof(struct regulator_init_data);
  800. }
  801. ret = mfd_add_devices(chip->dev, 0, reg_devs,
  802. ARRAY_SIZE(reg_devs), NULL, 0, NULL);
  803. if (ret < 0) {
  804. dev_err(chip->dev, "Failed to add regulator subdev\n");
  805. return;
  806. }
  807. }
  808. static void device_rtc_init(struct pm860x_chip *chip,
  809. struct pm860x_platform_data *pdata)
  810. {
  811. int ret;
  812. if (!pdata)
  813. return;
  814. rtc_devs[0].platform_data = pdata->rtc;
  815. rtc_devs[0].pdata_size = sizeof(struct pm860x_rtc_pdata);
  816. rtc_devs[0].num_resources = ARRAY_SIZE(rtc_resources);
  817. rtc_devs[0].resources = &rtc_resources[0];
  818. ret = mfd_add_devices(chip->dev, 0, &rtc_devs[0],
  819. ARRAY_SIZE(rtc_devs), &rtc_resources[0],
  820. chip->irq_base, NULL);
  821. if (ret < 0)
  822. dev_err(chip->dev, "Failed to add rtc subdev\n");
  823. }
  824. static void device_touch_init(struct pm860x_chip *chip,
  825. struct pm860x_platform_data *pdata)
  826. {
  827. int ret;
  828. if (pdata == NULL)
  829. return;
  830. touch_devs[0].platform_data = pdata->touch;
  831. touch_devs[0].pdata_size = sizeof(struct pm860x_touch_pdata);
  832. touch_devs[0].num_resources = ARRAY_SIZE(touch_resources);
  833. touch_devs[0].resources = &touch_resources[0];
  834. ret = mfd_add_devices(chip->dev, 0, &touch_devs[0],
  835. ARRAY_SIZE(touch_devs), &touch_resources[0],
  836. chip->irq_base, NULL);
  837. if (ret < 0)
  838. dev_err(chip->dev, "Failed to add touch subdev\n");
  839. }
  840. static void device_power_init(struct pm860x_chip *chip,
  841. struct pm860x_platform_data *pdata)
  842. {
  843. int ret;
  844. if (pdata == NULL)
  845. return;
  846. power_devs[0].platform_data = pdata->power;
  847. power_devs[0].pdata_size = sizeof(struct pm860x_power_pdata);
  848. power_devs[0].num_resources = ARRAY_SIZE(battery_resources);
  849. power_devs[0].resources = &battery_resources[0],
  850. ret = mfd_add_devices(chip->dev, 0, &power_devs[0], 1,
  851. &battery_resources[0], chip->irq_base, NULL);
  852. if (ret < 0)
  853. dev_err(chip->dev, "Failed to add battery subdev\n");
  854. power_devs[1].platform_data = pdata->power;
  855. power_devs[1].pdata_size = sizeof(struct pm860x_power_pdata);
  856. power_devs[1].num_resources = ARRAY_SIZE(charger_resources);
  857. power_devs[1].resources = &charger_resources[0],
  858. ret = mfd_add_devices(chip->dev, 0, &power_devs[1], 1,
  859. &charger_resources[0], chip->irq_base, NULL);
  860. if (ret < 0)
  861. dev_err(chip->dev, "Failed to add charger subdev\n");
  862. power_devs[2].platform_data = &preg_init_data;
  863. power_devs[2].pdata_size = sizeof(struct regulator_init_data);
  864. ret = mfd_add_devices(chip->dev, 0, &power_devs[2], 1,
  865. NULL, chip->irq_base, NULL);
  866. if (ret < 0)
  867. dev_err(chip->dev, "Failed to add preg subdev\n");
  868. if (pdata->chg_desc) {
  869. pdata->chg_desc->charger_regulators =
  870. &chg_desc_regulator_data[0];
  871. pdata->chg_desc->num_charger_regulators =
  872. ARRAY_SIZE(chg_desc_regulator_data),
  873. power_devs[3].platform_data = pdata->chg_desc;
  874. power_devs[3].pdata_size = sizeof(*pdata->chg_desc);
  875. ret = mfd_add_devices(chip->dev, 0, &power_devs[3], 1,
  876. NULL, chip->irq_base, NULL);
  877. if (ret < 0)
  878. dev_err(chip->dev, "Failed to add chg-manager subdev\n");
  879. }
  880. }
  881. static void device_onkey_init(struct pm860x_chip *chip,
  882. struct pm860x_platform_data *pdata)
  883. {
  884. int ret;
  885. onkey_devs[0].num_resources = ARRAY_SIZE(onkey_resources);
  886. onkey_devs[0].resources = &onkey_resources[0],
  887. ret = mfd_add_devices(chip->dev, 0, &onkey_devs[0],
  888. ARRAY_SIZE(onkey_devs), &onkey_resources[0],
  889. chip->irq_base, NULL);
  890. if (ret < 0)
  891. dev_err(chip->dev, "Failed to add onkey subdev\n");
  892. }
  893. static void device_codec_init(struct pm860x_chip *chip,
  894. struct pm860x_platform_data *pdata)
  895. {
  896. int ret;
  897. codec_devs[0].num_resources = ARRAY_SIZE(codec_resources);
  898. codec_devs[0].resources = &codec_resources[0],
  899. ret = mfd_add_devices(chip->dev, 0, &codec_devs[0],
  900. ARRAY_SIZE(codec_devs), &codec_resources[0], 0,
  901. NULL);
  902. if (ret < 0)
  903. dev_err(chip->dev, "Failed to add codec subdev\n");
  904. }
  905. static void device_8607_init(struct pm860x_chip *chip,
  906. struct i2c_client *i2c,
  907. struct pm860x_platform_data *pdata)
  908. {
  909. int data, ret;
  910. ret = pm860x_reg_read(i2c, PM8607_CHIP_ID);
  911. if (ret < 0) {
  912. dev_err(chip->dev, "Failed to read CHIP ID: %d\n", ret);
  913. goto out;
  914. }
  915. switch (ret & PM8607_VERSION_MASK) {
  916. case 0x40:
  917. case 0x50:
  918. dev_info(chip->dev, "Marvell 88PM8607 (ID: %02x) detected\n",
  919. ret);
  920. break;
  921. default:
  922. dev_err(chip->dev,
  923. "Failed to detect Marvell 88PM8607. Chip ID: %02x\n",
  924. ret);
  925. goto out;
  926. }
  927. ret = pm860x_reg_read(i2c, PM8607_BUCK3);
  928. if (ret < 0) {
  929. dev_err(chip->dev, "Failed to read BUCK3 register: %d\n", ret);
  930. goto out;
  931. }
  932. if (ret & PM8607_BUCK3_DOUBLE)
  933. chip->buck3_double = 1;
  934. ret = pm860x_reg_read(i2c, PM8607_B0_MISC1);
  935. if (ret < 0) {
  936. dev_err(chip->dev, "Failed to read MISC1 register: %d\n", ret);
  937. goto out;
  938. }
  939. if (pdata && (pdata->i2c_port == PI2C_PORT))
  940. data = PM8607_B0_MISC1_PI2C;
  941. else
  942. data = 0;
  943. ret = pm860x_set_bits(i2c, PM8607_B0_MISC1, PM8607_B0_MISC1_PI2C, data);
  944. if (ret < 0) {
  945. dev_err(chip->dev, "Failed to access MISC1:%d\n", ret);
  946. goto out;
  947. }
  948. ret = device_irq_init(chip, pdata);
  949. if (ret < 0)
  950. goto out;
  951. device_regulator_init(chip, pdata);
  952. device_rtc_init(chip, pdata);
  953. device_onkey_init(chip, pdata);
  954. device_touch_init(chip, pdata);
  955. device_power_init(chip, pdata);
  956. device_codec_init(chip, pdata);
  957. out:
  958. return;
  959. }
  960. static void device_8606_init(struct pm860x_chip *chip,
  961. struct i2c_client *i2c,
  962. struct pm860x_platform_data *pdata)
  963. {
  964. device_osc_init(i2c);
  965. device_bk_init(chip, pdata);
  966. device_led_init(chip, pdata);
  967. }
  968. static int pm860x_device_init(struct pm860x_chip *chip,
  969. struct pm860x_platform_data *pdata)
  970. {
  971. chip->core_irq = 0;
  972. switch (chip->id) {
  973. case CHIP_PM8606:
  974. device_8606_init(chip, chip->client, pdata);
  975. break;
  976. case CHIP_PM8607:
  977. device_8607_init(chip, chip->client, pdata);
  978. break;
  979. }
  980. if (chip->companion) {
  981. switch (chip->id) {
  982. case CHIP_PM8607:
  983. device_8606_init(chip, chip->companion, pdata);
  984. break;
  985. case CHIP_PM8606:
  986. device_8607_init(chip, chip->companion, pdata);
  987. break;
  988. }
  989. }
  990. return 0;
  991. }
  992. static void pm860x_device_exit(struct pm860x_chip *chip)
  993. {
  994. device_irq_exit(chip);
  995. mfd_remove_devices(chip->dev);
  996. }
  997. static int verify_addr(struct i2c_client *i2c)
  998. {
  999. unsigned short addr_8607[] = {0x30, 0x34};
  1000. unsigned short addr_8606[] = {0x10, 0x11};
  1001. int size, i;
  1002. if (i2c == NULL)
  1003. return 0;
  1004. size = ARRAY_SIZE(addr_8606);
  1005. for (i = 0; i < size; i++) {
  1006. if (i2c->addr == *(addr_8606 + i))
  1007. return CHIP_PM8606;
  1008. }
  1009. size = ARRAY_SIZE(addr_8607);
  1010. for (i = 0; i < size; i++) {
  1011. if (i2c->addr == *(addr_8607 + i))
  1012. return CHIP_PM8607;
  1013. }
  1014. return 0;
  1015. }
  1016. static const struct regmap_config pm860x_regmap_config = {
  1017. .reg_bits = 8,
  1018. .val_bits = 8,
  1019. };
  1020. static int pm860x_dt_init(struct device_node *np,
  1021. struct device *dev,
  1022. struct pm860x_platform_data *pdata)
  1023. {
  1024. int ret;
  1025. if (of_get_property(np, "marvell,88pm860x-irq-read-clr", NULL))
  1026. pdata->irq_mode = 1;
  1027. ret = of_property_read_u32(np, "marvell,88pm860x-slave-addr",
  1028. &pdata->companion_addr);
  1029. if (ret) {
  1030. dev_err(dev,
  1031. "Not found \"marvell,88pm860x-slave-addr\" property\n");
  1032. pdata->companion_addr = 0;
  1033. }
  1034. return 0;
  1035. }
  1036. static int pm860x_probe(struct i2c_client *client,
  1037. const struct i2c_device_id *id)
  1038. {
  1039. struct pm860x_platform_data *pdata = dev_get_platdata(&client->dev);
  1040. struct device_node *node = client->dev.of_node;
  1041. struct pm860x_chip *chip;
  1042. int ret;
  1043. if (node && !pdata) {
  1044. /* parse DT to get platform data */
  1045. pdata = devm_kzalloc(&client->dev,
  1046. sizeof(struct pm860x_platform_data),
  1047. GFP_KERNEL);
  1048. if (!pdata)
  1049. return -ENOMEM;
  1050. ret = pm860x_dt_init(node, &client->dev, pdata);
  1051. if (ret)
  1052. return ret;
  1053. } else if (!pdata) {
  1054. pr_info("No platform data in %s!\n", __func__);
  1055. return -EINVAL;
  1056. }
  1057. chip = devm_kzalloc(&client->dev,
  1058. sizeof(struct pm860x_chip), GFP_KERNEL);
  1059. if (chip == NULL)
  1060. return -ENOMEM;
  1061. chip->id = verify_addr(client);
  1062. chip->regmap = devm_regmap_init_i2c(client, &pm860x_regmap_config);
  1063. if (IS_ERR(chip->regmap)) {
  1064. ret = PTR_ERR(chip->regmap);
  1065. dev_err(&client->dev, "Failed to allocate register map: %d\n",
  1066. ret);
  1067. return ret;
  1068. }
  1069. chip->client = client;
  1070. i2c_set_clientdata(client, chip);
  1071. chip->dev = &client->dev;
  1072. dev_set_drvdata(chip->dev, chip);
  1073. /*
  1074. * Both client and companion client shares same platform driver.
  1075. * Driver distinguishes them by pdata->companion_addr.
  1076. * pdata->companion_addr is only assigned if companion chip exists.
  1077. * At the same time, the companion_addr shouldn't equal to client
  1078. * address.
  1079. */
  1080. if (pdata->companion_addr && (pdata->companion_addr != client->addr)) {
  1081. chip->companion_addr = pdata->companion_addr;
  1082. chip->companion = i2c_new_dummy(chip->client->adapter,
  1083. chip->companion_addr);
  1084. if (!chip->companion) {
  1085. dev_err(&client->dev,
  1086. "Failed to allocate I2C companion device\n");
  1087. return -ENODEV;
  1088. }
  1089. chip->regmap_companion = regmap_init_i2c(chip->companion,
  1090. &pm860x_regmap_config);
  1091. if (IS_ERR(chip->regmap_companion)) {
  1092. ret = PTR_ERR(chip->regmap_companion);
  1093. dev_err(&chip->companion->dev,
  1094. "Failed to allocate register map: %d\n", ret);
  1095. i2c_unregister_device(chip->companion);
  1096. return ret;
  1097. }
  1098. i2c_set_clientdata(chip->companion, chip);
  1099. }
  1100. pm860x_device_init(chip, pdata);
  1101. return 0;
  1102. }
  1103. static int pm860x_remove(struct i2c_client *client)
  1104. {
  1105. struct pm860x_chip *chip = i2c_get_clientdata(client);
  1106. pm860x_device_exit(chip);
  1107. if (chip->companion) {
  1108. regmap_exit(chip->regmap_companion);
  1109. i2c_unregister_device(chip->companion);
  1110. }
  1111. return 0;
  1112. }
  1113. #ifdef CONFIG_PM_SLEEP
  1114. static int pm860x_suspend(struct device *dev)
  1115. {
  1116. struct i2c_client *client = to_i2c_client(dev);
  1117. struct pm860x_chip *chip = i2c_get_clientdata(client);
  1118. if (device_may_wakeup(dev) && chip->wakeup_flag)
  1119. enable_irq_wake(chip->core_irq);
  1120. return 0;
  1121. }
  1122. static int pm860x_resume(struct device *dev)
  1123. {
  1124. struct i2c_client *client = to_i2c_client(dev);
  1125. struct pm860x_chip *chip = i2c_get_clientdata(client);
  1126. if (device_may_wakeup(dev) && chip->wakeup_flag)
  1127. disable_irq_wake(chip->core_irq);
  1128. return 0;
  1129. }
  1130. #endif
  1131. static SIMPLE_DEV_PM_OPS(pm860x_pm_ops, pm860x_suspend, pm860x_resume);
  1132. static const struct i2c_device_id pm860x_id_table[] = {
  1133. { "88PM860x", 0 },
  1134. {}
  1135. };
  1136. MODULE_DEVICE_TABLE(i2c, pm860x_id_table);
  1137. static const struct of_device_id pm860x_dt_ids[] = {
  1138. { .compatible = "marvell,88pm860x", },
  1139. {},
  1140. };
  1141. MODULE_DEVICE_TABLE(of, pm860x_dt_ids);
  1142. static struct i2c_driver pm860x_driver = {
  1143. .driver = {
  1144. .name = "88PM860x",
  1145. .pm = &pm860x_pm_ops,
  1146. .of_match_table = pm860x_dt_ids,
  1147. },
  1148. .probe = pm860x_probe,
  1149. .remove = pm860x_remove,
  1150. .id_table = pm860x_id_table,
  1151. };
  1152. static int __init pm860x_i2c_init(void)
  1153. {
  1154. int ret;
  1155. ret = i2c_add_driver(&pm860x_driver);
  1156. if (ret != 0)
  1157. pr_err("Failed to register 88PM860x I2C driver: %d\n", ret);
  1158. return ret;
  1159. }
  1160. subsys_initcall(pm860x_i2c_init);
  1161. static void __exit pm860x_i2c_exit(void)
  1162. {
  1163. i2c_del_driver(&pm860x_driver);
  1164. }
  1165. module_exit(pm860x_i2c_exit);
  1166. MODULE_DESCRIPTION("PMIC Driver for Marvell 88PM860x");
  1167. MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>");
  1168. MODULE_LICENSE("GPL");