mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 15:08:59 +00:00
MX28: Shuffle around the power management code
Move some function calls to a more appropriate place, so they're called only when needed. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Stefano Babic <sbabic@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
parent
1b0f5597fb
commit
fdb00b8127
1 changed files with 3 additions and 6 deletions
|
@ -661,17 +661,14 @@ void mxs_power_configure_power_source(void)
|
|||
|
||||
mxs_src_power_init();
|
||||
|
||||
batt_ready = mxs_is_batt_ready();
|
||||
|
||||
if (readl(&power_regs->hw_power_sts) & POWER_STS_VDD5V_GT_VDDIO) {
|
||||
batt_good = mxs_is_batt_good();
|
||||
batt_ready = mxs_is_batt_ready();
|
||||
if (batt_ready) {
|
||||
/* 5V source detected, good battery detected. */
|
||||
mxs_batt_boot();
|
||||
} else {
|
||||
if (batt_good) {
|
||||
/* 5V source detected, low battery detceted. */
|
||||
} else {
|
||||
batt_good = mxs_is_batt_good();
|
||||
if (!batt_good) {
|
||||
/* 5V source detected, bad battery detected. */
|
||||
writel(LRADC_CONVERSION_AUTOMATIC,
|
||||
&lradc_regs->hw_lradc_conversion_clr);
|
||||
|
|
Loading…
Add table
Reference in a new issue