diff options
author | Pau Pajuelo <ppajuel@gmail.com> | 2017-08-17 03:09:14 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-26 14:56:12 -0400 |
commit | 195dc23185400fa605d268c3d903c83286ecae37 (patch) | |
tree | 150654fbc9101cf12a74f53ed1289276f17a40b9 /board/isee/igep00x0/common.c | |
parent | 4c699a4747e763e82cc813c955d318b966303b81 (diff) | |
download | u-boot-195dc23185400fa605d268c3d903c83286ecae37.tar.gz |
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.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/board/isee/igep00x0/common.c b/board/isee/igep00x0/common.c index b8f1c14f6a..e59516f612 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; } |