83f5b71839e218cd0f13483588e7d7f6536eac7a
[platform/kernel/u-boot.git] / include / configs / db-88f6820-amc.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Stefan Roese <sr@denx.de>
4  */
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
13 /* USB/EHCI configuration */
14 #define CONFIG_EHCI_IS_TDI
15
16 /* Environment in SPI NOR flash */
17
18 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
19
20 /* PCIe support */
21 #ifndef CONFIG_SPL_BUILD
22 #define CONFIG_PCI_SCAN_SHOW
23 #endif
24
25 /* NAND */
26 #define CONFIG_SYS_NAND_ONFI_DETECTION
27
28 /* 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 */
47 #define CONFIG_SPL_SIZE                 (140 << 10)
48 #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
60 /*
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 */