blob: afae6a4e387a23bb05a9b5bfcc6f6651b34bc488 [file] [log] [blame]
Giulio Benetti931edc62020-02-18 20:02:55 +01001/* 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
12#define CONFIG_SYS_INIT_SP_ADDR 0x20240000
13
Giulio Benetti931edc62020-02-18 20:02:55 +010014#define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1
15
16#define PHYS_SDRAM 0x80000000
17#define PHYS_SDRAM_SIZE (32 * 1024 * 1024)
18
19#define DMAMEM_SZ_ALL (1 * 1024 * 1024)
20#define DMAMEM_BASE (PHYS_SDRAM + PHYS_SDRAM_SIZE - \
21 DMAMEM_SZ_ALL)
22
Giulio Benetti931edc62020-02-18 20:02:55 +010023/*
24 * Configuration of the external SDRAM memory
25 */
Giulio Benetti931edc62020-02-18 20:02:55 +010026
Giulio Benetti931edc62020-02-18 20:02:55 +010027#define CONFIG_SYS_SPL_LEN 0x00008000
28#define CONFIG_SYS_UBOOT_START 0x800023FD
Giulio Benetti931edc62020-02-18 20:02:55 +010029
30#endif /* __IMXRT1020_EVK_H */