Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 1 | /* 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 Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 13 | #include <linux/stringify.h> |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 14 | #include "mx6_common.h" |
| 15 | |
| 16 | /* SPL options */ |
| 17 | #include "imx6_spl.h" |
| 18 | |
| 19 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
| 20 | |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 21 | /* Environment settings */ |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 22 | |
| 23 | /* Environment in SD */ |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 24 | #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 Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 31 | |
| 32 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 33 | |
| 34 | /* I2C configs */ |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 35 | |
| 36 | /* Miscellaneous configurable options */ |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 37 | |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 38 | /* 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 | |
| 46 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 47 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 48 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 49 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 50 | |
| 51 | /* NAND */ |
| 52 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
| 53 | #define CONFIG_SYS_NAND_BASE 0x40000000 |
| 54 | |
| 55 | /* USB Configs */ |
| 56 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET |
| 57 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 58 | #define CONFIG_MXC_USB_FLAGS 0 |
| 59 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 60 | |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 61 | #define ENV_MMC \ |
| 62 | "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \ |
| 63 | "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \ |
| 64 | "fitpart=1\0" \ |
| 65 | "bootdelay=3\0" \ |
| 66 | "silent=1\0" \ |
| 67 | "optargs=rw rootwait\0" \ |
| 68 | "mmcautodetect=yes\0" \ |
| 69 | "mmcrootfstype=ext4\0" \ |
| 70 | "mmcfit_name=fitImage\0" \ |
| 71 | "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \ |
| 72 | "${mmcfit_name}\0" \ |
| 73 | "mmcargs=setenv bootargs " \ |
| 74 | "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \ |
| 75 | "console=${console} rootfstype=${mmcrootfstype}\0" \ |
| 76 | "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \ |
| 77 | |
| 78 | /* Default environment */ |
| 79 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 80 | "fdt_high=0xffffffff\0" \ |
| 81 | "console=ttymxc0,115200n8\0" \ |
| 82 | "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \ |
| 83 | "fit_addr=0x82000000\0" \ |
| 84 | ENV_MMC |
| 85 | |
Parthiban Nallathambi | d2d1191 | 2019-04-10 16:35:32 +0200 | [diff] [blame] | 86 | #define BOOT_TARGET_DEVICES(func) \ |
| 87 | func(MMC, mmc, 0) \ |
| 88 | func(MMC, mmc, 1) \ |
| 89 | func(DHCP, dhcp, na) |
| 90 | |
| 91 | #include <config_distro_bootcmd.h> |
| 92 | |
| 93 | #endif /* __PCL063_ULL_H */ |