############################################### # Software Reset ############################################### # # Select Page 0 w 30 00 00 # # Initialize the device through software reset w 30 01 01 # ############################################### ############################################### # Clock Settings # --------------------------------------------- #The input clock signal : MCLK = 11.2896 MHz,BLCK = 1.4 MHz, WCLK = 44.1 kHz ############################################### # # Select Page 0 w 30 00 00 # # NADC = 1, MADC = 2 w 30 12 81 82 # # NDAC = 1, MDAC = 2 w 30 0b 81 82 # ############################################### ############################################### # Signal Processing Settings ############################################### # # Select Page 0 # w 30 00 00 # # Set the ADC Mode to PRB_P1 w 30 3d 01 # # Set the DAC Mode to PRB_P8 w 30 3c 08 # ############################################### ############################################### # Enable Loopback Page 0 register 29 ############################################### # # Loopback enable for stereo audio data # TI: why do you loop both DOUT to DIN and DOUT to DIN? You just need to set DOUT to DIN if the intention is to take MIC input to HP output. So, set it to 0x10. w 30 1D 30 # ############################################### ############################################### # Initialize Codec ############################################### # # Select Page 1 w 30 00 01 # # Disable weak AVDD in presence of external # AVDD supply w 30 01 08 # # Enable Master Analog Power Control; AVDD LDO is powered down w 30 02 00 # # Select ADC PTM_R4 w 30 3d 00 # # Set the input powerup time to 3.1ms (for ADC) w 30 47 32 # # Set the REF charging time to 40ms w 30 7b 01 # ############################################### ############################################### AGC ############################################### w 30 00 00 w 30 57 7E # TI: First run the script without AGC to ensure path is correct and data is good, so set it to 0x00 # TI: Once the path is confirmed, then you can play with the AGC setting. w 30 56 A0 w 30 58 64 w 30 59 08 w 30 5A 32 w 30 5B 00 w 30 5C 06 ############################################### ############################################### # Recording Setup ############################################### # # Select Page 1 w 30 00 01 # # MICBIAS set to 1.7V w 30 33 50 # # Route IN3L to LEFT_PGA_P with 10K input impedance w 30 34 04 # Route IN3R to LEFT_PGA_N with 10K input impedance w 30 36 04 # No connection to Right_PGA_P w 30 37 00 # No connection to Right_PGA_N w 30 39 00 # w 30 3b 0c w 30 3c 0c # ############################################### ############################################### # Playback Setup ############################################### # # Select Page 1 w 30 00 01 # # De-pop/Soft stepping w 30 14 25 # # Route LDAC to HPL and RDAC to HPR # TI: This should be 0x08 and 0x08 w 30 0c 08 01 # w 30 0e 00 00 # # HPL/HPR powered up w 30 09 30 # # Unmute HPL/HPR driver, 0dB Gain # TI: this should be address 0x10 and 0x11 and not 0x10 and 0x12 w 30 10 00 00 w 30 12 00 00 # # Select Page 0 w 30 00 00 # # DAC => 0dB w 30 41 00 00 # # Power up LADC/RADC w 30 51 c0 # # Unmute LADC/RADC w 30 52 00 # # Power up LDAC/RDAC # TI: you can set to 0xd4 to enable soft-stepping w 30 3f d6 # # Unmute LDAC/RDAC w 30 40 00 # ###############################################