blob: af140bbef2b69e25ed6e918e1b1bbe35e5b925c2 [file] [log] [blame]
Leo Yan815f5502024-04-24 09:57:28 +01001/*
2 * Copyright (c) 2023-2024, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Leo Yan815f5502024-04-24 09:57:28 +01007#define GIC_CTRL_ADDR 30000000
8#define GIC_GICR_OFFSET 0x1000000
9#define UART_OFFSET 0x10000
10/* 1440x3200@120 framebuffer */
Jagdish Gediya9bf91b22024-04-19 13:16:36 +000011#define LCD_TIMING_CLK 836000000
12#define LCD_TIMING \
13 clock-frequency = <LCD_TIMING_CLK>; \
Leo Yan815f5502024-04-24 09:57:28 +010014 hactive = <1440>; \
15 vactive = <3200>; \
16 hfront-porch = <136>; \
17 hback-porch = <296>; \
18 hsync-len = <160>; \
19 vfront-porch = <3>; \
20 vback-porch = <217>; \
21 vsync-len = <10>
Leo Yane0c24102024-04-15 11:35:15 +010022
23/ {
24 chosen {
25 stdout-path = "serial0:38400n8";
26 };
27
Vishnu Satheesh72be4f22024-04-23 15:08:08 +010028#if TC_FPGA_ANDROID_IMG_IN_RAM
29 reserved-memory {
30 phram@0x880000000 {
31 /*
32 * starting from 0x8_8000_0000 reserve some memory
33 * android image will be side loaded to this location
34 */
35 reg = <0x8 0x80000000 HI(ANDROID_FS_SIZE) LO(ANDROID_FS_SIZE)>
36 no-map;
37 };
38 };
39#endif /* TC_FPGA_ANDROID_IMG_IN_RAM */
40
Jackson Cooper-Driver61418972024-04-24 10:27:58 +010041 ethernet: ethernet@ETHERNET_ADDR {
Leo Yane0c24102024-04-15 11:35:15 +010042 compatible = "smsc,lan9115";
43 phy-mode = "mii";
44 };
45
Jackson Cooper-Driver61418972024-04-24 10:27:58 +010046 mmci: mmci@MMC_ADDR {
Leo Yane0c24102024-04-15 11:35:15 +010047 non-removable;
48 };
49};