blob: bc04c508218864e738008f288a7012eda4cdf07c [file] [log] [blame]
Martyn Welch09630602018-12-11 11:34:46 +00001/* 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 */
Martyn Welch09630602018-12-11 11:34:46 +000024
Tom Rini6cc04542022-10-28 20:27:13 -040025#define CFG_SYS_FSL_USDHC_NUM 1
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020026
Martyn Welch09630602018-12-11 11:34:46 +000027/* Console configs */
28#define CONFIG_MXC_UART_BASE UART1_BASE
29
30/* MMC Configs */
Martyn Welch09630602018-12-11 11:34:46 +000031
Tom Rini6cc04542022-10-28 20:27:13 -040032#define CFG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR
Martyn Welch09630602018-12-11 11:34:46 +000033
34/* Miscellaneous configurable options */
Martyn Welch09630602018-12-11 11:34:46 +000035
Martyn Welch09630602018-12-11 11:34:46 +000036/* Physical Memory Map */
37#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
38#define PHYS_SDRAM_SIZE SZ_256M
39
40#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
41#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
42#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
43
Martyn Welch09630602018-12-11 11:34:46 +000044/* NAND */
Tom Rini84d8c382022-11-12 13:19:56 -050045#define CFG_SYS_NAND_BASE 0x40000000
Martyn Welch09630602018-12-11 11:34:46 +000046
47/* USB Configs */
Martyn Welch09630602018-12-11 11:34:46 +000048#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
49#define CONFIG_MXC_USB_FLAGS 0
Martyn Welch09630602018-12-11 11:34:46 +000050
Martyn Welch09630602018-12-11 11:34:46 +000051#define CONFIG_EXTRA_ENV_SETTINGS \
52 "console=ttymxc0,115200n8\0" \
Martyn Welch09630602018-12-11 11:34:46 +000053 "fdt_addr_r=0x82000000\0" \
54 "fdt_high=0xffffffff\0" \
55 "initrd_high=0xffffffff\0" \
56 "kernel_addr_r=0x81000000\0" \
57 "pxefile_addr_r=0x87100000\0" \
58 "ramdisk_addr_r=0x82100000\0" \
59 "scriptaddr=0x87000000\0" \
60 BOOTENV
61
62#define BOOT_TARGET_DEVICES(func) \
63 func(MMC, mmc, 0) \
Pali Roháre6ca1482022-05-31 10:32:36 +020064 func(UBIFS, ubifs, 0, UBI, boot) \
Martyn Welch09630602018-12-11 11:34:46 +000065 func(PXE, pxe, na) \
66 func(DHCP, dhcp, na)
67
68#include <config_distro_bootcmd.h>
69
70#endif /* __PCL063_H */