]> Git Repo - J-u-boot.git/blob - include/configs/db-88f6820-gp.h
Convert CONFIG_SPL_BSS_MAX_SIZE et al to Kconfig
[J-u-boot.git] / include / configs / db-88f6820-gp.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Stefan Roese <[email protected]>
4  */
5
6 #ifndef _CONFIG_DB_88F6820_GP_H
7 #define _CONFIG_DB_88F6820_GP_H
8
9 /*
10  * High Level Configuration Options (easy to change)
11  */
12
13 /* I2C */
14 #define CONFIG_I2C_MVTWSI_BASE0         MVEBU_TWSI_BASE
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 /* Keep device tree and initrd in lower memory so the kernel can access them */
26 #define CONFIG_EXTRA_ENV_SETTINGS       \
27         "fdt_high=0x10000000\0"         \
28         "initrd_high=0x10000000\0"
29
30 /* SPL */
31 /*
32  * Select the boot device here
33  *
34  * Currently supported are:
35  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
36  * SPL_BOOT_SDIO_MMC_CARD       - Booting via SDIO/MMC card (partition 1)
37  */
38 #define SPL_BOOT_SPI_NOR_FLASH          1
39 #define SPL_BOOT_SDIO_MMC_CARD          2
40 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
41
42 /* Defines for SPL */
43 #define CONFIG_SPL_SIZE                 (140 << 10)
44
45 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
46
47 #ifdef CONFIG_SPL_BUILD
48 #define CONFIG_SYS_MALLOC_SIMPLE
49 #endif
50
51 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
52 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
53
54 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
55 /* SPL related MMC defines */
56 #ifdef CONFIG_SPL_BUILD
57 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
58 #endif
59 #endif
60
61 /*
62  * mv-common.h should be defined after CMD configs since it used them
63  * to enable certain macros
64  */
65 #include "mv-common.h"
66
67 #endif /* _CONFIG_DB_88F6820_GP_H */
This page took 0.030901 seconds and 4 git commands to generate.