Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 511e2b6c authored by Amir Vajid's avatar Amir Vajid
Browse files

devfreq: add support for new memlat design

Update the arm-memlat-mon documentation to support the
new design where multiple monitors are managed by a
single controller.

Change-Id: Ifbc5f8484c38650b93d127fca3fde733752febf4
parent d04ad5cd
Loading
Loading
Loading
Loading
+51 −28
Original line number Diff line number Diff line
@@ -3,21 +3,40 @@ ARM CPU memory latency monitor device
arm-memlat-mon is a device that represents the use of the PMU in ARM cores
to measure the parameters for latency driven memory access patterns.

Required structure:
An instance of arm-memlat-mon must be described in two levels of device nodes.
The first level describes the controller while the second level describes the
monitors that the controller manages. At least one monitor is required per
controller.

[First Level Nodes]
Required properties:
- compatible:			Must be "qcom,arm-memlat-mon" or "qcom,arm-cpu-mon"
- qcom,cpulist:			List of CPU phandles to be monitored in a cluster
- qcom,target-dev:		The DT device that corresponds to this master port
- qcom,core-dev-table:		A mapping table of core frequency to a required bandwidth vote at the
				given core frequency.
- compatible:			Must be "qcom,arm-memlat-cpugrp"
- qcom,cpulist:			List of CPU phandles to be monitored in a
				cluster. Must be a superset of cpulists
				described in second level nodes.

[Second Level Nodes]
Required properties:
- compatible:			Must be "qcom,arm-memlat-mon" or
				"qcom,arm-compute-mon"
- qcom,target-dev:		The DT device that corresponds to this master
				port
- qcom,core-dev-table:		A mapping table of core frequency to a required
				bandwidth vote at the given core frequency.
- qcom,cachemiss-ev:		The cache miss event that this monitor is
				supposed to measure. Optional for compute only.
Optional properties:
- qcom,cachemiss-ev:		The cache miss event that this monitor is supposed to measure.
				Defaults to 0x17 if not specified.
- qcom,inst-ev:			The instruction count event that this monitor is supposed to measure.
				Defaults to 0x08 if not specified.
- qcom,stall-cycle-ev:		The stall cycle count that this monitor is supposed to measure.
				Assumes 100% stall if not specified.

- qcom,cpulist:			List of CPU phandles to be monitored in a
				cluster. Must be a subset of the cpulist
				described in first level node. Defaults to
				cpulist in first level node if not specified.
- qcom,inst-ev:			The instruction count event that this monitor is
				supposed to measure. Defaults to 0x08 if not
				specified.
- qcom,stall-cycle-ev:		The stall cycle count that this monitor is
				supposed to measure. Assumes 100% stall if not
				specified.
- qcom,ddr-type:		Optional property indicates ddr type which can support
				different frequencies for a given target.

@@ -26,9 +45,12 @@ Example:
#define DDR_TYPE_LPDDR3	5
#define DDR_TYPE_LPDDR4X	7

	qcom,arm-memlat-cpugrp {
		compatible = "qcom,arm-memlat-cpugrp";
		qcom,cpulist = <&CPU0 &CPU1>;

		qcom,arm-memlat-mon {
			compatible = "qcom,arm-memlat-mon";
		qcom,cpulist = <&CPU0 &CPU1>;
			qcom,target-dev = <&memlat0>;
			qcom,cachemiss-ev = <0x2A>;
			qcom,inst-ev = <0x08>;
@@ -48,3 +70,4 @@ Example:
					< 1881600 5859 >;
			};
		};
	};