mirror of
https://github.com/feyisay07/meta-bsp-imx8mm.git
synced 2026-09-24 06:10:13 +01:00
853 lines
26 KiB
Diff
853 lines
26 KiB
Diff
From 8ce4046b2b4a29a5158e904f11c128b9c42ea5a9 Mon Sep 17 00:00:00 2001
|
|
From: Kirill Kapranov <kirill.kapranov@compulab.co.il>
|
|
Date: Mon, 19 Jul 2021 15:46:11 +0300
|
|
Subject: [PATCH 056/126] cpl-imx8m-mini: Refactor .h configs
|
|
|
|
Signed-off-by: Kirill Kapranov <kirill.kapranov@compulab.co.il>
|
|
---
|
|
include/configs/cpl-imx8m-mini.h | 275 +++++++++++++++++++++++++++++++++++++++
|
|
include/configs/mcm-imx8m-mini.h | 265 +------------------------------------
|
|
include/configs/ucm-imx8m-mini.h | 268 +-------------------------------------
|
|
3 files changed, 277 insertions(+), 531 deletions(-)
|
|
create mode 100644 include/configs/cpl-imx8m-mini.h
|
|
|
|
diff --git a/include/configs/cpl-imx8m-mini.h b/include/configs/cpl-imx8m-mini.h
|
|
new file mode 100644
|
|
index 0000000000..dd8120f4dc
|
|
--- /dev/null
|
|
+++ b/include/configs/cpl-imx8m-mini.h
|
|
@@ -0,0 +1,275 @@
|
|
+/*
|
|
+ * Copyright 2020 CompuLab
|
|
+ *
|
|
+ * SPDX-License-Identifier: GPL-2.0+
|
|
+ */
|
|
+
|
|
+#ifndef __CPL_IMX8M_MINI_H
|
|
+#define __CPL_IMX8M_MINI_H
|
|
+
|
|
+#include <linux/sizes.h>
|
|
+#include <asm/arch/imx-regs.h>
|
|
+#include "imx_env.h"
|
|
+
|
|
+#define CONFIG_SPL_MAX_SIZE (148 * 1024)
|
|
+#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
|
|
+#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
|
|
+#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300
|
|
+#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
|
|
+#define CONFIG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
|
|
+
|
|
+#ifdef CONFIG_SPL_BUILD
|
|
+/*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
|
|
+#define CONFIG_SPL_WATCHDOG_SUPPORT
|
|
+#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
|
|
+#define CONFIG_SPL_I2C_SUPPORT
|
|
+#define CONFIG_SPL_LIBCOMMON_SUPPORT
|
|
+#define CONFIG_SPL_LIBGENERIC_SUPPORT
|
|
+
|
|
+#define CONFIG_SPL_STACK 0x920000
|
|
+#define CONFIG_SPL_BSS_START_ADDR 0x910000
|
|
+#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K
|
|
+#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
|
|
+#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K
|
|
+
|
|
+/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
|
|
+#define CONFIG_MALLOC_F_ADDR 0x912000
|
|
+
|
|
+#define CONFIG_SPL_ABORT_ON_RAW_IMAGE /* For RAW image gives a error info not panic */
|
|
+
|
|
+#undef CONFIG_DM_MMC
|
|
+#undef CONFIG_DM_PMIC
|
|
+#undef CONFIG_DM_PMIC_PFUZE100
|
|
+
|
|
+#define CONFIG_SYS_I2C
|
|
+#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
+#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
+#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
+
|
|
+#define CONFIG_POWER
|
|
+#define CONFIG_POWER_I2C
|
|
+#define CONFIG_POWER_BD71837
|
|
+
|
|
+#endif /*ifdef CONFIG_SPL_BUILD*/
|
|
+
|
|
+#define CONFIG_CMD_READ
|
|
+#define CONFIG_SERIAL_TAG
|
|
+#define CONFIG_FASTBOOT_USB_DEV 0
|
|
+
|
|
+#define CONFIG_REMAKE_ELF
|
|
+
|
|
+#define CONFIG_BOARD_POSTCLK_INIT
|
|
+
|
|
+/* Flat Device Tree Definitions */
|
|
+#define CONFIG_OF_BOARD_SETUP
|
|
+
|
|
+#undef CONFIG_CMD_IMLS
|
|
+
|
|
+#undef CONFIG_CMD_CRC32
|
|
+#undef CONFIG_BOOTM_NETBSD
|
|
+
|
|
+/* ENET Config */
|
|
+/* ENET1 */
|
|
+#if defined(CONFIG_CMD_NET)
|
|
+#define CONFIG_ETHPRIME "FEC"
|
|
+
|
|
+#define CONFIG_FEC_XCV_TYPE RGMII
|
|
+#define CONFIG_FEC_MXC_PHYADDR 0
|
|
+#define FEC_QUIRK_ENET_MAC
|
|
+
|
|
+#define CONFIG_PHY_GIGE
|
|
+#define IMX_FEC_BASE 0x30BE0000
|
|
+
|
|
+#define CONFIG_PHYLIB
|
|
+#define CONFIG_PHY_ATHEROS
|
|
+#endif
|
|
+
|
|
+#define CONFIG_MFG_ENV_SETTINGS \
|
|
+ "mfgtool_args=setenv bootargs console=${console},${baudrate} " \
|
|
+ "rdinit=/linuxrc " \
|
|
+ "g_mass_storage.stall=0 g_mass_storage.removable=1 " \
|
|
+ "g_mass_storage.idVendor=0x066F g_mass_storage.idProduct=0x37FF "\
|
|
+ "g_mass_storage.iSerialNumber=\"\" "\
|
|
+ "clk_ignore_unused "\
|
|
+ "\0" \
|
|
+ "initrd_addr=0x43800000\0" \
|
|
+ "initrd_high=0xffffffff\0" \
|
|
+ "emmc_dev=1\0" \
|
|
+ "sd_dev=0\0" \
|
|
+ "bootcmd_mfg=run mfgtool_args; if iminfo ${initrd_addr}; then "\
|
|
+ "booti ${loadaddr} ${initrd_addr} ${fdt_addr};"\
|
|
+ "else echo \"Run fastboot ...\"; fastboot 0; fi\0" \
|
|
+/* Initial environment variables */
|
|
+#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
+ CONFIG_MFG_ENV_SETTINGS \
|
|
+ "autoload=off\0" \
|
|
+ "script=boot.scr\0" \
|
|
+ "image=Image\0" \
|
|
+ "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
|
|
+ "fdt_addr=0x43000000\0" \
|
|
+ "fdt_high=0xffffffffffffffff\0" \
|
|
+ "boot_fdt=yes\0" \
|
|
+ "fdt_file="CONFIG_DEFAULT_DTB"\0" \
|
|
+ "initrd_addr=0x43800000\0" \
|
|
+ "initrd_high=0xffffffffffffffff\0" \
|
|
+ "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
|
|
+ "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
|
|
+ "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
|
|
+ "mmcautodetect=yes\0" \
|
|
+ "root_opt=rootwait rw\0" \
|
|
+ "emmc_ul=setenv iface mmc; setenv dev 2; setenv part 1;" \
|
|
+ "setenv bootargs console=${console} root=/dev/mmcblk2p2 ${root_opt};\0" \
|
|
+ "sd_ul=setenv iface mmc; setenv dev 1; setenv part 1;" \
|
|
+ "setenv bootargs console=${console} root=/dev/mmcblk1p2 ${root_opt};\0" \
|
|
+ "usb_ul=usb start; setenv iface usb; setenv dev 0; setenv part 1;" \
|
|
+ "setenv bootargs console=${console} root=/dev/sda2 ${root_opt};\0" \
|
|
+ "ulbootscript=load ${iface} ${dev}:${part} ${loadaddr} ${script};\0" \
|
|
+ "ulimage=load ${iface} ${dev}:${part} ${loadaddr} ${image}\0" \
|
|
+ "ulfdt=if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
+ "load ${iface} ${dev}:${part} ${fdt_addr} ${fdt_file}; fi;\0" \
|
|
+ "bootscript=echo Running bootscript from mmc ...; " \
|
|
+ "source\0" \
|
|
+ "netargs=setenv bootargs console=${console} " \
|
|
+ "root=/dev/nfs " \
|
|
+ "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
|
+ "netboot=echo Booting from net ...; " \
|
|
+ "run netargs; " \
|
|
+ "if test ${ip_dyn} = yes; then " \
|
|
+ "setenv get_cmd dhcp; " \
|
|
+ "else " \
|
|
+ "setenv get_cmd tftp; " \
|
|
+ "fi; " \
|
|
+ "${get_cmd} ${loadaddr} ${image}; " \
|
|
+ "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
+ "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
|
|
+ "booti ${loadaddr} - ${fdt_addr}; " \
|
|
+ "else " \
|
|
+ "echo WARN: Cannot load the DT; " \
|
|
+ "fi; " \
|
|
+ "else " \
|
|
+ "booti; " \
|
|
+ "fi;\0"
|
|
+#define CONFIG_BOOTCOMMAND \
|
|
+ "for src in sd_ul usb_ul emmc_ul; do " \
|
|
+ "run ${src}; " \
|
|
+ "if run ulbootscript; then " \
|
|
+ "run bootscript; " \
|
|
+ "else " \
|
|
+ "if run ulimage; then " \
|
|
+ "if run ulfdt; then " \
|
|
+ "booti ${loadaddr} - ${fdt_addr}; " \
|
|
+ "else " \
|
|
+ "if test ${boot_fdt} != yes; then " \
|
|
+ "booti ${loadaddr}; " \
|
|
+ "fi; " \
|
|
+ "fi; " \
|
|
+ "fi; " \
|
|
+ "fi; " \
|
|
+ "done; " \
|
|
+ "usb start; ums 0 mmc ${mmcdev};"
|
|
+
|
|
+/* Link Definitions */
|
|
+#define CONFIG_LOADADDR 0x40480000
|
|
+
|
|
+#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
|
|
+
|
|
+#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
|
|
+#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
|
|
+#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
+ (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
+#define CONFIG_SYS_INIT_SP_ADDR \
|
|
+ (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
+
|
|
+#define CONFIG_ENV_OVERWRITE
|
|
+#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
|
|
+#define CONFIG_SYS_MMC_ENV_PART 1
|
|
+#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
|
|
+
|
|
+/* Size of malloc() pool */
|
|
+#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (2*1024) + (16*1024)) * 1024)
|
|
+
|
|
+#define PHYS_SDRAM 0x40000000
|
|
+#define PHYS_SDRAM_2 0x100000000
|
|
+#define PHYS_SDRAM_SIZE 0 /* Memory chip autodetection */
|
|
+#define PHYS_SDRAM_2_SIZE 0 /* Memory chip autodetection */
|
|
+#define CONFIG_NR_DRAM_BANKS 4
|
|
+#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
|
+
|
|
+#define MEMTEST_DIVIDER 2
|
|
+#define MEMTEST_NUMERATOR 1
|
|
+
|
|
+#define CONFIG_BAUDRATE 115200
|
|
+
|
|
+#define CONFIG_MXC_UART_BASE UART3_BASE_ADDR
|
|
+
|
|
+/* Monitor Command Prompt */
|
|
+#undef CONFIG_SYS_PROMPT
|
|
+#define CONFIG_SYS_PROMPT "u-boot=> "
|
|
+#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
|
+#define CONFIG_SYS_CBSIZE 2048
|
|
+#define CONFIG_SYS_MAXARGS 64
|
|
+#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
+#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
|
+ sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
+
|
|
+#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
|
|
+
|
|
+#define CONFIG_IMX_BOOTAUX
|
|
+
|
|
+/* USDHC */
|
|
+#define CONFIG_FSL_USDHC
|
|
+
|
|
+#define CONFIG_SYS_FSL_USDHC_NUM 2
|
|
+#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
+
|
|
+#ifndef CONFIG_DM_I2C
|
|
+#define CONFIG_SYS_I2C
|
|
+#endif
|
|
+#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
+#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
+#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
+#define CONFIG_SYS_I2C_SPEED 100000
|
|
+
|
|
+/* EEPROM */
|
|
+#define CONFIG_ENV_EEPROM_IS_ON_I2C
|
|
+#define CONFIG_SYS_I2C_EEPROM_BUS 1
|
|
+#define CONFIG_SYS_I2C_SLAVE 0x00
|
|
+#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
|
|
+#define CONFIG_SYS_EEPROM_SIZE 256
|
|
+#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4
|
|
+#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
|
|
+
|
|
+/* USB configs */
|
|
+#ifndef CONFIG_SPL_BUILD
|
|
+#define CONFIG_CMD_USB
|
|
+#define CONFIG_USB_STORAGE
|
|
+#define CONFIG_USBD_HS
|
|
+
|
|
+#define CONFIG_CMD_USB_MASS_STORAGE
|
|
+#define CONFIG_USB_GADGET_MASS_STORAGE
|
|
+#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
|
+
|
|
+#endif
|
|
+
|
|
+#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
|
+
|
|
+#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
+#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
|
|
+
|
|
+#ifdef CONFIG_VIDEO
|
|
+#define CONFIG_VIDEO_MXS
|
|
+#define CONFIG_VIDEO_LOGO
|
|
+#define CONFIG_SPLASH_SCREEN
|
|
+#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
+#define CONFIG_CMD_BMP
|
|
+#define CONFIG_BMP_16BPP
|
|
+#define CONFIG_VIDEO_BMP_RLE8
|
|
+#define CONFIG_VIDEO_BMP_LOGO
|
|
+#define CONFIG_IMX_VIDEO_SKIP
|
|
+#define CONFIG_RM67191
|
|
+#endif
|
|
+
|
|
+#define CONFIG_BOARD_POSTCLK_INIT
|
|
+#define CONFIG_OF_BOARD_SETUP
|
|
+
|
|
+#endif
|
|
diff --git a/include/configs/mcm-imx8m-mini.h b/include/configs/mcm-imx8m-mini.h
|
|
index dd0448efca..602091a782 100644
|
|
--- a/include/configs/mcm-imx8m-mini.h
|
|
+++ b/include/configs/mcm-imx8m-mini.h
|
|
@@ -7,270 +7,7 @@
|
|
#ifndef __MCM_IMX8M_MINI_H
|
|
#define __MCM_IMX8M_MINI_H
|
|
|
|
-#include <linux/sizes.h>
|
|
-#include <asm/arch/imx-regs.h>
|
|
-#include "imx_env.h"
|
|
-
|
|
-#define CONFIG_SPL_MAX_SIZE (148 * 1024)
|
|
-#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
|
|
-#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
|
|
-#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300
|
|
-#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
|
|
-#define CONFIG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
|
|
-
|
|
-#ifdef CONFIG_SPL_BUILD
|
|
-/*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
|
|
-#define CONFIG_SPL_WATCHDOG_SUPPORT
|
|
-#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
|
|
-#define CONFIG_SPL_I2C_SUPPORT
|
|
-#define CONFIG_SPL_LIBCOMMON_SUPPORT
|
|
-#define CONFIG_SPL_LIBGENERIC_SUPPORT
|
|
-
|
|
-#define CONFIG_SPL_STACK 0x920000
|
|
-#define CONFIG_SPL_BSS_START_ADDR 0x910000
|
|
-#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K
|
|
-#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
|
|
-#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K
|
|
-
|
|
-/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
|
|
-#define CONFIG_MALLOC_F_ADDR 0x912000
|
|
-
|
|
-#define CONFIG_SPL_ABORT_ON_RAW_IMAGE /* For RAW image gives a error info not panic */
|
|
-
|
|
-#undef CONFIG_DM_MMC
|
|
-#undef CONFIG_DM_PMIC
|
|
-#undef CONFIG_DM_PMIC_PFUZE100
|
|
-
|
|
-#define CONFIG_SYS_I2C
|
|
-#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
-
|
|
-#define CONFIG_POWER
|
|
-#define CONFIG_POWER_I2C
|
|
-#define CONFIG_POWER_BD71837
|
|
-
|
|
-#endif /*ifdef CONFIG_SPL_BUILD*/
|
|
-
|
|
-#define CONFIG_CMD_READ
|
|
-#define CONFIG_SERIAL_TAG
|
|
-#define CONFIG_FASTBOOT_USB_DEV 0
|
|
-
|
|
-#define CONFIG_REMAKE_ELF
|
|
-
|
|
-#define CONFIG_BOARD_POSTCLK_INIT
|
|
-
|
|
-/* Flat Device Tree Definitions */
|
|
-#define CONFIG_OF_BOARD_SETUP
|
|
-
|
|
-#undef CONFIG_CMD_IMLS
|
|
-
|
|
-#undef CONFIG_CMD_CRC32
|
|
-#undef CONFIG_BOOTM_NETBSD
|
|
-
|
|
-/* ENET Config */
|
|
-/* ENET1 */
|
|
-#if defined(CONFIG_CMD_NET)
|
|
-#define CONFIG_ETHPRIME "FEC"
|
|
-
|
|
-#define CONFIG_FEC_XCV_TYPE RGMII
|
|
-#define CONFIG_FEC_MXC_PHYADDR 0
|
|
-#define FEC_QUIRK_ENET_MAC
|
|
-
|
|
-#define CONFIG_PHY_GIGE
|
|
-#define IMX_FEC_BASE 0x30BE0000
|
|
-
|
|
-#define CONFIG_PHYLIB
|
|
-#define CONFIG_PHY_ATHEROS
|
|
-#endif
|
|
-
|
|
-#define CONFIG_MFG_ENV_SETTINGS \
|
|
- "mfgtool_args=setenv bootargs console=${console},${baudrate} " \
|
|
- "rdinit=/linuxrc " \
|
|
- "g_mass_storage.stall=0 g_mass_storage.removable=1 " \
|
|
- "g_mass_storage.idVendor=0x066F g_mass_storage.idProduct=0x37FF "\
|
|
- "g_mass_storage.iSerialNumber=\"\" "\
|
|
- "clk_ignore_unused "\
|
|
- "\0" \
|
|
- "initrd_addr=0x43800000\0" \
|
|
- "initrd_high=0xffffffff\0" \
|
|
- "emmc_dev=1\0" \
|
|
- "sd_dev=0\0" \
|
|
- "bootcmd_mfg=run mfgtool_args; if iminfo ${initrd_addr}; then "\
|
|
- "booti ${loadaddr} ${initrd_addr} ${fdt_addr};"\
|
|
- "else echo \"Run fastboot ...\"; fastboot 0; fi\0" \
|
|
-/* Initial environment variables */
|
|
-#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
- CONFIG_MFG_ENV_SETTINGS \
|
|
- "autoload=off\0" \
|
|
- "script=boot.scr\0" \
|
|
- "image=Image\0" \
|
|
- "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
|
|
- "fdt_addr=0x43000000\0" \
|
|
- "fdt_high=0xffffffffffffffff\0" \
|
|
- "boot_fdt=yes\0" \
|
|
- "fdt_file="CONFIG_DEFAULT_DTB"\0" \
|
|
- "initrd_addr=0x43800000\0" \
|
|
- "initrd_high=0xffffffffffffffff\0" \
|
|
- "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
|
|
- "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
|
|
- "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
|
|
- "mmcautodetect=yes\0" \
|
|
- "root_opt=rootwait rw\0" \
|
|
- "emmc_ul=setenv iface mmc; setenv dev 2; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/mmcblk2p2 ${root_opt};\0" \
|
|
- "sd_ul=setenv iface mmc; setenv dev 1; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/mmcblk1p2 ${root_opt};\0" \
|
|
- "usb_ul=usb start; setenv iface usb; setenv dev 0; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/sda2 ${root_opt};\0" \
|
|
- "ulbootscript=load ${iface} ${dev}:${part} ${loadaddr} ${script};\0" \
|
|
- "ulimage=load ${iface} ${dev}:${part} ${loadaddr} ${image}\0" \
|
|
- "ulfdt=if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
- "load ${iface} ${dev}:${part} ${fdt_addr} ${fdt_file}; fi;\0" \
|
|
- "bootscript=echo Running bootscript from mmc ...; " \
|
|
- "source\0" \
|
|
- "netargs=setenv bootargs console=${console} " \
|
|
- "root=/dev/nfs " \
|
|
- "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
|
- "netboot=echo Booting from net ...; " \
|
|
- "run netargs; " \
|
|
- "if test ${ip_dyn} = yes; then " \
|
|
- "setenv get_cmd dhcp; " \
|
|
- "else " \
|
|
- "setenv get_cmd tftp; " \
|
|
- "fi; " \
|
|
- "${get_cmd} ${loadaddr} ${image}; " \
|
|
- "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
- "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
|
|
- "booti ${loadaddr} - ${fdt_addr}; " \
|
|
- "else " \
|
|
- "echo WARN: Cannot load the DT; " \
|
|
- "fi; " \
|
|
- "else " \
|
|
- "booti; " \
|
|
- "fi;\0"
|
|
-#define CONFIG_BOOTCOMMAND \
|
|
- "for src in sd_ul usb_ul emmc_ul; do " \
|
|
- "run ${src}; " \
|
|
- "if run ulbootscript; then " \
|
|
- "run bootscript; " \
|
|
- "else " \
|
|
- "if run ulimage; then " \
|
|
- "if run ulfdt; then " \
|
|
- "booti ${loadaddr} - ${fdt_addr}; " \
|
|
- "else " \
|
|
- "if test ${boot_fdt} != yes; then " \
|
|
- "booti ${loadaddr}; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "done; " \
|
|
- "usb start; ums 0 mmc ${mmcdev};"
|
|
-
|
|
-/* Link Definitions */
|
|
-#define CONFIG_LOADADDR 0x40480000
|
|
-
|
|
-#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
|
|
-
|
|
-#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
|
|
-#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
|
|
-#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
- (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
-#define CONFIG_SYS_INIT_SP_ADDR \
|
|
- (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
-
|
|
-#define CONFIG_ENV_OVERWRITE
|
|
-#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
|
|
-#define CONFIG_SYS_MMC_ENV_PART 1
|
|
-#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
|
|
-
|
|
-/* Size of malloc() pool */
|
|
-#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (2*1024) + (16*1024)) * 1024)
|
|
-
|
|
-#define PHYS_SDRAM 0x40000000
|
|
-#define PHYS_SDRAM_2 0x100000000
|
|
-#define PHYS_SDRAM_SIZE 0 /* Memory chip autodetection */
|
|
-#define PHYS_SDRAM_2_SIZE 0 /* Memory chip autodetection */
|
|
-#define CONFIG_NR_DRAM_BANKS 4
|
|
-#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
|
-
|
|
-#define MEMTEST_DIVIDER 2
|
|
-#define MEMTEST_NUMERATOR 1
|
|
-
|
|
-#define CONFIG_BAUDRATE 115200
|
|
-
|
|
-#define CONFIG_MXC_UART_BASE UART3_BASE_ADDR
|
|
-
|
|
-/* Monitor Command Prompt */
|
|
-#undef CONFIG_SYS_PROMPT
|
|
-#define CONFIG_SYS_PROMPT "u-boot=> "
|
|
-#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
|
-#define CONFIG_SYS_CBSIZE 2048
|
|
-#define CONFIG_SYS_MAXARGS 64
|
|
-#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
|
- sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
-
|
|
-#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
|
|
-
|
|
-#define CONFIG_IMX_BOOTAUX
|
|
-
|
|
-/* USDHC */
|
|
-#define CONFIG_FSL_USDHC
|
|
-
|
|
-#define CONFIG_SYS_FSL_USDHC_NUM 2
|
|
-#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
-
|
|
-#ifndef CONFIG_DM_I2C
|
|
-#define CONFIG_SYS_I2C
|
|
-#endif
|
|
-#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
-#define CONFIG_SYS_I2C_SPEED 100000
|
|
-
|
|
-/* EEPROM */
|
|
-#define CONFIG_ENV_EEPROM_IS_ON_I2C
|
|
-#define CONFIG_SYS_I2C_EEPROM_BUS 1
|
|
-#define CONFIG_SYS_I2C_SLAVE 0x00
|
|
-#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
|
|
-#define CONFIG_SYS_EEPROM_SIZE 256
|
|
-#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4
|
|
-#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
|
|
-
|
|
-/* USB configs */
|
|
-#ifndef CONFIG_SPL_BUILD
|
|
-#define CONFIG_CMD_USB
|
|
-#define CONFIG_USB_STORAGE
|
|
-#define CONFIG_USBD_HS
|
|
-
|
|
-#define CONFIG_CMD_USB_MASS_STORAGE
|
|
-#define CONFIG_USB_GADGET_MASS_STORAGE
|
|
-#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
|
-
|
|
-#endif
|
|
-
|
|
-#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
|
-
|
|
-#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
-#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
|
|
-
|
|
-#ifdef CONFIG_VIDEO
|
|
-#define CONFIG_VIDEO_MXS
|
|
-#define CONFIG_VIDEO_LOGO
|
|
-#define CONFIG_SPLASH_SCREEN
|
|
-#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
-#define CONFIG_CMD_BMP
|
|
-#define CONFIG_BMP_16BPP
|
|
-#define CONFIG_VIDEO_BMP_RLE8
|
|
-#define CONFIG_VIDEO_BMP_LOGO
|
|
-#define CONFIG_IMX_VIDEO_SKIP
|
|
-#define CONFIG_RM67191
|
|
-#endif
|
|
-
|
|
-#define CONFIG_BOARD_POSTCLK_INIT
|
|
-#define CONFIG_OF_BOARD_SETUP
|
|
+#include "cpl-imx8m-mini.h"
|
|
|
|
#if defined(CONFIG_ANDROID_SUPPORT)
|
|
#include "mcm-imx8m-mini_android.h"
|
|
diff --git a/include/configs/ucm-imx8m-mini.h b/include/configs/ucm-imx8m-mini.h
|
|
index 75c6102f10..b3d6082a66 100644
|
|
--- a/include/configs/ucm-imx8m-mini.h
|
|
+++ b/include/configs/ucm-imx8m-mini.h
|
|
@@ -7,273 +7,7 @@
|
|
#ifndef __UCM_IMX8M_MINI_H
|
|
#define __UCM_IMX8M_MINI_H
|
|
|
|
-#include <linux/sizes.h>
|
|
-#include <asm/arch/imx-regs.h>
|
|
-#include "imx_env.h"
|
|
-
|
|
-#define CONFIG_SPL_MAX_SIZE (148 * 1024)
|
|
-#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
|
|
-#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
|
|
-#define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300
|
|
-#define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
|
|
-#define CONFIG_SYS_UBOOT_BASE (QSPI0_AMBA_BASE + CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)
|
|
-
|
|
-#ifdef CONFIG_SPL_BUILD
|
|
-/*#define CONFIG_ENABLE_DDR_TRAINING_DEBUG*/
|
|
-#define CONFIG_SPL_WATCHDOG_SUPPORT
|
|
-#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
|
|
-#define CONFIG_SPL_I2C_SUPPORT
|
|
-#define CONFIG_SPL_LIBCOMMON_SUPPORT
|
|
-#define CONFIG_SPL_LIBGENERIC_SUPPORT
|
|
-
|
|
-#define CONFIG_SPL_STACK 0x920000
|
|
-#define CONFIG_SPL_BSS_START_ADDR 0x910000
|
|
-#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K
|
|
-#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
|
|
-#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_512K
|
|
-
|
|
-/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
|
|
-#define CONFIG_MALLOC_F_ADDR 0x912000
|
|
-
|
|
-#define CONFIG_SPL_ABORT_ON_RAW_IMAGE /* For RAW image gives a error info not panic */
|
|
-
|
|
-#undef CONFIG_DM_MMC
|
|
-#undef CONFIG_DM_PMIC
|
|
-#undef CONFIG_DM_PMIC_PFUZE100
|
|
-
|
|
-#define CONFIG_SYS_I2C
|
|
-#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
-
|
|
-#define CONFIG_POWER
|
|
-#define CONFIG_POWER_I2C
|
|
-#define CONFIG_POWER_BD71837
|
|
-
|
|
-#endif /*ifdef CONFIG_SPL_BUILD*/
|
|
-
|
|
-#define CONFIG_CMD_READ
|
|
-#define CONFIG_SERIAL_TAG
|
|
-#define CONFIG_FASTBOOT_USB_DEV 0
|
|
-
|
|
-#define CONFIG_REMAKE_ELF
|
|
-
|
|
-#define CONFIG_BOARD_POSTCLK_INIT
|
|
-
|
|
-/* Flat Device Tree Definitions */
|
|
-#define CONFIG_OF_BOARD_SETUP
|
|
-
|
|
-#undef CONFIG_CMD_IMLS
|
|
-
|
|
-#undef CONFIG_CMD_CRC32
|
|
-#undef CONFIG_BOOTM_NETBSD
|
|
-
|
|
-/* ENET Config */
|
|
-/* ENET1 */
|
|
-#if defined(CONFIG_CMD_NET)
|
|
-#define CONFIG_ETHPRIME "FEC"
|
|
-
|
|
-#define CONFIG_FEC_XCV_TYPE RGMII
|
|
-#define CONFIG_FEC_MXC_PHYADDR 0
|
|
-#define FEC_QUIRK_ENET_MAC
|
|
-
|
|
-#define CONFIG_PHY_GIGE
|
|
-#define IMX_FEC_BASE 0x30BE0000
|
|
-
|
|
-#define CONFIG_PHYLIB
|
|
-#define CONFIG_PHY_ATHEROS
|
|
-#endif
|
|
-
|
|
-#define CONFIG_MFG_ENV_SETTINGS \
|
|
- "mfgtool_args=setenv bootargs console=${console},${baudrate} " \
|
|
- "rdinit=/linuxrc " \
|
|
- "g_mass_storage.stall=0 g_mass_storage.removable=1 " \
|
|
- "g_mass_storage.idVendor=0x066F g_mass_storage.idProduct=0x37FF "\
|
|
- "g_mass_storage.iSerialNumber=\"\" "\
|
|
- "clk_ignore_unused "\
|
|
- "\0" \
|
|
- "initrd_addr=0x43800000\0" \
|
|
- "initrd_high=0xffffffff\0" \
|
|
- "emmc_dev=1\0" \
|
|
- "sd_dev=0\0" \
|
|
- "bootcmd_mfg=run mfgtool_args; if iminfo ${initrd_addr}; then "\
|
|
- "booti ${loadaddr} ${initrd_addr} ${fdt_addr};"\
|
|
- "else echo \"Run fastboot ...\"; fastboot 0; fi\0" \
|
|
-/* Initial environment variables */
|
|
-#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
- CONFIG_MFG_ENV_SETTINGS \
|
|
- "autoload=off\0" \
|
|
- "script=boot.scr\0" \
|
|
- "image=Image\0" \
|
|
- "console=ttymxc2,115200 earlycon=ec_imx6q,0x30880000,115200\0" \
|
|
- "fdt_addr=0x43000000\0" \
|
|
- "fdt_high=0xffffffffffffffff\0" \
|
|
- "boot_fdt=yes\0" \
|
|
- "fdt_file="CONFIG_DEFAULT_DTB"\0" \
|
|
- "initrd_addr=0x43800000\0" \
|
|
- "initrd_high=0xffffffffffffffff\0" \
|
|
- "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
|
|
- "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \
|
|
- "mmcroot=" CONFIG_MMCROOT " rootwait rw\0" \
|
|
- "mmcautodetect=yes\0" \
|
|
- "root_opt=rootwait rw\0" \
|
|
- "emmc_ul=setenv iface mmc; setenv dev 2; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/mmcblk2p2 ${root_opt};\0" \
|
|
- "sd_ul=setenv iface mmc; setenv dev 1; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/mmcblk1p2 ${root_opt};\0" \
|
|
- "usb_ul=usb start; setenv iface usb; setenv dev 0; setenv part 1;" \
|
|
- "setenv bootargs console=${console} root=/dev/sda2 ${root_opt};\0" \
|
|
- "ulbootscript=load ${iface} ${dev}:${part} ${loadaddr} ${script};\0" \
|
|
- "ulimage=load ${iface} ${dev}:${part} ${loadaddr} ${image}\0" \
|
|
- "ulfdt=if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
- "load ${iface} ${dev}:${part} ${fdt_addr} ${fdt_file}; fi;\0" \
|
|
- "bootscript=echo Running bootscript from mmc ...; " \
|
|
- "source\0" \
|
|
- "netargs=setenv bootargs console=${console} " \
|
|
- "root=/dev/nfs " \
|
|
- "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \
|
|
- "netboot=echo Booting from net ...; " \
|
|
- "run netargs; " \
|
|
- "if test ${ip_dyn} = yes; then " \
|
|
- "setenv get_cmd dhcp; " \
|
|
- "else " \
|
|
- "setenv get_cmd tftp; " \
|
|
- "fi; " \
|
|
- "${get_cmd} ${loadaddr} ${image}; " \
|
|
- "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
- "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
|
|
- "booti ${loadaddr} - ${fdt_addr}; " \
|
|
- "else " \
|
|
- "echo WARN: Cannot load the DT; " \
|
|
- "fi; " \
|
|
- "else " \
|
|
- "booti; " \
|
|
- "fi;\0"
|
|
-#define CONFIG_BOOTCOMMAND \
|
|
- "for src in sd_ul usb_ul emmc_ul; do " \
|
|
- "run ${src}; " \
|
|
- "if run ulbootscript; then " \
|
|
- "run bootscript; " \
|
|
- "else " \
|
|
- "if run ulimage; then " \
|
|
- "if run ulfdt; then " \
|
|
- "booti ${loadaddr} - ${fdt_addr}; " \
|
|
- "else " \
|
|
- "if test ${boot_fdt} != yes; then " \
|
|
- "booti ${loadaddr}; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "fi; " \
|
|
- "done; " \
|
|
- "usb start; ums 0 mmc ${mmcdev};"
|
|
-
|
|
-/* Link Definitions */
|
|
-#define CONFIG_LOADADDR 0x40480000
|
|
-
|
|
-#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
|
|
-
|
|
-#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
|
|
-#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
|
|
-#define CONFIG_SYS_INIT_SP_OFFSET \
|
|
- (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
|
|
-#define CONFIG_SYS_INIT_SP_ADDR \
|
|
- (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
|
|
-
|
|
-#define CONFIG_ENV_OVERWRITE
|
|
-#define CONFIG_SYS_MMC_ENV_DEV 1 /* USDHC2 */
|
|
-#define CONFIG_SYS_MMC_ENV_PART 1
|
|
-#define CONFIG_MMCROOT "/dev/mmcblk1p2" /* USDHC2 */
|
|
-
|
|
-/* Size of malloc() pool */
|
|
-#define CONFIG_SYS_MALLOC_LEN ((CONFIG_ENV_SIZE + (2*1024) + (16*1024)) * 1024)
|
|
-
|
|
-#define PHYS_SDRAM 0x40000000
|
|
-#define PHYS_SDRAM_2 0x100000000
|
|
-#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB default size*/
|
|
-#undef PHYS_SDRAM_2_SIZE /* Memory chip autodetection */
|
|
-#define CONFIG_NR_DRAM_BANKS 4
|
|
-
|
|
-#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
|
|
-#define PHYS_SDRAM_SIZE 0x80000000 /* 2GB DDR */
|
|
-#define PHYS_SDRAM_2_SIZE 0x40000000
|
|
-
|
|
-#define MEMTEST_DIVIDER 2
|
|
-#define MEMTEST_NUMERATOR 1
|
|
-
|
|
-#define CONFIG_BAUDRATE 115200
|
|
-
|
|
-#define CONFIG_MXC_UART_BASE UART3_BASE_ADDR
|
|
-
|
|
-/* Monitor Command Prompt */
|
|
-#undef CONFIG_SYS_PROMPT
|
|
-#define CONFIG_SYS_PROMPT "u-boot=> "
|
|
-#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
|
-#define CONFIG_SYS_CBSIZE 2048
|
|
-#define CONFIG_SYS_MAXARGS 64
|
|
-#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
-#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
|
- sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
-
|
|
-#define CONFIG_SYS_MMC_IMG_LOAD_PART 1
|
|
-
|
|
-#define CONFIG_IMX_BOOTAUX
|
|
-
|
|
-/* USDHC */
|
|
-#define CONFIG_FSL_USDHC
|
|
-
|
|
-#define CONFIG_SYS_FSL_USDHC_NUM 2
|
|
-#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
|
-
|
|
-#ifndef CONFIG_DM_I2C
|
|
-#define CONFIG_SYS_I2C
|
|
-#endif
|
|
-#define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */
|
|
-#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
|
|
-#define CONFIG_SYS_I2C_SPEED 100000
|
|
-
|
|
-/* EEPROM */
|
|
-#define CONFIG_ENV_EEPROM_IS_ON_I2C
|
|
-#define CONFIG_SYS_I2C_EEPROM_BUS 1
|
|
-#define CONFIG_SYS_I2C_SLAVE 0x00
|
|
-#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
|
|
-#define CONFIG_SYS_EEPROM_SIZE 256
|
|
-#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 4
|
|
-#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
|
|
-
|
|
-/* USB configs */
|
|
-#ifndef CONFIG_SPL_BUILD
|
|
-#define CONFIG_CMD_USB
|
|
-#define CONFIG_USB_STORAGE
|
|
-#define CONFIG_USBD_HS
|
|
-
|
|
-#define CONFIG_CMD_USB_MASS_STORAGE
|
|
-#define CONFIG_USB_GADGET_MASS_STORAGE
|
|
-#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
|
-
|
|
-#endif
|
|
-
|
|
-#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
|
-
|
|
-#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
|
|
-#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
|
|
-
|
|
-#ifdef CONFIG_VIDEO
|
|
-#define CONFIG_VIDEO_MXS
|
|
-#define CONFIG_VIDEO_LOGO
|
|
-#define CONFIG_SPLASH_SCREEN
|
|
-#define CONFIG_SPLASH_SCREEN_ALIGN
|
|
-#define CONFIG_CMD_BMP
|
|
-#define CONFIG_BMP_16BPP
|
|
-#define CONFIG_VIDEO_BMP_RLE8
|
|
-#define CONFIG_VIDEO_BMP_LOGO
|
|
-#define CONFIG_IMX_VIDEO_SKIP
|
|
-#define CONFIG_RM67191
|
|
-#endif
|
|
-
|
|
-#define CONFIG_BOARD_POSTCLK_INIT
|
|
-#define CONFIG_OF_BOARD_SETUP
|
|
+#include "cpl-imx8m-mini.h"
|
|
|
|
#if defined(CONFIG_ANDROID_SUPPORT)
|
|
#include "ucm-imx8m-mini_android.h"
|
|
--
|
|
2.11.0
|
|
|