You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
769 B
36 lines
769 B
/*
|
|
* 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;
|
|
};
|
|
};
|
|
|