]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/zynq.h
Licenses: introduce SPDX Unique Lincense Identifiers
[people/ms/u-boot.git] / include / configs / zynq.h
CommitLineData
f22651cf
MS
1/*
2 * (C) Copyright 2012 Michal Simek <monstr@monstr.eu>
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#ifndef __CONFIG_ZYNQ_H
24#define __CONFIG_ZYNQ_H
25
26#define CONFIG_ARMV7 /* This is an ARM V7 CPU core */
27#define CONFIG_ZYNQ
28
29/* CPU clock */
30#define CONFIG_CPU_FREQ_HZ 800000000
31#define CONFIG_SYS_HZ 1000
32
33/* Ram */
34#define CONFIG_NR_DRAM_BANKS 1
35#define CONFIG_SYS_TEXT_BASE 0
36#define CONFIG_SYS_SDRAM_BASE 0
37#define CONFIG_SYS_SDRAM_SIZE 0x40000000
38#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
39#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x1000)
40
41/* The following table includes the supported baudrates */
42#define CONFIG_SYS_BAUDRATE_TABLE \
43 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400}
44
45#define CONFIG_BAUDRATE 115200
46
47/* XPSS Serial driver */
f22651cf
MS
48#define CONFIG_ZYNQ_SERIAL
49#define CONFIG_ZYNQ_SERIAL_BASEADDR0 0xE0001000
50#define CONFIG_ZYNQ_SERIAL_BAUDRATE0 CONFIG_BAUDRATE
51#define CONFIG_ZYNQ_SERIAL_CLOCK0 50000000
52
f22651cf
MS
53/* Ethernet driver */
54#define CONFIG_NET_MULTI
55#define CONFIG_ZYNQ_GEM
7193653e 56#define CONFIG_ZYNQ_GEM0
117cd4cc 57#define CONFIG_ZYNQ_GEM_PHY_ADDR0 7
f22651cf 58
293eb33f
MS
59#define CONFIG_ZYNQ_SDHCI
60#define CONFIG_ZYNQ_SDHCI0
61
62/* MMC */
63#if defined(CONFIG_ZYNQ_SDHCI0) || defined(CONFIG_ZYNQ_SDHCI1)
64# define CONFIG_MMC
65# define CONFIG_GENERIC_MMC
66# define CONFIG_SDHCI
67# define CONFIG_ZYNQ_SDHCI
68# define CONFIG_CMD_MMC
69# define CONFIG_CMD_FAT
70# define CONFIG_SUPPORT_VFAT
71# define CONFIG_CMD_EXT2
72# define CONFIG_DOS_PARTITION
73#endif
74
8934f784
MS
75#define CONFIG_ZYNQ_I2C0
76
77/* I2C */
78#if defined(CONFIG_ZYNQ_I2C0) || defined(CONFIG_ZYNQ_I2C1)
79# define CONFIG_CMD_I2C
80# define CONFIG_ZYNQ_I2C
81# define CONFIG_HARD_I2C
82# define CONFIG_SYS_I2C_SPEED 100000
83# define CONFIG_SYS_I2C_SLAVE 1
84#endif
85
7dca54f8
MS
86#if defined(CONFIG_ZYNQ_DCC)
87# define CONFIG_ARM_DCC
88# define CONFIG_CPU_V6 /* Required by CONFIG_ARM_DCC */
89#endif
90
d5dae85f
MS
91/* Enable the PL to be downloaded */
92#define CONFIG_FPGA
93#define CONFIG_FPGA_XILINX
94#define CONFIG_FPGA_ZYNQPL
95#define CONFIG_CMD_FPGA
96
f22651cf
MS
97#define CONFIG_BOOTP_SERVERIP
98#define CONFIG_BOOTP_BOOTPATH
99#define CONFIG_BOOTP_GATEWAY
100#define CONFIG_BOOTP_HOSTNAME
101#define CONFIG_BOOTP_MAY_FAIL
102
103/* MII and Phylib */
104#define CONFIG_MII
105#define CONFIG_SYS_FAULT_ECHO_LINK_DOWN
106#define CONFIG_PHYLIB
107#define CONFIG_PHY_MARVELL
108
109/* Environment */
110#define CONFIG_ENV_IS_NOWHERE
111#define CONFIG_ENV_SIZE 0x10000
112
113#define CONFIG_SYS_NO_FLASH
114
115#define CONFIG_SYS_MALLOC_LEN 0x400000
116#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_SDRAM_BASE
117#define CONFIG_SYS_INIT_RAM_SIZE CONFIG_SYS_MALLOC_LEN
118#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
119 CONFIG_SYS_INIT_RAM_SIZE - \
120 GENERATED_GBL_DATA_SIZE)
121
122#define CONFIG_SYS_PROMPT "U-Boot> "
123#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
124#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
125 sizeof(CONFIG_SYS_PROMPT) + 16)
126
127#define CONFIG_SYS_LOAD_ADDR 0
128#define CONFIG_SYS_MAXARGS 15 /* max number of command args */
129#define CONFIG_SYS_LONGHELP
130#define CONFIG_AUTO_COMPLETE
131#define CONFIG_CMDLINE_EDITING
132
133#define CONFIG_SYS_HUSH_PARSER
134#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
135
136/* OF */
137#define CONFIG_FIT
138#define CONFIG_OF_LIBFDT
139
140/* Commands */
141#include <config_cmd_default.h>
142
143#define CONFIG_CMD_PING
144#define CONFIG_CMD_DHCP
145#define CONFIG_CMD_MII
146
147#endif /* __CONFIG_ZYNQ_H */