162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
262306a36Sopenharmony_ci/*
362306a36Sopenharmony_ci * cs42l51.h
462306a36Sopenharmony_ci *
562306a36Sopenharmony_ci * ASoC Driver for Cirrus Logic CS42L51 codecs
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci * Copyright (c) 2010 Arnaud Patard <apatard@mandriva.com>
862306a36Sopenharmony_ci */
962306a36Sopenharmony_ci#ifndef _CS42L51_H
1062306a36Sopenharmony_ci#define _CS42L51_H
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_cistruct device;
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_ciextern const struct regmap_config cs42l51_regmap;
1562306a36Sopenharmony_ciint cs42l51_probe(struct device *dev, struct regmap *regmap);
1662306a36Sopenharmony_civoid cs42l51_remove(struct device *dev);
1762306a36Sopenharmony_ciint __maybe_unused cs42l51_suspend(struct device *dev);
1862306a36Sopenharmony_ciint __maybe_unused cs42l51_resume(struct device *dev);
1962306a36Sopenharmony_ci
2062306a36Sopenharmony_ci#define CS42L51_CHIP_ID			0x1B
2162306a36Sopenharmony_ci#define CS42L51_CHIP_REV_A		0x00
2262306a36Sopenharmony_ci#define CS42L51_CHIP_REV_B		0x01
2362306a36Sopenharmony_ci#define CS42L51_CHIP_REV_MASK		0x07
2462306a36Sopenharmony_ci
2562306a36Sopenharmony_ci#define CS42L51_CHIP_REV_ID		0x01
2662306a36Sopenharmony_ci#define CS42L51_MK_CHIP_REV(a, b)	((a)<<3|(b))
2762306a36Sopenharmony_ci
2862306a36Sopenharmony_ci#define CS42L51_POWER_CTL1		0x02
2962306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_DACB	(1<<6)
3062306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_DACA	(1<<5)
3162306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_PGAB	(1<<4)
3262306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_PGAA	(1<<3)
3362306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_ADCB	(1<<2)
3462306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN_ADCA	(1<<1)
3562306a36Sopenharmony_ci#define CS42L51_POWER_CTL1_PDN		(1<<0)
3662306a36Sopenharmony_ci
3762306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL		0x03
3862306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_AUTO	(1<<7)
3962306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_SPEED(x)	(((x)&3)<<5)
4062306a36Sopenharmony_ci#define CS42L51_QSM_MODE		3
4162306a36Sopenharmony_ci#define CS42L51_HSM_MODE		2
4262306a36Sopenharmony_ci#define	CS42L51_SSM_MODE		1
4362306a36Sopenharmony_ci#define CS42L51_DSM_MODE		0
4462306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_3ST_SP	(1<<4)
4562306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_PDN_MICB	(1<<3)
4662306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_PDN_MICA	(1<<2)
4762306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_PDN_BIAS	(1<<1)
4862306a36Sopenharmony_ci#define CS42L51_MIC_POWER_CTL_MCLK_DIV2	(1<<0)
4962306a36Sopenharmony_ci
5062306a36Sopenharmony_ci#define CS42L51_INTF_CTL		0x04
5162306a36Sopenharmony_ci#define CS42L51_INTF_CTL_LOOPBACK	(1<<7)
5262306a36Sopenharmony_ci#define CS42L51_INTF_CTL_MASTER		(1<<6)
5362306a36Sopenharmony_ci#define CS42L51_INTF_CTL_DAC_FORMAT(x)	(((x)&7)<<3)
5462306a36Sopenharmony_ci#define CS42L51_DAC_DIF_LJ24		0x00
5562306a36Sopenharmony_ci#define CS42L51_DAC_DIF_I2S		0x01
5662306a36Sopenharmony_ci#define CS42L51_DAC_DIF_RJ24		0x02
5762306a36Sopenharmony_ci#define CS42L51_DAC_DIF_RJ20		0x03
5862306a36Sopenharmony_ci#define CS42L51_DAC_DIF_RJ18		0x04
5962306a36Sopenharmony_ci#define CS42L51_DAC_DIF_RJ16		0x05
6062306a36Sopenharmony_ci#define CS42L51_INTF_CTL_ADC_I2S	(1<<2)
6162306a36Sopenharmony_ci#define CS42L51_INTF_CTL_DIGMIX		(1<<1)
6262306a36Sopenharmony_ci#define CS42L51_INTF_CTL_MICMIX		(1<<0)
6362306a36Sopenharmony_ci
6462306a36Sopenharmony_ci#define CS42L51_MIC_CTL			0x05
6562306a36Sopenharmony_ci#define CS42L51_MIC_CTL_ADC_SNGVOL	(1<<7)
6662306a36Sopenharmony_ci#define CS42L51_MIC_CTL_ADCD_DBOOST	(1<<6)
6762306a36Sopenharmony_ci#define CS42L51_MIC_CTL_ADCA_DBOOST	(1<<5)
6862306a36Sopenharmony_ci#define CS42L51_MIC_CTL_MICBIAS_SEL	(1<<4)
6962306a36Sopenharmony_ci#define CS42L51_MIC_CTL_MICBIAS_LVL(x)	(((x)&3)<<2)
7062306a36Sopenharmony_ci#define CS42L51_MIC_CTL_MICB_BOOST	(1<<1)
7162306a36Sopenharmony_ci#define CS42L51_MIC_CTL_MICA_BOOST	(1<<0)
7262306a36Sopenharmony_ci
7362306a36Sopenharmony_ci#define CS42L51_ADC_CTL			0x06
7462306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ADCB_HPFEN	(1<<7)
7562306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ADCB_HPFRZ	(1<<6)
7662306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ADCA_HPFEN	(1<<5)
7762306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ADCA_HPFRZ	(1<<4)
7862306a36Sopenharmony_ci#define CS42L51_ADC_CTL_SOFTB		(1<<3)
7962306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ZCROSSB		(1<<2)
8062306a36Sopenharmony_ci#define CS42L51_ADC_CTL_SOFTA		(1<<1)
8162306a36Sopenharmony_ci#define CS42L51_ADC_CTL_ZCROSSA		(1<<0)
8262306a36Sopenharmony_ci
8362306a36Sopenharmony_ci#define CS42L51_ADC_INPUT		0x07
8462306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_AINB_MUX(x)	(((x)&3)<<6)
8562306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_AINA_MUX(x)	(((x)&3)<<4)
8662306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_INV_ADCB	(1<<3)
8762306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_INV_ADCA	(1<<2)
8862306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_ADCB_MUTE	(1<<1)
8962306a36Sopenharmony_ci#define CS42L51_ADC_INPUT_ADCA_MUTE	(1<<0)
9062306a36Sopenharmony_ci
9162306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL		0x08
9262306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_HP_GAIN(x)	(((x)&7)<<5)
9362306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_DAC_SNGVOL	(1<<4)
9462306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_INV_PCMB	(1<<3)
9562306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_INV_PCMA	(1<<2)
9662306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_DACB_MUTE	(1<<1)
9762306a36Sopenharmony_ci#define CS42L51_DAC_OUT_CTL_DACA_MUTE	(1<<0)
9862306a36Sopenharmony_ci
9962306a36Sopenharmony_ci#define CS42L51_DAC_CTL			0x09
10062306a36Sopenharmony_ci#define CS42L51_DAC_CTL_DATA_SEL(x)	(((x)&3)<<6)
10162306a36Sopenharmony_ci#define CS42L51_DAC_CTL_FREEZE		(1<<5)
10262306a36Sopenharmony_ci#define CS42L51_DAC_CTL_DEEMPH		(1<<3)
10362306a36Sopenharmony_ci#define CS42L51_DAC_CTL_AMUTE		(1<<2)
10462306a36Sopenharmony_ci#define CS42L51_DAC_CTL_DACSZ(x)	(((x)&3)<<0)
10562306a36Sopenharmony_ci
10662306a36Sopenharmony_ci#define CS42L51_ALC_PGA_CTL		0x0A
10762306a36Sopenharmony_ci#define CS42L51_ALC_PGB_CTL		0x0B
10862306a36Sopenharmony_ci#define CS42L51_ALC_PGX_ALCX_SRDIS	(1<<7)
10962306a36Sopenharmony_ci#define CS42L51_ALC_PGX_ALCX_ZCDIS	(1<<6)
11062306a36Sopenharmony_ci#define CS42L51_ALC_PGX_PGX_VOL(x)	(((x)&0x1f)<<0)
11162306a36Sopenharmony_ci
11262306a36Sopenharmony_ci#define CS42L51_ADCA_ATT		0x0C
11362306a36Sopenharmony_ci#define CS42L51_ADCB_ATT		0x0D
11462306a36Sopenharmony_ci
11562306a36Sopenharmony_ci#define CS42L51_ADCA_VOL		0x0E
11662306a36Sopenharmony_ci#define CS42L51_ADCB_VOL		0x0F
11762306a36Sopenharmony_ci#define CS42L51_PCMA_VOL		0x10
11862306a36Sopenharmony_ci#define CS42L51_PCMB_VOL		0x11
11962306a36Sopenharmony_ci#define CS42L51_MIX_MUTE_ADCMIX		(1<<7)
12062306a36Sopenharmony_ci#define CS42L51_MIX_VOLUME(x)		(((x)&0x7f)<<0)
12162306a36Sopenharmony_ci
12262306a36Sopenharmony_ci#define CS42L51_BEEP_FREQ		0x12
12362306a36Sopenharmony_ci#define CS42L51_BEEP_VOL		0x13
12462306a36Sopenharmony_ci#define CS42L51_BEEP_CONF		0x14
12562306a36Sopenharmony_ci
12662306a36Sopenharmony_ci#define CS42L51_TONE_CTL		0x15
12762306a36Sopenharmony_ci#define CS42L51_TONE_CTL_TREB(x)	(((x)&0xf)<<4)
12862306a36Sopenharmony_ci#define CS42L51_TONE_CTL_BASS(x)	(((x)&0xf)<<0)
12962306a36Sopenharmony_ci
13062306a36Sopenharmony_ci#define CS42L51_AOUTA_VOL		0x16
13162306a36Sopenharmony_ci#define CS42L51_AOUTB_VOL		0x17
13262306a36Sopenharmony_ci#define CS42L51_PCM_MIXER		0x18
13362306a36Sopenharmony_ci#define CS42L51_LIMIT_THRES_DIS		0x19
13462306a36Sopenharmony_ci#define CS42L51_LIMIT_REL		0x1A
13562306a36Sopenharmony_ci#define CS42L51_LIMIT_ATT		0x1B
13662306a36Sopenharmony_ci#define CS42L51_ALC_EN			0x1C
13762306a36Sopenharmony_ci#define CS42L51_ALC_REL			0x1D
13862306a36Sopenharmony_ci#define CS42L51_ALC_THRES		0x1E
13962306a36Sopenharmony_ci#define CS42L51_NOISE_CONF		0x1F
14062306a36Sopenharmony_ci
14162306a36Sopenharmony_ci#define CS42L51_STATUS			0x20
14262306a36Sopenharmony_ci#define CS42L51_STATUS_SP_CLKERR	(1<<6)
14362306a36Sopenharmony_ci#define CS42L51_STATUS_SPEA_OVFL	(1<<5)
14462306a36Sopenharmony_ci#define CS42L51_STATUS_SPEB_OVFL	(1<<4)
14562306a36Sopenharmony_ci#define CS42L51_STATUS_PCMA_OVFL	(1<<3)
14662306a36Sopenharmony_ci#define CS42L51_STATUS_PCMB_OVFL	(1<<2)
14762306a36Sopenharmony_ci#define CS42L51_STATUS_ADCA_OVFL	(1<<1)
14862306a36Sopenharmony_ci#define CS42L51_STATUS_ADCB_OVFL	(1<<0)
14962306a36Sopenharmony_ci
15062306a36Sopenharmony_ci#define CS42L51_CHARGE_FREQ		0x21
15162306a36Sopenharmony_ci
15262306a36Sopenharmony_ci#define CS42L51_FIRSTREG	0x01
15362306a36Sopenharmony_ci/*
15462306a36Sopenharmony_ci * Hack: with register 0x21, it makes 33 registers. Looks like someone in the
15562306a36Sopenharmony_ci * i2c layer doesn't like i2c smbus block read of 33 regs. Workaround by using
15662306a36Sopenharmony_ci * 32 regs
15762306a36Sopenharmony_ci */
15862306a36Sopenharmony_ci#define CS42L51_LASTREG		0x20
15962306a36Sopenharmony_ci#define CS42L51_NUMREGS		(CS42L51_LASTREG - CS42L51_FIRSTREG + 1)
16062306a36Sopenharmony_ci
16162306a36Sopenharmony_ci#endif
162