Rename CONFIG_EHCI_IS_TDI to CONFIG_USB_EHCI_IS_TDI
[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_USB_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
27 /* Keep device tree and initrd in lower memory so the kernel can access them */
28 #define CONFIG_EXTRA_ENV_SETTINGS       \
29         "fdt_high=0x10000000\0"         \
30         "initrd_high=0x10000000\0"
31
32 /* SPL */
33 /*
34  * Select the boot device here
35  *
36  * Currently supported are:
37  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
38  *
39  * MMC is not populated on this board.
40  * NAND support may be added in the future.
41  */
42 #define SPL_BOOT_SPI_NOR_FLASH          1
43 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
44
45 /* Defines for SPL */
46 #define CONFIG_SPL_SIZE                 (140 << 10)
47 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
48
49 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
50 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
51
52 #ifdef CONFIG_SPL_BUILD
53 #define CONFIG_SYS_MALLOC_SIMPLE
54 #endif
55
56 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
57 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
58
59 /*
60  * mv-common.h should be defined after CMD configs since it used them
61  * to enable certain macros
62  */
63 #include "mv-common.h"
64 #undef CONFIG_SYS_MAXARGS
65 #define CONFIG_SYS_MAXARGS 96
66
67 #endif /* _CONFIG_DB_88F6820_AMC_H */