blob: c5781670864b3f12775a7ffb00ba50e033694d13 [file] [log] [blame]
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Board configuration file for Variscite DART-6UL Evaluation Kit
4 * Copyright (C) 2019 Parthiban Nallathambi <parthitce@gmail.com>
5 */
6#ifndef __DART_6UL_H
7#define __DART_6UL_H
8
9#include <linux/sizes.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020011#include "mx6_common.h"
12
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020013/* NAND pin conflicts with usdhc2 */
14#ifdef CONFIG_CMD_NAND
Tom Rini6cc04542022-10-28 20:27:13 -040015#define CFG_SYS_FSL_USDHC_NUM 1
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020016#else
Tom Rini6cc04542022-10-28 20:27:13 -040017#define CFG_SYS_FSL_USDHC_NUM 2
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020018#endif
19
20#ifdef CONFIG_CMD_NET
Tom Rini4daffb52022-12-04 10:03:52 -050021#define CFG_FEC_ENET_DEV 0
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020022#endif
23
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020024/* Environment settings */
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020025
26/* Environment in SD */
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020027#define MMC_ROOTFS_DEV 0
28#define MMC_ROOTFS_PART 2
29
30/* Console configs */
Tom Rini4db38662022-12-04 10:04:55 -050031#define CFG_MXC_UART_BASE UART1_BASE
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020032
33/* MMC Configs */
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020034
Tom Rini6cc04542022-10-28 20:27:13 -040035#define CFG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020036
37/* I2C configs */
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020038
39/* Miscellaneous configurable options */
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020040
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020041/* Physical Memory Map */
42#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
43#define PHYS_SDRAM_SIZE SZ_512M
44
Tom Riniaa6e94d2022-11-16 13:10:37 -050045#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050046#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
47#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020048
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020049/* USB Configs */
Tom Rinidd11fdc2022-12-04 10:04:56 -050050#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
51#define CFG_MXC_USB_FLAGS 0
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020052
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +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 */
Tom Rini0613c362022-12-04 10:03:50 -050071#define CFG_EXTRA_ENV_SETTINGS \
Parthiban Nallathambid8d33b62019-04-18 00:04:09 +020072 "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 Nallathambid8d33b62019-04-18 00:04:09 +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#endif /* __DART_6UL_H */