This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TLV320AIC34: Output Sound from DAC to HPLOUT and HPLCOM

Part Number: TLV320AIC34

Hello TI forums,

I would like to pass I2S data through DAC and out through the HPLOUT_A and HPLCOM_A ports. So far, I have been writing to registers:

## reg 37: powerup DAC
i2cset -y 1 0x18 0x25 0xC0

## reg 7: enable DAC
i2cset -y 1 0x18 0x07 0x0A

## reg 47 : route DAC_L1 to HPLOUT
i2cset -y 1 0x18 0x2F 0x80

## reg 50 : route DAC_R1 to HPLOUT
i2cset -y 1 0x18 0x32 0x80

## reg 54 : DAC_L1 to HPLCOM
i2cset -y 1 0x18 0x36 0x80

## reg 57 : DAC_R1 to HPLCOM
i2cset -y 1 0x18 0x39 0x80

## reg 51 : HPLOUT_x Output Level Control Register
i2cset -y 1 0x18 0x33 0x99

## reg 58 : HPLCOM_x Output Level Control Register
i2cset -y 1 0x18 0x3A 0x99

Can anyone suggest which registers I am missing/changes to output sound?

Thank you.