core.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  1. /* Copyright (c) 2011-2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __MFD_TABLA_CORE_H__
  13. #define __MFD_TABLA_CORE_H__
  14. #include <linux/types.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/of_irq.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/pm_qos.h>
  19. #define WCD9XXX_MAX_IRQ_REGS 4
  20. #define WCD9XXX_MAX_NUM_IRQS (WCD9XXX_MAX_IRQ_REGS * 8)
  21. #define WCD9XXX_SLIM_NUM_PORT_REG 3
  22. #define TABLA_VERSION_1_0 0
  23. #define TABLA_VERSION_1_1 1
  24. #define TABLA_VERSION_2_0 2
  25. #define TABLA_IS_1_X(ver) \
  26. (((ver == TABLA_VERSION_1_0) || (ver == TABLA_VERSION_1_1)) ? 1 : 0)
  27. #define TABLA_IS_2_0(ver) ((ver == TABLA_VERSION_2_0) ? 1 : 0)
  28. #define WCD9XXX_SUPPLY_BUCK_NAME "cdc-vdd-buck"
  29. #define SITAR_VERSION_1P0 0
  30. #define SITAR_VERSION_1P1 1
  31. #define SITAR_IS_1P0(ver) \
  32. ((ver == SITAR_VERSION_1P0) ? 1 : 0)
  33. #define SITAR_IS_1P1(ver) \
  34. ((ver == SITAR_VERSION_1P1) ? 1 : 0)
  35. #define TAIKO_VERSION_1_0 1
  36. #define TAIKO_IS_1_0(ver) \
  37. ((ver == TAIKO_VERSION_1_0) ? 1 : 0)
  38. #define TAPAN_VERSION_1_0 0
  39. #define TAPAN_IS_1_0(ver) \
  40. ((ver == TAPAN_VERSION_1_0) ? 1 : 0)
  41. #define TOMTOM_VERSION_1_0 1
  42. #define TOMTOM_IS_1_0(ver) \
  43. ((ver == TOMTOM_VERSION_1_0) ? 1 : 0)
  44. #define TASHA_VERSION_1_0 0
  45. #define TASHA_VERSION_1_1 1
  46. #define TASHA_VERSION_2_0 2
  47. #define TASHA_IS_1_0(wcd) \
  48. ((wcd->type == WCD9335 || wcd->type == WCD9326) ? \
  49. ((wcd->version == TASHA_VERSION_1_0) ? 1 : 0) : 0)
  50. #define TASHA_IS_1_1(wcd) \
  51. ((wcd->type == WCD9335 || wcd->type == WCD9326) ? \
  52. ((wcd->version == TASHA_VERSION_1_1) ? 1 : 0) : 0)
  53. #define TASHA_IS_2_0(wcd) \
  54. ((wcd->type == WCD9335 || wcd->type == WCD9326) ? \
  55. ((wcd->version == TASHA_VERSION_2_0) ? 1 : 0) : 0)
  56. /*
  57. * As fine version info cannot be retrieved before tavil probe.
  58. * Define three coarse versions for possible future use before tavil probe.
  59. */
  60. #define TAVIL_VERSION_1_0 0
  61. #define TAVIL_VERSION_1_1 1
  62. #define TAVIL_VERSION_WCD9340_1_0 2
  63. #define TAVIL_VERSION_WCD9341_1_0 3
  64. #define TAVIL_VERSION_WCD9340_1_1 4
  65. #define TAVIL_VERSION_WCD9341_1_1 5
  66. #define TAVIL_IS_1_0(wcd) \
  67. ((wcd->type == WCD934X) ? \
  68. ((wcd->version == TAVIL_VERSION_1_0 || \
  69. wcd->version == TAVIL_VERSION_WCD9340_1_0 || \
  70. wcd->version == TAVIL_VERSION_WCD9341_1_0) ? 1 : 0) : 0)
  71. #define TAVIL_IS_1_1(wcd) \
  72. ((wcd->type == WCD934X) ? \
  73. ((wcd->version == TAVIL_VERSION_1_1 || \
  74. wcd->version == TAVIL_VERSION_WCD9340_1_1 || \
  75. wcd->version == TAVIL_VERSION_WCD9341_1_1) ? 1 : 0) : 0)
  76. #define TAVIL_IS_WCD9340_1_0(wcd) \
  77. ((wcd->type == WCD934X) ? \
  78. ((wcd->version == TAVIL_VERSION_WCD9340_1_0) ? 1 : 0) : 0)
  79. #define TAVIL_IS_WCD9341_1_0(wcd) \
  80. ((wcd->type == WCD934X) ? \
  81. ((wcd->version == TAVIL_VERSION_WCD9341_1_0) ? 1 : 0) : 0)
  82. #define TAVIL_IS_WCD9340_1_1(wcd) \
  83. ((wcd->type == WCD934X) ? \
  84. ((wcd->version == TAVIL_VERSION_WCD9340_1_1) ? 1 : 0) : 0)
  85. #define TAVIL_IS_WCD9341_1_1(wcd) \
  86. ((wcd->type == WCD934X) ? \
  87. ((wcd->version == TAVIL_VERSION_WCD9341_1_1) ? 1 : 0) : 0)
  88. #define IS_CODEC_TYPE(wcd, wcdtype) \
  89. ((wcd->type == wcdtype) ? true : false)
  90. #define IS_CODEC_VERSION(wcd, wcdversion) \
  91. ((wcd->version == wcdversion) ? true : false)
  92. #define PAHU_VERSION_1_0 0
  93. enum {
  94. CDC_V_1_0,
  95. CDC_V_1_1,
  96. CDC_V_2_0,
  97. };
  98. enum codec_variant {
  99. WCD9XXX,
  100. WCD9330,
  101. WCD9335,
  102. WCD9326,
  103. WCD934X,
  104. WCD9360,
  105. };
  106. enum wcd9xxx_slim_slave_addr_type {
  107. WCD9XXX_SLIM_SLAVE_ADDR_TYPE_0,
  108. WCD9XXX_SLIM_SLAVE_ADDR_TYPE_1,
  109. };
  110. enum wcd9xxx_pm_state {
  111. WCD9XXX_PM_SLEEPABLE,
  112. WCD9XXX_PM_AWAKE,
  113. WCD9XXX_PM_ASLEEP,
  114. };
  115. enum {
  116. WCD9XXX_INTR_STATUS_BASE = 0,
  117. WCD9XXX_INTR_CLEAR_BASE,
  118. WCD9XXX_INTR_MASK_BASE,
  119. WCD9XXX_INTR_LEVEL_BASE,
  120. WCD9XXX_INTR_CLR_COMMIT,
  121. WCD9XXX_INTR_REG_MAX,
  122. };
  123. enum wcd9xxx_intf_status {
  124. WCD9XXX_INTERFACE_TYPE_PROBING,
  125. WCD9XXX_INTERFACE_TYPE_SLIMBUS,
  126. WCD9XXX_INTERFACE_TYPE_I2C,
  127. };
  128. enum {
  129. /* INTR_REG 0 */
  130. WCD9XXX_IRQ_SLIMBUS = 0,
  131. WCD9XXX_IRQ_MBHC_REMOVAL,
  132. WCD9XXX_IRQ_MBHC_SHORT_TERM,
  133. WCD9XXX_IRQ_MBHC_PRESS,
  134. WCD9XXX_IRQ_MBHC_RELEASE,
  135. WCD9XXX_IRQ_MBHC_POTENTIAL,
  136. WCD9XXX_IRQ_MBHC_INSERTION,
  137. WCD9XXX_IRQ_BG_PRECHARGE,
  138. /* INTR_REG 1 */
  139. WCD9XXX_IRQ_PA1_STARTUP,
  140. WCD9XXX_IRQ_PA2_STARTUP,
  141. WCD9XXX_IRQ_PA3_STARTUP,
  142. WCD9XXX_IRQ_PA4_STARTUP,
  143. WCD9306_IRQ_HPH_PA_OCPR_FAULT = WCD9XXX_IRQ_PA4_STARTUP,
  144. WCD9XXX_IRQ_PA5_STARTUP,
  145. WCD9XXX_IRQ_MICBIAS1_PRECHARGE,
  146. WCD9306_IRQ_HPH_PA_OCPL_FAULT = WCD9XXX_IRQ_MICBIAS1_PRECHARGE,
  147. WCD9XXX_IRQ_MICBIAS2_PRECHARGE,
  148. WCD9XXX_IRQ_MICBIAS3_PRECHARGE,
  149. /* INTR_REG 2 */
  150. WCD9XXX_IRQ_HPH_PA_OCPL_FAULT,
  151. WCD9XXX_IRQ_HPH_PA_OCPR_FAULT,
  152. WCD9XXX_IRQ_EAR_PA_OCPL_FAULT,
  153. WCD9XXX_IRQ_HPH_L_PA_STARTUP,
  154. WCD9XXX_IRQ_HPH_R_PA_STARTUP,
  155. WCD9320_IRQ_EAR_PA_STARTUP,
  156. WCD9306_IRQ_MBHC_JACK_SWITCH = WCD9320_IRQ_EAR_PA_STARTUP,
  157. WCD9310_NUM_IRQS,
  158. WCD9XXX_IRQ_RESERVED_0 = WCD9310_NUM_IRQS,
  159. WCD9XXX_IRQ_RESERVED_1,
  160. WCD9330_IRQ_SVASS_ERR_EXCEPTION = WCD9310_NUM_IRQS,
  161. WCD9330_IRQ_MBHC_JACK_SWITCH,
  162. /* INTR_REG 3 */
  163. WCD9XXX_IRQ_MAD_AUDIO,
  164. WCD9XXX_IRQ_MAD_ULTRASOUND,
  165. WCD9XXX_IRQ_MAD_BEACON,
  166. WCD9XXX_IRQ_SPEAKER_CLIPPING,
  167. WCD9320_IRQ_MBHC_JACK_SWITCH,
  168. WCD9306_NUM_IRQS,
  169. WCD9XXX_IRQ_VBAT_MONITOR_ATTACK = WCD9306_NUM_IRQS,
  170. WCD9XXX_IRQ_VBAT_MONITOR_RELEASE,
  171. WCD9XXX_NUM_IRQS,
  172. /* WCD9330 INTR1_REG 3*/
  173. WCD9330_IRQ_SVASS_ENGINE = WCD9XXX_IRQ_MAD_AUDIO,
  174. WCD9330_IRQ_MAD_AUDIO,
  175. WCD9330_IRQ_MAD_ULTRASOUND,
  176. WCD9330_IRQ_MAD_BEACON,
  177. WCD9330_IRQ_SPEAKER1_CLIPPING,
  178. WCD9330_IRQ_SPEAKER2_CLIPPING,
  179. WCD9330_IRQ_VBAT_MONITOR_ATTACK,
  180. WCD9330_IRQ_VBAT_MONITOR_RELEASE,
  181. WCD9330_NUM_IRQS,
  182. WCD9XXX_IRQ_RESERVED_2 = WCD9330_NUM_IRQS,
  183. };
  184. enum {
  185. TABLA_NUM_IRQS = WCD9310_NUM_IRQS,
  186. SITAR_NUM_IRQS = WCD9310_NUM_IRQS,
  187. TAIKO_NUM_IRQS = WCD9XXX_NUM_IRQS,
  188. TAPAN_NUM_IRQS = WCD9306_NUM_IRQS,
  189. TOMTOM_NUM_IRQS = WCD9330_NUM_IRQS,
  190. };
  191. struct intr_data {
  192. int intr_num;
  193. bool clear_first;
  194. };
  195. struct wcd9xxx_core_resource {
  196. struct mutex irq_lock;
  197. struct mutex nested_irq_lock;
  198. enum wcd9xxx_pm_state pm_state;
  199. struct mutex pm_lock;
  200. /* pm_wq notifies change of pm_state */
  201. wait_queue_head_t pm_wq;
  202. struct pm_qos_request pm_qos_req;
  203. int wlock_holders;
  204. /* holds the table of interrupts per codec */
  205. const struct intr_data *intr_table;
  206. int intr_table_size;
  207. unsigned int irq_base;
  208. unsigned int irq;
  209. u8 irq_masks_cur[WCD9XXX_MAX_IRQ_REGS];
  210. u8 irq_masks_cache[WCD9XXX_MAX_IRQ_REGS];
  211. bool irq_level_high[WCD9XXX_MAX_NUM_IRQS];
  212. int num_irqs;
  213. int num_irq_regs;
  214. u16 intr_reg[WCD9XXX_INTR_REG_MAX];
  215. struct regmap *wcd_core_regmap;
  216. /* Pointer to parent container data structure */
  217. void *parent;
  218. struct device *dev;
  219. struct irq_domain *domain;
  220. };
  221. /*
  222. * data structure for Slimbus and I2S channel.
  223. * Some of fields are only used in smilbus mode
  224. */
  225. struct wcd9xxx_ch {
  226. u32 sph; /* share channel handle - slimbus only */
  227. u32 ch_num; /*
  228. * vitrual channel number, such as 128 -144.
  229. * apply for slimbus only
  230. */
  231. u16 ch_h; /* chanel handle - slimbus only */
  232. u16 port; /*
  233. * tabla port for RX and TX
  234. * such as 0-9 for TX and 10 -16 for RX
  235. * apply for both i2s and slimbus
  236. */
  237. u16 shift; /*
  238. * shift bit for RX and TX
  239. * apply for both i2s and slimbus
  240. */
  241. struct list_head list; /*
  242. * channel link list
  243. * apply for both i2s and slimbus
  244. */
  245. };
  246. struct wcd9xxx_codec_dai_data {
  247. u32 rate; /* sample rate */
  248. u32 bit_width; /* sit width 16,24,32 */
  249. struct list_head wcd9xxx_ch_list; /* channel list */
  250. u16 grph; /* slimbus group handle */
  251. unsigned long ch_mask;
  252. wait_queue_head_t dai_wait;
  253. bool bus_down_in_recovery;
  254. };
  255. #define WCD9XXX_CH(xport, xshift) \
  256. {.port = xport, .shift = xshift}
  257. enum wcd9xxx_chipid_major {
  258. TABLA_MAJOR = cpu_to_le16(0x100),
  259. SITAR_MAJOR = cpu_to_le16(0x101),
  260. TAIKO_MAJOR = cpu_to_le16(0x102),
  261. TAPAN_MAJOR = cpu_to_le16(0x103),
  262. TOMTOM_MAJOR = cpu_to_le16(0x105),
  263. TASHA_MAJOR = cpu_to_le16(0x0),
  264. TASHA2P0_MAJOR = cpu_to_le16(0x107),
  265. TAVIL_MAJOR = cpu_to_le16(0x108),
  266. PAHU_MAJOR = cpu_to_le16(0x109),
  267. };
  268. enum codec_power_states {
  269. WCD_REGION_POWER_COLLAPSE_REMOVE,
  270. WCD_REGION_POWER_COLLAPSE_BEGIN,
  271. WCD_REGION_POWER_DOWN,
  272. };
  273. enum wcd_power_regions {
  274. WCD9XXX_DIG_CORE_REGION_1,
  275. WCD9XXX_MAX_PWR_REGIONS,
  276. };
  277. struct wcd9xxx_codec_type {
  278. u16 id_major;
  279. u16 id_minor;
  280. struct mfd_cell *dev;
  281. int size;
  282. int num_irqs;
  283. int version; /* -1 to retrieve version from chip version register */
  284. enum wcd9xxx_slim_slave_addr_type slim_slave_type;
  285. u16 i2c_chip_status;
  286. const struct intr_data *intr_tbl;
  287. int intr_tbl_size;
  288. u16 intr_reg[WCD9XXX_INTR_REG_MAX];
  289. };
  290. struct wcd9xxx_power_region {
  291. enum codec_power_states power_state;
  292. u16 pwr_collapse_reg_min;
  293. u16 pwr_collapse_reg_max;
  294. };
  295. struct wcd9xxx {
  296. struct device *dev;
  297. struct slim_device *slim;
  298. struct slim_device *slim_slave;
  299. struct mutex io_lock;
  300. struct mutex xfer_lock;
  301. struct mutex reset_lock;
  302. u8 version;
  303. int reset_gpio;
  304. struct device_node *wcd_rst_np;
  305. int (*read_dev)(struct wcd9xxx *wcd9xxx, unsigned short reg,
  306. int bytes, void *dest, bool interface_reg);
  307. int (*write_dev)(struct wcd9xxx *wcd9xxx, unsigned short reg,
  308. int bytes, void *src, bool interface_reg);
  309. int (*multi_reg_write)(struct wcd9xxx *wcd9xxx, const void *data,
  310. size_t count);
  311. int (*dev_down)(struct wcd9xxx *wcd9xxx);
  312. int (*post_reset)(struct wcd9xxx *wcd9xxx);
  313. void *ssr_priv;
  314. bool dev_up;
  315. u32 num_of_supplies;
  316. struct regulator_bulk_data *supplies;
  317. struct wcd9xxx_core_resource core_res;
  318. u16 id_minor;
  319. u16 id_major;
  320. /* Slimbus or I2S port */
  321. u32 num_rx_port;
  322. u32 num_tx_port;
  323. struct wcd9xxx_ch *rx_chs;
  324. struct wcd9xxx_ch *tx_chs;
  325. u32 mclk_rate;
  326. enum codec_variant type;
  327. struct regmap *regmap;
  328. struct wcd9xxx_codec_type *codec_type;
  329. bool prev_pg_valid;
  330. u8 prev_pg;
  331. u8 avoid_cdc_rstlow;
  332. struct wcd9xxx_power_region *wcd9xxx_pwr[WCD9XXX_MAX_PWR_REGIONS];
  333. };
  334. struct wcd9xxx_reg_val {
  335. unsigned short reg; /* register address */
  336. u8 *buf; /* buffer to be written to reg. addr */
  337. int bytes; /* number of bytes to be written */
  338. };
  339. int wcd9xxx_interface_reg_read(struct wcd9xxx *wcd9xxx, unsigned short reg);
  340. int wcd9xxx_interface_reg_write(struct wcd9xxx *wcd9xxx, unsigned short reg,
  341. u8 val);
  342. int wcd9xxx_get_logical_addresses(u8 *pgd_la, u8 *inf_la);
  343. int wcd9xxx_slim_write_repeat(struct wcd9xxx *wcd9xxx, unsigned short reg,
  344. int bytes, void *src);
  345. int wcd9xxx_slim_reserve_bw(struct wcd9xxx *wcd9xxx,
  346. u32 bw_ops, bool commit);
  347. int wcd9xxx_set_power_state(struct wcd9xxx *wcd9xxx, enum codec_power_states,
  348. enum wcd_power_regions);
  349. int wcd9xxx_get_current_power_state(struct wcd9xxx *wcd9xxx,
  350. enum wcd_power_regions);
  351. int wcd9xxx_page_write(struct wcd9xxx *wcd9xxx, unsigned short *reg);
  352. int wcd9xxx_slim_bulk_write(struct wcd9xxx *wcd9xxx,
  353. struct wcd9xxx_reg_val *bulk_reg,
  354. unsigned int size, bool interface);
  355. extern int wcd9xxx_core_res_init(
  356. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  357. int num_irqs, int num_irq_regs, struct regmap *wcd_regmap);
  358. extern void wcd9xxx_core_res_deinit(
  359. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  360. extern int wcd9xxx_core_res_suspend(
  361. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  362. pm_message_t pmesg);
  363. extern int wcd9xxx_core_res_resume(
  364. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  365. extern int wcd9xxx_core_irq_init(
  366. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  367. extern int wcd9xxx_assign_irq(struct wcd9xxx_core_resource *wcd9xxx_core_res,
  368. unsigned int irq,
  369. unsigned int irq_base);
  370. extern enum wcd9xxx_intf_status wcd9xxx_get_intf_type(void);
  371. extern void wcd9xxx_set_intf_type(enum wcd9xxx_intf_status);
  372. extern enum wcd9xxx_pm_state wcd9xxx_pm_cmpxchg(
  373. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  374. enum wcd9xxx_pm_state o,
  375. enum wcd9xxx_pm_state n);
  376. static inline int __init wcd9xxx_irq_of_init(struct device_node *node,
  377. struct device_node *parent)
  378. {
  379. return 0;
  380. }
  381. int wcd9xxx_init(void);
  382. void wcd9xxx_exit(void);
  383. #endif