1# Copyright (c) 2018, I-SENSE group of ICCS
2# SPDX-License-Identifier: Apache-2.0
3
4# Common fields that give the number of endpoints supported by the USB hardware
5
6include: usb-controller.yaml
7
8properties:
9  num-bidir-endpoints:
10    type: int
11    required: true
12    description: |
13      Number of bi-directional endpoints supported by hardware
14      (including EP0)
15
16  num-in-endpoints:
17    type: int
18    description: |
19      Number of IN endpoints supported by hardware
20      (including EP0 IN)
21
22  num-out-endpoints:
23    type: int
24    description: |
25      Number of OUT endpoints supported by hardware
26      (including EP0 OUT)
27