internal.h 2.4 KB

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