wm2000.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * wm2000.h -- WM2000 Soc Audio driver
  4. */
  5. #ifndef _WM2000_H
  6. #define _WM2000_H
  7. #define WM2000_REG_SYS_START 0x8000
  8. #define WM2000_REG_ANC_GAIN_CTRL 0x8fa2
  9. #define WM2000_REG_MSE_TH2 0x8fdf
  10. #define WM2000_REG_MSE_TH1 0x8fe0
  11. #define WM2000_REG_SPEECH_CLARITY 0x8fef
  12. #define WM2000_REG_SYS_WATCHDOG 0x8ff6
  13. #define WM2000_REG_ANA_VMID_PD_TIME 0x8ff7
  14. #define WM2000_REG_ANA_VMID_PU_TIME 0x8ff8
  15. #define WM2000_REG_CAT_FLTR_INDX 0x8ff9
  16. #define WM2000_REG_CAT_GAIN_0 0x8ffa
  17. #define WM2000_REG_SYS_STATUS 0x8ffc
  18. #define WM2000_REG_SYS_MODE_CNTRL 0x8ffd
  19. #define WM2000_REG_SYS_START0 0x8ffe
  20. #define WM2000_REG_SYS_START1 0x8fff
  21. #define WM2000_REG_ID1 0xf000
  22. #define WM2000_REG_ID2 0xf001
  23. #define WM2000_REG_REVISON 0xf002
  24. #define WM2000_REG_SYS_CTL1 0xf003
  25. #define WM2000_REG_SYS_CTL2 0xf004
  26. #define WM2000_REG_ANC_STAT 0xf005
  27. #define WM2000_REG_IF_CTL 0xf006
  28. #define WM2000_REG_ANA_MIC_CTL 0xf028
  29. #define WM2000_REG_SPK_CTL 0xf034
  30. /* SPEECH_CLARITY */
  31. #define WM2000_SPEECH_CLARITY 0x01
  32. /* SYS_STATUS */
  33. #define WM2000_STATUS_MOUSE_ACTIVE 0x40
  34. #define WM2000_STATUS_CAT_FREQ_COMPLETE 0x20
  35. #define WM2000_STATUS_CAT_GAIN_COMPLETE 0x10
  36. #define WM2000_STATUS_THERMAL_SHUTDOWN_COMPLETE 0x08
  37. #define WM2000_STATUS_ANC_DISABLED 0x04
  38. #define WM2000_STATUS_POWER_DOWN_COMPLETE 0x02
  39. #define WM2000_STATUS_BOOT_COMPLETE 0x01
  40. /* SYS_MODE_CNTRL */
  41. #define WM2000_MODE_ANA_SEQ_INCLUDE 0x80
  42. #define WM2000_MODE_MOUSE_ENABLE 0x40
  43. #define WM2000_MODE_CAT_FREQ_ENABLE 0x20
  44. #define WM2000_MODE_CAT_GAIN_ENABLE 0x10
  45. #define WM2000_MODE_BYPASS_ENTRY 0x08
  46. #define WM2000_MODE_STANDBY_ENTRY 0x04
  47. #define WM2000_MODE_THERMAL_ENABLE 0x02
  48. #define WM2000_MODE_POWER_DOWN 0x01
  49. /* SYS_CTL1 */
  50. #define WM2000_SYS_STBY 0x01
  51. /* SYS_CTL2 */
  52. #define WM2000_MCLK_DIV2_ENA_CLR 0x80
  53. #define WM2000_MCLK_DIV2_ENA_SET 0x40
  54. #define WM2000_ANC_ENG_CLR 0x20
  55. #define WM2000_ANC_ENG_SET 0x10
  56. #define WM2000_ANC_INT_N_CLR 0x08
  57. #define WM2000_ANC_INT_N_SET 0x04
  58. #define WM2000_RAM_CLR 0x02
  59. #define WM2000_RAM_SET 0x01
  60. /* ANC_STAT */
  61. #define WM2000_ANC_ENG_IDLE 0x01
  62. #endif