Merge tag 'xilinx-for-v2021.10-rc3' of https://gitlab.denx.de/u-boot/custodians/u...
[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_SYS_I2C_LEGACY
15 #define CONFIG_SYS_I2C_MVTWSI
16 #define CONFIG_I2C_MVTWSI_BASE0         MVEBU_TWSI_BASE
17 #define CONFIG_SYS_I2C_SLAVE            0x0
18 #define CONFIG_SYS_I2C_SPEED            100000
19
20 /*
21  * SATA/SCSI/AHCI configuration
22  */
23 #define CONFIG_SCSI_AHCI_PLAT
24 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     2
25 #define CONFIG_SYS_SCSI_MAX_LUN         1
26 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
27                                          CONFIG_SYS_SCSI_MAX_LUN)
28
29 /* USB/EHCI configuration */
30 #define CONFIG_EHCI_IS_TDI
31
32 /* Environment in SPI NOR flash */
33
34 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
35
36 /* PCIe support */
37 #ifndef CONFIG_SPL_BUILD
38 #define CONFIG_PCI_SCAN_SHOW
39 #endif
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  * SPL_BOOT_SDIO_MMC_CARD       - Booting via SDIO/MMC card (partition 1)
53  */
54 #define SPL_BOOT_SPI_NOR_FLASH          1
55 #define SPL_BOOT_SDIO_MMC_CARD          2
56 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
57
58 /* Defines for SPL */
59 #define CONFIG_SPL_SIZE                 (140 << 10)
60 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
61
62 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
63 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
64
65 #ifdef CONFIG_SPL_BUILD
66 #define CONFIG_SYS_MALLOC_SIMPLE
67 #endif
68
69 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
70 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
71
72 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
73 /* SPL related MMC defines */
74 #ifdef CONFIG_SPL_BUILD
75 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
76 #endif
77 #endif
78
79 /*
80  * mv-common.h should be defined after CMD configs since it used them
81  * to enable certain macros
82  */
83 #include "mv-common.h"
84
85 #endif /* _CONFIG_DB_88F6820_GP_H */