33b101daf9970efac6d21f4024ae5af4c402f792
[platform/kernel/u-boot.git] / include / configs / imx8mp_dhcom_pdk2.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2022 Marek Vasut <marex@denx.de>
4  */
5
6 #ifndef __IMX8MP_DHCOM_PDK2_H
7 #define __IMX8MP_DHCOM_PDK2_H
8
9 #include <linux/sizes.h>
10 #include <linux/stringify.h>
11 #include <asm/arch/imx-regs.h>
12
13 #define CONFIG_SYS_BOOTM_LEN            SZ_128M
14
15 #define CONFIG_SYS_MONITOR_LEN          SZ_1M
16
17 #ifdef CONFIG_SPL_BUILD
18 #define CONFIG_SYS_SPL_MALLOC_START     0x4c000000
19 #define CONFIG_SYS_SPL_MALLOC_SIZE      SZ_512K /* 512 kiB */
20
21 /* For RAW image gives a error info not panic */
22 #define CONFIG_SPL_ABORT_ON_RAW_IMAGE
23
24 #endif
25
26 /* Link Definitions */
27 #define CONFIG_SYS_INIT_RAM_ADDR        0x40000000
28 #define CONFIG_SYS_INIT_RAM_SIZE        0x200000
29
30 #define CONFIG_SYS_SDRAM_BASE           0x40000000
31 #define PHYS_SDRAM                      0x40000000
32 #define PHYS_SDRAM_SIZE                 0x20000000 /* Minimum 512 MiB DDR */
33
34 #define CONFIG_MXC_UART_BASE            UART1_BASE_ADDR
35
36 /* PHY needs a longer autonegotiation timeout after reset */
37 #define PHY_ANEG_TIMEOUT                20000
38 #define FEC_QUIRK_ENET_MAC
39
40 /* USDHC */
41 #define CONFIG_SYS_FSL_USDHC_NUM        2
42 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
43
44 #if !defined(CONFIG_SPL_BUILD)
45
46 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
47         "altbootcmd=run bootcmd ; reset\0"                              \
48         "bootlimit=3\0"                                                 \
49         "kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"         \
50         "pxefile_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"        \
51         "ramdisk_addr_r=0x58000000\0"                                   \
52         "scriptaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0"            \
53         /* Give slow devices beyond USB HUB chance to come up. */       \
54         "usb_pgood_delay=2000\0"                                        \
55         "dfu_alt_info="                                                 \
56                 /* RAM block at DRAM offset 256..768 MiB */             \
57                 "ram ram0=ram ram 0x50000000 0x20000000&"               \
58                 /* 16 MiB SPI NOR */                                    \
59                 "mtd nor0=sf raw 0x0 0x1000000\0"                       \
60         "dh_update_env="                                                \
61                 "setenv dh_update_env true ; saveenv ; saveenv\0"       \
62         "dh_update_sf_gen_fcfb="                                        \
63                 "setexpr sfaddr ${loadaddr} - 0x1000 ; "                \
64                 "base ${sfaddr} ; "                                     \
65                 "mw 0 0 0x400 ; "                                       \
66                 "mw 0x400 0x42464346 ; "                                \
67                 "mw 0x404 0x56010000 ; "                                \
68                 "mw 0x40c 00030300 ; "                                  \
69                 "mw 0x444 0x00020101 ; "                                \
70                 "mw 0x450 0x10000000 ; "                                \
71                 "mw 0x480 0x0818040b ; "                                \
72                 "mw 0x484 0x24043008 ; "                                \
73                 "mw 0x5c0 0x100 ; "                                     \
74                 "mw 0x5c4 0x10000 ; "                                   \
75                 "base 0\0"                                              \
76         "dh_update_sf_write_data="                                      \
77                 "setexpr sfaddr ${loadaddr} - 0x1000 ; "                \
78                 "setexpr filesize ${filesize} + 0x1000 ; "              \
79                 "sf probe && sf update ${sfaddr} 0 ${filesize}\0"       \
80         "dh_update_sd_to_sf="                                           \
81                 "load mmc 0:1 ${loadaddr} boot/flash.bin && "           \
82                 "run dh_update_sf_gen_fcfb dh_update_sf_write_data\0"   \
83         "dh_update_emmc_to_sf="                                         \
84                 "load mmc 1:1 ${loadaddr} boot/flash.bin && "           \
85                 "run dh_update_sf_gen_fcfb dh_update_sf_write_data\0"   \
86         BOOTENV
87
88 #define BOOT_TARGET_DEVICES(func)       \
89         func(MMC, mmc, 0)               \
90         func(MMC, mmc, 1)               \
91         func(USB, usb, 0)               \
92         func(DHCP, dhcp, na)
93
94 #include <config_distro_bootcmd.h>
95
96 #endif
97
98 #endif