162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */
262306a36Sopenharmony_ci#ifndef __SOUND_ASOUNDEF_H
362306a36Sopenharmony_ci#define __SOUND_ASOUNDEF_H
462306a36Sopenharmony_ci
562306a36Sopenharmony_ci/*
662306a36Sopenharmony_ci *  Advanced Linux Sound Architecture - ALSA - Driver
762306a36Sopenharmony_ci *  Copyright (c) 1994-2000 by Jaroslav Kysela <perex@perex.cz>
862306a36Sopenharmony_ci */
962306a36Sopenharmony_ci
1062306a36Sopenharmony_ci/****************************************************************************
1162306a36Sopenharmony_ci *                                                                          *
1262306a36Sopenharmony_ci *        Digital audio interface					    *
1362306a36Sopenharmony_ci *                                                                          *
1462306a36Sopenharmony_ci ****************************************************************************/
1562306a36Sopenharmony_ci
1662306a36Sopenharmony_ci/* AES/IEC958 channel status bits */
1762306a36Sopenharmony_ci#define IEC958_AES0_PROFESSIONAL	(1<<0)	/* 0 = consumer, 1 = professional */
1862306a36Sopenharmony_ci#define IEC958_AES0_NONAUDIO		(1<<1)	/* 0 = audio, 1 = non-audio */
1962306a36Sopenharmony_ci#define IEC958_AES0_PRO_EMPHASIS	(7<<2)	/* mask - emphasis */
2062306a36Sopenharmony_ci#define IEC958_AES0_PRO_EMPHASIS_NOTID	(0<<2)	/* emphasis not indicated */
2162306a36Sopenharmony_ci#define IEC958_AES0_PRO_EMPHASIS_NONE	(1<<2)	/* none emphasis */
2262306a36Sopenharmony_ci#define IEC958_AES0_PRO_EMPHASIS_5015	(3<<2)	/* 50/15us emphasis */
2362306a36Sopenharmony_ci#define IEC958_AES0_PRO_EMPHASIS_CCITT	(7<<2)	/* CCITT J.17 emphasis */
2462306a36Sopenharmony_ci#define IEC958_AES0_PRO_FREQ_UNLOCKED	(1<<5)	/* source sample frequency: 0 = locked, 1 = unlocked */
2562306a36Sopenharmony_ci#define IEC958_AES0_PRO_FS		(3<<6)	/* mask - sample frequency */
2662306a36Sopenharmony_ci#define IEC958_AES0_PRO_FS_NOTID	(0<<6)	/* fs not indicated */
2762306a36Sopenharmony_ci#define IEC958_AES0_PRO_FS_44100	(1<<6)	/* 44.1kHz */
2862306a36Sopenharmony_ci#define IEC958_AES0_PRO_FS_48000	(2<<6)	/* 48kHz */
2962306a36Sopenharmony_ci#define IEC958_AES0_PRO_FS_32000	(3<<6)	/* 32kHz */
3062306a36Sopenharmony_ci#define IEC958_AES0_CON_NOT_COPYRIGHT	(1<<2)	/* 0 = copyright, 1 = not copyright */
3162306a36Sopenharmony_ci#define IEC958_AES0_CON_EMPHASIS	(7<<3)	/* mask - emphasis */
3262306a36Sopenharmony_ci#define IEC958_AES0_CON_EMPHASIS_NONE	(0<<3)	/* none emphasis */
3362306a36Sopenharmony_ci#define IEC958_AES0_CON_EMPHASIS_5015	(1<<3)	/* 50/15us emphasis */
3462306a36Sopenharmony_ci#define IEC958_AES0_CON_MODE		(3<<6)	/* mask - mode */
3562306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE		(15<<0)	/* mask - channel mode */
3662306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_NOTID	(0<<0)	/* not indicated */
3762306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_STEREOPHONIC (2<<0) /* stereophonic - ch A is left */
3862306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_SINGLE	(4<<0)	/* single channel */
3962306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_TWO	(8<<0)	/* two channels */
4062306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_PRIMARY	(12<<0)	/* primary/secondary */
4162306a36Sopenharmony_ci#define IEC958_AES1_PRO_MODE_BYTE3	(15<<0)	/* vector to byte 3 */
4262306a36Sopenharmony_ci#define IEC958_AES1_PRO_USERBITS	(15<<4)	/* mask - user bits */
4362306a36Sopenharmony_ci#define IEC958_AES1_PRO_USERBITS_NOTID	(0<<4)	/* not indicated */
4462306a36Sopenharmony_ci#define IEC958_AES1_PRO_USERBITS_192	(8<<4)	/* 192-bit structure */
4562306a36Sopenharmony_ci#define IEC958_AES1_PRO_USERBITS_UDEF	(12<<4)	/* user defined application */
4662306a36Sopenharmony_ci#define IEC958_AES1_CON_CATEGORY	0x7f
4762306a36Sopenharmony_ci#define IEC958_AES1_CON_GENERAL		0x00
4862306a36Sopenharmony_ci#define IEC958_AES1_CON_LASEROPT_MASK	0x07
4962306a36Sopenharmony_ci#define IEC958_AES1_CON_LASEROPT_ID	0x01
5062306a36Sopenharmony_ci#define IEC958_AES1_CON_IEC908_CD	(IEC958_AES1_CON_LASEROPT_ID|0x00)
5162306a36Sopenharmony_ci#define IEC958_AES1_CON_NON_IEC908_CD	(IEC958_AES1_CON_LASEROPT_ID|0x08)
5262306a36Sopenharmony_ci#define IEC958_AES1_CON_MINI_DISC	(IEC958_AES1_CON_LASEROPT_ID|0x48)
5362306a36Sopenharmony_ci#define IEC958_AES1_CON_DVD		(IEC958_AES1_CON_LASEROPT_ID|0x18)
5462306a36Sopenharmony_ci#define IEC958_AES1_CON_LASTEROPT_OTHER	(IEC958_AES1_CON_LASEROPT_ID|0x78)
5562306a36Sopenharmony_ci#define IEC958_AES1_CON_DIGDIGCONV_MASK 0x07
5662306a36Sopenharmony_ci#define IEC958_AES1_CON_DIGDIGCONV_ID	0x02
5762306a36Sopenharmony_ci#define IEC958_AES1_CON_PCM_CODER	(IEC958_AES1_CON_DIGDIGCONV_ID|0x00)
5862306a36Sopenharmony_ci#define IEC958_AES1_CON_MIXER		(IEC958_AES1_CON_DIGDIGCONV_ID|0x10)
5962306a36Sopenharmony_ci#define IEC958_AES1_CON_RATE_CONVERTER	(IEC958_AES1_CON_DIGDIGCONV_ID|0x18)
6062306a36Sopenharmony_ci#define IEC958_AES1_CON_SAMPLER		(IEC958_AES1_CON_DIGDIGCONV_ID|0x20)
6162306a36Sopenharmony_ci#define IEC958_AES1_CON_DSP		(IEC958_AES1_CON_DIGDIGCONV_ID|0x28)
6262306a36Sopenharmony_ci#define IEC958_AES1_CON_DIGDIGCONV_OTHER (IEC958_AES1_CON_DIGDIGCONV_ID|0x78)
6362306a36Sopenharmony_ci#define IEC958_AES1_CON_MAGNETIC_MASK	0x07
6462306a36Sopenharmony_ci#define IEC958_AES1_CON_MAGNETIC_ID	0x03
6562306a36Sopenharmony_ci#define IEC958_AES1_CON_DAT		(IEC958_AES1_CON_MAGNETIC_ID|0x00)
6662306a36Sopenharmony_ci#define IEC958_AES1_CON_VCR		(IEC958_AES1_CON_MAGNETIC_ID|0x08)
6762306a36Sopenharmony_ci#define IEC958_AES1_CON_DCC		(IEC958_AES1_CON_MAGNETIC_ID|0x40)
6862306a36Sopenharmony_ci#define IEC958_AES1_CON_MAGNETIC_DISC	(IEC958_AES1_CON_MAGNETIC_ID|0x18)
6962306a36Sopenharmony_ci#define IEC958_AES1_CON_MAGNETIC_OTHER	(IEC958_AES1_CON_MAGNETIC_ID|0x78)
7062306a36Sopenharmony_ci#define IEC958_AES1_CON_BROADCAST1_MASK 0x07
7162306a36Sopenharmony_ci#define IEC958_AES1_CON_BROADCAST1_ID	0x04
7262306a36Sopenharmony_ci#define IEC958_AES1_CON_DAB_JAPAN	(IEC958_AES1_CON_BROADCAST1_ID|0x00)
7362306a36Sopenharmony_ci#define IEC958_AES1_CON_DAB_EUROPE	(IEC958_AES1_CON_BROADCAST1_ID|0x08)
7462306a36Sopenharmony_ci#define IEC958_AES1_CON_DAB_USA		(IEC958_AES1_CON_BROADCAST1_ID|0x60)
7562306a36Sopenharmony_ci#define IEC958_AES1_CON_SOFTWARE	(IEC958_AES1_CON_BROADCAST1_ID|0x40)
7662306a36Sopenharmony_ci#define IEC958_AES1_CON_IEC62105	(IEC958_AES1_CON_BROADCAST1_ID|0x20)
7762306a36Sopenharmony_ci#define IEC958_AES1_CON_BROADCAST1_OTHER (IEC958_AES1_CON_BROADCAST1_ID|0x78)
7862306a36Sopenharmony_ci#define IEC958_AES1_CON_BROADCAST2_MASK 0x0f
7962306a36Sopenharmony_ci#define IEC958_AES1_CON_BROADCAST2_ID	0x0e
8062306a36Sopenharmony_ci#define IEC958_AES1_CON_MUSICAL_MASK	0x07
8162306a36Sopenharmony_ci#define IEC958_AES1_CON_MUSICAL_ID	0x05
8262306a36Sopenharmony_ci#define IEC958_AES1_CON_SYNTHESIZER	(IEC958_AES1_CON_MUSICAL_ID|0x00)
8362306a36Sopenharmony_ci#define IEC958_AES1_CON_MICROPHONE	(IEC958_AES1_CON_MUSICAL_ID|0x08)
8462306a36Sopenharmony_ci#define IEC958_AES1_CON_MUSICAL_OTHER	(IEC958_AES1_CON_MUSICAL_ID|0x78)
8562306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_MASK	0x1f
8662306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_ID		0x06
8762306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC		(IEC958_AES1_CON_ADC_ID|0x00)
8862306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_OTHER	(IEC958_AES1_CON_ADC_ID|0x60)
8962306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_COPYRIGHT_MASK 0x1f
9062306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_COPYRIGHT_ID 0x16
9162306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_COPYRIGHT	(IEC958_AES1_CON_ADC_COPYRIGHT_ID|0x00)
9262306a36Sopenharmony_ci#define IEC958_AES1_CON_ADC_COPYRIGHT_OTHER (IEC958_AES1_CON_ADC_COPYRIGHT_ID|0x60)
9362306a36Sopenharmony_ci#define IEC958_AES1_CON_SOLIDMEM_MASK	0x0f
9462306a36Sopenharmony_ci#define IEC958_AES1_CON_SOLIDMEM_ID	0x08
9562306a36Sopenharmony_ci#define IEC958_AES1_CON_SOLIDMEM_DIGITAL_RECORDER_PLAYER (IEC958_AES1_CON_SOLIDMEM_ID|0x00)
9662306a36Sopenharmony_ci#define IEC958_AES1_CON_SOLIDMEM_OTHER	(IEC958_AES1_CON_SOLIDMEM_ID|0x70)
9762306a36Sopenharmony_ci#define IEC958_AES1_CON_EXPERIMENTAL	0x40
9862306a36Sopenharmony_ci#define IEC958_AES1_CON_ORIGINAL	(1<<7)	/* this bits depends on the category code */
9962306a36Sopenharmony_ci#define IEC958_AES2_PRO_SBITS		(7<<0)	/* mask - sample bits */
10062306a36Sopenharmony_ci#define IEC958_AES2_PRO_SBITS_20	(2<<0)	/* 20-bit - coordination */
10162306a36Sopenharmony_ci#define IEC958_AES2_PRO_SBITS_24	(4<<0)	/* 24-bit - main audio */
10262306a36Sopenharmony_ci#define IEC958_AES2_PRO_SBITS_UDEF	(6<<0)	/* user defined application */
10362306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN		(7<<3)	/* mask - source word length */
10462306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN_NOTID	(0<<3)	/* not indicated */
10562306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN_22_18	(2<<3)	/* 22-bit or 18-bit */
10662306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN_23_19	(4<<3)	/* 23-bit or 19-bit */
10762306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN_24_20	(5<<3)	/* 24-bit or 20-bit */
10862306a36Sopenharmony_ci#define IEC958_AES2_PRO_WORDLEN_20_16	(6<<3)	/* 20-bit or 16-bit */
10962306a36Sopenharmony_ci#define IEC958_AES2_CON_SOURCE		(15<<0)	/* mask - source number */
11062306a36Sopenharmony_ci#define IEC958_AES2_CON_SOURCE_UNSPEC	(0<<0)	/* unspecified */
11162306a36Sopenharmony_ci#define IEC958_AES2_CON_CHANNEL		(15<<4)	/* mask - channel number */
11262306a36Sopenharmony_ci#define IEC958_AES2_CON_CHANNEL_UNSPEC	(0<<4)	/* unspecified */
11362306a36Sopenharmony_ci#define IEC958_AES3_CON_FS		(15<<0)	/* mask - sample frequency */
11462306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_44100	(0<<0)	/* 44.1kHz */
11562306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_NOTID	(1<<0)	/* non indicated */
11662306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_48000	(2<<0)	/* 48kHz */
11762306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_32000	(3<<0)	/* 32kHz */
11862306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_22050	(4<<0)	/* 22.05kHz */
11962306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_24000	(6<<0)	/* 24kHz */
12062306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_88200	(8<<0)	/* 88.2kHz */
12162306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_768000	(9<<0)	/* 768kHz */
12262306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_96000	(10<<0)	/* 96kHz */
12362306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_176400	(12<<0)	/* 176.4kHz */
12462306a36Sopenharmony_ci#define IEC958_AES3_CON_FS_192000	(14<<0)	/* 192kHz */
12562306a36Sopenharmony_ci#define IEC958_AES3_CON_CLOCK		(3<<4)	/* mask - clock accuracy */
12662306a36Sopenharmony_ci#define IEC958_AES3_CON_CLOCK_1000PPM	(0<<4)	/* 1000 ppm */
12762306a36Sopenharmony_ci#define IEC958_AES3_CON_CLOCK_50PPM	(1<<4)	/* 50 ppm */
12862306a36Sopenharmony_ci#define IEC958_AES3_CON_CLOCK_VARIABLE	(2<<4)	/* variable pitch */
12962306a36Sopenharmony_ci#define IEC958_AES4_CON_MAX_WORDLEN_24	(1<<0)	/* 0 = 20-bit, 1 = 24-bit */
13062306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN		(7<<1)	/* mask - sample word length */
13162306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_NOTID	(0<<1)	/* not indicated */
13262306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_20_16	(1<<1)	/* 20-bit or 16-bit */
13362306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_22_18	(2<<1)	/* 22-bit or 18-bit */
13462306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_23_19	(4<<1)	/* 23-bit or 19-bit */
13562306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_24_20	(5<<1)	/* 24-bit or 20-bit */
13662306a36Sopenharmony_ci#define IEC958_AES4_CON_WORDLEN_21_17	(6<<1)	/* 21-bit or 17-bit */
13762306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS		(15<<4)	/* mask - original sample frequency */
13862306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_NOTID	(0<<4)	/* not indicated */
13962306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_192000	(1<<4)	/* 192kHz */
14062306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_12000	(2<<4)	/* 12kHz */
14162306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_176400	(3<<4)	/* 176.4kHz */
14262306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_96000	(5<<4)	/* 96kHz */
14362306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_8000	(6<<4)	/* 8kHz */
14462306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_88200	(7<<4)	/* 88.2kHz */
14562306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_16000	(8<<4)	/* 16kHz */
14662306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_24000	(9<<4)	/* 24kHz */
14762306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_11025	(10<<4)	/* 11.025kHz */
14862306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_22050	(11<<4)	/* 22.05kHz */
14962306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_32000	(12<<4)	/* 32kHz */
15062306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_48000	(13<<4)	/* 48kHz */
15162306a36Sopenharmony_ci#define IEC958_AES4_CON_ORIGFS_44100	(15<<4)	/* 44.1kHz */
15262306a36Sopenharmony_ci#define IEC958_AES5_CON_CGMSA		(3<<0)	/* mask - CGMS-A */
15362306a36Sopenharmony_ci#define IEC958_AES5_CON_CGMSA_COPYFREELY (0<<0)	/* copying is permitted without restriction */
15462306a36Sopenharmony_ci#define IEC958_AES5_CON_CGMSA_COPYONCE	(1<<0)	/* one generation of copies may be made */
15562306a36Sopenharmony_ci#define IEC958_AES5_CON_CGMSA_COPYNOMORE (2<<0)	/* condition not be used */
15662306a36Sopenharmony_ci#define IEC958_AES5_CON_CGMSA_COPYNEVER	(3<<0)	/* no copying is permitted */
15762306a36Sopenharmony_ci
15862306a36Sopenharmony_ci/****************************************************************************
15962306a36Sopenharmony_ci *                                                                          *
16062306a36Sopenharmony_ci *        CEA-861 Audio InfoFrame. Used in HDMI and DisplayPort		    *
16162306a36Sopenharmony_ci *                                                                          *
16262306a36Sopenharmony_ci ****************************************************************************/
16362306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CC		(7<<0) /* mask - channel count */
16462306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT		(0xf<<4) /* mask - coding type */
16562306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_FROM_STREAM (0<<4) /* refer to stream */
16662306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_IEC60958	(1<<4) /* IEC-60958 L-PCM */
16762306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_AC3	(2<<4) /* AC-3 */
16862306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_MPEG1	(3<<4) /* MPEG1 Layers 1 & 2 */
16962306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_MP3	(4<<4) /* MPEG1 Layer 3 */
17062306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_MPEG2_MULTICH (5<<4) /* MPEG2 Multichannel */
17162306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_AAC	(6<<4) /* AAC */
17262306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_DTS	(7<<4) /* DTS */
17362306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_ATRAC	(8<<4) /* ATRAC */
17462306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_ONEBIT	(9<<4) /* One Bit Audio */
17562306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_DOLBY_DIG_PLUS (10<<4) /* Dolby Digital + */
17662306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_DTS_HD	(11<<4) /* DTS-HD */
17762306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_MAT	(12<<4) /* MAT (MLP) */
17862306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_DST	(13<<4) /* DST */
17962306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB1CT_WMA_PRO	(14<<4) /* WMA Pro */
18062306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF		(7<<2) /* mask - sample frequency */
18162306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_FROM_STREAM (0<<2) /* refer to stream */
18262306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_32000	(1<<2) /* 32kHz */
18362306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_44100	(2<<2) /* 44.1kHz */
18462306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_48000	(3<<2) /* 48kHz */
18562306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_88200	(4<<2) /* 88.2kHz */
18662306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_96000	(5<<2) /* 96kHz */
18762306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_176400	(6<<2) /* 176.4kHz */
18862306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SF_192000	(7<<2) /* 192kHz */
18962306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SS		(3<<0) /* mask - sample size */
19062306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SS_FROM_STREAM (0<<0) /* refer to stream */
19162306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SS_16BIT	(1<<0) /* 16 bits */
19262306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SS_20BIT	(2<<0) /* 20 bits */
19362306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB2SS_24BIT	(3<<0) /* 24 bits */
19462306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB5_DM_INH	(1<<7) /* mask - inhibit downmixing */
19562306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB5_DM_INH_PERMITTED (0<<7) /* stereo downmix permitted */
19662306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB5_DM_INH_PROHIBITED (1<<7) /* stereo downmis prohibited */
19762306a36Sopenharmony_ci#define CEA861_AUDIO_INFOFRAME_DB5_LSV		(0xf<<3) /* mask - level-shift values */
19862306a36Sopenharmony_ci
19962306a36Sopenharmony_ci/*****************************************************************************
20062306a36Sopenharmony_ci *                                                                           *
20162306a36Sopenharmony_ci *                            MIDI v1.0 interface                            *
20262306a36Sopenharmony_ci *                                                                           *
20362306a36Sopenharmony_ci *****************************************************************************/
20462306a36Sopenharmony_ci
20562306a36Sopenharmony_ci#define MIDI_CHANNELS			16
20662306a36Sopenharmony_ci#define MIDI_GM_DRUM_CHANNEL		(10-1)
20762306a36Sopenharmony_ci
20862306a36Sopenharmony_ci/*
20962306a36Sopenharmony_ci *  MIDI commands
21062306a36Sopenharmony_ci */
21162306a36Sopenharmony_ci
21262306a36Sopenharmony_ci#define MIDI_CMD_NOTE_OFF		0x80
21362306a36Sopenharmony_ci#define MIDI_CMD_NOTE_ON		0x90
21462306a36Sopenharmony_ci#define MIDI_CMD_NOTE_PRESSURE		0xa0
21562306a36Sopenharmony_ci#define MIDI_CMD_CONTROL		0xb0
21662306a36Sopenharmony_ci#define MIDI_CMD_PGM_CHANGE		0xc0
21762306a36Sopenharmony_ci#define MIDI_CMD_CHANNEL_PRESSURE	0xd0
21862306a36Sopenharmony_ci#define MIDI_CMD_BENDER			0xe0
21962306a36Sopenharmony_ci
22062306a36Sopenharmony_ci#define MIDI_CMD_COMMON_SYSEX		0xf0
22162306a36Sopenharmony_ci#define MIDI_CMD_COMMON_MTC_QUARTER	0xf1
22262306a36Sopenharmony_ci#define MIDI_CMD_COMMON_SONG_POS	0xf2
22362306a36Sopenharmony_ci#define MIDI_CMD_COMMON_SONG_SELECT	0xf3
22462306a36Sopenharmony_ci#define MIDI_CMD_COMMON_TUNE_REQUEST	0xf6
22562306a36Sopenharmony_ci#define MIDI_CMD_COMMON_SYSEX_END	0xf7
22662306a36Sopenharmony_ci#define MIDI_CMD_COMMON_CLOCK		0xf8
22762306a36Sopenharmony_ci#define MIDI_CMD_COMMON_START		0xfa
22862306a36Sopenharmony_ci#define MIDI_CMD_COMMON_CONTINUE	0xfb
22962306a36Sopenharmony_ci#define MIDI_CMD_COMMON_STOP		0xfc
23062306a36Sopenharmony_ci#define MIDI_CMD_COMMON_SENSING		0xfe
23162306a36Sopenharmony_ci#define MIDI_CMD_COMMON_RESET		0xff
23262306a36Sopenharmony_ci
23362306a36Sopenharmony_ci/*
23462306a36Sopenharmony_ci *  MIDI controllers
23562306a36Sopenharmony_ci */
23662306a36Sopenharmony_ci
23762306a36Sopenharmony_ci#define MIDI_CTL_MSB_BANK		0x00
23862306a36Sopenharmony_ci#define MIDI_CTL_MSB_MODWHEEL         	0x01
23962306a36Sopenharmony_ci#define MIDI_CTL_MSB_BREATH           	0x02
24062306a36Sopenharmony_ci#define MIDI_CTL_MSB_FOOT             	0x04
24162306a36Sopenharmony_ci#define MIDI_CTL_MSB_PORTAMENTO_TIME 	0x05
24262306a36Sopenharmony_ci#define MIDI_CTL_MSB_DATA_ENTRY		0x06
24362306a36Sopenharmony_ci#define MIDI_CTL_MSB_MAIN_VOLUME      	0x07
24462306a36Sopenharmony_ci#define MIDI_CTL_MSB_BALANCE          	0x08
24562306a36Sopenharmony_ci#define MIDI_CTL_MSB_PAN              	0x0a
24662306a36Sopenharmony_ci#define MIDI_CTL_MSB_EXPRESSION       	0x0b
24762306a36Sopenharmony_ci#define MIDI_CTL_MSB_EFFECT1		0x0c
24862306a36Sopenharmony_ci#define MIDI_CTL_MSB_EFFECT2		0x0d
24962306a36Sopenharmony_ci#define MIDI_CTL_MSB_GENERAL_PURPOSE1 	0x10
25062306a36Sopenharmony_ci#define MIDI_CTL_MSB_GENERAL_PURPOSE2 	0x11
25162306a36Sopenharmony_ci#define MIDI_CTL_MSB_GENERAL_PURPOSE3 	0x12
25262306a36Sopenharmony_ci#define MIDI_CTL_MSB_GENERAL_PURPOSE4 	0x13
25362306a36Sopenharmony_ci#define MIDI_CTL_LSB_BANK		0x20
25462306a36Sopenharmony_ci#define MIDI_CTL_LSB_MODWHEEL        	0x21
25562306a36Sopenharmony_ci#define MIDI_CTL_LSB_BREATH           	0x22
25662306a36Sopenharmony_ci#define MIDI_CTL_LSB_FOOT             	0x24
25762306a36Sopenharmony_ci#define MIDI_CTL_LSB_PORTAMENTO_TIME 	0x25
25862306a36Sopenharmony_ci#define MIDI_CTL_LSB_DATA_ENTRY		0x26
25962306a36Sopenharmony_ci#define MIDI_CTL_LSB_MAIN_VOLUME      	0x27
26062306a36Sopenharmony_ci#define MIDI_CTL_LSB_BALANCE          	0x28
26162306a36Sopenharmony_ci#define MIDI_CTL_LSB_PAN              	0x2a
26262306a36Sopenharmony_ci#define MIDI_CTL_LSB_EXPRESSION       	0x2b
26362306a36Sopenharmony_ci#define MIDI_CTL_LSB_EFFECT1		0x2c
26462306a36Sopenharmony_ci#define MIDI_CTL_LSB_EFFECT2		0x2d
26562306a36Sopenharmony_ci#define MIDI_CTL_LSB_GENERAL_PURPOSE1 	0x30
26662306a36Sopenharmony_ci#define MIDI_CTL_LSB_GENERAL_PURPOSE2 	0x31
26762306a36Sopenharmony_ci#define MIDI_CTL_LSB_GENERAL_PURPOSE3 	0x32
26862306a36Sopenharmony_ci#define MIDI_CTL_LSB_GENERAL_PURPOSE4 	0x33
26962306a36Sopenharmony_ci#define MIDI_CTL_SUSTAIN              	0x40
27062306a36Sopenharmony_ci#define MIDI_CTL_PORTAMENTO           	0x41
27162306a36Sopenharmony_ci#define MIDI_CTL_SOSTENUTO            	0x42
27262306a36Sopenharmony_ci#define MIDI_CTL_SOFT_PEDAL           	0x43
27362306a36Sopenharmony_ci#define MIDI_CTL_LEGATO_FOOTSWITCH	0x44
27462306a36Sopenharmony_ci#define MIDI_CTL_HOLD2                	0x45
27562306a36Sopenharmony_ci#define MIDI_CTL_SC1_SOUND_VARIATION	0x46
27662306a36Sopenharmony_ci#define MIDI_CTL_SC2_TIMBRE		0x47
27762306a36Sopenharmony_ci#define MIDI_CTL_SC3_RELEASE_TIME	0x48
27862306a36Sopenharmony_ci#define MIDI_CTL_SC4_ATTACK_TIME	0x49
27962306a36Sopenharmony_ci#define MIDI_CTL_SC5_BRIGHTNESS		0x4a
28062306a36Sopenharmony_ci#define MIDI_CTL_SC6			0x4b
28162306a36Sopenharmony_ci#define MIDI_CTL_SC7			0x4c
28262306a36Sopenharmony_ci#define MIDI_CTL_SC8			0x4d
28362306a36Sopenharmony_ci#define MIDI_CTL_SC9			0x4e
28462306a36Sopenharmony_ci#define MIDI_CTL_SC10			0x4f
28562306a36Sopenharmony_ci#define MIDI_CTL_GENERAL_PURPOSE5     	0x50
28662306a36Sopenharmony_ci#define MIDI_CTL_GENERAL_PURPOSE6     	0x51
28762306a36Sopenharmony_ci#define MIDI_CTL_GENERAL_PURPOSE7     	0x52
28862306a36Sopenharmony_ci#define MIDI_CTL_GENERAL_PURPOSE8     	0x53
28962306a36Sopenharmony_ci#define MIDI_CTL_PORTAMENTO_CONTROL	0x54
29062306a36Sopenharmony_ci#define MIDI_CTL_E1_REVERB_DEPTH	0x5b
29162306a36Sopenharmony_ci#define MIDI_CTL_E2_TREMOLO_DEPTH	0x5c
29262306a36Sopenharmony_ci#define MIDI_CTL_E3_CHORUS_DEPTH	0x5d
29362306a36Sopenharmony_ci#define MIDI_CTL_E4_DETUNE_DEPTH	0x5e
29462306a36Sopenharmony_ci#define MIDI_CTL_E5_PHASER_DEPTH	0x5f
29562306a36Sopenharmony_ci#define MIDI_CTL_DATA_INCREMENT       	0x60
29662306a36Sopenharmony_ci#define MIDI_CTL_DATA_DECREMENT       	0x61
29762306a36Sopenharmony_ci#define MIDI_CTL_NONREG_PARM_NUM_LSB  	0x62
29862306a36Sopenharmony_ci#define MIDI_CTL_NONREG_PARM_NUM_MSB  	0x63
29962306a36Sopenharmony_ci#define MIDI_CTL_REGIST_PARM_NUM_LSB  	0x64
30062306a36Sopenharmony_ci#define MIDI_CTL_REGIST_PARM_NUM_MSB	0x65
30162306a36Sopenharmony_ci#define MIDI_CTL_ALL_SOUNDS_OFF		0x78
30262306a36Sopenharmony_ci#define MIDI_CTL_RESET_CONTROLLERS	0x79
30362306a36Sopenharmony_ci#define MIDI_CTL_LOCAL_CONTROL_SWITCH	0x7a
30462306a36Sopenharmony_ci#define MIDI_CTL_ALL_NOTES_OFF		0x7b
30562306a36Sopenharmony_ci#define MIDI_CTL_OMNI_OFF		0x7c
30662306a36Sopenharmony_ci#define MIDI_CTL_OMNI_ON		0x7d
30762306a36Sopenharmony_ci#define MIDI_CTL_MONO1			0x7e
30862306a36Sopenharmony_ci#define MIDI_CTL_MONO2			0x7f
30962306a36Sopenharmony_ci
31062306a36Sopenharmony_ci#endif /* __SOUND_ASOUNDEF_H */
311