mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
lpc32xx: devkit3250: update board configuration file
The change updates DevKit3250 board powerd by NXP LPC3250 SoC: * due to increased resulting U-boot image size give more space to store loaded and relocated versions, * add DMA support, which is used by NAND SLC driver, * add NXP OHCI and PHY drivers to the image, * add USB, JFFS and FAT commands. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
This commit is contained in:
parent
1222305b55
commit
6cbaf4c1ae
1 changed files with 18 additions and 1 deletions
|
@ -33,7 +33,7 @@
|
|||
#define CONFIG_SYS_MALLOC_LEN SZ_1M
|
||||
#define CONFIG_SYS_SDRAM_BASE EMC_DYCS0_BASE
|
||||
#define CONFIG_SYS_SDRAM_SIZE SZ_64M
|
||||
#define CONFIG_SYS_TEXT_BASE 0x83FA0000
|
||||
#define CONFIG_SYS_TEXT_BASE 0x83F00000
|
||||
#define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE + SZ_32K)
|
||||
#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_TEXT_BASE - SZ_1M)
|
||||
|
||||
|
@ -48,6 +48,13 @@
|
|||
#define CONFIG_SYS_LPC32XX_UART 5 /* UART5 */
|
||||
#define CONFIG_BAUDRATE 115200
|
||||
|
||||
/*
|
||||
* DMA
|
||||
*/
|
||||
#if !defined(CONFIG_SPL_BUILD)
|
||||
#define CONFIG_DMA_LPC32XX
|
||||
#endif
|
||||
|
||||
/*
|
||||
* I2C
|
||||
*/
|
||||
|
@ -114,8 +121,18 @@
|
|||
#define CONFIG_SYS_NAND_PAGE_SIZE NAND_LARGE_BLOCK_PAGE_SIZE
|
||||
#define CONFIG_SYS_NAND_USE_FLASH_BBT
|
||||
|
||||
#define CONFIG_CMD_JFFS2
|
||||
#define CONFIG_CMD_NAND
|
||||
|
||||
/*
|
||||
* USB
|
||||
*/
|
||||
#define CONFIG_USB_OHCI_LPC32XX
|
||||
#define CONFIG_USB_ISP1301_I2C_ADDR 0x2d
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_CMD_FAT
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
/*
|
||||
* U-Boot General Configurations
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue