Re: [PATCH 2/2] arm64: dts: amlogic: add the type-c controller on Radxa Zero 2
From: Krzysztof Kozlowski <krzk@kernel.org>
Date: 2026-01-15 14:29:42
Also in:
linux-amlogic, linux-devicetree, lkml
From: Krzysztof Kozlowski <krzk@kernel.org>
Date: 2026-01-15 14:29:42
Also in:
linux-amlogic, linux-devicetree, lkml
On 14/01/2026 23:48, Ricardo Pardini via B4 Relay wrote:
};
+/* Also exposed on the 40-pin header: SDA pin 3, SCL pin 5 */
+&i2c3 {
+ pinctrl-0 = <&i2c3_sda_a_pins>, <&i2c3_sck_a_pins>;
+ pinctrl-names = "default";
+ status = "okay";
+
+ fusb302@22 {Node names should be generic. See also an explanation and list of examples (not exhaustive) in DT specification: https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation If you cannot find a name matching your device, please check in kernel sources for similar cases or you can grow the spec (via pull request to DT spec repo).
+ compatible = "fcs,fusb302"; + reg = <0x22>; + + pinctrl-0 = <&fusb302_irq_pins>; + pinctrl-names = "default"; + interrupt-parent = <&gpio_intc>; + interrupts = <13 IRQ_TYPE_LEVEL_LOW>; + + vbus-supply = <&ao_5v>; + + status = "okay";
Not needed or was it disabled anywhere? Best regards, Krzysztof