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