core.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  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. };
  105. enum wcd9xxx_slim_slave_addr_type {
  106. WCD9XXX_SLIM_SLAVE_ADDR_TYPE_0,
  107. WCD9XXX_SLIM_SLAVE_ADDR_TYPE_1,
  108. };
  109. enum wcd9xxx_pm_state {
  110. WCD9XXX_PM_SLEEPABLE,
  111. WCD9XXX_PM_AWAKE,
  112. WCD9XXX_PM_ASLEEP,
  113. };
  114. enum {
  115. WCD9XXX_INTR_STATUS_BASE = 0,
  116. WCD9XXX_INTR_CLEAR_BASE,
  117. WCD9XXX_INTR_MASK_BASE,
  118. WCD9XXX_INTR_LEVEL_BASE,
  119. WCD9XXX_INTR_CLR_COMMIT,
  120. WCD9XXX_INTR_REG_MAX,
  121. };
  122. enum wcd9xxx_intf_status {
  123. WCD9XXX_INTERFACE_TYPE_PROBING,
  124. WCD9XXX_INTERFACE_TYPE_SLIMBUS,
  125. WCD9XXX_INTERFACE_TYPE_I2C,
  126. };
  127. enum {
  128. /* INTR_REG 0 */
  129. WCD9XXX_IRQ_SLIMBUS = 0,
  130. WCD9XXX_IRQ_MBHC_REMOVAL,
  131. WCD9XXX_IRQ_MBHC_SHORT_TERM,
  132. WCD9XXX_IRQ_MBHC_PRESS,
  133. WCD9XXX_IRQ_MBHC_RELEASE,
  134. WCD9XXX_IRQ_MBHC_POTENTIAL,
  135. WCD9XXX_IRQ_MBHC_INSERTION,
  136. WCD9XXX_IRQ_BG_PRECHARGE,
  137. /* INTR_REG 1 */
  138. WCD9XXX_IRQ_PA1_STARTUP,
  139. WCD9XXX_IRQ_PA2_STARTUP,
  140. WCD9XXX_IRQ_PA3_STARTUP,
  141. WCD9XXX_IRQ_PA4_STARTUP,
  142. WCD9306_IRQ_HPH_PA_OCPR_FAULT = WCD9XXX_IRQ_PA4_STARTUP,
  143. WCD9XXX_IRQ_PA5_STARTUP,
  144. WCD9XXX_IRQ_MICBIAS1_PRECHARGE,
  145. WCD9306_IRQ_HPH_PA_OCPL_FAULT = WCD9XXX_IRQ_MICBIAS1_PRECHARGE,
  146. WCD9XXX_IRQ_MICBIAS2_PRECHARGE,
  147. WCD9XXX_IRQ_MICBIAS3_PRECHARGE,
  148. /* INTR_REG 2 */
  149. WCD9XXX_IRQ_HPH_PA_OCPL_FAULT,
  150. WCD9XXX_IRQ_HPH_PA_OCPR_FAULT,
  151. WCD9XXX_IRQ_EAR_PA_OCPL_FAULT,
  152. WCD9XXX_IRQ_HPH_L_PA_STARTUP,
  153. WCD9XXX_IRQ_HPH_R_PA_STARTUP,
  154. WCD9320_IRQ_EAR_PA_STARTUP,
  155. WCD9306_IRQ_MBHC_JACK_SWITCH = WCD9320_IRQ_EAR_PA_STARTUP,
  156. WCD9310_NUM_IRQS,
  157. WCD9XXX_IRQ_RESERVED_0 = WCD9310_NUM_IRQS,
  158. WCD9XXX_IRQ_RESERVED_1,
  159. WCD9330_IRQ_SVASS_ERR_EXCEPTION = WCD9310_NUM_IRQS,
  160. WCD9330_IRQ_MBHC_JACK_SWITCH,
  161. /* INTR_REG 3 */
  162. WCD9XXX_IRQ_MAD_AUDIO,
  163. WCD9XXX_IRQ_MAD_ULTRASOUND,
  164. WCD9XXX_IRQ_MAD_BEACON,
  165. WCD9XXX_IRQ_SPEAKER_CLIPPING,
  166. WCD9320_IRQ_MBHC_JACK_SWITCH,
  167. WCD9306_NUM_IRQS,
  168. WCD9XXX_IRQ_VBAT_MONITOR_ATTACK = WCD9306_NUM_IRQS,
  169. WCD9XXX_IRQ_VBAT_MONITOR_RELEASE,
  170. WCD9XXX_NUM_IRQS,
  171. /* WCD9330 INTR1_REG 3*/
  172. WCD9330_IRQ_SVASS_ENGINE = WCD9XXX_IRQ_MAD_AUDIO,
  173. WCD9330_IRQ_MAD_AUDIO,
  174. WCD9330_IRQ_MAD_ULTRASOUND,
  175. WCD9330_IRQ_MAD_BEACON,
  176. WCD9330_IRQ_SPEAKER1_CLIPPING,
  177. WCD9330_IRQ_SPEAKER2_CLIPPING,
  178. WCD9330_IRQ_VBAT_MONITOR_ATTACK,
  179. WCD9330_IRQ_VBAT_MONITOR_RELEASE,
  180. WCD9330_NUM_IRQS,
  181. WCD9XXX_IRQ_RESERVED_2 = WCD9330_NUM_IRQS,
  182. };
  183. enum {
  184. TABLA_NUM_IRQS = WCD9310_NUM_IRQS,
  185. SITAR_NUM_IRQS = WCD9310_NUM_IRQS,
  186. TAIKO_NUM_IRQS = WCD9XXX_NUM_IRQS,
  187. TAPAN_NUM_IRQS = WCD9306_NUM_IRQS,
  188. TOMTOM_NUM_IRQS = WCD9330_NUM_IRQS,
  189. };
  190. struct intr_data {
  191. int intr_num;
  192. bool clear_first;
  193. };
  194. struct wcd9xxx_core_resource {
  195. struct mutex irq_lock;
  196. struct mutex nested_irq_lock;
  197. enum wcd9xxx_pm_state pm_state;
  198. struct mutex pm_lock;
  199. /* pm_wq notifies change of pm_state */
  200. wait_queue_head_t pm_wq;
  201. struct pm_qos_request pm_qos_req;
  202. int wlock_holders;
  203. /* holds the table of interrupts per codec */
  204. const struct intr_data *intr_table;
  205. int intr_table_size;
  206. unsigned int irq_base;
  207. unsigned int irq;
  208. u8 irq_masks_cur[WCD9XXX_MAX_IRQ_REGS];
  209. u8 irq_masks_cache[WCD9XXX_MAX_IRQ_REGS];
  210. bool irq_level_high[WCD9XXX_MAX_NUM_IRQS];
  211. int num_irqs;
  212. int num_irq_regs;
  213. u16 intr_reg[WCD9XXX_INTR_REG_MAX];
  214. struct regmap *wcd_core_regmap;
  215. /* Pointer to parent container data structure */
  216. void *parent;
  217. struct device *dev;
  218. struct irq_domain *domain;
  219. };
  220. /*
  221. * data structure for Slimbus and I2S channel.
  222. * Some of fields are only used in smilbus mode
  223. */
  224. struct wcd9xxx_ch {
  225. u32 sph; /* share channel handle - slimbus only */
  226. u32 ch_num; /*
  227. * vitrual channel number, such as 128 -144.
  228. * apply for slimbus only
  229. */
  230. u16 ch_h; /* chanel handle - slimbus only */
  231. u16 port; /*
  232. * tabla port for RX and TX
  233. * such as 0-9 for TX and 10 -16 for RX
  234. * apply for both i2s and slimbus
  235. */
  236. u16 shift; /*
  237. * shift bit for RX and TX
  238. * apply for both i2s and slimbus
  239. */
  240. struct list_head list; /*
  241. * channel link list
  242. * apply for both i2s and slimbus
  243. */
  244. };
  245. struct wcd9xxx_codec_dai_data {
  246. u32 rate; /* sample rate */
  247. u32 bit_width; /* sit width 16,24,32 */
  248. struct list_head wcd9xxx_ch_list; /* channel list */
  249. u16 grph; /* slimbus group handle */
  250. unsigned long ch_mask;
  251. wait_queue_head_t dai_wait;
  252. bool bus_down_in_recovery;
  253. };
  254. #define WCD9XXX_CH(xport, xshift) \
  255. {.port = xport, .shift = xshift}
  256. enum wcd9xxx_chipid_major {
  257. TABLA_MAJOR = cpu_to_le16(0x100),
  258. SITAR_MAJOR = cpu_to_le16(0x101),
  259. TAIKO_MAJOR = cpu_to_le16(0x102),
  260. TAPAN_MAJOR = cpu_to_le16(0x103),
  261. TOMTOM_MAJOR = cpu_to_le16(0x105),
  262. TASHA_MAJOR = cpu_to_le16(0x0),
  263. TASHA2P0_MAJOR = cpu_to_le16(0x107),
  264. TAVIL_MAJOR = cpu_to_le16(0x108),
  265. };
  266. enum codec_power_states {
  267. WCD_REGION_POWER_COLLAPSE_REMOVE,
  268. WCD_REGION_POWER_COLLAPSE_BEGIN,
  269. WCD_REGION_POWER_DOWN,
  270. };
  271. enum wcd_power_regions {
  272. WCD9XXX_DIG_CORE_REGION_1,
  273. WCD9XXX_MAX_PWR_REGIONS,
  274. };
  275. struct wcd9xxx_codec_type {
  276. u16 id_major;
  277. u16 id_minor;
  278. struct mfd_cell *dev;
  279. int size;
  280. int num_irqs;
  281. int version; /* -1 to retrieve version from chip version register */
  282. enum wcd9xxx_slim_slave_addr_type slim_slave_type;
  283. u16 i2c_chip_status;
  284. const struct intr_data *intr_tbl;
  285. int intr_tbl_size;
  286. u16 intr_reg[WCD9XXX_INTR_REG_MAX];
  287. };
  288. struct wcd9xxx_power_region {
  289. enum codec_power_states power_state;
  290. u16 pwr_collapse_reg_min;
  291. u16 pwr_collapse_reg_max;
  292. };
  293. struct wcd9xxx {
  294. struct device *dev;
  295. struct slim_device *slim;
  296. struct slim_device *slim_slave;
  297. struct mutex io_lock;
  298. struct mutex xfer_lock;
  299. struct mutex reset_lock;
  300. u8 version;
  301. int reset_gpio;
  302. struct device_node *wcd_rst_np;
  303. int (*read_dev)(struct wcd9xxx *wcd9xxx, unsigned short reg,
  304. int bytes, void *dest, bool interface_reg);
  305. int (*write_dev)(struct wcd9xxx *wcd9xxx, unsigned short reg,
  306. int bytes, void *src, bool interface_reg);
  307. int (*multi_reg_write)(struct wcd9xxx *wcd9xxx, const void *data,
  308. size_t count);
  309. int (*dev_down)(struct wcd9xxx *wcd9xxx);
  310. int (*post_reset)(struct wcd9xxx *wcd9xxx);
  311. void *ssr_priv;
  312. bool dev_up;
  313. u32 num_of_supplies;
  314. struct regulator_bulk_data *supplies;
  315. struct wcd9xxx_core_resource core_res;
  316. u16 id_minor;
  317. u16 id_major;
  318. /* Slimbus or I2S port */
  319. u32 num_rx_port;
  320. u32 num_tx_port;
  321. struct wcd9xxx_ch *rx_chs;
  322. struct wcd9xxx_ch *tx_chs;
  323. u32 mclk_rate;
  324. enum codec_variant type;
  325. struct regmap *regmap;
  326. struct wcd9xxx_codec_type *codec_type;
  327. bool prev_pg_valid;
  328. u8 prev_pg;
  329. u8 avoid_cdc_rstlow;
  330. struct wcd9xxx_power_region *wcd9xxx_pwr[WCD9XXX_MAX_PWR_REGIONS];
  331. };
  332. struct wcd9xxx_reg_val {
  333. unsigned short reg; /* register address */
  334. u8 *buf; /* buffer to be written to reg. addr */
  335. int bytes; /* number of bytes to be written */
  336. };
  337. int wcd9xxx_interface_reg_read(struct wcd9xxx *wcd9xxx, unsigned short reg);
  338. int wcd9xxx_interface_reg_write(struct wcd9xxx *wcd9xxx, unsigned short reg,
  339. u8 val);
  340. int wcd9xxx_get_logical_addresses(u8 *pgd_la, u8 *inf_la);
  341. int wcd9xxx_slim_write_repeat(struct wcd9xxx *wcd9xxx, unsigned short reg,
  342. int bytes, void *src);
  343. int wcd9xxx_slim_reserve_bw(struct wcd9xxx *wcd9xxx,
  344. u32 bw_ops, bool commit);
  345. int wcd9xxx_set_power_state(struct wcd9xxx *wcd9xxx, enum codec_power_states,
  346. enum wcd_power_regions);
  347. int wcd9xxx_get_current_power_state(struct wcd9xxx *wcd9xxx,
  348. enum wcd_power_regions);
  349. int wcd9xxx_page_write(struct wcd9xxx *wcd9xxx, unsigned short *reg);
  350. int wcd9xxx_slim_bulk_write(struct wcd9xxx *wcd9xxx,
  351. struct wcd9xxx_reg_val *bulk_reg,
  352. unsigned int size, bool interface);
  353. extern int wcd9xxx_core_res_init(
  354. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  355. int num_irqs, int num_irq_regs, struct regmap *wcd_regmap);
  356. extern void wcd9xxx_core_res_deinit(
  357. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  358. extern int wcd9xxx_core_res_suspend(
  359. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  360. pm_message_t pmesg);
  361. extern int wcd9xxx_core_res_resume(
  362. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  363. extern int wcd9xxx_core_irq_init(
  364. struct wcd9xxx_core_resource *wcd9xxx_core_res);
  365. extern int wcd9xxx_assign_irq(struct wcd9xxx_core_resource *wcd9xxx_core_res,
  366. unsigned int irq,
  367. unsigned int irq_base);
  368. extern enum wcd9xxx_intf_status wcd9xxx_get_intf_type(void);
  369. extern void wcd9xxx_set_intf_type(enum wcd9xxx_intf_status);
  370. extern enum wcd9xxx_pm_state wcd9xxx_pm_cmpxchg(
  371. struct wcd9xxx_core_resource *wcd9xxx_core_res,
  372. enum wcd9xxx_pm_state o,
  373. enum wcd9xxx_pm_state n);
  374. static inline int __init wcd9xxx_irq_of_init(struct device_node *node,
  375. struct device_node *parent)
  376. {
  377. return 0;
  378. }
  379. int wcd9xxx_init(void);
  380. void wcd9xxx_exit(void);
  381. #endif