Frieder Schrempf | e6f48aa | 2021-09-29 16:42:41 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2018 Kontron Electronics GmbH |
| 4 | * |
| 5 | * Configuration settings for the Kontron i.MX6UL boards/SoMs. |
| 6 | */ |
| 7 | #ifndef __KONTRON_MX6UL_CONFIG_H |
| 8 | #define __KONTRON_MX6UL_CONFIG_H |
| 9 | |
| 10 | #include <asm/arch/imx-regs.h> |
| 11 | #include <linux/sizes.h> |
| 12 | |
| 13 | #include "mx6_common.h" |
| 14 | #ifdef CONFIG_SPL_BUILD |
| 15 | #include "imx6_spl.h" |
| 16 | #endif |
| 17 | |
| 18 | /* RAM */ |
| 19 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 20 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 21 | |
| 22 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 23 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 24 | |
Frieder Schrempf | e6f48aa | 2021-09-29 16:42:41 +0200 | [diff] [blame] | 25 | #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE |
| 26 | |
| 27 | /* Board and environment settings */ |
| 28 | #define CONFIG_MXC_UART_BASE UART4_BASE |
| 29 | #define CONFIG_HOSTNAME "kontron-mx6ul" |
Frieder Schrempf | e6f48aa | 2021-09-29 16:42:41 +0200 | [diff] [blame] | 30 | |
| 31 | #ifdef CONFIG_USB_EHCI_HCD |
Frieder Schrempf | e6f48aa | 2021-09-29 16:42:41 +0200 | [diff] [blame] | 32 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 33 | #define CONFIG_MXC_USB_FLAGS 0 |
| 34 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
| 35 | #endif |
| 36 | |
| 37 | /* Boot order for distro boot */ |
| 38 | #ifndef CONFIG_SPL_BUILD |
| 39 | #define BOOT_TARGET_DEVICES(func) \ |
| 40 | func(MMC, mmc, 1) \ |
| 41 | func(MMC, mmc, 0) \ |
| 42 | func(UBIFS, ubifs, 0) \ |
| 43 | func(USB, usb, 0) \ |
| 44 | func(PXE, pxe, na) \ |
| 45 | func(DHCP, dhcp, na) |
| 46 | #include <config_distro_bootcmd.h> |
| 47 | #else |
| 48 | #define BOOTENV |
| 49 | #endif |
| 50 | |
| 51 | /* MMC Configs */ |
| 52 | #ifdef CONFIG_FSL_USDHC |
| 53 | #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC1_BASE_ADDR |
| 54 | #define CONFIG_SYS_FSL_USDHC_NUM 2 |
Frieder Schrempf | e6f48aa | 2021-09-29 16:42:41 +0200 | [diff] [blame] | 55 | #endif |
| 56 | |
| 57 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 58 | "kernel_addr_r=0x82000000\0" \ |
| 59 | "ramdisk_addr_r=0x88080000\0" \ |
| 60 | "pxefile_addr_r=0x80100000\0" \ |
| 61 | "scriptaddr=0x80100000\0" \ |
| 62 | "bootdelay=3\0" \ |
| 63 | "ethact=" CONFIG_ETHPRIME "\0" \ |
| 64 | "hostname=" CONFIG_HOSTNAME "\0" \ |
| 65 | BOOTENV |
| 66 | |
| 67 | #endif /* __KONTRON_MX6UL_CONFIG_H */ |