mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
fdcdde567c
Zybo contains on board HDMI that's why enable EDID. Doing it via config because zynq i2c driver hasn't been moved to DM yet and enabling via Kconfig requires DM_I2C. This will be moved that driver is moved to DM. Signed-off-by: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
28 lines
621 B
C
28 lines
621 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_NO_FLASH
|
|
|
|
#define CONFIG_ZYNQ_USB
|
|
#define CONFIG_ZYNQ_I2C0
|
|
#define CONFIG_ZYNQ_I2C1
|
|
#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
|
|
#define CONFIG_DISPLAY
|
|
#define CONFIG_I2C_EDID
|
|
|
|
/* Define ZYBO PS Clock Frequency to 50MHz */
|
|
#define CONFIG_ZYNQ_PS_CLK_FREQ 50000000UL
|
|
|
|
#include <configs/zynq-common.h>
|
|
|
|
#endif /* __CONFIG_ZYNQ_ZYBO_H */
|