mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-23 15:41:22 +02:00
Initial support for the Renesas Gray Hawk CPU and BreakOut boards. The arch/arm/dts/r8a779h0-gray-hawk-cpu.dtsi is extended version of: https://lore.kernel.org/linux-renesas-soc/b657402113267acd57aece0b4c681b707e704455.1706194617.git.geert+renesas@glider.be/ The version currenty submitted upstream lacks functionality which is present in this series. Once the upstream support implements that missing functionality, these DTs will be updated to match. Signed-off-by: Hai Pham <hai.pham.ud@renesas.com>
26 lines
624 B
Plaintext
26 lines
624 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
/*
|
|
* Device Tree Source for the Gray Hawk CPU and BreakOut boards
|
|
*
|
|
* Copyright (C) 2023 Renesas Electronics Corp.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include "r8a779h0-gray-hawk-cpu.dtsi"
|
|
#include "r8a779h0-gray-hawk-csi-dsi.dtsi"
|
|
#include "r8a779h0-gray-hawk-ethernet.dtsi"
|
|
|
|
/ {
|
|
model = "Renesas Gray Hawk CPU and Breakout boards based on r8a779h0";
|
|
compatible = "renesas,gray-hawk-breakout", "renesas,gray-hawk-cpu", "renesas,r8a779h0";
|
|
};
|
|
|
|
&i2c0 {
|
|
eeprom@51 {
|
|
compatible = "rohm,br24g01", "atmel,24c01";
|
|
label = "breakout-board";
|
|
reg = <0x51>;
|
|
pagesize = <8>;
|
|
};
|
|
};
|