Merge git://git.denx.de/u-boot-socfpga
[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 #define CONFIG_SYS_TCLK         250000000       /* 250MHz */
14
15 /*
16  * Commands configuration
17  */
18
19 /* I2C */
20 #define CONFIG_SYS_I2C
21 #define CONFIG_SYS_I2C_MVTWSI
22 #define CONFIG_I2C_MVTWSI_BASE0         MVEBU_TWSI_BASE
23 #define CONFIG_SYS_I2C_SLAVE            0x0
24 #define CONFIG_SYS_I2C_SPEED            100000
25
26 /*
27  * SDIO/MMC Card Configuration
28  */
29 #define CONFIG_SYS_MMC_BASE             MVEBU_SDIO_BASE
30
31 /*
32  * SATA/SCSI/AHCI configuration
33  */
34 #define CONFIG_SCSI_AHCI_PLAT
35 #define CONFIG_SYS_SCSI_MAX_SCSI_ID     2
36 #define CONFIG_SYS_SCSI_MAX_LUN         1
37 #define CONFIG_SYS_SCSI_MAX_DEVICE      (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
38                                          CONFIG_SYS_SCSI_MAX_LUN)
39
40 /* USB/EHCI configuration */
41 #define CONFIG_EHCI_IS_TDI
42
43 /* Environment in SPI NOR flash */
44 #define CONFIG_ENV_OFFSET               (1 << 20) /* 1MiB in */
45 #define CONFIG_ENV_SIZE                 (64 << 10) /* 64KiB */
46 #define CONFIG_ENV_SECT_SIZE            (256 << 10) /* 256KiB sectors */
47
48 #define PHY_ANEG_TIMEOUT        8000    /* PHY needs a longer aneg time */
49
50 /* PCIe support */
51 #ifndef CONFIG_SPL_BUILD
52 #define CONFIG_PCI_SCAN_SHOW
53 #endif
54
55 /* Keep device tree and initrd in lower memory so the kernel can access them */
56 #define CONFIG_EXTRA_ENV_SETTINGS       \
57         "fdt_high=0x10000000\0"         \
58         "initrd_high=0x10000000\0"
59
60 /* SPL */
61 /*
62  * Select the boot device here
63  *
64  * Currently supported are:
65  * SPL_BOOT_SPI_NOR_FLASH       - Booting via SPI NOR flash
66  * SPL_BOOT_SDIO_MMC_CARD       - Booting via SDIO/MMC card (partition 1)
67  */
68 #define SPL_BOOT_SPI_NOR_FLASH          1
69 #define SPL_BOOT_SDIO_MMC_CARD          2
70 #define CONFIG_SPL_BOOT_DEVICE          SPL_BOOT_SPI_NOR_FLASH
71
72 /* Defines for SPL */
73 #define CONFIG_SPL_SIZE                 (140 << 10)
74 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
75
76 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
77 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
78
79 #ifdef CONFIG_SPL_BUILD
80 #define CONFIG_SYS_MALLOC_SIMPLE
81 #endif
82
83 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
84 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
85
86 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
87 /* SPL related SPI defines */
88 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x24000
89 #define CONFIG_SYS_U_BOOT_OFFS          CONFIG_SYS_SPI_U_BOOT_OFFS
90 #endif
91
92 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
93 /* SPL related MMC defines */
94 #define CONFIG_SYS_MMC_U_BOOT_OFFS              (160 << 10)
95 #define CONFIG_SYS_U_BOOT_OFFS                  CONFIG_SYS_MMC_U_BOOT_OFFS
96 #ifdef CONFIG_SPL_BUILD
97 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
98 #endif
99 #endif
100
101 /*
102  * mv-common.h should be defined after CMD configs since it used them
103  * to enable certain macros
104  */
105 #include "mv-common.h"
106
107 #endif /* _CONFIG_DB_88F6820_GP_H */