Merge tag 'u-boot-imx-20220523' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / dh_imx6.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * DHCOM DH-iMX6 PDK board configuration
4  *
5  * Copyright (C) 2017 Marek Vasut <marex@denx.de>
6  */
7
8 #ifndef __DH_IMX6_CONFIG_H
9 #define __DH_IMX6_CONFIG_H
10
11 #include <asm/arch/imx-regs.h>
12
13 #include "mx6_common.h"
14
15 /*
16  * SPI NOR layout:
17  * 0x00_0000-0x00_ffff ... U-Boot SPL
18  * 0x01_0000-0x0f_ffff ... U-Boot
19  * 0x10_0000-0x10_ffff ... U-Boot env #1
20  * 0x11_0000-0x11_ffff ... U-Boot env #2
21  * 0x12_0000-0x1f_ffff ... UNUSED
22  */
23
24 /* SPL */
25 #include "imx6_spl.h"                   /* common IMX6 SPL configuration */
26 #define CONFIG_SPL_TARGET               "u-boot-with-spl.imx"
27
28 /* Miscellaneous configurable options */
29
30 /* Bootcounter */
31 #define CONFIG_SYS_BOOTCOUNT_BE
32
33 /* MMC Configs */
34 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
35 #define CONFIG_SYS_FSL_USDHC_NUM        3
36
37 /* SATA Configs */
38 #define CONFIG_LBA48
39
40 /* UART */
41 #define CONFIG_MXC_UART_BASE            UART1_BASE
42
43 /* USB Configs */
44 #ifdef CONFIG_CMD_USB
45 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
46 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
47 #define CONFIG_MXC_USB_FLAGS            0
48 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
49
50 /* USB Gadget (DFU, UMS) */
51 #if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE)
52 #define DFU_DEFAULT_POLL_TIMEOUT        300
53
54 /* USB IDs */
55 #define CONFIG_G_DNL_UMS_VENDOR_NUM     0x0525
56 #define CONFIG_G_DNL_UMS_PRODUCT_NUM    0xA4A5
57 #endif
58 #endif
59
60 #ifndef CONFIG_SPL_BUILD
61 #define CONFIG_EXTRA_ENV_SETTINGS       \
62         "console=ttymxc0,115200\0"      \
63         "fdt_addr=0x18000000\0"         \
64         "fdt_high=0xffffffff\0"         \
65         "initrd_high=0xffffffff\0"      \
66         "kernel_addr_r=0x10008000\0"    \
67         "fdt_addr_r=0x13000000\0"       \
68         "ramdisk_addr_r=0x18000000\0"   \
69         "scriptaddr=0x14000000\0"       \
70         "fdtfile=imx6q-dhcom-pdk2.dtb\0"\
71         "update_sf=" /* Erase SPI NOR and install U-Boot from SD */     \
72                 "load mmc 0:1 ${loadaddr} /boot/u-boot-with-spl.imx && "\
73                 "sf probe && sf erase 0x0 0xa0000 && "                  \
74                 "sf write ${loadaddr} 0x400 ${filesize}\0"              \
75         BOOTENV
76
77 #define BOOT_TARGET_DEVICES(func) \
78         func(MMC, mmc, 0) \
79         func(MMC, mmc, 2) \
80         func(USB, usb, 1) \
81         func(SATA, sata, 0) \
82         func(DHCP, dhcp, na)
83
84 #include <config_distro_bootcmd.h>
85 #endif
86
87 /* Physical Memory Map */
88 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
89
90 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
91 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
92 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
93
94 #define CONFIG_SYS_INIT_SP_OFFSET \
95         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
96
97 #define CONFIG_SYS_INIT_SP_ADDR \
98         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
99
100 /* Environment */
101
102 #endif  /* __DH_IMX6_CONFIG_H */