| # |
| # Copyright (c) 2018, I-SENSE group of ICCS |
| # |
| # SPDX-License-Identifier: Apache-2.0 |
| # |
| |
| title: USB Base Structure |
| |
| description: > |
| This binding gives the base structures for all USB devices |
| |
| inherits: |
| !include base.yaml |
| |
| properties: |
| maximum-speed: |
| type: string |
| category: optional |
| description: Configures USB controllers to work up to a specific |
| speed. Valid arguments are "super-speed", "high-speed", |
| "full-speed" and "low-speed". If this is not passed |
| via DT, USB controllers should use their maximum |
| hardware capability. |
| enum: |
| - "low-speed" |
| - "full-speed" |
| - "high-speed" |
| - "super-speed" |
| |
| label: |
| category: required |