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