From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver Date: Tue, 22 May 2018 10:59:07 +0300 Message-ID: <001401d3f1a2$c7328850$559798f0$@codeaurora.org> References: <1526555955-29960-11-git-send-email-ilialin@codeaurora.org> <1526729701-8589-1-git-send-email-ilialin@codeaurora.org> <153cc316-dcb5-972f-5a2f-c91fe0f6348b@arm.com> <000f01d3f103$3ff78ba0$bfe6a2e0$@codeaurora.org> <2ace10bc-e1c4-2060-94d3-eb71e966ffbe@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: Content-Language: en-us Sender: linux-kernel-owner@vger.kernel.org To: 'Sudeep Holla' , mturquette@baylibre.com, sboyd@kernel.org, robh@kernel.org, mark.rutland@arm.com, viresh.kumar@linaro.org, nm@ti.com, lgirdwood@gmail.com, broonie@kernel.org, andy.gross@linaro.org, david.brown@linaro.org, catalin.marinas@arm.com, will.deacon@arm.com, rjw@rjwysocki.net, linux-clk@vger.kernel.org Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, rnayak@codeaurora.org, amit.kucheria@linaro.org, nicolas.dechesne@linaro.org, celster@codeaurora.org, tfinkel@codeaurora.org List-Id: devicetree@vger.kernel.org OK, I think I found out the way. Would this be correct? -------------------------------------------------------------------------= ---------------------- extern struct cpu_topology cpu_topology[NR_CPUS]; static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster) { unsigned cpu; for_each_possible_cpu(cpu) { if ((cluster =3D=3D cpu_topology[cpu].cluster_id) && (0 =3D=3D cpu_topology[cpu].core_id)) return get_cpu_device(cpu); } return NULL; } -------------------------------------------------------------------------= ---------------------- > -----Original Message----- > From: ilialin@codeaurora.org > Sent: Tuesday, May 22, 2018 09:56 > To: 'Sudeep Holla' ; 'mturquette@baylibre.com' > ; 'sboyd@kernel.org' ; > 'robh@kernel.org' ; 'mark.rutland@arm.com' > ; 'viresh.kumar@linaro.org' > ; 'nm@ti.com' ; > 'lgirdwood@gmail.com' ; 'broonie@kernel.org' > ; 'andy.gross@linaro.org' ; > 'david.brown@linaro.org' ; > 'catalin.marinas@arm.com' ; > 'will.deacon@arm.com' ; 'rjw@rjwysocki.net' > ; 'linux-clk@vger.kernel.org' clk@vger.kernel.org> > Cc: 'devicetree@vger.kernel.org' ; 'linux- > kernel@vger.kernel.org' ; 'linux- > pm@vger.kernel.org' ; 'linux-arm- > msm@vger.kernel.org' ; 'linux- > soc@vger.kernel.org' ; 'linux-arm- > kernel@lists.infradead.org' ; > 'rnayak@codeaurora.org' ; > 'amit.kucheria@linaro.org' ; > 'nicolas.dechesne@linaro.org' ; > 'celster@codeaurora.org' ; > 'tfinkel@codeaurora.org' > Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver >=20 >=20 >=20 > > -----Original Message----- > > From: Sudeep Holla > > Sent: Monday, May 21, 2018 16:05 > > To: ilialin@codeaurora.org; mturquette@baylibre.com; = sboyd@kernel.org; > > robh@kernel.org; mark.rutland@arm.com; viresh.kumar@linaro.org; > > nm@ti.com; lgirdwood@gmail.com; broonie@kernel.org; > > andy.gross@linaro.org; david.brown@linaro.org; > > catalin.marinas@arm.com; will.deacon@arm.com; rjw@rjwysocki.net; > > linux-clk@vger.kernel.org > > Cc: Sudeep Holla ; devicetree@vger.kernel.org; > > linux-kernel@vger.kernel.org; linux-pm@vger.kernel.org; linux-arm- > > msm@vger.kernel.org; linux-soc@vger.kernel.org; linux-arm- > > kernel@lists.infradead.org; rnayak@codeaurora.org; > > amit.kucheria@linaro.org; nicolas.dechesne@linaro.org; > > celster@codeaurora.org; tfinkel@codeaurora.org > > Subject: Re: [PATCH] cpufreq: Add Kryo CPU scaling driver > > > > > > > > On 21/05/18 13:57, ilialin@codeaurora.org wrote: > > > > > [...] > > > > >>> +#include > > >>> +#include > > >>> +#include > > >>> +#include > > >>> +#include > > >>> +#include #include = #include > > >>> + #include #include > > >>> + #include > > >>> + > > >>> +#define MSM_ID_SMEM 137 > > >>> +#define SILVER_LEAD 0 > > >>> +#define GOLD_LEAD 2 > > >>> + > > >> > > >> So I gather form other emails, that these are physical cpu > > >> number(not even unique identifier like MPIDR). Will this work on > > >> parts or platforms that need to boot in GOLD LEAD cpus. > > > > > > The driver is for Kryo CPU, which (and AFAIK all multicore MSMs) > > > always boots on the CPU0. > > > > > > That may be true and I am not that bothered about it. But assuming > > physical ordering from the logical cpu number is *incorrect* and = will > > break if kernel decides to change the allocation algorithm. Kernel > > provides no guarantee on that, so you need to depend on some = physical > > ID or may be DT to achieve what your want. But the current code as = it > stands is wrong. >=20 > Got your point. In fact CPUs are numbered 0-3 and ordered into 2 = clusters in > the DT: >=20 > cpus { > #address-cells =3D <2>; > #size-cells =3D <0>; >=20 > CPU0: cpu@0 { > ... > reg =3D <0x0 0x0>; > ... > }; >=20 > CPU1: cpu@1 { > ... > reg =3D <0x0 0x1>; > ... > }; >=20 > CPU2: cpu@100 { > ... > reg =3D <0x0 0x100>; > ... > }; >=20 > CPU3: cpu@101 { > ... > reg =3D <0x0 0x101>; > ... > }; >=20 > cpu-map { > cluster0 { > core0 { > cpu =3D <&CPU0>; > }; >=20 > core1 { > cpu =3D <&CPU1>; > }; > }; >=20 > cluster1 { > core0 { > cpu =3D <&CPU2>; > }; >=20 > core1 { > cpu =3D <&CPU3>; > }; > }; > }; > }; >=20 > As far, as I understand, they are probed in the same order. However, = to be > certain that the physical CPU is the one I intend to configure, I have = to fetch > the device structure pointer for the cpu-map -> clusterX -> core0 -> = cpu path. > Could you suggest a kernel API to do that? >=20 >=20 >=20 > > > > -- > > Regards, > > Sudeep