blob: 0f265adc5dcad06ec6cfc1159f4d67395fba1859 [file] [log] [blame]
Parthiban Nallathambic4669382019-04-10 16:35:32 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Board configuration file for Phytec phyBOARD-i.MX6ULL-Segin SBC
4 * Copyright (C) 2019 Parthiban Nallathambi <parthitce@gmail.com>
5 *
6 * Based on include/configs/xpress.h:
7 * Copyright (C) 2015-2016 Stefan Roese <sr@denx.de>
8 */
9#ifndef __PCL063_ULL_H
10#define __PCL063_ULL_H
11
12#include <linux/sizes.h>
Simon Glassfb64e362020-05-10 11:40:09 -060013#include <linux/stringify.h>
Parthiban Nallathambic4669382019-04-10 16:35:32 +020014#include "mx6_common.h"
15
Tom Rini376b88a2022-10-28 20:27:13 -040016#define CFG_SYS_FSL_USDHC_NUM 2
Parthiban Nallathambic4669382019-04-10 16:35:32 +020017
Parthiban Nallathambic4669382019-04-10 16:35:32 +020018/* Environment settings */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020019
20/* Environment in SD */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020021#define MMC_ROOTFS_DEV 0
22#define MMC_ROOTFS_PART 2
23
24/* Console configs */
Tom Rinia17aa192022-12-04 10:04:55 -050025#define CFG_MXC_UART_BASE UART1_BASE
Parthiban Nallathambic4669382019-04-10 16:35:32 +020026
27/* MMC Configs */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020028
Tom Rini376b88a2022-10-28 20:27:13 -040029#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambic4669382019-04-10 16:35:32 +020030
31/* I2C configs */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020032
33/* Miscellaneous configurable options */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020034
Parthiban Nallathambic4669382019-04-10 16:35:32 +020035/* Physical Memory Map */
36#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
37#define PHYS_SDRAM_SIZE SZ_256M
38
Tom Rinibb4dd962022-11-16 13:10:37 -050039#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini6a5dccc2022-11-16 13:10:41 -050040#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
41#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Parthiban Nallathambic4669382019-04-10 16:35:32 +020042
Parthiban Nallathambic4669382019-04-10 16:35:32 +020043/* NAND */
Tom Rinib4213492022-11-12 17:36:51 -050044#define CFG_SYS_NAND_BASE 0x40000000
Parthiban Nallathambic4669382019-04-10 16:35:32 +020045
Parthiban Nallathambic4669382019-04-10 16:35:32 +020046#define ENV_MMC \
47 "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
48 "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
49 "fitpart=1\0" \
50 "bootdelay=3\0" \
51 "silent=1\0" \
52 "optargs=rw rootwait\0" \
53 "mmcautodetect=yes\0" \
54 "mmcrootfstype=ext4\0" \
55 "mmcfit_name=fitImage\0" \
56 "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
57 "${mmcfit_name}\0" \
58 "mmcargs=setenv bootargs " \
59 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
60 "console=${console} rootfstype=${mmcrootfstype}\0" \
61 "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
62
63/* Default environment */
Tom Rinic9edebe2022-12-04 10:03:50 -050064#define CFG_EXTRA_ENV_SETTINGS \
Parthiban Nallathambic4669382019-04-10 16:35:32 +020065 "fdt_high=0xffffffff\0" \
66 "console=ttymxc0,115200n8\0" \
67 "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
68 "fit_addr=0x82000000\0" \
69 ENV_MMC
70
Parthiban Nallathambic4669382019-04-10 16:35:32 +020071#define BOOT_TARGET_DEVICES(func) \
72 func(MMC, mmc, 0) \
73 func(MMC, mmc, 1) \
74 func(DHCP, dhcp, na)
75
76#include <config_distro_bootcmd.h>
77
78#endif /* __PCL063_ULL_H */