blob: a485c3ac6d1d3f00ebf684e86531768a3a389d76 [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 */
28#define CONFIG_SYS_BOOTM_LEN (32 << 20)
29
Holger Brunckc1e09212011-06-16 18:11:15 +053030#include "asm/arch/config.h"
31
Holger Brunck2ff59ee2011-07-04 21:27:16 +000032/* architecture specific default bootargs */
33#define CONFIG_KM_DEF_BOOT_ARGS_CPU \
Holger Brunckc11136c2011-09-13 22:41:04 +000034 "bootcountaddr=${bootcountaddr} ${mtdparts}" \
35 " boardid=0x${IVM_BoardId} hwkey=0x${IVM_HWKey}"
Holger Brunck2ff59ee2011-07-04 21:27:16 +000036
Holger Brunck752ba312011-03-14 16:01:04 +010037#define CONFIG_KM_DEF_ENV_CPU \
Holger Brunckff41a752020-10-30 12:45:49 +010038 "u-boot=" CONFIG_HOSTNAME "/u-boot.kwb\0" \
Holger Brunck49a84612012-05-25 01:57:16 +000039 CONFIG_KM_UPDATE_UBOOT \
Gerlando Falauto18a74ec2014-01-27 16:58:28 +010040 "set_fdthigh=setenv fdt_high ${kernelmem}\0" \
Valentin Longchamp15e79cc2015-11-13 16:15:20 +010041 "checkfdt=" \
42 "if cramfsls fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb; " \
43 "then true; else setenv cramfsloadfdt true; " \
44 "setenv boot bootm ${load_addr_r}; " \
45 "echo No FDT found, booting with the kernel " \
46 "appended one; fi\0" \
Holger Brunck752ba312011-03-14 16:01:04 +010047 ""
48
Heiko Schocher60301192010-02-22 16:43:02 +053049/*
Heiko Schocher60301192010-02-22 16:43:02 +053050 * NAND Flash configuration
51 */
52#define CONFIG_SYS_MAX_NAND_DEVICE 1
Heiko Schocher60301192010-02-22 16:43:02 +053053
Heiko Schocher60301192010-02-22 16:43:02 +053054/*
55 * Other required minimal configurations
56 */
Heiko Schocher60301192010-02-22 16:43:02 +053057
58/*
59 * Ethernet Driver configuration
60 */
Pascal Linder2dc89532019-07-09 09:30:27 +020061#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer autoneg timeout */
Albert Aribaude91d7d32010-07-12 22:24:28 +020062#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
Heiko Schocher60301192010-02-22 16:43:02 +053063#define CONFIG_PHY_BASE_ADR 0
Heiko Schocher60301192010-02-22 16:43:02 +053064
65/*
Heiko Schocher60301192010-02-22 16:43:02 +053066 * I2C related stuff
67 */
Heiko Schocher479a4cf2013-01-29 08:53:15 +010068#undef CONFIG_I2C_MVTWSI
Valentin Longchamp255f2502013-10-18 11:47:17 +020069#define CONFIG_SYS_I2C_INIT_BOARD
Heiko Schocher479a4cf2013-01-29 08:53:15 +010070
Heiko Schocher479a4cf2013-01-29 08:53:15 +010071#define CONFIG_SYS_NUM_I2C_BUSES 6
72#define CONFIG_SYS_I2C_MAX_HOPS 1
73#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \
74 {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \
75 {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \
76 {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \
77 {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \
78 {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \
79 }
80
Heiko Schocher60301192010-02-22 16:43:02 +053081#ifndef __ASSEMBLY__
Masahiro Yamada98833d22015-02-20 17:04:15 +090082#include <asm/arch/gpio.h>
Simon Glassdbd79542020-05-10 11:40:11 -060083#include <linux/delay.h>
Simon Glassfb64e362020-05-10 11:40:09 -060084#include <linux/stringify.h>
Heiko Schocher60301192010-02-22 16:43:02 +053085extern void __set_direction(unsigned pin, int high);
Heiko Schocher9878f992011-02-22 09:13:00 +010086#define KM_KIRKWOOD_SDA_PIN 8
87#define KM_KIRKWOOD_SCL_PIN 9
Holger Brunck7d25a1a2012-07-05 05:05:11 +000088#define KM_KIRKWOOD_SOFT_I2C_GPIOS 0x0300
Heiko Schocher9878f992011-02-22 09:13:00 +010089#define KM_KIRKWOOD_ENV_WP 38
Heiko Schocher60301192010-02-22 16:43:02 +053090
Heiko Schocher9878f992011-02-22 09:13:00 +010091#define I2C_ACTIVE __set_direction(KM_KIRKWOOD_SDA_PIN, 0)
92#define I2C_TRISTATE __set_direction(KM_KIRKWOOD_SDA_PIN, 1)
93#define I2C_READ (kw_gpio_get_value(KM_KIRKWOOD_SDA_PIN) ? 1 : 0)
94#define I2C_SDA(bit) kw_gpio_set_value(KM_KIRKWOOD_SDA_PIN, bit)
95#define I2C_SCL(bit) kw_gpio_set_value(KM_KIRKWOOD_SCL_PIN, bit)
Heiko Schocher60301192010-02-22 16:43:02 +053096#endif
97
Holger Brunckd0071582011-12-14 05:31:19 +000098#define I2C_DELAY udelay(1)
Heiko Schocher60301192010-02-22 16:43:02 +053099#define I2C_SOFT_DECLARATIONS
100
Stefan Biglerc9449302011-07-04 22:24:01 +0000101/* EEprom support 24C128, 24C256 valid for environment eeprom */
Stefan Biglerc9449302011-07-04 22:24:01 +0000102#define CONFIG_SYS_EEPROM_PAGE_WRITE_ENABLE
Heiko Schocher60301192010-02-22 16:43:02 +0530103
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100104/*
105 * Environment variables configurations
106 */
Holger Brunck2ef42952012-07-05 05:37:46 +0000107#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
Holger Brunck2ef42952012-07-05 05:37:46 +0000108#define CONFIG_ENV_TOTAL_SIZE 0x20000 /* no bracets! */
109#else
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100110#define CONFIG_SYS_EEPROM_WREN
Valentin Longchampace55bd2015-11-13 15:01:14 +0100111#define CONFIG_I2C_ENV_EEPROM_BUS 5 /* I2C2 (Mux-Port 5) */
Holger Brunck2ef42952012-07-05 05:37:46 +0000112#endif
113
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000114#define KM_FLASH_GPIO_PIN 16
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100115
Holger Brunck49a84612012-05-25 01:57:16 +0000116#define CONFIG_KM_UPDATE_UBOOT \
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100117 "update=" \
Valentin Longchamp96957ef2012-06-13 03:01:03 +0000118 "sf probe 0;sf erase 0 +${filesize};" \
119 "sf write ${load_addr_r} 0 ${filesize};\0"
Heiko Schocher8dd6ab72011-02-22 08:30:46 +0100120
Holger Brunck2ef42952012-07-05 05:37:46 +0000121#if defined CONFIG_KM_ENV_IS_IN_SPI_NOR
122#define CONFIG_KM_NEW_ENV \
123 "newenv=sf probe 0;" \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200124 "sf erase " __stringify(CONFIG_ENV_OFFSET) " " \
125 __stringify(CONFIG_ENV_TOTAL_SIZE)"\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000126#else
127#define CONFIG_KM_NEW_ENV \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000128 "newenv=setenv addr 0x100000 && " \
Holger Brunckb29fcc32013-05-06 02:54:38 +0000129 "i2c dev " __stringify(CONFIG_I2C_ENV_EEPROM_BUS) "; " \
130 "mw.b ${addr} 0 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400131 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200132 " ${addr} " __stringify(CONFIG_ENV_OFFSET) " 4 && " \
Tom Rinifaed5672021-08-17 17:59:45 -0400133 "eeprom write " __stringify(CONFIG_SYS_I2C_EEPROM_ADDR) \
Marek Vasutfd5ba892012-09-23 17:41:23 +0200134 " ${addr} " __stringify(CONFIG_ENV_OFFSET_REDUND) " 4\0"
Holger Brunck2ef42952012-07-05 05:37:46 +0000135#endif
136
Holger Brunck19baeb62014-01-27 16:58:25 +0100137#ifndef CONFIG_KM_BOARD_EXTRA_ENV
138#define CONFIG_KM_BOARD_EXTRA_ENV ""
139#endif
140
Holger Brunck2ef42952012-07-05 05:37:46 +0000141/*
142 * Default environment variables
143 */
144#define CONFIG_EXTRA_ENV_SETTINGS \
Holger Brunck19baeb62014-01-27 16:58:25 +0100145 CONFIG_KM_BOARD_EXTRA_ENV \
Holger Brunck2ef42952012-07-05 05:37:46 +0000146 CONFIG_KM_DEF_ENV \
147 CONFIG_KM_NEW_ENV \
Holger Bruncke7bec9b2011-07-04 21:52:52 +0000148 "arch=arm\0" \
Valentin Longchamp06f81f72011-05-31 02:12:46 +0000149 ""
150
Heiko Schocherd6d60622010-09-22 14:06:33 +0200151/* additions for new relocation code, must be added to all boards */
Heiko Schocher0e2412a2010-09-17 13:10:42 +0200152#define CONFIG_SYS_SDRAM_BASE 0x00000000
Heiko Schochercfc58042010-04-26 13:07:28 +0200153
Holger Bruncke7c1fdc2011-03-04 14:56:27 +0100154/* address for the bootcount (taken from end of RAM) */
155#define BOOTCOUNT_ADDR (CONFIG_KM_RESERVED_PRAM)
Heiko Schochercfc58042010-04-26 13:07:28 +0200156
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000157/* enable POST tests */
158#define CONFIG_POST (CONFIG_SYS_POST_MEM_REGIONS)
159#define CONFIG_POST_SKIP_ENV_FLAGS
160#define CONFIG_POST_EXTERNAL_WORD_FUNCS
Valentin Longchamp24ec9932011-09-12 04:18:42 +0000161
Heiko Schocher60301192010-02-22 16:43:02 +0530162#endif /* _CONFIG_KM_ARM_H */