From: Juri Lelli <juri.lelli-5wv7dgnIgG8@public.gmane.org>
To: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
vincent.guittot-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
mark.rutland-5wv7dgnIgG8@public.gmane.org,
linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org,
sudeep.holla-5wv7dgnIgG8@public.gmane.org,
lorenzo.pieralisi-5wv7dgnIgG8@public.gmane.org,
catalin.marinas-5wv7dgnIgG8@public.gmane.org,
will.deacon-5wv7dgnIgG8@public.gmane.org,
morten.rasmussen-5wv7dgnIgG8@public.gmane.org,
dietmar.eggemann-5wv7dgnIgG8@public.gmane.org,
broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
Subject: Re: [PATCH v7 0/8] CPUs capacity information for heterogeneous systems
Date: Mon, 12 Sep 2016 08:24:24 +0100 [thread overview]
Message-ID: <20160912072424.GL10409@e106622-lin> (raw)
In-Reply-To: <1473085372-2840-1-git-send-email-juri.lelli-5wv7dgnIgG8@public.gmane.org>
Hi,
this is a ping for people interested in this series. Patches 2,4,7-8
still needs ACKs.
I know it's only been a week since I posted v7, but this series would
pair nicely with asym cpu capacity support bits already sitting in
tip/sched/core. I also know that it might be already late for 4.9 merge
window; nevertheless, still hoping we can make it.
Thanks!
Best,
- Juri
On 05/09/16 15:22, Juri Lelli wrote:
> Hi all,
>
> version 7 of "CPUs capacity information for heterogeneous systems" patchset [1]
> (please refer to previous postings to get some context).
>
> A few changes from v6:
>
> - rebase on top of mainline (4.8-rc5)
> - some ACKs collected
> - changelogs fixes
> - use cpuinfo.max_freq
> - add delayed work to unregister notifier
>
> Patches high level description:
>
> o 01/08 introduces documentation for the new optional DT binding
> o [02-06]/08 add cpu-capacity attribute to TC2, Juno and Juno r2 DTs and
> provide parsing of such information at boot time
> o [07-08]/08 introduce sysfs attribute
>
> In case you would like to test this out, I pushed a branch here:
>
> git://linux-arm.org/linux-jl.git upstream/default_caps_v7
>
> This branch contains additional patches, useful to better understand how CPU
> capacity information is actually used by the scheduler.
>
> These patches also form the basis for Morten/Dietmar's "Clean-ups and
> asymmetric cpu capacity support" series [2] (and the EAS stack in general).
>
> Best,
>
> - Juri
>
> [1] v1 - https://lkml.org/lkml/2015/11/23/391
> v2 - https://lkml.org/lkml/2016/1/8/417
> v3 - https://lkml.org/lkml/2016/2/3/405
> v4 - https://lkml.org/lkml/2016/3/18/350
> v5 - https://lkml.org/lkml/2016/6/15/291
> v6 - https://lkml.org/lkml/2016/7/19/419
> [2] https://lkml.org/lkml/2016/8/31/292
>
>
> Juri Lelli (8):
> Documentation: arm: define DT cpu capacity-dmips-mhz bindings
> arm: parse cpu capacity-dmips-mhz from DT
> arm, dts: add TC2 cpu capacity-dmips-mhz information
> arm64: parse cpu capacity-dmips-mhz from DT
> arm64, dts: add Juno cpu capacity-dmips-mhz information
> arm64, dts: add Juno r2 cpu capacity-dmips-mhz information
> arm: add sysfs cpu_capacity attribute
> arm64: add sysfs cpu_capacity attribute
>
> .../devicetree/bindings/arm/cpu-capacity.txt | 236 +++++++++++++++++++++
> Documentation/devicetree/bindings/arm/cpus.txt | 10 +
> arch/arm/boot/dts/vexpress-v2p-ca15_a7.dts | 5 +
> arch/arm/kernel/topology.c | 228 +++++++++++++++++++-
> arch/arm64/boot/dts/arm/juno-r2.dts | 6 +
> arch/arm64/boot/dts/arm/juno.dts | 6 +
> arch/arm64/kernel/topology.c | 232 +++++++++++++++++++-
> 7 files changed, 721 insertions(+), 2 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/arm/cpu-capacity.txt
>
> --
> 2.7.0
>
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2016-09-12 7:24 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-05 14:22 [PATCH v7 0/8] CPUs capacity information for heterogeneous systems Juri Lelli
2016-09-05 14:22 ` [PATCH v7 1/8] Documentation: arm: define DT cpu capacity-dmips-mhz bindings Juri Lelli
[not found] ` <1473085372-2840-2-git-send-email-juri.lelli-5wv7dgnIgG8@public.gmane.org>
2016-12-12 12:40 ` Lorenzo Pieralisi
2016-12-12 13:33 ` Juri Lelli
2016-09-05 14:22 ` [PATCH v7 2/8] arm: parse cpu capacity-dmips-mhz from DT Juri Lelli
2016-09-12 8:36 ` Vincent Guittot
2016-09-12 8:55 ` Juri Lelli
2016-09-05 14:22 ` [PATCH v7 3/8] arm, dts: add TC2 cpu capacity-dmips-mhz information Juri Lelli
2016-09-05 14:22 ` [PATCH v7 4/8] arm64: parse cpu capacity-dmips-mhz from DT Juri Lelli
[not found] ` <1473085372-2840-5-git-send-email-juri.lelli-5wv7dgnIgG8@public.gmane.org>
2016-09-12 8:37 ` Vincent Guittot
2016-09-12 8:56 ` Juri Lelli
2016-09-05 14:22 ` [PATCH v7 5/8] arm64, dts: add Juno cpu capacity-dmips-mhz information Juri Lelli
2016-09-05 14:22 ` [PATCH v7 6/8] arm64, dts: add Juno r2 " Juri Lelli
2016-09-05 14:22 ` [PATCH v7 8/8] arm64: add sysfs cpu_capacity attribute Juri Lelli
[not found] ` <1473085372-2840-1-git-send-email-juri.lelli-5wv7dgnIgG8@public.gmane.org>
2016-09-05 14:22 ` [PATCH v7 7/8] arm: " Juri Lelli
2016-09-12 7:24 ` Juri Lelli [this message]
2016-09-19 11:10 ` [PATCH v7 0/8] CPUs capacity information for heterogeneous systems Juri Lelli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160912072424.GL10409@e106622-lin \
--to=juri.lelli-5wv7dgnigg8@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=dietmar.eggemann-5wv7dgnIgG8@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lorenzo.pieralisi-5wv7dgnIgG8@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=morten.rasmussen-5wv7dgnIgG8@public.gmane.org \
--cc=peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sudeep.holla-5wv7dgnIgG8@public.gmane.org \
--cc=vincent.guittot-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=will.deacon-5wv7dgnIgG8@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).