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

Hi Rafael,

This pull request contains following changes:

- STI cpufreq driver updates to allow new hardware (Alain Volmat).

- Minor tegra driver fixes around initial frequency mismatch warnings (Jon
  Hunter).

- dev_err simplification for s5pv210 driver (Krzysztof Kozlowski).

- Qcom driver updates to allow new hardware and minor cleanup (Manivannan
  Sadhasivam and Matthias Kaehlcke).

- Add missing MODULE_DEVICE_TABLE for armada driver (Pali Rohár).

- Improved defer-probe handling in cpufreq-dt driver (Stephan Gerhold).

- Call dev_pm_opp_of_remove_table() unconditionally for imx driver (Viresh
  Kumar).

-------------------------8<-------------------------

The following changes since commit 90d46d71cce279d878793a0ed4b326b4027aca6c:

  opp: Handle multiple calls for same OPP table in _of_add_opp_table_v1() (2020-09-16 13:56:08 +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 bc9b9c5ab9d8d16157737db539929d57562926e9:

  cpufreq: qcom: Don't add frequencies without an OPP (2020-09-16 15:22:15 +0530)

----------------------------------------------------------------
Alain Volmat (3):
      cpufreq: sti-cpufreq: add stih418 support
      cpufreq: dt-platdev: Blacklist st,stih418 SoC
      cpufreq: arm: Kconfig: add CPUFREQ_DT depend for STI CPUFREQ

Jon Hunter (1):
      cpufreq: tegra186: Fix initial frequency

Krzysztof Kozlowski (2):
      cpufreq: s5pv210: Simplify with dev_err_probe()
      cpufreq: s5pv210: Use dev_err instead of pr_err in probe

Manivannan Sadhasivam (5):
      cpufreq: qcom-hw: Make use of cpufreq driver_data for passing pdev
      dt-bindings: cpufreq: cpufreq-qcom-hw: Document Qcom EPSS compatible
      cpufreq: qcom-hw: Use devm_platform_ioremap_resource() to simplify code
      cpufreq: qcom-hw: Use of_device_get_match_data for offsets and row size
      cpufreq: qcom-hw: Add cpufreq support for SM8250 SoC

Matthias Kaehlcke (1):
      cpufreq: qcom: Don't add frequencies without an OPP

Pali Rohár (1):
      cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE

Stephan Gerhold (1):
      cpufreq: dt: Refactor initialization to handle probe deferral properly

Viresh Kumar (2):
      cpufreq: imx6q: Unconditionally call dev_pm_opp_of_remove_table()
      Merge commit 'ded10c47f39e' into HEAD

 Documentation/devicetree/bindings/cpufreq/cpufreq-qcom-hw.txt |   2 +-
 drivers/cpufreq/Kconfig.arm                                   |   2 +-
 drivers/cpufreq/armada-37xx-cpufreq.c                         |   6 +++
 drivers/cpufreq/cpufreq-dt-platdev.c                          |   1 +
 drivers/cpufreq/cpufreq-dt.c                                  | 286 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------------------------------------------------
 drivers/cpufreq/imx6q-cpufreq.c                               |  10 +----
 drivers/cpufreq/qcom-cpufreq-hw.c                             | 135 ++++++++++++++++++++++++++++++++++++++++++++-----------------------
 drivers/cpufreq/s5pv210-cpufreq.c                             |  31 ++++++----------
 drivers/cpufreq/sti-cpufreq.c                                 |   6 ++-
 drivers/cpufreq/tegra186-cpufreq.c                            |  30 +++++++++++++++
 drivers/opp/core.c                                            |  22 ++++++++---
 drivers/opp/opp.h                                             |   2 +-
 12 files changed, 305 insertions(+), 228 deletions(-)


-- 
viresh

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

* Re: [GIT PULL] cpufreq-arm for 5.10-rc1
  2020-10-06  8:08 [GIT PULL] cpufreq-arm for 5.10-rc1 Viresh Kumar
@ 2020-10-06 10:34 ` Rafael J. Wysocki
  0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2020-10-06 10:34 UTC (permalink / raw)
  To: Viresh Kumar; +Cc: Rafael J. Wysocki, Linux PM

On Tue, Oct 6, 2020 at 10:09 AM Viresh Kumar <viresh.kumar@linaro.org> wrote:
>
> Hi Rafael,
>
> This pull request contains following changes:
>
> - STI cpufreq driver updates to allow new hardware (Alain Volmat).
>
> - Minor tegra driver fixes around initial frequency mismatch warnings (Jon
>   Hunter).
>
> - dev_err simplification for s5pv210 driver (Krzysztof Kozlowski).
>
> - Qcom driver updates to allow new hardware and minor cleanup (Manivannan
>   Sadhasivam and Matthias Kaehlcke).
>
> - Add missing MODULE_DEVICE_TABLE for armada driver (Pali Rohár).
>
> - Improved defer-probe handling in cpufreq-dt driver (Stephan Gerhold).
>
> - Call dev_pm_opp_of_remove_table() unconditionally for imx driver (Viresh
>   Kumar).
>
> -------------------------8<-------------------------
>
> The following changes since commit 90d46d71cce279d878793a0ed4b326b4027aca6c:
>
>   opp: Handle multiple calls for same OPP table in _of_add_opp_table_v1() (2020-09-16 13:56:08 +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 bc9b9c5ab9d8d16157737db539929d57562926e9:
>
>   cpufreq: qcom: Don't add frequencies without an OPP (2020-09-16 15:22:15 +0530)

Pulled and pushed to linux-next, thanks!

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

end of thread, other threads:[~2020-10-06 10:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-06  8:08 [GIT PULL] cpufreq-arm for 5.10-rc1 Viresh Kumar
2020-10-06 10:34 ` 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.