mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
6c317fedc7
Introduce BSH SystemMaster (SMM) S2 board family, which consists of: iMX8MN SMM S2 and iMX8MN SMM S2 PRO boards. Add support for iMX8MN BSH SMM S2 board: - 256 MiB DDR3 RAM - 512MiB Nand - USBOTG1 peripheral - fastboot. - 100Mbit Ethernet Add support for iMX8MN BSH SMM S2 PRO board: - 512 MiB DDR3 RAM - 8 GiB eMMC - USBOTG1 peripheral - fastboot. - 100Mbit Ethernet Signed-off-by: Ariel D'Alessandro <ariel.dalessandro@collabora.com> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
35 lines
822 B
C
35 lines
822 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2021 Collabora Ltd.
|
|
*/
|
|
|
|
#ifndef __IMX8MN_BSH_SMM_S2PRO_H
|
|
#define __IMX8MN_BSH_SMM_S2PRO_H
|
|
|
|
#include <configs/imx8mn_bsh_smm_s2_common.h>
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(MMC, mmc, 0) \
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define EMMCARGS \
|
|
"fastboot_partition_alias_all=" \
|
|
__stringify(CONFIG_FASTBOOT_FLASH_MMC_DEV) ".0:0\0" \
|
|
"fastboot_partition_alias_bootloader=" \
|
|
__stringify(CONFIG_FASTBOOT_FLASH_MMC_DEV) ".1:0\0" \
|
|
"emmc_dev=" __stringify(CONFIG_FASTBOOT_FLASH_MMC_DEV) "\0" \
|
|
"emmc_ack=1\0" \
|
|
|
|
/* Initial environment variables */
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
EMMCARGS \
|
|
BOOTENV
|
|
|
|
#define PHYS_SDRAM_SIZE SZ_512M
|
|
|
|
/* USDHC */
|
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
|
|
#endif /* __IMX8MN_BSH_SMM_S2PRO_H */
|