mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-16 16:23:14 +00:00
a14c250625
This copies in some devicetree files from the official Linux kernel tree, v6.6-rc6. It covers a board with the Allwinner T113s SoC, which shares many devices with its RISC-V sibling, the Allwinner D1(s). This is the reason for the core .dtsi files landing in the arch/riscv directory. We are only adjusting the include path to accommodate for the differences in the U-Boot build system. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com>
15 lines
394 B
Text
15 lines
394 B
Text
// SPDX-License-Identifier: (GPL-2.0+ or MIT)
|
|
// Copyright (C) 2021-2022 Samuel Holland <samuel@sholland.org>
|
|
|
|
/ {
|
|
soc {
|
|
dsp_wdt: watchdog@1700400 {
|
|
compatible = "allwinner,sun20i-d1-wdt";
|
|
reg = <0x1700400 0x20>;
|
|
interrupts = <SOC_PERIPHERAL_IRQ(122) IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&dcxo>, <&rtc CLK_OSC32K>;
|
|
clock-names = "hosc", "losc";
|
|
status = "reserved";
|
|
};
|
|
};
|
|
};
|