blob: 5ddc191d17c632352e16d05963a17a9bd8e42de7 [file] [log] [blame]
Peng Fane2c76432024-10-23 12:03:17 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2024 NXP
4 */
5
6#ifndef __IMX93_QSB_H
7#define __IMX93_QSB_H
8
9#define CFG_SYS_UBOOT_BASE \
10 (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
11
12#ifdef CONFIG_SPL_BUILD
13#define CFG_MALLOC_F_ADDR 0x204D0000
14#endif
15
16#define CFG_SYS_INIT_RAM_ADDR 0x80000000
17#define CFG_SYS_INIT_RAM_SIZE 0x200000
18
19#define CFG_SYS_SDRAM_BASE 0x80000000
20#define PHYS_SDRAM 0x80000000
21#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
22
23#define WDOG_BASE_ADDR WDG3_BASE_ADDR
24
25#endif