linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] cpufreq/arm updates for 6.17
@ 2025-07-21  7:49 Viresh Kumar
  2025-07-21 10:36 ` Rafael J. Wysocki
  0 siblings, 1 reply; 2+ messages in thread
From: Viresh Kumar @ 2025-07-21  7:49 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linux PM

Hi Rafael,

The following changes since commit e04c78d86a9699d136910cfc0bdcf01087e3267e:

  Linux 6.16-rc2 (2025-06-15 13:49:41 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git tags/cpufreq-arm-updates-6.17

for you to fetch changes up to a7ce9ca1aaf93d55e32e915700d0ef9f69a781c9:

  drivers: cpufreq: add Tegra114 support (2025-07-15 08:37:35 +0530)

----------------------------------------------------------------
CPUFreq updates for 6.17

- tegra124: Allow building as a module (Aaron Kling).

- Minor cleanups for Rust cpufreq and cpumask APIs and fix MAINTAINERS
entry for cpu.rs (Abhinav Ananthu, Ritvik Gupta, and Lukas Bulwahn).

- Minor cleanups for miscellaneous cpufreq drivers (Arnd Bergmann, Dan
  Carpenter, Krzysztof Kozlowski, Sven Peter, and Svyatoslav Ryhel).

----------------------------------------------------------------
Aaron Kling (3):
      cpufreq: Export disable_cpufreq()
      cpufreq: dt: Add register helper
      cpufreq: tegra124: Allow building as a module

Abhinav Ananthu (2):
      rust: cpufreq: Ensure C ABI compatibility in all unsafe
      rust: cpufreq: use c_ types from kernel prelude

Arnd Bergmann (1):
      cpufreq: armada-8k: make both cpu masks static

Dan Carpenter (1):
      cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table()

Krzysztof Kozlowski (1):
      cpufreq: brcmstb-avs: Fully open-code compatible for grepping

Lukas Bulwahn (1):
      MAINTAINERS: adjust file entry in CPU HOTPLUG

Ritvik Gupta (1):
      rust: cpumask: Replace `MaybeUninit` and `mem::zeroed` with `Opaque` APIs

Sven Peter (1):
      cpufreq: apple: drop default ARCH_APPLE in Kconfig

Svyatoslav Ryhel (1):
      drivers: cpufreq: add Tegra114 support

 MAINTAINERS                           |  2 +-
 drivers/cpufreq/Kconfig.arm           |  3 +--
 drivers/cpufreq/armada-8k-cpufreq.c   |  5 ++---
 drivers/cpufreq/brcmstb-avs-cpufreq.c |  2 +-
 drivers/cpufreq/cpufreq-dt-platdev.c  |  1 +
 drivers/cpufreq/cpufreq-dt.c          | 11 +++++++++++
 drivers/cpufreq/cpufreq-dt.h          |  2 ++
 drivers/cpufreq/cpufreq.c             |  2 ++
 drivers/cpufreq/tegra124-cpufreq.c    | 49 +++++++++++++++++++++++++++++++++++++------------
 rust/kernel/cpufreq.rs                | 60 ++++++++++++++++++++++++++----------------------------------
 rust/kernel/cpumask.rs                | 13 ++-----------
 11 files changed, 86 insertions(+), 64 deletions(-)

-- 
viresh

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

* Re: [GIT PULL] cpufreq/arm updates for 6.17
  2025-07-21  7:49 [GIT PULL] cpufreq/arm updates for 6.17 Viresh Kumar
@ 2025-07-21 10:36 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2025-07-21 10:36 UTC (permalink / raw)
  To: Viresh Kumar; +Cc: Rafael J. Wysocki, Linux PM

Hi Viresh,

On Mon, Jul 21, 2025 at 9:49 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
>
> Hi Rafael,
>
> The following changes since commit e04c78d86a9699d136910cfc0bdcf01087e3267e:
>
>   Linux 6.16-rc2 (2025-06-15 13:49:41 -0700)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git tags/cpufreq-arm-updates-6.17
>
> for you to fetch changes up to a7ce9ca1aaf93d55e32e915700d0ef9f69a781c9:
>
>   drivers: cpufreq: add Tegra114 support (2025-07-15 08:37:35 +0530)
>
> ----------------------------------------------------------------
> CPUFreq updates for 6.17
>
> - tegra124: Allow building as a module (Aaron Kling).
>
> - Minor cleanups for Rust cpufreq and cpumask APIs and fix MAINTAINERS
> entry for cpu.rs (Abhinav Ananthu, Ritvik Gupta, and Lukas Bulwahn).
>
> - Minor cleanups for miscellaneous cpufreq drivers (Arnd Bergmann, Dan
>   Carpenter, Krzysztof Kozlowski, Sven Peter, and Svyatoslav Ryhel).
>
> ----------------------------------------------------------------
> Aaron Kling (3):
>       cpufreq: Export disable_cpufreq()
>       cpufreq: dt: Add register helper
>       cpufreq: tegra124: Allow building as a module
>
> Abhinav Ananthu (2):
>       rust: cpufreq: Ensure C ABI compatibility in all unsafe
>       rust: cpufreq: use c_ types from kernel prelude
>
> Arnd Bergmann (1):
>       cpufreq: armada-8k: make both cpu masks static
>
> Dan Carpenter (1):
>       cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table()
>
> Krzysztof Kozlowski (1):
>       cpufreq: brcmstb-avs: Fully open-code compatible for grepping
>
> Lukas Bulwahn (1):
>       MAINTAINERS: adjust file entry in CPU HOTPLUG
>
> Ritvik Gupta (1):
>       rust: cpumask: Replace `MaybeUninit` and `mem::zeroed` with `Opaque` APIs
>
> Sven Peter (1):
>       cpufreq: apple: drop default ARCH_APPLE in Kconfig
>
> Svyatoslav Ryhel (1):
>       drivers: cpufreq: add Tegra114 support
>
>  MAINTAINERS                           |  2 +-
>  drivers/cpufreq/Kconfig.arm           |  3 +--
>  drivers/cpufreq/armada-8k-cpufreq.c   |  5 ++---
>  drivers/cpufreq/brcmstb-avs-cpufreq.c |  2 +-
>  drivers/cpufreq/cpufreq-dt-platdev.c  |  1 +
>  drivers/cpufreq/cpufreq-dt.c          | 11 +++++++++++
>  drivers/cpufreq/cpufreq-dt.h          |  2 ++
>  drivers/cpufreq/cpufreq.c             |  2 ++
>  drivers/cpufreq/tegra124-cpufreq.c    | 49 +++++++++++++++++++++++++++++++++++++------------
>  rust/kernel/cpufreq.rs                | 60 ++++++++++++++++++++++++++----------------------------------
>  rust/kernel/cpumask.rs                | 13 ++-----------
>  11 files changed, 86 insertions(+), 64 deletions(-)
>
> --

Pulled, thanks!

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

end of thread, other threads:[~2025-07-21 10:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-21  7:49 [GIT PULL] cpufreq/arm updates for 6.17 Viresh Kumar
2025-07-21 10:36 ` Rafael J. Wysocki

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).