cmd: Fix Kconfig coding style
[u-boot.git] / include / configs / imx8mp_navqp.h
blob802438aea5f1cd58db847b8a3867d1ae655f32ed
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * Copyright 2019 NXP
4 * Copyright 2024 Gilles Talis <gilles.talis@gmail.com>
5 */
7 #ifndef __IMX8MP_NAVQP_H
8 #define __IMX8MP_NAVQP_H
10 #include <linux/sizes.h>
11 #include <asm/arch/imx-regs.h>
13 #define CFG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
15 #define BOOT_TARGET_DEVICES(func) \
16 func(MMC, mmc, 1) \
17 func(MMC, mmc, 2)
19 #include <config_distro_bootcmd.h>
21 /* Initial environment variables */
22 #define CFG_EXTRA_ENV_SETTINGS \
23 BOOTENV
25 /* Link Definitions */
27 #define CFG_SYS_INIT_RAM_ADDR 0x40000000
28 #define CFG_SYS_INIT_RAM_SIZE 0x80000
30 /* 8GB DDR */
31 #define CFG_SYS_SDRAM_BASE 0x40000000
32 #define PHYS_SDRAM 0x40000000
33 #define PHYS_SDRAM_SIZE 0xC0000000 /* 3 GB */
34 #define PHYS_SDRAM_2 0x100000000
35 #define PHYS_SDRAM_2_SIZE 0x140000000 /* 5 GB */
37 #endif