internal.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef WSA883X_INTERNAL_H
  6. #define WSA883X_INTERNAL_H
  7. #include <asoc/wcd-irq.h>
  8. #include "wsa883x.h"
  9. #include "wsa883x-registers.h"
  10. #ifdef CONFIG_DEBUG_FS
  11. #include <linux/debugfs.h>
  12. #include <linux/uaccess.h>
  13. #define SWR_SLV_MAX_REG_ADDR 0x2009
  14. #define SWR_SLV_START_REG_ADDR 0x40
  15. #define SWR_SLV_MAX_BUF_LEN 20
  16. #define BYTES_PER_LINE 12
  17. #define SWR_SLV_RD_BUF_LEN 8
  18. #define SWR_SLV_WR_BUF_LEN 32
  19. #define SWR_SLV_MAX_DEVICES 2
  20. #endif /* CONFIG_DEBUG_FS */
  21. #define WSA883X_DRV_NAME "wsa883x-codec"
  22. #define WSA883X_NUM_RETRY 5
  23. #define WSA883X_VERSION_ENTRY_SIZE 32
  24. #define WSA883X_VARIANT_ENTRY_SIZE 32
  25. #define WSA883X_VERSION_1_0 0
  26. #define WSA883X_VERSION_1_1 1
  27. enum {
  28. G_18DB = 0,
  29. G_16P5DB,
  30. G_15DB,
  31. G_13P5DB,
  32. G_12DB,
  33. G_10P5DB,
  34. G_9DB,
  35. G_7P5DB,
  36. G_6DB,
  37. G_4P5DB,
  38. G_3DB,
  39. G_1P5DB,
  40. G_0DB,
  41. };
  42. enum {
  43. DISABLE = 0,
  44. ENABLE,
  45. };
  46. enum {
  47. SWR_DAC_PORT,
  48. SWR_COMP_PORT,
  49. SWR_BOOST_PORT,
  50. SWR_VISENSE_PORT,
  51. };
  52. struct wsa_ctrl_platform_data {
  53. void *handle;
  54. int (*update_wsa_event)(void *handle, u16 event, u32 data);
  55. int (*register_notifier)(void *handle, struct notifier_block *nblock,
  56. bool enable);
  57. };
  58. struct swr_port {
  59. u8 port_id;
  60. u8 ch_mask;
  61. u32 ch_rate;
  62. u8 num_ch;
  63. u8 port_type;
  64. };
  65. extern struct regmap_config wsa883x_regmap_config;
  66. /*
  67. * Private data Structure for wsa883x. All parameters related to
  68. * WSA883X codec needs to be defined here.
  69. */
  70. struct wsa883x_priv {
  71. struct regmap *regmap;
  72. struct device *dev;
  73. struct swr_device *swr_slave;
  74. struct snd_soc_component *component;
  75. bool comp_enable;
  76. bool visense_enable;
  77. bool ext_vdd_spk;
  78. bool dapm_bias_off;
  79. struct swr_port port[WSA883X_MAX_SWR_PORTS];
  80. int global_pa_cnt;
  81. int dev_mode;
  82. struct mutex res_lock;
  83. struct snd_info_entry *entry;
  84. struct snd_info_entry *version_entry;
  85. struct snd_info_entry *variant_entry;
  86. struct device_node *wsa_rst_np;
  87. int pa_mute;
  88. int curr_temp;
  89. int variant;
  90. int version;
  91. u8 pa_gain;
  92. struct irq_domain *virq;
  93. struct wcd_irq_info irq_info;
  94. #ifdef CONFIG_DEBUG_FS
  95. struct dentry *debugfs_dent;
  96. struct dentry *debugfs_peek;
  97. struct dentry *debugfs_poke;
  98. struct dentry *debugfs_reg_dump;
  99. unsigned int read_data;
  100. #endif
  101. struct device_node *parent_np;
  102. struct platform_device *parent_dev;
  103. struct notifier_block parent_nblock;
  104. void *handle;
  105. int (*register_notifier)(void *handle,
  106. struct notifier_block *nblock, bool enable);
  107. struct cdc_regulator *regulator;
  108. int num_supplies;
  109. struct regulator_bulk_data *supplies;
  110. unsigned long status_mask;
  111. char *wsa883x_name_prefix;
  112. struct snd_soc_dai_driver *dai_driver;
  113. struct snd_soc_component_driver *driver;
  114. };
  115. #endif /* WSA883X_INTERNAL_H */