blob: 2ce92845f1c01b1e12aef22525d53b4a51a217c0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roeseb20c38a2016-01-20 08:13:29 +01002/*
3 * Copyright (C) 2015-2016 Stefan Roese <sr@denx.de>
Stefan Roeseb20c38a2016-01-20 08:13:29 +01004 */
5
6#ifndef _CONFIG_THEADORABLE_H
7#define _CONFIG_THEADORABLE_H
8
Tom Rini94752f52021-08-21 13:50:14 -04009#include <linux/sizes.h>
10
Stefan Roeseb20c38a2016-01-20 08:13:29 +010011/*
12 * High Level Configuration Options (easy to change)
13 */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010014
15/*
16 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
17 * for DDR ECC byte filling in the SPL before loading the main
18 * U-Boot into it.
19 */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010020
21/*
Stefan Roeseb20c38a2016-01-20 08:13:29 +010022 * The debugging version enables USB support via defconfig.
23 * This version should also enable all other non-production
24 * interfaces / features.
25 */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010026
27/* I2C */
Tom Rini45ede972022-12-04 10:04:09 -050028#define CFG_I2C_MVTWSI_BASE0 MVEBU_TWSI_BASE
Tom Rini35661f82022-12-04 10:04:10 -050029#define CFG_I2C_MVTWSI_BASE1 MVEBU_TWSI1_BASE
Stefan Roeseb20c38a2016-01-20 08:13:29 +010030
31/* USB/EHCI configuration */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010032
Stefan Roeseb20c38a2016-01-20 08:13:29 +010033/* Environment in SPI NOR flash */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010034
Stefan Roeseb20c38a2016-01-20 08:13:29 +010035#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
36
Stefan Roeseb20c38a2016-01-20 08:13:29 +010037/* Keep device tree and initrd in lower memory so the kernel can access them */
Tom Rini0613c362022-12-04 10:03:50 -050038#define CFG_EXTRA_ENV_SETTINGS \
Stefan Roeseb20c38a2016-01-20 08:13:29 +010039 "fdt_high=0x10000000\0" \
40 "initrd_high=0x10000000\0"
41
Stefan Roeseb20c38a2016-01-20 08:13:29 +010042/*
Stefan Roese28226b92016-04-07 10:48:14 +020043 * Bootcounter
44 */
Stefan Roese28226b92016-04-07 10:48:14 +020045/* Max size of RAM minus BOOTCOUNT_ADDR is the bootcounter address */
46#define BOOTCOUNT_ADDR 0x1000
47
48/*
Stefan Roeseb20c38a2016-01-20 08:13:29 +010049 * mv-common.h should be defined after CMD configs since it used them
50 * to enable certain macros
51 */
52#include "mv-common.h"
53
54/*
55 * Memory layout while starting into the bin_hdr via the
56 * BootROM:
57 *
58 * 0x4000.4000 - 0x4003.4000 headers space (192KiB)
59 * 0x4000.4030 bin_hdr start address
60 * 0x4003.4000 - 0x4004.7c00 BootROM memory allocations (15KiB)
61 * 0x4007.fffc BootROM stack top
62 *
63 * The address space between 0x4007.fffc and 0x400f.fff is not locked in
64 * L2 cache thus cannot be used.
65 */
66
67/* SPL */
68/* Defines for SPL */
Stefan Roeseb20c38a2016-01-20 08:13:29 +010069
Stefan Roeseb20c38a2016-01-20 08:13:29 +010070/* Enable DDR support in SPL (DDR3 training from Marvell bin_hdr) */
Tom Riniaa6e94d2022-11-16 13:10:37 -050071#define CFG_SYS_SDRAM_SIZE SZ_2G
Stefan Roeseb20c38a2016-01-20 08:13:29 +010072
73#endif /* _CONFIG_THEADORABLE_H */