mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 10:18:38 +00:00
fe5eddbf98
ZC770 is a complete development board based on the Xilinx Zynq-7000 All Programmable SoC, similar to ZC70x board but which has four different daughter cards, like XM010, XM011, XM012 and XM013 ZC770 XM012: - 1GB DDR3 - 64MiB Numonyx NOR flash - USB-UART Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Cc: Stefan Roese <sr@denx.de>
39 lines
866 B
C
39 lines
866 B
C
/*
|
|
* (C) Copyright 2013 Xilinx, Inc.
|
|
*
|
|
* Configuration settings for the Xilinx Zynq ZC770 board.
|
|
* See zynq-common.h for Zynq common configs
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_ZYNQ_ZC770_H
|
|
#define __CONFIG_ZYNQ_ZC770_H
|
|
|
|
#define CONFIG_SYS_SDRAM_SIZE (1024 * 1024 * 1024)
|
|
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
#if defined(CONFIG_ZC770_XM010)
|
|
# define CONFIG_ZYNQ_SERIAL_UART1
|
|
# define CONFIG_ZYNQ_GEM0
|
|
# define CONFIG_ZYNQ_GEM_PHY_ADDR0 7
|
|
# define CONFIG_ZYNQ_SDHCI0
|
|
# define CONFIG_ZYNQ_SPI
|
|
|
|
#elif defined(CONFIG_ZC770_XM012)
|
|
# define CONFIG_ZYNQ_SERIAL_UART1
|
|
# undef CONFIG_SYS_NO_FLASH
|
|
|
|
#elif defined(CONFIG_ZC770_XM013)
|
|
# define CONFIG_ZYNQ_SERIAL_UART0
|
|
# define CONFIG_ZYNQ_GEM1
|
|
# define CONFIG_ZYNQ_GEM_PHY_ADDR1 7
|
|
|
|
#else
|
|
# define CONFIG_ZYNQ_SERIAL_UART0
|
|
#endif
|
|
|
|
#include <configs/zynq-common.h>
|
|
|
|
#endif /* __CONFIG_ZYNQ_ZC770_H */
|