blob: f83429082ac70819b347ec7912ca5d679ad4a4e9 [file] [log] [blame]
Jesse Taubef7aad712022-07-26 01:43:46 -04001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2022
4 * Author(s): Jesse Taube <Mr.Bossman075@gmail.com>
5 * Giulio Benetti <giulio.benetti@benettiengineering.com>
6 */
7
8#ifndef __IMXRT1170_EVK_H
9#define __IMXRT1170_EVK_H
10
11#include <asm/arch/imx-regs.h>
12
13#define ESDHCI_QUIRK_BROKEN_TIMEOUT_VALUE 1
14
15/*
16 * Configuration of the external SDRAM memory
17 */
18
19#define PHYS_SDRAM 0x80000000
20#define PHYS_SDRAM_SIZE (64 * 1024 * 1024)
21
22#define DMAMEM_SZ_ALL (1 * 1024 * 1024)
23#define DMAMEM_BASE (PHYS_SDRAM + PHYS_SDRAM_SIZE - \
24 DMAMEM_SZ_ALL)
25/* For SPL */
Tom Rini65cc0e22022-11-16 13:10:41 -050026#define CFG_SYS_UBOOT_START 0x202403FD
Jesse Taubef7aad712022-07-26 01:43:46 -040027/* For SPL ends */
28
29#endif /* __IMXRT1170_EVK_H */