blob: b36dae7c34f37f45e0171816dbc6ad9f494982a8 [file] [log] [blame]
Adam Forda8554812023-03-23 22:06:16 -05001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2023 Logic PD, Inc dba Beacon EmbeddedWorks
4 */
5
6#ifndef __IMX8MP_BEACON_H
7#define __IMX8MP_BEACON_H
8
9#include <asm/arch/imx-regs.h>
10
11#define CFG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
12
Adam Forda8554812023-03-23 22:06:16 -050013/* Link Definitions */
14
15#define CFG_SYS_INIT_RAM_ADDR 0x40000000
16#define CFG_SYS_INIT_RAM_SIZE 0x80000
17
18/* Totally 6GB DDR */
19#define CFG_SYS_SDRAM_BASE 0x40000000
20#define PHYS_SDRAM 0x40000000
21#define PHYS_SDRAM_SIZE 0xC0000000 /* 3 GB */
22#define PHYS_SDRAM_2 0x100000000
23#define PHYS_SDRAM_2_SIZE 0xC0000000 /* 3 GB */
24
25#endif