1834991ac3b94d448b6d4c3f587efd01dcce1d31
[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_SPL_MAX_SIZE             (124 * SZ_1K)
13 #define CONFIG_SYS_MONITOR_LEN          (512 * SZ_1K)
14
15 /* GUID for capsule updatable firmware image */
16 #define KONTRON_PITX_IMX8M_FIT_IMAGE_GUID \
17         EFI_GUID(0xc898e959, 0x5b1f, 0x4e6d, 0x88, 0xe0, \
18                  0x40, 0xd4, 0x5c, 0xca, 0x13, 0x99)
19
20 #ifdef CONFIG_SPL_BUILD
21 #define CONFIG_SPL_STACK                0x187FF0
22 #define CONFIG_SPL_BSS_START_ADDR       0x00180000
23 #define CONFIG_SPL_BSS_MAX_SIZE         SZ_8K
24 #define CONFIG_SYS_SPL_MALLOC_START     0x42200000
25 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_512K
26 #define CONFIG_SYS_SPL_PTE_RAM_BASE     0x41580000
27
28 /* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
29 #define CONFIG_MALLOC_F_ADDR            0x182000
30 /* For RAW image gives a error info not panic */
31 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
32
33
34 #define CONFIG_POWER_PFUZE100
35 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
36 #endif
37
38 /* ENET1 Config */
39 #if defined(CONFIG_CMD_NET)
40 #define CONFIG_FEC_MXC_PHYADDR          0
41
42 #define PHY_ANEG_TIMEOUT                20000
43
44 #endif
45
46 #define ENV_MEM_LAYOUT_SETTINGS \
47         "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
48         "kernel_addr_r=0x42000000\0" \
49         "fdt_addr_r=0x48000000\0" \
50         "fdtoverlay_addr_r=0x49000000\0" \
51         "ramdisk_addr_r=0x48080000\0" \
52         "scriptaddr=0x40000000\0" \
53         "pxefile_addr_r=0x40100000\0"
54
55 #define BOOT_TARGET_DEVICES(func) \
56         func(MMC, mmc, 0) \
57         func(MMC, mmc, 1) \
58         func(USB, usb, 0) \
59         func(DHCP, dhcp, na) \
60         func(PXE, pxe, 0)
61
62 #include <config_distro_bootcmd.h>
63
64 /* Initial environment variables */
65 #define CONFIG_EXTRA_ENV_SETTINGS               \
66         "image=Image\0" \
67         "console=ttymxc2,115200\0" \
68         "boot_fdt=try\0" \
69         "fdtfile=freescale/imx8mq-kontron-pitx-imx8m.dtb\0" \
70         "dfu_alt_info=mmc 0=flash-bin raw 0x42 0x1000 mmcpart 1\0"\
71         ENV_MEM_LAYOUT_SETTINGS \
72         BOOTENV
73
74
75 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
76 #define CONFIG_SYS_INIT_RAM_SIZE        0x80000
77 #define CONFIG_SYS_INIT_SP_OFFSET \
78         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
79 #define CONFIG_SYS_INIT_SP_ADDR \
80         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
81
82 #define CONFIG_SYS_SDRAM_BASE           0x40000000
83 #define PHYS_SDRAM                      0x40000000
84 #define PHYS_SDRAM_SIZE                 0xC0000000 /* 3GB DDR */
85
86 #define CONFIG_MXC_UART_BASE            UART_BASE_ADDR(3)
87
88 #define CONFIG_SYS_FSL_USDHC_NUM        2
89 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
90
91 #endif