blob: f9ada1af000aa59835396b6e6eb3da7411e181ea [file] [log] [blame]
Michael Wallef214a202012-06-05 11:33:17 +00001/*
2 * Copyright (c) 2012 Michael Walle
3 * Michael Walle <michael@walle.cc>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Michael Wallef214a202012-06-05 11:33:17 +00006 */
7
8#ifndef _CONFIG_LSXL_H
9#define _CONFIG_LSXL_H
10
Michael Walle45e60c22014-09-28 00:05:23 +020011
Michael Wallef214a202012-06-05 11:33:17 +000012/*
13 * Version number information
14 */
15#if defined(CONFIG_LSCHLV2)
16#define CONFIG_IDENT_STRING " LS-CHLv2"
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090017#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000018#define CONFIG_MACH_TYPE 3006
19#define CONFIG_SYS_TCLK 166666667 /* 166 MHz */
20#elif defined(CONFIG_LSXHL)
21#define CONFIG_IDENT_STRING " LS-XHL"
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090022#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000023#define CONFIG_MACH_TYPE 2663
24/* CONFIG_SYS_TCLK is 200000000 by default */
25#else
26#error "unknown board"
27#endif
28
29/*
30 * General configuration options
31 */
32#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Michael Wallef214a202012-06-05 11:33:17 +000033#define CONFIG_KW88F6281 /* SOC Name */
34
35#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
36#define CONFIG_MISC_INIT_R
37#define CONFIG_SHOW_BOOT_PROGRESS
38
Michael Wallef214a202012-06-05 11:33:17 +000039#define CONFIG_KIRKWOOD_GPIO
Michael Wallef214a202012-06-05 11:33:17 +000040
41#define CONFIG_SYS_NO_FLASH
Michael Wallef214a202012-06-05 11:33:17 +000042#define CONFIG_SYS_CONSOLE_IS_IN_ENV
43#define CONFIG_SYS_CONSOLE_INFO_QUIET
44
45/*
46 * Enable u-boot API for standalone programs.
47 */
48#define CONFIG_API
49
50/*
51 * Commands configuration
52 */
Michael Walle4fe49d72015-02-08 20:06:07 +010053#define CONFIG_CMD_BOOTZ
Michael Wallef214a202012-06-05 11:33:17 +000054#define CONFIG_CMD_DHCP
Michael Wallef214a202012-06-05 11:33:17 +000055#define CONFIG_CMD_ENV
56#define CONFIG_CMD_EXT2
57#define CONFIG_CMD_FAT
58#define CONFIG_CMD_IDE
59#define CONFIG_CMD_PING
60#define CONFIG_CMD_PING
61#define CONFIG_CMD_SF
62#define CONFIG_CMD_SPI
63#define CONFIG_CMD_USB
Michael Walle848fe232014-04-01 20:09:14 +020064#define CONFIG_CMD_FS_GENERIC
Michael Wallef214a202012-06-05 11:33:17 +000065
66#define CONFIG_DOS_PARTITION
67#define CONFIG_EFI_PARTITION
68
69/*
70 * mv-common.h should be defined after CMD configs since it used them
71 * to enable certain macros
72 */
73#include "mv-common.h"
74
Michael Walle4fe49d72015-02-08 20:06:07 +010075/* loading initramfs images without uimage header */
76#define CONFIG_SUPPORT_RAW_INITRD
77
Michael Wallef214a202012-06-05 11:33:17 +000078/* ST M25P40 */
Michael Wallef214a202012-06-05 11:33:17 +000079#undef CONFIG_ENV_SPI_MAX_HZ
80#define CONFIG_ENV_SPI_MAX_HZ 25000000
81#undef CONFIG_SF_DEFAULT_SPEED
82#define CONFIG_SF_DEFAULT_SPEED 25000000
83
84
Michael Wallef214a202012-06-05 11:33:17 +000085
86/*
87 * Environment variables configurations
88 */
89#ifdef CONFIG_SPI_FLASH
90#define CONFIG_SYS_MAX_FLASH_BANKS 1
91#define CONFIG_SYS_MAX_FLASH_SECT 8
92#define CONFIG_ENV_IS_IN_SPI_FLASH 1
93#define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
94#else
95#define CONFIG_ENV_IS_NOWHERE
96#endif
97
98#define CONFIG_ENV_SIZE 0x10000 /* 64k */
99#define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
100
101/*
102 * Default environment variables
103 */
104#define CONFIG_LOADADDR 0x00800000
105#define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}"
106#define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2"
Michael Walle848fe232014-04-01 20:09:14 +0200107
108#if defined(CONFIG_LSXHL)
109#define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
110#elif defined(CONFIG_LSCHLV2)
111#define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
112#else
113#error "Unsupported board"
114#endif
115
Michael Wallef214a202012-06-05 11:33:17 +0000116#define CONFIG_EXTRA_ENV_SETTINGS \
Michael Walle848fe232014-04-01 20:09:14 +0200117 "bootsource=legacy\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000118 "hdpart=0:1\0" \
Michael Walle848fe232014-04-01 20:09:14 +0200119 "kernel_addr=0x00800000\0" \
120 "ramdisk_addr=0x01000000\0" \
Michael Walle145df6f2015-02-08 20:06:06 +0100121 "fdt_addr=0x00ff0000\0" \
Michael Walle848fe232014-04-01 20:09:14 +0200122 "bootcmd_legacy=ide reset " \
Michael Wallebc2ad9f02015-02-08 20:06:05 +0100123 "&& load ide ${hdpart} ${kernel_addr} /uImage.buffalo " \
124 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.buffalo "\
125 "&& bootm ${kernel_addr} ${ramdisk_addr}\0" \
Michael Walle4fe49d72015-02-08 20:06:07 +0100126 "bootcmd_net=bootp ${kernel_addr} vmlinuz " \
127 "&& tftpboot ${ramdisk_addr} initrd.img " \
128 "&& setenv ramdisk_len ${filesize} " \
Michael Walle848fe232014-04-01 20:09:14 +0200129 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100130 "&& bootz ${kernel_addr} " \
131 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000132 "bootcmd_hdd=ide reset " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100133 "&& load ide ${hdpart} ${kernel_addr} /vmlinuz " \
134 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.img " \
135 "&& setenv ramdisk_len ${filesize} " \
136 "&& load ide ${hdpart} ${fdt_addr} /dtb " \
137 "&& bootz ${kernel_addr} " \
138 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000139 "bootcmd_usb=usb start " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100140 "&& load usb 0:1 ${kernel_addr} /vmlinuz " \
141 "&& load usb 0:1 ${ramdisk_addr} /initrd.img " \
142 "&& setenv ramdisk_len ${filesize} " \
143 "&& load usb 0:1 ${fdt_addr} " CONFIG_FDTFILE " " \
144 "&& bootz ${kernel_addr} " \
145 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000146 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
147 "eraseenv=sf probe 0 " \
Marek Vasut5368c552012-09-23 17:41:24 +0200148 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
149 " +" __stringify(CONFIG_ENV_SIZE) "\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000150 "config_nc_dhcp=setenv autoload_old ${autoload}; " \
151 "setenv autoload no " \
152 "&& bootp " \
Michael Walle23c99462012-10-04 06:54:25 +0000153 "&& setenv ncip " \
Michael Wallef214a202012-06-05 11:33:17 +0000154 "&& setenv autoload ${autoload_old}; " \
155 "setenv autoload_old\0" \
156 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
157 "setenv ncip; setenv gatewayip; setenv ethact; " \
158 "setenv bootfile; setenv dnsip; " \
Michael Walle45e60c22014-09-28 00:05:23 +0200159 "setenv bootsource legacy; run ser\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000160 "restore_env=run standard_env; saveenv; reset\0" \
161 "ser=setenv stdin serial; setenv stdout serial; " \
162 "setenv stderr serial\0" \
163 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
164 "stdin=serial\0" \
165 "stdout=serial\0" \
166 "stderr=serial\0"
167
168/*
169 * Ethernet Driver configuration
170 */
171#ifdef CONFIG_CMD_NET
172#define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
173#define CONFIG_PHY_BASE_ADR 7
174#undef CONFIG_RESET_PHY_R
175#endif /* CONFIG_CMD_NET */
176
177#ifdef CONFIG_CMD_IDE
178#undef CONFIG_IDE_LED
179#undef CONFIG_SYS_IDE_MAXBUS
180#define CONFIG_SYS_IDE_MAXBUS 1
181#undef CONFIG_SYS_IDE_MAXDEVICE
182#define CONFIG_SYS_IDE_MAXDEVICE 1
183#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
Michael Walle9e5f0602014-04-01 20:09:13 +0200184#define CONFIG_SYS_64BIT_LBA
Michael Wallef214a202012-06-05 11:33:17 +0000185#endif
186
187#endif /* _CONFIG_LSXL_H */