mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +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>
19 lines
456 B
C
19 lines
456 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (C) 2021 Samuel Holland <samuel@sholland.org>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_CLK_SUN20I_D1_R_CCU_H_
|
|
#define _DT_BINDINGS_CLK_SUN20I_D1_R_CCU_H_
|
|
|
|
#define CLK_R_AHB 0
|
|
|
|
#define CLK_BUS_R_TIMER 2
|
|
#define CLK_BUS_R_TWD 3
|
|
#define CLK_BUS_R_PPU 4
|
|
#define CLK_R_IR_RX 5
|
|
#define CLK_BUS_R_IR_RX 6
|
|
#define CLK_BUS_R_RTC 7
|
|
#define CLK_BUS_R_CPUCFG 8
|
|
|
|
#endif /* _DT_BINDINGS_CLK_SUN20I_D1_R_CCU_H_ */
|