Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2018 Dennis Gilmore <dgilmore@redhat.com> |
| 4 | */ |
| 5 | |
| 6 | #ifndef _CONFIG_HELIOS4_H |
| 7 | #define _CONFIG_HELIOS4_H |
| 8 | |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 9 | #include <linux/sizes.h> |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 10 | #include <linux/stringify.h> |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 11 | |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 12 | /* |
| 13 | * High Level Configuration Options (easy to change) |
| 14 | */ |
| 15 | |
| 16 | /* |
| 17 | * TEXT_BASE needs to be below 16MiB, since this area is scrubbed |
| 18 | * for DDR ECC byte filling in the SPL before loading the main |
| 19 | * U-Boot into it. |
| 20 | */ |
| 21 | #define CONFIG_SYS_TCLK 250000000 /* 250MHz */ |
| 22 | |
| 23 | /* |
| 24 | * Commands configuration |
| 25 | */ |
| 26 | |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 27 | /* |
| 28 | * SDIO/MMC Card Configuration |
| 29 | */ |
| 30 | #define CONFIG_SYS_MMC_BASE MVEBU_SDIO_BASE |
| 31 | |
| 32 | /* USB/EHCI configuration */ |
| 33 | #define CONFIG_EHCI_IS_TDI |
| 34 | |
| 35 | #define CONFIG_ENV_MIN_ENTRIES 128 |
| 36 | |
| 37 | /* |
| 38 | * SATA/SCSI/AHCI configuration |
| 39 | */ |
| 40 | #define CONFIG_SCSI_AHCI_PLAT |
| 41 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 2 |
| 42 | #define CONFIG_SYS_SCSI_MAX_LUN 2 |
| 43 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ |
| 44 | CONFIG_SYS_SCSI_MAX_LUN) |
| 45 | |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 46 | #ifdef CONFIG_MVEBU_SPL_BOOT_DEVICE_SPI |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 47 | /* Environment in SPI NOR flash */ |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 48 | #endif |
| 49 | |
| 50 | #ifdef CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 51 | /* Environment in MMC */ |
| 52 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
Aditya Prayoga | a134d68 | 2018-12-05 00:57:20 +0800 | [diff] [blame] | 53 | /* stay within first 1M */ |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 54 | #endif |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 55 | |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 56 | #define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */ |
| 57 | |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 58 | /* Keep device tree and initrd in lower memory so the kernel can access them */ |
| 59 | #define RELOCATION_LIMITS_ENV_SETTINGS \ |
| 60 | "fdt_high=0x10000000\0" \ |
| 61 | "initrd_high=0x10000000\0" |
| 62 | |
| 63 | /* SPL */ |
| 64 | /* |
| 65 | * Select the boot device here |
| 66 | * |
| 67 | * Currently supported are: |
| 68 | * SPL_BOOT_SPI_NOR_FLASH - Booting via SPI NOR flash |
| 69 | * SPL_BOOT_SDIO_MMC_CARD - Booting via SDIO/MMC card (partition 1) |
| 70 | */ |
| 71 | #define SPL_BOOT_SPI_NOR_FLASH 1 |
| 72 | #define SPL_BOOT_SDIO_MMC_CARD 2 |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 73 | |
| 74 | #ifdef CONFIG_MVEBU_SPL_BOOT_DEVICE_SPI |
| 75 | #define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SPI_NOR_FLASH |
| 76 | #endif |
| 77 | #ifdef CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 78 | #define CONFIG_SPL_BOOT_DEVICE SPL_BOOT_SDIO_MMC_CARD |
Aditya Prayoga | 8d7d97e | 2018-12-05 00:57:24 +0800 | [diff] [blame] | 79 | #endif |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 80 | |
| 81 | /* Defines for SPL */ |
| 82 | #define CONFIG_SPL_SIZE (140 << 10) |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 83 | #define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - 0x0030) |
| 84 | |
| 85 | #define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE) |
| 86 | #define CONFIG_SPL_BSS_MAX_SIZE (16 << 10) |
| 87 | |
| 88 | #ifdef CONFIG_SPL_BUILD |
| 89 | #define CONFIG_SYS_MALLOC_SIMPLE |
| 90 | #endif |
| 91 | |
| 92 | #define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10)) |
| 93 | #define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4) |
| 94 | |
| 95 | #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SPI_NOR_FLASH |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 96 | #define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_SPI_U_BOOT_OFFS |
| 97 | #endif |
| 98 | |
| 99 | #if CONFIG_SPL_BOOT_DEVICE == SPL_BOOT_SDIO_MMC_CARD |
| 100 | /* SPL related MMC defines */ |
Dennis Gilmore | ae28a5f | 2018-06-11 19:39:53 -0500 | [diff] [blame] | 101 | #define CONFIG_SYS_MMC_U_BOOT_OFFS (160 << 10) |
| 102 | #define CONFIG_SYS_U_BOOT_OFFS CONFIG_SYS_MMC_U_BOOT_OFFS |
| 103 | #ifdef CONFIG_SPL_BUILD |
| 104 | #define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */ |
| 105 | #endif |
| 106 | #endif |
| 107 | /* |
| 108 | * mv-common.h should be defined after CMD configs since it used them |
| 109 | * to enable certain macros |
| 110 | */ |
| 111 | #include "mv-common.h" |
| 112 | |
| 113 | /* Include the common distro boot environment */ |
| 114 | #ifndef CONFIG_SPL_BUILD |
| 115 | |
| 116 | #ifdef CONFIG_MMC |
| 117 | #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) |
| 118 | #else |
| 119 | #define BOOT_TARGET_DEVICES_MMC(func) |
| 120 | #endif |
| 121 | |
| 122 | #ifdef CONFIG_USB_STORAGE |
| 123 | #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0) |
| 124 | #else |
| 125 | #define BOOT_TARGET_DEVICES_USB(func) |
| 126 | #endif |
| 127 | |
| 128 | #ifdef CONFIG_SATA |
| 129 | #define BOOT_TARGET_DEVICES_SATA(func) func(SATA, sata, 0) |
| 130 | #else |
| 131 | #define BOOT_TARGET_DEVICES_SATA(func) |
| 132 | #endif |
| 133 | |
| 134 | #define BOOT_TARGET_DEVICES(func) \ |
| 135 | BOOT_TARGET_DEVICES_MMC(func) \ |
| 136 | BOOT_TARGET_DEVICES_USB(func) \ |
| 137 | BOOT_TARGET_DEVICES_SATA(func) \ |
| 138 | func(PXE, pxe, na) \ |
| 139 | func(DHCP, dhcp, na) |
| 140 | |
| 141 | #define KERNEL_ADDR_R __stringify(0x800000) |
| 142 | #define FDT_ADDR_R __stringify(0x100000) |
| 143 | #define RAMDISK_ADDR_R __stringify(0x1800000) |
| 144 | #define SCRIPT_ADDR_R __stringify(0x200000) |
| 145 | #define PXEFILE_ADDR_R __stringify(0x300000) |
| 146 | |
| 147 | #define LOAD_ADDRESS_ENV_SETTINGS \ |
| 148 | "kernel_addr_r=" KERNEL_ADDR_R "\0" \ |
| 149 | "fdt_addr_r=" FDT_ADDR_R "\0" \ |
| 150 | "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \ |
| 151 | "scriptaddr=" SCRIPT_ADDR_R "\0" \ |
| 152 | "pxefile_addr_r=" PXEFILE_ADDR_R "\0" |
| 153 | |
| 154 | #include <config_distro_bootcmd.h> |
| 155 | |
| 156 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 157 | RELOCATION_LIMITS_ENV_SETTINGS \ |
| 158 | LOAD_ADDRESS_ENV_SETTINGS \ |
| 159 | "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
| 160 | "console=ttyS0,115200\0" \ |
| 161 | BOOTENV |
| 162 | |
| 163 | #endif /* CONFIG_SPL_BUILD */ |
| 164 | |
| 165 | #endif /* _CONFIG_HELIOS4_H */ |