Merge tag 'tpm-030822' of https://source.denx.de/u-boot/custodians/u-boot-tpm
[platform/kernel/u-boot.git] / include / configs / m53menlo.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2
3 /*
4  * Menlosystems M53Menlo configuration
5  * Copyright (C) 2012-2017 Marek Vasut <marex@denx.de>
6  * Copyright (C) 2014-2017 Olaf Mandel <o.mandel@menlosystems.com>
7  */
8
9 #ifndef __M53MENLO_CONFIG_H__
10 #define __M53MENLO_CONFIG_H__
11
12 #include <asm/arch/imx-regs.h>
13
14 /*
15  * Memory configurations
16  */
17 #define PHYS_SDRAM_1                    CSD0_BASE_ADDR
18 #define PHYS_SDRAM_1_SIZE               (gd->bd->bi_dram[0].size)
19 #define PHYS_SDRAM_2                    CSD1_BASE_ADDR
20 #define PHYS_SDRAM_2_SIZE               (gd->bd->bi_dram[1].size)
21 #define PHYS_SDRAM_SIZE                 (gd->ram_size)
22
23 #define CONFIG_SYS_SDRAM_BASE           (PHYS_SDRAM_1)
24 #define CONFIG_SYS_INIT_RAM_ADDR        (IRAM_BASE_ADDR)
25 #define CONFIG_SYS_INIT_RAM_SIZE        (IRAM_SIZE)
26
27 /*
28  * U-Boot general configurations
29  */
30
31 /*
32  * Serial Driver
33  */
34 #define CONFIG_MXC_UART_BASE            UART1_BASE
35
36 /*
37  * MMC Driver
38  */
39 #ifdef CONFIG_CMD_MMC
40 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
41 #define CONFIG_SYS_FSL_ESDHC_NUM        1
42 #endif
43
44 /*
45  * NAND
46  */
47 #ifdef CONFIG_CMD_NAND
48 #define CONFIG_SYS_MAX_NAND_DEVICE      1
49 #define CONFIG_SYS_NAND_BASE            NFC_BASE_ADDR_AXI
50 #define CONFIG_MXC_NAND_REGS_BASE       NFC_BASE_ADDR_AXI
51 #define CONFIG_MXC_NAND_IP_REGS_BASE    NFC_BASE_ADDR
52 #define CONFIG_SYS_NAND_LARGEPAGE
53 #define CONFIG_MXC_NAND_HWECC
54 #endif
55
56 /*
57  * Ethernet on SOC (FEC)
58  */
59 #ifdef CONFIG_CMD_NET
60 #define CONFIG_FEC_MXC_PHYADDR          0x0
61 #endif
62
63 #define CONFIG_SYS_RTC_BUS_NUM          1 /* I2C2 */
64
65 /*
66  * RTC
67  */
68 #ifdef CONFIG_CMD_DATE
69 #define CONFIG_SYS_I2C_RTC_ADDR         0x68
70 #define CONFIG_SYS_M41T11_BASE_YEAR     2000
71 #endif
72
73 /*
74  * USB
75  */
76 #ifdef CONFIG_CMD_USB
77 #define CONFIG_MXC_USB_PORT             1
78 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
79 #define CONFIG_MXC_USB_FLAGS            0
80 #endif
81
82 /*
83  * LCD
84  */
85 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  (2 << 20)
86
87 /* LVDS display */
88 #define CONFIG_SYS_LDB_CLOCK                    33260000
89 #define CONFIG_IMX_VIDEO_SKIP
90
91 /* IIM Fuses */
92 #define CONFIG_FSL_IIM
93
94 /* Watchdog */
95
96 /*
97  * NAND SPL
98  */
99
100 #define CONFIG_SYS_NAND_SIZE            (256 * 1024 * 1024)
101
102 /*
103  * Extra Environments
104  */
105 #define CONFIG_HOSTNAME         "m53menlo"
106
107 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
108         "consdev=ttymxc0\0"                                             \
109         "baudrate=115200\0"                                             \
110         "bootscript=boot.scr\0"                                         \
111         "mmcdev=0\0"                                                    \
112         "mmcpart=1\0"                                                   \
113         "rootpath=/srv/\0"                                              \
114         "kernel_addr_r=0x72000000\0"                                    \
115         "netdev=eth0\0"                                                 \
116         "splashsource=mmc_fs\0"                                         \
117         "splashfile=boot/usplash.bmp.gz\0"                              \
118         "splashimage=0x88000000\0"                                      \
119         "splashpos=m,m\0"                                               \
120         "altbootcmd="                                                   \
121                 "if test ${mmcpart} -eq 1 ; then "                      \
122                         "setenv mmcpart 2 ; "                           \
123                 "else "                                                 \
124                         "setenv mmcpart 1 ; "                           \
125                 "fi ; "                                                 \
126                 "boot\0"                                                \
127         "stdout=serial,vidconsole\0"                                    \
128         "stderr=serial,vidconsole\0"                                    \
129         "addcons="                                                      \
130                 "setenv bootargs ${bootargs} "                          \
131                 "console=${consdev},${baudrate}\0"                      \
132         "addip="                                                        \
133                 "setenv bootargs ${bootargs} "                          \
134                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
135                 ":${hostname}:${netdev}:off\0"                          \
136         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
137         "addmisc="                                                      \
138                 "setenv bootargs ${bootargs} ${miscargs}\0"             \
139         "addargs=run addcons addmisc addmtd\0"                          \
140         "mmcload="                                                      \
141                 "mmc rescan || reset ; load mmc ${mmcdev}:${mmcpart} "  \
142                 "${kernel_addr_r} ${bootfile} || reset\0"               \
143         "miscargs=nohlt panic=1\0"                                      \
144         "mmcargs=setenv bootargs root=/dev/mmcblk0p${mmcpart} rw "      \
145                 "rootwait\0"                                            \
146         "mmc_mmc="                                                      \
147                 "run mmcload mmcargs addargs || reset ; "               \
148                 "bootm ${kernel_addr_r} ; reset\0"                      \
149         "netload=tftp ${kernel_addr_r} ${hostname}/${bootfile}\0"       \
150         "net_nfs="                                                      \
151                 "run netload nfsargs addip addargs ; "                  \
152                 "bootm ${kernel_addr_r}\0"                              \
153         "nfsargs="                                                      \
154                 "setenv bootargs root=/dev/nfs rw "                     \
155                 "nfsroot=${serverip}:${rootpath}${hostname},v3,tcp\0"   \
156         "try_bootscript="                                               \
157                 "mmc rescan;"                                           \
158                 "if test -e mmc 0:1 ${bootscript} ; then "              \
159                 "if load mmc 0:1 ${kernel_addr_r} ${bootscript};"       \
160                 "then ; "                                               \
161                         "echo Running bootscript... ; "                 \
162                         "source ${kernel_addr_r} ; "                    \
163                 "fi ; "                                                 \
164                 "fi\0"
165
166 #endif  /* __M53MENLO_CONFIG_H__ */