]> Git Repo - J-u-boot.git/blame - include/configs/imx8mm_data_modul_edm_sbc.h
configs: remove FEC_QUIRK_ENET_MAC from imx8m configs
[J-u-boot.git] / include / configs / imx8mm_data_modul_edm_sbc.h
CommitLineData
bba6cc70
MV
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2022 Marek Vasut <[email protected]>
4 */
5
6#ifndef __IMX8MM_DATA_MODUL_EDM_SBC_H
7#define __IMX8MM_DATA_MODUL_EDM_SBC_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_SPL_MAX_SIZE (148 * 1024)
16#define CONFIG_SYS_MONITOR_LEN SZ_1M
17
18#define CONFIG_SPL_STACK 0x920000
19#ifdef CONFIG_SPL_BUILD
20#define CONFIG_SPL_BSS_START_ADDR 0x910000
21#define CONFIG_SPL_BSS_MAX_SIZE SZ_8K /* 8 kiB */
22#define CONFIG_SYS_SPL_MALLOC_START 0x42200000
23#define CONFIG_SYS_SPL_MALLOC_SIZE SZ_16M /* 16 MiB */
24
25#define CONFIG_MALLOC_F_ADDR 0x930000
26
27/* For RAW image gives a error info not panic */
28#define CONFIG_SPL_ABORT_ON_RAW_IMAGE
29
30#endif
31
32/* Link Definitions */
33#define CONFIG_SYS_INIT_RAM_ADDR 0x40000000
34#define CONFIG_SYS_INIT_RAM_SIZE 0x200000
35#define CONFIG_SYS_INIT_SP_OFFSET \
36 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
37#define CONFIG_SYS_INIT_SP_ADDR \
38 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
39
40#define CONFIG_SYS_SDRAM_BASE 0x40000000
41#define PHYS_SDRAM 0x40000000
42#define PHYS_SDRAM_SIZE 0x40000000 /* Minimum 1 GiB DDR */
43
44#define CONFIG_MXC_UART_BASE UART3_BASE_ADDR
45
46/* Monitor Command Prompt */
47#define CONFIG_SYS_CBSIZE 2048
48#define CONFIG_SYS_MAXARGS 64
49#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
50#define CONFIG_SYS_PBSIZE \
51 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
52
53/* PHY needs a longer autonegotiation timeout after reset */
54#define PHY_ANEG_TIMEOUT 20000
bba6cc70
MV
55
56/* USDHC */
57#define CONFIG_SYS_FSL_USDHC_NUM 2
58#define CONFIG_SYS_FSL_ESDHC_ADDR 0
59
60#if !defined(CONFIG_SPL_BUILD)
61
62#define CONFIG_EXTRA_ENV_SETTINGS \
63 "altbootcmd=setenv devpart 2 && run bootcmd ; reset\0" \
64 "bootlimit=3\0" \
65 "devtype=mmc\0" \
66 "devpart=1\0" \
67 /* Give slow devices beyond USB HUB chance to come up. */ \
68 "usb_pgood_delay=2000\0" \
69 "dfu_alt_info=" \
70 /* RAM block at DRAM offset 256..768 MiB */ \
71 "ram ram0=ram ram 0x50000000 0x20000000&" \
72 /* 16 MiB SPI NOR */ \
73 "mtd nor0=sf raw 0x0 0x1000000\0" \
74 "dmo_preboot=" \
75 "sf probe ; " /* Scan for SPI NOR, needed by DFU */ \
76 "run dmo_usb_start_hub ; " \
77 /* Attempt to start USB and Network console */ \
78 "run dmo_usb_cdc_acm_start ; " \
79 "run dmo_netconsole_start\0" \
80 "dmo_update_env=" \
81 "setenv dmo_update_env true ; saveenv ; saveenv\0" \
82 "dmo_usb_cdc_acm_start=" \
83 "if test \"${dmo_usb_cdc_acm_enabled}\" = \"true\" ; then "\
84 /* Ungate IMX8MM_CLK_USB1_CTRL_ROOT */ \
85 "mw 0x303844d0 3 ; " \
86 /* Read USBNC_n_PHY_STATUS BIT(4) VBUS_VLD */ \
87 "setexpr.l usbnc_n_phy_status *0x32e4023c \\\\& 0x8 ; " \
88 /* If USB OTG has valid VBUS, enable CDC ACM */ \
89 "if test \"${usbnc_n_phy_status}\" -eq 8 ; then "\
90 "usb start && " \
91 "setenv stderr ${stderr},usbacm && " \
92 "setenv stdout ${stdout},usbacm && " \
93 "setenv stdin ${stdin},usbacm ; " \
94 "fi ; " \
95 "fi\0" \
96 "dmo_usb_start_hub=" \
97 "i2c dev 1 ; " \
98 /* Reset the USB USB */ \
99 "gpio clear GPIO5_2 ; sleep 0.01 ; " /* t1 > 1us */ \
100 "gpio set GPIO5_2 ; sleep 0.01 ; " /* t5 > 3us */ \
101 /* Write chunks of descriptor into the USB HUB */ \
102 "mw.l 0x7e1000 0x14042417 ; mw.l 0x7e1004 0x9b0bb325 ; "\
103 "mw.l 0x7e1008 0x00000220 ; mw.l 0x7e100c 0x01320100 ; "\
104 "mw.l 0x7e1010 0x00003232 ; mw.l 0x7e1014 0x4d000909 ; "\
105 "i2c write 0x7e1000 0x2c 0x00 0x18 -s ; " \
106 "mw.l 0x7e1000 0x6300690f ; mw.l 0x7e1004 0x6f007200 ; "\
107 "mw.l 0x7e1008 0x68006300 ; mw.l 0x7e100c 0x70006900 ; "\
108 "i2c write 0x7e1000 0x2c 0x18 0x10 -s ; " \
109 "mw.l 0x7e1000 0x53005511 ; mw.l 0x7e1004 0x32004200 ; "\
110 "mw.l 0x7e1008 0x31003500 ; mw.l 0x7e100c 0x42003400 ; "\
111 "mw.l 0x7e1010 0x00006900 ; " \
112 "i2c write 0x7e1000 0x2c 0x54 0x12 -s ; " \
113 "mw.l 0x7e1000 0x00000101 ; " \
114 "i2c write 0x7e1000 0x2c 0xff 0x2 -s\0" \
115 "dmo_netconsole_start=" \
116 "if test \"${dmo_netconsole_enabled}\" = \"true\" ; then "\
117 "setenv autoload false && " \
118 "dhcp && " \
119 "setenv autoload && " \
120 "setenv ncip ${serverip} && " \
121 "setenv stderr ${stderr},nc && " \
122 "setenv stdout ${stdout},nc && " \
123 "setenv stdin ${stdin},nc ; " \
124 "fi"
125
126#endif
127
128#endif
This page took 0.063785 seconds and 4 git commands to generate.