diff options
Diffstat (limited to 'include/configs/seaboard.h')
| -rw-r--r-- | include/configs/seaboard.h | 36 | 
1 files changed, 23 insertions, 13 deletions
| diff --git a/include/configs/seaboard.h b/include/configs/seaboard.h index f661583fe..de19e38de 100644 --- a/include/configs/seaboard.h +++ b/include/configs/seaboard.h @@ -27,26 +27,26 @@  #include <asm/sizes.h>  /* LP0 suspend / resume */ -#define CONFIG_TEGRA2_LP0 +#define CONFIG_TEGRA_LP0  #define CONFIG_AES  #define CONFIG_TEGRA_PMU  #define CONFIG_TPS6586X_POWER  #define CONFIG_TEGRA_CLOCK_SCALING -#include "tegra2-common.h" +#include "tegra20-common.h"  /* Enable fdt support for Seaboard. Flash the image in u-boot-dtb.bin */ -#define CONFIG_DEFAULT_DEVICE_TREE	tegra2-seaboard +#define CONFIG_DEFAULT_DEVICE_TREE	tegra20-seaboard  #define CONFIG_OF_CONTROL  #define CONFIG_OF_SEPARATE  /* High-level configuration options */ -#define V_PROMPT		"Tegra2 (SeaBoard) # " -#define CONFIG_TEGRA2_BOARD_STRING	"NVIDIA Seaboard" +#define V_PROMPT		"Tegra20 (SeaBoard) # " +#define CONFIG_TEGRA_BOARD_STRING	"NVIDIA Seaboard"  /* Board-specific serial config */  #define CONFIG_SERIAL_MULTI -#define CONFIG_TEGRA2_ENABLE_UARTD +#define CONFIG_TEGRA_ENABLE_UARTD  #define CONFIG_SYS_NS16550_COM1		NV_PA_APB_UARTD_BASE  /* On Seaboard: GPIO_PI3 = Port I = 8, bit = 3 */ @@ -77,8 +77,9 @@  /* Environment in eMMC, at the end of 2nd "boot sector" */  #define CONFIG_ENV_IS_IN_MMC -#define CONFIG_ENV_OFFSET ((2 * 512 * 1024) - CONFIG_ENV_SIZE) +#define CONFIG_ENV_OFFSET ((512 * 1024) - CONFIG_ENV_SIZE)  #define CONFIG_SYS_MMC_ENV_DEV 0 +#define CONFIG_SYS_MMC_ENV_PART 2  /* USB Host support */  #define CONFIG_USB_EHCI @@ -95,14 +96,23 @@  #define CONFIG_CMD_DHCP  /* Enable keyboard */ -#define CONFIG_TEGRA2_KEYBOARD +#define CONFIG_TEGRA_KEYBOARD  #define CONFIG_KEYBOARD -#undef TEGRA2_DEVICE_SETTINGS -#define TEGRA2_DEVICE_SETTINGS	"stdin=serial,tegra-kbc\0" \ -					"stdout=serial\0" \ -					"stderr=serial\0" +#undef TEGRA_DEVICE_SETTINGS +#define TEGRA_DEVICE_SETTINGS	"stdin=serial,tegra-kbc\0" \ +				"stdout=serial\0" \ +				"stderr=serial\0" -#include "tegra2-common-post.h" +#include "tegra-common-post.h" +/* NAND support */ +#define CONFIG_CMD_NAND +#define CONFIG_TEGRA_NAND + +/* Max number of NAND devices */ +#define CONFIG_SYS_MAX_NAND_DEVICE	1 + +/* Somewhat oddly, the NAND base address must be a config option */ +#define CONFIG_SYS_NAND_BASE	NV_PA_NAND_BASE  #endif /* __CONFIG_H */ |