Add cpufreq cycle counter register information to devicetree in a separate node for use by driver. This will initialize walt for Monaco. Change-Id: Iddbbd81168d49e0aea4076f18669ffb6a5d342a8 Signed-off-by: Ruchira Revdekar <quic_rrevdeka@quicinc.com>
19 lines
326 B
Plaintext
19 lines
326 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
&soc {
|
|
walt {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges;
|
|
|
|
qcom,cycle-cntr {
|
|
compatible = "qcom,cycle-cntr-hw";
|
|
reg = <0xf521000 0x1400>;
|
|
reg-names = "freq-domain0";
|
|
};
|
|
};
|
|
};
|