blob: ae81b8e214e23c2209653a715e6ab8393e225f35 [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
16/* SPL options */
17#include "imx6_spl.h"
18
19#define CONFIG_SYS_FSL_USDHC_NUM 2
20
Parthiban Nallathambic4669382019-04-10 16:35:32 +020021/* Environment settings */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020022
23/* Environment in SD */
Parthiban Nallathambic4669382019-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 Nallathambic4669382019-04-10 16:35:32 +020031
32#define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambic4669382019-04-10 16:35:32 +020033
34/* I2C configs */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020035
36/* Miscellaneous configurable options */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020037
Parthiban Nallathambic4669382019-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 Nallathambic4669382019-04-10 16:35:32 +020046/* NAND */
47#define CONFIG_SYS_MAX_NAND_DEVICE 1
48#define CONFIG_SYS_NAND_BASE 0x40000000
49
50/* USB Configs */
Parthiban Nallathambic4669382019-04-10 16:35:32 +020051#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
52#define CONFIG_MXC_USB_FLAGS 0
Parthiban Nallathambic4669382019-04-10 16:35:32 +020053
Parthiban Nallathambic4669382019-04-10 16:35:32 +020054#define ENV_MMC \
55 "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
56 "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \
57 "fitpart=1\0" \
58 "bootdelay=3\0" \
59 "silent=1\0" \
60 "optargs=rw rootwait\0" \
61 "mmcautodetect=yes\0" \
62 "mmcrootfstype=ext4\0" \
63 "mmcfit_name=fitImage\0" \
64 "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \
65 "${mmcfit_name}\0" \
66 "mmcargs=setenv bootargs " \
67 "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \
68 "console=${console} rootfstype=${mmcrootfstype}\0" \
69 "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \
70
71/* Default environment */
72#define CONFIG_EXTRA_ENV_SETTINGS \
73 "fdt_high=0xffffffff\0" \
74 "console=ttymxc0,115200n8\0" \
75 "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
76 "fit_addr=0x82000000\0" \
77 ENV_MMC
78
Parthiban Nallathambic4669382019-04-10 16:35:32 +020079#define BOOT_TARGET_DEVICES(func) \
80 func(MMC, mmc, 0) \
81 func(MMC, mmc, 1) \
82 func(DHCP, dhcp, na)
83
84#include <config_distro_bootcmd.h>
85
86#endif /* __PCL063_ULL_H */