summaryrefslogtreecommitdiff
path: root/board/isee/igep00x0/common.c
diff options
context:
space:
mode:
authorPau Pajuelo <ppajuel@gmail.com>2017-08-17 01:09:14 (GMT)
committerTom Rini <trini@konsulko.com>2017-08-26 18:56:12 (GMT)
commit195dc23185400fa605d268c3d903c83286ecae37 (patch)
tree150654fbc9101cf12a74f53ed1289276f17a40b9 /board/isee/igep00x0/common.c
parent4c699a4747e763e82cc813c955d318b966303b81 (diff)
downloadu-boot-195dc23185400fa605d268c3d903c83286ecae37.tar.xz
igep00x0: merge igep0020 and igep0030 defconfigs to igep00x0_defconfig
Update igep00x0 code with the following features: - Add board and revision detection for the boards: - IGEP0020-RF - IGEP0020-RC - IGEP0030-RG - IGEP0030-RE - Merge IGEP0020 and IGEP0030 mux tables - Add suport to use GPIO_126, GPIO_127 and GPIO_129 - board_name and board_rev environment variables display board and revision informations - Move dtb name selection from code to boot script Signed-off-by: Pau Pajuelo <ppajuel@gmail.com> Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Tested-by: Pau Pajuelo <ppajuel@gmail.com>
Diffstat (limited to 'board/isee/igep00x0/common.c')
-rw-r--r--board/isee/igep00x0/common.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/board/isee/igep00x0/common.c b/board/isee/igep00x0/common.c
index b8f1c14..e59516f 100644
--- a/board/isee/igep00x0/common.c
+++ b/board/isee/igep00x0/common.c
@@ -22,14 +22,6 @@ DECLARE_GLOBAL_DATA_PTR;
void set_muxconf_regs(void)
{
MUX_DEFAULT();
-
-#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
- MUX_IGEP0020();
-#endif
-
-#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
- MUX_IGEP0030();
-#endif
}
/*
@@ -60,10 +52,6 @@ int board_init(void)
/* boot param addr */
gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
-#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
- status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_ON);
-#endif
-
return 0;
}