Merge branch 'next' of https://source.denx.de/u-boot/custodians/u-boot-net
[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 #define CONFIG_SYS_INIT_SP_OFFSET \
28         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
29 #define CONFIG_SYS_INIT_SP_ADDR \
30         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
31
32 /*
33  * U-Boot general configurations
34  */
35 #define CONFIG_SYS_CBSIZE       1024            /* Console I/O buffer size */
36 #define CONFIG_SYS_MAXARGS      32              /* Max number of command args */
37 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE
38                                                 /* Boot argument buffer size */
39
40 /*
41  * Serial Driver
42  */
43 #define CONFIG_MXC_UART_BASE            UART1_BASE
44
45 /*
46  * MMC Driver
47  */
48 #ifdef CONFIG_CMD_MMC
49 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
50 #define CONFIG_SYS_FSL_ESDHC_NUM        1
51 #endif
52
53 /*
54  * NAND
55  */
56 #ifdef CONFIG_CMD_NAND
57 #define CONFIG_SYS_MAX_NAND_DEVICE      1
58 #define CONFIG_SYS_NAND_BASE            NFC_BASE_ADDR_AXI
59 #define CONFIG_MXC_NAND_REGS_BASE       NFC_BASE_ADDR_AXI
60 #define CONFIG_MXC_NAND_IP_REGS_BASE    NFC_BASE_ADDR
61 #define CONFIG_SYS_NAND_LARGEPAGE
62 #define CONFIG_MXC_NAND_HWECC
63
64 /* Environment is in NAND */
65 #define CONFIG_ENV_RANGE                (0x00080000) /* 512 KiB */
66 #endif
67
68 /*
69  * Ethernet on SOC (FEC)
70  */
71 #ifdef CONFIG_CMD_NET
72 #define IMX_FEC_BASE                    FEC_BASE_ADDR
73 #define CONFIG_FEC_MXC_PHYADDR          0x0
74 #endif
75
76 #define CONFIG_SYS_RTC_BUS_NUM          1 /* I2C2 */
77
78 /*
79  * RTC
80  */
81 #ifdef CONFIG_CMD_DATE
82 #define CONFIG_SYS_I2C_RTC_ADDR         0x68
83 #define CONFIG_SYS_M41T11_BASE_YEAR     2000
84 #endif
85
86 /*
87  * USB
88  */
89 #ifdef CONFIG_CMD_USB
90 #define CONFIG_MXC_USB_PORT             1
91 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
92 #define CONFIG_MXC_USB_FLAGS            0
93 #endif
94
95 /*
96  * SATA
97  */
98 #ifdef CONFIG_CMD_SATA
99 #define CONFIG_DWC_AHSATA_PORT_ID       0
100 #define CONFIG_DWC_AHSATA_BASE_ADDR     SATA_BASE_ADDR
101 #define CONFIG_LBA48
102 #endif
103
104 /*
105  * LCD
106  */
107 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  (2 << 20)
108
109 /* LVDS display */
110 #define CONFIG_SYS_LDB_CLOCK                    33260000
111 #define CONFIG_IMX_VIDEO_SKIP
112
113 /* IIM Fuses */
114 #define CONFIG_FSL_IIM
115
116 /* Watchdog */
117
118 /*
119  * NAND SPL
120  */
121 #define CONFIG_SPL_TARGET               "u-boot-with-nand-spl.imx"
122 #define CONFIG_SPL_PAD_TO               0x8000
123 #define CONFIG_SPL_STACK                0x70004000
124
125 #define CONFIG_SYS_NAND_SIZE            (256 * 1024 * 1024)
126
127 /*
128  * Extra Environments
129  */
130 #define CONFIG_HOSTNAME         "m53menlo"
131
132 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
133         "consdev=ttymxc0\0"                                             \
134         "baudrate=115200\0"                                             \
135         "bootscript=boot.scr\0"                                         \
136         "mmcdev=0\0"                                                    \
137         "mmcpart=1\0"                                                   \
138         "rootpath=/srv/\0"                                              \
139         "kernel_addr_r=0x72000000\0"                                    \
140         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"                            \
141         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"                        \
142         "netdev=eth0\0"                                                 \
143         "splashsource=mmc_fs\0"                                         \
144         "splashfile=boot/usplash.bmp.gz\0"                              \
145         "splashimage=0x88000000\0"                                      \
146         "splashpos=m,m\0"                                               \
147         "altbootcmd="                                                   \
148                 "if test ${mmcpart} -eq 1 ; then "                      \
149                         "setenv mmcpart 2 ; "                           \
150                 "else "                                                 \
151                         "setenv mmcpart 1 ; "                           \
152                 "fi ; "                                                 \
153                 "boot\0"                                                \
154         "stdout=serial,vidconsole\0"                                    \
155         "stderr=serial,vidconsole\0"                                    \
156         "addcons="                                                      \
157                 "setenv bootargs ${bootargs} "                          \
158                 "console=${consdev},${baudrate}\0"                      \
159         "addip="                                                        \
160                 "setenv bootargs ${bootargs} "                          \
161                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
162                 ":${hostname}:${netdev}:off\0"                          \
163         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
164         "addmisc="                                                      \
165                 "setenv bootargs ${bootargs} ${miscargs}\0"             \
166         "addargs=run addcons addmisc addmtd\0"                          \
167         "mmcload="                                                      \
168                 "mmc rescan || reset ; load mmc ${mmcdev}:${mmcpart} "  \
169                 "${kernel_addr_r} ${bootfile} || reset\0"               \
170         "miscargs=nohlt panic=1\0"                                      \
171         "mmcargs=setenv bootargs root=/dev/mmcblk0p${mmcpart} rw "      \
172                 "rootwait\0"                                            \
173         "mmc_mmc="                                                      \
174                 "run mmcload mmcargs addargs || reset ; "               \
175                 "bootm ${kernel_addr_r} ; reset\0"                      \
176         "netload=tftp ${kernel_addr_r} ${hostname}/${bootfile}\0"       \
177         "net_nfs="                                                      \
178                 "run netload nfsargs addip addargs ; "                  \
179                 "bootm ${kernel_addr_r}\0"                              \
180         "nfsargs="                                                      \
181                 "setenv bootargs root=/dev/nfs rw "                     \
182                 "nfsroot=${serverip}:${rootpath}${hostname},v3,tcp\0"   \
183         "try_bootscript="                                               \
184                 "mmc rescan;"                                           \
185                 "if test -e mmc 0:1 ${bootscript} ; then "              \
186                 "if load mmc 0:1 ${kernel_addr_r} ${bootscript};"       \
187                 "then ; "                                               \
188                         "echo Running bootscript... ; "                 \
189                         "source ${kernel_addr_r} ; "                    \
190                 "fi ; "                                                 \
191                 "fi\0"
192
193 #endif  /* __M53MENLO_CONFIG_H__ */