swr-wcd-ctrl.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 SWR_MAX_SLAVE_DEVICES 11
  22. #define SWRM_VERSION_1_0 0x01010000
  23. #define SWRM_VERSION_1_2 0x01030000
  24. #define SWRM_VERSION_1_3 0x01040000
  25. enum {
  26. SWR_MSTR_PAUSE,
  27. SWR_MSTR_RESUME,
  28. SWR_MSTR_UP,
  29. SWR_MSTR_DOWN,
  30. SWR_MSTR_SSR,
  31. };
  32. enum {
  33. SWR_IRQ_FREE,
  34. SWR_IRQ_REGISTER,
  35. };
  36. enum {
  37. SWR_DAC_PORT,
  38. SWR_COMP_PORT,
  39. SWR_BOOST_PORT,
  40. SWR_VISENSE_PORT,
  41. };
  42. struct usecase {
  43. u8 num_port;
  44. u8 num_ch;
  45. u32 chrate;
  46. };
  47. struct port_params {
  48. u8 si;
  49. u8 off1;
  50. u8 off2;
  51. };
  52. struct swrm_mports {
  53. struct list_head list;
  54. u8 id;
  55. };
  56. struct swr_ctrl_platform_data {
  57. void *handle; /* holds priv data */
  58. int (*read)(void *handle, int reg);
  59. int (*write)(void *handle, int reg, int val);
  60. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  61. int (*clk)(void *handle, bool enable);
  62. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  63. void *data), void *swr_handle, int type);
  64. };
  65. struct swr_mstr_ctrl {
  66. struct swr_master master;
  67. struct device *dev;
  68. struct resource *supplies;
  69. struct clk *mclk;
  70. int clk_ref_count;
  71. struct completion reset;
  72. struct completion broadcast;
  73. struct mutex mlock;
  74. struct mutex reslock;
  75. u8 rcmd_id;
  76. u8 wcmd_id;
  77. void *handle; /* SWR Master handle from client for read and writes */
  78. int (*read)(void *handle, int reg);
  79. int (*write)(void *handle, int reg, int val);
  80. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  81. int (*clk)(void *handle, bool enable);
  82. int (*reg_irq)(void *handle, irqreturn_t(*irq_handler)(int irq,
  83. void *data), void *swr_handle, int type);
  84. int irq;
  85. int version;
  86. u32 num_dev;
  87. int num_enum_slaves;
  88. int slave_status;
  89. struct swr_mstr_port *mstr_port;
  90. struct list_head mport_list;
  91. int state;
  92. struct platform_device *pdev;
  93. int num_rx_chs;
  94. u8 num_cfg_devs;
  95. struct mutex force_down_lock;
  96. int force_down_state;
  97. };
  98. #endif /* _SWR_WCD_CTRL_H */