blob: 0caca4c20faad3e42f9eff9b2cbfe287768a6249 [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
11/*
12 * Version number information
13 */
14#if defined(CONFIG_LSCHLV2)
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090015#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000016#define CONFIG_MACH_TYPE 3006
17#define CONFIG_SYS_TCLK 166666667 /* 166 MHz */
18#elif defined(CONFIG_LSXHL)
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090019#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000020#define CONFIG_MACH_TYPE 2663
21/* CONFIG_SYS_TCLK is 200000000 by default */
22#else
23#error "unknown board"
24#endif
25
26/*
27 * General configuration options
28 */
29#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Michael Wallef214a202012-06-05 11:33:17 +000030#define CONFIG_KW88F6281 /* SOC Name */
31
32#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
33#define CONFIG_MISC_INIT_R
34#define CONFIG_SHOW_BOOT_PROGRESS
35
Michael Wallef214a202012-06-05 11:33:17 +000036#define CONFIG_KIRKWOOD_GPIO
Michael Wallef214a202012-06-05 11:33:17 +000037
38#define CONFIG_SYS_NO_FLASH
Michael Wallef214a202012-06-05 11:33:17 +000039
40/*
41 * Enable u-boot API for standalone programs.
42 */
43#define CONFIG_API
44
45/*
46 * Commands configuration
47 */
Michael Wallef214a202012-06-05 11:33:17 +000048#define CONFIG_CMD_ENV
Michael Wallef214a202012-06-05 11:33:17 +000049#define CONFIG_CMD_IDE
Michael Wallef214a202012-06-05 11:33:17 +000050
51#define CONFIG_DOS_PARTITION
52#define CONFIG_EFI_PARTITION
53
54/*
55 * mv-common.h should be defined after CMD configs since it used them
56 * to enable certain macros
57 */
58#include "mv-common.h"
59
Michael Walle4fe49d72015-02-08 20:06:07 +010060/* loading initramfs images without uimage header */
61#define CONFIG_SUPPORT_RAW_INITRD
62
Michael Wallef214a202012-06-05 11:33:17 +000063/* ST M25P40 */
Michael Wallef214a202012-06-05 11:33:17 +000064#undef CONFIG_ENV_SPI_MAX_HZ
65#define CONFIG_ENV_SPI_MAX_HZ 25000000
66#undef CONFIG_SF_DEFAULT_SPEED
67#define CONFIG_SF_DEFAULT_SPEED 25000000
68
Michael Wallef214a202012-06-05 11:33:17 +000069/*
70 * Environment variables configurations
71 */
72#ifdef CONFIG_SPI_FLASH
73#define CONFIG_SYS_MAX_FLASH_BANKS 1
74#define CONFIG_SYS_MAX_FLASH_SECT 8
75#define CONFIG_ENV_IS_IN_SPI_FLASH 1
76#define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
77#else
78#define CONFIG_ENV_IS_NOWHERE
79#endif
80
81#define CONFIG_ENV_SIZE 0x10000 /* 64k */
82#define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
83
84/*
85 * Default environment variables
86 */
87#define CONFIG_LOADADDR 0x00800000
88#define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}"
89#define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2"
Michael Walle848fe232014-04-01 20:09:14 +020090
91#if defined(CONFIG_LSXHL)
92#define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
93#elif defined(CONFIG_LSCHLV2)
94#define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
95#else
96#error "Unsupported board"
97#endif
98
Michael Wallef214a202012-06-05 11:33:17 +000099#define CONFIG_EXTRA_ENV_SETTINGS \
Michael Walle848fe232014-04-01 20:09:14 +0200100 "bootsource=legacy\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000101 "hdpart=0:1\0" \
Michael Walle848fe232014-04-01 20:09:14 +0200102 "kernel_addr=0x00800000\0" \
103 "ramdisk_addr=0x01000000\0" \
Michael Walle145df6f2015-02-08 20:06:06 +0100104 "fdt_addr=0x00ff0000\0" \
Michael Walle848fe232014-04-01 20:09:14 +0200105 "bootcmd_legacy=ide reset " \
Michael Wallebc2ad9f02015-02-08 20:06:05 +0100106 "&& load ide ${hdpart} ${kernel_addr} /uImage.buffalo " \
107 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.buffalo "\
108 "&& bootm ${kernel_addr} ${ramdisk_addr}\0" \
Michael Walle4fe49d72015-02-08 20:06:07 +0100109 "bootcmd_net=bootp ${kernel_addr} vmlinuz " \
110 "&& tftpboot ${ramdisk_addr} initrd.img " \
111 "&& setenv ramdisk_len ${filesize} " \
Michael Walle848fe232014-04-01 20:09:14 +0200112 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100113 "&& bootz ${kernel_addr} " \
114 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000115 "bootcmd_hdd=ide reset " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100116 "&& load ide ${hdpart} ${kernel_addr} /vmlinuz " \
117 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.img " \
118 "&& setenv ramdisk_len ${filesize} " \
119 "&& load ide ${hdpart} ${fdt_addr} /dtb " \
120 "&& bootz ${kernel_addr} " \
121 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000122 "bootcmd_usb=usb start " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100123 "&& load usb 0:1 ${kernel_addr} /vmlinuz " \
124 "&& load usb 0:1 ${ramdisk_addr} /initrd.img " \
125 "&& setenv ramdisk_len ${filesize} " \
126 "&& load usb 0:1 ${fdt_addr} " CONFIG_FDTFILE " " \
127 "&& bootz ${kernel_addr} " \
128 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000129 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
130 "eraseenv=sf probe 0 " \
Marek Vasut5368c552012-09-23 17:41:24 +0200131 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
132 " +" __stringify(CONFIG_ENV_SIZE) "\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000133 "config_nc_dhcp=setenv autoload_old ${autoload}; " \
134 "setenv autoload no " \
135 "&& bootp " \
Michael Walle23c99462012-10-04 06:54:25 +0000136 "&& setenv ncip " \
Michael Wallef214a202012-06-05 11:33:17 +0000137 "&& setenv autoload ${autoload_old}; " \
138 "setenv autoload_old\0" \
139 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
140 "setenv ncip; setenv gatewayip; setenv ethact; " \
141 "setenv bootfile; setenv dnsip; " \
Michael Walle45e60c22014-09-28 00:05:23 +0200142 "setenv bootsource legacy; run ser\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000143 "restore_env=run standard_env; saveenv; reset\0" \
144 "ser=setenv stdin serial; setenv stdout serial; " \
145 "setenv stderr serial\0" \
146 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
147 "stdin=serial\0" \
148 "stdout=serial\0" \
149 "stderr=serial\0"
150
151/*
152 * Ethernet Driver configuration
153 */
154#ifdef CONFIG_CMD_NET
155#define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
156#define CONFIG_PHY_BASE_ADR 7
157#undef CONFIG_RESET_PHY_R
158#endif /* CONFIG_CMD_NET */
159
160#ifdef CONFIG_CMD_IDE
161#undef CONFIG_IDE_LED
162#undef CONFIG_SYS_IDE_MAXBUS
163#define CONFIG_SYS_IDE_MAXBUS 1
164#undef CONFIG_SYS_IDE_MAXDEVICE
165#define CONFIG_SYS_IDE_MAXDEVICE 1
166#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
Michael Walle9e5f0602014-04-01 20:09:13 +0200167#define CONFIG_SYS_64BIT_LBA
Michael Wallef214a202012-06-05 11:33:17 +0000168#endif
169
170#endif /* _CONFIG_LSXL_H */