~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/soc/codecs/tlv320aic26.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /sound/soc/codecs/tlv320aic26.h (Version linux-6.12-rc7) and /sound/soc/codecs/tlv320aic26.h (Version linux-3.10.108)


  1 /* SPDX-License-Identifier: GPL-2.0 */         << 
  2 /*                                                  1 /*
  3  * Texas Instruments TLV320AIC26 low power aud      2  * Texas Instruments TLV320AIC26 low power audio CODEC
  4  * register definitions                             3  * register definitions
  5  *                                                  4  *
  6  * Copyright (C) 2008 Secret Lab Technologies       5  * Copyright (C) 2008 Secret Lab Technologies Ltd.
  7  */                                                 6  */
  8                                                     7 
  9 #ifndef _TLV320AIC26_H_                        !!   8 #ifndef _TLV320AIC16_H_
 10 #define _TLV320AIC26_H_                        !!   9 #define _TLV320AIC16_H_
 11                                                    10 
 12 /* AIC26 Registers */                              11 /* AIC26 Registers */
 13 #define AIC26_PAGE_ADDR(page, offset)   ((page !!  12 #define AIC26_READ_COMMAND_WORD(addr)   ((1 << 15) | (addr << 5))
                                                   >>  13 #define AIC26_WRITE_COMMAND_WORD(addr)  ((0 << 15) | (addr << 5))
                                                   >>  14 #define AIC26_PAGE_ADDR(page, offset)   ((page << 6) | offset)
                                                   >>  15 #define AIC26_NUM_REGS                  AIC26_PAGE_ADDR(3, 0)
 14                                                    16 
 15 /* Page 0: Auxiliary data registers */             17 /* Page 0: Auxiliary data registers */
 16 #define AIC26_REG_BAT1                  AIC26_     18 #define AIC26_REG_BAT1                  AIC26_PAGE_ADDR(0, 0x05)
 17 #define AIC26_REG_BAT2                  AIC26_     19 #define AIC26_REG_BAT2                  AIC26_PAGE_ADDR(0, 0x06)
 18 #define AIC26_REG_AUX                   AIC26_     20 #define AIC26_REG_AUX                   AIC26_PAGE_ADDR(0, 0x07)
 19 #define AIC26_REG_TEMP1                 AIC26_     21 #define AIC26_REG_TEMP1                 AIC26_PAGE_ADDR(0, 0x09)
 20 #define AIC26_REG_TEMP2                 AIC26_     22 #define AIC26_REG_TEMP2                 AIC26_PAGE_ADDR(0, 0x0A)
 21                                                    23 
 22 /* Page 1: Auxiliary control registers */          24 /* Page 1: Auxiliary control registers */
 23 #define AIC26_REG_AUX_ADC               AIC26_     25 #define AIC26_REG_AUX_ADC               AIC26_PAGE_ADDR(1, 0x00)
 24 #define AIC26_REG_STATUS                AIC26_     26 #define AIC26_REG_STATUS                AIC26_PAGE_ADDR(1, 0x01)
 25 #define AIC26_REG_REFERENCE             AIC26_     27 #define AIC26_REG_REFERENCE             AIC26_PAGE_ADDR(1, 0x03)
 26 #define AIC26_REG_RESET                 AIC26_     28 #define AIC26_REG_RESET                 AIC26_PAGE_ADDR(1, 0x04)
 27                                                    29 
 28 /* Page 2: Audio control registers */              30 /* Page 2: Audio control registers */
 29 #define AIC26_REG_AUDIO_CTRL1           AIC26_     31 #define AIC26_REG_AUDIO_CTRL1           AIC26_PAGE_ADDR(2, 0x00)
 30 #define AIC26_REG_ADC_GAIN              AIC26_     32 #define AIC26_REG_ADC_GAIN              AIC26_PAGE_ADDR(2, 0x01)
 31 #define AIC26_REG_DAC_GAIN              AIC26_     33 #define AIC26_REG_DAC_GAIN              AIC26_PAGE_ADDR(2, 0x02)
 32 #define AIC26_REG_SIDETONE              AIC26_     34 #define AIC26_REG_SIDETONE              AIC26_PAGE_ADDR(2, 0x03)
 33 #define AIC26_REG_AUDIO_CTRL2           AIC26_     35 #define AIC26_REG_AUDIO_CTRL2           AIC26_PAGE_ADDR(2, 0x04)
 34 #define AIC26_REG_POWER_CTRL            AIC26_     36 #define AIC26_REG_POWER_CTRL            AIC26_PAGE_ADDR(2, 0x05)
 35 #define AIC26_REG_AUDIO_CTRL3           AIC26_     37 #define AIC26_REG_AUDIO_CTRL3           AIC26_PAGE_ADDR(2, 0x06)
 36                                                    38 
 37 #define AIC26_REG_FILTER_COEFF_L_N0     AIC26_     39 #define AIC26_REG_FILTER_COEFF_L_N0     AIC26_PAGE_ADDR(2, 0x07)
 38 #define AIC26_REG_FILTER_COEFF_L_N1     AIC26_     40 #define AIC26_REG_FILTER_COEFF_L_N1     AIC26_PAGE_ADDR(2, 0x08)
 39 #define AIC26_REG_FILTER_COEFF_L_N2     AIC26_     41 #define AIC26_REG_FILTER_COEFF_L_N2     AIC26_PAGE_ADDR(2, 0x09)
 40 #define AIC26_REG_FILTER_COEFF_L_N3     AIC26_     42 #define AIC26_REG_FILTER_COEFF_L_N3     AIC26_PAGE_ADDR(2, 0x0A)
 41 #define AIC26_REG_FILTER_COEFF_L_N4     AIC26_     43 #define AIC26_REG_FILTER_COEFF_L_N4     AIC26_PAGE_ADDR(2, 0x0B)
 42 #define AIC26_REG_FILTER_COEFF_L_N5     AIC26_     44 #define AIC26_REG_FILTER_COEFF_L_N5     AIC26_PAGE_ADDR(2, 0x0C)
 43 #define AIC26_REG_FILTER_COEFF_L_D1     AIC26_     45 #define AIC26_REG_FILTER_COEFF_L_D1     AIC26_PAGE_ADDR(2, 0x0D)
 44 #define AIC26_REG_FILTER_COEFF_L_D2     AIC26_     46 #define AIC26_REG_FILTER_COEFF_L_D2     AIC26_PAGE_ADDR(2, 0x0E)
 45 #define AIC26_REG_FILTER_COEFF_L_D4     AIC26_     47 #define AIC26_REG_FILTER_COEFF_L_D4     AIC26_PAGE_ADDR(2, 0x0F)
 46 #define AIC26_REG_FILTER_COEFF_L_D5     AIC26_     48 #define AIC26_REG_FILTER_COEFF_L_D5     AIC26_PAGE_ADDR(2, 0x10)
 47 #define AIC26_REG_FILTER_COEFF_R_N0     AIC26_     49 #define AIC26_REG_FILTER_COEFF_R_N0     AIC26_PAGE_ADDR(2, 0x11)
 48 #define AIC26_REG_FILTER_COEFF_R_N1     AIC26_     50 #define AIC26_REG_FILTER_COEFF_R_N1     AIC26_PAGE_ADDR(2, 0x12)
 49 #define AIC26_REG_FILTER_COEFF_R_N2     AIC26_     51 #define AIC26_REG_FILTER_COEFF_R_N2     AIC26_PAGE_ADDR(2, 0x13)
 50 #define AIC26_REG_FILTER_COEFF_R_N3     AIC26_     52 #define AIC26_REG_FILTER_COEFF_R_N3     AIC26_PAGE_ADDR(2, 0x14)
 51 #define AIC26_REG_FILTER_COEFF_R_N4     AIC26_     53 #define AIC26_REG_FILTER_COEFF_R_N4     AIC26_PAGE_ADDR(2, 0x15)
 52 #define AIC26_REG_FILTER_COEFF_R_N5     AIC26_     54 #define AIC26_REG_FILTER_COEFF_R_N5     AIC26_PAGE_ADDR(2, 0x16)
 53 #define AIC26_REG_FILTER_COEFF_R_D1     AIC26_     55 #define AIC26_REG_FILTER_COEFF_R_D1     AIC26_PAGE_ADDR(2, 0x17)
 54 #define AIC26_REG_FILTER_COEFF_R_D2     AIC26_     56 #define AIC26_REG_FILTER_COEFF_R_D2     AIC26_PAGE_ADDR(2, 0x18)
 55 #define AIC26_REG_FILTER_COEFF_R_D4     AIC26_     57 #define AIC26_REG_FILTER_COEFF_R_D4     AIC26_PAGE_ADDR(2, 0x19)
 56 #define AIC26_REG_FILTER_COEFF_R_D5     AIC26_     58 #define AIC26_REG_FILTER_COEFF_R_D5     AIC26_PAGE_ADDR(2, 0x1A)
 57                                                    59 
 58 #define AIC26_REG_PLL_PROG1             AIC26_     60 #define AIC26_REG_PLL_PROG1             AIC26_PAGE_ADDR(2, 0x1B)
 59 #define AIC26_REG_PLL_PROG2             AIC26_     61 #define AIC26_REG_PLL_PROG2             AIC26_PAGE_ADDR(2, 0x1C)
 60 #define AIC26_REG_AUDIO_CTRL4           AIC26_     62 #define AIC26_REG_AUDIO_CTRL4           AIC26_PAGE_ADDR(2, 0x1D)
 61 #define AIC26_REG_AUDIO_CTRL5           AIC26_     63 #define AIC26_REG_AUDIO_CTRL5           AIC26_PAGE_ADDR(2, 0x1E)
 62                                                    64 
 63 /* fsref dividers; used in register 'Audio Con     65 /* fsref dividers; used in register 'Audio Control 1' */
 64 enum aic26_divisors {                              66 enum aic26_divisors {
 65         AIC26_DIV_1     = 0,                       67         AIC26_DIV_1     = 0,
 66         AIC26_DIV_1_5   = 1,                       68         AIC26_DIV_1_5   = 1,
 67         AIC26_DIV_2     = 2,                       69         AIC26_DIV_2     = 2,
 68         AIC26_DIV_3     = 3,                       70         AIC26_DIV_3     = 3,
 69         AIC26_DIV_4     = 4,                       71         AIC26_DIV_4     = 4,
 70         AIC26_DIV_5     = 5,                       72         AIC26_DIV_5     = 5,
 71         AIC26_DIV_5_5   = 6,                       73         AIC26_DIV_5_5   = 6,
 72         AIC26_DIV_6     = 7,                       74         AIC26_DIV_6     = 7,
 73 };                                                 75 };
 74                                                    76 
 75 /* Digital data format */                          77 /* Digital data format */
 76 enum aic26_datfm {                                 78 enum aic26_datfm {
 77         AIC26_DATFM_I2S         = 0 << 8,          79         AIC26_DATFM_I2S         = 0 << 8,
 78         AIC26_DATFM_DSP         = 1 << 8,          80         AIC26_DATFM_DSP         = 1 << 8,
 79         AIC26_DATFM_RIGHTJ      = 2 << 8, /* r     81         AIC26_DATFM_RIGHTJ      = 2 << 8, /* right justified */
 80         AIC26_DATFM_LEFTJ       = 3 << 8, /* l     82         AIC26_DATFM_LEFTJ       = 3 << 8, /* left justified */
 81 };                                                 83 };
 82                                                    84 
 83 /* Sample word length in bits; used in registe     85 /* Sample word length in bits; used in register 'Audio Control 1' */
 84 enum aic26_wlen {                                  86 enum aic26_wlen {
 85         AIC26_WLEN_16   = 0 << 10,                 87         AIC26_WLEN_16   = 0 << 10,
 86         AIC26_WLEN_20   = 1 << 10,                 88         AIC26_WLEN_20   = 1 << 10,
 87         AIC26_WLEN_24   = 2 << 10,                 89         AIC26_WLEN_24   = 2 << 10,
 88         AIC26_WLEN_32   = 3 << 10,                 90         AIC26_WLEN_32   = 3 << 10,
 89 };                                                 91 };
 90                                                    92 
 91 #endif /* _TLV320AIC26_H_ */                   !!  93 #endif /* _TLV320AIC16_H_ */
 92                                                    94 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php