blob: 3d3fab517e3ab510954886d70b8e6a1e67273386 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marek Vasut00671d92017-10-09 21:51:10 +02002/*
3 * DHCOM DH-iMX6 PDK board configuration
4 *
5 * Copyright (C) 2017 Marek Vasut <marex@denx.de>
Marek Vasut00671d92017-10-09 21:51:10 +02006 */
7
8#ifndef __DH_IMX6_CONFIG_H
9#define __DH_IMX6_CONFIG_H
10
11#include <asm/arch/imx-regs.h>
12
Marek Vasut00671d92017-10-09 21:51:10 +020013#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 */
Marek Vasut00671d92017-10-09 21:51:10 +020026#define CONFIG_SPL_TARGET "u-boot-with-spl.imx"
27
28/* Miscellaneous configurable options */
Marek Vasut00671d92017-10-09 21:51:10 +020029
Marek Vasut00671d92017-10-09 21:51:10 +020030/* Bootcounter */
Marek Vasut00671d92017-10-09 21:51:10 +020031#define CONFIG_SYS_BOOTCOUNT_BE
32
33/* FEC ethernet */
Marek Vasut00671d92017-10-09 21:51:10 +020034#define IMX_FEC_BASE ENET_BASE_ADDR
Christoph Niedermaier62b46de2021-11-28 03:53:18 +010035#define CONFIG_FEC_MXC_PHYADDR 7
Marek Vasut00671d92017-10-09 21:51:10 +020036
Marek Vasut00671d92017-10-09 21:51:10 +020037/* MMC Configs */
Marek Vasut00671d92017-10-09 21:51:10 +020038#define CONFIG_SYS_FSL_ESDHC_ADDR 0
39#define CONFIG_SYS_FSL_USDHC_NUM 3
Marek Vasut00671d92017-10-09 21:51:10 +020040
41/* SATA Configs */
Marek Vasut00671d92017-10-09 21:51:10 +020042#define CONFIG_LBA48
Marek Vasut00671d92017-10-09 21:51:10 +020043
Marek Vasut00671d92017-10-09 21:51:10 +020044/* UART */
Marek Vasut00671d92017-10-09 21:51:10 +020045#define CONFIG_MXC_UART_BASE UART1_BASE
Marek Vasut00671d92017-10-09 21:51:10 +020046
47/* USB Configs */
48#ifdef CONFIG_CMD_USB
49#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
Marek Vasut00671d92017-10-09 21:51:10 +020050#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
51#define CONFIG_MXC_USB_FLAGS 0
52#define CONFIG_USB_MAX_CONTROLLER_COUNT 2 /* Enabled USB controller number */
Marek Vasut861b6892017-10-22 10:22:40 +020053
54/* USB Gadget (DFU, UMS) */
55#if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE)
Marek Vasut861b6892017-10-22 10:22:40 +020056#define DFU_DEFAULT_POLL_TIMEOUT 300
57
58/* USB IDs */
59#define CONFIG_G_DNL_UMS_VENDOR_NUM 0x0525
60#define CONFIG_G_DNL_UMS_PRODUCT_NUM 0xA4A5
61#endif
Marek Vasut00671d92017-10-09 21:51:10 +020062#endif
63
Marek Vasut00671d92017-10-09 21:51:10 +020064#ifndef CONFIG_SPL_BUILD
65#define CONFIG_EXTRA_ENV_SETTINGS \
66 "console=ttymxc0,115200\0" \
67 "fdt_addr=0x18000000\0" \
68 "fdt_high=0xffffffff\0" \
69 "initrd_high=0xffffffff\0" \
70 "kernel_addr_r=0x10008000\0" \
71 "fdt_addr_r=0x13000000\0" \
72 "ramdisk_addr_r=0x18000000\0" \
73 "scriptaddr=0x14000000\0" \
74 "fdtfile=imx6q-dhcom-pdk2.dtb\0"\
Marek Vasutb042a6c2021-11-28 03:52:35 +010075 "update_sf=" /* Erase SPI NOR and install U-Boot from SD */ \
76 "load mmc 0:1 ${loadaddr} /boot/u-boot-with-spl.imx && "\
77 "sf probe && sf erase 0x0 0xa0000 && " \
78 "sf write ${loadaddr} 0x400 ${filesize}\0" \
Marek Vasut00671d92017-10-09 21:51:10 +020079 BOOTENV
80
Marek Vasut00671d92017-10-09 21:51:10 +020081#define BOOT_TARGET_DEVICES(func) \
82 func(MMC, mmc, 0) \
83 func(MMC, mmc, 2) \
84 func(USB, usb, 1) \
85 func(SATA, sata, 0) \
86 func(DHCP, dhcp, na)
87
88#include <config_distro_bootcmd.h>
89#endif
90
91/* Physical Memory Map */
Marek Vasut00671d92017-10-09 21:51:10 +020092#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
93
94#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
95#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
96#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
97
98#define CONFIG_SYS_INIT_SP_OFFSET \
99 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
100
101#define CONFIG_SYS_INIT_SP_ADDR \
102 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
103
Marek Vasut00671d92017-10-09 21:51:10 +0200104/* Environment */
Marek Vasut00671d92017-10-09 21:51:10 +0200105
106#endif /* __DH_IMX6_CONFIG_H */