1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 3 %YAML 1.2 4 --- 5 $id: http://devicetree.org/schemas/serial/esp,esp32-acm.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 8 title: ESP32S3 ACM gadget controller 9 10 maintainers: 11 - Max Filippov <jcmvbkbc@gmail.com> 12 13 description: 14 Fixed function USB CDC-ACM gadget controller of the Espressif ESP32S3 SoC. 15 16 allOf: 17 - $ref: serial.yaml# 18 19 properties: 20 compatible: 21 const: esp,esp32s3-acm 22 23 reg: 24 maxItems: 1 25 26 interrupts: 27 maxItems: 1 28 29 required: 30 - compatible 31 - reg 32 - interrupts 33 34 additionalProperties: false 35 36 examples: 37 - | 38 serial@60038000 { 39 compatible = "esp,esp32s3-acm"; 40 reg = <0x60038000 0x1000>; 41 interrupts = <96 3 0>; 42 };
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.