mirror of
https://github.com/Evolution-X-Devices/kernel_xiaomi_sm8450-devicetrees
synced 2026-02-01 08:51:30 +00:00
Add devicetree bindings snapshot to the devicetree project.
This snapshot is taken as of the
'commit 5fba1b18cfc72e264e5f3ce49020ed322aa6ac9f ("Merge 5.6-rc3
into android-mainline")' of the kernel project.
Change-Id: Ia087ab2b7d4a2616ea446a69683a8b5b821d0448
27 lines
795 B
Plaintext
27 lines
795 B
Plaintext
Qualcomm LPASS Clock Controller Binding
|
|
-----------------------------------------------
|
|
|
|
Required properties :
|
|
- compatible : shall contain "qcom,sdm845-lpasscc"
|
|
- #clock-cells : from common clock binding, shall contain 1.
|
|
- reg : shall contain base register address and size,
|
|
in the order
|
|
Index-0 maps to LPASS_CC register region
|
|
Index-1 maps to LPASS_QDSP6SS register region
|
|
|
|
Optional properties :
|
|
- reg-names : register names of LPASS domain
|
|
"cc", "qdsp6ss".
|
|
|
|
Example:
|
|
|
|
The below node has to be defined in the cases where the LPASS peripheral loader
|
|
would bring the subsystem out of reset.
|
|
|
|
lpasscc: clock-controller@17014000 {
|
|
compatible = "qcom,sdm845-lpasscc";
|
|
reg = <0x17014000 0x1f004>, <0x17300000 0x200>;
|
|
reg-names = "cc", "qdsp6ss";
|
|
#clock-cells = <1>;
|
|
};
|