]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/lsxl.h
kirkwood: kconfig: refactor Kconfig and defconfig
[people/ms/u-boot.git] / include / configs / lsxl.h
1 /*
2 * Copyright (c) 2012 Michael Walle
3 * Michael Walle <michael@walle.cc>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
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"
16 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
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"
21 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
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 */
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
38 #define CONFIG_RANDOM_MACADDR
39 #define CONFIG_LIB_RAND
40 #define CONFIG_KIRKWOOD_GPIO
41 #define CONFIG_OF_LIBFDT
42
43 #define CONFIG_SYS_NO_FLASH
44 #define CONFIG_SYS_HUSH_PARSER
45 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
46 #define CONFIG_SYS_CONSOLE_INFO_QUIET
47
48 /*
49 * Enable u-boot API for standalone programs.
50 */
51 #define CONFIG_API
52
53 /*
54 * Commands configuration
55 */
56 #include <config_cmd_default.h>
57 #define CONFIG_CMD_DHCP
58 #define CONFIG_CMD_ELF
59 #define CONFIG_CMD_ENV
60 #define CONFIG_CMD_EXT2
61 #define CONFIG_CMD_FAT
62 #define CONFIG_CMD_IDE
63 #define CONFIG_CMD_PING
64 #define CONFIG_CMD_PING
65 #define CONFIG_CMD_SF
66 #define CONFIG_CMD_SPI
67 #define CONFIG_CMD_USB
68 #define CONFIG_CMD_FS_GENERIC
69
70 #define CONFIG_DOS_PARTITION
71 #define CONFIG_EFI_PARTITION
72
73 /*
74 * mv-common.h should be defined after CMD configs since it used them
75 * to enable certain macros
76 */
77 #include "mv-common.h"
78
79 /* ST M25P40 */
80 #undef CONFIG_SPI_FLASH_MACRONIX
81 #define CONFIG_SPI_FLASH_STMICRO
82 #undef CONFIG_ENV_SPI_MAX_HZ
83 #define CONFIG_ENV_SPI_MAX_HZ 25000000
84 #undef CONFIG_SF_DEFAULT_SPEED
85 #define CONFIG_SF_DEFAULT_SPEED 25000000
86
87
88 #undef CONFIG_SYS_PROMPT
89 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
90
91 /*
92 * Environment variables configurations
93 */
94 #ifdef CONFIG_SPI_FLASH
95 #define CONFIG_SYS_MAX_FLASH_BANKS 1
96 #define CONFIG_SYS_MAX_FLASH_SECT 8
97 #define CONFIG_ENV_IS_IN_SPI_FLASH 1
98 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
99 #else
100 #define CONFIG_ENV_IS_NOWHERE
101 #endif
102
103 #define CONFIG_ENV_SIZE 0x10000 /* 64k */
104 #define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
105
106 /*
107 * Default environment variables
108 */
109 #define CONFIG_LOADADDR 0x00800000
110 #define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}"
111 #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2"
112
113 #if defined(CONFIG_LSXHL)
114 #define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
115 #elif defined(CONFIG_LSCHLV2)
116 #define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
117 #else
118 #error "Unsupported board"
119 #endif
120
121 #define CONFIG_EXTRA_ENV_SETTINGS \
122 "bootsource=legacy\0" \
123 "hdpart=0:1\0" \
124 "kernel_addr=0x00800000\0" \
125 "ramdisk_addr=0x01000000\0" \
126 "fdt_addr=0x01ff0000\0" \
127 "bootcmd_legacy=ide reset " \
128 "&& load ide ${hdpart} 0x00100000 /uImage.buffalo " \
129 "&& load ide ${hdpart} 0x00800000 /initrd.buffalo " \
130 "&& bootm 0x00100000 0x00800000\0" \
131 "bootcmd_net=bootp ${kernel_addr} uImage " \
132 "&& tftpboot ${ramdisk_addr} uInitrd " \
133 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
134 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
135 "bootcmd_hdd=ide reset " \
136 "&& load ide ${hdpart} ${kernel_addr} /uImage " \
137 "&& load ide ${hdpart} ${ramdisk_addr} /uInitrd " \
138 "&& load ide ${hdpart} ${fdt_addr} " \
139 "/" CONFIG_FDTFILE " " \
140 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
141 "bootcmd_usb=usb start " \
142 "&& load usb 0:1 ${kernel_addr} /uImage " \
143 "&& load usb 0:1 ${ramdisk_addr} /uInitrd " \
144 "&& load usb 0:1 ${fdt_addr} " \
145 "/" CONFIG_FDTFILE " " \
146 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \
147 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
148 "eraseenv=sf probe 0 " \
149 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
150 " +" __stringify(CONFIG_ENV_SIZE) "\0" \
151 "config_nc_dhcp=setenv autoload_old ${autoload}; " \
152 "setenv autoload no " \
153 "&& bootp " \
154 "&& setenv ncip " \
155 "&& setenv autoload ${autoload_old}; " \
156 "setenv autoload_old\0" \
157 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
158 "setenv ncip; setenv gatewayip; setenv ethact; " \
159 "setenv bootfile; setenv dnsip; " \
160 "setenv bootsource hdd; run ser\0" \
161 "restore_env=run standard_env; saveenv; reset\0" \
162 "ser=setenv stdin serial; setenv stdout serial; " \
163 "setenv stderr serial\0" \
164 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
165 "stdin=serial\0" \
166 "stdout=serial\0" \
167 "stderr=serial\0"
168
169 /*
170 * Ethernet Driver configuration
171 */
172 #ifdef CONFIG_CMD_NET
173 #define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
174 #define CONFIG_PHY_BASE_ADR 7
175 #undef CONFIG_RESET_PHY_R
176 #endif /* CONFIG_CMD_NET */
177
178 #ifdef CONFIG_CMD_IDE
179 #undef CONFIG_IDE_LED
180 #undef CONFIG_SYS_IDE_MAXBUS
181 #define CONFIG_SYS_IDE_MAXBUS 1
182 #undef CONFIG_SYS_IDE_MAXDEVICE
183 #define CONFIG_SYS_IDE_MAXDEVICE 1
184 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
185 #define CONFIG_SYS_64BIT_LBA
186 #endif
187
188 #endif /* _CONFIG_LSXL_H */