blob: 38dcee053596e0e725fe6274614340ad8851d11b [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
Martyn Welch09630602018-12-11 11:34:46 +000014/*
15 * There is a bug in some i.MX6UL processors that results in the initial
16 * portion of OCRAM being unavailable when booting from (at least) an SD
17 * card.
18 *
19 * Tweak the SPL text base address to avoid this.
20 */
Martyn Welch09630602018-12-11 11:34:46 +000021
Tom Rini6cc04542022-10-28 20:27:13 -040022#define CFG_SYS_FSL_USDHC_NUM 1
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020023
Martyn Welch09630602018-12-11 11:34:46 +000024/* Console configs */
Tom Rini4db38662022-12-04 10:04:55 -050025#define CFG_MXC_UART_BASE UART1_BASE
Martyn Welch09630602018-12-11 11:34:46 +000026
27/* MMC Configs */
Martyn Welch09630602018-12-11 11:34:46 +000028
Tom Rini6cc04542022-10-28 20:27:13 -040029#define CFG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR
Martyn Welch09630602018-12-11 11:34:46 +000030
31/* Miscellaneous configurable options */
Martyn Welch09630602018-12-11 11:34:46 +000032
Martyn Welch09630602018-12-11 11:34:46 +000033/* Physical Memory Map */
34#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
35#define PHYS_SDRAM_SIZE SZ_256M
36
Tom Riniaa6e94d2022-11-16 13:10:37 -050037#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050038#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
39#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Martyn Welch09630602018-12-11 11:34:46 +000040
Martyn Welch09630602018-12-11 11:34:46 +000041/* NAND */
Tom Rini4e590942022-11-12 17:36:51 -050042#define CFG_SYS_NAND_BASE 0x40000000
Martyn Welch09630602018-12-11 11:34:46 +000043
44/* USB Configs */
Tom Rinidd11fdc2022-12-04 10:04:56 -050045#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
46#define CFG_MXC_USB_FLAGS 0
Martyn Welch09630602018-12-11 11:34:46 +000047
Tom Rini0613c362022-12-04 10:03:50 -050048#define CFG_EXTRA_ENV_SETTINGS \
Martyn Welch09630602018-12-11 11:34:46 +000049 "console=ttymxc0,115200n8\0" \
Martyn Welch09630602018-12-11 11:34:46 +000050 "fdt_addr_r=0x82000000\0" \
51 "fdt_high=0xffffffff\0" \
52 "initrd_high=0xffffffff\0" \
53 "kernel_addr_r=0x81000000\0" \
54 "pxefile_addr_r=0x87100000\0" \
55 "ramdisk_addr_r=0x82100000\0" \
56 "scriptaddr=0x87000000\0" \
57 BOOTENV
58
59#define BOOT_TARGET_DEVICES(func) \
60 func(MMC, mmc, 0) \
Pali Roháre6ca1482022-05-31 10:32:36 +020061 func(UBIFS, ubifs, 0, UBI, boot) \
Martyn Welch09630602018-12-11 11:34:46 +000062 func(PXE, pxe, na) \
63 func(DHCP, dhcp, na)
64
65#include <config_distro_bootcmd.h>
66
67#endif /* __PCL063_H */