88pm860x.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. /*
  2. * Marvell 88PM860x Interface
  3. *
  4. * Copyright (C) 2009 Marvell International Ltd.
  5. * Haojian Zhuang <haojian.zhuang@marvell.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __LINUX_MFD_88PM860X_H
  12. #define __LINUX_MFD_88PM860X_H
  13. #include <linux/interrupt.h>
  14. #define MFD_NAME_SIZE (40)
  15. enum {
  16. CHIP_INVALID = 0,
  17. CHIP_PM8606,
  18. CHIP_PM8607,
  19. CHIP_MAX,
  20. };
  21. enum {
  22. PM8606_ID_INVALID,
  23. PM8606_ID_BACKLIGHT,
  24. PM8606_ID_LED,
  25. PM8606_ID_VIBRATOR,
  26. PM8606_ID_TOUCH,
  27. PM8606_ID_SOUND,
  28. PM8606_ID_CHARGER,
  29. PM8606_ID_MAX,
  30. };
  31. enum {
  32. PM8606_BACKLIGHT1 = 0,
  33. PM8606_BACKLIGHT2,
  34. PM8606_BACKLIGHT3,
  35. };
  36. enum {
  37. PM8606_LED1_RED = 0,
  38. PM8606_LED1_GREEN,
  39. PM8606_LED1_BLUE,
  40. PM8606_LED2_RED,
  41. PM8606_LED2_GREEN,
  42. PM8606_LED2_BLUE,
  43. PM8607_LED_VIBRATOR,
  44. };
  45. /* 8606 Registers */
  46. #define PM8606_DCM_BOOST (0x00)
  47. #define PM8606_PWM (0x01)
  48. #define PM8607_MISC2 (0x42)
  49. /* Power Up Log Register */
  50. #define PM8607_POWER_UP_LOG (0x3F)
  51. /* Charger Control Registers */
  52. #define PM8607_CCNT (0x47)
  53. #define PM8607_CHG_CTRL1 (0x48)
  54. #define PM8607_CHG_CTRL2 (0x49)
  55. #define PM8607_CHG_CTRL3 (0x4A)
  56. #define PM8607_CHG_CTRL4 (0x4B)
  57. #define PM8607_CHG_CTRL5 (0x4C)
  58. #define PM8607_CHG_CTRL6 (0x4D)
  59. #define PM8607_CHG_CTRL7 (0x4E)
  60. /* Backlight Registers */
  61. #define PM8606_WLED1A (0x02)
  62. #define PM8606_WLED1B (0x03)
  63. #define PM8606_WLED2A (0x04)
  64. #define PM8606_WLED2B (0x05)
  65. #define PM8606_WLED3A (0x06)
  66. #define PM8606_WLED3B (0x07)
  67. /* LED Registers */
  68. #define PM8606_RGB2A (0x08)
  69. #define PM8606_RGB2B (0x09)
  70. #define PM8606_RGB2C (0x0A)
  71. #define PM8606_RGB2D (0x0B)
  72. #define PM8606_RGB1A (0x0C)
  73. #define PM8606_RGB1B (0x0D)
  74. #define PM8606_RGB1C (0x0E)
  75. #define PM8606_RGB1D (0x0F)
  76. #define PM8606_PREREGULATORA (0x10)
  77. #define PM8606_PREREGULATORB (0x11)
  78. #define PM8606_VIBRATORA (0x12)
  79. #define PM8606_VIBRATORB (0x13)
  80. #define PM8606_VCHG (0x14)
  81. #define PM8606_VSYS (0x15)
  82. #define PM8606_MISC (0x16)
  83. #define PM8606_CHIP_ID (0x17)
  84. #define PM8606_STATUS (0x18)
  85. #define PM8606_FLAGS (0x19)
  86. #define PM8606_PROTECTA (0x1A)
  87. #define PM8606_PROTECTB (0x1B)
  88. #define PM8606_PROTECTC (0x1C)
  89. /* Bit definitions of PM8606 registers */
  90. #define PM8606_DCM_500MA (0x0) /* current limit */
  91. #define PM8606_DCM_750MA (0x1)
  92. #define PM8606_DCM_1000MA (0x2)
  93. #define PM8606_DCM_1250MA (0x3)
  94. #define PM8606_DCM_250MV (0x0 << 2)
  95. #define PM8606_DCM_300MV (0x1 << 2)
  96. #define PM8606_DCM_350MV (0x2 << 2)
  97. #define PM8606_DCM_400MV (0x3 << 2)
  98. #define PM8606_PWM_31200HZ (0x0)
  99. #define PM8606_PWM_15600HZ (0x1)
  100. #define PM8606_PWM_7800HZ (0x2)
  101. #define PM8606_PWM_3900HZ (0x3)
  102. #define PM8606_PWM_1950HZ (0x4)
  103. #define PM8606_PWM_976HZ (0x5)
  104. #define PM8606_PWM_488HZ (0x6)
  105. #define PM8606_PWM_244HZ (0x7)
  106. #define PM8606_PWM_FREQ_MASK (0x7)
  107. #define PM8606_WLED_ON (1 << 0)
  108. #define PM8606_WLED_CURRENT(x) ((x & 0x1F) << 1)
  109. #define PM8606_LED_CURRENT(x) (((x >> 2) & 0x07) << 5)
  110. #define PM8606_VSYS_EN (1 << 1)
  111. #define PM8606_MISC_OSC_EN (1 << 4)
  112. enum {
  113. PM8607_ID_BUCK1 = 0,
  114. PM8607_ID_BUCK2,
  115. PM8607_ID_BUCK3,
  116. PM8607_ID_LDO1,
  117. PM8607_ID_LDO2,
  118. PM8607_ID_LDO3,
  119. PM8607_ID_LDO4,
  120. PM8607_ID_LDO5,
  121. PM8607_ID_LDO6,
  122. PM8607_ID_LDO7,
  123. PM8607_ID_LDO8,
  124. PM8607_ID_LDO9,
  125. PM8607_ID_LDO10,
  126. PM8607_ID_LDO11,
  127. PM8607_ID_LDO12,
  128. PM8607_ID_LDO13,
  129. PM8607_ID_LDO14,
  130. PM8607_ID_LDO15,
  131. PM8606_ID_PREG,
  132. PM8607_ID_RG_MAX,
  133. };
  134. /* 8607 chip ID is 0x40 or 0x50 */
  135. #define PM8607_VERSION_MASK (0xF0) /* 8607 chip ID mask */
  136. /* Interrupt Registers */
  137. #define PM8607_STATUS_1 (0x01)
  138. #define PM8607_STATUS_2 (0x02)
  139. #define PM8607_INT_STATUS1 (0x03)
  140. #define PM8607_INT_STATUS2 (0x04)
  141. #define PM8607_INT_STATUS3 (0x05)
  142. #define PM8607_INT_MASK_1 (0x06)
  143. #define PM8607_INT_MASK_2 (0x07)
  144. #define PM8607_INT_MASK_3 (0x08)
  145. /* Regulator Control Registers */
  146. #define PM8607_LDO1 (0x10)
  147. #define PM8607_LDO2 (0x11)
  148. #define PM8607_LDO3 (0x12)
  149. #define PM8607_LDO4 (0x13)
  150. #define PM8607_LDO5 (0x14)
  151. #define PM8607_LDO6 (0x15)
  152. #define PM8607_LDO7 (0x16)
  153. #define PM8607_LDO8 (0x17)
  154. #define PM8607_LDO9 (0x18)
  155. #define PM8607_LDO10 (0x19)
  156. #define PM8607_LDO12 (0x1A)
  157. #define PM8607_LDO14 (0x1B)
  158. #define PM8607_SLEEP_MODE1 (0x1C)
  159. #define PM8607_SLEEP_MODE2 (0x1D)
  160. #define PM8607_SLEEP_MODE3 (0x1E)
  161. #define PM8607_SLEEP_MODE4 (0x1F)
  162. #define PM8607_GO (0x20)
  163. #define PM8607_SLEEP_BUCK1 (0x21)
  164. #define PM8607_SLEEP_BUCK2 (0x22)
  165. #define PM8607_SLEEP_BUCK3 (0x23)
  166. #define PM8607_BUCK1 (0x24)
  167. #define PM8607_BUCK2 (0x25)
  168. #define PM8607_BUCK3 (0x26)
  169. #define PM8607_BUCK_CONTROLS (0x27)
  170. #define PM8607_SUPPLIES_EN11 (0x2B)
  171. #define PM8607_SUPPLIES_EN12 (0x2C)
  172. #define PM8607_GROUP1 (0x2D)
  173. #define PM8607_GROUP2 (0x2E)
  174. #define PM8607_GROUP3 (0x2F)
  175. #define PM8607_GROUP4 (0x30)
  176. #define PM8607_GROUP5 (0x31)
  177. #define PM8607_GROUP6 (0x32)
  178. #define PM8607_SUPPLIES_EN21 (0x33)
  179. #define PM8607_SUPPLIES_EN22 (0x34)
  180. /* Vibrator Control Registers */
  181. #define PM8607_VIBRATOR_SET (0x28)
  182. #define PM8607_VIBRATOR_PWM (0x29)
  183. /* GPADC Registers */
  184. #define PM8607_GP_BIAS1 (0x4F)
  185. #define PM8607_MEAS_EN1 (0x50)
  186. #define PM8607_MEAS_EN2 (0x51)
  187. #define PM8607_MEAS_EN3 (0x52)
  188. #define PM8607_MEAS_OFF_TIME1 (0x53)
  189. #define PM8607_MEAS_OFF_TIME2 (0x54)
  190. #define PM8607_TSI_PREBIAS (0x55) /* prebias time */
  191. #define PM8607_PD_PREBIAS (0x56) /* prebias time */
  192. #define PM8607_GPADC_MISC1 (0x57)
  193. /* bit definitions of MEAS_EN1*/
  194. #define PM8607_MEAS_EN1_VBAT (1 << 0)
  195. #define PM8607_MEAS_EN1_VCHG (1 << 1)
  196. #define PM8607_MEAS_EN1_VSYS (1 << 2)
  197. #define PM8607_MEAS_EN1_TINT (1 << 3)
  198. #define PM8607_MEAS_EN1_RFTMP (1 << 4)
  199. #define PM8607_MEAS_EN1_TBAT (1 << 5)
  200. #define PM8607_MEAS_EN1_GPADC2 (1 << 6)
  201. #define PM8607_MEAS_EN1_GPADC3 (1 << 7)
  202. /* Battery Monitor Registers */
  203. #define PM8607_GP_BIAS2 (0x5A)
  204. #define PM8607_VBAT_LOWTH (0x5B)
  205. #define PM8607_VCHG_LOWTH (0x5C)
  206. #define PM8607_VSYS_LOWTH (0x5D)
  207. #define PM8607_TINT_LOWTH (0x5E)
  208. #define PM8607_GPADC0_LOWTH (0x5F)
  209. #define PM8607_GPADC1_LOWTH (0x60)
  210. #define PM8607_GPADC2_LOWTH (0x61)
  211. #define PM8607_GPADC3_LOWTH (0x62)
  212. #define PM8607_VBAT_HIGHTH (0x63)
  213. #define PM8607_VCHG_HIGHTH (0x64)
  214. #define PM8607_VSYS_HIGHTH (0x65)
  215. #define PM8607_TINT_HIGHTH (0x66)
  216. #define PM8607_GPADC0_HIGHTH (0x67)
  217. #define PM8607_GPADC1_HIGHTH (0x68)
  218. #define PM8607_GPADC2_HIGHTH (0x69)
  219. #define PM8607_GPADC3_HIGHTH (0x6A)
  220. #define PM8607_IBAT_MEAS1 (0x6B)
  221. #define PM8607_IBAT_MEAS2 (0x6C)
  222. #define PM8607_VBAT_MEAS1 (0x6D)
  223. #define PM8607_VBAT_MEAS2 (0x6E)
  224. #define PM8607_VCHG_MEAS1 (0x6F)
  225. #define PM8607_VCHG_MEAS2 (0x70)
  226. #define PM8607_VSYS_MEAS1 (0x71)
  227. #define PM8607_VSYS_MEAS2 (0x72)
  228. #define PM8607_TINT_MEAS1 (0x73)
  229. #define PM8607_TINT_MEAS2 (0x74)
  230. #define PM8607_GPADC0_MEAS1 (0x75)
  231. #define PM8607_GPADC0_MEAS2 (0x76)
  232. #define PM8607_GPADC1_MEAS1 (0x77)
  233. #define PM8607_GPADC1_MEAS2 (0x78)
  234. #define PM8607_GPADC2_MEAS1 (0x79)
  235. #define PM8607_GPADC2_MEAS2 (0x7A)
  236. #define PM8607_GPADC3_MEAS1 (0x7B)
  237. #define PM8607_GPADC3_MEAS2 (0x7C)
  238. #define PM8607_CCNT_MEAS1 (0x95)
  239. #define PM8607_CCNT_MEAS2 (0x96)
  240. #define PM8607_VBAT_AVG (0x97)
  241. #define PM8607_VCHG_AVG (0x98)
  242. #define PM8607_VSYS_AVG (0x99)
  243. #define PM8607_VBAT_MIN (0x9A)
  244. #define PM8607_VCHG_MIN (0x9B)
  245. #define PM8607_VSYS_MIN (0x9C)
  246. #define PM8607_VBAT_MAX (0x9D)
  247. #define PM8607_VCHG_MAX (0x9E)
  248. #define PM8607_VSYS_MAX (0x9F)
  249. #define PM8607_GPADC_MISC2 (0x59)
  250. #define PM8607_GPADC0_GP_BIAS_A0 (1 << 0)
  251. #define PM8607_GPADC1_GP_BIAS_A1 (1 << 1)
  252. #define PM8607_GPADC2_GP_BIAS_A2 (1 << 2)
  253. #define PM8607_GPADC3_GP_BIAS_A3 (1 << 3)
  254. #define PM8607_GPADC2_GP_BIAS_OUT2 (1 << 6)
  255. /* RTC Control Registers */
  256. #define PM8607_RTC1 (0xA0)
  257. #define PM8607_RTC_COUNTER1 (0xA1)
  258. #define PM8607_RTC_COUNTER2 (0xA2)
  259. #define PM8607_RTC_COUNTER3 (0xA3)
  260. #define PM8607_RTC_COUNTER4 (0xA4)
  261. #define PM8607_RTC_EXPIRE1 (0xA5)
  262. #define PM8607_RTC_EXPIRE2 (0xA6)
  263. #define PM8607_RTC_EXPIRE3 (0xA7)
  264. #define PM8607_RTC_EXPIRE4 (0xA8)
  265. #define PM8607_RTC_TRIM1 (0xA9)
  266. #define PM8607_RTC_TRIM2 (0xAA)
  267. #define PM8607_RTC_TRIM3 (0xAB)
  268. #define PM8607_RTC_TRIM4 (0xAC)
  269. #define PM8607_RTC_MISC1 (0xAD)
  270. #define PM8607_RTC_MISC2 (0xAE)
  271. #define PM8607_RTC_MISC3 (0xAF)
  272. /* Misc Registers */
  273. #define PM8607_CHIP_ID (0x00)
  274. #define PM8607_B0_MISC1 (0x0C)
  275. #define PM8607_LDO1 (0x10)
  276. #define PM8607_DVC3 (0x26)
  277. #define PM8607_A1_MISC1 (0x40)
  278. /* bit definitions of Status Query Interface */
  279. #define PM8607_STATUS_CC (1 << 3)
  280. #define PM8607_STATUS_PEN (1 << 4)
  281. #define PM8607_STATUS_HEADSET (1 << 5)
  282. #define PM8607_STATUS_HOOK (1 << 6)
  283. #define PM8607_STATUS_MICIN (1 << 7)
  284. #define PM8607_STATUS_ONKEY (1 << 8)
  285. #define PM8607_STATUS_EXTON (1 << 9)
  286. #define PM8607_STATUS_CHG (1 << 10)
  287. #define PM8607_STATUS_BAT (1 << 11)
  288. #define PM8607_STATUS_VBUS (1 << 12)
  289. #define PM8607_STATUS_OV (1 << 13)
  290. /* bit definitions of BUCK3 */
  291. #define PM8607_BUCK3_DOUBLE (1 << 6)
  292. /* bit definitions of Misc1 */
  293. #define PM8607_A1_MISC1_PI2C (1 << 0)
  294. #define PM8607_B0_MISC1_INV_INT (1 << 0)
  295. #define PM8607_B0_MISC1_INT_CLEAR (1 << 1)
  296. #define PM8607_B0_MISC1_INT_MASK (1 << 2)
  297. #define PM8607_B0_MISC1_PI2C (1 << 3)
  298. #define PM8607_B0_MISC1_RESET (1 << 6)
  299. /* bits definitions of GPADC */
  300. #define PM8607_GPADC_EN (1 << 0)
  301. #define PM8607_GPADC_PREBIAS_MASK (3 << 1)
  302. #define PM8607_GPADC_SLOT_CYCLE_MASK (3 << 3) /* slow mode */
  303. #define PM8607_GPADC_OFF_SCALE_MASK (3 << 5) /* GP sleep mode */
  304. #define PM8607_GPADC_SW_CAL_MASK (1 << 7)
  305. #define PM8607_PD_PREBIAS_MASK (0x1F << 0)
  306. #define PM8607_PD_PRECHG_MASK (7 << 5)
  307. #define PM8606_REF_GP_OSC_OFF 0
  308. #define PM8606_REF_GP_OSC_ON 1
  309. #define PM8606_REF_GP_OSC_UNKNOWN 2
  310. /* Clients of reference group and 8MHz oscillator in 88PM8606 */
  311. enum pm8606_ref_gp_and_osc_clients {
  312. REF_GP_NO_CLIENTS = 0,
  313. WLED1_DUTY = (1<<0), /*PF 0x02.7:0*/
  314. WLED2_DUTY = (1<<1), /*PF 0x04.7:0*/
  315. WLED3_DUTY = (1<<2), /*PF 0x06.7:0*/
  316. RGB1_ENABLE = (1<<3), /*PF 0x07.1*/
  317. RGB2_ENABLE = (1<<4), /*PF 0x07.2*/
  318. LDO_VBR_EN = (1<<5), /*PF 0x12.0*/
  319. REF_GP_MAX_CLIENT = 0xFFFF
  320. };
  321. /* Interrupt Number in 88PM8607 */
  322. enum {
  323. PM8607_IRQ_ONKEY,
  324. PM8607_IRQ_EXTON,
  325. PM8607_IRQ_CHG,
  326. PM8607_IRQ_BAT,
  327. PM8607_IRQ_RTC,
  328. PM8607_IRQ_CC,
  329. PM8607_IRQ_VBAT,
  330. PM8607_IRQ_VCHG,
  331. PM8607_IRQ_VSYS,
  332. PM8607_IRQ_TINT,
  333. PM8607_IRQ_GPADC0,
  334. PM8607_IRQ_GPADC1,
  335. PM8607_IRQ_GPADC2,
  336. PM8607_IRQ_GPADC3,
  337. PM8607_IRQ_AUDIO_SHORT,
  338. PM8607_IRQ_PEN,
  339. PM8607_IRQ_HEADSET,
  340. PM8607_IRQ_HOOK,
  341. PM8607_IRQ_MICIN,
  342. PM8607_IRQ_CHG_FAIL,
  343. PM8607_IRQ_CHG_DONE,
  344. PM8607_IRQ_CHG_FAULT,
  345. };
  346. enum {
  347. PM8607_CHIP_A0 = 0x40,
  348. PM8607_CHIP_A1 = 0x41,
  349. PM8607_CHIP_B0 = 0x48,
  350. };
  351. struct pm860x_chip {
  352. struct device *dev;
  353. struct mutex irq_lock;
  354. struct mutex osc_lock;
  355. struct i2c_client *client;
  356. struct i2c_client *companion; /* companion chip client */
  357. struct regmap *regmap;
  358. struct regmap *regmap_companion;
  359. int buck3_double; /* DVC ramp slope double */
  360. unsigned short companion_addr;
  361. unsigned short osc_vote;
  362. int id;
  363. int irq_mode;
  364. int irq_base;
  365. int core_irq;
  366. unsigned char chip_version;
  367. unsigned char osc_status;
  368. unsigned int wakeup_flag;
  369. };
  370. enum {
  371. GI2C_PORT = 0,
  372. PI2C_PORT,
  373. };
  374. struct pm860x_backlight_pdata {
  375. int id;
  376. int pwm;
  377. int iset;
  378. unsigned long flags;
  379. };
  380. struct pm860x_led_pdata {
  381. int id;
  382. int iset;
  383. unsigned long flags;
  384. };
  385. struct pm860x_rtc_pdata {
  386. int (*sync)(unsigned int ticks);
  387. int vrtc;
  388. };
  389. struct pm860x_touch_pdata {
  390. int gpadc_prebias;
  391. int slot_cycle;
  392. int off_scale;
  393. int sw_cal;
  394. int tsi_prebias; /* time, slot */
  395. int pen_prebias; /* time, slot */
  396. int pen_prechg; /* time, slot */
  397. int res_x; /* resistor of Xplate */
  398. unsigned long flags;
  399. };
  400. struct pm860x_power_pdata {
  401. int max_capacity;
  402. int resistor;
  403. };
  404. struct pm860x_platform_data {
  405. struct pm860x_backlight_pdata *backlight;
  406. struct pm860x_led_pdata *led;
  407. struct pm860x_rtc_pdata *rtc;
  408. struct pm860x_touch_pdata *touch;
  409. struct pm860x_power_pdata *power;
  410. struct charger_desc *chg_desc;
  411. struct regulator_init_data *regulator;
  412. unsigned short companion_addr; /* I2C address of companion chip */
  413. int i2c_port; /* Controlled by GI2C or PI2C */
  414. int irq_mode; /* Clear interrupt by read/write(0/1) */
  415. int irq_base; /* IRQ base number of 88pm860x */
  416. int num_leds;
  417. int num_backlights;
  418. int num_regulators;
  419. };
  420. extern int pm8606_osc_enable(struct pm860x_chip *, unsigned short);
  421. extern int pm8606_osc_disable(struct pm860x_chip *, unsigned short);
  422. extern int pm860x_reg_read(struct i2c_client *, int);
  423. extern int pm860x_reg_write(struct i2c_client *, int, unsigned char);
  424. extern int pm860x_bulk_read(struct i2c_client *, int, int, unsigned char *);
  425. extern int pm860x_bulk_write(struct i2c_client *, int, int, unsigned char *);
  426. extern int pm860x_set_bits(struct i2c_client *, int, unsigned char,
  427. unsigned char);
  428. extern int pm860x_page_reg_read(struct i2c_client *, int);
  429. extern int pm860x_page_reg_write(struct i2c_client *, int, unsigned char);
  430. extern int pm860x_page_bulk_read(struct i2c_client *, int, int,
  431. unsigned char *);
  432. extern int pm860x_page_bulk_write(struct i2c_client *, int, int,
  433. unsigned char *);
  434. extern int pm860x_page_set_bits(struct i2c_client *, int, unsigned char,
  435. unsigned char);
  436. extern int pm860x_device_init(struct pm860x_chip *chip,
  437. struct pm860x_platform_data *pdata) __devinit ;
  438. extern void pm860x_device_exit(struct pm860x_chip *chip) __devexit ;
  439. #endif /* __LINUX_MFD_88PM860X_H */