summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorScott Sweeny <scott.sweeny@timesys.com>2009-04-29 14:56:31 -0400
committerScott Sweeny <scott.sweeny@timesys.com>2009-04-29 14:56:31 -0400
commit2a49dad1279e3ec605ae432a08ba459493406075 (patch)
tree9b150a2e1fbae80f93262aa9e8fa95dd4cafe917 /board
parentc8b2db6b7dead3d9aa65758603153a61cd9c40b8 (diff)
Add support for OMAP3530LV SOM
This patch originally from LogicPD OMAP35x Release 1.5.0 Original Patch Name: u-boot-1.1.4-omap3430-lv-som-04.patch
Diffstat (limited to 'board')
-rw-r--r--board/omap3430lv_som/omap3430lv_som.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/omap3430lv_som/omap3430lv_som.c b/board/omap3430lv_som/omap3430lv_som.c
index a324cf2cbc..472d2b6f98 100644
--- a/board/omap3430lv_som/omap3430lv_som.c
+++ b/board/omap3430lv_som/omap3430lv_som.c
@@ -52,7 +52,11 @@ int board_init(void)
DECLARE_GLOBAL_DATA_PTR;
gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
+#if 1
+ gd->bd->bi_arch_number = MACH_TYPE_OMAP3530_LV_SOM; /* board id for Linux */
+#else
gd->bd->bi_arch_number = MACH_TYPE_OMAP_3430LV_SOM; /* board id for Linux */
+#endif
gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); /* boot param addr */
return 0;