-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'pmdomain-v6.7' of git://git.kernel.org/pub/scm/linux/kerne…
…l/git/ulfh/linux-pm Pull pmdomain updates from Ulf Hansson: - Move Kconfig files into the pmdomain subsystem - Drop use of genpd's redundant ->opp_to_performance_state() callback - amlogic: - Add support for the T7 power-domains controller - Fix mask for the second NNA mem power-domain - bcm: Fixup ASB register read and comparison for bcm2835-power - imx: Fix device link problem for consumers of the pgc power-domain - mediatek: Add support for the MT8365 power domains - qcom: - Add support for the rpmhpds for SC8380XP power-domains - Add support for the rpmhpds for SM8650 power-domains - Add support for the rpmhpd clocks for SM7150 - Add support for the rpmpds for MSM8917 (families) power-domains - starfive: Add support for the JH7110 AON PMU * tag 'pmdomain-v6.7' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/linux-pm: (56 commits) pmdomain: amlogic: Fix mask for the second NNA mem PD domain pmdomain: qcom: rpmhpd: Add SC8380XP power domains pmdomain: qcom: rpmhpd: Add SM8650 RPMh Power Domains dt-bindings: power: rpmpd: Add SC8380XP support dt-bindings: power: qcom,rpmhpd: Add GMXC PD index dt-bindings: power: qcom,rpmpd: document the SM8650 RPMh Power Domains pmdomain: imx: Make imx pgc power domain also set the fwnode pmdomain: qcom: rpmpd: Add QM215 power domains pmdomain: qcom: rpmpd: Add MSM8917 power domains dt-bindings: power: rpmpd: Add MSM8917, MSM8937 and QM215 pmdomain: bcm: bcm2835-power: check if the ASB register is equal to enable pmdomain: qcom: rpmhpd: Drop the ->opp_to_performance_state() callback pmdomain: qcom: rpmpd: Drop the ->opp_to_performance_state() callback pmdomain: qcom: cpr: Drop the ->opp_to_performance_state() callback pmdomain: Use device_get_match_data() pmdomain: ti: add missing of_node_put pmdomain: mediatek: Add support for MT8365 pmdomain: mediatek: Add support for MTK_SCPD_STRICT_BUS_PROTECTION cap pmdomain: mediatek: Add support for WAY_EN operations pmdomain: mediatek: Unify configuration for infracfg and smi ...
- Loading branch information
Showing
68 changed files
with
1,938 additions
and
925 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
menu "PM Domains" | ||
|
||
source "drivers/pmdomain/actions/Kconfig" | ||
source "drivers/pmdomain/amlogic/Kconfig" | ||
source "drivers/pmdomain/apple/Kconfig" | ||
source "drivers/pmdomain/bcm/Kconfig" | ||
source "drivers/pmdomain/imx/Kconfig" | ||
source "drivers/pmdomain/mediatek/Kconfig" | ||
source "drivers/pmdomain/qcom/Kconfig" | ||
source "drivers/pmdomain/renesas/Kconfig" | ||
source "drivers/pmdomain/rockchip/Kconfig" | ||
source "drivers/pmdomain/samsung/Kconfig" | ||
source "drivers/pmdomain/st/Kconfig" | ||
source "drivers/pmdomain/starfive/Kconfig" | ||
source "drivers/pmdomain/sunxi/Kconfig" | ||
source "drivers/pmdomain/tegra/Kconfig" | ||
source "drivers/pmdomain/ti/Kconfig" | ||
source "drivers/pmdomain/xilinx/Kconfig" | ||
|
||
endmenu |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
menu "Amlogic PM Domains" | ||
|
||
config MESON_GX_PM_DOMAINS | ||
tristate "Amlogic Meson GX Power Domains driver" | ||
depends on ARCH_MESON || COMPILE_TEST | ||
depends on PM && OF | ||
default ARCH_MESON | ||
select PM_GENERIC_DOMAINS | ||
select PM_GENERIC_DOMAINS_OF | ||
help | ||
Say yes to expose Amlogic Meson GX Power Domains as | ||
Generic Power Domains. | ||
|
||
config MESON_EE_PM_DOMAINS | ||
tristate "Amlogic Meson Everything-Else Power Domains driver" | ||
depends on ARCH_MESON || COMPILE_TEST | ||
depends on PM && OF | ||
default ARCH_MESON | ||
select PM_GENERIC_DOMAINS | ||
select PM_GENERIC_DOMAINS_OF | ||
help | ||
Say yes to expose Amlogic Meson Everything-Else Power Domains as | ||
Generic Power Domains. | ||
|
||
config MESON_SECURE_PM_DOMAINS | ||
tristate "Amlogic Meson Secure Power Domains driver" | ||
depends on (ARCH_MESON || COMPILE_TEST) && MESON_SM | ||
depends on PM && OF | ||
depends on HAVE_ARM_SMCCC | ||
default ARCH_MESON | ||
select PM_GENERIC_DOMAINS | ||
select PM_GENERIC_DOMAINS_OF | ||
help | ||
Support for the power controller on Amlogic A1/C1 series. | ||
Say yes to expose Amlogic Meson Secure Power Domains as Generic | ||
Power Domains. | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.