Convert CONFIG_SF_DEFAULT_* to Kconfig
[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 /* SPI NOR flash default params, used by sf commands */
20
21 /* USB/EHCI configuration */
22 #define CONFIG_EHCI_IS_TDI
23
24 /* Environment in SPI NOR flash */
25 #define CONFIG_ENV_SPI_BUS              1
26 #define CONFIG_ENV_OFFSET               (1 << 20) /* 1MiB in */
27 #define CONFIG_ENV_SIZE                 (64 << 10) /* 64KiB */
28 #define CONFIG_ENV_SECT_SIZE            (256 << 10) /* 256KiB sectors */
29
30 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
31
32 /* PCIe support */
33 #ifndef CONFIG_SPL_BUILD
34 #define CONFIG_PCI_SCAN_SHOW
35 #endif
36
37 /* NAND */
38 #define CONFIG_SYS_NAND_USE_FLASH_BBT
39 #define CONFIG_SYS_NAND_ONFI_DETECTION
40
41 /* Keep device tree and initrd in lower memory so the kernel can access them */
42 #define CONFIG_EXTRA_ENV_SETTINGS       \
43         "fdt_high=0x10000000\0"         \
44         "initrd_high=0x10000000\0"
45
46 /* SPL */
47 /*
48  * Select the boot device here
49  *
50  * Currently supported are:
51  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
52  *
53  * MMC is not populated on this board.
54  * NAND support may be added in the future.
55  */
56 #define SPL_BOOT_SPI_NOR_FLASH          1
57 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
58
59 /* Defines for SPL */
60 #define CONFIG_SPL_SIZE                 (140 << 10)
61 #define CONFIG_SPL_TEXT_BASE            0x40000030
62 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
63
64 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
65 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
66
67 #ifdef CONFIG_SPL_BUILD
68 #define CONFIG_SYS_MALLOC_SIMPLE
69 #endif
70
71 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
72 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
73
74 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
75 /* SPL related SPI defines */
76 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x24000
77 #define CONFIG_SYS_U_BOOT_OFFS          CONFIG_SYS_SPI_U_BOOT_OFFS
78 #endif
79
80 /*
81  * mv-common.h should be defined after CMD configs since it used them
82  * to enable certain macros
83  */
84 #include "mv-common.h"
85 #undef CONFIG_SYS_MAXARGS
86 #define CONFIG_SYS_MAXARGS 96
87
88 #endif /* _CONFIG_DB_88F6820_AMC_H */