blob: faa74c613fbd175858ad010fc0b5770e080f9b90 [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 */
Michael Wallef214a202012-06-05 11:33:17 +000032
Michael Wallef214a202012-06-05 11:33:17 +000033#define CONFIG_KIRKWOOD_GPIO
Michael Wallef214a202012-06-05 11:33:17 +000034
Michael Wallef214a202012-06-05 11:33:17 +000035/*
Michael Wallef214a202012-06-05 11:33:17 +000036 * Commands configuration
37 */
Michael Wallef214a202012-06-05 11:33:17 +000038
Michael Wallef214a202012-06-05 11:33:17 +000039/*
40 * mv-common.h should be defined after CMD configs since it used them
41 * to enable certain macros
42 */
43#include "mv-common.h"
44
Michael Walle4fe49d72015-02-08 20:06:07 +010045/* loading initramfs images without uimage header */
Michael Walle4fe49d72015-02-08 20:06:07 +010046
Michael Wallef214a202012-06-05 11:33:17 +000047/*
48 * Environment variables configurations
49 */
50#ifdef CONFIG_SPI_FLASH
51#define CONFIG_SYS_MAX_FLASH_BANKS 1
52#define CONFIG_SYS_MAX_FLASH_SECT 8
Michael Wallef214a202012-06-05 11:33:17 +000053#endif
54
Michael Wallef214a202012-06-05 11:33:17 +000055/*
56 * Default environment variables
57 */
58#define CONFIG_LOADADDR 0x00800000
Michael Walle848fe232014-04-01 20:09:14 +020059
60#if defined(CONFIG_LSXHL)
61#define CONFIG_FDTFILE "kirkwood-lsxhl.dtb"
62#elif defined(CONFIG_LSCHLV2)
63#define CONFIG_FDTFILE "kirkwood-lschlv2.dtb"
64#else
65#error "Unsupported board"
66#endif
67
Michael Wallef214a202012-06-05 11:33:17 +000068#define CONFIG_EXTRA_ENV_SETTINGS \
Michael Walle848fe232014-04-01 20:09:14 +020069 "bootsource=legacy\0" \
Michael Wallef214a202012-06-05 11:33:17 +000070 "hdpart=0:1\0" \
Michael Walle848fe232014-04-01 20:09:14 +020071 "kernel_addr=0x00800000\0" \
72 "ramdisk_addr=0x01000000\0" \
Michael Walle145df6f2015-02-08 20:06:06 +010073 "fdt_addr=0x00ff0000\0" \
Michael Wallef94b5222019-04-03 23:28:31 +020074 "bootcmd_legacy=sata init " \
75 "&& load sata ${hdpart} ${kernel_addr} /uImage.buffalo "\
76 "&& load sata ${hdpart} ${ramdisk_addr} /initrd.buffalo "\
Michael Wallebc2ad9f02015-02-08 20:06:05 +010077 "&& bootm ${kernel_addr} ${ramdisk_addr}\0" \
Michael Walle4fe49d72015-02-08 20:06:07 +010078 "bootcmd_net=bootp ${kernel_addr} vmlinuz " \
79 "&& tftpboot ${ramdisk_addr} initrd.img " \
80 "&& setenv ramdisk_len ${filesize} " \
Michael Walle848fe232014-04-01 20:09:14 +020081 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \
Michael Walle4fe49d72015-02-08 20:06:07 +010082 "&& bootz ${kernel_addr} " \
83 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef94b5222019-04-03 23:28:31 +020084 "bootcmd_hdd=sata init " \
85 "&& load sata ${hdpart} ${kernel_addr} /vmlinuz " \
86 "&& load sata ${hdpart} ${ramdisk_addr} /initrd.img " \
Michael Walle4fe49d72015-02-08 20:06:07 +010087 "&& setenv ramdisk_len ${filesize} " \
Michael Wallef94b5222019-04-03 23:28:31 +020088 "&& load sata ${hdpart} ${fdt_addr} /dtb " \
Michael Walle4fe49d72015-02-08 20:06:07 +010089 "&& bootz ${kernel_addr} " \
90 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +000091 "bootcmd_usb=usb start " \
Michael Walle4fe49d72015-02-08 20:06:07 +010092 "&& load usb 0:1 ${kernel_addr} /vmlinuz " \
93 "&& load usb 0:1 ${ramdisk_addr} /initrd.img " \
94 "&& setenv ramdisk_len ${filesize} " \
95 "&& load usb 0:1 ${fdt_addr} " CONFIG_FDTFILE " " \
96 "&& bootz ${kernel_addr} " \
97 "${ramdisk_addr}:${ramdisk_len} ${fdt_addr}\0" \
Michael Wallef214a202012-06-05 11:33:17 +000098 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
99 "eraseenv=sf probe 0 " \
Marek Vasut5368c552012-09-23 17:41:24 +0200100 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
101 " +" __stringify(CONFIG_ENV_SIZE) "\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000102 "config_nc_dhcp=setenv autoload_old ${autoload}; " \
103 "setenv autoload no " \
104 "&& bootp " \
Michael Walle23c99462012-10-04 06:54:25 +0000105 "&& setenv ncip " \
Michael Wallef214a202012-06-05 11:33:17 +0000106 "&& setenv autoload ${autoload_old}; " \
107 "setenv autoload_old\0" \
108 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
109 "setenv ncip; setenv gatewayip; setenv ethact; " \
110 "setenv bootfile; setenv dnsip; " \
Michael Walle45e60c22014-09-28 00:05:23 +0200111 "setenv bootsource legacy; run ser\0" \
Michael Wallef214a202012-06-05 11:33:17 +0000112 "restore_env=run standard_env; saveenv; reset\0" \
113 "ser=setenv stdin serial; setenv stdout serial; " \
114 "setenv stderr serial\0" \
115 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
116 "stdin=serial\0" \
117 "stdout=serial\0" \
118 "stderr=serial\0"
119
120/*
121 * Ethernet Driver configuration
122 */
123#ifdef CONFIG_CMD_NET
124#define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
125#define CONFIG_PHY_BASE_ADR 7
126#undef CONFIG_RESET_PHY_R
127#endif /* CONFIG_CMD_NET */
128
Michael Wallef94b5222019-04-03 23:28:31 +0200129#ifdef CONFIG_SATA
130#define CONFIG_SYS_SATA_MAX_DEVICE 1
Michael Walle9e5f0602014-04-01 20:09:13 +0200131#define CONFIG_SYS_64BIT_LBA
Michael Wallef94b5222019-04-03 23:28:31 +0200132#define CONFIG_LBA48
Michael Wallef214a202012-06-05 11:33:17 +0000133#endif
134
135#endif /* _CONFIG_LSXL_H */