Add cpufreq cycle counter register information to devicetree in a separate node for use by associated driver. Change-Id: If1b45003a1ce4faca372db2954293493bc45bbb6 Signed-off-by: Sai Harshini Nimmala <quic_snimmala@quicinc.com>
25 lines
453 B
Plaintext
25 lines
453 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2023 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>,
|
|
<0x17D93000 0x1000>,
|
|
<0x17D94000 0x1000>;
|
|
reg-names = "freq-domain0",
|
|
"freq-domain1",
|
|
"freq-domain2",
|
|
"freq-domain3";
|
|
};
|
|
};
|
|
};
|