blob: eee71db37c2bfaa5947d3af33cf5e410ef2e83e4 [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
Holger Brunck2b8dfb92013-01-15 22:51:21 +000022#define CONFIG_NAND_ECC_BCH
Holger Brunck2b8dfb92013-01-15 22:51:21 +000023
Heiko Schocher60301192010-02-22 16:43:02 +053024/* include common defines/options for all Keymile boards */
25#include "keymile-common.h"
Holger Brunck752ba312011-03-14 16:01:04 +010026
Holger Brunckc7c71692020-10-09 17:21:32 +020027/* Increase max size of compressed kernel */
Holger Brunckc7c71692020-10-09 17:21:32 +020028
Holger Brunckc1e09212011-06-16 18:11:15 +053029#include "asm/arch/config.h"
30
Holger Brunck2ff59ee2011-07-04 21:27:16 +000031/* architecture specific default bootargs */
32#define CONFIG_KM_DEF_BOOT_ARGS_CPU \
Holger Brunckc11136c2011-09-13 22:41:04 +000033 "bootcountaddr=${bootcountaddr} ${mtdparts}" \
34 " boardid=0x${IVM_BoardId} hwkey=0x${IVM_HWKey}"
Holger Brunck2ff59ee2011-07-04 21:27:16 +000035
Holger Brunck752ba312011-03-14 16:01:04 +010036#define CONFIG_KM_DEF_ENV_CPU \
Holger Brunckff41a752020-10-30 12:45:49 +010037 "u-boot=" CONFIG_HOSTNAME "/u-boot.kwb\0" \
Holger Brunck49a84612012-05-25 01:57:16 +000038 CONFIG_KM_UPDATE_UBOOT \
Gerlando Falauto18a74ec2014-01-27 16:58:28 +010039 "set_fdthigh=setenv fdt_high ${kernelmem}\0" \
Valentin Longchamp15e79cc2015-11-13 16:15:20 +010040 "checkfdt=" \
41 "if cramfsls fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb; " \
42 "then true; else setenv cramfsloadfdt true; " \
43 "setenv boot bootm ${load_addr_r}; " \
44 "echo No FDT found, booting with the kernel " \
45 "appended one; fi\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010046 ""
47
Heiko Schocher60301192010-02-22 16:43:02 +053048/*
Heiko Schocher60301192010-02-22 16:43:02 +053049 * NAND Flash configuration
50 */
51#define CONFIG_SYS_MAX_NAND_DEVICE 1
Heiko Schocher60301192010-02-22 16:43:02 +053052
Heiko Schocher60301192010-02-22 16:43:02 +053053/*
54 * Other required minimal configurations
55 */
Heiko Schocher60301192010-02-22 16:43:02 +053056
57/*
58 * Ethernet Driver configuration
59 */
Pascal Linder2dc89532019-07-09 09:30:27 +020060#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer autoneg timeout */
Albert Aribaude91d7d32010-07-12 22:24:28 +020061#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
Heiko Schocher60301192010-02-22 16:43:02 +053062#define CONFIG_PHY_BASE_ADR 0
Heiko Schocher60301192010-02-22 16:43:02 +053063
64/*
Heiko Schocher60301192010-02-22 16:43:02 +053065 * I2C related stuff
66 */
Heiko Schocher479a4cf2013-01-29 08:53:15 +010067#undef CONFIG_I2C_MVTWSI
Valentin Longchamp255f2502013-10-18 11:47:17 +020068#define CONFIG_SYS_I2C_INIT_BOARD
Heiko Schocher479a4cf2013-01-29 08:53:15 +010069
Heiko Schocher479a4cf2013-01-29 08:53:15 +010070#define CONFIG_SYS_NUM_I2C_BUSES 6
71#define CONFIG_SYS_I2C_MAX_HOPS 1
72#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
73 {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
74 {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
75 {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
76 {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
77 {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
78 }
79
Heiko Schocher60301192010-02-22 16:43:02 +053080#ifndef __ASSEMBLY__
Masahiro Yamada98833d22015-02-20 17:04:15 +090081#include <asm/arch/gpio.h>
Simon Glassdbd79542020-05-10 11:40:11 -060082#include <linux/delay.h>
Simon Glassfb64e362020-05-10 11:40:09 -060083#include <linux/stringify.h>
Heiko Schocher60301192010-02-22 16:43:02 +053084extern void __set_direction(unsigned pin, int high);
Heiko Schocher9878f992011-02-22 09:13:00 +010085#define KM_KIRKWOOD_SDA_PIN 8
86#define KM_KIRKWOOD_SCL_PIN 9
Holger Brunck7d25a1a2012-07-05 05:05:11 +000087#define KM_KIRKWOOD_SOFT_I2C_GPIOS 0x0300
Heiko Schocher9878f992011-02-22 09:13:00 +010088#define KM_KIRKWOOD_ENV_WP 38
Heiko Schocher60301192010-02-22 16:43:02 +053089
Heiko Schocher9878f992011-02-22 09:13:00 +010090#define I2C_ACTIVE __set_direction(KM_KIRKWOOD_SDA_PIN, 0)
91#define I2C_TRISTATE __set_direction(KM_KIRKWOOD_SDA_PIN, 1)
92#define I2C_READ (kw_gpio_get_value(KM_KIRKWOOD_SDA_PIN) ? 1 : 0)
93#define I2C_SDA(bit) kw_gpio_set_value(KM_KIRKWOOD_SDA_PIN, bit)
94#define I2C_SCL(bit) kw_gpio_set_value(KM_KIRKWOOD_SCL_PIN, bit)
Heiko Schocher60301192010-02-22 16:43:02 +053095#endif
96
Holger Brunckd0071582011-12-14 05:31:19 +000097#define I2C_DELAY udelay(1)
Heiko Schocher60301192010-02-22 16:43:02 +053098#define I2C_SOFT_DECLARATIONS
99
Stefan Biglerc9449302011-07-04 22:24:01 +0000100/* EEprom support 24C128, 24C256 valid for environment eeprom */
Stefan Biglerc9449302011-07-04 22:24:01 +0000101#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
Heiko Schocher60301192010-02-22 16:43:02 +0530102
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100103/*
104 * Environment variables configurations
105 */
Holger Brunck2ef42952012-07-05 05:37:46 +0000106#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
Holger Brunck2ef42952012-07-05 05:37:46 +0000107#define CONFIG_ENV_TOTAL_SIZE 0x20000 /* no bracets! */
108#else
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100109#define CONFIG_SYS_EEPROM_WREN
Valentin Longchampace55bd2015-11-13 15:01:14 +0100110#define CONFIG_I2C_ENV_EEPROM_BUS 5 /* I2C2 (Mux-Port 5) */
Holger Brunck2ef42952012-07-05 05:37:46 +0000111#endif
112
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000113#define KM_FLASH_GPIO_PIN 16
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100114
Holger Brunck49a84612012-05-25 01:57:16 +0000115#define CONFIG_KM_UPDATE_UBOOT \
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100116 "update=" \
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000117 "sf probe 0;sf erase 0 +${filesize};" \
118 "sf write ${load_addr_r} 0 ${filesize};\0"
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100119
Holger Brunck2ef42952012-07-05 05:37:46 +0000120#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
121#define CONFIG_KM_NEW_ENV \
122 "newenv=sf probe 0;" \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200123 "sf erase " __stringify(CONFIG_ENV_OFFSET) " " \
124 __stringify(CONFIG_ENV_TOTAL_SIZE)"\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000125#else
126#define CONFIG_KM_NEW_ENV \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000127 "newenv=setenv addr 0x100000 && " \
Holger Brunckb29fcc32013-05-06 02:54:38 +0000128 "i2c dev " __stringify(CONFIG_I2C_ENV_EEPROM_BUS) "; " \
129 "mw.b ${addr} 0 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400130 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200131 " ${addr} " __stringify(CONFIG_ENV_OFFSET) " 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400132 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200133 " ${addr} " __stringify(CONFIG_ENV_OFFSET_REDUND) " 4\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000134#endif
135
Holger Brunck19baeb62014-01-27 16:58:25 +0100136#ifndef CONFIG_KM_BOARD_EXTRA_ENV
137#define CONFIG_KM_BOARD_EXTRA_ENV ""
138#endif
139
Holger Brunck2ef42952012-07-05 05:37:46 +0000140/*
141 * Default environment variables
142 */
143#define CONFIG_EXTRA_ENV_SETTINGS \
Holger Brunck19baeb62014-01-27 16:58:25 +0100144 CONFIG_KM_BOARD_EXTRA_ENV \
Holger Brunck2ef42952012-07-05 05:37:46 +0000145 CONFIG_KM_DEF_ENV \
146 CONFIG_KM_NEW_ENV \
Holger Bruncke7bec9b2011-07-04 21:52:52 +0000147 "arch=arm\0" \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000148 ""
149
Heiko Schocherd6d60622010-09-22 14:06:33 +0200150/* additions for new relocation code, must be added to all boards */
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200151#define CONFIG_SYS_SDRAM_BASE 0x00000000
Heiko Schochercfc58042010-04-26 13:07:28 +0200152
Holger Bruncke7c1fdc2011-03-04 14:56:27 +0100153/* address for the bootcount (taken from end of RAM) */
154#define BOOTCOUNT_ADDR (CONFIG_KM_RESERVED_PRAM)
Heiko Schochercfc58042010-04-26 13:07:28 +0200155
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000156/* enable POST tests */
157#define CONFIG_POST (CONFIG_SYS_POST_MEM_REGIONS)
158#define CONFIG_POST_SKIP_ENV_FLAGS
159#define CONFIG_POST_EXTERNAL_WORD_FUNCS
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000160
Heiko Schocher60301192010-02-22 16:43:02 +0530161#endif /* _CONFIG_KM_ARM_H */