|
@@ -83,8 +83,21 @@
|
|
|
#define CONFIG_MMC
|
|
|
#define CONFIG_GENERIC_MMC
|
|
|
#define CONFIG_OMAP_HSMMC
|
|
|
-#define CONFIG_DOS_PARTITION
|
|
|
+
|
|
|
+/* SPL */
|
|
|
+#define CONFIG_SPL_MMC_SUPPORT
|
|
|
+#define CONFIG_SPL_FAT_SUPPORT
|
|
|
+#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
|
|
|
+#define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x200 /* 256 KB */
|
|
|
+#define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION 1
|
|
|
+#define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME "u-boot.img"
|
|
|
+
|
|
|
+/* Partition tables */
|
|
|
+/* Only need DOS partition support for SPL, currently */
|
|
|
+#ifndef CONFIG_SPL_BUILD
|
|
|
#define CONFIG_EFI_PARTITION
|
|
|
+#endif
|
|
|
+#define CONFIG_DOS_PARTITION
|
|
|
|
|
|
/* USB
|
|
|
*
|
|
@@ -95,6 +108,26 @@
|
|
|
#define CONFIG_MUSB_HCD
|
|
|
/* #define CONFIG_MUSB_UDC */
|
|
|
|
|
|
+/* NAND SPL */
|
|
|
+#define CONFIG_SPL_NAND_SIMPLE
|
|
|
+#define CONFIG_SPL_NAND_SUPPORT
|
|
|
+#define CONFIG_SYS_NAND_5_ADDR_CYCLE
|
|
|
+#define CONFIG_SYS_NAND_PAGE_COUNT 64
|
|
|
+#define CONFIG_SYS_NAND_PAGE_SIZE 2048
|
|
|
+#define CONFIG_SYS_NAND_OOBSIZE 64
|
|
|
+#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
|
|
|
+#define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
|
|
|
+#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
|
|
|
+ 10, 11, 12, 13}
|
|
|
+#define CONFIG_SYS_NAND_ECCSIZE 512
|
|
|
+#define CONFIG_SYS_NAND_ECCBYTES 3
|
|
|
+#define CONFIG_SYS_NAND_ECCSTEPS (CONFIG_SYS_NAND_PAGE_SIZE / \
|
|
|
+ CONFIG_SYS_NAND_ECCSIZE)
|
|
|
+#define CONFIG_SYS_NAND_ECCTOTAL (CONFIG_SYS_NAND_ECCBYTES * \
|
|
|
+ CONFIG_SYS_NAND_ECCSTEPS)
|
|
|
+#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
|
|
|
+#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
|
|
|
+
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
* Include common board configuration
|
|
|
* -----------------------------------------------------------------------------
|