2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-06-17 14:11:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Simon Guinot <sguinot@lacie.com>
|
|
|
|
*/
|
|
|
|
|
2011-11-21 13:55:47 +00:00
|
|
|
#ifndef _CONFIG_LACIE_KW_H
|
|
|
|
#define _CONFIG_LACIE_KW_H
|
2011-06-17 14:11:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
|
|
|
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
2012-09-06 10:51:42 +00:00
|
|
|
/* SoC name */
|
|
|
|
#if defined(CONFIG_NETSPACE_LITE_V2) || defined(CONFIG_NETSPACE_MINI_V2)
|
|
|
|
#define CONFIG_KW88F6192
|
|
|
|
#else
|
|
|
|
#define CONFIG_KW88F6281
|
|
|
|
#endif
|
2011-06-17 14:11:33 +00:00
|
|
|
|
2011-11-21 13:55:47 +00:00
|
|
|
/*
|
|
|
|
* SDRAM configuration
|
|
|
|
*/
|
|
|
|
|
2012-09-06 10:51:42 +00:00
|
|
|
/*
|
|
|
|
* Different SDRAM configuration and size for some of the boards derived
|
|
|
|
* from the Network Space v2
|
|
|
|
*/
|
|
|
|
#if defined(CONFIG_INETSPACE_V2)
|
2014-03-11 02:05:17 +00:00
|
|
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-is2.cfg
|
2012-09-06 10:51:42 +00:00
|
|
|
#elif defined(CONFIG_NETSPACE_LITE_V2) || defined(CONFIG_NETSPACE_MINI_V2)
|
2014-03-11 02:05:17 +00:00
|
|
|
#define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-ns2l.cfg
|
2011-11-01 11:14:12 +00:00
|
|
|
#endif
|
|
|
|
|
2011-06-17 14:11:33 +00:00
|
|
|
/*
|
|
|
|
* mv-common.h should be defined after CMD configs since it used them
|
|
|
|
* to enable certain macros
|
|
|
|
*/
|
|
|
|
#include "mv-common.h"
|
|
|
|
|
|
|
|
/* Remove or override few declarations from mv-common.h */
|
|
|
|
#undef CONFIG_SYS_IDE_MAXBUS
|
|
|
|
#undef CONFIG_SYS_IDE_MAXDEVICE
|
|
|
|
|
2013-06-18 13:14:48 +00:00
|
|
|
/*
|
|
|
|
* Enable platform initialisation via misc_init_r() function
|
|
|
|
*/
|
|
|
|
|
2011-06-17 14:11:33 +00:00
|
|
|
/*
|
|
|
|
* Ethernet Driver configuration
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CMD_NET
|
|
|
|
#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SATA Driver configuration
|
|
|
|
*/
|
2020-06-28 17:00:29 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SATA
|
|
|
|
#define CONFIG_SYS_64BIT_LBA
|
|
|
|
#define CONFIG_LBA48
|
2012-09-06 10:51:43 +00:00
|
|
|
#if defined(CONFIG_NETSPACE_MAX_V2) || defined(CONFIG_D2NET_V2) || \
|
|
|
|
defined(CONFIG_NET2BIG_V2)
|
2020-06-28 17:00:29 +00:00
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE 2
|
2015-09-03 09:12:20 +00:00
|
|
|
#else
|
2020-06-28 17:00:29 +00:00
|
|
|
#define CONFIG_SYS_SATA_MAX_DEVICE 1
|
2011-06-17 14:11:33 +00:00
|
|
|
#endif
|
2020-06-28 17:00:29 +00:00
|
|
|
#endif /* CONFIG_SATA */
|
2011-06-17 14:11:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable GPI0 support
|
|
|
|
*/
|
|
|
|
#define CONFIG_KIRKWOOD_GPIO
|
|
|
|
|
2011-11-01 11:14:12 +00:00
|
|
|
/*
|
|
|
|
* Enable I2C support
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_CMD_I2C
|
|
|
|
/* I2C EEPROM HT24LC04 (512B - 32 pages of 16 Bytes) */
|
2013-06-18 13:14:48 +00:00
|
|
|
#if defined(CONFIG_NET2BIG_V2)
|
|
|
|
#define CONFIG_SYS_I2C_G762_ADDR 0x3e
|
|
|
|
#endif
|
2011-11-01 11:14:12 +00:00
|
|
|
#endif /* CONFIG_CMD_I2C */
|
|
|
|
|
2012-09-06 10:51:41 +00:00
|
|
|
/*
|
|
|
|
* Partition support
|
|
|
|
*/
|
|
|
|
|
2011-06-17 14:11:33 +00:00
|
|
|
/*
|
|
|
|
* File systems support
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Environment variables configurations
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default environment variables
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTCOMMAND \
|
|
|
|
"dhcp && run netconsole; " \
|
|
|
|
"if run usbload || run diskload; then bootm; fi"
|
|
|
|
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
|
|
"stdin=serial\0" \
|
|
|
|
"stdout=serial\0" \
|
|
|
|
"stderr=serial\0" \
|
|
|
|
"bootfile=uImage\0" \
|
|
|
|
"loadaddr=0x800000\0" \
|
|
|
|
"autoload=no\0" \
|
|
|
|
"netconsole=" \
|
|
|
|
"set stdin $stdin,nc; " \
|
|
|
|
"set stdout $stdout,nc; " \
|
|
|
|
"set stderr $stderr,nc;\0" \
|
2020-06-28 17:00:29 +00:00
|
|
|
"diskload=sata init && " \
|
|
|
|
"ext2load sata 0:1 $loadaddr /boot/$bootfile\0" \
|
2011-06-17 14:11:33 +00:00
|
|
|
"usbload=usb start && " \
|
|
|
|
"fatload usb 0:1 $loadaddr /boot/$bootfile\0"
|
|
|
|
|
2011-11-21 13:55:47 +00:00
|
|
|
#endif /* _CONFIG_LACIE_KW_H */
|