MIPS: convert CONFIG_SYS_MIPS_TIMER_FREQ to Kconfig
[platform/kernel/u-boot.git] / include / configs / am335x_shc.h
index f4a000f..08bae9b 100644 (file)
 #include <configs/ti_am335x_common.h>
 
 /* settings we don;t want on this board */
-#undef CONFIG_CMD_SPI
-
-#define CONFIG_CMD_CACHE
-
-#ifndef CONFIG_SPL_BUILD
-# define CONFIG_TIMESTAMP
-#endif
-
-#define CONFIG_SYS_BOOTM_LEN           (16 << 20)
 
 /* Clock Defines */
 #define V_OSCK                         24000000  /* Clock output from T2 */
 #define V_SCLK                         (V_OSCK)
 
-/*
- * in case of SD Card or Network boot we want to have a possibility to
- * debrick the shc, therefore do not read environment from eMMC
- */
-#if defined(CONFIG_SHC_SDBOOT) || defined(CONFIG_SHC_NETBOOT)
-#define CONFIG_SYS_MMC_ENV_DEV         0
-#else
-#define CONFIG_SYS_MMC_ENV_DEV         1
-#endif
-
-/*
- * Info when using boot partitions: As environment resides within first
- * 128 kB, MLO must start at 128 kB == 0x20000
- * ENV at MMC Boot0 Partition - 0/Undefined=user, 1=boot0, 2=boot1,
- * 4..7=general0..3
- */
-#define CONFIG_ENV_SIZE                                0x1000 /* 4 KB */
-#define CONFIG_ENV_OFFSET                      0x7000 /* 28 kB */
-
 #define CONFIG_HSMMC2_8BIT
 
-#define CONFIG_ENV_OFFSET_REDUND    0x9000 /* 36 kB */
-#define CONFIG_ENV_SIZE_REDUND      CONFIG_ENV_SIZE
-
-#ifndef CONFIG_SHC_ICT
-/*
- * In builds other than ICT, reset to retry after timeout
- * Define a timeout after which a stopped bootloader continues autoboot
- * (only works with CONFIG_RESET_TO_RETRY)
- */
-# define CONFIG_BOOT_RETRY_TIME 30
-# define CONFIG_RESET_TO_RETRY
-#endif
-
 #ifndef CONFIG_SPL_BUILD
 #define CONFIG_EXTRA_ENV_SETTINGS \
        "loadaddr=0x80200000\0" \
 
 #if defined CONFIG_SHC_NETBOOT
 /* Network Boot */
-# define CONFIG_BOOTCOMMAND \
-       "run fusecmd; " \
-       "if run netboot; then " \
-               "echo Booting from network; " \
-       "else " \
-               "echo ERROR: Cannot boot from network!; " \
-               "panic; " \
-       "fi; "
 
 #elif defined CONFIG_SHC_SDBOOT /* !defined CONFIG_SHC_NETBOOT */
 /* SD-Card Boot */
-# define CONFIG_BOOTCOMMAND \
-       "if mmc dev 0; mmc rescan; then " \
-               "run sd_setup; " \
-       "else " \
-               "echo ERROR: SD/MMC-Card not detected!; " \
-               "panic; " \
-       "fi; " \
-       "if run loaduimage; then " \
-               "echo Bootable SD/MMC-Card inserted, booting from it!; " \
-               "run mmcboot; " \
-       "else " \
-               "echo ERROR: Unable to load uImage from SD/MMC-Card!; " \
-               "panic; " \
-       "fi; "
 
 #elif defined CONFIG_SHC_ICT
 /* ICT adapter boots only u-boot and does HW partitioning */
-# define CONFIG_BOOTCOMMAND \
-       "if mmc dev 0; mmc rescan; then " \
-               "run sd_setup; " \
-       "else " \
-               "echo ERROR: SD/MMC-Card not detected!; " \
-               "panic; " \
-       "fi; " \
-       "run fusecmd; "
 
 #else /* !defined CONFIG_SHC_NETBOOT, !defined CONFIG_SHC_SDBOOT */
 /* Regular Boot from internal eMMC */
-# define CONFIG_BOOTCOMMAND \
-       "if mmc dev 1; mmc rescan; then " \
-               "run emmc_setup; " \
-       "else " \
-               "echo ERROR: eMMC device not detected!; " \
-               "panic; " \
-       "fi; " \
-       "if run loaduimage; then " \
-               "run mmcboot; " \
-       "else " \
-               "echo ERROR Unable to load uImage from eMMC!; " \
-               "echo Performing Rollback!; " \
-               "setenv _active_ ${active_root}; " \
-               "setenv _inactive_ ${inactive_root}; " \
-               "setenv active_root ${_inactive_}; " \
-               "setenv inactive_root ${_active_}; " \
-               "saveenv; " \
-               "reset; " \
-       "fi; "
 
 #endif /* Regular Boot */
 
 #define CONFIG_SYS_NS16550_COM5                0x481a8000      /* UART4 */
 #define CONFIG_SYS_NS16550_COM6                0x481aa000      /* UART5 */
 
-/* PMIC support */
-#define CONFIG_POWER_TPS65217
-
-/* SPL */
-
-/*
- * Disable MMC DM for SPL build and can be re-enabled after adding
- * DM support in SPL
- */
-#ifdef CONFIG_SPL_BUILD
-#undef CONFIG_DM_MMC
-#undef CONFIG_TIMER
-#endif
-
-#define CONFIG_BOOTP_DEFAULT
-#define CONFIG_BOOTP_DNS2
-#define CONFIG_BOOTP_SEND_HOSTNAME
-#define CONFIG_NET_RETRY_COUNT         10
-#define CONFIG_PHY_SMSC
-
-/* I2C configuration */
-#define CONFIG_SYS_I2C_EEPROM_ADDR     0x50    /* Main EEPROM */
-#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
-#define CONFIG_SYS_I2C_SPEED           400000
-#define CONFIG_SYS_I2C_SLAVE           1
 #endif /* ! __CONFIG_AM335X_SHC_H */