Convert CONFIG_SYS_SPL_MALLOC_SIZE et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / kontron_pitx_imx8m.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2
3 #ifndef __KONTRON_PITX_IMX8M_H
4 #define __KONTRON_PITX_IMX8M_H
5
6 #include <linux/sizes.h>
7 #include <linux/stringify.h>
8 #include <asm/arch/imx-regs.h>
9
10 #define CONFIG_SYS_BOOTM_LEN            (32 * SZ_1M)
11
12 #define CONFIG_SYS_MONITOR_LEN          (512 * SZ_1K)
13
14 /* GUID for capsule updatable firmware image */
15 #define KONTRON_PITX_IMX8M_FIT_IMAGE_GUID \
16         EFI_GUID(0xc898e959, 0x5b1f, 0x4e6d, 0x88, 0xe0, \
17                  0x40, 0xd4, 0x5c, 0xca, 0x13, 0x99)
18
19 #ifdef CONFIG_SPL_BUILD
20 #define CONFIG_SYS_SPL_PTE_RAM_BASE     0x41580000
21
22 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
23 #define CONFIG_MALLOC_F_ADDR            0x182000
24 /* For RAW image gives a error info not panic */
25 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
26
27
28 #define CONFIG_POWER_PFUZE100
29 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
30 #endif
31
32 /* ENET1 Config */
33 #if defined(CONFIG_CMD_NET)
34 #define CONFIG_FEC_MXC_PHYADDR          0
35
36 #define PHY_ANEG_TIMEOUT                20000
37
38 #endif
39
40 #define ENV_MEM_LAYOUT_SETTINGS \
41         "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
42         "kernel_addr_r=0x42000000\0" \
43         "fdt_addr_r=0x48000000\0" \
44         "fdtoverlay_addr_r=0x49000000\0" \
45         "ramdisk_addr_r=0x48080000\0" \
46         "scriptaddr=0x40000000\0" \
47         "pxefile_addr_r=0x40100000\0"
48
49 #define BOOT_TARGET_DEVICES(func) \
50         func(MMC, mmc, 0) \
51         func(MMC, mmc, 1) \
52         func(USB, usb, 0) \
53         func(DHCP, dhcp, na) \
54         func(PXE, pxe, 0)
55
56 #include <config_distro_bootcmd.h>
57
58 /* Initial environment variables */
59 #define CONFIG_EXTRA_ENV_SETTINGS               \
60         "image=Image\0" \
61         "console=ttymxc2,115200\0" \
62         "boot_fdt=try\0" \
63         "fdtfile=freescale/imx8mq-kontron-pitx-imx8m.dtb\0" \
64         "dfu_alt_info=mmc 0=flash-bin raw 0x42 0x1000 mmcpart 1\0"\
65         ENV_MEM_LAYOUT_SETTINGS \
66         BOOTENV
67
68
69 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
70 #define CONFIG_SYS_INIT_RAM_SIZE        0x80000
71
72 #define CONFIG_SYS_SDRAM_BASE           0x40000000
73 #define PHYS_SDRAM                      0x40000000
74 #define PHYS_SDRAM_SIZE                 0xC0000000 /* 3GB DDR */
75
76 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(3)
77
78 #define CONFIG_SYS_FSL_USDHC_NUM        2
79 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
80
81 #endif