blob: 2bdae8afa8c147f51c681482e196692dbfcb61e7 [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
16/* SPL options */
17#include "imx6_spl.h"
18
Tom Rini6cc04542022-10-28 20:27:13 -040019#define CFG_SYS_FSL_USDHC_NUM 2
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020020
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020021/* Environment settings */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020022
23/* Environment in SD */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020024#define MMC_ROOTFS_DEV 0
25#define MMC_ROOTFS_PART 2
26
27/* Console configs */
28#define CONFIG_MXC_UART_BASE UART1_BASE
29
30/* MMC Configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020031
Tom Rini6cc04542022-10-28 20:27:13 -040032#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020033
34/* I2C configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020035
36/* Miscellaneous configurable options */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020037
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020038/* 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
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020046/* NAND */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020047#define CONFIG_SYS_NAND_BASE 0x40000000
48
49/* USB Configs */
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020050#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
51#define CONFIG_MXC_USB_FLAGS 0
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020052
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020053#define ENV_MMC \
54 "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
55 "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
56 "fitpart=1\0" \
57 "bootdelay=3\0" \
58 "silent=1\0" \
59 "optargs=rw rootwait\0" \
60 "mmcautodetect=yes\0" \
61 "mmcrootfstype=ext4\0" \
62 "mmcfit_name=fitImage\0" \
63 "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
64 "${mmcfit_name}\0" \
65 "mmcargs=setenv bootargs " \
66 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
67 "console=${console} rootfstype=${mmcrootfstype}\0" \
68 "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
69
70/* Default environment */
71#define CONFIG_EXTRA_ENV_SETTINGS \
72 "fdt_high=0xffffffff\0" \
73 "console=ttymxc0,115200n8\0" \
74 "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
75 "fit_addr=0x82000000\0" \
76 ENV_MMC
77
Parthiban Nallathambid2d11912019-04-10 16:35:32 +020078#define BOOT_TARGET_DEVICES(func) \
79 func(MMC, mmc, 0) \
80 func(MMC, mmc, 1) \
81 func(DHCP, dhcp, na)
82
83#include <config_distro_bootcmd.h>
84
85#endif /* __PCL063_ULL_H */