diff options
Diffstat (limited to 'include/configs/seaboard.h')
| -rw-r--r-- | include/configs/seaboard.h | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/include/configs/seaboard.h b/include/configs/seaboard.h index 261f9521a..ae075e786 100644 --- a/include/configs/seaboard.h +++ b/include/configs/seaboard.h @@ -27,6 +27,11 @@  #include <asm/sizes.h>  #include "tegra2-common.h" +/* Enable fdt support for Seaboard. Flash the image in u-boot-dtb.bin */ +#define CONFIG_DEFAULT_DEVICE_TREE	tegra2-seaboard +#define CONFIG_OF_CONTROL +#define CONFIG_OF_SEPARATE +  /* High-level configuration options */  #define TEGRA2_SYSMEM		"mem=384M@0M nvmem=128M@384M mem=512M@512M"  #define V_PROMPT		"Tegra2 (SeaBoard) # " @@ -54,6 +59,14 @@  #define CONFIG_CMD_SF  #define CONFIG_SPI_FLASH_SIZE		(4 << 20) +/* I2C */ +#define CONFIG_TEGRA_I2C +#define CONFIG_SYS_I2C_INIT_BOARD +#define CONFIG_I2C_MULTI_BUS +#define CONFIG_SYS_MAX_I2C_BUS		4 +#define CONFIG_SYS_I2C_SPEED		100000 +#define CONFIG_CMD_I2C +  /* SD/MMC */  #define CONFIG_MMC  #define CONFIG_GENERIC_MMC @@ -72,4 +85,11 @@  #define CONFIG_ENV_SECT_SIZE    CONFIG_ENV_SIZE  #define CONFIG_ENV_OFFSET       (CONFIG_SPI_FLASH_SIZE - CONFIG_ENV_SECT_SIZE) + +/* USB Host support */ +#define CONFIG_USB_EHCI +#define CONFIG_USB_EHCI_TEGRA +#define CONFIG_USB_STORAGE +#define CONFIG_CMD_USB +  #endif /* __CONFIG_H */ |