summaryrefslogtreecommitdiffstats
path: root/cpu/mpc83xx
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2006-01-11 11:21:14 -0600
committerKumar Gala <galak@kernel.crashing.org>2006-01-11 11:21:14 -0600
commita15b44dbfa2e4537b231da066b589992b0ee629d (patch)
treea0f1f6554d9559a8cb913f2c06ab4cee1edaa12d /cpu/mpc83xx
parentce574ff5060b63b1bad143d84f0c386892d3243f (diff)
downloadblackbird-obmc-uboot-a15b44dbfa2e4537b231da066b589992b0ee629d.tar.gz
blackbird-obmc-uboot-a15b44dbfa2e4537b231da066b589992b0ee629d.zip
Allow config of GPIO direction & data registers at boot on 83xx
Patch by Kumar Gala, 11 Jan 2006
Diffstat (limited to 'cpu/mpc83xx')
-rw-r--r--cpu/mpc83xx/cpu_init.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpu/mpc83xx/cpu_init.c b/cpu/mpc83xx/cpu_init.c
index e75b8b7fde..db28a6a31a 100644
--- a/cpu/mpc83xx/cpu_init.c
+++ b/cpu/mpc83xx/cpu_init.c
@@ -154,6 +154,14 @@ void cpu_init_f (volatile immap_t * im)
im->sysconf.lblaw[7].bar = CFG_LBLAWBAR7_PRELIM;
im->sysconf.lblaw[7].ar = CFG_LBLAWAR7_PRELIM;
#endif
+#ifdef CFG_GPIO1_PRELIM
+ im->pgio[0].dir = CFG_GPIO1_DIR;
+ im->pgio[0].dat = CFG_GPIO1_DAT;
+#endif
+#ifdef CFG_GPIO2_PRELIM
+ im->pgio[1].dir = CFG_GPIO2_DIR;
+ im->pgio[1].dat = CFG_GPIO2_DAT;
+#endif
}
OpenPOWER on IntegriCloud