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