blob: c520c2fc203a89353124391a2ffaa310bf661779 [file] [log] [blame]
Giulio Benetti6986d6b2020-01-10 15:51:48 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2019
4 * Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com>
5 */
6
7#ifndef __IMXRT1050_EVK_H
8#define __IMXRT1050_EVK_H
9
10#include <asm/arch/imx-regs.h>
11
Giulio Benetti6986d6b2020-01-10 15:51:48 +010012#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
Jesse Taube9fcbb552024-02-19 18:00:59 -050021/*
22 * Address of U-Boot for SPI NOR boot
23 */
24
25#define CFG_SYS_UBOOT_BASE 0x60010000
26
Giulio Benetti6986d6b2020-01-10 15:51:48 +010027#endif /* __IMXRT1050_EVK_H */