mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 10:15:54 +00:00
51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
|
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
||
|
%YAML 1.2
|
||
|
---
|
||
|
$id: http://devicetree.org/schemas/mfd/qcom,tcsr.yaml#
|
||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||
|
|
||
|
title: Qualcomm Top Control and Status Register
|
||
|
|
||
|
maintainers:
|
||
|
- Bjorn Andersson <bjorn.andersson@linaro.org>
|
||
|
|
||
|
description:
|
||
|
Qualcomm devices have a set of registers that provide various control and
|
||
|
status functions for their peripherals.
|
||
|
|
||
|
properties:
|
||
|
compatible:
|
||
|
oneOf:
|
||
|
- items:
|
||
|
- enum:
|
||
|
- qcom,tcsr-apq8064
|
||
|
- qcom,tcsr-apq8084
|
||
|
- qcom,tcsr-ipq8064
|
||
|
- qcom,tcsr-mdm9615
|
||
|
- qcom,tcsr-msm8660
|
||
|
- qcom,tcsr-msm8916
|
||
|
- qcom,tcsr-msm8953
|
||
|
- qcom,tcsr-msm8960
|
||
|
- qcom,tcsr-msm8974
|
||
|
- const: syscon
|
||
|
- items:
|
||
|
- const: qcom,tcsr-ipq6018
|
||
|
- const: syscon
|
||
|
- const: simple-mfd
|
||
|
|
||
|
reg:
|
||
|
maxItems: 1
|
||
|
|
||
|
required:
|
||
|
- compatible
|
||
|
- reg
|
||
|
|
||
|
additionalProperties: false
|
||
|
|
||
|
examples:
|
||
|
- |
|
||
|
syscon@1a400000 {
|
||
|
compatible = "qcom,tcsr-msm8960", "syscon";
|
||
|
reg = <0x1a400000 0x100>;
|
||
|
};
|