brintos

brintos / linux-shallow public Read only

0
0
Text · 2.3 KiB · 6d3241d Raw
72 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * wm2000.h  --  WM2000 Soc Audio driver4 */5 6#ifndef _WM2000_H7#define _WM2000_H8 9#define WM2000_REG_SYS_START	    0x800010#define WM2000_REG_ANC_GAIN_CTRL    0x8fa211#define WM2000_REG_MSE_TH2          0x8fdf12#define WM2000_REG_MSE_TH1          0x8fe013#define WM2000_REG_SPEECH_CLARITY   0x8fef14#define WM2000_REG_SYS_WATCHDOG     0x8ff615#define WM2000_REG_ANA_VMID_PD_TIME 0x8ff716#define WM2000_REG_ANA_VMID_PU_TIME 0x8ff817#define WM2000_REG_CAT_FLTR_INDX    0x8ff918#define WM2000_REG_CAT_GAIN_0       0x8ffa19#define WM2000_REG_SYS_STATUS       0x8ffc20#define WM2000_REG_SYS_MODE_CNTRL   0x8ffd21#define WM2000_REG_SYS_START0       0x8ffe22#define WM2000_REG_SYS_START1       0x8fff23#define WM2000_REG_ID1              0xf00024#define WM2000_REG_ID2              0xf00125#define WM2000_REG_REVISON          0xf00226#define WM2000_REG_SYS_CTL1         0xf00327#define WM2000_REG_SYS_CTL2         0xf00428#define WM2000_REG_ANC_STAT         0xf00529#define WM2000_REG_IF_CTL           0xf00630#define WM2000_REG_ANA_MIC_CTL      0xf02831#define WM2000_REG_SPK_CTL          0xf03432 33/* SPEECH_CLARITY */34#define WM2000_SPEECH_CLARITY   0x0135 36/* SYS_STATUS */37#define WM2000_STATUS_MOUSE_ACTIVE              0x4038#define WM2000_STATUS_CAT_FREQ_COMPLETE         0x2039#define WM2000_STATUS_CAT_GAIN_COMPLETE         0x1040#define WM2000_STATUS_THERMAL_SHUTDOWN_COMPLETE 0x0841#define WM2000_STATUS_ANC_DISABLED              0x0442#define WM2000_STATUS_POWER_DOWN_COMPLETE       0x0243#define WM2000_STATUS_BOOT_COMPLETE             0x0144 45/* SYS_MODE_CNTRL */46#define WM2000_MODE_ANA_SEQ_INCLUDE 0x8047#define WM2000_MODE_MOUSE_ENABLE    0x4048#define WM2000_MODE_CAT_FREQ_ENABLE 0x2049#define WM2000_MODE_CAT_GAIN_ENABLE 0x1050#define WM2000_MODE_BYPASS_ENTRY    0x0851#define WM2000_MODE_STANDBY_ENTRY   0x0452#define WM2000_MODE_THERMAL_ENABLE  0x0253#define WM2000_MODE_POWER_DOWN      0x0154 55/* SYS_CTL1 */56#define WM2000_SYS_STBY          0x0157 58/* SYS_CTL2 */59#define WM2000_MCLK_DIV2_ENA_CLR 0x8060#define WM2000_MCLK_DIV2_ENA_SET 0x4061#define WM2000_ANC_ENG_CLR       0x2062#define WM2000_ANC_ENG_SET       0x1063#define WM2000_ANC_INT_N_CLR     0x0864#define WM2000_ANC_INT_N_SET     0x0465#define WM2000_RAM_CLR           0x0266#define WM2000_RAM_SET           0x0167 68/* ANC_STAT */69#define WM2000_ANC_ENG_IDLE      0x0170 71#endif72