Merge tag 'v2022.04-rc5' into next
[platform/kernel/u-boot.git] / include / configs / embestmx6boards.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Eukréa Electromatique
4  * Author: Eric Bénard <eric@eukrea.com>
5  *
6  * Configuration settings for the Embest RIoTboard
7  *
8  * based on mx6*sabre*.h which are :
9  * Copyright (C) 2012 Freescale Semiconductor, Inc.
10  */
11
12 #ifndef __RIOTBOARD_CONFIG_H
13 #define __RIOTBOARD_CONFIG_H
14
15 #define CONFIG_MXC_UART_BASE            UART2_BASE
16 #define CONSOLE_DEV             "ttymxc1"
17
18 #define PHYS_SDRAM_SIZE         (1u * 1024 * 1024 * 1024)
19
20 /* USB Configs */
21 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
22 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
23 #define CONFIG_MXC_USB_FLAGS    0
24
25 /* MMC Configs */
26 #define CONFIG_SYS_FSL_ESDHC_ADDR      0
27
28 /* Physical Memory Map */
29 #define PHYS_SDRAM                     MMDC0_ARB_BASE_ADDR
30
31 #define CONFIG_SYS_SDRAM_BASE          PHYS_SDRAM
32 #define CONFIG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
33 #define CONFIG_SYS_INIT_RAM_SIZE       IRAM_SIZE
34
35 #define CONFIG_SYS_INIT_SP_OFFSET \
36         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
37 #define CONFIG_SYS_INIT_SP_ADDR \
38         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
39
40 /* Environment organization */
41
42 #if defined(CONFIG_ENV_IS_IN_MMC)
43 /* RiOTboard */
44 #define CONFIG_FDTFILE  "imx6dl-riotboard.dtb"
45 #define CONFIG_SYS_FSL_USDHC_NUM        3
46 #elif defined(CONFIG_ENV_IS_IN_SPI_FLASH)
47 /* MarSBoard */
48 #define CONFIG_FDTFILE  "imx6q-marsboard.dtb"
49 #define CONFIG_SYS_FSL_USDHC_NUM        2
50 #endif
51
52 /* Framebuffer */
53 #define CONFIG_VIDEO_BMP_LOGO
54 #define CONFIG_IMX_HDMI
55 #define CONFIG_IMX_VIDEO_SKIP
56
57 #include "mx6_common.h"
58
59 #ifdef CONFIG_SPL
60 #include "imx6_spl.h"
61 /* RiOTboard */
62 #define CONFIG_SYS_SPL_ARGS_ADDR 0x13000000
63 #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
64 #define CONFIG_SPL_FS_LOAD_ARGS_NAME "imx6dl-riotboard.dtb"
65
66 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR  0 /* offset 69KB */
67 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0 /* offset 69KB */
68
69 #endif
70
71 /* 256M RAM (minimum), 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
72  * 1M script, 1M pxe and the ramdisk at the end */
73 #define MEM_LAYOUT_ENV_SETTINGS \
74         "bootm_size=0x10000000\0" \
75         "kernel_addr_r=0x12000000\0" \
76         "fdt_addr_r=0x13000000\0" \
77         "scriptaddr=0x13100000\0" \
78         "pxefile_addr_r=0x13200000\0" \
79         "ramdisk_addr_r=0x13300000\0"
80
81 #define BOOT_TARGET_DEVICES(func) \
82         func(MMC, mmc, 0) \
83         func(MMC, mmc, 1) \
84         func(MMC, mmc, 2) \
85         func(USB, usb, 0) \
86         func(PXE, pxe, na) \
87         func(DHCP, dhcp, na)
88
89 #include <config_distro_bootcmd.h>
90
91 #define CONSOLE_STDIN_SETTINGS \
92         "stdin=serial\0"
93
94 #define CONSOLE_STDOUT_SETTINGS \
95         "stdout=serial\0" \
96         "stderr=serial\0"
97
98 #define CONSOLE_ENV_SETTINGS \
99         CONSOLE_STDIN_SETTINGS \
100         CONSOLE_STDOUT_SETTINGS
101
102 #define CONFIG_EXTRA_ENV_SETTINGS \
103         CONSOLE_ENV_SETTINGS \
104         MEM_LAYOUT_ENV_SETTINGS \
105         "fdtfile=" CONFIG_FDTFILE "\0" \
106         "finduuid=part uuid mmc 0:1 uuid\0" \
107         BOOTENV
108
109 #endif                         /* __RIOTBOARD_CONFIG_H */