brintos

brintos / linux-shallow public Read only

0
0
Text · 733 B · 77fbb2c Raw
43 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2 3%YAML 1.24---5$id: http://devicetree.org/schemas/serial/esp,esp32-acm.yaml#6$schema: http://devicetree.org/meta-schemas/core.yaml#7 8title: ESP32S3 ACM gadget controller9 10maintainers:11  - Max Filippov <jcmvbkbc@gmail.com>12 13description:14  Fixed function USB CDC-ACM gadget controller of the Espressif ESP32S3 SoC.15 16allOf:17  - $ref: serial.yaml#18 19properties:20  compatible:21    const: esp,esp32s3-acm22 23  reg:24    maxItems: 125 26  interrupts:27    maxItems: 128 29required:30  - compatible31  - reg32  - interrupts33 34additionalProperties: false35 36examples:37  - |38    serial@60038000 {39      compatible = "esp,esp32s3-acm";40      reg = <0x60038000 0x1000>;41      interrupts = <96 3 0>;42    };43