mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
board/mpl/pati: use the CFI driver for the PATI board
Signed-off-by: David Mueller <d.mueller@elsoft.ch> Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
39441b35c6
commit
d49f5b1cae
2 changed files with 11 additions and 6 deletions
|
@ -28,8 +28,8 @@ endif
|
||||||
|
|
||||||
LIB = $(obj)lib$(BOARD).o
|
LIB = $(obj)lib$(BOARD).o
|
||||||
|
|
||||||
COBJS := pati.o ../common/flash.o cmd_pati.o ../common/common_util.o
|
COBJS := $(BOARD).o cmd_pati.o \
|
||||||
#### cmd_pati.o
|
../common/common_util.o
|
||||||
|
|
||||||
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
||||||
OBJS := $(addprefix $(obj),$(COBJS))
|
OBJS := $(addprefix $(obj),$(COBJS))
|
||||||
|
|
|
@ -168,11 +168,16 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max number of memory banks */
|
#define CONFIG_SYS_FLASH_PROTECTION
|
||||||
#define CONFIG_SYS_MAX_FLASH_SECT 128 /* Max number of sectors on one chip */
|
#define CONFIG_SYS_FLASH_EMPTY_INFO
|
||||||
#define CONFIG_SYS_FLASH_ERASE_TOUT 180000 /* Timeout for Flash Erase (in ms) */
|
|
||||||
#define CONFIG_SYS_FLASH_WRITE_TOUT 600 /* Timeout for Flash Write (in ms) */
|
|
||||||
|
|
||||||
|
#define CONFIG_SYS_FLASH_CFI
|
||||||
|
#define CONFIG_FLASH_CFI_DRIVER
|
||||||
|
|
||||||
|
#define CONFIG_FLASH_SHOW_PROGRESS 45
|
||||||
|
|
||||||
|
#define CONFIG_SYS_MAX_FLASH_BANKS 1
|
||||||
|
#define CONFIG_SYS_MAX_FLASH_SECT 128
|
||||||
|
|
||||||
#define CONFIG_ENV_IS_IN_EEPROM
|
#define CONFIG_ENV_IS_IN_EEPROM
|
||||||
#ifdef CONFIG_ENV_IS_IN_EEPROM
|
#ifdef CONFIG_ENV_IS_IN_EEPROM
|
||||||
|
|
Loading…
Reference in a new issue