[PATCH 1/2] dt-bindings: usb: Add ITE IT885x support

From: Amber Kao

Date: Mon Jun 15 2026 - 01:56:49 EST


Add device tree binding documentation for the ITE IT885x.
The ITE IT885x is an I2C-based USB Type-C Power Delivery (PD) controller.

Cc: Yaode Fang <Yaode.Fang@xxxxxxxxxx>
Cc: Jeson Yang <jeson.yang@xxxxxxxxxx>
Cc: Bling Chiang <Bling.Chiang@xxxxxxxxxx>
Cc: Eric Su <Eric.Su@xxxxxxxxxx>
Cc: Doreen Lin <doreen.lin@xxxxxxxxxx>
Signed-off-by: Amber Kao <amber.kao@xxxxxxxxxx>
---
.../devicetree/bindings/usb/ite,itepd-it885x.yaml | 109 +++++++++++++++++++++
MAINTAINERS | 11 +++
2 files changed, 120 insertions(+)

diff --git a/Documentation/devicetree/bindings/usb/ite,itepd-it885x.yaml b/Documentation/devicetree/bindings/usb/ite,itepd-it885x.yaml
new file mode 100644
index 000000000000..59e4eaa32ff1
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/ite,itepd-it885x.yaml
@@ -0,0 +1,109 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/usb/ite,itepd-it885x.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ITE IT885x USB Type-C Power Delivery Controller
+
+maintainers:
+ - Jeson Yang <jeson.yang@xxxxxxxxxx>
+
+description:
+ The ITE IT885x is an I2C-based USB Type-C Power Delivery (PD) controller.
+
+properties:
+ compatible:
+ const: ite,itepd-it885x
+
+ reg:
+ maxItems: 1
+
+ gpios:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ wakeup-source: true
+
+ pinctrl-names:
+ minItems: 1
+
+ pinctrl-0: true
+
+ '#address-cells':
+ const: 1
+
+ '#size-cells':
+ const: 0
+
+patternProperties:
+ "^connector(@[0-9a-f]+)?$":
+ $ref: /schemas/connector/usb-connector.yaml#
+ unevaluatedProperties: false
+
+required:
+ - compatible
+ - reg
+ - interrupts
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+ #include <dt-bindings/interrupt-controller/irq.h>
+
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ itepd@40 {
+ compatible = "ite,itepd-it885x";
+ reg = <0x40>;
+ gpios = <&tlmm 129 GPIO_ACTIVE_LOW>;
+ interrupts-extended = <&tlmm 129 IRQ_TYPE_EDGE_FALLING>;
+ wakeup-source;
+
+ pinctrl-names = "default";
+ pinctrl-0 = <&itepd_int_default>;
+
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ connector@0 {
+ compatible = "usb-c-connector";
+ reg = <0>;
+ label = "USB-C";
+ power-role = "dual";
+ data-role = "dual";
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+ endpoint {
+ remote-endpoint = <&eud_con>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+ endpoint {
+ remote-endpoint = <&redriver_ss_out>;
+ };
+ };
+
+ port@2 {
+ reg = <2>;
+ endpoint {
+ remote-endpoint = <&fsa4480_sbu_mux>;
+ };
+ };
+ };
+ };
+ };
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index 461a3eed6129..94afe3729059 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -13720,6 +13720,17 @@ T: git https://gitlab.freedesktop.org/drm/misc/kernel.git
F: Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
F: drivers/gpu/drm/bridge/ite-it66121.c

+ITE IT885x TYPE-C PD CONTROLLER DRIVER
+M: Amber Kao <amber.kao@xxxxxxxxxx>
+M: Jeson Yang <jeson.yang@xxxxxxxxxx>
+R: Yaode Fang <Yaode.Fang@xxxxxxxxxx>
+R: Bling Chiang <Bling.Chiang@xxxxxxxxxx>
+R: Eric Su <Eric.Su@xxxxxxxxxx>
+R: Doreen Lin <doreen.lin@xxxxxxxxxx>
+L: linux-usb@xxxxxxxxxxxxxxx
+S: Maintained
+F: Documentation/devicetree/bindings/usb/ite,itepd-it885x.yaml
+
IVTV VIDEO4LINUX DRIVER
M: Andy Walls <awalls@xxxxxxxxxxxxxxxx>
L: linux-media@xxxxxxxxxxxxxxx

--
2.53.0