swr-wcd-ctrl.h 2.5 KB

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