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
|
|
|
|
2019-08-16 16:19:21 +08:00
|
|
|
# Common fields for USB controllers
|
2017-10-15 23:09:49 +08:00
|
|
|
|
2019-08-22 07:10:12 +08:00
|
|
|
include: base.yaml
|
2017-10-15 23:09:49 +08:00
|
|
|
|
2021-07-20 18:28:03 +08:00
|
|
|
bus: usb
|
|
|
|
|
2019-06-08 00:12:49 +08:00
|
|
|
properties:
|
2018-07-20 01:25:56 +08:00
|
|
|
maximum-speed:
|
|
|
|
type: string
|
2019-08-28 06:22:01 +08:00
|
|
|
required: false
|
2018-07-20 01:25:56 +08:00
|
|
|
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:
|
2019-08-28 06:22:01 +08:00
|
|
|
required: true
|
2020-01-23 00:35:22 +08:00
|
|
|
|
|
|
|
vbus-gpios:
|
|
|
|
type: phandle-array
|
|
|
|
required: false
|
|
|
|
description: Control VBUS via GPIO pin.
|