ea1edab9fc1271e6944b331afcf369ec0af6fc8f
[platform/kernel/u-boot.git] / include / configs / o4-imx6ull-nano.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /* Copyright (C) 2021 Oleh Kravchenko <oleg@kaa.org.ua> */
3
4 #ifndef __O4_IMX6ULL_NANO_CONFIG_H
5 #define __O4_IMX6ULL_NANO_CONFIG_H
6
7 #include "mx6_common.h"
8
9 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
10 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
11 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
12 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
13
14 #if IS_ENABLED(CONFIG_CMD_USB)
15 #       define CONFIG_MXC_USB_PORTSC            (PORT_PTS_UTMI | PORT_PTS_PTW)
16 #endif /* CONFIG_CMD_USB */
17
18 #define CONFIG_EXTRA_ENV_SETTINGS \
19         "mmcdev=0\0" \
20         "mmcpart=2\0" \
21         "mmcargs=setenv bootargs root=/dev/mmcblk${mmcdev}p${mmcpart} console=ttymxc0,${baudrate} panic=30\0" \
22         "mmcboot=run mmcargs && ext4load mmc ${mmcdev}:${mmcpart} $loadaddr /boot/zImage && bootz $loadaddr - $fdtcontroladdr\0" \
23         "bootcmd=run mmcboot\0" \
24         "bootcmd_mfg=fastboot usb 0\0"
25
26 #endif /* __O4_IMX6ULL_NANO_CONFIG_H */