summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/pmu_tps65090.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/common/pmu_tps65090.c b/common/pmu_tps65090.c
index c797919da2..240d97b1d0 100644
--- a/common/pmu_tps65090.c
+++ b/common/pmu_tps65090.c
@@ -621,7 +621,7 @@ static void pmu_chipset_startup(void)
{
pmu_init();
-#if defined(BOARD_pit) || defined(BOARD_puppy)
+#if defined(BOARD_puppy)
/* Enable all FETs.
*
* TODO: This is temporary code; remove when I2C passthru is working
@@ -634,6 +634,12 @@ static void pmu_chipset_startup(void)
for (i = 1; i <= 7; i++)
pmu_enable_fet(i, 1, &pgood);
}
+#elif defined(BOARD_pit)
+ /* Enable FET4 by default which allows for SD Card booting */
+ {
+ int pgood;
+ pmu_enable_fet(4, 1, &pgood);
+ }
#endif
}
DECLARE_HOOK(HOOK_CHIPSET_STARTUP, pmu_chipset_startup, HOOK_PRIO_DEFAULT);