Skip to content
Snippets Groups Projects
Commit d8fab10c authored by Gautam Bhat's avatar Gautam Bhat Committed by Stefano Babic
Browse files

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: default avatarGautam Bhat <mindentropy@gmail.com>
Acked-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
parent a1d1fdc9
No related branches found
No related tags found
No related merge requests found
...@@ -354,6 +354,12 @@ int power_init_board(void) ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment