hi,
On our custom board, we use PRTCSS GIO2 to control the LDO enable pin of the PMIC(TDS65023).
we set the prtcss to external reset mode. We use uboot to write reg as the following sequence:
mw 1c69008 00007BFF //GIO bit2 to output, and output val =1.
mw 1c69004 000F0001 //write to PTRC_CTRL
mw 1c69004 010F0001 //change to read mode
md 1c69000 4 //read reg val
here we got the reg value:
01C69000: 00000000 010F0001 00007BFF 00000000
Reference to the PRTCSS User Guide (SPRUFJ0A) the 0x1c69008 should be 00047B7F.
how can we set the right value to GIO_Out or set PRTCSS GIO2 to output mode? thanks.