1*d2912cb1SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */ 2dfe0f98bSBrian Austin /* 3dfe0f98bSBrian Austin * cs42l52.h -- CS42L52 ALSA SoC audio driver 4dfe0f98bSBrian Austin * 5dfe0f98bSBrian Austin * Copyright 2012 CirrusLogic, Inc. 6dfe0f98bSBrian Austin * 7dfe0f98bSBrian Austin * Author: Georgi Vlaev <joe@nucleusys.com> 8dfe0f98bSBrian Austin * Author: Brian Austin <brian.austin@cirrus.com> 9dfe0f98bSBrian Austin */ 10dfe0f98bSBrian Austin 11dfe0f98bSBrian Austin #ifndef __CS42L52_H__ 12dfe0f98bSBrian Austin #define __CS42L52_H__ 13dfe0f98bSBrian Austin 14dfe0f98bSBrian Austin #define CS42L52_NAME "CS42L52" 15dfe0f98bSBrian Austin #define CS42L52_DEFAULT_CLK 12000000 16dfe0f98bSBrian Austin #define CS42L52_MIN_CLK 11000000 17dfe0f98bSBrian Austin #define CS42L52_MAX_CLK 27000000 18dfe0f98bSBrian Austin #define CS42L52_DEFAULT_FORMAT SNDRV_PCM_FMTBIT_S16_LE 19dfe0f98bSBrian Austin #define CS42L52_DEFAULT_MAX_CHANS 2 20dfe0f98bSBrian Austin #define CS42L52_SYSCLK 1 21dfe0f98bSBrian Austin 22dfe0f98bSBrian Austin #define CS42L52_CHIP_SWICTH (1 << 17) 23dfe0f98bSBrian Austin #define CS42L52_ALL_IN_ONE (1 << 16) 24dfe0f98bSBrian Austin #define CS42L52_CHIP_ONE 0x00 25dfe0f98bSBrian Austin #define CS42L52_CHIP_TWO 0x01 26dfe0f98bSBrian Austin #define CS42L52_CHIP_THR 0x02 27dfe0f98bSBrian Austin #define CS42L52_CHIP_MASK 0x0f 28dfe0f98bSBrian Austin 29dfe0f98bSBrian Austin #define CS42L52_FIX_BITS_CTL 0x00 30dfe0f98bSBrian Austin #define CS42L52_CHIP 0x01 31dfe0f98bSBrian Austin #define CS42L52_CHIP_ID 0xE0 32dfe0f98bSBrian Austin #define CS42L52_CHIP_ID_MASK 0xF8 33dfe0f98bSBrian Austin #define CS42L52_CHIP_REV_A0 0x00 34dfe0f98bSBrian Austin #define CS42L52_CHIP_REV_A1 0x01 35dfe0f98bSBrian Austin #define CS42L52_CHIP_REV_B0 0x02 36a14bf887SAxel Lin #define CS42L52_CHIP_REV_MASK 0x07 37dfe0f98bSBrian Austin 38dfe0f98bSBrian Austin #define CS42L52_PWRCTL1 0x02 39dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_ALL 0x9F 40dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_CHRG 0x80 41dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_PGAB 0x10 42dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_PGAA 0x08 43dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_ADCB 0x04 44dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_ADCA 0x02 45dfe0f98bSBrian Austin #define CS42L52_PWRCTL1_PDN_CODEC 0x01 46dfe0f98bSBrian Austin 47dfe0f98bSBrian Austin #define CS42L52_PWRCTL2 0x03 48dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_OVRDB (1 << 4) 49dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_OVRDA (1 << 3) 50dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICB (1 << 2) 51dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICB_SHIFT 2 52dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICA (1 << 1) 53dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICA_SHIFT 1 54dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICBIAS (1 << 0) 55dfe0f98bSBrian Austin #define CS42L52_PWRCTL2_PDN_MICBIAS_SHIFT 0 56dfe0f98bSBrian Austin 57dfe0f98bSBrian Austin #define CS42L52_PWRCTL3 0x04 58dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPB_PDN_SHIFT 6 59dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPB_ON_LOW 0x00 60dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPB_ON_HIGH 0x01 61dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPB_ALWAYS_ON 0x02 62dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPB_ALWAYS_OFF 0x03 63dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPA_PDN_SHIFT 4 64dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPA_ON_LOW 0x00 65dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPA_ON_HIGH 0x01 66dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPA_ALWAYS_ON 0x02 67dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_HPA_ALWAYS_OFF 0x03 68dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKB_PDN_SHIFT 2 69dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKB_ON_LOW 0x00 70dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKB_ON_HIGH 0x01 71dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKB_ALWAYS_ON 0x02 72dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_PDN_SPKB (1 << 2) 73dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_PDN_SPKA (1 << 0) 74dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKA_PDN_SHIFT 0 75dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKA_ON_LOW 0x00 76dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKA_ON_HIGH 0x01 77dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_SPKA_ALWAYS_ON 0x02 78dfe0f98bSBrian Austin 79dfe0f98bSBrian Austin #define CS42L52_DEFAULT_OUTPUT_STATE 0x05 80dfe0f98bSBrian Austin #define CS42L52_PWRCTL3_CONF_MASK 0x03 81dfe0f98bSBrian Austin 82dfe0f98bSBrian Austin #define CS42L52_CLK_CTL 0x05 83dfe0f98bSBrian Austin #define CLK_AUTODECT_ENABLE (1 << 7) 84dfe0f98bSBrian Austin #define CLK_SPEED_SHIFT 5 85dfe0f98bSBrian Austin #define CLK_DS_MODE 0x00 86dfe0f98bSBrian Austin #define CLK_SS_MODE 0x01 87dfe0f98bSBrian Austin #define CLK_HS_MODE 0x02 88dfe0f98bSBrian Austin #define CLK_QS_MODE 0x03 89dfe0f98bSBrian Austin #define CLK_32K_SR_SHIFT 4 90dfe0f98bSBrian Austin #define CLK_32K 0x01 91dfe0f98bSBrian Austin #define CLK_NO_32K 0x00 92dfe0f98bSBrian Austin #define CLK_27M_MCLK_SHIFT 3 93dfe0f98bSBrian Austin #define CLK_27M_MCLK 0x01 94dfe0f98bSBrian Austin #define CLK_NO_27M 0x00 95dfe0f98bSBrian Austin #define CLK_RATIO_SHIFT 1 96dfe0f98bSBrian Austin #define CLK_R_128 0x00 97dfe0f98bSBrian Austin #define CLK_R_125 0x01 98dfe0f98bSBrian Austin #define CLK_R_132 0x02 99dfe0f98bSBrian Austin #define CLK_R_136 0x03 100dfe0f98bSBrian Austin 101dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1 0x06 102dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_MASTER (1 << 7) 103dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_SLAVE (0 << 7) 104dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_INV_SCLK (1 << 6) 105dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_ADC_FMT_I2S (1 << 5) 106dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_ADC_FMT_LEFT_J (0 << 5) 107dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_DSP_MODE_EN (1 << 4) 108dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_DAC_FMT_LEFT_J (0 << 2) 109dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_DAC_FMT_I2S (1 << 2) 110dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_DAC_FMT_RIGHT_J (2 << 2) 111dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_WL_32BIT (0x00) 112dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_WL_24BIT (0x01) 113dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_WL_20BIT (0x02) 114dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_WL_16BIT (0x03) 115dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL1_WL_MASK 0xFFFF 116dfe0f98bSBrian Austin 117dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2 0x07 118dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_SC_MC_EQ (1 << 6) 119dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_LOOPBACK (1 << 5) 120dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_S_MODE_OUTPUT_EN (0 << 4) 121dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_S_MODE_OUTPUT_HIZ (1 << 4) 122dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_HP_SW_INV (1 << 3) 123dfe0f98bSBrian Austin #define CS42L52_IFACE_CTL2_BIAS_LVL 0x07 124dfe0f98bSBrian Austin 125dfe0f98bSBrian Austin #define CS42L52_ADC_PGA_A 0x08 126dfe0f98bSBrian Austin #define CS42L52_ADC_PGA_B 0x09 127dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_SHIFT 5 128dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_AIN1 0x00 129dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_AIN2 0x01 130dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_AIN3 0x02 131dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_AIN4 0x03 132dfe0f98bSBrian Austin #define CS42L52_ADC_SEL_PGA 0x04 133dfe0f98bSBrian Austin 134dfe0f98bSBrian Austin #define CS42L52_ANALOG_HPF_CTL 0x0A 135dfe0f98bSBrian Austin #define CS42L52_HPF_CTL_ANLGSFTB (1 << 3) 136dfe0f98bSBrian Austin #define CS42L52_HPF_CTL_ANLGSFTA (1 << 0) 137dfe0f98bSBrian Austin 138dfe0f98bSBrian Austin #define CS42L52_ADC_HPF_FREQ 0x0B 139dfe0f98bSBrian Austin #define CS42L52_ADC_MISC_CTL 0x0C 140dfe0f98bSBrian Austin #define CS42L52_ADC_MISC_CTL_SOURCE_DSP (1 << 6) 141dfe0f98bSBrian Austin 142dfe0f98bSBrian Austin #define CS42L52_PB_CTL1 0x0D 143dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_SHIFT 5 144dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_03959 0x00 145dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_04571 0x01 146dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_05111 0x02 147dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_06047 0x03 148dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_07099 0x04 149dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_08399 0x05 150dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_10000 0x06 151dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_HP_GAIN_11430 0x07 152dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_INV_PCMB (1 << 3) 153dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_INV_PCMA (1 << 2) 154dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_MSTB_MUTE (1 << 1) 155dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_MSTA_MUTE (1 << 0) 15640e2516aSNicolas Schichan #define CS42L52_PB_CTL1_MUTE_MASK 0x03 157dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_MUTE 3 158dfe0f98bSBrian Austin #define CS42L52_PB_CTL1_UNMUTE 0 159dfe0f98bSBrian Austin 160dfe0f98bSBrian Austin #define CS42L52_MISC_CTL 0x0E 161dfe0f98bSBrian Austin #define CS42L52_MISC_CTL_DEEMPH (1 << 2) 162dfe0f98bSBrian Austin #define CS42L52_MISC_CTL_DIGSFT (1 << 1) 163dfe0f98bSBrian Austin #define CS42L52_MISC_CTL_DIGZC (1 << 0) 164dfe0f98bSBrian Austin 165dfe0f98bSBrian Austin #define CS42L52_PB_CTL2 0x0F 166dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_HPB_MUTE (1 << 7) 167dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_HPA_MUTE (1 << 6) 168dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_SPKB_MUTE (1 << 5) 169dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_SPKA_MUTE (1 << 4) 170dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_SPK_SWAP (1 << 2) 171dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_SPK_MONO (1 << 1) 172dfe0f98bSBrian Austin #define CS42L52_PB_CTL2_SPK_MUTE50 (1 << 0) 173dfe0f98bSBrian Austin 174dfe0f98bSBrian Austin #define CS42L52_MICA_CTL 0x10 175dfe0f98bSBrian Austin #define CS42L52_MICB_CTL 0x11 176dfe0f98bSBrian Austin #define CS42L52_MIC_CTL_MIC_SEL_MASK 0xBF 177dfe0f98bSBrian Austin #define CS42L52_MIC_CTL_MIC_SEL_SHIFT 6 1783d800c6dSBrian Austin #define CS42L52_MIC_CTL_TYPE_MASK 0x20 179dfe0f98bSBrian Austin #define CS42L52_MIC_CTL_TYPE_SHIFT 5 180dfe0f98bSBrian Austin 181dfe0f98bSBrian Austin 182dfe0f98bSBrian Austin #define CS42L52_PGAA_CTL 0x12 183dfe0f98bSBrian Austin #define CS42L52_PGAB_CTL 0x13 184dfe0f98bSBrian Austin #define CS42L52_PGAX_CTL_VOL_12DB 24 185dfe0f98bSBrian Austin #define CS42L52_PGAX_CTL_VOL_6DB 12 /*step size 0.5db*/ 186dfe0f98bSBrian Austin 187dfe0f98bSBrian Austin #define CS42L52_PASSTHRUA_VOL 0x14 188dfe0f98bSBrian Austin #define CS42L52_PASSTHRUB_VOL 0x15 189dfe0f98bSBrian Austin 190dfe0f98bSBrian Austin #define CS42L52_ADCA_VOL 0x16 191dfe0f98bSBrian Austin #define CS42L52_ADCB_VOL 0x17 192dfe0f98bSBrian Austin #define CS42L52_ADCX_VOL_24DB 24 /*step size 1db*/ 193dfe0f98bSBrian Austin #define CS42L52_ADCX_VOL_12DB 12 194dfe0f98bSBrian Austin #define CS42L52_ADCX_VOL_6DB 6 195dfe0f98bSBrian Austin 196dfe0f98bSBrian Austin #define CS42L52_ADCA_MIXER_VOL 0x18 197dfe0f98bSBrian Austin #define CS42L52_ADCB_MIXER_VOL 0x19 198dfe0f98bSBrian Austin #define CS42L52_ADC_MIXER_VOL_12DB 0x18 199dfe0f98bSBrian Austin 200dfe0f98bSBrian Austin #define CS42L52_PCMA_MIXER_VOL 0x1A 201dfe0f98bSBrian Austin #define CS42L52_PCMB_MIXER_VOL 0x1B 202dfe0f98bSBrian Austin 203dfe0f98bSBrian Austin #define CS42L52_BEEP_FREQ 0x1C 204dfe0f98bSBrian Austin #define CS42L52_BEEP_VOL 0x1D 205dfe0f98bSBrian Austin #define CS42L52_BEEP_TONE_CTL 0x1E 206dfe0f98bSBrian Austin #define CS42L52_BEEP_RATE_SHIFT 4 207dfe0f98bSBrian Austin #define CS42L52_BEEP_RATE_MASK 0x0F 208dfe0f98bSBrian Austin 209dfe0f98bSBrian Austin #define CS42L52_TONE_CTL 0x1F 210dfe0f98bSBrian Austin #define CS42L52_BEEP_EN_MASK 0x3F 211dfe0f98bSBrian Austin 212dfe0f98bSBrian Austin #define CS42L52_MASTERA_VOL 0x20 213dfe0f98bSBrian Austin #define CS42L52_MASTERB_VOL 0x21 214dfe0f98bSBrian Austin 215dfe0f98bSBrian Austin #define CS42L52_HPA_VOL 0x22 216dfe0f98bSBrian Austin #define CS42L52_HPB_VOL 0x23 217dfe0f98bSBrian Austin #define CS42L52_DEFAULT_HP_VOL 0xF0 218dfe0f98bSBrian Austin 219dfe0f98bSBrian Austin #define CS42L52_SPKA_VOL 0x24 220dfe0f98bSBrian Austin #define CS42L52_SPKB_VOL 0x25 221dfe0f98bSBrian Austin #define CS42L52_DEFAULT_SPK_VOL 0xF0 222dfe0f98bSBrian Austin 223dfe0f98bSBrian Austin #define CS42L52_ADC_PCM_MIXER 0x26 224dfe0f98bSBrian Austin 225dfe0f98bSBrian Austin #define CS42L52_LIMITER_CTL1 0x27 226dfe0f98bSBrian Austin #define CS42L52_LIMITER_CTL2 0x28 227dfe0f98bSBrian Austin #define CS42L52_LIMITER_AT_RATE 0x29 228dfe0f98bSBrian Austin 229dfe0f98bSBrian Austin #define CS42L52_ALC_CTL 0x2A 230dfe0f98bSBrian Austin #define CS42L52_ALC_CTL_ALCB_ENABLE_SHIFT 7 231dfe0f98bSBrian Austin #define CS42L52_ALC_CTL_ALCA_ENABLE_SHIFT 6 232dfe0f98bSBrian Austin #define CS42L52_ALC_CTL_FASTEST_ATTACK 0 233dfe0f98bSBrian Austin 234dfe0f98bSBrian Austin #define CS42L52_ALC_RATE 0x2B 235dfe0f98bSBrian Austin #define CS42L52_ALC_SLOWEST_RELEASE 0x3F 236dfe0f98bSBrian Austin 237dfe0f98bSBrian Austin #define CS42L52_ALC_THRESHOLD 0x2C 238dfe0f98bSBrian Austin #define CS42L52_ALC_MAX_RATE_SHIFT 5 239dfe0f98bSBrian Austin #define CS42L52_ALC_MIN_RATE_SHIFT 2 240dfe0f98bSBrian Austin #define CS42L52_ALC_RATE_0DB 0 241dfe0f98bSBrian Austin #define CS42L52_ALC_RATE_3DB 1 242dfe0f98bSBrian Austin #define CS42L52_ALC_RATE_6DB 2 243dfe0f98bSBrian Austin 244dfe0f98bSBrian Austin #define CS42L52_NOISE_GATE_CTL 0x2D 245dfe0f98bSBrian Austin #define CS42L52_NG_ENABLE_SHIFT 6 246dfe0f98bSBrian Austin #define CS42L52_NG_THRESHOLD_SHIFT 2 247dfe0f98bSBrian Austin #define CS42L52_NG_MIN_70DB 2 248dfe0f98bSBrian Austin #define CS42L52_NG_DELAY_SHIFT 0 249dfe0f98bSBrian Austin #define CS42L52_NG_DELAY_100MS 1 250dfe0f98bSBrian Austin 251dfe0f98bSBrian Austin #define CS42L52_CLK_STATUS 0x2E 252dfe0f98bSBrian Austin #define CS42L52_BATT_COMPEN 0x2F 253dfe0f98bSBrian Austin 254dfe0f98bSBrian Austin #define CS42L52_BATT_LEVEL 0x30 255dfe0f98bSBrian Austin #define CS42L52_SPK_STATUS 0x31 256dfe0f98bSBrian Austin #define CS42L52_SPK_STATUS_PIN_SHIFT 3 257dfe0f98bSBrian Austin #define CS42L52_SPK_STATUS_PIN_HIGH 1 258dfe0f98bSBrian Austin 259dfe0f98bSBrian Austin #define CS42L52_TEM_CTL 0x32 260dfe0f98bSBrian Austin #define CS42L52_TEM_CTL_SET 0x80 261dfe0f98bSBrian Austin #define CS42L52_THE_FOLDBACK 0x33 262dfe0f98bSBrian Austin #define CS42L52_CHARGE_PUMP 0x34 263dfe0f98bSBrian Austin #define CS42L52_CHARGE_PUMP_MASK 0xF0 264dfe0f98bSBrian Austin #define CS42L52_CHARGE_PUMP_SHIFT 4 265dfe0f98bSBrian Austin #define CS42L52_FIX_BITS1 0x3E 266dfe0f98bSBrian Austin #define CS42L52_FIX_BITS2 0x47 267dfe0f98bSBrian Austin 268aab554edSBrian Austin #define CS42L52_MAX_REGISTER 0x47 269dfe0f98bSBrian Austin 270dfe0f98bSBrian Austin #endif 271