]>
Commit | Line | Data |
---|---|---|
d2d11918 PN |
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 <[email protected]> | |
5 | * | |
6 | * Based on include/configs/xpress.h: | |
7 | * Copyright (C) 2015-2016 Stefan Roese <[email protected]> | |
8 | */ | |
9 | #ifndef __PCL063_ULL_H | |
10 | #define __PCL063_ULL_H | |
11 | ||
12 | #include <linux/sizes.h> | |
1af3c7f4 | 13 | #include <linux/stringify.h> |
d2d11918 PN |
14 | #include "mx6_common.h" |
15 | ||
16 | /* SPL options */ | |
17 | #include "imx6_spl.h" | |
18 | ||
19 | #define CONFIG_SYS_FSL_USDHC_NUM 2 | |
20 | ||
d2d11918 | 21 | /* Environment settings */ |
d2d11918 PN |
22 | |
23 | /* Environment in SD */ | |
d2d11918 PN |
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 */ | |
d2d11918 PN |
31 | |
32 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR | |
33 | #define CONFIG_SUPPORT_EMMC_BOOT | |
34 | ||
35 | /* I2C configs */ | |
d2d11918 PN |
36 | |
37 | /* Miscellaneous configurable options */ | |
d2d11918 | 38 | |
d2d11918 PN |
39 | /* Physical Memory Map */ |
40 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR | |
41 | #define PHYS_SDRAM_SIZE SZ_256M | |
42 | ||
43 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM | |
44 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR | |
45 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE | |
46 | ||
47 | #define CONFIG_SYS_INIT_SP_OFFSET \ | |
48 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) | |
49 | #define CONFIG_SYS_INIT_SP_ADDR \ | |
50 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) | |
51 | ||
52 | /* NAND */ | |
53 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 | |
54 | #define CONFIG_SYS_NAND_BASE 0x40000000 | |
55 | ||
56 | /* USB Configs */ | |
57 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET | |
58 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) | |
59 | #define CONFIG_MXC_USB_FLAGS 0 | |
60 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 | |
61 | ||
d2d11918 PN |
62 | #define ENV_MMC \ |
63 | "mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \ | |
64 | "mmcpart=" __stringify(MMC_ROOTFS_PART) "\0" \ | |
65 | "fitpart=1\0" \ | |
66 | "bootdelay=3\0" \ | |
67 | "silent=1\0" \ | |
68 | "optargs=rw rootwait\0" \ | |
69 | "mmcautodetect=yes\0" \ | |
70 | "mmcrootfstype=ext4\0" \ | |
71 | "mmcfit_name=fitImage\0" \ | |
72 | "mmcloadfit=fatload mmc ${mmcdev}:${fitpart} ${fit_addr} " \ | |
73 | "${mmcfit_name}\0" \ | |
74 | "mmcargs=setenv bootargs " \ | |
75 | "root=/dev/mmcblk${mmcdev}p${mmcpart} ${optargs} " \ | |
76 | "console=${console} rootfstype=${mmcrootfstype}\0" \ | |
77 | "mmc_mmc_fit=run mmcloadfit;run mmcargs addcon; bootm ${fit_addr}\0" \ | |
78 | ||
79 | /* Default environment */ | |
80 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
81 | "fdt_high=0xffffffff\0" \ | |
82 | "console=ttymxc0,115200n8\0" \ | |
83 | "addcon=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \ | |
84 | "fit_addr=0x82000000\0" \ | |
85 | ENV_MMC | |
86 | ||
87 | #define CONFIG_BOOTCOMMAND "run mmc_mmc_fit" | |
88 | ||
89 | #define BOOT_TARGET_DEVICES(func) \ | |
90 | func(MMC, mmc, 0) \ | |
91 | func(MMC, mmc, 1) \ | |
92 | func(DHCP, dhcp, na) | |
93 | ||
94 | #include <config_distro_bootcmd.h> | |
95 | ||
96 | #endif /* __PCL063_ULL_H */ |