2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2010-02-22 11:13:02 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2009
|
|
|
|
* Marvell Semiconductor <www.marvell.com>
|
|
|
|
* Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2009
|
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
*
|
2011-03-15 15:52:29 +00:00
|
|
|
* (C) Copyright 2010-2011
|
|
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
2010-02-22 11:13:02 +00:00
|
|
|
*/
|
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
/*
|
|
|
|
* for linking errors see
|
|
|
|
* http://lists.denx.de/pipermail/u-boot/2009-July/057350.html
|
|
|
|
*/
|
2010-02-22 11:13:02 +00:00
|
|
|
|
|
|
|
#ifndef _CONFIG_KM_ARM_H
|
|
|
|
#define _CONFIG_KM_ARM_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* High Level Configuration Options (easy to change)
|
|
|
|
*/
|
|
|
|
#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
|
|
|
|
#define CONFIG_KW88F6281 /* SOC Name */
|
|
|
|
|
2011-11-01 11:56:36 +00:00
|
|
|
#define CONFIG_MACH_TYPE MACH_TYPE_KM_KIRKWOOD
|
|
|
|
|
2013-01-15 22:51:21 +00:00
|
|
|
#define CONFIG_NAND_ECC_BCH
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
/* include common defines/options for all Keymile boards */
|
|
|
|
#include "keymile-common.h"
|
2011-03-14 15:01:04 +00:00
|
|
|
|
2013-10-18 09:47:15 +00:00
|
|
|
/* Reserve 4 MB for malloc */
|
|
|
|
#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
|
|
|
|
|
2020-10-09 15:21:32 +00:00
|
|
|
/* Increase max size of compressed kernel */
|
|
|
|
#define CONFIG_SYS_BOOTM_LEN (32 << 20)
|
|
|
|
|
2011-06-16 12:41:15 +00:00
|
|
|
#include "asm/arch/config.h"
|
|
|
|
|
2011-03-14 15:01:04 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR 0x00800000 /* default load adr- 8M */
|
|
|
|
|
2011-07-04 21:27:16 +00:00
|
|
|
/* architecture specific default bootargs */
|
|
|
|
#define CONFIG_KM_DEF_BOOT_ARGS_CPU \
|
2011-09-13 22:41:04 +00:00
|
|
|
"bootcountaddr=${bootcountaddr} ${mtdparts}" \
|
|
|
|
" boardid=0x${IVM_BoardId} hwkey=0x${IVM_HWKey}"
|
2011-07-04 21:27:16 +00:00
|
|
|
|
2011-03-14 15:01:04 +00:00
|
|
|
#define CONFIG_KM_DEF_ENV_CPU \
|
2020-10-30 11:45:49 +00:00
|
|
|
"u-boot=" CONFIG_HOSTNAME "/u-boot.kwb\0" \
|
2012-05-25 01:57:16 +00:00
|
|
|
CONFIG_KM_UPDATE_UBOOT \
|
arm/km: define fdt_high env variable and allow backwards compatibility
Add set_fdthigh subcommand to "subbootcmds" (release) so to set "fdt_high"
This is necessary on Kirkwood so that the FDT does not get relocated
above the memory limit that the kernel cannot access
(that is the memory part reserved for the switch).
This was tested on NUSA1, where it is necessary, and on ETER1, where it
doesn't seem to hurt.
We want the scripts to also work with older versions of u-boot, where:
a) set_fdthigh is not defined (will be default env for newer u-boots)
b) the fdt will not be available
For this reason, we use "set_fdthigh" to tell whether we are running
a newer (FDT-aware) u-boot or not.
So if "set_fdthigh" runs successfully or arch != arm we try loading
the fdt; otherwise we proceed normally.
Notice how, contrary to release mode, set_fdthigh will _not_ be part of
subbootcmds for develop and ramfs, but will be executed as part of
"tftpfdt".
Since this is only needed for kirkwood cards, and it prevents the kernel
from booting on QorIQ (though it seemed to work on ETER1), we change
its definition in the default env for powerpc so that the value is only
set on ARM.
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
Signed-off-by: Gerlando Falauto <gerlando.falauto@keymile.com>
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Acked-by: Valentin Longchamp <valentin.longchamp@keymile.com>
2014-01-27 15:58:28 +00:00
|
|
|
"set_fdthigh=setenv fdt_high ${kernelmem}\0" \
|
2015-11-13 15:15:20 +00:00
|
|
|
"checkfdt=" \
|
|
|
|
"if cramfsls fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb; " \
|
|
|
|
"then true; else setenv cramfsloadfdt true; " \
|
|
|
|
"setenv boot bootm ${load_addr_r}; " \
|
|
|
|
"echo No FDT found, booting with the kernel " \
|
|
|
|
"appended one; fi\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
""
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
#define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For booting Linux, the board info and command line data
|
|
|
|
* have to be in the first 8 MB of memory, since this is
|
|
|
|
* the maximum mapped by the Linux kernel during initialization.
|
|
|
|
*/
|
|
|
|
#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
|
|
|
|
#define CONFIG_INITRD_TAG /* enable INITRD tag */
|
2011-04-08 02:47:46 +00:00
|
|
|
#define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
|
2010-02-22 11:13:02 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* NAND Flash configuration
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Other required minimal configurations
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ethernet Driver configuration
|
|
|
|
*/
|
2019-07-09 07:30:27 +00:00
|
|
|
#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer autoneg timeout */
|
2010-07-12 20:24:28 +00:00
|
|
|
#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
|
2010-02-22 11:13:02 +00:00
|
|
|
#define CONFIG_PHY_BASE_ADR 0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* I2C related stuff
|
|
|
|
*/
|
2013-01-29 07:53:15 +00:00
|
|
|
#undef CONFIG_I2C_MVTWSI
|
2021-07-11 03:14:32 +00:00
|
|
|
#define CONFIG_SYS_I2C_LEGACY
|
2013-01-29 07:53:15 +00:00
|
|
|
#define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
|
2013-10-18 09:47:17 +00:00
|
|
|
#define CONFIG_SYS_I2C_INIT_BOARD
|
2013-01-29 07:53:15 +00:00
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
#define CONFIG_KIRKWOOD_GPIO /* Enable GPIO Support */
|
2013-01-29 07:53:15 +00:00
|
|
|
#define CONFIG_SYS_NUM_I2C_BUSES 6
|
|
|
|
#define CONFIG_SYS_I2C_MAX_HOPS 1
|
|
|
|
#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
|
|
|
|
{0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
|
|
|
|
{0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
|
|
|
|
{0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
|
|
|
|
{0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
|
|
|
|
{0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
|
|
|
|
}
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2015-02-20 08:04:15 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2020-05-10 17:40:09 +00:00
|
|
|
#include <linux/stringify.h>
|
2010-02-22 11:13:02 +00:00
|
|
|
extern void __set_direction(unsigned pin, int high);
|
2011-02-22 08:13:00 +00:00
|
|
|
#define KM_KIRKWOOD_SDA_PIN 8
|
|
|
|
#define KM_KIRKWOOD_SCL_PIN 9
|
2012-07-05 05:05:11 +00:00
|
|
|
#define KM_KIRKWOOD_SOFT_I2C_GPIOS 0x0300
|
2011-02-22 08:13:00 +00:00
|
|
|
#define KM_KIRKWOOD_ENV_WP 38
|
|
|
|
|
|
|
|
#define I2C_ACTIVE __set_direction(KM_KIRKWOOD_SDA_PIN, 0)
|
|
|
|
#define I2C_TRISTATE __set_direction(KM_KIRKWOOD_SDA_PIN, 1)
|
|
|
|
#define I2C_READ (kw_gpio_get_value(KM_KIRKWOOD_SDA_PIN) ? 1 : 0)
|
|
|
|
#define I2C_SDA(bit) kw_gpio_set_value(KM_KIRKWOOD_SDA_PIN, bit)
|
|
|
|
#define I2C_SCL(bit) kw_gpio_set_value(KM_KIRKWOOD_SCL_PIN, bit)
|
2010-02-22 11:13:02 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-14 05:31:19 +00:00
|
|
|
#define I2C_DELAY udelay(1)
|
2010-02-22 11:13:02 +00:00
|
|
|
#define I2C_SOFT_DECLARATIONS
|
|
|
|
|
2013-01-29 07:53:15 +00:00
|
|
|
#define CONFIG_SYS_I2C_SOFT_SLAVE 0x0
|
|
|
|
#define CONFIG_SYS_I2C_SOFT_SPEED 100000
|
2010-02-22 11:13:02 +00:00
|
|
|
|
2011-07-04 22:24:01 +00:00
|
|
|
/* EEprom support 24C128, 24C256 valid for environment eeprom */
|
|
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
|
|
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 6 /* 64 Byte write page */
|
|
|
|
#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
|
|
|
|
#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
|
|
|
|
|
2011-02-22 07:30:46 +00:00
|
|
|
/*
|
|
|
|
* Environment variables configurations
|
|
|
|
*/
|
2012-07-05 05:37:46 +00:00
|
|
|
#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
|
|
|
|
#define CONFIG_ENV_TOTAL_SIZE 0x20000 /* no bracets! */
|
|
|
|
#else
|
2011-02-22 07:30:46 +00:00
|
|
|
#define CONFIG_SYS_DEF_EEPROM_ADDR 0x50
|
|
|
|
#define CONFIG_ENV_EEPROM_IS_ON_I2C
|
|
|
|
#define CONFIG_SYS_EEPROM_WREN
|
2015-11-13 14:01:14 +00:00
|
|
|
#define CONFIG_I2C_ENV_EEPROM_BUS 5 /* I2C2 (Mux-Port 5) */
|
2012-07-05 05:37:46 +00:00
|
|
|
#endif
|
|
|
|
|
2012-06-13 03:01:03 +00:00
|
|
|
#define KM_FLASH_GPIO_PIN 16
|
2011-02-22 07:30:46 +00:00
|
|
|
|
2012-05-25 01:57:16 +00:00
|
|
|
#define CONFIG_KM_UPDATE_UBOOT \
|
2011-02-22 07:30:46 +00:00
|
|
|
"update=" \
|
2012-06-13 03:01:03 +00:00
|
|
|
"sf probe 0;sf erase 0 +${filesize};" \
|
|
|
|
"sf write ${load_addr_r} 0 ${filesize};\0"
|
2011-02-22 07:30:46 +00:00
|
|
|
|
2012-07-05 05:37:46 +00:00
|
|
|
#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
|
|
|
|
#define CONFIG_KM_NEW_ENV \
|
|
|
|
"newenv=sf probe 0;" \
|
2012-09-23 15:41:23 +00:00
|
|
|
"sf erase " __stringify(CONFIG_ENV_OFFSET) " " \
|
|
|
|
__stringify(CONFIG_ENV_TOTAL_SIZE)"\0"
|
2012-07-05 05:37:46 +00:00
|
|
|
#else
|
|
|
|
#define CONFIG_KM_NEW_ENV \
|
2011-05-31 02:12:46 +00:00
|
|
|
"newenv=setenv addr 0x100000 && " \
|
2013-05-06 02:54:38 +00:00
|
|
|
"i2c dev " __stringify(CONFIG_I2C_ENV_EEPROM_BUS) "; " \
|
|
|
|
"mw.b ${addr} 0 4 && " \
|
2012-09-23 15:41:23 +00:00
|
|
|
"eeprom write " __stringify(CONFIG_SYS_DEF_EEPROM_ADDR) \
|
|
|
|
" ${addr} " __stringify(CONFIG_ENV_OFFSET) " 4 && " \
|
|
|
|
"eeprom write " __stringify(CONFIG_SYS_DEF_EEPROM_ADDR) \
|
|
|
|
" ${addr} " __stringify(CONFIG_ENV_OFFSET_REDUND) " 4\0"
|
2012-07-05 05:37:46 +00:00
|
|
|
#endif
|
|
|
|
|
2014-01-27 15:58:25 +00:00
|
|
|
#ifndef CONFIG_KM_BOARD_EXTRA_ENV
|
|
|
|
#define CONFIG_KM_BOARD_EXTRA_ENV ""
|
|
|
|
#endif
|
|
|
|
|
2012-07-05 05:37:46 +00:00
|
|
|
/*
|
|
|
|
* Default environment variables
|
|
|
|
*/
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
2014-01-27 15:58:25 +00:00
|
|
|
CONFIG_KM_BOARD_EXTRA_ENV \
|
2012-07-05 05:37:46 +00:00
|
|
|
CONFIG_KM_DEF_ENV \
|
|
|
|
CONFIG_KM_NEW_ENV \
|
2011-07-04 21:52:52 +00:00
|
|
|
"arch=arm\0" \
|
2011-05-31 02:12:46 +00:00
|
|
|
""
|
|
|
|
|
2010-09-22 12:06:33 +00:00
|
|
|
/* additions for new relocation code, must be added to all boards */
|
2010-09-17 11:10:42 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
2010-04-26 11:07:28 +00:00
|
|
|
|
2011-03-04 13:56:27 +00:00
|
|
|
/* address for the bootcount (taken from end of RAM) */
|
|
|
|
#define BOOTCOUNT_ADDR (CONFIG_KM_RESERVED_PRAM)
|
2010-04-26 11:07:28 +00:00
|
|
|
|
2011-09-12 04:18:42 +00:00
|
|
|
/* enable POST tests */
|
|
|
|
#define CONFIG_POST (CONFIG_SYS_POST_MEM_REGIONS)
|
|
|
|
#define CONFIG_POST_SKIP_ENV_FLAGS
|
|
|
|
#define CONFIG_POST_EXTERNAL_WORD_FUNCS
|
|
|
|
|
2010-02-22 11:13:02 +00:00
|
|
|
#endif /* _CONFIG_KM_ARM_H */
|