Merge tag 'pull-12apr19' of git://git.denx.de/u-boot-dm
[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_TEXT_BASE            0x40000030
75 #define CONFIG_SPL_MAX_SIZE             (CONFIG_SPL_SIZE - 0x0030)
76
77 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + CONFIG_SPL_SIZE)
78 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
79
80 #ifdef CONFIG_SPL_BUILD
81 #define CONFIG_SYS_MALLOC_SIMPLE
82 #endif
83
84 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
85 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
86
87 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH
88 /* SPL related SPI defines */
89 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x24000
90 #define CONFIG_SYS_U_BOOT_OFFS          CONFIG_SYS_SPI_U_BOOT_OFFS
91 #endif
92
93 #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD
94 /* SPL related MMC defines */
95 #define CONFIG_SYS_MMC_U_BOOT_OFFS              (160 << 10)
96 #define CONFIG_SYS_U_BOOT_OFFS                  CONFIG_SYS_MMC_U_BOOT_OFFS
97 #ifdef CONFIG_SPL_BUILD
98 #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER       0x00180000      /* in SDRAM */
99 #endif
100 #endif
101
102 /*
103  * mv-common.h should be defined after CMD configs since it used them
104  * to enable certain macros
105  */
106 #include "mv-common.h"
107
108 #endif /* _CONFIG_DB_88F6820_GP_H */