2019-05-07 19:38:48 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/bus/allwinner,sun8i-a23-rsb.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Allwinner A23 RSB Device Tree Bindings
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Chen-Yu Tsai <wens@csie.org>
|
2019-12-09 09:32:48 +00:00
|
|
|
- Maxime Ripard <mripard@kernel.org>
|
2019-05-07 19:38:48 +00:00
|
|
|
|
|
|
|
properties:
|
|
|
|
"#address-cells":
|
|
|
|
const: 1
|
|
|
|
|
|
|
|
"#size-cells":
|
|
|
|
const: 0
|
|
|
|
|
|
|
|
compatible:
|
|
|
|
oneOf:
|
|
|
|
- const: allwinner,sun8i-a23-rsb
|
|
|
|
- items:
|
2021-01-27 17:24:54 +00:00
|
|
|
- enum:
|
|
|
|
- allwinner,sun8i-a83t-rsb
|
|
|
|
- allwinner,sun50i-h616-rsb
|
2020-04-16 00:55:48 +00:00
|
|
|
- const: allwinner,sun8i-a23-rsb
|
2019-05-07 19:38:48 +00:00
|
|
|
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
interrupts:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clocks:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
resets:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
clock-frequency:
|
|
|
|
minimum: 1
|
|
|
|
maximum: 20000000
|
|
|
|
|
|
|
|
patternProperties:
|
|
|
|
"^.*@[0-9a-fA-F]+$":
|
2019-07-03 20:17:06 +00:00
|
|
|
type: object
|
2019-05-07 19:38:48 +00:00
|
|
|
properties:
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
required:
|
|
|
|
- reg
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
|
|
|
- interrupts
|
|
|
|
- clocks
|
|
|
|
- resets
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
|
|
|
rsb@1f03400 {
|
|
|
|
compatible = "allwinner,sun8i-a23-rsb";
|
|
|
|
reg = <0x01f03400 0x400>;
|
|
|
|
interrupts = <0 39 4>;
|
|
|
|
clocks = <&apb0_gates 3>;
|
|
|
|
clock-frequency = <3000000>;
|
|
|
|
resets = <&apb0_rst 3>;
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
|
|
|
pmic@3e3 {
|
|
|
|
reg = <0x3e3>;
|
|
|
|
|
|
|
|
/* ... */
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
additionalProperties: false
|