mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-20 05:31:30 +00:00
mx7dsabresd: Set VLD04 output to 2.8V in PMIC initialization.
This change sets the VLDO4 settings output to 2.8V in PMIC initialization so that the MIPI DSI/CSI input voltage is 2.8V as per the schematics. The original code provides an output of 3.3V which violates the voltage mentioned in the schematics. Signed-off-by: Gautam Bhat <mindentropy@gmail.com> Acked-by: Fabio Estevam <fabio.estevam@nxp.com>
This commit is contained in:
parent
a1d1fdc920
commit
d8fab10cb4
1 changed files with 6 additions and 0 deletions
|
@ -354,6 +354,12 @@ int power_init_board(void)
|
||||||
|
|
||||||
pmic_clrsetbits(dev, PFUZE3000_LDOGCTL, 0, 1);
|
pmic_clrsetbits(dev, PFUZE3000_LDOGCTL, 0, 1);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set the voltage of VLDO4 output to 2.8V which feeds
|
||||||
|
* the MIPI DSI and MIPI CSI inputs.
|
||||||
|
*/
|
||||||
|
pmic_clrsetbits(dev, PFUZE3000_VLD4CTL, 0xF, 0xA);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue