xref: /kernel/linux/linux-6.6/include/sound/cs8427.h (revision 62306a36)
162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
262306a36Sopenharmony_ci#ifndef __SOUND_CS8427_H
362306a36Sopenharmony_ci#define __SOUND_CS8427_H
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci/*
662306a36Sopenharmony_ci *  Routines for Cirrus Logic CS8427
762306a36Sopenharmony_ci *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>,
862306a36Sopenharmony_ci */
962306a36Sopenharmony_ci
1062306a36Sopenharmony_ci#include <sound/i2c.h>
1162306a36Sopenharmony_ci
1262306a36Sopenharmony_ci#define CS8427_BASE_ADDR	0x10	/* base I2C address */
1362306a36Sopenharmony_ci
1462306a36Sopenharmony_ci#define CS8427_REG_AUTOINC	0x80	/* flag - autoincrement */
1562306a36Sopenharmony_ci#define CS8427_REG_CONTROL1	0x01
1662306a36Sopenharmony_ci#define CS8427_REG_CONTROL2	0x02
1762306a36Sopenharmony_ci#define CS8427_REG_DATAFLOW	0x03
1862306a36Sopenharmony_ci#define CS8427_REG_CLOCKSOURCE	0x04
1962306a36Sopenharmony_ci#define CS8427_REG_SERIALINPUT	0x05
2062306a36Sopenharmony_ci#define CS8427_REG_SERIALOUTPUT	0x06
2162306a36Sopenharmony_ci#define CS8427_REG_INT1STATUS	0x07
2262306a36Sopenharmony_ci#define CS8427_REG_INT2STATUS	0x08
2362306a36Sopenharmony_ci#define CS8427_REG_INT1MASK	0x09
2462306a36Sopenharmony_ci#define CS8427_REG_INT1MODEMSB	0x0a
2562306a36Sopenharmony_ci#define CS8427_REG_INT1MODELSB	0x0b
2662306a36Sopenharmony_ci#define CS8427_REG_INT2MASK	0x0c
2762306a36Sopenharmony_ci#define CS8427_REG_INT2MODEMSB	0x0d
2862306a36Sopenharmony_ci#define CS8427_REG_INT2MODELSB	0x0e
2962306a36Sopenharmony_ci#define CS8427_REG_RECVCSDATA	0x0f
3062306a36Sopenharmony_ci#define CS8427_REG_RECVERRORS	0x10
3162306a36Sopenharmony_ci#define CS8427_REG_RECVERRMASK	0x11
3262306a36Sopenharmony_ci#define CS8427_REG_CSDATABUF	0x12
3362306a36Sopenharmony_ci#define CS8427_REG_UDATABUF	0x13
3462306a36Sopenharmony_ci#define CS8427_REG_QSUBCODE	0x14	/* 0x14-0x1d (10 bytes) */
3562306a36Sopenharmony_ci#define CS8427_REG_OMCKRMCKRATIO 0x1e
3662306a36Sopenharmony_ci#define CS8427_REG_CORU_DATABUF	0x20	/* 24 byte buffer area */
3762306a36Sopenharmony_ci#define CS8427_REG_ID_AND_VER	0x7f
3862306a36Sopenharmony_ci
3962306a36Sopenharmony_ci/* CS8427_REG_CONTROL1 bits */
4062306a36Sopenharmony_ci#define CS8427_SWCLK		(1<<7)	/* 0 = RMCK default, 1 = OMCK output on RMCK pin */
4162306a36Sopenharmony_ci#define CS8427_VSET		(1<<6)	/* 0 = valid PCM data, 1 = invalid PCM data */
4262306a36Sopenharmony_ci#define CS8427_MUTESAO		(1<<5)	/* mute control for the serial audio output port, 0 = disabled, 1 = enabled */
4362306a36Sopenharmony_ci#define CS8427_MUTEAES		(1<<4)	/* mute control for the AES transmitter output, 0 = disabled, 1 = enabled */
4462306a36Sopenharmony_ci#define CS8427_INTMASK		(3<<1)	/* interrupt output pin setup mask */
4562306a36Sopenharmony_ci#define CS8427_INTACTHIGH	(0<<1)	/* active high */
4662306a36Sopenharmony_ci#define CS8427_INTACTLOW	(1<<1)	/* active low */
4762306a36Sopenharmony_ci#define CS8427_INTOPENDRAIN	(2<<1)	/* open drain, active low */
4862306a36Sopenharmony_ci#define CS8427_TCBLDIR		(1<<0)	/* 0 = TCBL is an input, 1 = TCBL is an output */
4962306a36Sopenharmony_ci
5062306a36Sopenharmony_ci/* CS8427_REQ_CONTROL2 bits */
5162306a36Sopenharmony_ci#define CS8427_HOLDMASK		(3<<5)	/* action when a receiver error occurs */
5262306a36Sopenharmony_ci#define CS8427_HOLDLASTSAMPLE	(0<<5)	/* hold the last valid sample */
5362306a36Sopenharmony_ci#define CS8427_HOLDZERO		(1<<5)	/* replace the current audio sample with zero (mute) */
5462306a36Sopenharmony_ci#define CS8427_HOLDNOCHANGE	(2<<5)	/* do not change the received audio sample */
5562306a36Sopenharmony_ci#define CS8427_RMCKF		(1<<4)	/* 0 = 256*Fsi, 1 = 128*Fsi */
5662306a36Sopenharmony_ci#define CS8427_MMR		(1<<3)	/* AES3 receiver operation, 0 = stereo, 1 = mono */
5762306a36Sopenharmony_ci#define CS8427_MMT		(1<<2)	/* AES3 transmitter operation, 0 = stereo, 1 = mono */
5862306a36Sopenharmony_ci#define CS8427_MMTCS		(1<<1)	/* 0 = use A + B CS data, 1 = use MMTLR CS data */
5962306a36Sopenharmony_ci#define CS8427_MMTLR		(1<<0)	/* 0 = use A CS data, 1 = use B CS data */
6062306a36Sopenharmony_ci
6162306a36Sopenharmony_ci/* CS8427_REG_DATAFLOW */
6262306a36Sopenharmony_ci#define CS8427_TXOFF		(1<<6)	/* AES3 transmitter Output, 0 = normal operation, 1 = off (0V) */
6362306a36Sopenharmony_ci#define CS8427_AESBP		(1<<5)	/* AES3 hardware bypass mode, 0 = normal, 1 = bypass (RX->TX) */
6462306a36Sopenharmony_ci#define CS8427_TXDMASK		(3<<3)	/* AES3 Transmitter Data Source Mask */
6562306a36Sopenharmony_ci#define CS8427_TXDSERIAL	(1<<3)	/* TXD - serial audio input port */
6662306a36Sopenharmony_ci#define CS8427_TXAES3DRECEIVER	(2<<3)	/* TXD - AES3 receiver */
6762306a36Sopenharmony_ci#define CS8427_SPDMASK		(3<<1)	/* Serial Audio Output Port Data Source Mask */
6862306a36Sopenharmony_ci#define CS8427_SPDSERIAL	(1<<1)	/* SPD - serial audio input port */
6962306a36Sopenharmony_ci#define CS8427_SPDAES3RECEIVER	(2<<1)	/* SPD - AES3 receiver */
7062306a36Sopenharmony_ci
7162306a36Sopenharmony_ci/* CS8427_REG_CLOCKSOURCE */
7262306a36Sopenharmony_ci#define CS8427_RUN		(1<<6)	/* 0 = clock off, 1 = clock on */
7362306a36Sopenharmony_ci#define CS8427_CLKMASK		(3<<4)	/* OMCK frequency mask */
7462306a36Sopenharmony_ci#define CS8427_CLK256		(0<<4)	/* 256*Fso */
7562306a36Sopenharmony_ci#define CS8427_CLK384		(1<<4)	/* 384*Fso */
7662306a36Sopenharmony_ci#define CS8427_CLK512		(2<<4)	/* 512*Fso */
7762306a36Sopenharmony_ci#define CS8427_OUTC		(1<<3)	/* Output Time Base, 0 = OMCK, 1 = recovered input clock */
7862306a36Sopenharmony_ci#define CS8427_INC		(1<<2)	/* Input Time Base Clock Source, 0 = recoverd input clock, 1 = OMCK input pin */
7962306a36Sopenharmony_ci#define CS8427_RXDMASK		(3<<0)	/* Recovered Input Clock Source Mask */
8062306a36Sopenharmony_ci#define CS8427_RXDILRCK		(0<<0)	/* 256*Fsi from ILRCK pin */
8162306a36Sopenharmony_ci#define CS8427_RXDAES3INPUT	(1<<0)	/* 256*Fsi from AES3 input */
8262306a36Sopenharmony_ci#define CS8427_EXTCLOCKRESET	(2<<0)	/* bypass PLL, 256*Fsi clock, synchronous reset */
8362306a36Sopenharmony_ci#define CS8427_EXTCLOCK		(3<<0)	/* bypass PLL, 256*Fsi clock */
8462306a36Sopenharmony_ci
8562306a36Sopenharmony_ci/* CS8427_REG_SERIALINPUT */
8662306a36Sopenharmony_ci#define CS8427_SIMS		(1<<7)	/* 0 = slave, 1 = master mode */
8762306a36Sopenharmony_ci#define CS8427_SISF		(1<<6)	/* ISCLK freq, 0 = 64*Fsi, 1 = 128*Fsi */
8862306a36Sopenharmony_ci#define CS8427_SIRESMASK	(3<<4)	/* Resolution of the input data for right justified formats */
8962306a36Sopenharmony_ci#define CS8427_SIRES24		(0<<4)	/* SIRES 24-bit */
9062306a36Sopenharmony_ci#define CS8427_SIRES20		(1<<4)	/* SIRES 20-bit */
9162306a36Sopenharmony_ci#define CS8427_SIRES16		(2<<4)	/* SIRES 16-bit */
9262306a36Sopenharmony_ci#define CS8427_SIJUST		(1<<3)	/* Justification of SDIN data relative to ILRCK, 0 = left-justified, 1 = right-justified */
9362306a36Sopenharmony_ci#define CS8427_SIDEL		(1<<2)	/* Delay of SDIN data relative to ILRCK for left-justified data formats, 0 = first ISCLK period, 1 = second ISCLK period */
9462306a36Sopenharmony_ci#define CS8427_SISPOL		(1<<1)	/* ICLK clock polarity, 0 = rising edge of ISCLK, 1 = falling edge of ISCLK */
9562306a36Sopenharmony_ci#define CS8427_SILRPOL		(1<<0)	/* ILRCK clock polarity, 0 = SDIN data left channel when ILRCK is high, 1 = SDIN right when ILRCK is high */
9662306a36Sopenharmony_ci
9762306a36Sopenharmony_ci/* CS8427_REG_SERIALOUTPUT */
9862306a36Sopenharmony_ci#define CS8427_SOMS		(1<<7)	/* 0 = slave, 1 = master mode */
9962306a36Sopenharmony_ci#define CS8427_SOSF		(1<<6)	/* OSCLK freq, 0 = 64*Fso, 1 = 128*Fso */
10062306a36Sopenharmony_ci#define CS8427_SORESMASK	(3<<4)	/* Resolution of the output data on SDOUT and AES3 output */
10162306a36Sopenharmony_ci#define CS8427_SORES24		(0<<4)	/* SIRES 24-bit */
10262306a36Sopenharmony_ci#define CS8427_SORES20		(1<<4)	/* SIRES 20-bit */
10362306a36Sopenharmony_ci#define CS8427_SORES16		(2<<4)	/* SIRES 16-bit */
10462306a36Sopenharmony_ci#define CS8427_SORESDIRECT	(2<<4)	/* SIRES direct copy from AES3 receiver */
10562306a36Sopenharmony_ci#define CS8427_SOJUST		(1<<3)	/* Justification of SDOUT data relative to OLRCK, 0 = left-justified, 1 = right-justified */
10662306a36Sopenharmony_ci#define CS8427_SODEL		(1<<2)	/* Delay of SDOUT data relative to OLRCK for left-justified data formats, 0 = first OSCLK period, 1 = second OSCLK period */
10762306a36Sopenharmony_ci#define CS8427_SOSPOL		(1<<1)	/* OSCLK clock polarity, 0 = rising edge of ISCLK, 1 = falling edge of ISCLK */
10862306a36Sopenharmony_ci#define CS8427_SOLRPOL		(1<<0)	/* OLRCK clock polarity, 0 = SDOUT data left channel when OLRCK is high, 1 = SDOUT right when OLRCK is high */
10962306a36Sopenharmony_ci
11062306a36Sopenharmony_ci/* CS8427_REG_INT1STATUS */
11162306a36Sopenharmony_ci#define CS8427_TSLIP		(1<<7)	/* AES3 transmitter source data slip interrupt */
11262306a36Sopenharmony_ci#define CS8427_OSLIP		(1<<6)	/* Serial audio output port data slip interrupt */
11362306a36Sopenharmony_ci#define CS8427_DETC		(1<<2)	/* D to E C-buffer transfer interrupt */
11462306a36Sopenharmony_ci#define CS8427_EFTC		(1<<1)	/* E to F C-buffer transfer interrupt */
11562306a36Sopenharmony_ci#define CS8427_RERR		(1<<0)	/* A receiver error has occurred */
11662306a36Sopenharmony_ci
11762306a36Sopenharmony_ci/* CS8427_REG_INT2STATUS */
11862306a36Sopenharmony_ci#define CS8427_DETU		(1<<3)	/* D to E U-buffer transfer interrupt */
11962306a36Sopenharmony_ci#define CS8427_EFTU		(1<<2)	/* E to F U-buffer transfer interrupt */
12062306a36Sopenharmony_ci#define CS8427_QCH		(1<<1)	/* A new block of Q-subcode data is available for reading */
12162306a36Sopenharmony_ci
12262306a36Sopenharmony_ci/* CS8427_REG_INT1MODEMSB && CS8427_REG_INT1MODELSB */
12362306a36Sopenharmony_ci/* bits are defined in CS8427_REG_INT1STATUS */
12462306a36Sopenharmony_ci/* CS8427_REG_INT2MODEMSB && CS8427_REG_INT2MODELSB */
12562306a36Sopenharmony_ci/* bits are defined in CS8427_REG_INT2STATUS */
12662306a36Sopenharmony_ci#define CS8427_INTMODERISINGMSB	0
12762306a36Sopenharmony_ci#define CS8427_INTMODERESINGLSB	0
12862306a36Sopenharmony_ci#define CS8427_INTMODEFALLINGMSB 0
12962306a36Sopenharmony_ci#define CS8427_INTMODEFALLINGLSB 1
13062306a36Sopenharmony_ci#define CS8427_INTMODELEVELMSB	1
13162306a36Sopenharmony_ci#define CS8427_INTMODELEVELLSB	0
13262306a36Sopenharmony_ci
13362306a36Sopenharmony_ci/* CS8427_REG_RECVCSDATA */
13462306a36Sopenharmony_ci#define CS8427_AUXMASK		(15<<4)	/* auxiliary data field width */
13562306a36Sopenharmony_ci#define CS8427_AUXSHIFT		4
13662306a36Sopenharmony_ci#define CS8427_PRO		(1<<3)	/* Channel status block format indicator */
13762306a36Sopenharmony_ci#define CS8427_AUDIO		(1<<2)	/* Audio indicator (0 = audio, 1 = nonaudio */
13862306a36Sopenharmony_ci#define CS8427_COPY		(1<<1)	/* 0 = copyright asserted, 1 = copyright not asserted */
13962306a36Sopenharmony_ci#define CS8427_ORIG		(1<<0)	/* SCMS generation indicator, 0 = 1st generation or highter, 1 = original */
14062306a36Sopenharmony_ci
14162306a36Sopenharmony_ci/* CS8427_REG_RECVERRORS */
14262306a36Sopenharmony_ci/* CS8427_REG_RECVERRMASK for CS8427_RERR */
14362306a36Sopenharmony_ci#define CS8427_QCRC		(1<<6)	/* Q-subcode data CRC error indicator */
14462306a36Sopenharmony_ci#define CS8427_CCRC		(1<<5)	/* Chancnel Status Block Cyclick Redundancy Check Bit */
14562306a36Sopenharmony_ci#define CS8427_UNLOCK		(1<<4)	/* PLL lock status bit */
14662306a36Sopenharmony_ci#define CS8427_V		(1<<3)	/* 0 = valid data */
14762306a36Sopenharmony_ci#define CS8427_CONF		(1<<2)	/* Confidence bit */
14862306a36Sopenharmony_ci#define CS8427_BIP		(1<<1)	/* Bi-phase error bit */
14962306a36Sopenharmony_ci#define CS8427_PAR		(1<<0)	/* Parity error */
15062306a36Sopenharmony_ci
15162306a36Sopenharmony_ci/* CS8427_REG_CSDATABUF	*/
15262306a36Sopenharmony_ci#define CS8427_BSEL		(1<<5)	/* 0 = CS data, 1 = U data */
15362306a36Sopenharmony_ci#define CS8427_CBMR		(1<<4)	/* 0 = overwrite first 5 bytes for CS D to E buffer, 1 = prevent */
15462306a36Sopenharmony_ci#define CS8427_DETCI		(1<<3)	/* D to E CS data buffer transfer inhibit bit, 0 = allow, 1 = inhibit */
15562306a36Sopenharmony_ci#define CS8427_EFTCI		(1<<2)	/* E to F CS data buffer transfer inhibit bit, 0 = allow, 1 = inhibit */
15662306a36Sopenharmony_ci#define CS8427_CAM		(1<<1)	/* CS data buffer control port access mode bit, 0 = one byte, 1 = two byte */
15762306a36Sopenharmony_ci#define CS8427_CHS		(1<<0)	/* Channel select bit, 0 = Channel A, 1 = Channel B */
15862306a36Sopenharmony_ci
15962306a36Sopenharmony_ci/* CS8427_REG_UDATABUF */
16062306a36Sopenharmony_ci#define CS8427_UD		(1<<4)	/* User data pin (U) direction, 0 = input, 1 = output */
16162306a36Sopenharmony_ci#define CS8427_UBMMASK		(3<<2)	/* Operating mode of the AES3 U bit manager */
16262306a36Sopenharmony_ci#define CS8427_UBMZEROS		(0<<2)	/* transmit all zeros mode */
16362306a36Sopenharmony_ci#define CS8427_UBMBLOCK		(1<<2)	/* block mode */
16462306a36Sopenharmony_ci#define CS8427_DETUI		(1<<1)	/* D to E U-data buffer transfer inhibit bit, 0 = allow, 1 = inhibit */
16562306a36Sopenharmony_ci#define CS8427_EFTUI		(1<<1)	/* E to F U-data buffer transfer inhibit bit, 0 = allow, 1 = inhibit */
16662306a36Sopenharmony_ci
16762306a36Sopenharmony_ci/* CS8427_REG_ID_AND_VER */
16862306a36Sopenharmony_ci#define CS8427_IDMASK		(15<<4)
16962306a36Sopenharmony_ci#define CS8427_IDSHIFT		4
17062306a36Sopenharmony_ci#define CS8427_VERMASK		(15<<0)
17162306a36Sopenharmony_ci#define CS8427_VERSHIFT		0
17262306a36Sopenharmony_ci#define CS8427_VER8427A		0x71
17362306a36Sopenharmony_ci
17462306a36Sopenharmony_cistruct snd_pcm_substream;
17562306a36Sopenharmony_ci
17662306a36Sopenharmony_ciint snd_cs8427_init(struct snd_i2c_bus *bus, struct snd_i2c_device *device);
17762306a36Sopenharmony_ciint snd_cs8427_create(struct snd_i2c_bus *bus, unsigned char addr,
17862306a36Sopenharmony_ci		      unsigned int reset_timeout, struct snd_i2c_device **r_cs8427);
17962306a36Sopenharmony_ciint snd_cs8427_reg_write(struct snd_i2c_device *device, unsigned char reg,
18062306a36Sopenharmony_ci			 unsigned char val);
18162306a36Sopenharmony_ciint snd_cs8427_iec958_build(struct snd_i2c_device *cs8427,
18262306a36Sopenharmony_ci			    struct snd_pcm_substream *playback_substream,
18362306a36Sopenharmony_ci			    struct snd_pcm_substream *capture_substream);
18462306a36Sopenharmony_ciint snd_cs8427_iec958_active(struct snd_i2c_device *cs8427, int active);
18562306a36Sopenharmony_ciint snd_cs8427_iec958_pcm(struct snd_i2c_device *cs8427, unsigned int rate);
18662306a36Sopenharmony_ci
18762306a36Sopenharmony_ci#endif /* __SOUND_CS8427_H */
188