Merge tag 'u-boot-stm32-20211012' of https://source.denx.de/u-boot/custodians/u-boot-stm
[platform/kernel/u-boot.git] / include / configs / udoo.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2013 Freescale Semiconductor, Inc.
4  *
5  * Configuration settings for Udoo board.
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include "mx6_common.h"
12
13 #include "imx6_spl.h"
14
15 #define CONFIG_MXC_UART_BASE            UART2_BASE
16
17 /* SATA Configs */
18 #define CONFIG_LBA48
19
20 /* MMC Configuration */
21 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
22
23 #define CONFIG_EXTRA_ENV_SETTINGS \
24         "console=ttymxc1,115200\0" \
25         "fdt_high=0xffffffff\0" \
26         "initrd_high=0xffffffff\0" \
27         "fdtfile=undefined\0" \
28         "fdt_addr=0x18000000\0" \
29         "fdt_addr_r=0x18000000\0" \
30         "ip_dyn=yes\0" \
31         "mmcdev=0\0" \
32         "mmcrootfstype=ext4\0" \
33         "findfdt="\
34                 "if test ${board_rev} = MX6Q; then " \
35                         "setenv fdtfile imx6q-udoo.dtb; fi; " \
36                 "if test ${board_rev} = MX6DL; then " \
37                         "setenv fdtfile imx6dl-udoo.dtb; fi; " \
38                 "if test ${fdtfile} = undefined; then " \
39                         "echo WARNING: Could not determine dtb to use; fi\0" \
40         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
41         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
42         "ramdisk_addr_r=0x13000000\0" \
43         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
44         BOOTENV
45
46 #define BOOT_TARGET_DEVICES(func) \
47         func(MMC, mmc, 0) \
48         func(SATA, sata, 0) \
49         func(DHCP, dhcp, na)
50
51 #include <config_distro_bootcmd.h>
52 #include <linux/stringify.h>
53
54 /* Physical Memory Map */
55 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
56
57 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
58 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
59 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
60
61 #define CONFIG_SYS_INIT_SP_OFFSET \
62         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
63 #define CONFIG_SYS_INIT_SP_ADDR \
64         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
65
66 /* Environment organization */
67
68 #endif                         /* __CONFIG_H * */