1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2007-2010 Michal Simek
5 * Michal SIMEK <monstr@monstr.eu>
11 /* Microblaze is microblaze_0 */
12 #define XILINX_FSL_NUMBER 3
14 #define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024)
17 /* The following table includes the supported baudrates */
18 # define CONFIG_SYS_BAUDRATE_TABLE \
19 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
21 /* Stack location before relocation */
22 #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_TEXT_BASE - \
23 CONFIG_SYS_MALLOC_F_LEN)
25 #ifdef CONFIG_CFI_FLASH
27 # define CONFIG_SYS_FLASH_EMPTY_INFO 1
28 /* max number of memory banks */
29 /* max number of sectors on one chip */
30 # define CONFIG_SYS_MAX_FLASH_SECT 2048
33 #ifndef XILINX_DCACHE_BYTE_SIZE
34 #define XILINX_DCACHE_BYTE_SIZE 32768
37 #define CONFIG_HOSTNAME "microblaze-generic"
39 /* architecture dependent code */
40 #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
41 #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
43 #define BOOT_TARGET_DEVICES_PXE(func)
46 #if defined(CONFIG_CMD_DHCP)
47 #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
49 #define BOOT_TARGET_DEVICES_DHCP(func)
52 #if defined(CONFIG_SPI_FLASH)
53 # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na)
55 # define BOOT_TARGET_DEVICES_QSPI(func)
58 #if defined(CONFIG_MTD_NOR_FLASH)
59 # define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na)
61 # define BOOT_TARGET_DEVICES_NOR(func)
64 #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
65 "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
66 "echo NOR: Trying to boot script at ${scriptaddr} && " \
67 "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
69 #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
72 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
73 "bootcmd_qspi=sf probe 0 0 0 && " \
74 "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
75 "echo QSPI: Trying to boot script at ${scriptaddr} && " \
76 "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0"
78 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
81 #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na)
83 #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \
84 "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \
85 "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0"
87 #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \
90 #define BOOT_TARGET_DEVICES(func) \
91 BOOT_TARGET_DEVICES_JTAG(func) \
92 BOOT_TARGET_DEVICES_QSPI(func) \
93 BOOT_TARGET_DEVICES_NOR(func) \
94 BOOT_TARGET_DEVICES_DHCP(func) \
95 BOOT_TARGET_DEVICES_PXE(func)
97 #include <config_distro_bootcmd.h>
99 #ifndef CONFIG_EXTRA_ENV_SETTINGS
100 #define CONFIG_EXTRA_ENV_SETTINGS \
103 "mtdparts=mtdparts=flash-0:"\
104 "256k(u-boot),256k(env),3m(kernel),"\
105 "1m(romfs),1m(cramfs),-(jffs2)\0"\
106 "nc=setenv stdout nc;"\
107 "setenv stdin nc\0" \
108 "serial=setenv stdout serial;"\
109 "setenv stdin serial\0"\
110 "script_size_f=0x40000\0"\
116 #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
118 /* for booting directly linux */
119 #define CONFIG_SYS_FDT_BASE (CONFIG_SYS_TEXT_BASE + \
122 #define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_TEXT_BASE + \
125 /* SP location before relocation, must use scratch RAM */
127 #define CONFIG_SYS_INIT_RAM_ADDR 0x0
128 /* BRAM size - will be generated */
129 #define CONFIG_SYS_INIT_RAM_SIZE 0x100000
131 #endif /* __CONFIG_H */