Rename CONFIG_SYS_TEXT_BASE to CONFIG_TEXT_BASE
[platform/kernel/u-boot.git] / include / configs / microblaze-generic.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2007-2010 Michal Simek
4  *
5  * Michal SIMEK <monstr@monstr.eu>
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 /* Microblaze is microblaze_0 */
12 #define XILINX_FSL_NUMBER       3
13
14 /* uart */
15 /* The following table includes the supported baudrates */
16 # define CONFIG_SYS_BAUDRATE_TABLE \
17         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
18
19 #define CONFIG_HOSTNAME         "microblaze-generic"
20
21 /* architecture dependent code */
22 #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
23 #define BOOT_TARGET_DEVICES_PXE(func)   func(PXE, pxe, na)
24 #else
25 #define BOOT_TARGET_DEVICES_PXE(func)
26 #endif
27
28 #if defined(CONFIG_CMD_DHCP)
29 #define BOOT_TARGET_DEVICES_DHCP(func)  func(DHCP, dhcp, na)
30 #else
31 #define BOOT_TARGET_DEVICES_DHCP(func)
32 #endif
33
34 #if defined(CONFIG_SPI_FLASH)
35 # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na)
36 #else
37 # define BOOT_TARGET_DEVICES_QSPI(func)
38 #endif
39
40 #if defined(CONFIG_MTD_NOR_FLASH)
41 # define BOOT_TARGET_DEVICES_NOR(func)  func(NOR, nor, na)
42 #else
43 # define BOOT_TARGET_DEVICES_NOR(func)
44 #endif
45
46 #define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
47         "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
48                 "echo NOR: Trying to boot script at ${scriptaddr} && " \
49                 "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
50
51 #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
52         "nor "
53
54 #define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
55         "bootcmd_qspi=sf probe 0 0 0 && " \
56         "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
57         "echo QSPI: Trying to boot script at ${scriptaddr} && " \
58         "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0"
59
60 #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
61         "qspi "
62
63 #define BOOT_TARGET_DEVICES_JTAG(func)  func(JTAG, jtag, na)
64
65 #define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \
66         "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \
67                 "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0"
68
69 #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \
70         "jtag "
71
72 #define BOOT_TARGET_DEVICES(func) \
73         BOOT_TARGET_DEVICES_JTAG(func) \
74         BOOT_TARGET_DEVICES_QSPI(func) \
75         BOOT_TARGET_DEVICES_NOR(func) \
76         BOOT_TARGET_DEVICES_DHCP(func) \
77         BOOT_TARGET_DEVICES_PXE(func)
78
79 #include <config_distro_bootcmd.h>
80
81 #ifndef CONFIG_EXTRA_ENV_SETTINGS
82 #define CONFIG_EXTRA_ENV_SETTINGS \
83         "unlock=yes\0"\
84         "nor0=flash-0\0"\
85         "mtdparts=mtdparts=flash-0:"\
86         "256k(u-boot),256k(env),3m(kernel),"\
87         "1m(romfs),1m(cramfs),-(jffs2)\0"\
88         "nc=setenv stdout nc;"\
89         "setenv stdin nc\0" \
90         "serial=setenv stdout serial;"\
91         "setenv stdin serial\0"\
92         "script_size_f=0x40000\0"\
93         BOOTENV
94 #endif
95
96 /* SPL part */
97
98 #define CONFIG_SYS_UBOOT_BASE           CONFIG_TEXT_BASE
99
100 #endif  /* __CONFIG_H */