blob: 8d1f0aac1da9c43ffa4c46d62bed5b3912fc1fa8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Michael Wallef214a202012-06-05 11:33:17 +00002/*
3 * Copyright (c) 2012 Michael Walle
4 * Michael Walle <michael@walle.cc>
Michael Wallef214a202012-06-05 11:33:17 +00005 */
6
7#ifndef _CONFIG_LSXL_H
8#define _CONFIG_LSXL_H
9
10/*
11 * Version number information
12 */
13#if defined(CONFIG_LSCHLV2)
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090014#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000015#define CONFIG_MACH_TYPE 3006
16#define CONFIG_SYS_TCLK 166666667 /* 166 MHz */
17#elif defined(CONFIG_LSXHL)
Masahiro Yamada4ab3fc52014-03-11 11:05:17 +090018#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
Michael Wallef214a202012-06-05 11:33:17 +000019#define CONFIG_MACH_TYPE 2663
20/* CONFIG_SYS_TCLK is 200000000 by default */
21#else
22#error "unknown board"
23#endif
24
25/*
26 * General configuration options
27 */
28#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Michael Wallef214a202012-06-05 11:33:17 +000029#define CONFIG_KW88F6281 /* SOC Name */
30
31#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
32#define CONFIG_MISC_INIT_R
33#define CONFIG_SHOW_BOOT_PROGRESS
34
Michael Wallef214a202012-06-05 11:33:17 +000035#define CONFIG_KIRKWOOD_GPIO
Michael Wallef214a202012-06-05 11:33:17 +000036
Michael Wallef214a202012-06-05 11:33:17 +000037/*
Michael Wallef214a202012-06-05 11:33:17 +000038 * Commands configuration
39 */
Michael Wallef214a202012-06-05 11:33:17 +000040
Michael Wallef214a202012-06-05 11:33:17 +000041/*
42 * mv-common.h should be defined after CMD configs since it used them
43 * to enable certain macros
44 */
45#include "mv-common.h"
46
Michael Walle4fe49d72015-02-08 20:06:07 +010047/* loading initramfs images without uimage header */
Michael Walle4fe49d72015-02-08 20:06:07 +010048
Michael Wallef214a202012-06-05 11:33:17 +000049/* ST M25P40 */
Michael Wallef214a202012-06-05 11:33:17 +000050#undef CONFIG_ENV_SPI_MAX_HZ
51#define CONFIG_ENV_SPI_MAX_HZ 25000000
52#undef CONFIG_SF_DEFAULT_SPEED
53#define CONFIG_SF_DEFAULT_SPEED 25000000
54
Michael Wallef214a202012-06-05 11:33:17 +000055/*
56 * Environment variables configurations
57 */
58#ifdef CONFIG_SPI_FLASH
59#define CONFIG_SYS_MAX_FLASH_BANKS 1
60#define CONFIG_SYS_MAX_FLASH_SECT 8
Michael Wallef214a202012-06-05 11:33:17 +000061#define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
Michael Wallef214a202012-06-05 11:33:17 +000062#endif
63
64#define CONFIG_ENV_SIZE 0x10000 /* 64k */
65#define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
66
67/*
68 * Default environment variables
69 */
70#define CONFIG_LOADADDR 0x00800000
Michael Walle848fe232014-04-01 20:09:14 +020071
72#if defined(CONFIG_LSXHL)
73#define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
74#elif defined(CONFIG_LSCHLV2)
75#define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
76#else
77#error "Unsupported board"
78#endif
79
Michael Wallef214a202012-06-05 11:33:17 +000080#define CONFIG_EXTRA_ENV_SETTINGS \
Michael Walle848fe232014-04-01 20:09:14 +020081 "bootsource=legacy\0" \
Michael Wallef214a202012-06-05 11:33:17 +000082 "hdpart=0:1\0" \
Michael Walle848fe232014-04-01 20:09:14 +020083 "kernel_addr=0x00800000\0" \
84 "ramdisk_addr=0x01000000\0" \
Michael Walle145df6f2015-02-08 20:06:06 +010085 "fdt_addr=0x00ff0000\0" \
Michael Walle848fe232014-04-01 20:09:14 +020086 "bootcmd_legacy=ide reset " \
Michael Wallebc2ad9f02015-02-08 20:06:05 +010087 "&& load ide ${hdpart} ${kernel_addr} /uImage.buffalo " \
88 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.buffalo "\
89 "&& bootm ${kernel_addr} ${ramdisk_addr}\0" \
Michael Walle4fe49d72015-02-08 20:06:07 +010090 "bootcmd_net=bootp ${kernel_addr} vmlinuz " \
91 "&& tftpboot ${ramdisk_addr} initrd.img " \
92 "&& setenv ramdisk_len ${filesize} " \
Michael Walle848fe232014-04-01 20:09:14 +020093 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
Michael Walle4fe49d72015-02-08 20:06:07 +010094 "&& bootz ${kernel_addr} " \
95 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +000096 "bootcmd_hdd=ide reset " \
Michael Walle4fe49d72015-02-08 20:06:07 +010097 "&& load ide ${hdpart} ${kernel_addr} /vmlinuz " \
98 "&& load ide ${hdpart} ${ramdisk_addr} /initrd.img " \
99 "&& setenv ramdisk_len ${filesize} " \
100 "&& load ide ${hdpart} ${fdt_addr} /dtb " \
101 "&& bootz ${kernel_addr} " \
102 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000103 "bootcmd_usb=usb start " \
Michael Walle4fe49d72015-02-08 20:06:07 +0100104 "&& load usb 0:1 ${kernel_addr} /vmlinuz " \
105 "&& load usb 0:1 ${ramdisk_addr} /initrd.img " \
106 "&& setenv ramdisk_len ${filesize} " \
107 "&& load usb 0:1 ${fdt_addr} " CONFIG_FDTFILE " " \
108 "&& bootz ${kernel_addr} " \
109 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000110 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
111 "eraseenv=sf probe 0 " \
Marek Vasut5368c552012-09-23 17:41:24 +0200112 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
113 " +" __stringify(CONFIG_ENV_SIZE) "\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000114 "config_nc_dhcp=setenv autoload_old ${autoload}; " \
115 "setenv autoload no " \
116 "&& bootp " \
Michael Walle23c99462012-10-04 06:54:25 +0000117 "&& setenv ncip " \
Michael Wallef214a202012-06-05 11:33:17 +0000118 "&& setenv autoload ${autoload_old}; " \
119 "setenv autoload_old\0" \
120 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
121 "setenv ncip; setenv gatewayip; setenv ethact; " \
122 "setenv bootfile; setenv dnsip; " \
Michael Walle45e60c22014-09-28 00:05:23 +0200123 "setenv bootsource legacy; run ser\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000124 "restore_env=run standard_env; saveenv; reset\0" \
125 "ser=setenv stdin serial; setenv stdout serial; " \
126 "setenv stderr serial\0" \
127 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
128 "stdin=serial\0" \
129 "stdout=serial\0" \
130 "stderr=serial\0"
131
132/*
133 * Ethernet Driver configuration
134 */
135#ifdef CONFIG_CMD_NET
136#define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
137#define CONFIG_PHY_BASE_ADR 7
138#undef CONFIG_RESET_PHY_R
139#endif /* CONFIG_CMD_NET */
140
Simon Glassfc843a02017-05-17 03:25:30 -0600141#ifdef CONFIG_IDE
Michael Wallef214a202012-06-05 11:33:17 +0000142#undef CONFIG_SYS_IDE_MAXBUS
143#define CONFIG_SYS_IDE_MAXBUS 1
144#undef CONFIG_SYS_IDE_MAXDEVICE
145#define CONFIG_SYS_IDE_MAXDEVICE 1
146#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
Michael Walle9e5f0602014-04-01 20:09:13 +0200147#define CONFIG_SYS_64BIT_LBA
Michael Wallef214a202012-06-05 11:33:17 +0000148#endif
149
150#endif /* _CONFIG_LSXL_H */