blob: 69aa79bafc88b9141682c169b4e7097b22325edf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Mike Looijmans2d48caa2016-09-30 08:13:13 +02002/*
3 * (C) Copyright 2014 Topic Embedded Products
4 *
5 * Configuration for Zynq Evaluation and Development Board - Miami
6 * See zynq-common.h for Zynq common configs
Mike Looijmans2d48caa2016-09-30 08:13:13 +02007 */
8
9#ifndef __CONFIG_TOPIC_MIAMI_H
10#define __CONFIG_TOPIC_MIAMI_H
11
Mike Looijmans2d48caa2016-09-30 08:13:13 +020012
13/* Speed up boot time by ignoring the environment which we never used */
Mike Looijmans2d48caa2016-09-30 08:13:13 +020014
15#include "zynq-common.h"
16
17/* Fixup settings */
18#undef CONFIG_ENV_SIZE
19#define CONFIG_ENV_SIZE 0x8000
20#undef CONFIG_ENV_OFFSET
21#define CONFIG_ENV_OFFSET 0x80000
22
23/* SPL settings */
24#undef CONFIG_SPL_ETH_SUPPORT
25#undef CONFIG_SYS_SPI_U_BOOT_OFFS
26#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x20000
27#undef CONFIG_SPL_MAX_FOOTPRINT
28#define CONFIG_SPL_MAX_FOOTPRINT CONFIG_SYS_SPI_U_BOOT_OFFS
29#define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
30
31/* sspi command isn't useful */
32#undef CONFIG_CMD_SPI
33
34/* No useful gpio */
35#undef CONFIG_ZYNQ_GPIO
36#undef CONFIG_CMD_GPIO
37
38/* No falcon support */
39#undef CONFIG_SPL_OS_BOOT
40#undef CONFIG_SPL_FPGA_SUPPORT
41
42/* FPGA commands that we don't use */
Mike Looijmans2d48caa2016-09-30 08:13:13 +020043
44/* Extras */
Mike Looijmans2d48caa2016-09-30 08:13:13 +020045#undef CONFIG_SYS_MEMTEST_START
46#define CONFIG_SYS_MEMTEST_START 0
47#undef CONFIG_SYS_MEMTEST_END
48#define CONFIG_SYS_MEMTEST_END 0x18000000
49
50/* Faster flash, ours may run at 108 MHz */
Mike Looijmans2d48caa2016-09-30 08:13:13 +020051#undef CONFIG_SPI_FLASH_WINBOND
Mike Looijmans2d48caa2016-09-30 08:13:13 +020052
53/* Setup proper boot sequences for Miami boards */
54
55#if defined(CONFIG_USB)
56# define EXTRA_ENV_USB \
57 "usbreset=i2c dev 1 && i2c mw 41 1 ff && i2c mw 41 3 fe && "\
58 "i2c mw 41 1 fe && i2c mw 41 1 ff\0" \
59 "usbboot=run usbreset && if usb start; then " \
60 "echo Booting from USB... && " \
61 "if load usb 0 0x1900000 ${bootscript}; then "\
62 "source 0x1900000; fi; " \
63 "load usb 0 ${kernel_addr} ${kernel_image} && " \
64 "load usb 0 ${devicetree_addr} ${devicetree_image} && " \
65 "load usb 0 ${ramdisk_load_address} ${ramdisk_image} && " \
66 "bootm ${kernel_addr} ${ramdisk_load_address} "\
67 "${devicetree_addr}; " \
68 "fi\0"
69 /* Note that addresses here should match the addresses in the env */
70# undef DFU_ALT_INFO
71# define DFU_ALT_INFO \
72 "dfu_alt_info=" \
73 "uImage ram 0x2080000 0x500000;" \
74 "devicetree.dtb ram 0x2000000 0x20000;" \
75 "uramdisk.image.gz ram 0x4000000 0x10000000\0" \
76 "dfu_ram=run usbreset && dfu 0 ram 0\0" \
77 "thor_ram=run usbreset && thordown 0 ram 0\0"
78#else
79# define EXTRA_ENV_USB
80#endif
81
82#undef CONFIG_PREBOOT
83
84#undef CONFIG_EXTRA_ENV_SETTINGS
85#define CONFIG_EXTRA_ENV_SETTINGS \
86 "kernel_image=uImage\0" \
87 "kernel_addr=0x2080000\0" \
88 "ramdisk_image=uramdisk.image.gz\0" \
89 "ramdisk_load_address=0x4000000\0" \
90 "devicetree_image=devicetree.dtb\0" \
91 "devicetree_addr=0x2000000\0" \
92 "bitstream_image=fpga.bin\0" \
93 "bootscript=autorun.scr\0" \
94 "loadbit_addr=0x100000\0" \
95 "loadbootenv_addr=0x2000000\0" \
Mike Looijmans1520fe62017-01-17 15:28:24 +010096 "kernel_size=0x440000\0" \
Mike Looijmans2d48caa2016-09-30 08:13:13 +020097 "devicetree_size=0x10000\0" \
98 "boot_size=0xF00000\0" \
99 "fdt_high=0x20000000\0" \
100 "initrd_high=0x20000000\0" \
101 "mmc_loadbit=echo Loading bitstream from SD/MMC/eMMC to RAM.. && " \
102 "mmcinfo && " \
103 "load mmc 0 ${loadbit_addr} ${bitstream_image} && " \
104 "fpga load 0 ${loadbit_addr} ${filesize}\0" \
105 "qspiboot=echo Booting from QSPI flash... && " \
106 "sf probe && " \
107 "sf read ${devicetree_addr} 0xA0000 ${devicetree_size} && " \
108 "sf read ${kernel_addr} 0xC0000 ${kernel_size} && " \
109 "bootm ${kernel_addr} - ${devicetree_addr}\0" \
110 "sdboot=if mmcinfo; then " \
111 "setenv bootargs console=ttyPS0,115200 " \
112 "root=/dev/mmcblk0p2 rw rootfstype=ext4 " \
113 "rootwait quiet ; " \
114 "load mmc 0 ${kernel_addr} ${kernel_image}&& " \
115 "load mmc 0 ${devicetree_addr} ${devicetree_image}&& " \
116 "bootm ${kernel_addr} - ${devicetree_addr}; " \
117 "fi\0" \
118 EXTRA_ENV_USB \
119 DFU_ALT_INFO
120
121#undef CONFIG_BOOTCOMMAND
122#define CONFIG_BOOTCOMMAND "if mmcinfo; then " \
123 "if fatload mmc 0 0x1900000 ${bootscript}; then source 0x1900000; " \
124 "fi; fi; run $modeboot"
125#undef CONFIG_DISPLAY_BOARDINFO
126
Mike Looijmans2d48caa2016-09-30 08:13:13 +0200127#endif /* __CONFIG_TOPIC_MIAMI_H */