2017-10-15 23:09:49 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018, I-SENSE group of ICCS
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2019-06-19 06:03:49 +08:00
|
|
|
|
2017-10-15 23:09:49 +08:00
|
|
|
title: USB Base Structure
|
|
|
|
|
|
|
|
description: >
|
|
|
|
This binding gives the base structures for all USB devices
|
|
|
|
|
2019-06-08 00:12:49 +08:00
|
|
|
inherits:
|
|
|
|
!include base.yaml
|
2017-10-15 23:09:49 +08:00
|
|
|
|
2019-06-08 00:12:49 +08:00
|
|
|
properties:
|
2018-07-20 01:25:56 +08:00
|
|
|
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.
|
2019-05-14 19:53:45 +08:00
|
|
|
enum:
|
|
|
|
- "low-speed"
|
|
|
|
- "full-speed"
|
|
|
|
- "high-speed"
|
|
|
|
- "super-speed"
|
2018-07-20 01:25:56 +08:00
|
|
|
|
2017-10-15 23:09:49 +08:00
|
|
|
label:
|
|
|
|
category: required
|