2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2007-03-11 13:42:58 +01:00
|
|
|
/*
|
2010-08-02 14:20:28 +02:00
|
|
|
* (C) Copyright 2007-2010 Michal Simek
|
2007-03-11 13:42:58 +01:00
|
|
|
*
|
2007-09-24 00:30:42 +02:00
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
2007-03-11 13:42:58 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2020-11-04 16:00:38 +01:00
|
|
|
/* Microblaze is microblaze_0 */
|
|
|
|
#define XILINX_FSL_NUMBER 3
|
|
|
|
|
2010-08-02 14:20:28 +02:00
|
|
|
/* MicroBlaze CPU */
|
2007-05-08 14:52:52 +02:00
|
|
|
#define MICROBLAZE_V5 1
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2019-09-25 11:12:40 +02:00
|
|
|
#define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024)
|
|
|
|
|
2007-03-11 13:42:58 +01:00
|
|
|
/* uart */
|
2015-12-09 12:42:16 +01:00
|
|
|
/* The following table includes the supported baudrates */
|
|
|
|
# define CONFIG_SYS_BAUDRATE_TABLE \
|
|
|
|
{300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
|
|
|
|
|
2007-03-11 13:42:58 +01:00
|
|
|
/* setting reset address */
|
2010-10-07 21:51:12 +02:00
|
|
|
/*#define CONFIG_SYS_RESET_ADDRESS CONFIG_SYS_TEXT_BASE*/
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2014-05-08 16:08:44 +02:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN 0xC0000
|
|
|
|
|
|
|
|
/* Stack location before relocation */
|
2015-12-08 14:34:13 +01:00
|
|
|
#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_TEXT_BASE - \
|
|
|
|
CONFIG_SYS_MALLOC_F_LEN)
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2020-11-04 16:14:06 +01:00
|
|
|
#ifdef CONFIG_CFI_FLASH
|
2010-08-02 14:20:28 +02:00
|
|
|
/* ?empty sector */
|
|
|
|
# define CONFIG_SYS_FLASH_EMPTY_INFO 1
|
|
|
|
/* max number of memory banks */
|
|
|
|
# define CONFIG_SYS_MAX_FLASH_BANKS 1
|
|
|
|
/* max number of sectors on one chip */
|
2020-11-04 16:14:06 +01:00
|
|
|
# define CONFIG_SYS_MAX_FLASH_SECT 2048
|
|
|
|
#endif
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2020-11-04 15:58:04 +01:00
|
|
|
#define CONFIG_ICACHE
|
|
|
|
#define CONFIG_DCACHE
|
2009-01-05 13:29:32 +01:00
|
|
|
|
2012-09-25 10:13:35 +02:00
|
|
|
#ifndef XILINX_DCACHE_BYTE_SIZE
|
|
|
|
#define XILINX_DCACHE_BYTE_SIZE 32768
|
|
|
|
#endif
|
|
|
|
|
2007-07-10 10:12:10 -05:00
|
|
|
/*
|
|
|
|
* BOOTP options
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2010-08-02 14:20:28 +02:00
|
|
|
/* size of console buffer */
|
|
|
|
#define CONFIG_SYS_CBSIZE 512
|
|
|
|
/* max number of command args */
|
|
|
|
#define CONFIG_SYS_MAXARGS 15
|
|
|
|
/* default load address */
|
2015-12-11 14:45:29 +01:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2018-03-28 14:38:20 +02:00
|
|
|
#define CONFIG_HOSTNAME "microblaze-generic"
|
2007-03-11 13:42:58 +01:00
|
|
|
|
|
|
|
/* architecture dependent code */
|
2008-10-16 15:01:15 +02:00
|
|
|
#define CONFIG_SYS_USR_EXCEP /* user exception */
|
2007-03-11 13:42:58 +01:00
|
|
|
|
2020-09-22 05:18:55 -06:00
|
|
|
#if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP)
|
|
|
|
#define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na)
|
|
|
|
#else
|
|
|
|
#define BOOT_TARGET_DEVICES_PXE(func)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_DHCP)
|
|
|
|
#define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na)
|
|
|
|
#else
|
|
|
|
#define BOOT_TARGET_DEVICES_DHCP(func)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_SPI_FLASH)
|
|
|
|
# define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na)
|
|
|
|
#else
|
|
|
|
# define BOOT_TARGET_DEVICES_QSPI(func)
|
|
|
|
#endif
|
|
|
|
|
2020-12-17 03:15:56 -07:00
|
|
|
#if defined(CONFIG_MTD_NOR_FLASH)
|
|
|
|
# define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na)
|
|
|
|
#else
|
|
|
|
# define BOOT_TARGET_DEVICES_NOR(func)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NOR(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_nor=cp.b ${script_offset_nor} ${scriptaddr} ${script_size_f} && " \
|
|
|
|
"echo NOR: Trying to boot script at ${scriptaddr} && " \
|
|
|
|
"source ${scriptaddr}; echo NOR: SCRIPT FAILED: continuing...;\0"
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \
|
|
|
|
"nor "
|
|
|
|
|
2020-09-22 05:18:55 -06:00
|
|
|
#define BOOTENV_DEV_QSPI(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_qspi=sf probe 0 0 0 && " \
|
|
|
|
"sf read ${scriptaddr} ${script_offset_f} ${script_size_f} && " \
|
|
|
|
"echo QSPI: Trying to boot script at ${scriptaddr} && " \
|
|
|
|
"source ${scriptaddr}; echo QSPI: SCRIPT FAILED: continuing...;\0"
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \
|
|
|
|
"qspi "
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na)
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_JTAG(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_jtag=echo JTAG: Trying to boot script at ${scriptaddr} && " \
|
|
|
|
"source ${scriptaddr}; echo JTAG: SCRIPT FAILED: continuing...;\0"
|
|
|
|
|
|
|
|
#define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \
|
|
|
|
"jtag "
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
BOOT_TARGET_DEVICES_JTAG(func) \
|
2020-12-17 03:15:56 -07:00
|
|
|
BOOT_TARGET_DEVICES_QSPI(func) \
|
|
|
|
BOOT_TARGET_DEVICES_NOR(func) \
|
2020-09-22 05:18:55 -06:00
|
|
|
BOOT_TARGET_DEVICES_DHCP(func) \
|
|
|
|
BOOT_TARGET_DEVICES_PXE(func)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
2016-05-10 13:11:19 +02:00
|
|
|
#ifndef CONFIG_EXTRA_ENV_SETTINGS
|
2020-09-22 05:18:52 -06:00
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"unlock=yes\0"\
|
|
|
|
"nor0=flash-0\0"\
|
|
|
|
"mtdparts=mtdparts=flash-0:"\
|
|
|
|
"256k(u-boot),256k(env),3m(kernel),"\
|
|
|
|
"1m(romfs),1m(cramfs),-(jffs2)\0"\
|
|
|
|
"nc=setenv stdout nc;"\
|
|
|
|
"setenv stdin nc\0" \
|
|
|
|
"serial=setenv stdout serial;"\
|
2020-09-22 05:18:55 -06:00
|
|
|
"setenv stdin serial\0"\
|
|
|
|
"script_size_f=0x40000\0"\
|
|
|
|
BOOTENV
|
2016-05-10 13:11:19 +02:00
|
|
|
#endif
|
2007-04-24 23:01:02 +02:00
|
|
|
|
2015-12-02 17:22:07 +01:00
|
|
|
#if defined(CONFIG_XILINX_AXIEMAC)
|
2012-02-24 18:33:41 +01:00
|
|
|
# define CONFIG_SYS_FAULT_ECHO_LINK_DOWN 1
|
|
|
|
#endif
|
|
|
|
|
2014-01-21 07:30:37 +01:00
|
|
|
/* SPL part */
|
|
|
|
|
2020-11-04 16:12:20 +01:00
|
|
|
#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
|
2014-01-21 07:30:37 +01:00
|
|
|
|
|
|
|
/* for booting directly linux */
|
2020-11-04 16:12:20 +01:00
|
|
|
#define CONFIG_SYS_FDT_BASE (CONFIG_SYS_TEXT_BASE + \
|
|
|
|
0x40000)
|
2014-01-21 07:30:37 +01:00
|
|
|
|
|
|
|
#define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_TEXT_BASE + \
|
|
|
|
0x1000000)
|
|
|
|
|
|
|
|
/* SP location before relocation, must use scratch RAM */
|
|
|
|
/* BRAM start */
|
|
|
|
#define CONFIG_SYS_INIT_RAM_ADDR 0x0
|
|
|
|
/* BRAM size - will be generated */
|
2015-02-03 16:24:48 +01:00
|
|
|
#define CONFIG_SYS_INIT_RAM_SIZE 0x100000
|
2014-01-21 07:30:37 +01:00
|
|
|
|
2015-02-03 16:24:48 +01:00
|
|
|
# define CONFIG_SPL_STACK_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
|
2020-09-24 11:54:37 +03:00
|
|
|
CONFIG_SYS_INIT_RAM_SIZE)
|
2014-01-21 07:30:37 +01:00
|
|
|
|
|
|
|
/* Just for sure that there is a space for stack */
|
|
|
|
#define CONFIG_SPL_STACK_SIZE 0x100
|
|
|
|
|
|
|
|
#define CONFIG_SPL_MAX_FOOTPRINT (CONFIG_SYS_INIT_RAM_SIZE - \
|
|
|
|
CONFIG_SYS_INIT_RAM_ADDR - \
|
2015-02-03 16:24:48 +01:00
|
|
|
CONFIG_SYS_MALLOC_F_LEN - \
|
2014-01-21 07:30:37 +01:00
|
|
|
CONFIG_SPL_STACK_SIZE)
|
|
|
|
|
2007-03-11 13:42:58 +01:00
|
|
|
#endif /* __CONFIG_H */
|