mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

Convert binding doc extcon-usb-gpio.txt to yaml format to fix below warning: arch/arm64/boot/dts/freescale/imx8mp-msc-sm2s-ep1.dtb: /extcon-usb0: failed to match any schema with compatible: ['linux,extcon-usb-gpio'] Additional change: - rename id-gpio to id-gpios - rename vbus-gpio to vbus-gpios Link: https://lore.kernel.org/lkml/20240812201754.3830198-1-Frank.Li@nxp.com/ Signed-off-by: Frank Li <Frank.Li@nxp.com> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
38 lines
810 B
YAML
38 lines
810 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/extcon/linux,extcon-usb-gpio.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: USB GPIO Extcon device
|
|
|
|
maintainers:
|
|
- Frank Li <Frank.Li@nxp.com>
|
|
|
|
description:
|
|
This is a virtual device used to generate USB cable states from the USB ID pin
|
|
connected to a GPIO pin.
|
|
|
|
properties:
|
|
compatible:
|
|
const: linux,extcon-usb-gpio
|
|
|
|
id-gpios:
|
|
description: gpio for USB ID pin. See gpio binding.
|
|
vbus-gpios:
|
|
description: gpio for USB VBUS pin.
|
|
|
|
required:
|
|
- compatible
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
extcon_usb1 {
|
|
compatible = "linux,extcon-usb-gpio";
|
|
id-gpios = <&gpio6 1 GPIO_ACTIVE_HIGH>;
|
|
};
|