28 lines
558 B
YAML
28 lines
558 B
YAML
# Copyright (c) 2017 I-SENSE group of ICCS
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Common fields for I2C controllers
|
|
|
|
include: base.yaml
|
|
|
|
bus: i2c
|
|
|
|
properties:
|
|
"#address-cells":
|
|
required: true
|
|
const: 1
|
|
"#size-cells":
|
|
required: true
|
|
const: 0
|
|
clock-frequency:
|
|
type: int
|
|
description: Initial clock frequency in Hz
|
|
sq-size:
|
|
type: int
|
|
default: 4
|
|
description: Size of the submission queue for blocking requests
|
|
cq-size:
|
|
type: int
|
|
default: 4
|
|
description: Size of the completion queue for blocking requests
|