Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2012 Altera Corporation <www.altera.com> |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 4 | */ |
Dinh Nguyen | 48275c9 | 2015-12-03 16:05:59 -0600 | [diff] [blame] | 5 | #ifndef __CONFIG_SOCFPGA_COMMON_H__ |
| 6 | #define __CONFIG_SOCFPGA_COMMON_H__ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 7 | |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 8 | #include <linux/stringify.h> |
| 9 | |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 10 | /* |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 11 | * Memory configurations |
| 12 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 13 | #define PHYS_SDRAM_1 0x0 |
Ley Foon Tan | 1b25940 | 2017-04-26 02:44:46 +0800 | [diff] [blame] | 14 | #if defined(CONFIG_TARGET_SOCFPGA_GEN5) |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 15 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFFF0000 |
Ley Foon Tan | 4f17f29 | 2020-03-06 16:55:19 +0800 | [diff] [blame] | 16 | #define CONFIG_SYS_INIT_RAM_SIZE SOCFPGA_PHYS_OCRAM_SIZE |
Ley Foon Tan | 1b25940 | 2017-04-26 02:44:46 +0800 | [diff] [blame] | 17 | #elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10) |
| 18 | #define CONFIG_SYS_INIT_RAM_ADDR 0xFFE00000 |
Simon Goldschmidt | 4399e48 | 2019-04-09 21:02:04 +0200 | [diff] [blame] | 19 | /* SPL memory allocation configuration, this is for FAT implementation */ |
Ley Foon Tan | 4f17f29 | 2020-03-06 16:55:19 +0800 | [diff] [blame] | 20 | #define CONFIG_SYS_INIT_RAM_SIZE (SOCFPGA_PHYS_OCRAM_SIZE - \ |
| 21 | CONFIG_SYS_SPL_MALLOC_SIZE) |
Ley Foon Tan | 1b25940 | 2017-04-26 02:44:46 +0800 | [diff] [blame] | 22 | #endif |
Stefan Roese | f457c52 | 2018-10-30 10:00:22 +0100 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * Some boards (e.g. socfpga_sr1500) use 8 bytes at the end of the internal |
| 26 | * SRAM as bootcounter storage. Make sure to not put the stack directly |
| 27 | * at this address to not overwrite the bootcounter by checking, if the |
| 28 | * bootcounter address is located in the internal SRAM. |
| 29 | */ |
| 30 | #if ((CONFIG_SYS_BOOTCOUNT_ADDR > CONFIG_SYS_INIT_RAM_ADDR) && \ |
| 31 | (CONFIG_SYS_BOOTCOUNT_ADDR < (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 32 | CONFIG_SYS_INIT_RAM_SIZE))) |
Stefan Roese | f457c52 | 2018-10-30 10:00:22 +0100 | [diff] [blame] | 33 | #endif |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 34 | |
Simon Goldschmidt | 4399e48 | 2019-04-09 21:02:04 +0200 | [diff] [blame] | 35 | /* |
| 36 | * U-Boot stack setup: if SPL post-reloc uses DDR stack, use it in pre-reloc |
| 37 | * phase of U-Boot, too. This prevents overwriting SPL data if stack/heap usage |
| 38 | * in U-Boot pre-reloc is higher than in SPL. |
| 39 | */ |
Simon Goldschmidt | 4399e48 | 2019-04-09 21:02:04 +0200 | [diff] [blame] | 40 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 41 | #define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * U-Boot general configurations |
| 45 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 46 | /* Print buffer size */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * Cache |
| 50 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 51 | #define CONFIG_SYS_PL310_BASE SOCFPGA_MPUL2_ADDRESS |
| 52 | |
| 53 | /* |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 54 | * L4 OSC1 Timer 0 |
| 55 | */ |
Marek Vasut | 331c372 | 2018-08-18 16:00:31 +0200 | [diff] [blame] | 56 | #ifndef CONFIG_TIMER |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 57 | #define CONFIG_SYS_TIMERBASE SOCFPGA_OSC1TIMER0_ADDRESS |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 58 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMERBASE + 0x4) |
Marek Vasut | c808ab4 | 2020-02-15 14:10:02 +0100 | [diff] [blame] | 59 | #ifndef CONFIG_SYS_TIMER_RATE |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 60 | #define CONFIG_SYS_TIMER_RATE 25000000 |
Marek Vasut | 331c372 | 2018-08-18 16:00:31 +0200 | [diff] [blame] | 61 | #endif |
Marek Vasut | c808ab4 | 2020-02-15 14:10:02 +0100 | [diff] [blame] | 62 | #endif |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | * L4 Watchdog |
| 66 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 67 | #define CONFIG_DW_WDT_CLOCK_KHZ 25000 |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 68 | |
| 69 | /* |
Marek Vasut | c339ea5 | 2015-12-20 04:00:46 +0100 | [diff] [blame] | 70 | * NAND Support |
| 71 | */ |
| 72 | #ifdef CONFIG_NAND_DENALI |
Tom Rini | 4e59094 | 2022-11-12 17:36:51 -0500 | [diff] [blame] | 73 | #define CFG_SYS_NAND_REGS_BASE SOCFPGA_NANDREGS_ADDRESS |
| 74 | #define CFG_SYS_NAND_DATA_BASE SOCFPGA_NANDDATA_ADDRESS |
Marek Vasut | c339ea5 | 2015-12-20 04:00:46 +0100 | [diff] [blame] | 75 | #endif |
| 76 | |
| 77 | /* |
Marek Vasut | 20cadbb | 2014-10-24 23:34:25 +0200 | [diff] [blame] | 78 | * USB |
| 79 | */ |
Marek Vasut | 20cadbb | 2014-10-24 23:34:25 +0200 | [diff] [blame] | 80 | |
| 81 | /* |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 82 | * USB Gadget (DFU, UMS) |
| 83 | */ |
| 84 | #if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE) |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 85 | #define DFU_DEFAULT_POLL_TIMEOUT 300 |
| 86 | |
| 87 | /* USB IDs */ |
Sam Protsenko | e6c0bc0 | 2016-04-13 14:20:30 +0300 | [diff] [blame] | 88 | #define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525 |
| 89 | #define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5 |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 90 | #endif |
| 91 | |
| 92 | /* |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 93 | * U-Boot environment |
| 94 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 95 | |
Chin Liang See | 79cc48e | 2015-12-21 21:02:45 +0800 | [diff] [blame] | 96 | /* Environment for SDMMC boot */ |
Chin Liang See | 79cc48e | 2015-12-21 21:02:45 +0800 | [diff] [blame] | 97 | |
Chin Liang See | ec8b752 | 2016-02-24 16:50:22 +0800 | [diff] [blame] | 98 | /* Environment for QSPI boot */ |
Chin Liang See | ec8b752 | 2016-02-24 16:50:22 +0800 | [diff] [blame] | 99 | |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 100 | /* |
| 101 | * SPL |
Marek Vasut | 34584d1 | 2014-10-16 12:25:40 +0200 | [diff] [blame] | 102 | * |
Tien Fong Chee | 421a21c | 2017-12-05 15:58:04 +0800 | [diff] [blame] | 103 | * SRAM Memory layout for gen 5: |
Marek Vasut | 34584d1 | 2014-10-16 12:25:40 +0200 | [diff] [blame] | 104 | * |
| 105 | * 0xFFFF_0000 ...... Start of SRAM |
| 106 | * 0xFFFF_xxxx ...... Top of stack (grows down) |
Simon Goldschmidt | 798baf7 | 2019-04-09 21:02:03 +0200 | [diff] [blame] | 107 | * 0xFFFF_yyyy ...... Global Data |
| 108 | * 0xFFFF_zzzz ...... Malloc area |
| 109 | * 0xFFFF_FFFF ...... End of SRAM |
Tien Fong Chee | 421a21c | 2017-12-05 15:58:04 +0800 | [diff] [blame] | 110 | * |
| 111 | * SRAM Memory layout for Arria 10: |
| 112 | * 0xFFE0_0000 ...... Start of SRAM (bottom) |
| 113 | * 0xFFEx_xxxx ...... Top of stack (grows down to bottom) |
| 114 | * 0xFFEy_yyyy ...... Global Data |
| 115 | * 0xFFEz_zzzz ...... Malloc area (grows up to top) |
| 116 | * 0xFFE3_FFFF ...... End of SRAM (top) |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 117 | */ |
Pavel Machek | 5095ee0 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 118 | |
Marek Vasut | 346d6f5 | 2015-07-21 07:50:03 +0200 | [diff] [blame] | 119 | /* SPL QSPI boot support */ |
Marek Vasut | 346d6f5 | 2015-07-21 07:50:03 +0200 | [diff] [blame] | 120 | |
Marek Vasut | c339ea5 | 2015-12-20 04:00:46 +0100 | [diff] [blame] | 121 | /* SPL NAND boot support */ |
Marek Vasut | c339ea5 | 2015-12-20 04:00:46 +0100 | [diff] [blame] | 122 | |
Dalon Westergreen | 451e824 | 2017-04-13 07:30:29 -0700 | [diff] [blame] | 123 | /* Extra Environment */ |
| 124 | #ifndef CONFIG_SPL_BUILD |
Dalon Westergreen | 451e824 | 2017-04-13 07:30:29 -0700 | [diff] [blame] | 125 | |
Simon Goldschmidt | 1c7fa79 | 2018-01-25 07:18:27 +0100 | [diff] [blame] | 126 | #ifdef CONFIG_CMD_DHCP |
| 127 | #define BOOT_TARGET_DEVICES_DHCP(func) func(DHCP, dhcp, na) |
| 128 | #else |
| 129 | #define BOOT_TARGET_DEVICES_DHCP(func) |
| 130 | #endif |
| 131 | |
Joe Hershberger | 86271b3 | 2018-04-13 15:26:40 -0500 | [diff] [blame] | 132 | #if defined(CONFIG_CMD_PXE) && defined(CONFIG_CMD_DHCP) |
Dalon Westergreen | 451e824 | 2017-04-13 07:30:29 -0700 | [diff] [blame] | 133 | #define BOOT_TARGET_DEVICES_PXE(func) func(PXE, pxe, na) |
| 134 | #else |
| 135 | #define BOOT_TARGET_DEVICES_PXE(func) |
| 136 | #endif |
| 137 | |
| 138 | #ifdef CONFIG_CMD_MMC |
| 139 | #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0) |
| 140 | #else |
| 141 | #define BOOT_TARGET_DEVICES_MMC(func) |
| 142 | #endif |
| 143 | |
| 144 | #define BOOT_TARGET_DEVICES(func) \ |
| 145 | BOOT_TARGET_DEVICES_MMC(func) \ |
| 146 | BOOT_TARGET_DEVICES_PXE(func) \ |
Simon Goldschmidt | 1c7fa79 | 2018-01-25 07:18:27 +0100 | [diff] [blame] | 147 | BOOT_TARGET_DEVICES_DHCP(func) |
Dalon Westergreen | 451e824 | 2017-04-13 07:30:29 -0700 | [diff] [blame] | 148 | |
| 149 | #include <config_distro_bootcmd.h> |
| 150 | |
| 151 | #ifndef CONFIG_EXTRA_ENV_SETTINGS |
| 152 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 153 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
| 154 | "bootm_size=0xa000000\0" \ |
| 155 | "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \ |
| 156 | "fdt_addr_r=0x02000000\0" \ |
| 157 | "scriptaddr=0x02100000\0" \ |
| 158 | "pxefile_addr_r=0x02200000\0" \ |
| 159 | "ramdisk_addr_r=0x02300000\0" \ |
Simon Goldschmidt | 4b2e32e | 2019-03-01 20:12:31 +0100 | [diff] [blame] | 160 | "socfpga_legacy_reset_compat=1\0" \ |
Dalon Westergreen | 451e824 | 2017-04-13 07:30:29 -0700 | [diff] [blame] | 161 | BOOTENV |
| 162 | |
| 163 | #endif |
| 164 | #endif |
| 165 | |
Dinh Nguyen | 48275c9 | 2015-12-03 16:05:59 -0600 | [diff] [blame] | 166 | #endif /* __CONFIG_SOCFPGA_COMMON_H__ */ |