All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] cpufreq/arm updates for 5.15-rc1
@ 2021-08-31  5:59 Viresh Kumar
  2021-08-31 12:08 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: Viresh Kumar @ 2021-08-31  5:59 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux PM

Hi Rafael,

This pull request contains:

- Updates cpufreq-dt blocklist with more platforms (Bjorn Andersson).

- Allow freq changes from any CPU for qcom-hw driver (Taniya Das).

- Add DSVS interrupt's support for qcom-hw driver (Thara Gopinath).

- A new callback (->register_em()) to register EM at a more convenient
  point of time.

Thanks.

--
Viresh

-------------------------8<-------------------------
The following changes since commit 484f2b7c61b9ae58cc00c5127bcbcd9177af8dfe:

  cpufreq: armada-37xx: forbid cpufreq for 1.2 GHz variant (2021-08-09 09:31:22 +0530)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git cpufreq/arm/linux-next

for you to fetch changes up to f0712ace7fe0723b40733c3b98591d34c1b0bfb9:

  cpufreq: qcom-hw: Set dvfs_possible_from_any_cpu cpufreq driver flag (2021-08-30 10:43:35 +0530)

----------------------------------------------------------------
Bjorn Andersson (1):
      cpufreq: blocklist more Qualcomm platforms in cpufreq-dt-platdev

Taniya Das (1):
      cpufreq: qcom-hw: Set dvfs_possible_from_any_cpu cpufreq driver flag

Thara Gopinath (1):
      cpufreq: qcom-cpufreq-hw: Add dcvs interrupt support

Viresh Kumar (10):
      cpufreq: vexpress: Set CPUFREQ_IS_COOLING_DEV flag
      cpufreq: Add callback to register with energy model
      cpufreq: dt: Use .register_em() to register with energy model
      cpufreq: imx6q: Use .register_em() to register with energy model
      cpufreq: mediatek: Use .register_em() to register with energy model
      cpufreq: omap: Use .register_em() to register with energy model
      cpufreq: qcom-cpufreq-hw: Use .register_em() to register with energy model
      cpufreq: scpi: Use .register_em() to register with energy model
      cpufreq: vexpress: Use .register_em() to register with energy model
      cpufreq: scmi: Use .register_em() to register with energy model

 drivers/base/arch_topology.c           |   2 +
 drivers/cpufreq/cpufreq-dt-platdev.c   |   4 +
 drivers/cpufreq/cpufreq-dt.c           |   3 +-
 drivers/cpufreq/cpufreq.c              |  13 +++
 drivers/cpufreq/imx6q-cpufreq.c        |   2 +-
 drivers/cpufreq/mediatek-cpufreq.c     |   3 +-
 drivers/cpufreq/omap-cpufreq.c         |   2 +-
 drivers/cpufreq/qcom-cpufreq-hw.c      | 151 ++++++++++++++++++++++++++++++++-
 drivers/cpufreq/scmi-cpufreq.c         |  65 +++++++++-----
 drivers/cpufreq/scpi-cpufreq.c         |   3 +-
 drivers/cpufreq/vexpress-spc-cpufreq.c |  25 +-----
 include/linux/cpufreq.h                |  14 +++
 12 files changed, 233 insertions(+), 54 deletions(-)


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] cpufreq/arm updates for 5.15-rc1
  2021-08-31  5:59 [GIT PULL] cpufreq/arm updates for 5.15-rc1 Viresh Kumar
@ 2021-08-31 12:08 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2021-08-31 12:08 UTC (permalink / raw)
  To: Viresh Kumar; +Cc: Rafael J. Wysocki, Linux PM

On Tue, Aug 31, 2021 at 7:59 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
>
> Hi Rafael,
>
> This pull request contains:
>
> - Updates cpufreq-dt blocklist with more platforms (Bjorn Andersson).
>
> - Allow freq changes from any CPU for qcom-hw driver (Taniya Das).
>
> - Add DSVS interrupt's support for qcom-hw driver (Thara Gopinath).
>
> - A new callback (->register_em()) to register EM at a more convenient
>   point of time.
>
> Thanks.
>
> --
> Viresh
>
> -------------------------8<-------------------------
> The following changes since commit 484f2b7c61b9ae58cc00c5127bcbcd9177af8dfe:
>
>   cpufreq: armada-37xx: forbid cpufreq for 1.2 GHz variant (2021-08-09 09:31:22 +0530)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git cpufreq/arm/linux-next
>
> for you to fetch changes up to f0712ace7fe0723b40733c3b98591d34c1b0bfb9:
>
>   cpufreq: qcom-hw: Set dvfs_possible_from_any_cpu cpufreq driver flag (2021-08-30 10:43:35 +0530)

Pulled, thanks!


> ----------------------------------------------------------------
> Bjorn Andersson (1):
>       cpufreq: blocklist more Qualcomm platforms in cpufreq-dt-platdev
>
> Taniya Das (1):
>       cpufreq: qcom-hw: Set dvfs_possible_from_any_cpu cpufreq driver flag
>
> Thara Gopinath (1):
>       cpufreq: qcom-cpufreq-hw: Add dcvs interrupt support
>
> Viresh Kumar (10):
>       cpufreq: vexpress: Set CPUFREQ_IS_COOLING_DEV flag
>       cpufreq: Add callback to register with energy model
>       cpufreq: dt: Use .register_em() to register with energy model
>       cpufreq: imx6q: Use .register_em() to register with energy model
>       cpufreq: mediatek: Use .register_em() to register with energy model
>       cpufreq: omap: Use .register_em() to register with energy model
>       cpufreq: qcom-cpufreq-hw: Use .register_em() to register with energy model
>       cpufreq: scpi: Use .register_em() to register with energy model
>       cpufreq: vexpress: Use .register_em() to register with energy model
>       cpufreq: scmi: Use .register_em() to register with energy model
>
>  drivers/base/arch_topology.c           |   2 +
>  drivers/cpufreq/cpufreq-dt-platdev.c   |   4 +
>  drivers/cpufreq/cpufreq-dt.c           |   3 +-
>  drivers/cpufreq/cpufreq.c              |  13 +++
>  drivers/cpufreq/imx6q-cpufreq.c        |   2 +-
>  drivers/cpufreq/mediatek-cpufreq.c     |   3 +-
>  drivers/cpufreq/omap-cpufreq.c         |   2 +-
>  drivers/cpufreq/qcom-cpufreq-hw.c      | 151 ++++++++++++++++++++++++++++++++-
>  drivers/cpufreq/scmi-cpufreq.c         |  65 +++++++++-----
>  drivers/cpufreq/scpi-cpufreq.c         |   3 +-
>  drivers/cpufreq/vexpress-spc-cpufreq.c |  25 +-----
>  include/linux/cpufreq.h                |  14 +++
>  12 files changed, 233 insertions(+), 54 deletions(-)
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-31 12:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-31  5:59 [GIT PULL] cpufreq/arm updates for 5.15-rc1 Viresh Kumar
2021-08-31 12:08 ` Rafael J. Wysocki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.