Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 Michael Walle |
| 3 | * Michael Walle <michael@walle.cc> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _CONFIG_LSXL_H |
| 9 | #define _CONFIG_LSXL_H |
| 10 | |
Michael Walle | 45e60c2 | 2014-09-28 00:05:23 +0200 | [diff] [blame] | 11 | #define CONFIG_SYS_GENERIC_BOARD |
| 12 | |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 13 | /* |
| 14 | * Version number information |
| 15 | */ |
| 16 | #if defined(CONFIG_LSCHLV2) |
| 17 | #define CONFIG_IDENT_STRING " LS-CHLv2" |
Masahiro Yamada | 4ab3fc5 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 18 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 19 | #define CONFIG_MACH_TYPE 3006 |
| 20 | #define CONFIG_SYS_TCLK 166666667 /* 166 MHz */ |
| 21 | #elif defined(CONFIG_LSXHL) |
| 22 | #define CONFIG_IDENT_STRING " LS-XHL" |
Masahiro Yamada | 4ab3fc5 | 2014-03-11 11:05:17 +0900 | [diff] [blame] | 23 | #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 24 | #define CONFIG_MACH_TYPE 2663 |
| 25 | /* CONFIG_SYS_TCLK is 200000000 by default */ |
| 26 | #else |
| 27 | #error "unknown board" |
| 28 | #endif |
| 29 | |
| 30 | /* |
| 31 | * General configuration options |
| 32 | */ |
| 33 | #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 34 | #define CONFIG_KW88F6281 /* SOC Name */ |
| 35 | |
| 36 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
| 37 | #define CONFIG_MISC_INIT_R |
| 38 | #define CONFIG_SHOW_BOOT_PROGRESS |
| 39 | |
| 40 | #define CONFIG_RANDOM_MACADDR |
Przemyslaw Marczak | 3c1c68c | 2014-03-25 10:58:19 +0100 | [diff] [blame] | 41 | #define CONFIG_LIB_RAND |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 42 | #define CONFIG_KIRKWOOD_GPIO |
| 43 | #define CONFIG_OF_LIBFDT |
| 44 | |
| 45 | #define CONFIG_SYS_NO_FLASH |
| 46 | #define CONFIG_SYS_HUSH_PARSER |
| 47 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
| 48 | #define CONFIG_SYS_CONSOLE_INFO_QUIET |
| 49 | |
| 50 | /* |
| 51 | * Enable u-boot API for standalone programs. |
| 52 | */ |
| 53 | #define CONFIG_API |
| 54 | |
| 55 | /* |
| 56 | * Commands configuration |
| 57 | */ |
| 58 | #include <config_cmd_default.h> |
| 59 | #define CONFIG_CMD_DHCP |
| 60 | #define CONFIG_CMD_ELF |
| 61 | #define CONFIG_CMD_ENV |
| 62 | #define CONFIG_CMD_EXT2 |
| 63 | #define CONFIG_CMD_FAT |
| 64 | #define CONFIG_CMD_IDE |
| 65 | #define CONFIG_CMD_PING |
| 66 | #define CONFIG_CMD_PING |
| 67 | #define CONFIG_CMD_SF |
| 68 | #define CONFIG_CMD_SPI |
| 69 | #define CONFIG_CMD_USB |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 70 | #define CONFIG_CMD_FS_GENERIC |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 71 | |
| 72 | #define CONFIG_DOS_PARTITION |
| 73 | #define CONFIG_EFI_PARTITION |
| 74 | |
| 75 | /* |
| 76 | * mv-common.h should be defined after CMD configs since it used them |
| 77 | * to enable certain macros |
| 78 | */ |
| 79 | #include "mv-common.h" |
| 80 | |
| 81 | /* ST M25P40 */ |
| 82 | #undef CONFIG_SPI_FLASH_MACRONIX |
| 83 | #define CONFIG_SPI_FLASH_STMICRO |
| 84 | #undef CONFIG_ENV_SPI_MAX_HZ |
| 85 | #define CONFIG_ENV_SPI_MAX_HZ 25000000 |
| 86 | #undef CONFIG_SF_DEFAULT_SPEED |
| 87 | #define CONFIG_SF_DEFAULT_SPEED 25000000 |
| 88 | |
| 89 | |
| 90 | #undef CONFIG_SYS_PROMPT |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 91 | #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " |
| 92 | |
| 93 | /* |
| 94 | * Environment variables configurations |
| 95 | */ |
| 96 | #ifdef CONFIG_SPI_FLASH |
| 97 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 98 | #define CONFIG_SYS_MAX_FLASH_SECT 8 |
| 99 | #define CONFIG_ENV_IS_IN_SPI_FLASH 1 |
| 100 | #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */ |
| 101 | #else |
| 102 | #define CONFIG_ENV_IS_NOWHERE |
| 103 | #endif |
| 104 | |
| 105 | #define CONFIG_ENV_SIZE 0x10000 /* 64k */ |
| 106 | #define CONFIG_ENV_OFFSET 0x70000 /* env starts here */ |
| 107 | |
| 108 | /* |
| 109 | * Default environment variables |
| 110 | */ |
| 111 | #define CONFIG_LOADADDR 0x00800000 |
| 112 | #define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}" |
| 113 | #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2" |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 114 | |
| 115 | #if defined(CONFIG_LSXHL) |
| 116 | #define CONFIG_FDTFILE "kirkwood-lsxhl.dtb" |
| 117 | #elif defined(CONFIG_LSCHLV2) |
| 118 | #define CONFIG_FDTFILE "kirkwood-lschlv2.dtb" |
| 119 | #else |
| 120 | #error "Unsupported board" |
| 121 | #endif |
| 122 | |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 123 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 124 | "bootsource=legacy\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 125 | "hdpart=0:1\0" \ |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 126 | "kernel_addr=0x00800000\0" \ |
| 127 | "ramdisk_addr=0x01000000\0" \ |
| 128 | "fdt_addr=0x01ff0000\0" \ |
| 129 | "bootcmd_legacy=ide reset " \ |
| 130 | "&& load ide ${hdpart} 0x00100000 /uImage.buffalo " \ |
| 131 | "&& load ide ${hdpart} 0x00800000 /initrd.buffalo " \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 132 | "&& bootm 0x00100000 0x00800000\0" \ |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 133 | "bootcmd_net=bootp ${kernel_addr} uImage " \ |
| 134 | "&& tftpboot ${ramdisk_addr} uInitrd " \ |
| 135 | "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \ |
| 136 | "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 137 | "bootcmd_hdd=ide reset " \ |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 138 | "&& load ide ${hdpart} ${kernel_addr} /uImage " \ |
| 139 | "&& load ide ${hdpart} ${ramdisk_addr} /uInitrd " \ |
| 140 | "&& load ide ${hdpart} ${fdt_addr} " \ |
| 141 | "/" CONFIG_FDTFILE " " \ |
| 142 | "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 143 | "bootcmd_usb=usb start " \ |
Michael Walle | 848fe23 | 2014-04-01 20:09:14 +0200 | [diff] [blame] | 144 | "&& load usb 0:1 ${kernel_addr} /uImage " \ |
| 145 | "&& load usb 0:1 ${ramdisk_addr} /uInitrd " \ |
| 146 | "&& load usb 0:1 ${fdt_addr} " \ |
| 147 | "/" CONFIG_FDTFILE " " \ |
| 148 | "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 149 | "bootcmd_rescue=run config_nc_dhcp; run nc\0" \ |
| 150 | "eraseenv=sf probe 0 " \ |
Marek Vasut | 5368c55 | 2012-09-23 17:41:24 +0200 | [diff] [blame] | 151 | "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \ |
| 152 | " +" __stringify(CONFIG_ENV_SIZE) "\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 153 | "config_nc_dhcp=setenv autoload_old ${autoload}; " \ |
| 154 | "setenv autoload no " \ |
| 155 | "&& bootp " \ |
Michael Walle | 23c9946 | 2012-10-04 06:54:25 +0000 | [diff] [blame] | 156 | "&& setenv ncip " \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 157 | "&& setenv autoload ${autoload_old}; " \ |
| 158 | "setenv autoload_old\0" \ |
| 159 | "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \ |
| 160 | "setenv ncip; setenv gatewayip; setenv ethact; " \ |
| 161 | "setenv bootfile; setenv dnsip; " \ |
Michael Walle | 45e60c2 | 2014-09-28 00:05:23 +0200 | [diff] [blame] | 162 | "setenv bootsource legacy; run ser\0" \ |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 163 | "restore_env=run standard_env; saveenv; reset\0" \ |
| 164 | "ser=setenv stdin serial; setenv stdout serial; " \ |
| 165 | "setenv stderr serial\0" \ |
| 166 | "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \ |
| 167 | "stdin=serial\0" \ |
| 168 | "stdout=serial\0" \ |
| 169 | "stderr=serial\0" |
| 170 | |
| 171 | /* |
| 172 | * Ethernet Driver configuration |
| 173 | */ |
| 174 | #ifdef CONFIG_CMD_NET |
| 175 | #define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */ |
| 176 | #define CONFIG_PHY_BASE_ADR 7 |
| 177 | #undef CONFIG_RESET_PHY_R |
| 178 | #endif /* CONFIG_CMD_NET */ |
| 179 | |
| 180 | #ifdef CONFIG_CMD_IDE |
| 181 | #undef CONFIG_IDE_LED |
| 182 | #undef CONFIG_SYS_IDE_MAXBUS |
| 183 | #define CONFIG_SYS_IDE_MAXBUS 1 |
| 184 | #undef CONFIG_SYS_IDE_MAXDEVICE |
| 185 | #define CONFIG_SYS_IDE_MAXDEVICE 1 |
| 186 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET |
Michael Walle | 9e5f060 | 2014-04-01 20:09:13 +0200 | [diff] [blame] | 187 | #define CONFIG_SYS_64BIT_LBA |
Michael Walle | f214a20 | 2012-06-05 11:33:17 +0000 | [diff] [blame] | 188 | #endif |
| 189 | |
| 190 | #endif /* _CONFIG_LSXL_H */ |