mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
332d185c37
Created a new header file for zcu104 RevC board and added below configurations to use MAC address from EEPROM. CONFIG_ZYNQ_GEM_EEPROM_ADDR CONFIG_ZYNQ_EEPROM_BUS Added CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET=0x20 to xilinx_zynqmp_zcu104_revC_defconfig Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com> Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
17 lines
408 B
C
17 lines
408 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration for Xilinx ZynqMP zcu104
|
|
*
|
|
* (C) Copyright 2018 Xilinx, Inc.
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_ZYNQMP_ZCU104_REVC_H
|
|
#define __CONFIG_ZYNQMP_ZCU104_REVC_H
|
|
|
|
#include <configs/xilinx_zynqmp_zcu104.h>
|
|
|
|
#define CONFIG_ZYNQ_GEM_EEPROM_ADDR 0x54
|
|
#define CONFIG_ZYNQ_EEPROM_BUS 1
|
|
|
|
#endif /* __CONFIG_ZYNQMP_ZCU104_REVC_H */
|