1# Copyright (c) 2017 I-SENSE group of ICCS
2# SPDX-License-Identifier: Apache-2.0
3
4# Common fields for I2C controllers
5
6include: base.yaml
7
8bus: i2c
9
10properties:
11  "#address-cells":
12    required: true
13    const: 1
14  "#size-cells":
15    required: true
16    const: 0
17  clock-frequency:
18    type: int
19    description: Initial clock frequency in Hz
20  sq-size:
21    type: int
22    default: 4
23    description: Size of the submission queue for blocking requests
24  cq-size:
25    type: int
26    default: 4
27    description: Size of the completion queue for blocking requests
28