ZHCSF47E June 2016 – December 2017 TAS2560
PRODUCTION DATA.
The following code example provide the correct sequence including patch to power up the device, unmute and mute, and provide a clean power-down. The PurePath Console 3 Software TAS2560 Application software will create output files with the most updated patch commands. The following is a example of powering up the part in DSP Mode 2 with proper sequencing.
Example script (Power up Mode 2 and Unmute):
#############################################################################################
i i2cstd
#mclk expected is 12.288 MHz
#configuring device registers for 8 ohm speaker load
########################### DEVICE INIT SEQ START##############################################
w 98 00 00 #Page-0
w 98 7f 00 #Book-0
w 98 01 01 #Software reset (PAGE0_REG1)
d 1 #Required=50e-6 #wait time for OTP-One Time Programmable memory values to be transferred to device
##### INIT SECTION START
w 98 49 0c
w 98 3c 33
##### INIT SECTION END
##### DSP PROG SETTING START
w 98 02 02 # operate device in dev mode 2
w 98 21 00 #disable clock error detection
w 98 08 81 # SSM enabled
##### DSP PROG SETTING END
########################### DEVICE INIT SEQ END ###############################################
################### CHANNEL POWER UP ####################################################
w 98 07 41 #power up device mute class d
############################################################################################
##### DSP patch
d 10
w 98 00 32
w 98 28 7F FB B5 00
w 98 2c 80 04 4c 00
w 98 30 7F F7 6A 00
w 98 1c 7F Ff ff ff
w 98 20 00 00 00 00
w 98 24 00 00 00 00
w 98 00 3
w 98 18 04 cc cc cc
w 98 00 00
##### DSP patch update END
w 98 07 40 #power up device unmute class d
## optional(ending the script in B0_P0)
w 98 00 00 # page 0
w 98 7f 00 # book 0
########################################