blob: c51cf284502b922961538ffd04554d1a60818c46 [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/* SPI NOR flash default params, used by sf commands */
Stefan Roese73606402015-10-20 15:14:47 +020025
26/*
27 * SDIO/MMC Card Configuration
28 */
Stefan Roese73606402015-10-20 15:14:47 +020029#define CONFIG_SYS_MMC_BASE MVEBU_SDIO_BASE
30
Baruch Siach17d610c2018-09-13 12:41:50 +030031#ifdef CONFIG_CMD_MMC
32#define CONFIG_SUPPORT_EMMC_BOOT
33#endif
34
Stefan Roese73606402015-10-20 15:14:47 +020035/* USB/EHCI configuration */
36#define CONFIG_EHCI_IS_TDI
37
38#define CONFIG_ENV_MIN_ENTRIES 128
39
40/* Environment in MMC */
Stefan Roese73606402015-10-20 15:14:47 +020041#define CONFIG_SYS_MMC_ENV_DEV 0
42#define CONFIG_ENV_SECT_SIZE 0x200
43#define CONFIG_ENV_SIZE 0x10000
44/*
45 * For SD - reserve 1 LBA for MBR + 1M for u-boot image. The MMC/eMMC
46 * boot image starts @ LBA-0.
47 * As result in MMC/eMMC case it will be a 1 sector gap between u-boot
48 * image and environment
49 */
50#define CONFIG_ENV_OFFSET 0xf0000
51#define CONFIG_ENV_ADDR CONFIG_ENV_OFFSET
52
Stefan Roese73606402015-10-20 15:14:47 +020053#define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
54
55/* PCIe support */
56#ifndef CONFIG_SPL_BUILD
Stefan Roese73606402015-10-20 15:14:47 +020057#define CONFIG_PCI_SCAN_SHOW
58#endif
59
Jon Nettleton7a3315e2018-05-28 13:35:15 +030060/* SATA support */
61#ifdef CONFIG_SCSI
62#define CONFIG_SCSI_AHCI_PLAT
63#define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
64#define CONFIG_SYS_SCSI_MAX_LUN 1
65#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
66 CONFIG_SYS_SCSI_MAX_LUN)
67#endif
68
Stefan Roese73606402015-10-20 15:14:47 +020069/* Keep device tree and initrd in lower memory so the kernel can access them */
Patrick Wildt7e5b0192017-05-10 15:12:34 +020070#define RELOCATION_LIMITS_ENV_SETTINGS \
Stefan Roese73606402015-10-20 15:14:47 +020071 "fdt_high=0x10000000\0" \
72 "initrd_high=0x10000000\0"
73
74/* SPL */
Stefan Roese73606402015-10-20 15:14:47 +020075
76/* Defines for SPL */
Stefan Roese73606402015-10-20 15:14:47 +020077#define CONFIG_SPL_SIZE (140 << 10)
78#define CONFIG_SPL_TEXT_BASE 0x40000030
79#define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030)
80
81#define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
82#define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
83
84#ifdef CONFIG_SPL_BUILD
85#define CONFIG_SYS_MALLOC_SIMPLE
86#endif
87
88#define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
89#define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
90
Baruch Siacha417bd12018-06-18 21:56:27 +030091#if defined(CONFIG_MVEBU_SPL_BOOT_DEVICE_SPI)
Stefan Roese73606402015-10-20 15:14:47 +020092/* SPL related SPI defines */
Stefan Roese73606402015-10-20 15:14:47 +020093#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
94#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_SPI_U_BOOT_OFFS
Baruch Siacha417bd12018-06-18 21:56:27 +030095#elif defined(CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC)
Stefan Roese73606402015-10-20 15:14:47 +020096/* SPL related MMC defines */
Stefan Roese73606402015-10-20 15:14:47 +020097#define CONFIG_SYS_MMC_U_BOOT_OFFS (160 << 10)
98#define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_MMC_U_BOOT_OFFS
Stefan Roese73606402015-10-20 15:14:47 +020099#ifdef CONFIG_SPL_BUILD
100#define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */
101#endif
102#endif
103
Stefan Roese73606402015-10-20 15:14:47 +0200104/*
105 * mv-common.h should be defined after CMD configs since it used them
106 * to enable certain macros
107 */
108#include "mv-common.h"
109
Patrick Wildt7e5b0192017-05-10 15:12:34 +0200110/* Include the common distro boot environment */
111#ifndef CONFIG_SPL_BUILD
Patrick Wildt7e5b0192017-05-10 15:12:34 +0200112
113#ifdef CONFIG_MMC
114#define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
115#else
116#define BOOT_TARGET_DEVICES_MMC(func)
117#endif
118
119#ifdef CONFIG_USB_STORAGE
120#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
121#else
122#define BOOT_TARGET_DEVICES_USB(func)
123#endif
124
125#define BOOT_TARGET_DEVICES(func) \
126 BOOT_TARGET_DEVICES_MMC(func) \
127 BOOT_TARGET_DEVICES_USB(func) \
128 func(PXE, pxe, na) \
129 func(DHCP, dhcp, na)
130
131#define KERNEL_ADDR_R __stringify(0x800000)
132#define FDT_ADDR_R __stringify(0x100000)
133#define RAMDISK_ADDR_R __stringify(0x1800000)
134#define SCRIPT_ADDR_R __stringify(0x200000)
135#define PXEFILE_ADDR_R __stringify(0x300000)
136
137#define LOAD_ADDRESS_ENV_SETTINGS \
138 "kernel_addr_r=" KERNEL_ADDR_R "\0" \
139 "fdt_addr_r=" FDT_ADDR_R "\0" \
140 "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \
141 "scriptaddr=" SCRIPT_ADDR_R "\0" \
142 "pxefile_addr_r=" PXEFILE_ADDR_R "\0"
143
144#include <config_distro_bootcmd.h>
145
146#define CONFIG_EXTRA_ENV_SETTINGS \
147 RELOCATION_LIMITS_ENV_SETTINGS \
148 LOAD_ADDRESS_ENV_SETTINGS \
149 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
150 "console=ttyS0,115200\0" \
151 BOOTENV
152
153#endif /* CONFIG_SPL_BUILD */
154
Stefan Roese73606402015-10-20 15:14:47 +0200155#endif /* _CONFIG_CLEARFOG_H */