Rename CONFIG_EHCI_IS_TDI to CONFIG_USB_EHCI_IS_TDI
[platform/kernel/u-boot.git] / include / configs / pcl063.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018 Collabora Ltd.
4  *
5  * Based on include/configs/xpress.h:
6  * Copyright (C) 2015-2016 Stefan Roese <sr@denx.de>
7  */
8 #ifndef __PCL063_H
9 #define __PCL063_H
10
11 #include <linux/sizes.h>
12 #include "mx6_common.h"
13
14 /* SPL options */
15 #include "imx6_spl.h"
16
17 /*
18  * There is a bug in some i.MX6UL processors that results in the initial
19  * portion of OCRAM being unavailable when booting from (at least) an SD
20  * card.
21  *
22  * Tweak the SPL text base address to avoid this.
23  */
24
25 #define CONFIG_SYS_FSL_USDHC_NUM        1
26
27 /* Console configs */
28 #define CONFIG_MXC_UART_BASE            UART1_BASE
29
30 /* MMC Configs */
31
32 #define CONFIG_SYS_FSL_ESDHC_ADDR       USDHC1_BASE_ADDR
33
34 /* Miscellaneous configurable options */
35
36 #define CONFIG_SYS_HZ                   1000
37
38 /* Physical Memory Map */
39 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
40 #define PHYS_SDRAM_SIZE                 SZ_256M
41
42 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
43 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
44 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
45
46 #define CONFIG_SYS_INIT_SP_OFFSET \
47         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
48 #define CONFIG_SYS_INIT_SP_ADDR \
49         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
50
51 /* NAND */
52 #define CONFIG_SYS_MAX_NAND_DEVICE      1
53 #define CONFIG_SYS_NAND_BASE            0x40000000
54
55 /* USB Configs */
56 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
57 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
58 #define CONFIG_MXC_USB_FLAGS            0
59 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
60
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62         "console=ttymxc0,115200n8\0" \
63         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
64         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
65         "fdt_addr_r=0x82000000\0" \
66         "fdt_high=0xffffffff\0" \
67         "initrd_high=0xffffffff\0" \
68         "kernel_addr_r=0x81000000\0" \
69         "pxefile_addr_r=0x87100000\0" \
70         "ramdisk_addr_r=0x82100000\0" \
71         "scriptaddr=0x87000000\0" \
72         BOOTENV
73
74 #define BOOT_TARGET_DEVICES(func) \
75         func(MMC, mmc, 0) \
76         func(UBIFS, ubifs, 0) \
77         func(PXE, pxe, na) \
78         func(DHCP, dhcp, na)
79
80 #include <config_distro_bootcmd.h>
81
82 #endif /* __PCL063_H */