Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * wm2000.h  --  WM2000 Soc Audio driver
0004  */
0005 
0006 #ifndef _WM2000_H
0007 #define _WM2000_H
0008 
0009 #define WM2000_REG_SYS_START        0x8000
0010 #define WM2000_REG_ANC_GAIN_CTRL    0x8fa2
0011 #define WM2000_REG_MSE_TH2          0x8fdf
0012 #define WM2000_REG_MSE_TH1          0x8fe0
0013 #define WM2000_REG_SPEECH_CLARITY   0x8fef
0014 #define WM2000_REG_SYS_WATCHDOG     0x8ff6
0015 #define WM2000_REG_ANA_VMID_PD_TIME 0x8ff7
0016 #define WM2000_REG_ANA_VMID_PU_TIME 0x8ff8
0017 #define WM2000_REG_CAT_FLTR_INDX    0x8ff9
0018 #define WM2000_REG_CAT_GAIN_0       0x8ffa
0019 #define WM2000_REG_SYS_STATUS       0x8ffc
0020 #define WM2000_REG_SYS_MODE_CNTRL   0x8ffd
0021 #define WM2000_REG_SYS_START0       0x8ffe
0022 #define WM2000_REG_SYS_START1       0x8fff
0023 #define WM2000_REG_ID1              0xf000
0024 #define WM2000_REG_ID2              0xf001
0025 #define WM2000_REG_REVISON          0xf002
0026 #define WM2000_REG_SYS_CTL1         0xf003
0027 #define WM2000_REG_SYS_CTL2         0xf004
0028 #define WM2000_REG_ANC_STAT         0xf005
0029 #define WM2000_REG_IF_CTL           0xf006
0030 #define WM2000_REG_ANA_MIC_CTL      0xf028
0031 #define WM2000_REG_SPK_CTL          0xf034
0032 
0033 /* SPEECH_CLARITY */
0034 #define WM2000_SPEECH_CLARITY   0x01
0035 
0036 /* SYS_STATUS */
0037 #define WM2000_STATUS_MOUSE_ACTIVE              0x40
0038 #define WM2000_STATUS_CAT_FREQ_COMPLETE         0x20
0039 #define WM2000_STATUS_CAT_GAIN_COMPLETE         0x10
0040 #define WM2000_STATUS_THERMAL_SHUTDOWN_COMPLETE 0x08
0041 #define WM2000_STATUS_ANC_DISABLED              0x04
0042 #define WM2000_STATUS_POWER_DOWN_COMPLETE       0x02
0043 #define WM2000_STATUS_BOOT_COMPLETE             0x01
0044 
0045 /* SYS_MODE_CNTRL */
0046 #define WM2000_MODE_ANA_SEQ_INCLUDE 0x80
0047 #define WM2000_MODE_MOUSE_ENABLE    0x40
0048 #define WM2000_MODE_CAT_FREQ_ENABLE 0x20
0049 #define WM2000_MODE_CAT_GAIN_ENABLE 0x10
0050 #define WM2000_MODE_BYPASS_ENTRY    0x08
0051 #define WM2000_MODE_STANDBY_ENTRY   0x04
0052 #define WM2000_MODE_THERMAL_ENABLE  0x02
0053 #define WM2000_MODE_POWER_DOWN      0x01
0054 
0055 /* SYS_CTL1 */
0056 #define WM2000_SYS_STBY          0x01
0057 
0058 /* SYS_CTL2 */
0059 #define WM2000_MCLK_DIV2_ENA_CLR 0x80
0060 #define WM2000_MCLK_DIV2_ENA_SET 0x40
0061 #define WM2000_ANC_ENG_CLR       0x20
0062 #define WM2000_ANC_ENG_SET       0x10
0063 #define WM2000_ANC_INT_N_CLR     0x08
0064 #define WM2000_ANC_INT_N_SET     0x04
0065 #define WM2000_RAM_CLR           0x02
0066 #define WM2000_RAM_SET           0x01
0067 
0068 /* ANC_STAT */
0069 #define WM2000_ANC_ENG_IDLE      0x01
0070 
0071 #endif