6b591ed7872efae28526e346de25af565c3c104a
[platform/kernel/u-boot.git] / include / configs / kontron-sl-mx8mm.h
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
25 /* Board and environment settings */
26 #define CONFIG_HOSTNAME                 "kontron-mx8mm"
27
28 #ifdef CONFIG_USB_EHCI_HCD
29 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
30 #define CONFIG_MXC_USB_FLAGS            0
31 #endif
32
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
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
47
48 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
49
50 #ifdef CONFIG_SPL_BUILD
51 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
52 #define CONFIG_MALLOC_F_ADDR            0x930000
53 #endif
54
55 #define ENV_MEM_LAYOUT_SETTINGS \
56         "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
57         "kernel_addr_r=0x42000000\0" \
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 \
65         "dfu_alt_info=sf 0:0=flash-bin raw 0x400 0x1f0000\0" \
66         "bootdelay=3\0" \
67         "hostname=" CONFIG_HOSTNAME "\0" \
68         ENV_MEM_LAYOUT_SETTINGS \
69         BOOTENV
70
71 #endif /* __KONTRON_MX8MM_CONFIG_H */