swr-mstr-ctrl.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /* Copyright (c) 2015-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 _SWR_WCD_CTRL_H
  13. #define _SWR_WCD_CTRL_H
  14. #include <linux/module.h>
  15. #include <soc/swr-wcd.h>
  16. #define SWR_MAX_ROW 0 /* Rows = 48 */
  17. #define SWR_MAX_COL 7 /* Cols = 16 */
  18. #define SWR_MIN_COL 0 /* Cols = 2 */
  19. #define SWR_WCD_NAME "swr-wcd"
  20. #define SWR_MSTR_PORT_LEN 8 /* Number of master ports */
  21. #define SWRM_VERSION_1_0 0x01010000
  22. #define SWRM_VERSION_1_2 0x01030000
  23. #define SWRM_VERSION_1_3 0x01040000
  24. #define SWRM_VERSION_1_5 0x01050000
  25. #define SWR_MAX_CH_PER_PORT 8
  26. enum {
  27. SWR_MSTR_PAUSE,
  28. SWR_MSTR_RESUME,
  29. SWR_MSTR_UP,
  30. SWR_MSTR_DOWN,
  31. SWR_MSTR_SSR,
  32. };
  33. enum {
  34. SWR_IRQ_FREE,
  35. SWR_IRQ_REGISTER,
  36. };
  37. enum {
  38. SWR_DAC_PORT,
  39. SWR_COMP_PORT,
  40. SWR_BOOST_PORT,
  41. SWR_VISENSE_PORT,
  42. };
  43. struct usecase {
  44. u8 num_port;
  45. u8 num_ch;
  46. u32 chrate;
  47. };
  48. struct port_params {
  49. u8 si;
  50. u8 off1;
  51. u8 off2;
  52. };
  53. struct swrm_mports {
  54. struct list_head port_req_list;
  55. bool port_en;
  56. u8 ch_en;
  57. u8 req_ch;
  58. u8 ch_rate;
  59. u8 offset1;
  60. u8 offset2;
  61. u8 sinterval;
  62. u8 hstart;
  63. u8 hstop;
  64. u8 blk_grp_count;
  65. u8 blk_pack_mode;
  66. };
  67. struct swrm_port_type {
  68. u8 port_type;
  69. u8 ch_mask;
  70. };
  71. struct swr_ctrl_platform_data {
  72. void *handle; /* holds priv data */
  73. int (*read)(void *handle, int reg);
  74. int (*write)(void *handle, int reg, int val);
  75. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  76. int (*clk)(void *handle, bool enable);
  77. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  78. void *data), void *swr_handle, int type);
  79. };
  80. struct swr_mstr_ctrl {
  81. struct swr_master master;
  82. struct device *dev;
  83. struct resource *supplies;
  84. struct clk *mclk;
  85. int clk_ref_count;
  86. struct completion reset;
  87. struct completion broadcast;
  88. struct mutex mlock;
  89. struct mutex reslock;
  90. u32 swrm_base_reg;
  91. char __iomem *swrm_dig_base;
  92. u8 rcmd_id;
  93. u8 wcmd_id;
  94. void *handle; /* SWR Master handle from client for read and writes */
  95. int (*read)(void *handle, int reg);
  96. int (*write)(void *handle, int reg, int val);
  97. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  98. int (*clk)(void *handle, bool enable);
  99. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  100. void *data), void *swr_handle, int type);
  101. int irq;
  102. int version;
  103. u32 num_dev;
  104. int slave_status;
  105. struct swrm_mports mport_cfg[SWR_MAX_MSTR_PORT_NUM];
  106. struct list_head port_req_list;
  107. int state;
  108. struct platform_device *pdev;
  109. int num_rx_chs;
  110. u8 num_cfg_devs;
  111. struct mutex force_down_lock;
  112. int force_down_state;
  113. u8 num_ports;
  114. struct swrm_port_type
  115. port_mapping[SWR_MSTR_PORT_LEN][SWR_MAX_CH_PER_PORT];
  116. int swr_irq;
  117. };
  118. #endif /* _SWR_WCD_CTRL_H */