Hi everybody!
I want to change the voltage of the power supply of my PL (Vcc_int) in order to carry out tests on the XCZU3EG FPGA.
Here is what I understood:
- Access to PMIC through the I2C MUX (see sheet 25 "AES-ULTRA96-G" attachment and "tca9548a" which is the i2C MUX DataSheet)
- I2C MUX adress : 0x75
- Channel to communicate with PMIC : 0x10
- Write in the BUCK2 register in the PMIC to change Vcc_int (see sheet 26 "AES-ULTRA96-G" and "tiduep5a" which is the PMIC DataSheet)
- PMIC adress : 0x5E (see table sheet 42 "tps650861")
- BUCK2 register adress : 0x21 (see table sheet 23 "tps650861")
- Value to change tension (see table sheet 23 "tps650861")
This is what i did :
My question is : Is it possible to modify the BUCK 2 register by sending the information to the chain with the XIicPs_MasterSendPolled function ? The I2C MUX is the master and PMIC the Slave.
Justin