348be5a6ec64deb8f750c5dc9bc87eccf638315b
[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 /* Miscellaneous configurable options */
25
26 /* MMC Configs */
27 #define CFG_SYS_FSL_ESDHC_ADDR  0
28 #define CFG_SYS_FSL_USDHC_NUM   3
29
30 /* UART */
31 #define CFG_MXC_UART_BASE               UART1_BASE
32
33 /* USB Configs */
34 #ifdef CONFIG_CMD_USB
35 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
36 #define CONFIG_MXC_USB_FLAGS            0
37
38 /* USB Gadget (DFU, UMS) */
39 #if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE)
40 #define DFU_DEFAULT_POLL_TIMEOUT        300
41 #endif
42 #endif
43
44 #define CFG_EXTRA_ENV_SETTINGS  \
45         "console=ttymxc0,115200\0"      \
46         "fdt_addr=0x18000000\0"         \
47         "fdt_high=0xffffffff\0"         \
48         "initrd_high=0xffffffff\0"      \
49         "kernel_addr_r=0x10008000\0"    \
50         "fdt_addr_r=0x13000000\0"       \
51         "ramdisk_addr_r=0x18000000\0"   \
52         "scriptaddr=0x14000000\0"       \
53         "fdtfile=imx6q-dhcom-pdk2.dtb\0"\
54         "update_sf=" /* Erase SPI NOR and install U-Boot from SD */     \
55                 "load mmc 0:1 ${loadaddr} /boot/u-boot-with-spl.imx && "\
56                 "sf probe && sf update ${loadaddr} 0x400 ${filesize}\0" \
57         BOOTENV
58
59 #define BOOT_TARGET_DEVICES(func) \
60         func(MMC, mmc, 0) \
61         func(MMC, mmc, 2) \
62         func(USB, usb, 1) \
63         func(SATA, sata, 0) \
64         func(DHCP, dhcp, na)
65
66 #include <config_distro_bootcmd.h>
67
68 /* Physical Memory Map */
69 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
70
71 #define CFG_SYS_SDRAM_BASE              PHYS_SDRAM
72 #define CFG_SYS_INIT_RAM_ADDR   IRAM_BASE_ADDR
73 #define CFG_SYS_INIT_RAM_SIZE   IRAM_SIZE
74
75 /* Environment */
76
77 #endif  /* __DH_IMX6_CONFIG_H */