blob: 83f5b71839e218cd0f13483588e7d7f6536eac7a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Chris Packhamc0def242016-09-22 12:56:14 +12002/*
3 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
Chris Packhamc0def242016-09-22 12:56:14 +12004 */
5
6#ifndef _CONFIG_DB_88F6820_AMC_H
7#define _CONFIG_DB_88F6820_AMC_H
8
9/*
10 * High Level Configuration Options (easy to change)
11 */
12
Chris Packhamc0def242016-09-22 12:56:14 +120013/* USB/EHCI configuration */
14#define CONFIG_EHCI_IS_TDI
15
16/* Environment in SPI NOR flash */
Chris Packhamc0def242016-09-22 12:56:14 +120017
Chris Packhamc0def242016-09-22 12:56:14 +120018#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
19
20/* PCIe support */
21#ifndef CONFIG_SPL_BUILD
Chris Packhamc0def242016-09-22 12:56:14 +120022#define CONFIG_PCI_SCAN_SHOW
23#endif
24
Chris Packham42f75052016-09-22 12:56:15 +120025/* NAND */
Chris Packham42f75052016-09-22 12:56:15 +120026#define CONFIG_SYS_NAND_ONFI_DETECTION
27
Chris Packhamc0def242016-09-22 12:56:14 +120028/* Keep device tree and initrd in lower memory so the kernel can access them */
29#define CONFIG_EXTRA_ENV_SETTINGS \
30 "fdt_high=0x10000000\0" \
31 "initrd_high=0x10000000\0"
32
33/* SPL */
34/*
35 * Select the boot device here
36 *
37 * Currently supported are:
38 * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash
39 *
40 * MMC is not populated on this board.
41 * NAND support may be added in the future.
42 */
43#define SPL_BOOT_SPI_NOR_FLASH 1
44#define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH
45
46/* Defines for SPL */
Chris Packhamc0def242016-09-22 12:56:14 +120047#define CONFIG_SPL_SIZE (140 << 10)
Chris Packhamc0def242016-09-22 12:56:14 +120048#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030)
49
50#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
51#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
52
53#ifdef CONFIG_SPL_BUILD
54#define CONFIG_SYS_MALLOC_SIMPLE
55#endif
56
57#define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
58#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
59
Chris Packhamc0def242016-09-22 12:56:14 +120060/*
61 * mv-common.h should be defined after CMD configs since it used them
62 * to enable certain macros
63 */
64#include "mv-common.h"
65#undef CONFIG_SYS_MAXARGS
66#define CONFIG_SYS_MAXARGS 96
67
68#endif /* _CONFIG_DB_88F6820_AMC_H */