Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 1 | /* 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 Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 10 | #include <linux/stringify.h> |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 11 | #include "mx6_common.h" |
| 12 | |
| 13 | /* SPL options */ |
| 14 | #include "imx6_spl.h" |
| 15 | |
| 16 | /* NAND pin conflicts with usdhc2 */ |
| 17 | #ifdef CONFIG_CMD_NAND |
| 18 | #define CONFIG_SYS_FSL_USDHC_NUM 1 |
| 19 | #else |
| 20 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
| 21 | #endif |
| 22 | |
| 23 | #ifdef CONFIG_CMD_NET |
| 24 | #define CONFIG_FEC_ENET_DEV 0 |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 25 | #endif |
| 26 | |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 27 | /* Environment settings */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 28 | |
| 29 | /* Environment in SD */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 30 | #define MMC_ROOTFS_DEV 0 |
| 31 | #define MMC_ROOTFS_PART 2 |
| 32 | |
| 33 | /* Console configs */ |
| 34 | #define CONFIG_MXC_UART_BASE UART1_BASE |
| 35 | |
| 36 | /* MMC Configs */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 37 | |
| 38 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 39 | |
| 40 | /* I2C configs */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 41 | |
| 42 | /* Miscellaneous configurable options */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 43 | |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 44 | /* Physical Memory Map */ |
| 45 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 46 | #define PHYS_SDRAM_SIZE SZ_512M |
| 47 | |
| 48 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 49 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 50 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 51 | |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 52 | /* USB Configs */ |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 53 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 54 | #define CONFIG_MXC_USB_FLAGS 0 |
| 55 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
| 56 | |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 57 | #define ENV_MMC \ |
| 58 | "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \ |
| 59 | "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \ |
| 60 | "fitpart=1\0" \ |
| 61 | "bootdelay=3\0" \ |
| 62 | "silent=1\0" \ |
| 63 | "optargs=rw rootwait\0" \ |
| 64 | "mmcautodetect=yes\0" \ |
| 65 | "mmcrootfstype=ext4\0" \ |
| 66 | "mmcfit_name=fitImage\0" \ |
| 67 | "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \ |
| 68 | "${mmcfit_name}\0" \ |
| 69 | "mmcargs=setenv bootargs " \ |
| 70 | "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \ |
| 71 | "console=${console} rootfstype=${mmcrootfstype}\0" \ |
| 72 | "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \ |
| 73 | |
| 74 | /* Default environment */ |
| 75 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 76 | "fdt_high=0xffffffff\0" \ |
| 77 | "console=ttymxc0,115200n8\0" \ |
| 78 | "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \ |
| 79 | "fit_addr=0x82000000\0" \ |
| 80 | ENV_MMC |
| 81 | |
Parthiban Nallathambi | d8d33b6 | 2019-04-18 00:04:09 +0200 | [diff] [blame] | 82 | #define BOOT_TARGET_DEVICES(func) \ |
| 83 | func(MMC, mmc, 0) \ |
| 84 | func(MMC, mmc, 1) \ |
| 85 | func(DHCP, dhcp, na) |
| 86 | |
| 87 | #include <config_distro_bootcmd.h> |
| 88 | #endif /* __DART_6UL_H */ |