162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
262306a36Sopenharmony_ci#ifndef PCM1796_H_INCLUDED
362306a36Sopenharmony_ci#define PCM1796_H_INCLUDED
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci/* register 16 */
662306a36Sopenharmony_ci#define PCM1796_ATL_MASK	0xff
762306a36Sopenharmony_ci/* register 17 */
862306a36Sopenharmony_ci#define PCM1796_ATR_MASK	0xff
962306a36Sopenharmony_ci/* register 18 */
1062306a36Sopenharmony_ci#define PCM1796_MUTE		0x01
1162306a36Sopenharmony_ci#define PCM1796_DME		0x02
1262306a36Sopenharmony_ci#define PCM1796_DMF_MASK	0x0c
1362306a36Sopenharmony_ci#define PCM1796_DMF_48		0x04
1462306a36Sopenharmony_ci#define PCM1796_DMF_441		0x08
1562306a36Sopenharmony_ci#define PCM1796_DMF_32		0x0c
1662306a36Sopenharmony_ci#define PCM1796_FMT_MASK	0x70
1762306a36Sopenharmony_ci#define PCM1796_FMT_16_RJUST	0x00
1862306a36Sopenharmony_ci#define PCM1796_FMT_20_RJUST	0x10
1962306a36Sopenharmony_ci#define PCM1796_FMT_24_RJUST	0x20
2062306a36Sopenharmony_ci#define PCM1796_FMT_24_LJUST	0x30
2162306a36Sopenharmony_ci#define PCM1796_FMT_16_I2S	0x40
2262306a36Sopenharmony_ci#define PCM1796_FMT_24_I2S	0x50
2362306a36Sopenharmony_ci#define PCM1796_ATLD		0x80
2462306a36Sopenharmony_ci/* register 19 */
2562306a36Sopenharmony_ci#define PCM1796_INZD		0x01
2662306a36Sopenharmony_ci#define PCM1796_FLT_MASK	0x02
2762306a36Sopenharmony_ci#define PCM1796_FLT_SHARP	0x00
2862306a36Sopenharmony_ci#define PCM1796_FLT_SLOW	0x02
2962306a36Sopenharmony_ci#define PCM1796_DFMS		0x04
3062306a36Sopenharmony_ci#define PCM1796_OPE		0x10
3162306a36Sopenharmony_ci#define PCM1796_ATS_MASK	0x60
3262306a36Sopenharmony_ci#define PCM1796_ATS_1		0x00
3362306a36Sopenharmony_ci#define PCM1796_ATS_2		0x20
3462306a36Sopenharmony_ci#define PCM1796_ATS_4		0x40
3562306a36Sopenharmony_ci#define PCM1796_ATS_8		0x60
3662306a36Sopenharmony_ci#define PCM1796_REV		0x80
3762306a36Sopenharmony_ci/* register 20 */
3862306a36Sopenharmony_ci#define PCM1796_OS_MASK		0x03
3962306a36Sopenharmony_ci#define PCM1796_OS_64		0x00
4062306a36Sopenharmony_ci#define PCM1796_OS_32		0x01
4162306a36Sopenharmony_ci#define PCM1796_OS_128		0x02
4262306a36Sopenharmony_ci#define PCM1796_CHSL_MASK	0x04
4362306a36Sopenharmony_ci#define PCM1796_CHSL_LEFT	0x00
4462306a36Sopenharmony_ci#define PCM1796_CHSL_RIGHT	0x04
4562306a36Sopenharmony_ci#define PCM1796_MONO		0x08
4662306a36Sopenharmony_ci#define PCM1796_DFTH		0x10
4762306a36Sopenharmony_ci#define PCM1796_DSD		0x20
4862306a36Sopenharmony_ci#define PCM1796_SRST		0x40
4962306a36Sopenharmony_ci/* register 21 */
5062306a36Sopenharmony_ci#define PCM1796_PCMZ		0x01
5162306a36Sopenharmony_ci#define PCM1796_DZ_MASK		0x06
5262306a36Sopenharmony_ci/* register 22 */
5362306a36Sopenharmony_ci#define PCM1796_ZFGL		0x01
5462306a36Sopenharmony_ci#define PCM1796_ZFGR		0x02
5562306a36Sopenharmony_ci/* register 23 */
5662306a36Sopenharmony_ci#define PCM1796_ID_MASK		0x1f
5762306a36Sopenharmony_ci
5862306a36Sopenharmony_ci#endif
59