OMAP3: fix twister board
twister board was not updated after changing SPL defines, resulting in a broken board. Signed-off-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
		
							parent
							
								
									1e2a1fb702
								
							
						
					
					
						commit
						f51c8a99e3
					
				|  | @ -207,6 +207,8 @@ | ||||||
| #define CONFIG_SPL_LIBCOMMON_SUPPORT | #define CONFIG_SPL_LIBCOMMON_SUPPORT | ||||||
| #define CONFIG_SPL_LIBDISK_SUPPORT | #define CONFIG_SPL_LIBDISK_SUPPORT | ||||||
| #define CONFIG_SPL_I2C_SUPPORT | #define CONFIG_SPL_I2C_SUPPORT | ||||||
|  | #define CONFIG_SPL_MMC_SUPPORT | ||||||
|  | #define CONFIG_SPL_FAT_SUPPORT | ||||||
| #define CONFIG_SPL_LIBGENERIC_SUPPORT | #define CONFIG_SPL_LIBGENERIC_SUPPORT | ||||||
| #define CONFIG_SPL_SERIAL_SUPPORT | #define CONFIG_SPL_SERIAL_SUPPORT | ||||||
| #define CONFIG_SPL_GPIO_SUPPORT | #define CONFIG_SPL_GPIO_SUPPORT | ||||||
|  | @ -219,12 +221,26 @@ | ||||||
| 
 | 
 | ||||||
| #define CONFIG_SPL_TEXT_BASE		0x40200000 /*CONFIG_SYS_SRAM_START*/ | #define CONFIG_SPL_TEXT_BASE		0x40200000 /*CONFIG_SYS_SRAM_START*/ | ||||||
| #define CONFIG_SPL_MAX_SIZE		(54 * 1024)	/* 8 KB for stack */ | #define CONFIG_SPL_MAX_SIZE		(54 * 1024)	/* 8 KB for stack */ | ||||||
|  | #define CONFIG_SPL_STACK		LOW_LEVEL_SRAM_STACK | ||||||
| 
 | 
 | ||||||
| #define CONFIG_SYS_SPL_MALLOC_START	0x8f000000 | #define CONFIG_SYS_SPL_MALLOC_START	0x8f000000 | ||||||
| #define CONFIG_SYS_SPL_MALLOC_SIZE	0x80000 | #define CONFIG_SYS_SPL_MALLOC_SIZE	0x80000 | ||||||
| #define CONFIG_SPL_BSS_START_ADDR	0x8f080000 /* end of RAM */ | #define CONFIG_SPL_BSS_START_ADDR	0x8f080000 /* end of RAM */ | ||||||
| #define CONFIG_SPL_BSS_MAX_SIZE		0x80000 | #define CONFIG_SPL_BSS_MAX_SIZE		0x80000 | ||||||
| 
 | 
 | ||||||
|  | #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR	0x300 /* address 0x60000 */ | ||||||
|  | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION	1 | ||||||
|  | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME		"u-boot.img" | ||||||
|  | 
 | ||||||
|  | /* FAT */ | ||||||
|  | #define CONFIG_SPL_FS_LOAD_KERNEL_NAME		"uImage" | ||||||
|  | #define CONFIG_SPL_FS_LOAD_ARGS_NAME		"args" | ||||||
|  | 
 | ||||||
|  | /* RAW SD card / eMMC */ | ||||||
|  | #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR	0x900	/* address 0x120000 */ | ||||||
|  | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR	0x80	/* address 0x10000 */ | ||||||
|  | #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS	0x80	/* 64KiB */ | ||||||
|  | 
 | ||||||
| /* NAND boot config */ | /* NAND boot config */ | ||||||
| #define CONFIG_SYS_NAND_BUSWIDTH_16BIT | #define CONFIG_SYS_NAND_BUSWIDTH_16BIT | ||||||
| #define CONFIG_SYS_NAND_PAGE_COUNT	64 | #define CONFIG_SYS_NAND_PAGE_COUNT	64 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue