Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 2 | /* |
Michal Simek | 04c379f | 2010-08-02 14:20:28 +0200 | [diff] [blame] | 3 | * (C) Copyright 2007-2010 Michal Simek |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 4 | * |
Michal Simek | d83d07e | 2007-09-24 00:30:42 +0200 | [diff] [blame] | 5 | * Michal SIMEK <monstr@monstr.eu> |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
Michal Simek | b139503 | 2020-11-04 16:00:38 +0100 | [diff] [blame] | 11 | /* Microblaze is microblaze_0 */ |
| 12 | #define XILINX_FSL_NUMBER 3 |
| 13 | |
Michal Simek | a591051 | 2019-09-25 11:12:40 +0200 | [diff] [blame] | 14 | #define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024) |
| 15 | |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 16 | /* uart */ |
Michal Simek | c7ff40a | 2015-12-09 12:42:16 +0100 | [diff] [blame] | 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} |
| 20 | |
Michal Simek | 65e915c | 2014-05-08 16:08:44 +0200 | [diff] [blame] | 21 | /* Stack location before relocation */ |
Michal Simek | 7cb7ae7 | 2015-12-08 14:34:13 +0100 | [diff] [blame] | 22 | #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_TEXT_BASE - \ |
| 23 | CONFIG_SYS_MALLOC_F_LEN) |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 24 | |
Michal Simek | f3e2c9d | 2020-11-04 16:14:06 +0100 | [diff] [blame] | 25 | #ifdef CONFIG_CFI_FLASH |
Michal Simek | 04c379f | 2010-08-02 14:20:28 +0200 | [diff] [blame] | 26 | /* ?empty sector */ |
| 27 | # define CONFIG_SYS_FLASH_EMPTY_INFO 1 |
| 28 | /* max number of memory banks */ |
Michal Simek | 04c379f | 2010-08-02 14:20:28 +0200 | [diff] [blame] | 29 | /* max number of sectors on one chip */ |
Michal Simek | f3e2c9d | 2020-11-04 16:14:06 +0100 | [diff] [blame] | 30 | # define CONFIG_SYS_MAX_FLASH_SECT 2048 |
| 31 | #endif |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 32 | |
Michal Simek | e3aa3d5 | 2012-09-25 10:13:35 +0200 | [diff] [blame] | 33 | #ifndef XILINX_DCACHE_BYTE_SIZE |
| 34 | #define XILINX_DCACHE_BYTE_SIZE 32768 |
| 35 | #endif |
| 36 | |
Mario Six | 790d844 | 2018-03-28 14:38:20 +0200 | [diff] [blame] | 37 | #define CONFIG_HOSTNAME "microblaze-generic" |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 38 | |
| 39 | /* architecture dependent code */ |
T Karthik Reddy | e539c26 | 2020-09-22 05:18:55 -0600 | [diff] [blame] | 40 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
| 41 | #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 42 | #else |
| 43 | #define BOOT_TARGET_DEVICES_PXE(func) |
| 44 | #endif |
| 45 | |
| 46 | #if defined(CONFIG_CMD_DHCP) |
| 47 | #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 48 | #else |
| 49 | #define BOOT_TARGET_DEVICES_DHCP(func) |
| 50 | #endif |
| 51 | |
| 52 | #if defined(CONFIG_SPI_FLASH) |
| 53 | # define BOOT_TARGET_DEVICES_QSPI(func) func(QSPI, qspi, na) |
| 54 | #else |
| 55 | # define BOOT_TARGET_DEVICES_QSPI(func) |
| 56 | #endif |
| 57 | |
T Karthik Reddy | 885f231 | 2020-12-17 03:15:56 -0700 | [diff] [blame] | 58 | #if defined(CONFIG_MTD_NOR_FLASH) |
| 59 | # define BOOT_TARGET_DEVICES_NOR(func) func(NOR, nor, na) |
| 60 | #else |
| 61 | # define BOOT_TARGET_DEVICES_NOR(func) |
| 62 | #endif |
| 63 | |
| 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" |
| 68 | |
| 69 | #define BOOTENV_DEV_NAME_NOR(devtypeu, devtypel, instance) \ |
| 70 | "nor " |
| 71 | |
T Karthik Reddy | e539c26 | 2020-09-22 05:18:55 -0600 | [diff] [blame] | 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" |
| 77 | |
| 78 | #define BOOTENV_DEV_NAME_QSPI(devtypeu, devtypel, instance) \ |
| 79 | "qspi " |
| 80 | |
| 81 | #define BOOT_TARGET_DEVICES_JTAG(func) func(JTAG, jtag, na) |
| 82 | |
| 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" |
| 86 | |
| 87 | #define BOOTENV_DEV_NAME_JTAG(devtypeu, devtypel, instance) \ |
| 88 | "jtag " |
| 89 | |
| 90 | #define BOOT_TARGET_DEVICES(func) \ |
| 91 | BOOT_TARGET_DEVICES_JTAG(func) \ |
T Karthik Reddy | 885f231 | 2020-12-17 03:15:56 -0700 | [diff] [blame] | 92 | BOOT_TARGET_DEVICES_QSPI(func) \ |
| 93 | BOOT_TARGET_DEVICES_NOR(func) \ |
T Karthik Reddy | e539c26 | 2020-09-22 05:18:55 -0600 | [diff] [blame] | 94 | BOOT_TARGET_DEVICES_DHCP(func) \ |
| 95 | BOOT_TARGET_DEVICES_PXE(func) |
| 96 | |
| 97 | #include <config_distro_bootcmd.h> |
| 98 | |
Michal Simek | 31caa37 | 2016-05-10 13:11:19 +0200 | [diff] [blame] | 99 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
T Karthik Reddy | a3627ee | 2020-09-22 05:18:52 -0600 | [diff] [blame] | 100 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 101 | "unlock=yes\0"\ |
| 102 | "nor0=flash-0\0"\ |
| 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;"\ |
T Karthik Reddy | e539c26 | 2020-09-22 05:18:55 -0600 | [diff] [blame] | 109 | "setenv stdin serial\0"\ |
| 110 | "script_size_f=0x40000\0"\ |
| 111 | BOOTENV |
Michal Simek | 31caa37 | 2016-05-10 13:11:19 +0200 | [diff] [blame] | 112 | #endif |
Michal Simek | ab34023 | 2007-04-24 23:01:02 +0200 | [diff] [blame] | 113 | |
Michal Simek | 26acb3e | 2014-01-21 07:30:37 +0100 | [diff] [blame] | 114 | /* SPL part */ |
Michal Simek | 26acb3e | 2014-01-21 07:30:37 +0100 | [diff] [blame] | 115 | |
Michal Simek | 736c1e64 | 2020-11-04 16:12:20 +0100 | [diff] [blame] | 116 | #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE |
Michal Simek | 26acb3e | 2014-01-21 07:30:37 +0100 | [diff] [blame] | 117 | |
Michal Simek | 26acb3e | 2014-01-21 07:30:37 +0100 | [diff] [blame] | 118 | /* SP location before relocation, must use scratch RAM */ |
| 119 | /* BRAM start */ |
| 120 | #define CONFIG_SYS_INIT_RAM_ADDR 0x0 |
| 121 | /* BRAM size - will be generated */ |
Michal Simek | fb8e384 | 2015-02-03 16:24:48 +0100 | [diff] [blame] | 122 | #define CONFIG_SYS_INIT_RAM_SIZE 0x100000 |
Michal Simek | 26acb3e | 2014-01-21 07:30:37 +0100 | [diff] [blame] | 123 | |
Michal Simek | 952d514 | 2007-03-11 13:42:58 +0100 | [diff] [blame] | 124 | #endif /* __CONFIG_H */ |