2fdc845029214dc3a2da0d6e606bc26efe07210f
[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 #define CONFIG_SYS_TCLK         200000000       /* 200MHz */
14
15 /*
16  * Commands configuration
17  */
18
19 /* USB/EHCI configuration */
20 #define CONFIG_EHCI_IS_TDI
21
22 /* Environment in SPI NOR flash */
23 #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
27 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
28
29 /* PCIe support */
30 #ifndef CONFIG_SPL_BUILD
31 #define CONFIG_PCI_SCAN_SHOW
32 #endif
33
34 /* NAND */
35 #define CONFIG_SYS_NAND_USE_FLASH_BBT
36 #define CONFIG_SYS_NAND_ONFI_DETECTION
37
38 /* 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 */
57 #define CONFIG_SPL_SIZE                 (140 << 10)
58 #define CONFIG_SPL_TEXT_BASE            0x40000030
59 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
60
61 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
62 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
63
64 #ifdef CONFIG_SPL_BUILD
65 #define CONFIG_SYS_MALLOC_SIMPLE
66 #endif
67
68 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
69 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
70
71 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
72 /* SPL related SPI defines */
73 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x24000
74 #define CONFIG_SYS_U_BOOT_OFFS          CONFIG_SYS_SPI_U_BOOT_OFFS
75 #endif
76
77 /*
78  * mv-common.h should be defined after CMD configs since it used them
79  * to enable certain macros
80  */
81 #include "mv-common.h"
82 #undef CONFIG_SYS_MAXARGS
83 #define CONFIG_SYS_MAXARGS 96
84
85 #endif /* _CONFIG_DB_88F6820_AMC_H */