linux-pinenote/Documentation/devicetree/bindings
Linus Torvalds 02c3de1105 Power management updates for v4.11-rc1
- Operating Performance Points (OPP) framework fixes, cleanups and
    switch over from RCU-based synchronization to reference counting
    using krefs (Viresh Kumar, Wei Yongjun, Dave Gerlach).
 
  - cpufreq core cleanups and documentation updates (Viresh Kumar,
    Rafael Wysocki).
 
  - New cpufreq driver for Broadcom BMIPS SoCs (Markus Mayer).
 
  - New cpufreq-dt sub-driver for TI SoCs requiring special handling,
    like in the AM335x, AM437x, DRA7x, and AM57x families, along with
    new DT bindings for it (Dave Gerlach, Paul Gortmaker).
 
  - ARM64 SoCs support for the qoriq cpufreq driver (Tang Yuantian).
 
  - intel_pstate driver updates including a new sysfs knob to control
    the driver's operation mode and fixes related to the no_turbo
    sysfs knob and the hardware-managed P-states feature support
    (Rafael Wysocki, Srinivas Pandruvada).
 
  - New interface to export ultra-turbo frequencies for the powernv
    cpufreq driver (Shilpasri Bhat).
 
  - Assorted fixes for cpufreq drivers (Arnd Bergmann, Dan Carpenter,
    Wei Yongjun).
 
  - devfreq core fixes, mostly related to the sysfs interface exported
    by it (Chanwoo Choi, Chris Diamand).
 
  - Updates of the exynos-bus and exynos-ppmu devfreq drivers (Chanwoo
    Choi).
 
  - Device PM QoS extension to support CPUs and support for per-CPU
    wakeup (device resume) latency constraints in the cpuidle menu
    governor (Alex Shi).
 
  - Wakeup IRQs framework fixes (Grygorii Strashko).
 
  - Generic power domains framework update including a fix to make
    it handle asynchronous invocations of *noirq suspend/resume
    callbacks correctly (Ulf Hansson, Geert Uytterhoeven).
 
  - Assorted fixes and cleanups in the core suspend/hibernate code,
    PM QoS framework and x86 ACPI idle support code (Corentin Labbe,
    Geert Uytterhoeven, Geliang Tang, John Keeping, Nick Desaulniers).
 
  - Update of the analyze_suspend.py script is updated to version 4.5
    offering multiple improvements (Todd Brandt).
 
  - New tool for intel_pstate diagnostics using the pstate_sample
    tracepoint (Doug Smythies).
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
 iQIcBAABCAAGBQJYq3IjAAoJEILEb/54YlRx/lYP+gNXhfETSzjd4kWSHy3FVEDb
 gc5rMiE2j0OYgVSXwBI7p4EqMPy56lSWBASvbF2o6v9CIxb880KLFEsMDCVHwn46
 6xfEnIRxf1oeRqn7EG9ZPIcTgNsUyvK+gah7zgLXu/0KU7ceXxygvNk47qpeOZ8f
 dKYgIk/TOSGPC8H2nsg8VBKlK/ZOj5hID4F3MmFw6yDuWVCYuh2EokYXS4Nx0JwY
 UQGpWtz+FWWs71vhgVl33GbPXWvPqA7OMe0btZ3RCnhnz4tA/mH+jDWiaspCdS3J
 vKGeZyZptjIMJcufm3X7s7ghYjELheqQusMODDXk4AaWQ5nz8V5/h7NThYfa9J1b
 M93Tb0rMb2MqUhBpv/M6D3qQroZmhq55QKfQrul3QWSOiQUzTWJcbbpyeBQ7nkrI
 F1qNqQfuCnBL/r9y7HpW8P2iFg9kCHkwTtXMdp/lzGXdKzSGtAUSkYg5ohnUzQTp
 2WCPTEk+5DxLVPjW5rDoZOotr5p1kdcdWBk6r3MEWRokZK6PJo7rJBcnTtXSo2mO
 lLRba006q+fTlI5wZtjAI0rOiS3JgtT6cRx7uPjZlze9TGjklJhdsCPJbM5gcOT+
 YiOxvqD+9if5QRSxiEZNj3bQ43wYhXmpctfIanyxziq09BPIPxvgfRR/BkUzc34R
 ps4CIvImim5v5xc8Zsbk
 =57xJ
 -----END PGP SIGNATURE-----

Merge tag 'pm-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull power management updates from Rafael Wysocki:
 "The majority of changes go into the Operating Performance Points (OPP)
  framework and cpufreq this time, followed by devfreq and some
  scattered updates all over.

  The OPP changes are mostly related to switching over from RCU-based
  synchronization, that turned out to be overly complicated and
  problematic, to reference counting using krefs.

  In the cpufreq land there are core cleanups, documentation updates, a
  new driver for Broadcom BMIPS SoCs, a new cpufreq-dt sub-driver for TI
  SoCs that require special handling, ARM64 SoCs support for the qoriq
  driver, intel_pstate updates, powernv driver update and assorted
  fixes.

  The devfreq changes are mostly fixes related to the sysfs interface
  and some Exynos drivers updates.

  Apart from that, the cpuidle menu governor will support per-CPU PM QoS
  constraints for the wakeup latency now, some bugs in the wakeup IRQs
  framework are fixed, the generic power domains framework should handle
  asynchronous invocations of *noirq suspend/resume callbacks from now
  on, the analyze_suspend.py script is updated and there is a new tool
  for intel_pstate diagnostics.

  Specifics:

   - Operating Performance Points (OPP) framework fixes, cleanups and
     switch over from RCU-based synchronization to reference counting
     using krefs (Viresh Kumar, Wei Yongjun, Dave Gerlach)

   - cpufreq core cleanups and documentation updates (Viresh Kumar,
     Rafael Wysocki)

   - New cpufreq driver for Broadcom BMIPS SoCs (Markus Mayer)

   - New cpufreq-dt sub-driver for TI SoCs requiring special handling,
     like in the AM335x, AM437x, DRA7x, and AM57x families, along with
     new DT bindings for it (Dave Gerlach, Paul Gortmaker)

   - ARM64 SoCs support for the qoriq cpufreq driver (Tang Yuantian)

   - intel_pstate driver updates including a new sysfs knob to control
     the driver's operation mode and fixes related to the no_turbo sysfs
     knob and the hardware-managed P-states feature support (Rafael
     Wysocki, Srinivas Pandruvada)

   - New interface to export ultra-turbo frequencies for the powernv
     cpufreq driver (Shilpasri Bhat)

   - Assorted fixes for cpufreq drivers (Arnd Bergmann, Dan Carpenter,
     Wei Yongjun)

   - devfreq core fixes, mostly related to the sysfs interface exported
     by it (Chanwoo Choi, Chris Diamand)

   - Updates of the exynos-bus and exynos-ppmu devfreq drivers (Chanwoo
     Choi)

   - Device PM QoS extension to support CPUs and support for per-CPU
     wakeup (device resume) latency constraints in the cpuidle menu
     governor (Alex Shi)

   - Wakeup IRQs framework fixes (Grygorii Strashko)

   - Generic power domains framework update including a fix to make it
     handle asynchronous invocations of *noirq suspend/resume callbacks
     correctly (Ulf Hansson, Geert Uytterhoeven)

   - Assorted fixes and cleanups in the core suspend/hibernate code, PM
     QoS framework and x86 ACPI idle support code (Corentin Labbe, Geert
     Uytterhoeven, Geliang Tang, John Keeping, Nick Desaulniers)

   - Update of the analyze_suspend.py script is updated to version 4.5
     offering multiple improvements (Todd Brandt)

   - New tool for intel_pstate diagnostics using the pstate_sample
     tracepoint (Doug Smythies)"

* tag 'pm-4.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (85 commits)
  MAINTAINERS: cpufreq: add bmips-cpufreq.c
  PM / QoS: Fix memory leak on resume_latency.notifiers
  PM / Documentation: Spelling s/wrtie/write/
  PM / sleep: Fix test_suspend after sleep state rework
  cpufreq: CPPC: add ACPI_PROCESSOR dependency
  cpufreq: make ti-cpufreq explicitly non-modular
  cpufreq: Do not clear real_cpus mask on policy init
  tools/power/x86: Debug utility for intel_pstate driver
  AnalyzeSuspend: fix drag and zoom bug in javascript
  PM / wakeirq: report a wakeup_event on dedicated wekup irq
  PM / wakeirq: Fix spurious wake-up events for dedicated wakeirqs
  PM / wakeirq: Enable dedicated wakeirq for suspend
  cpufreq: dt: Don't use generic platdev driver for ti-cpufreq platforms
  cpufreq: ti: Add cpufreq driver to determine available OPPs at runtime
  Documentation: dt: add bindings for ti-cpufreq
  PM / OPP: Expose _of_get_opp_desc_node as dev_pm_opp API
  cpufreq: qoriq: Don't look at clock implementation details
  cpufreq: qoriq: add ARM64 SoCs support
  PM / Domains: Provide dummy governors if CONFIG_PM_GENERIC_DOMAINS=n
  cpufreq: brcmstb-avs-cpufreq: remove unnecessary platform_set_drvdata()
  ...
2017-02-20 17:41:31 -08:00
..
arc
arm clocksource/drivers/arm_arch_timer: Add dt binding for hisilicon-161010101 erratum 2017-02-08 00:13:57 +01:00
ata ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
auxdisplay
board
bus bus: Add Tegra GMI support 2016-11-18 18:32:57 -08:00
c6x
clock ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
cpufreq Documentation: dt: add bindings for ti-cpufreq 2017-02-09 22:53:54 +01:00
cris
crypto
devfreq PM / devfreq: exynos-bus: Add the detailed correlation for Exynos5433 2017-01-31 14:12:18 +09:00
display Char/Misc driver patches for 4.10-rc1 2016-12-13 12:11:01 -08:00
dma Merge branch 'topic/st_fdma' into for-linus 2016-12-14 09:07:07 +05:30
edac
eeprom
extcon extcon: usb-gpio: Add VBUS detection support 2016-11-20 21:22:39 +09:00
firmware Qualcomm ARM Based Driver Updates for v4.10 - Part 2 2016-11-30 22:49:14 +01:00
fpga DeviceTree updates for 4.10: 2016-12-15 11:49:41 -08:00
fuse
goldfish
gpio ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
gpu
h8300
hsi
hwlock
hwmon hwmon: (sht15) Add device tree support 2017-02-16 06:49:05 -08:00
i2c i2c: do not enable fall back to Host Notify by default 2017-01-12 20:06:15 +01:00
iio Documentation: dt-bindings: Document STM32 ADC DT bindings 2016-11-19 11:41:29 +00:00
infiniband
input dt-bindings: input: Specify the interrupt number of TPS65217 power button 2016-12-27 10:06:00 -08:00
interrupt-controller irqchip: DT bindings for Cortina Gemini irqchip 2017-02-08 14:06:21 +00:00
iommu
ipmi
leds DT: leds: Improve examples by adding some context 2017-01-05 23:00:54 +01:00
lpddr2
mailbox ARM: SoC driver updates for v4.10 2016-12-15 16:03:25 -08:00
media media updates for v4.10-rc1 2016-12-16 09:39:16 -08:00
memory-controllers
metag
mfd - New Device Support 2016-12-19 08:16:26 -08:00
mips
misc
mmc mmc: sdhci-cadence: add Socionext UniPhier specific compatible string 2016-12-20 11:40:52 +01:00
mtd dt-bindings: mtd: add a common label property to all mtd devices 2017-02-10 10:16:49 -08:00
net Documentation: devicetree: change the mediatek ethernet compatible string 2017-01-25 14:36:02 -05:00
nios2
nvmem
opp PM / OPP: Reword binding supporting multiple regulators per device 2016-12-06 02:27:58 +01:00
pci Merge branch 'pci/host-tegra' into next 2016-12-12 11:25:12 -06:00
perf
phy Documentation: dt-bindings: rename meson-usb2-phy to meson8b-usb2-phy 2016-11-18 18:19:14 +05:30
pinctrl ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
power dt-bindings: power: supply: add AXP20X/AXP22X AC power supply 2017-01-29 23:15:18 +01:00
power_supply dt-bindings: power: supply: Add max14656_charger_detector 2017-01-16 23:02:52 +01:00
powerpc dt: bindings: move guts devicetree doc out of powerpc directory 2016-11-29 09:17:20 +01:00
pps
pwm DeviceTree updates for 4.10: 2016-12-15 11:49:41 -08:00
regmap
regulator regulator: Updates for v4.11 2017-02-20 17:23:57 -08:00
remoteproc
reserved-memory
reset ARM: SoC driver updates for v4.10 2016-12-15 16:03:25 -08:00
rng
rtc RTC for 4.10 2016-12-18 18:18:03 -08:00
scsi
security/tpm tpm_tis: Allow tpm_tis to be bound using DT 2016-11-28 01:31:31 +02:00
serial dt-bindings: Cleanups and additions for v4.10-rc1 2016-11-18 18:35:39 -08:00
serio
soc ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
sound Merge remote-tracking branches 'asoc/topic/wm8580', 'asoc/topic/wm8753', 'asoc/topic/wm8978', 'asoc/topic/wm9081' and 'asoc/topic/wm9705' into asoc-next 2016-12-12 15:53:29 +00:00
spi Merge remote-tracking branches 'spi/topic/rockchip', 'spi/topic/rspi', 'spi/topic/s3c64xx', 'spi/topic/sh-msiof' and 'spi/topic/slave' into spi-next 2017-02-19 16:41:05 +00:00
spmi
sram
staging
thermal ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
timer clocksource/drivers/ostm: Document renesas-ostm timer DT bindings 2017-02-07 20:58:30 +01:00
ufs
usb ARM: DT updates for v4.10 2016-12-15 15:50:24 -08:00
video/bridge
virtio
w1
watchdog
x86
xillybus
ABI.txt
chosen.txt
common-properties.txt
graph.txt
marvell.txt
numa.txt
property-units.txt
resource-names.txt
sparc_sun_oracle_rng.txt
submitting-patches.txt
unittest.txt
vendor-prefixes.txt ARM: 64-bit DT updates for v4.10 2016-12-15 15:58:28 -08:00
xilinx.txt