Migrate CUSTOM_SYS_INIT_SP_ADDR to Kconfig using system-constants.h
[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_MXC_UART_BASE            UART_BASE_ADDR(3)
27 #define CONFIG_HOSTNAME                 "kontron-mx8mm"
28
29 #ifdef CONFIG_USB_EHCI_HCD
30 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
31 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
32 #define CONFIG_MXC_USB_FLAGS            0
33 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
34 #endif
35
36 /* GUID for capsule updatable firmware image */
37 #define KONTRON_SL_MX8MM_FIT_IMAGE_GUID \
38         EFI_GUID(0xd488e45a, 0x4929, 0x4b55, 0x8c, 0x14, \
39                  0x86, 0xce, 0xa2, 0xcd, 0x66, 0x29)
40
41 #ifndef CONFIG_SPL_BUILD
42 #define BOOT_TARGET_DEVICES(func) \
43         func(MMC, mmc, 1) \
44         func(MMC, mmc, 0) \
45         func(USB, usb, 0) \
46         func(PXE, pxe, na)
47 #include <config_distro_bootcmd.h>
48 /* Do not try to probe USB net adapters for net boot */
49 #undef BOOTENV_RUN_NET_USB_START
50 #define BOOTENV_RUN_NET_USB_START
51 #else
52 #define BOOTENV
53 #endif
54
55 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
56
57 #ifdef CONFIG_SPL_BUILD
58 #define CONFIG_SPL_STACK                0x91fff0
59 #define CONFIG_SPL_BSS_START_ADDR       0x910000
60 #define CONFIG_SYS_SPL_MALLOC_START     0x42200000
61 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_512K
62 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
63 #define CONFIG_MALLOC_F_ADDR            0x930000
64 #endif
65
66 #define ENV_MEM_LAYOUT_SETTINGS \
67         "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
68         "kernel_addr_r=0x42000000\0" \
69         "fdt_addr_r=0x48000000\0" \
70         "fdtoverlay_addr_r=0x49000000\0" \
71         "ramdisk_addr_r=0x48080000\0" \
72         "scriptaddr=0x40000000\0"\
73         "pxefile_addr_r=0x40100000\0"
74
75 #define CONFIG_EXTRA_ENV_SETTINGS \
76         "dfu_alt_info=sf 0:0=flash-bin raw 0x400 0x1f0000\0" \
77         "bootdelay=3\0" \
78         "hostname=" CONFIG_HOSTNAME "\0" \
79         ENV_MEM_LAYOUT_SETTINGS \
80         BOOTENV
81
82 #endif /* __KONTRON_MX8MM_CONFIG_H */