mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	This option specifies the default Device Tree used for the run-time configuration of U-Boot. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Simon Glass <sjg@chromium.org> Cc: Stephen Warren <swarren@nvidia.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Cc: Michal Simek <michal.simek@xilinx.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			586 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			586 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * (C) Copyright 2013 Xilinx, Inc.
 | 
						|
 *
 | 
						|
 * Configuration for Zynq Evaluation and Development Board - ZedBoard
 | 
						|
 * See zynq-common.h for Zynq common configs
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier:	GPL-2.0+
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __CONFIG_ZYNQ_ZED_H
 | 
						|
#define __CONFIG_ZYNQ_ZED_H
 | 
						|
 | 
						|
#define CONFIG_SYS_SDRAM_SIZE		(512 * 1024 * 1024)
 | 
						|
 | 
						|
#define CONFIG_ZYNQ_SERIAL_UART1
 | 
						|
#define CONFIG_ZYNQ_GEM0
 | 
						|
#define CONFIG_ZYNQ_GEM_PHY_ADDR0	0
 | 
						|
 | 
						|
#define CONFIG_SYS_NO_FLASH
 | 
						|
 | 
						|
#define CONFIG_ZYNQ_USB
 | 
						|
#define CONFIG_ZYNQ_SDHCI0
 | 
						|
#define CONFIG_ZYNQ_BOOT_FREEBSD
 | 
						|
 | 
						|
#include <configs/zynq-common.h>
 | 
						|
 | 
						|
#endif /* __CONFIG_ZYNQ_ZED_H */
 |