blob: 5b59a92cb908c1b28fb383be25be98629cadec3f [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#define CONFIG_SYS_TCLK 200000000 /* 200MHz */
14
15/*
16 * Commands configuration
17 */
Chris Packhamc0def242016-09-22 12:56:14 +120018
Chris Packhamc0def242016-09-22 12:56:14 +120019/* USB/EHCI configuration */
20#define CONFIG_EHCI_IS_TDI
21
22/* Environment in SPI NOR flash */
Chris Packhamc0def242016-09-22 12:56:14 +120023#define CONFIG_ENV_OFFSET (1 << 20) /* 1MiB in */
24#define CONFIG_ENV_SIZE (64 << 10) /* 64KiB */
25#define CONFIG_ENV_SECT_SIZE (256 << 10) /* 256KiB sectors */
26
Chris Packhamc0def242016-09-22 12:56:14 +120027#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
28
29/* PCIe support */
30#ifndef CONFIG_SPL_BUILD
Chris Packhamc0def242016-09-22 12:56:14 +120031#define CONFIG_PCI_SCAN_SHOW
32#endif
33
Chris Packham42f75052016-09-22 12:56:15 +120034/* NAND */
35#define CONFIG_SYS_NAND_USE_FLASH_BBT
36#define CONFIG_SYS_NAND_ONFI_DETECTION
37
Chris Packhamc0def242016-09-22 12:56:14 +120038/* Keep device tree and initrd in lower memory so the kernel can access them */
39#define CONFIG_EXTRA_ENV_SETTINGS \
40 "fdt_high=0x10000000\0" \
41 "initrd_high=0x10000000\0"
42
43/* SPL */
44/*
45 * Select the boot device here
46 *
47 * Currently supported are:
48 * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash
49 *
50 * MMC is not populated on this board.
51 * NAND support may be added in the future.
52 */
53#define SPL_BOOT_SPI_NOR_FLASH 1
54#define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH
55
56/* Defines for SPL */
Chris Packhamc0def242016-09-22 12:56:14 +120057#define CONFIG_SPL_SIZE (140 << 10)
Chris Packhamc0def242016-09-22 12:56:14 +120058#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030)
59
60#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
61#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
62
63#ifdef CONFIG_SPL_BUILD
64#define CONFIG_SYS_MALLOC_SIMPLE
65#endif
66
67#define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
68#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
69
70#if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
71/* SPL related SPI defines */
Chris Packhamc0def242016-09-22 12:56:14 +120072#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x24000
73#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_SPI_U_BOOT_OFFS
74#endif
75
76/*
77 * mv-common.h should be defined after CMD configs since it used them
78 * to enable certain macros
79 */
80#include "mv-common.h"
81#undef CONFIG_SYS_MAXARGS
82#define CONFIG_SYS_MAXARGS 96
83
84#endif /* _CONFIG_DB_88F6820_AMC_H */