blob: bd04268a3ef39891a0c3f3a68adad26d18d8770d [file] [log] [blame]
Parthiban Nallathambid2d11912019-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 Glass1af3c7f2020-05-10 11:40:09 -060013#include <linux/stringify.h>
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020014#include "mx6_common.h"
15
Tom Rini6cc04542022-10-28 20:27:13 -040016#define CFG_SYS_FSL_USDHC_NUM 2
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020017
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020018/* Environment settings */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020019
20/* Environment in SD */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020021#define MMC_ROOTFS_DEV 0
22#define MMC_ROOTFS_PART 2
23
24/* Console configs */
Tom Rini4db38662022-12-04 10:04:55 -050025#define CFG_MXC_UART_BASE UART1_BASE
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020026
27/* MMC Configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020028
Tom Rini6cc04542022-10-28 20:27:13 -040029#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020030
31/* I2C configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020032
33/* Miscellaneous configurable options */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020034
Parthiban Nallathambid2d11912019-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 Riniaa6e94d2022-11-16 13:10:37 -050039#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-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 Nallathambid2d11912019-04-10 16:35:32 +020042
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020043/* NAND */
Tom Rini4e590942022-11-12 17:36:51 -050044#define CFG_SYS_NAND_BASE 0x40000000
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020045
46/* USB Configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020047#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
48#define CONFIG_MXC_USB_FLAGS 0
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020049
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020050#define ENV_MMC \
51 "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
52 "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
53 "fitpart=1\0" \
54 "bootdelay=3\0" \
55 "silent=1\0" \
56 "optargs=rw rootwait\0" \
57 "mmcautodetect=yes\0" \
58 "mmcrootfstype=ext4\0" \
59 "mmcfit_name=fitImage\0" \
60 "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
61 "${mmcfit_name}\0" \
62 "mmcargs=setenv bootargs " \
63 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
64 "console=${console} rootfstype=${mmcrootfstype}\0" \
65 "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
66
67/* Default environment */
Tom Rini0613c362022-12-04 10:03:50 -050068#define CFG_EXTRA_ENV_SETTINGS \
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020069 "fdt_high=0xffffffff\0" \
70 "console=ttymxc0,115200n8\0" \
71 "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
72 "fit_addr=0x82000000\0" \
73 ENV_MMC
74
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020075#define BOOT_TARGET_DEVICES(func) \
76 func(MMC, mmc, 0) \
77 func(MMC, mmc, 1) \
78 func(DHCP, dhcp, na)
79
80#include <config_distro_bootcmd.h>
81
82#endif /* __PCL063_ULL_H */