blob: d77e4b4e100999fe07f680963c243d960d19b8c6 [file] [log] [blame]
Heiko Thiery16c73692022-01-31 17:30:45 +01001/* 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
Heiko Thiery16c73692022-01-31 17:30:45 +010010#define CONFIG_SYS_MONITOR_LEN (512 * SZ_1K)
Heiko Thiery16c73692022-01-31 17:30:45 +010011
Sughosh Ganu741ef862022-04-15 11:29:34 +053012/* GUID for capsule updatable firmware image */
13#define KONTRON_PITX_IMX8M_FIT_IMAGE_GUID \
14 EFI_GUID(0xc898e959, 0x5b1f, 0x4e6d, 0x88, 0xe0, \
15 0x40, 0xd4, 0x5c, 0xca, 0x13, 0x99)
16
Heiko Thiery16c73692022-01-31 17:30:45 +010017#ifdef CONFIG_SPL_BUILD
Heiko Thiery16c73692022-01-31 17:30:45 +010018#define CONFIG_SYS_SPL_PTE_RAM_BASE 0x41580000
19
20/* malloc f used before GD_FLG_FULL_MALLOC_INIT set */
21#define CONFIG_MALLOC_F_ADDR 0x182000
22/* For RAW image gives a error info not panic */
Heiko Thiery16c73692022-01-31 17:30:45 +010023
24
25#define CONFIG_POWER_PFUZE100
26#define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
27#endif
28
Heiko Thiery16c73692022-01-31 17:30:45 +010029/* ENET1 Config */
30#if defined(CONFIG_CMD_NET)
Heiko Thiery16c73692022-01-31 17:30:45 +010031#define CONFIG_FEC_MXC_PHYADDR 0
Heiko Thiery16c73692022-01-31 17:30:45 +010032
Heiko Thiery16c73692022-01-31 17:30:45 +010033#define PHY_ANEG_TIMEOUT 20000
34
35#endif
36
37#define ENV_MEM_LAYOUT_SETTINGS \
Heiko Thieryfee2d972022-02-16 13:25:15 +010038 "loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
39 "kernel_addr_r=0x42000000\0" \
40 "fdt_addr_r=0x48000000\0" \
41 "fdtoverlay_addr_r=0x49000000\0" \
42 "ramdisk_addr_r=0x48080000\0" \
43 "scriptaddr=0x40000000\0" \
44 "pxefile_addr_r=0x40100000\0"
Heiko Thiery16c73692022-01-31 17:30:45 +010045
46#define BOOT_TARGET_DEVICES(func) \
47 func(MMC, mmc, 0) \
48 func(MMC, mmc, 1) \
49 func(USB, usb, 0) \
50 func(DHCP, dhcp, na) \
51 func(PXE, pxe, 0)
52
53#include <config_distro_bootcmd.h>
54
55/* Initial environment variables */
56#define CONFIG_EXTRA_ENV_SETTINGS \
57 "image=Image\0" \
58 "console=ttymxc2,115200\0" \
59 "boot_fdt=try\0" \
60 "fdtfile=freescale/imx8mq-kontron-pitx-imx8m.dtb\0" \
61 "dfu_alt_info=mmc 0=flash-bin raw 0x42 0x1000 mmcpart 1\0"\
62 ENV_MEM_LAYOUT_SETTINGS \
63 BOOTENV
64
65
66#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
67#define CONFIG_SYS_INIT_RAM_SIZE 0x80000
Heiko Thiery16c73692022-01-31 17:30:45 +010068
69#define CONFIG_SYS_SDRAM_BASE 0x40000000
70#define PHYS_SDRAM 0x40000000
71#define PHYS_SDRAM_SIZE 0xC0000000 /* 3GB DDR */
72
Marek Vasut52b6b482022-04-24 23:44:03 +020073#define CONFIG_MXC_UART_BASE UART_BASE_ADDR(3)
Heiko Thiery16c73692022-01-31 17:30:45 +010074
75#define CONFIG_SYS_FSL_USDHC_NUM 2
76#define CONFIG_SYS_FSL_ESDHC_ADDR 0
77
Heiko Thiery16c73692022-01-31 17:30:45 +010078#endif