mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 00:47:26 +00:00
7bbf825492
Update the ZYBO device tree and enable config options that relate to the added devices in the device tree. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Cc: Albert Aribaud <albert.u.boot@aribaud.net> Cc: Michal Simek <monstr@monstr.eu> Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
27 lines
594 B
C
27 lines
594 B
C
/*
|
|
* (C) Copyright 2012 Xilinx
|
|
* (C) Copyright 2014 Digilent Inc.
|
|
*
|
|
* Configuration for Zynq Development Board - ZYBO
|
|
* See zynq-common.h for Zynq common configs
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_ZYNQ_ZYBO_H
|
|
#define __CONFIG_ZYNQ_ZYBO_H
|
|
|
|
#define CONFIG_SYS_SDRAM_SIZE (512 * 1024 * 1024)
|
|
|
|
#define CONFIG_SYS_NO_FLASH
|
|
|
|
#define CONFIG_ZYNQ_USB
|
|
#define CONFIG_ZYNQ_SDHCI0
|
|
#define CONFIG_ZYNQ_BOOT_FREEBSD
|
|
|
|
/* Define ZYBO PS Clock Frequency to 50MHz */
|
|
#define CONFIG_ZYNQ_PS_CLK_FREQ 50000000UL
|
|
|
|
#include <configs/zynq-common.h>
|
|
|
|
#endif /* __CONFIG_ZYNQ_ZYBO_H */
|