Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2019 Kontron Electronics GmbH |
| 4 | * |
| 5 | * Configuration settings for the Kontron SL/BL i.MX8M-Mini boards and modules (N81xx). |
| 6 | */ |
| 7 | #ifndef __KONTRON_MX8MM_CONFIG_H |
| 8 | #define __KONTRON_MX8MM_CONFIG_H |
| 9 | |
| 10 | #include <asm/arch/imx-regs.h> |
| 11 | #include <linux/sizes.h> |
| 12 | |
| 13 | #ifdef CONFIG_SPL_BUILD |
| 14 | #include <config.h> |
| 15 | #endif |
| 16 | |
| 17 | /* RAM */ |
| 18 | #define PHYS_SDRAM DDR_CSD1_BASE_ADDR |
| 19 | #define PHYS_SDRAM_SIZE (SZ_4G) |
| 20 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 21 | |
| 22 | #define CONFIG_SYS_INIT_RAM_ADDR 0x40000000 |
| 23 | #define CONFIG_SYS_INIT_RAM_SIZE 0x200000 |
| 24 | |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 25 | /* Board and environment settings */ |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 26 | #define CONFIG_HOSTNAME "kontron-mx8mm" |
| 27 | |
| 28 | #ifdef CONFIG_USB_EHCI_HCD |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 29 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
| 30 | #define CONFIG_MXC_USB_FLAGS 0 |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 31 | #endif |
| 32 | |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 33 | /* GUID for capsule updatable firmware image */ |
| 34 | #define KONTRON_SL_MX8MM_FIT_IMAGE_GUID \ |
| 35 | EFI_GUID(0xd488e45a, 0x4929, 0x4b55, 0x8c, 0x14, \ |
| 36 | 0x86, 0xce, 0xa2, 0xcd, 0x66, 0x29) |
| 37 | |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 38 | #define BOOT_TARGET_DEVICES(func) \ |
| 39 | func(MMC, mmc, 1) \ |
| 40 | func(MMC, mmc, 0) \ |
| 41 | func(USB, usb, 0) \ |
| 42 | func(PXE, pxe, na) |
| 43 | #include <config_distro_bootcmd.h> |
| 44 | /* Do not try to probe USB net adapters for net boot */ |
| 45 | #undef BOOTENV_RUN_NET_USB_START |
| 46 | #define BOOTENV_RUN_NET_USB_START |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 47 | |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 48 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 49 | |
| 50 | #ifdef CONFIG_SPL_BUILD |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 51 | /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */ |
| 52 | #define CONFIG_MALLOC_F_ADDR 0x930000 |
| 53 | #endif |
| 54 | |
Heiko Thiery | 891a324 | 2022-02-16 13:25:14 +0100 | [diff] [blame] | 55 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 56 | "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 57 | "kernel_addr_r=0x42000000\0" \ |
Heiko Thiery | 891a324 | 2022-02-16 13:25:14 +0100 | [diff] [blame] | 58 | "fdt_addr_r=0x48000000\0" \ |
| 59 | "fdtoverlay_addr_r=0x49000000\0" \ |
| 60 | "ramdisk_addr_r=0x48080000\0" \ |
| 61 | "scriptaddr=0x40000000\0"\ |
| 62 | "pxefile_addr_r=0x40100000\0" |
| 63 | |
| 64 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 65 | "dfu_alt_info=sf 0:0=flash-bin raw 0x400 0x1f0000\0" \ |
| 66 | "bootdelay=3\0" \ |
| 67 | "hostname=" CONFIG_HOSTNAME "\0" \ |
Heiko Thiery | 891a324 | 2022-02-16 13:25:14 +0100 | [diff] [blame] | 68 | ENV_MEM_LAYOUT_SETTINGS \ |
Frieder Schrempf | 9cab87f | 2021-09-29 16:42:42 +0200 | [diff] [blame] | 69 | BOOTENV |
| 70 | |
| 71 | #endif /* __KONTRON_MX8MM_CONFIG_H */ |