mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 21:44:15 +00:00

This patch appends properties in DT bindings to differentiate between FVP and FPGA. The related macros are no longer used, so they are removed. This patch contains minor improvement for adding labels in device nodes. Change-Id: I8d708bb7a8a9a0ed32b806abcb4e7651daadf5e6 Signed-off-by: Leo Yan <leo.yan@arm.com>
36 lines
769 B
Text
36 lines
769 B
Text
/*
|
|
* Copyright (c) 2023-2024, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#define GIC_CTRL_ADDR 30000000
|
|
#define GIC_GICR_OFFSET 0x1000000
|
|
#define UART_OFFSET 0x10000
|
|
/* 1440x3200@120 framebuffer */
|
|
#define VENCODER_TIMING_CLK 836000000
|
|
#define VENCODER_TIMING \
|
|
clock-frequency = <VENCODER_TIMING_CLK>; \
|
|
hactive = <1440>; \
|
|
vactive = <3200>; \
|
|
hfront-porch = <136>; \
|
|
hback-porch = <296>; \
|
|
hsync-len = <160>; \
|
|
vfront-porch = <3>; \
|
|
vback-porch = <217>; \
|
|
vsync-len = <10>
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = "serial0:38400n8";
|
|
};
|
|
|
|
ethernet: ethernet@18000000 {
|
|
compatible = "smsc,lan9115";
|
|
phy-mode = "mii";
|
|
};
|
|
|
|
mmci: mmci@1c050000 {
|
|
non-removable;
|
|
};
|
|
};
|