blob: 82db0919bf55e1d2b5c29852f1255a5e7bc94353 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocher60301192010-02-22 16:43:02 +05302/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Prafulla Wadaskar <prafulla@marvell.com>
6 *
7 * (C) Copyright 2009
8 * Stefan Roese, DENX Software Engineering, sr@denx.de.
9 *
Heiko Schocher8ce3dd52011-03-15 16:52:29 +010010 * (C) Copyright 2010-2011
11 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
Heiko Schocher60301192010-02-22 16:43:02 +053012 */
13
Heiko Schocher8ce3dd52011-03-15 16:52:29 +010014/*
15 * for linking errors see
16 * http://lists.denx.de/pipermail/u-boot/2009-July/057350.html
17 */
Heiko Schocher60301192010-02-22 16:43:02 +053018
19#ifndef _CONFIG_KM_ARM_H
20#define _CONFIG_KM_ARM_H
21
22/*
23 * High Level Configuration Options (easy to change)
24 */
Heiko Schocher60301192010-02-22 16:43:02 +053025#define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
Heiko Schocher60301192010-02-22 16:43:02 +053026#define CONFIG_KW88F6281 /* SOC Name */
Heiko Schocher60301192010-02-22 16:43:02 +053027
Valentin Longchampabb69992011-11-01 17:26:36 +053028#define CONFIG_MACH_TYPE MACH_TYPE_KM_KIRKWOOD
29
Holger Brunck2b8dfb92013-01-15 22:51:21 +000030#define CONFIG_NAND_ECC_BCH
Holger Brunck2b8dfb92013-01-15 22:51:21 +000031
Heiko Schocher60301192010-02-22 16:43:02 +053032/* include common defines/options for all Keymile boards */
33#include "keymile-common.h"
Holger Brunck752ba312011-03-14 16:01:04 +010034
Valentin Longchamp1192b522013-10-18 11:47:15 +020035/* Reserve 4 MB for malloc */
36#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
37
Holger Brunckc7c71692020-10-09 17:21:32 +020038/* Increase max size of compressed kernel */
39#define CONFIG_SYS_BOOTM_LEN (32 << 20)
40
Holger Brunckc1e09212011-06-16 18:11:15 +053041#include "asm/arch/config.h"
42
Holger Brunck2ff59ee2011-07-04 21:27:16 +000043/* architecture specific default bootargs */
44#define CONFIG_KM_DEF_BOOT_ARGS_CPU \
Holger Brunckc11136c2011-09-13 22:41:04 +000045 "bootcountaddr=${bootcountaddr} ${mtdparts}" \
46 " boardid=0x${IVM_BoardId} hwkey=0x${IVM_HWKey}"
Holger Brunck2ff59ee2011-07-04 21:27:16 +000047
Holger Brunck752ba312011-03-14 16:01:04 +010048#define CONFIG_KM_DEF_ENV_CPU \
Holger Brunckff41a752020-10-30 12:45:49 +010049 "u-boot=" CONFIG_HOSTNAME "/u-boot.kwb\0" \
Holger Brunck49a84612012-05-25 01:57:16 +000050 CONFIG_KM_UPDATE_UBOOT \
Gerlando Falauto18a74ec2014-01-27 16:58:28 +010051 "set_fdthigh=setenv fdt_high ${kernelmem}\0" \
Valentin Longchamp15e79cc2015-11-13 16:15:20 +010052 "checkfdt=" \
53 "if cramfsls fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb; " \
54 "then true; else setenv cramfsloadfdt true; " \
55 "setenv boot bootm ${load_addr_r}; " \
56 "echo No FDT found, booting with the kernel " \
57 "appended one; fi\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010058 ""
59
Heiko Schocher60301192010-02-22 16:43:02 +053060/*
Heiko Schocher60301192010-02-22 16:43:02 +053061 * For booting Linux, the board info and command line data
62 * have to be in the first 8 MB of memory, since this is
63 * the maximum mapped by the Linux kernel during initialization.
64 */
Heiko Schocher60301192010-02-22 16:43:02 +053065#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
66#define CONFIG_INITRD_TAG /* enable INITRD tag */
Holger Brunck4559d1f2011-04-08 02:47:46 +000067#define CONFIG_SETUP_MEMORY_TAGS /* enable memory tag */
Heiko Schocher60301192010-02-22 16:43:02 +053068
69/*
Heiko Schocher60301192010-02-22 16:43:02 +053070 * NAND Flash configuration
71 */
72#define CONFIG_SYS_MAX_NAND_DEVICE 1
Heiko Schocher60301192010-02-22 16:43:02 +053073
Heiko Schocher60301192010-02-22 16:43:02 +053074/*
75 * Other required minimal configurations
76 */
Heiko Schocher60301192010-02-22 16:43:02 +053077
78/*
79 * Ethernet Driver configuration
80 */
Pascal Linder2dc89532019-07-09 09:30:27 +020081#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer autoneg timeout */
Albert Aribaude91d7d32010-07-12 22:24:28 +020082#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
Heiko Schocher60301192010-02-22 16:43:02 +053083#define CONFIG_PHY_BASE_ADR 0
Heiko Schocher60301192010-02-22 16:43:02 +053084
85/*
Heiko Schocher60301192010-02-22 16:43:02 +053086 * I2C related stuff
87 */
Heiko Schocher479a4cf2013-01-29 08:53:15 +010088#undef CONFIG_I2C_MVTWSI
Valentin Longchamp255f2502013-10-18 11:47:17 +020089#define CONFIG_SYS_I2C_INIT_BOARD
Heiko Schocher479a4cf2013-01-29 08:53:15 +010090
Heiko Schocher60301192010-02-22 16:43:02 +053091#define CONFIG_KIRKWOOD_GPIO /* Enable GPIO Support */
Heiko Schocher479a4cf2013-01-29 08:53:15 +010092#define CONFIG_SYS_NUM_I2C_BUSES 6
93#define CONFIG_SYS_I2C_MAX_HOPS 1
94#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
95 {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
96 {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
97 {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
98 {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
99 {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
100 }
101
Heiko Schocher60301192010-02-22 16:43:02 +0530102#ifndef __ASSEMBLY__
Masahiro Yamada98833d22015-02-20 17:04:15 +0900103#include <asm/arch/gpio.h>
Simon Glassdbd79542020-05-10 11:40:11 -0600104#include <linux/delay.h>
Simon Glassfb64e362020-05-10 11:40:09 -0600105#include <linux/stringify.h>
Heiko Schocher60301192010-02-22 16:43:02 +0530106extern void __set_direction(unsigned pin, int high);
Heiko Schocher9878f992011-02-22 09:13:00 +0100107#define KM_KIRKWOOD_SDA_PIN 8
108#define KM_KIRKWOOD_SCL_PIN 9
Holger Brunck7d25a1a2012-07-05 05:05:11 +0000109#define KM_KIRKWOOD_SOFT_I2C_GPIOS 0x0300
Heiko Schocher9878f992011-02-22 09:13:00 +0100110#define KM_KIRKWOOD_ENV_WP 38
Heiko Schocher60301192010-02-22 16:43:02 +0530111
Heiko Schocher9878f992011-02-22 09:13:00 +0100112#define I2C_ACTIVE __set_direction(KM_KIRKWOOD_SDA_PIN, 0)
113#define I2C_TRISTATE __set_direction(KM_KIRKWOOD_SDA_PIN, 1)
114#define I2C_READ (kw_gpio_get_value(KM_KIRKWOOD_SDA_PIN) ? 1 : 0)
115#define I2C_SDA(bit) kw_gpio_set_value(KM_KIRKWOOD_SDA_PIN, bit)
116#define I2C_SCL(bit) kw_gpio_set_value(KM_KIRKWOOD_SCL_PIN, bit)
Heiko Schocher60301192010-02-22 16:43:02 +0530117#endif
118
Holger Brunckd0071582011-12-14 05:31:19 +0000119#define I2C_DELAY udelay(1)
Heiko Schocher60301192010-02-22 16:43:02 +0530120#define I2C_SOFT_DECLARATIONS
121
Stefan Biglerc9449302011-07-04 22:24:01 +0000122/* EEprom support 24C128, 24C256 valid for environment eeprom */
Stefan Biglerc9449302011-07-04 22:24:01 +0000123#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
Heiko Schocher60301192010-02-22 16:43:02 +0530124
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100125/*
126 * Environment variables configurations
127 */
Holger Brunck2ef42952012-07-05 05:37:46 +0000128#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
Holger Brunck2ef42952012-07-05 05:37:46 +0000129#define CONFIG_ENV_TOTAL_SIZE 0x20000 /* no bracets! */
130#else
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100131#define CONFIG_SYS_EEPROM_WREN
Valentin Longchampace55bd2015-11-13 15:01:14 +0100132#define CONFIG_I2C_ENV_EEPROM_BUS 5 /* I2C2 (Mux-Port 5) */
Holger Brunck2ef42952012-07-05 05:37:46 +0000133#endif
134
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000135#define KM_FLASH_GPIO_PIN 16
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100136
Holger Brunck49a84612012-05-25 01:57:16 +0000137#define CONFIG_KM_UPDATE_UBOOT \
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100138 "update=" \
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000139 "sf probe 0;sf erase 0 +${filesize};" \
140 "sf write ${load_addr_r} 0 ${filesize};\0"
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100141
Holger Brunck2ef42952012-07-05 05:37:46 +0000142#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
143#define CONFIG_KM_NEW_ENV \
144 "newenv=sf probe 0;" \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200145 "sf erase " __stringify(CONFIG_ENV_OFFSET) " " \
146 __stringify(CONFIG_ENV_TOTAL_SIZE)"\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000147#else
148#define CONFIG_KM_NEW_ENV \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000149 "newenv=setenv addr 0x100000 && " \
Holger Brunckb29fcc32013-05-06 02:54:38 +0000150 "i2c dev " __stringify(CONFIG_I2C_ENV_EEPROM_BUS) "; " \
151 "mw.b ${addr} 0 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400152 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200153 " ${addr} " __stringify(CONFIG_ENV_OFFSET) " 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400154 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200155 " ${addr} " __stringify(CONFIG_ENV_OFFSET_REDUND) " 4\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000156#endif
157
Holger Brunck19baeb62014-01-27 16:58:25 +0100158#ifndef CONFIG_KM_BOARD_EXTRA_ENV
159#define CONFIG_KM_BOARD_EXTRA_ENV ""
160#endif
161
Holger Brunck2ef42952012-07-05 05:37:46 +0000162/*
163 * Default environment variables
164 */
165#define CONFIG_EXTRA_ENV_SETTINGS \
Holger Brunck19baeb62014-01-27 16:58:25 +0100166 CONFIG_KM_BOARD_EXTRA_ENV \
Holger Brunck2ef42952012-07-05 05:37:46 +0000167 CONFIG_KM_DEF_ENV \
168 CONFIG_KM_NEW_ENV \
Holger Bruncke7bec9b2011-07-04 21:52:52 +0000169 "arch=arm\0" \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000170 ""
171
Heiko Schocherd6d60622010-09-22 14:06:33 +0200172/* additions for new relocation code, must be added to all boards */
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200173#define CONFIG_SYS_SDRAM_BASE 0x00000000
Heiko Schochercfc58042010-04-26 13:07:28 +0200174
Holger Bruncke7c1fdc2011-03-04 14:56:27 +0100175/* address for the bootcount (taken from end of RAM) */
176#define BOOTCOUNT_ADDR (CONFIG_KM_RESERVED_PRAM)
Heiko Schochercfc58042010-04-26 13:07:28 +0200177
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000178/* enable POST tests */
179#define CONFIG_POST (CONFIG_SYS_POST_MEM_REGIONS)
180#define CONFIG_POST_SKIP_ENV_FLAGS
181#define CONFIG_POST_EXTERNAL_WORD_FUNCS
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000182
Heiko Schocher60301192010-02-22 16:43:02 +0530183#endif /* _CONFIG_KM_ARM_H */