blob: a00329db2993b7cf9d4092bb7daeef63a2a2c500 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese73606402015-10-20 15:14:47 +02002/*
3 * Copyright (C) 2015 Stefan Roese <sr@denx.de>
Stefan Roese73606402015-10-20 15:14:47 +02004 */
5
6#ifndef _CONFIG_CLEARFOG_H
7#define _CONFIG_CLEARFOG_H
8
9/*
10 * High Level Configuration Options (easy to change)
11 */
Stefan Roese73606402015-10-20 15:14:47 +020012
Stefan Roese73606402015-10-20 15:14:47 +020013/*
14 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
15 * for DDR ECC byte filling in the SPL before loading the main
16 * U-Boot into it.
17 */
Stefan Roese73606402015-10-20 15:14:47 +020018#define CONFIG_SYS_TCLK 250000000 /* 250MHz */
19
20/*
21 * Commands configuration
22 */
Stefan Roese73606402015-10-20 15:14:47 +020023
Stefan Roese73606402015-10-20 15:14:47 +020024/*
25 * SDIO/MMC Card Configuration
26 */
Stefan Roese73606402015-10-20 15:14:47 +020027#define CONFIG_SYS_MMC_BASE MVEBU_SDIO_BASE
28
Baruch Siach17d610c2018-09-13 12:41:50 +030029#ifdef CONFIG_CMD_MMC
30#define CONFIG_SUPPORT_EMMC_BOOT
31#endif
32
Stefan Roese73606402015-10-20 15:14:47 +020033/* USB/EHCI configuration */
34#define CONFIG_EHCI_IS_TDI
35
36#define CONFIG_ENV_MIN_ENTRIES 128
37
38/* Environment in MMC */
Stefan Roese73606402015-10-20 15:14:47 +020039#define CONFIG_SYS_MMC_ENV_DEV 0
40#define CONFIG_ENV_SECT_SIZE 0x200
41#define CONFIG_ENV_SIZE 0x10000
42/*
43 * For SD - reserve 1 LBA for MBR + 1M for u-boot image. The MMC/eMMC
44 * boot image starts @ LBA-0.
45 * As result in MMC/eMMC case it will be a 1 sector gap between u-boot
46 * image and environment
47 */
48#define CONFIG_ENV_OFFSET 0xf0000
49#define CONFIG_ENV_ADDR CONFIG_ENV_OFFSET
50
Stefan Roese73606402015-10-20 15:14:47 +020051#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
52
53/* PCIe support */
54#ifndef CONFIG_SPL_BUILD
Stefan Roese73606402015-10-20 15:14:47 +020055#define CONFIG_PCI_SCAN_SHOW
56#endif
57
Jon Nettleton7a3315e2018-05-28 13:35:15 +030058/* SATA support */
59#ifdef CONFIG_SCSI
60#define CONFIG_SCSI_AHCI_PLAT
61#define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
62#define CONFIG_SYS_SCSI_MAX_LUN 1
63#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
64 CONFIG_SYS_SCSI_MAX_LUN)
65#endif
66
Stefan Roese73606402015-10-20 15:14:47 +020067/* Keep device tree and initrd in lower memory so the kernel can access them */
Patrick Wildt7e5b0192017-05-10 15:12:34 +020068#define RELOCATION_LIMITS_ENV_SETTINGS \
Stefan Roese73606402015-10-20 15:14:47 +020069 "fdt_high=0x10000000\0" \
70 "initrd_high=0x10000000\0"
71
72/* SPL */
Stefan Roese73606402015-10-20 15:14:47 +020073
74/* Defines for SPL */
Stefan Roese73606402015-10-20 15:14:47 +020075#define CONFIG_SPL_SIZE (140 << 10)
Stefan Roese73606402015-10-20 15:14:47 +020076#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030)
77
78#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
79#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
80
81#ifdef CONFIG_SPL_BUILD
82#define CONFIG_SYS_MALLOC_SIMPLE
83#endif
84
85#define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
86#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
87
Baruch Siacha417bd12018-06-18 21:56:27 +030088#if defined(CONFIG_MVEBU_SPL_BOOT_DEVICE_SPI)
Stefan Roese73606402015-10-20 15:14:47 +020089/* SPL related SPI defines */
Stefan Roese73606402015-10-20 15:14:47 +020090#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
91#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_SPI_U_BOOT_OFFS
Baruch Siacha417bd12018-06-18 21:56:27 +030092#elif defined(CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC)
Stefan Roese73606402015-10-20 15:14:47 +020093/* SPL related MMC defines */
Stefan Roese73606402015-10-20 15:14:47 +020094#define CONFIG_SYS_MMC_U_BOOT_OFFS (160 << 10)
95#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_MMC_U_BOOT_OFFS
Stefan Roese73606402015-10-20 15:14:47 +020096#ifdef CONFIG_SPL_BUILD
97#define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */
98#endif
99#endif
100
Stefan Roese73606402015-10-20 15:14:47 +0200101/*
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
Patrick Wildt7e5b0192017-05-10 15:12:34 +0200107/* Include the common distro boot environment */
108#ifndef CONFIG_SPL_BUILD
Patrick Wildt7e5b0192017-05-10 15:12:34 +0200109
110#ifdef CONFIG_MMC
111#define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
112#else
113#define BOOT_TARGET_DEVICES_MMC(func)
114#endif
115
116#ifdef CONFIG_USB_STORAGE
117#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
118#else
119#define BOOT_TARGET_DEVICES_USB(func)
120#endif
121
122#define BOOT_TARGET_DEVICES(func) \
123 BOOT_TARGET_DEVICES_MMC(func) \
124 BOOT_TARGET_DEVICES_USB(func) \
125 func(PXE, pxe, na) \
126 func(DHCP, dhcp, na)
127
128#define KERNEL_ADDR_R __stringify(0x800000)
129#define FDT_ADDR_R __stringify(0x100000)
130#define RAMDISK_ADDR_R __stringify(0x1800000)
131#define SCRIPT_ADDR_R __stringify(0x200000)
132#define PXEFILE_ADDR_R __stringify(0x300000)
133
134#define LOAD_ADDRESS_ENV_SETTINGS \
135 "kernel_addr_r=" KERNEL_ADDR_R "\0" \
136 "fdt_addr_r=" FDT_ADDR_R "\0" \
137 "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \
138 "scriptaddr=" SCRIPT_ADDR_R "\0" \
139 "pxefile_addr_r=" PXEFILE_ADDR_R "\0"
140
141#include <config_distro_bootcmd.h>
142
143#define CONFIG_EXTRA_ENV_SETTINGS \
144 RELOCATION_LIMITS_ENV_SETTINGS \
145 LOAD_ADDRESS_ENV_SETTINGS \
146 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
147 "console=ttyS0,115200\0" \
148 BOOTENV
149
150#endif /* CONFIG_SPL_BUILD */
151
Stefan Roese73606402015-10-20 15:14:47 +0200152#endif /* _CONFIG_CLEARFOG_H */