Giulio Benetti | 931edc6 | 2020-02-18 20:02:55 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2020 |
| 4 | * Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com> |
| 5 | */ |
| 6 | |
| 7 | #ifndef __IMXRT1020_EVK_H |
| 8 | #define __IMXRT1020_EVK_H |
| 9 | |
| 10 | #include <asm/arch/imx-regs.h> |
| 11 | |
Giulio Benetti | 931edc6 | 2020-02-18 20:02:55 +0100 | [diff] [blame] | 12 | #define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1 |
| 13 | |
| 14 | #define PHYS_SDRAM 0x80000000 |
| 15 | #define PHYS_SDRAM_SIZE (32 * 1024 * 1024) |
| 16 | |
| 17 | #define DMAMEM_SZ_ALL (1 * 1024 * 1024) |
| 18 | #define DMAMEM_BASE (PHYS_SDRAM + PHYS_SDRAM_SIZE - \ |
| 19 | DMAMEM_SZ_ALL) |
| 20 | |
Giulio Benetti | 931edc6 | 2020-02-18 20:02:55 +0100 | [diff] [blame] | 21 | /* |
| 22 | * Configuration of the external SDRAM memory |
| 23 | */ |
Giulio Benetti | 931edc6 | 2020-02-18 20:02:55 +0100 | [diff] [blame] | 24 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 25 | #define CFG_SYS_UBOOT_START 0x800023FD |
Giulio Benetti | 931edc6 | 2020-02-18 20:02:55 +0100 | [diff] [blame] | 26 | |
| 27 | #endif /* __IMXRT1020_EVK_H */ |