blob: d6850bd32e72856035bfa710b3a8561fdb37d19b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roesedd580802014-10-22 12:13:18 +02002/*
Stefan Roesec4be10b2015-12-03 12:39:45 +01003 * Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
Stefan Roesedd580802014-10-22 12:13:18 +02004 */
5
6#ifndef _CONFIG_DB_MV7846MP_GP_H
7#define _CONFIG_DB_MV7846MP_GP_H
8
9/*
Stefan Roese2923c2d2015-08-06 14:27:36 +020010 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
11 * for DDR ECC byte filling in the SPL before loading the main
12 * U-Boot into it.
13 */
Stefan Roesedd580802014-10-22 12:13:18 +020014
Stefan Roesedd580802014-10-22 12:13:18 +020015/* I2C */
Paul Kocialkowskidd822422015-04-10 23:09:51 +020016#define CONFIG_I2C_MVTWSI_BASE0 MVEBU_TWSI_BASE
Stefan Roesedd580802014-10-22 12:13:18 +020017
Stefan Roese49114c82015-07-22 18:05:43 +020018/* USB/EHCI configuration */
Anton Schubert8a333712015-07-23 15:02:09 +020019#define CONFIG_USB_MAX_CONTROLLER_COUNT 3
Stefan Roese49114c82015-07-22 18:05:43 +020020
Stefan Roesedd580802014-10-22 12:13:18 +020021/* Environment in SPI NOR flash */
Stefan Roesedd580802014-10-22 12:13:18 +020022
Stefan Roesedd580802014-10-22 12:13:18 +020023#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
Stefan Roesedd580802014-10-22 12:13:18 +020024
Anton Schuberte863f7f2015-07-15 14:50:05 +020025/* SATA support */
Stefan Roesec4be10b2015-12-03 12:39:45 +010026#define CONFIG_LBA48
Anton Schuberte863f7f2015-07-15 14:50:05 +020027
Stefan Roese41e705a2015-08-11 09:36:15 +020028/* PCIe support */
Stefan Roese64512232015-11-25 07:37:00 +010029#ifndef CONFIG_SPL_BUILD
Stefan Roese41e705a2015-08-11 09:36:15 +020030#define CONFIG_PCI_SCAN_SHOW
Stefan Roese64512232015-11-25 07:37:00 +010031#endif
Stefan Roese41e705a2015-08-11 09:36:15 +020032
Stefan Roesed6b63032015-07-23 10:26:18 +020033/* NAND */
Stefan Roesed6b63032015-07-23 10:26:18 +020034
Stefan Roesedd580802014-10-22 12:13:18 +020035/*
36 * mv-common.h should be defined after CMD configs since it used them
37 * to enable certain macros
38 */
39#include "mv-common.h"
40
Stefan Roese25541672015-01-19 11:33:46 +010041/*
42 * Memory layout while starting into the bin_hdr via the
43 * BootROM:
44 *
45 * 0x4000.4000 - 0x4003.4000 headers space (192KiB)
46 * 0x4000.4030 bin_hdr start address
47 * 0x4003.4000 - 0x4004.7c00 BootROM memory allocations (15KiB)
48 * 0x4007.fffc BootROM stack top
49 *
50 * The address space between 0x4007.fffc and 0x400f.fff is not locked in
51 * L2 cache thus cannot be used.
52 */
53
54/* SPL */
55/* Defines for SPL */
Pali Rohár1dcbcc72022-01-12 18:32:08 +010056#define CONFIG_SPL_MAX_SIZE ((128 << 10) - (CONFIG_SPL_TEXT_BASE - 0x40000000))
Stefan Roese25541672015-01-19 11:33:46 +010057
58#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + (128 << 10))
59#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
60
Stefan Roese64512232015-11-25 07:37:00 +010061#ifdef CONFIG_SPL_BUILD
62#define CONFIG_SYS_MALLOC_SIMPLE
63#endif
Stefan Roese25541672015-01-19 11:33:46 +010064
65#define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
66#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
67
Stefan Roese25541672015-01-19 11:33:46 +010068/* Enable DDR support in SPL (DDR3 training from Marvell bin_hdr) */
Stefan Roese25541672015-01-19 11:33:46 +010069#define CONFIG_SPD_EEPROM 0x4e
70
Stefan Roesedd580802014-10-22 12:13:18 +020071#endif /* _CONFIG_DB_MV7846MP_GP_H */