Add cpufreq cycle counter register information to devicetree in a separate node for use by associated driver. Change-Id: Idadbf45cfaf1fec6ee9187d28f6b939fceb76bd0 Signed-off-by: Swetha Chikkaboraiah <quic_schikk@quicinc.com>
21 lines
363 B
Plaintext
21 lines
363 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,epss";
|
|
reg = <0x17D91000 0x1000>,
|
|
<0x17D92000 0x1000>;
|
|
reg-names = "freq-domain0",
|
|
"freq-domain1";
|
|
};
|
|
};
|
|
};
|