I'm using TPS65987DDH and I interface it with I2c with an external processor
the I2C communication works
I read the version and the boot flags registers, but something not right!!
the version register : 0x4, 0x0, 0x12, 0x7 ->0x04001207 -->400.12.7 (is it correct ??)
the boot flags : byte1:0xc, 0xfc, 0x0, 0x0, 0x0, 0xa2, 0x6, 0x0, 0x0, 0x30, 0x0, 0x0
I have problem with the 4CC command I always get 0x04 in the first byte
read reg 0x03 --> b'\x04APP '
read reg 0x04 --> b'\x04\x00\x00\x00\x00' (should be b'\x04I2C ' ) and it does not recognise any 4CC command
write 'GSkC' to 0x08 --> read 0x08 --> b'\x04!CMD'
write 'GSrC' to 0x08 --> read 0x08 --> b'\x04!CMD'
write 'Gaid' to 0x08 --> read 0x08 --> b'\x04!CMD'
write 'FLrr' to 0x08 --> read 0x08 --> b'\x04!CMD' there is no 4CC command with valid response
I can't load Patch Bundle
Did I miss something to make the 4CC command works?