mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 02:53:36 +02:00
riscv: dts: allwinner: d1: Add LED controller node
Allwinner D1 contains an LED controller. Add its devicetree node, as well as the pinmux used by the reference board design. Acked-by: Guo Ren <guoren@kernel.org> Reviewed-by: Jernej Skrabec <jernej.skrabec@gmail.com> Tested-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Samuel Holland <samuel@sholland.org> Link: https://patch.msgid.link/20231029212738.7871-5-samuel@sholland.org [wens@kernel.org: move "status" to end of properties] Signed-off-by: Chen-Yu Tsai <wens@kernel.org>
This commit is contained in:
parent
4d9af1e12c
commit
c8e75e0cec
|
|
@ -58,6 +58,12 @@ i2c2_pb0_pins: i2c2-pb0-pins {
|
|||
function = "i2c2";
|
||||
};
|
||||
|
||||
/omit-if-no-ref/
|
||||
ledc_pc0_pin: ledc-pc0-pin {
|
||||
pins = "PC0";
|
||||
function = "ledc";
|
||||
};
|
||||
|
||||
/omit-if-no-ref/
|
||||
uart0_pb8_pins: uart0-pb8-pins {
|
||||
pins = "PB8", "PB9";
|
||||
|
|
|
|||
|
|
@ -204,6 +204,21 @@ ccu: clock-controller@2001000 {
|
|||
#reset-cells = <1>;
|
||||
};
|
||||
|
||||
ledc: led-controller@2008000 {
|
||||
compatible = "allwinner,sun20i-d1-ledc",
|
||||
"allwinner,sun50i-a100-ledc";
|
||||
reg = <0x2008000 0x400>;
|
||||
interrupts = <SOC_PERIPHERAL_IRQ(20) IRQ_TYPE_LEVEL_HIGH>;
|
||||
clocks = <&ccu CLK_BUS_LEDC>, <&ccu CLK_LEDC>;
|
||||
clock-names = "bus", "mod";
|
||||
resets = <&ccu RST_BUS_LEDC>;
|
||||
dmas = <&dma 42>;
|
||||
dma-names = "tx";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
gpadc: adc@2009000 {
|
||||
compatible = "allwinner,sun20i-d1-gpadc";
|
||||
reg = <0x2009000 0x400>;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user