blob: 9455e4cb5609f4a86d63ecb9aef25638befb27a7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marek Vasut569a1912015-12-01 18:09:52 +01002/*
Marek Vasut94a16b82019-06-27 00:19:31 +02003 * Copyright (C) 2015-2019 Marek Vasut <marex@denx.de>
Marek Vasut569a1912015-12-01 18:09:52 +01004 */
Marek Vasut94a16b82019-06-27 00:19:31 +02005#ifndef __CONFIG_SOFTING_VINING_FPGA_H__
6#define __CONFIG_SOFTING_VINING_FPGA_H__
Marek Vasut569a1912015-12-01 18:09:52 +01007
8#include <asm/arch/base_addr_ac5.h>
9
Marek Vasut569a1912015-12-01 18:09:52 +010010/* Memory configurations */
11#define PHYS_SDRAM_1_SIZE 0x40000000 /* 1GiB on VINING_FPGA */
12
13/* Booting Linux */
Marek Vasut11086192019-06-27 00:19:34 +020014#define CONFIG_SYS_BOOTM_LEN 0x2000000 /* 32 MiB */
Marek Vasut569a1912015-12-01 18:09:52 +010015
Marek Vasut569a1912015-12-01 18:09:52 +010016/* Extra Environment */
Mario Six5bc05432018-03-28 14:38:20 +020017#define CONFIG_HOSTNAME "socfpga_vining_fpga"
Marek Vasut569a1912015-12-01 18:09:52 +010018
19/*
20 * Active LOW GPIO buttons:
21 * A: GPIO 77 ... the button between USB B and ethernet
22 * B: GPIO 78 ... the button between USB A ports
23 *
24 * The logic:
Marek Vasut11086192019-06-27 00:19:34 +020025 * if button B is pressed, boot recovery system after 10 seconds
26 * if force_boottype is set, boot system depending on the value in the
27 * $force_boottype variable after 1 second
28 * if button B is not pressed and force_boottype is not set, boot normal
29 * Linux system after 5 seconds
Marek Vasut569a1912015-12-01 18:09:52 +010030 */
Marek Vasut569a1912015-12-01 18:09:52 +010031
32#define CONFIG_EXTRA_ENV_SETTINGS \
33 "verify=n\0" \
34 "consdev=ttyS0\0" \
35 "baudrate=115200\0" \
36 "bootscript=boot.scr\0" \
37 "ubimtdnr=5\0" \
38 "ubimtd=rootfs\0" \
Marek Vasut11086192019-06-27 00:19:34 +020039 "ubipart=ubi0:vining-fpga-rootfs\0" \
Marek Vasut569a1912015-12-01 18:09:52 +010040 "ubisfcs=1\0" /* Default is flash at CS#1 */ \
41 "netdev=eth0\0" \
Marek Vasut11086192019-06-27 00:19:34 +020042 "hostname=vining_fpga\0" \
Marek Vasut569a1912015-12-01 18:09:52 +010043 "kernel_addr_r=0x10000000\0" \
Marek Vasut11086192019-06-27 00:19:34 +020044 "fdt_addr_r=0x20000000\0" \
45 "fdt_high=0xffffffff\0" \
46 "initrd_high=0xffffffff\0" \
47 "dfu_alt_info=qspi0 sf 0:0;qspi1 sf 0:1\0" \
48 "mtdparts_0_16m=ff705000.spi.0:" /* 16MiB+128MiB SF config */ \
Marek Vasut569a1912015-12-01 18:09:52 +010049 "1m(u-boot)," \
50 "64k(env1)," \
51 "64k(env2)," \
Marek Vasut94a16b82019-06-27 00:19:31 +020052 "256k(softing1)," \
53 "256k(softing2)," \
Marek Vasut569a1912015-12-01 18:09:52 +010054 "-(rcvrfs)\0" /* Recovery */ \
Marek Vasut11086192019-06-27 00:19:34 +020055 "mtdparts_0_256m=ff705000.spi.0:" /* 256MiB(+256MiB) config */ \
56 "1m(u-boot)," \
57 "64k(env1)," \
58 "64k(env2)," \
59 "256k(softing1)," \
60 "256k(softing2)," \
61 "14720k(rcvrfs)," /* Recovery */ \
Marek Vasut25cff0c2022-02-21 06:16:12 +010062 "192m(rootfs)," /* Root */ \
Marek Vasut11086192019-06-27 00:19:34 +020063 "-(userfs)\0" /* User */ \
64 "mtdparts_1_128m=ff705000.spi.1:" /* 16MiB+128MiB SF config */ \
65 "64m(rootfs)," \
Marek Vasut569a1912015-12-01 18:09:52 +010066 "-(userfs)\0" \
Marek Vasut11086192019-06-27 00:19:34 +020067 "mtdparts_1_256m=ff705000.spi.1:" /* 256MiB+256MiB SF config */ \
68 "-(userfs2)\0" \
Marek Vasut569a1912015-12-01 18:09:52 +010069 "update_filename=u-boot-with-spl-dtb.sfp\0" \
70 "update_qspi_offset=0x0\0" \
71 "update_qspi=" /* Update the QSPI firmware */ \
72 "if sf probe ; then " \
73 "if tftp ${update_filename} ; then " \
74 "sf update ${loadaddr} ${update_qspi_offset} ${filesize} ; " \
75 "fi ; " \
76 "fi\0" \
Marek Vasut11086192019-06-27 00:19:34 +020077 "sf_identify=" \
78 "setenv sf_size_0 ; setenv sf_size_1 ; " \
79 "sf probe 0:0 && setenv sf_size_0 ${sf_size} ; " \
80 "sf probe 0:1 && setenv sf_size_1 ${sf_size} ; " \
81 "if test -z \"${sf_size_1}\" ; then " \
82 /* 1x256MiB SF */ \
83 "setenv mtdparts_0 ${mtdparts_0_256m} ; " \
84 "setenv mtdparts_1 ; " \
85 "elif test \"${sf_size_0}\" = \"1000000\" ; then " \
86 /* 16MiB+128MiB SF */ \
87 "setenv mtdparts_0 ${mtdparts_0_16m} ; " \
88 "setenv mtdparts_1 ${mtdparts_1_128m} ; " \
89 "else " \
90 /* 256MiB+256MiB SF */ \
91 "setenv mtdparts_0 ${mtdparts_0_256m} ; " \
92 "setenv mtdparts_1 ${mtdparts_1_256m} ; " \
93 "fi\0" \
Marek Vasut569a1912015-12-01 18:09:52 +010094 "fpga_filename=output_file.rbf\0" \
95 "load_fpga=" /* Load FPGA bitstream */ \
96 "if tftp ${fpga_filename} ; then " \
97 "fpga load 0 $loadaddr $filesize ; " \
98 "bridge enable ; " \
99 "fi\0" \
100 "addcons=" \
101 "setenv bootargs ${bootargs} " \
102 "console=${consdev},${baudrate}\0" \
103 "addip=" \
104 "setenv bootargs ${bootargs} " \
105 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
106 "${netmask}:${hostname}:${netdev}:off\0" \
107 "addmisc=" \
108 "setenv bootargs ${bootargs} ${miscargs}\0" \
109 "addmtd=" \
Marek Vasut11086192019-06-27 00:19:34 +0200110 "if test -z \"${sf_size_1}\" ; then " \
111 "setenv mtdparts \"${mtdparts_0}\" ; " \
112 "else " \
113 "setenv mtdparts \"${mtdparts_0};${mtdparts_1}\" ; " \
114 "fi ; " \
Marek Vasut569a1912015-12-01 18:09:52 +0100115 "setenv bootargs ${bootargs} mtdparts=${mtdparts}\0" \
116 "addargs=run addcons addmtd addmisc\0" \
117 "ubiload=" \
118 "ubi part ${ubimtd} ; ubifsmount ${ubipart} ; " \
119 "ubifsload ${kernel_addr_r} /boot/${bootfile}\0" \
120 "netload=" \
121 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
122 "miscargs=nohlt panic=1\0" \
123 "ubiargs=" \
124 "setenv bootargs ubi.mtd=${ubimtdnr} " \
125 "root=${ubipart} rootfstype=ubifs\0" \
126 "nfsargs=" \
127 "setenv bootargs root=/dev/nfs rw " \
128 "nfsroot=${serverip}:${rootpath},v3,tcp\0" \
129 "ubi_sfsel=" \
130 "if test \"${boottype}\" = \"rcvr\" ; then " \
131 "setenv ubisfcs 0 ; " \
132 "setenv ubimtd rcvrfs ; " \
133 "setenv ubimtdnr 5 ; " \
134 "setenv mtdparts mtdparts=${mtdparts_0} ; " \
135 "setenv mtdids nor0=ff705000.spi.0 ; " \
Marek Vasut11086192019-06-27 00:19:34 +0200136 "setenv ubipart ubi0:vining-fpga-rootfs ; " \
Marek Vasut569a1912015-12-01 18:09:52 +0100137 "else " \
Marek Vasut11086192019-06-27 00:19:34 +0200138 "if test \"${sf_size_0}\" = \"1000000\" ; then "\
139 /* 16MiB+128MiB SF */ \
140 "setenv ubisfcs 1 ; " \
141 "setenv ubimtd rootfs ; " \
142 "setenv ubimtdnr 6 ; " \
143 "setenv mtdparts mtdparts=${mtdparts_1} ; " \
144 "setenv mtdids nor0=ff705000.spi.1 ; " \
145 "setenv ubipart ubi0:vining-fpga-rootfs ; " \
146 "else " \
147 /* 256MiB(+256MiB) SF */ \
148 "setenv ubisfcs 0 ; " \
149 "setenv ubimtd rootfs ; " \
150 "setenv ubimtdnr 6 ; " \
151 "setenv mtdparts mtdparts=${mtdparts_0} ; " \
152 "setenv mtdids nor0=ff705000.spi.0 ; " \
153 "setenv ubipart ubi0:vining-fpga-rootfs ; " \
154 "fi ; " \
Marek Vasut569a1912015-12-01 18:09:52 +0100155 "fi ; " \
156 "sf probe 0:${ubisfcs}\0" \
Marek Vasut11086192019-06-27 00:19:34 +0200157 "boot_kernel=" \
158 "if test -z \"${sf_size_1}\" ; then " /* 1x256MiB SF */ \
159 "imxtract ${kernel_addr_r} fdt@1 ${fdt_addr_r} && " \
160 "fdt addr ${fdt_addr_r} && " \
161 "fdt resize && " \
162 "fdt set /soc/spi@ff705000/n25q00@1 status disabled && " \
163 "bootm ${kernel_addr_r}:kernel@1 - ${fdt_addr_r} ; " \
164 "else " \
165 "bootm ${kernel_addr_r} ; " \
166 "fi\0" \
Marek Vasut569a1912015-12-01 18:09:52 +0100167 "ubi_ubi=" \
Marek Vasut11086192019-06-27 00:19:34 +0200168 "run ubi_sfsel ubiload ubiargs addargs boot_kernel\0" \
Marek Vasut569a1912015-12-01 18:09:52 +0100169 "ubi_nfs=" \
Marek Vasut11086192019-06-27 00:19:34 +0200170 "run ubiload nfsargs addip addargs boot_kernel\0" \
Marek Vasut569a1912015-12-01 18:09:52 +0100171 "net_ubi=" \
Marek Vasut11086192019-06-27 00:19:34 +0200172 "run netload ubiargs addargs boot_kernel\0" \
Marek Vasut569a1912015-12-01 18:09:52 +0100173 "net_nfs=" \
Marek Vasut11086192019-06-27 00:19:34 +0200174 "run netload nfsargs addip addargs boot_kernel\0" \
Marek Vasut569a1912015-12-01 18:09:52 +0100175 "selboot=" /* Select from where to boot. */ \
Marek Vasut11086192019-06-27 00:19:34 +0200176 "run sf_identify ; " \
Marek Vasut569a1912015-12-01 18:09:52 +0100177 "if test \"${bootmode}\" = \"qspi\" ; then " \
178 "led all off ; " \
179 "if test \"${boottype}\" = \"rcvr\" ; then " \
180 "echo \"Booting recovery system\" ; " \
181 "led 3 on ; " /* Bottom RED */ \
182 "fi ; " \
183 "led 1 on ; " /* Top RED */ \
184 "run ubi_ubi ; " \
185 "else echo \"Unsupported boot mode: \"${bootmode} ; " \
186 "fi\0" \
Simon Goldschmidtb94655a2019-07-10 22:09:14 +0200187 "socfpga_legacy_reset_compat=1\0"
Marek Vasut569a1912015-12-01 18:09:52 +0100188
Marek Vasut569a1912015-12-01 18:09:52 +0100189/* The rest of the configuration is shared */
190#include <configs/socfpga_common.h>
191
Marek Vasut94a16b82019-06-27 00:19:31 +0200192#endif /* __CONFIG_SOFTING_VINING_FPGA_H__ */