Convert CONFIG_SYS_IMMR to Kconfig
[platform/kernel/u-boot.git] / include / configs / db-88f6820-gp.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_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 /*
17  * SATA/SCSI/AHCI configuration
18  */
19 #define CONFIG_SCSI_AHCI_PLAT
20 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     2
21 #define CONFIG_SYS_SCSI_MAX_LUN         1
22 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
23                                          CONFIG_SYS_SCSI_MAX_LUN)
24
25 /* Environment in SPI NOR flash */
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 /* Keep device tree and initrd in lower memory so the kernel can access them */
35 #define CONFIG_EXTRA_ENV_SETTINGS       \
36         "fdt_high=0x10000000\0"         \
37         "initrd_high=0x10000000\0"
38
39 /* SPL */
40 /*
41  * Select the boot device here
42  *
43  * Currently supported are:
44  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
45  * SPL_BOOT_SDIO_MMC_CARD       - Booting via SDIO/MMC card (partition 1)
46  */
47 #define SPL_BOOT_SPI_NOR_FLASH          1
48 #define SPL_BOOT_SDIO_MMC_CARD          2
49 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
50
51 /* Defines for SPL */
52 #define CONFIG_SPL_SIZE                 (140 << 10)
53 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
54
55 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
56 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
57
58 #ifdef CONFIG_SPL_BUILD
59 #define CONFIG_SYS_MALLOC_SIMPLE
60 #endif
61
62 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
63 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
64
65 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
66 /* SPL related MMC defines */
67 #ifdef CONFIG_SPL_BUILD
68 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
69 #endif
70 #endif
71
72 /*
73  * mv-common.h should be defined after CMD configs since it used them
74  * to enable certain macros
75  */
76 #include "mv-common.h"
77
78 #endif /* _CONFIG_DB_88F6820_GP_H */