internal.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* Copyright (c) 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 _BOLERO_INTERNAL_H
  13. #define _BOLERO_INTERNAL_H
  14. #include "bolero-cdc-registers.h"
  15. #define BOLERO_CDC_CHILD_DEVICES_MAX 5
  16. /* from bolero to WCD events */
  17. enum {
  18. BOLERO_WCD_EVT_TX_CH_HOLD_CLEAR = 1,
  19. BOLERO_WCD_EVT_SSR_DOWN,
  20. BOLERO_WCD_EVT_SSR_UP,
  21. };
  22. enum {
  23. REG_NO_ACCESS,
  24. RD_REG,
  25. WR_REG,
  26. RD_WR_REG
  27. };
  28. /* from WCD to bolero events */
  29. enum {
  30. WCD_BOLERO_EVT_RX_MUTE = 1, /* for RX mute/unmute */
  31. WCD_BOLERO_EVT_IMPED_TRUE, /* for imped true */
  32. WCD_BOLERO_EVT_IMPED_FALSE, /* for imped false */
  33. };
  34. struct wcd_ctrl_platform_data {
  35. void *handle;
  36. int (*update_wcd_event)(void *handle, u16 event, u32 data);
  37. int (*register_notifier)(void *handle,
  38. struct notifier_block *nblock,
  39. bool enable);
  40. };
  41. struct bolero_priv {
  42. struct device *dev;
  43. struct snd_soc_codec *codec;
  44. struct regmap *regmap;
  45. struct mutex io_lock;
  46. struct mutex clk_lock;
  47. bool va_without_decimation;
  48. bool macros_supported[MAX_MACRO];
  49. bool dev_up;
  50. bool initial_boot;
  51. struct macro_ops macro_params[MAX_MACRO];
  52. struct snd_soc_dai_driver *bolero_dais;
  53. u16 num_dais;
  54. u16 num_macros_registered;
  55. u16 num_macros;
  56. u16 current_mclk_mux_macro[MAX_MACRO];
  57. struct work_struct bolero_add_child_devices_work;
  58. u32 version;
  59. struct clk *lpass_npa_rsc_island;
  60. /* Entry for version info */
  61. struct snd_info_entry *entry;
  62. struct snd_info_entry *version_entry;
  63. int (*read_dev)(struct bolero_priv *priv,
  64. u16 macro_id, u16 reg, u8 *val);
  65. int (*write_dev)(struct bolero_priv *priv,
  66. u16 macro_id, u16 reg, u8 val);
  67. struct platform_device *pdev_child_devices
  68. [BOLERO_CDC_CHILD_DEVICES_MAX];
  69. u16 child_count;
  70. struct wcd_ctrl_platform_data plat_data;
  71. struct device *wcd_dev;
  72. struct blocking_notifier_head notifier;
  73. };
  74. struct regmap *bolero_regmap_init(struct device *dev,
  75. const struct regmap_config *config);
  76. int bolero_get_macro_id(bool va_no_dec_flag, u16 reg);
  77. extern const struct regmap_config bolero_regmap_config;
  78. extern u8 *bolero_reg_access[MAX_MACRO];
  79. extern u8 bolero_va_top_reg_access[BOLERO_CDC_VA_MACRO_TOP_MAX];
  80. extern const u16 macro_id_base_offset[MAX_MACRO];
  81. #endif