2017-10-15 17:09:49 +02:00
|
|
|
# Copyright (c) 2018, I-SENSE group of ICCS
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2019-06-19 00:03:49 +02:00
|
|
|
|
dts: edtlib: Sanity-check the final merged binding only
Sanity-checking each !included file separately was inherited from the
old scripts. It makes it messy to check that combinations of fields make
sense, e.g. to check 'const:' or 'default:' against 'type:', since those
fields might come from different files (this is handy, since it makes
sense to just add/change a 'const:' value, for example).
Drop the requirement that each !included file is a complete binding in
itself, and treat them as binding fragments instead. Only check the
final merged binding.
This also means that !included files no longer need to have a
'description:' or 'title:' (those have always been unused for !included
files), so remove those, and add comments that explain what the
fragments are for instead. That should demystify bindings a bit.
Also fix the descriptions of i2c.yaml, i2s.yaml, spi.yaml, and
uart.yaml. They're for controllers, not devices. These are copy-paste
error from the corresponding device .yaml files.
Piggyback some indentation consistency nits in binding-template.yaml.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-08-15 14:06:15 +02:00
|
|
|
# Common fields that give the number of endpoints supported by the USB hardware
|
2017-10-15 17:09:49 +02:00
|
|
|
|
2019-08-22 01:10:12 +02:00
|
|
|
include: usb-controller.yaml
|
2017-10-15 17:09:49 +02:00
|
|
|
|
|
|
|
properties:
|
2023-01-03 20:21:25 +01:00
|
|
|
num-bidir-endpoints:
|
|
|
|
type: int
|
|
|
|
required: true
|
|
|
|
description: |
|
|
|
|
Number of bi-directional endpoints supported by hardware
|
|
|
|
(including EP0)
|
2017-10-15 17:09:49 +02:00
|
|
|
|
2023-01-03 20:21:25 +01:00
|
|
|
num-in-endpoints:
|
|
|
|
type: int
|
|
|
|
description: |
|
|
|
|
Number of IN endpoints supported by hardware
|
|
|
|
(including EP0 IN)
|
2017-10-15 17:09:49 +02:00
|
|
|
|
2023-01-03 20:21:25 +01:00
|
|
|
num-out-endpoints:
|
|
|
|
type: int
|
|
|
|
description: |
|
|
|
|
Number of OUT endpoints supported by hardware
|
|
|
|
(including EP0 OUT)
|