blob: e7882fb60781f51c99c0f0709866b3372c7822d8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Michal Simek952d5142007-03-11 13:42:58 +01002/*
Michal Simek04c379f2010-08-02 14:20:28 +02003 * (C) Copyright 2007-2010 Michal Simek
Michal Simek952d5142007-03-11 13:42:58 +01004 *
Michal Simekd83d07e2007-09-24 00:30:42 +02005 * Michal SIMEK <monstr@monstr.eu>
Michal Simek952d5142007-03-11 13:42:58 +01006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
Michal Simekb1395032020-11-04 16:00:38 +010011/* Microblaze is microblaze_0 */
12#define XILINX_FSL_NUMBER 3
13
Michal Simek04c379f2010-08-02 14:20:28 +020014/* MicroBlaze CPU */
Michal Simek3af398e2007-05-08 14:52:52 +020015#define MICROBLAZE_V5 1
Michal Simek952d5142007-03-11 13:42:58 +010016
Michal Simeka5910512019-09-25 11:12:40 +020017#define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024)
18
Michal Simek952d5142007-03-11 13:42:58 +010019/* uart */
Michal Simekc7ff40a2015-12-09 12:42:16 +010020/* The following table includes the supported baudrates */
21# define CONFIG_SYS_BAUDRATE_TABLE \
22 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
23
Michal Simek952d5142007-03-11 13:42:58 +010024/* setting reset address */
Wolfgang Denk0708bc62010-10-07 21:51:12 +020025/*#define CONFIG_SYS_RESET_ADDRESS CONFIG_SYS_TEXT_BASE*/
Michal Simek952d5142007-03-11 13:42:58 +010026
Michal Simek65e915c2014-05-08 16:08:44 +020027/* Stack location before relocation */
Michal Simek7cb7ae72015-12-08 14:34:13 +010028#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_TEXT_BASE - \
29 CONFIG_SYS_MALLOC_F_LEN)
Michal Simek952d5142007-03-11 13:42:58 +010030
Michal Simekf3e2c9d2020-11-04 16:14:06 +010031#ifdef CONFIG_CFI_FLASH
Michal Simek04c379f2010-08-02 14:20:28 +020032/* ?empty sector */
33# define CONFIG_SYS_FLASH_EMPTY_INFO 1
34/* max number of memory banks */
35# define CONFIG_SYS_MAX_FLASH_BANKS 1
36/* max number of sectors on one chip */
Michal Simekf3e2c9d2020-11-04 16:14:06 +010037# define CONFIG_SYS_MAX_FLASH_SECT 2048
38#endif
Michal Simek952d5142007-03-11 13:42:58 +010039
Michal Simek025e8cf2020-11-04 15:58:04 +010040#define CONFIG_ICACHE
41#define CONFIG_DCACHE
Michal Simekf95f6dc2009-01-05 13:29:32 +010042
Michal Simeke3aa3d52012-09-25 10:13:35 +020043#ifndef XILINX_DCACHE_BYTE_SIZE
44#define XILINX_DCACHE_BYTE_SIZE 32768
45#endif
46
Jon Loeliger316d2342007-07-04 22:33:01 -050047/*
Jon Loeliger5c4ddae2007-07-10 10:12:10 -050048 * BOOTP options
49 */
50#define CONFIG_BOOTP_BOOTFILESIZE
Michal Simek952d5142007-03-11 13:42:58 +010051
Michal Simek04c379f2010-08-02 14:20:28 +020052/* size of console buffer */
53#define CONFIG_SYS_CBSIZE 512
Michal Simek04c379f2010-08-02 14:20:28 +020054/* max number of command args */
55#define CONFIG_SYS_MAXARGS 15
Michal Simek952d5142007-03-11 13:42:58 +010056
Mario Six790d8442018-03-28 14:38:20 +020057#define CONFIG_HOSTNAME "microblaze-generic"
Michal Simek952d5142007-03-11 13:42:58 +010058
59/* architecture dependent code */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020060#define CONFIG_SYS_USR_EXCEP /* user exception */
Michal Simek952d5142007-03-11 13:42:58 +010061
T Karthik Reddye539c262020-09-22 05:18:55 -060062#if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
63#define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
64#else
65#define BOOT_TARGET_DEVICES_PXE(func)
66#endif
67
68#if defined(CONFIG_CMD_DHCP)
69#define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
70#else
71#define BOOT_TARGET_DEVICES_DHCP(func)
72#endif
73
74#if defined(CONFIG_SPI_FLASH)
75# define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na)
76#else
77# define BOOT_TARGET_DEVICES_QSPI(func)
78#endif
79
T Karthik Reddy885f2312020-12-17 03:15:56 -070080#if defined(CONFIG_MTD_NOR_FLASH)
81# define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na)
82#else
83# define BOOT_TARGET_DEVICES_NOR(func)
84#endif
85
86#define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
87 "bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
88 "echo NOR: Trying to boot script at ${scriptaddr} && " \
89 "source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
90
91#define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
92 "nor "
93
T Karthik Reddye539c262020-09-22 05:18:55 -060094#define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
95 "bootcmd_qspi=sf probe 0 0 0 && " \
96 "sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
97 "echo QSPI: Trying to boot script at ${scriptaddr} && " \
98 "source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0"
99
100#define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
101 "qspi "
102
103#define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na)
104
105#define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \
106 "bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \
107 "source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0"
108
109#define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \
110 "jtag "
111
112#define BOOT_TARGET_DEVICES(func) \
113 BOOT_TARGET_DEVICES_JTAG(func) \
T Karthik Reddy885f2312020-12-17 03:15:56 -0700114 BOOT_TARGET_DEVICES_QSPI(func) \
115 BOOT_TARGET_DEVICES_NOR(func) \
T Karthik Reddye539c262020-09-22 05:18:55 -0600116 BOOT_TARGET_DEVICES_DHCP(func) \
117 BOOT_TARGET_DEVICES_PXE(func)
118
119#include <config_distro_bootcmd.h>
120
Michal Simek31caa372016-05-10 13:11:19 +0200121#ifndef CONFIG_EXTRA_ENV_SETTINGS
T Karthik Reddya3627ee2020-09-22 05:18:52 -0600122#define CONFIG_EXTRA_ENV_SETTINGS \
123 "unlock=yes\0"\
124 "nor0=flash-0\0"\
125 "mtdparts=mtdparts=flash-0:"\
126 "256k(u-boot),256k(env),3m(kernel),"\
127 "1m(romfs),1m(cramfs),-(jffs2)\0"\
128 "nc=setenv stdout nc;"\
129 "setenv stdin nc\0" \
130 "serial=setenv stdout serial;"\
T Karthik Reddye539c262020-09-22 05:18:55 -0600131 "setenv stdin serial\0"\
132 "script_size_f=0x40000\0"\
133 BOOTENV
Michal Simek31caa372016-05-10 13:11:19 +0200134#endif
Michal Simekab340232007-04-24 23:01:02 +0200135
Michal Simek31627322015-12-02 17:22:07 +0100136#if defined(CONFIG_XILINX_AXIEMAC)
Stephan Linzbe0ea372012-02-24 18:33:41 +0100137# define CONFIG_SYS_FAULT_ECHO_LINK_DOWN 1
Stephan Linzbe0ea372012-02-24 18:33:41 +0100138#endif
139
Michal Simek26acb3e2014-01-21 07:30:37 +0100140/* SPL part */
Michal Simek26acb3e2014-01-21 07:30:37 +0100141
Michal Simek736c1e642020-11-04 16:12:20 +0100142#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
Michal Simek26acb3e2014-01-21 07:30:37 +0100143
144/* for booting directly linux */
Michal Simek736c1e642020-11-04 16:12:20 +0100145#define CONFIG_SYS_FDT_BASE (CONFIG_SYS_TEXT_BASE + \
146 0x40000)
Michal Simek26acb3e2014-01-21 07:30:37 +0100147
Michal Simek26acb3e2014-01-21 07:30:37 +0100148#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_TEXT_BASE + \
149 0x1000000)
150
151/* SP location before relocation, must use scratch RAM */
152/* BRAM start */
153#define CONFIG_SYS_INIT_RAM_ADDR 0x0
154/* BRAM size - will be generated */
Michal Simekfb8e3842015-02-03 16:24:48 +0100155#define CONFIG_SYS_INIT_RAM_SIZE 0x100000
Michal Simek26acb3e2014-01-21 07:30:37 +0100156
Michal Simekfb8e3842015-02-03 16:24:48 +0100157# define CONFIG_SPL_STACK_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
Ovidiu Panaite6dbb8b2020-09-24 11:54:37 +0300158 CONFIG_SYS_INIT_RAM_SIZE)
Michal Simek26acb3e2014-01-21 07:30:37 +0100159
160/* Just for sure that there is a space for stack */
161#define CONFIG_SPL_STACK_SIZE 0x100
162
Michal Simek26acb3e2014-01-21 07:30:37 +0100163#define CONFIG_SPL_MAX_FOOTPRINT (CONFIG_SYS_INIT_RAM_SIZE - \
164 CONFIG_SYS_INIT_RAM_ADDR - \
Michal Simekfb8e3842015-02-03 16:24:48 +0100165 CONFIG_SYS_MALLOC_F_LEN - \
Michal Simek26acb3e2014-01-21 07:30:37 +0100166 CONFIG_SPL_STACK_SIZE)
167
Michal Simek952d5142007-03-11 13:42:58 +0100168#endif /* __CONFIG_H */