blob: e2ebb2f1004eff80184d2fab10e16b1d4409d12a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Config file for BR Zynq board
*
* Copyright (C) 2024
* B&R Industrial Automation GmbH - http://www.br-automation.com/
*/
#ifndef __CONFIG_BRZYNQ_H__
#define __CONFIG_BRZYNQ_H__
/* Increase PHY_ANEG_TIMEOUT since the FPGA needs some setup time */
#if IS_ENABLED(CONFIG_SPL_FPGA)
#define PHY_ANEG_TIMEOUT 8000
#endif
/* Use top mapped SRAM */
#define CFG_SYS_INIT_RAM_ADDR 0xFFFF0000
#define CFG_SYS_INIT_RAM_SIZE 0x2000
#endif /* __CONFIG_BRZYNQ_H__ */
|