1. 14 Oct, 2016 1 commit
  2. 11 Oct, 2016 1 commit
    • Mika Westerberg's avatar
      ACPI / property: Allow holes in reference properties · b60e4ea4
      Mika Westerberg authored
      DT allows holes or empty phandles for references. This is used for example
      in SPI subsystem where some chip selects are native and others are regular
      GPIOs. In ACPI _DSD we currently do not support this but instead the
      preceding reference consumes all following integer arguments.
      
      For example we would like to support something like the below ASL fragment
      for SPI:
      
        Package () {
            "cs-gpios",
            Package () {
                ^GPIO, 19, 0, 0, // GPIO CS0
                0,               // Native CS
                ^GPIO, 20, 0, 0, // GPIO CS1
            }
        }
      
      The zero in the middle means "no entry" or NULL reference. To support this
      we change acpi_data_get_property_reference() to take firmware node and
      num_args as argument and rename it to __acpi_node_get_property_reference().
      The function returns -ENOENT if the given index resolves to "no entry"
      reference and -ENODATA when there are no more entries in the property.
      
      We then add static inline wrapper acpi_node_get_property_reference() that
      passes MAX_ACPI_REFERENCE_ARGS as num_args to support the existing
      behaviour which some drivers have been relying on.
      Signed-off-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
      Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      b60e4ea4
  3. 10 Oct, 2016 1 commit
  4. 03 Oct, 2016 3 commits
    • Linus Torvalds's avatar
      Merge tag 'acpi-4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 72d39926
      Linus Torvalds authored
      Pull ACPI updates from Rafael Wysocki:
       "First off, the ACPICA code in the kernel is updated to upstream
        revision 20160831 that brings in a few bug fixes and cleanups. In
        particular, it is possible to mask GPEs now (and the sysfs interface
        for GPE control is fixed on top of that), problems related to the
        table loading mechanism are fixed and all code related to FADT version
        2 (which has never been part of the ACPI specification) is dropped.
      
        On the new features front, there is a new watchdog driver based on the
        ACPI WDAT (ACPI Watchdog Action Table), needed on some platforms to
        replace the iTCO watchdog that doesn't work there, and some UART
        devices get new definitions of built-in properties (to be accessed via
        the generic device properties API).
      
        Also, included is a fix for an ACPI-related PCI resorces allocation
        issue and a few problems in the EC driver and in the button and
        battery drivers are fixed.
      
        In addition to that, the ACPI CPPC library is updated to make batching
        of requests sent over the PCC channel possible (which reduces the PCC
        usage overhead substantially in some cases) and to support functional
        fixed hardware (FFH) type of CPPC registers access (which will allow
        CPPC to be used on x86 too in the future).
      
        As usual, there are some assorted fixes and cleanups too.
      
        Specifics:
      
         - Update of the ACPICA code in the kernel to upstream revision
           20160831 with the following major changes:
      
            * New mechanism for GPE masking.
            * Fixes for issues related to the LoadTable operator and table
              loading.
            * Fixes for issues related to so-called module-level code (MLC),
              that is AML that doesn't belong to any methods.
            * Change of the return value of the _OSI method to reflect the
              Windows behavior.
            * GAS (Generic Address Structure) support fix related to 32-bit
              FADT addresses.
            * Elimination of unnecessary FADT version 2 support.
            * ACPI tools fixes and cleanups.
      
           From Bob Moore, Lv Zheng, and Jung-uk Kim.
      
         - ACPI sysfs interface updates to fix GPE handling (on top of the new
           GPE masking mechanism in ACPICA) and issues related to table
           loading (Lv Zheng).
      
         - New watchdog driver based on the ACPI WDAT (ACPI Watchdog Action
           Table), needed on some platforms to replace the iTCO watchdog that
           doesn't work there and related updates of the intel_pmc_ipc,
           i2c/i801 and MFD/lcp_ich drivers (Mika Westerberg).
      
         - Driver core fix to prevent it from leaking secondary fwnode objects
           during device removal (Lukas Wunner).
      
         - New definitions of built-in properties for UART in ACPI-based x86
           SoC drivers and a 8250_dw driver quirk for the APM X-Gene SoC
           (Heikki Krogerus).
      
         - New device ID for the Vulcan SPI controller and constification of
           local strucures in the AMD SoC (APD) ACPI driver (Kamlakant Patel,
           Julia Lawall).
      
         - Fix for a bug causing the allocation of PCI resorces to fail if
           ACPI-enumerated child platform devices are registered below the PCI
           devices in question (Mika Westerberg).
      
         - Change of the default polarity for PCI legacy IRQs to high on
           systems booting wth ACPI on platforms with a GIC interrupt
           controller model fixing the discrepancy between the specification
           and HW behavior (Lorenzo Pieralisi).
      
         - Fixes for the handling of system suspend/resume in the ACPI EC
           driver and update of that driver to make it cope with the cases
           when the EC device defined in the ECDT has to be used throughout
           the entire system life cycle (Lv Zheng).
      
         - Update of the ACPI CPPC library to allow it to batch requests sent
           over the PCC channel (to reduce overhead), to support the fixed
           functional hardware (FFH) CPPC registers access type, to notify the
           mailbox framework about TX completions when the interrupt flag is
           set for the PCC mailbox, and to support HW-Reduced Communication
           Subspace type 2 (Ashwin Chaugule, Prashanth Prakash, Srinivas
           Pandruvada, Hoan Tran).
      
         - ACPI button driver fix and documentation update related to the
           handling of laptop lids (Lv Zheng).
      
         - ACPI battery driver initialization fix (Carlos Garnacho).
      
         - ACPI GPIO enumeration documentation update (Mika Westerberg).
      
         - Assorted updates of the core ACPI bus type code (Lukas Wunner, Lv
           Zheng).
      
         - Assorted cleanups of the ACPI table parsing code and the
           x86-specific ACPI code (Al Stone).
      
         - Fixes for assorted ACPI-related issues found in linux-next (Wei
           Yongjun)"
      
      * tag 'acpi-4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (98 commits)
        ACPI / documentation: Use recommended name in GPIO property names
        watchdog: wdat_wdt: Fix warning for using 0 as NULL
        watchdog: wdat_wdt: fix return value check in wdat_wdt_probe()
        platform/x86: intel_pmc_ipc: Do not create iTCO watchdog when WDAT table exists
        i2c: i801: Do not create iTCO watchdog when WDAT table exists
        mfd: lpc_ich: Do not create iTCO watchdog when WDAT table exists
        ACPI / bus: Adjust ACPI subsystem initialization for new table loading mode
        ACPICA: Parser: Fix a regression in LoadTable support
        ACPICA: Tables: Fix "UNLOAD" code path lock issues
        ACPI / watchdog: Add support for WDAT hardware watchdog
        ACPI / platform: Pay attention to parent device's resources
        PCI: Add pci_find_resource()
        ACPI / CPPC: Support PCC with interrupt flag
        ACPI / sysfs: Update sysfs signature handling code
        ACPI / sysfs: Fix an issue for LoadTable opcode
        ACPICA: Tables: Fix a regression in acpi_tb_find_table()
        ACPI / tables: Remove duplicated include from tables.c
        ACPI / APD: constify local structures
        x86: ACPI: make variable names clearer in acpi_parse_madt_lapic_entries()
        x86: ACPI: remove extraneous white space after semicolon
        ...
      72d39926
    • Linus Torvalds's avatar
      Merge tag 'pm-4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm · 72ec9456
      Linus Torvalds authored
      Pull power management updates from Rafael Wysocki:
       "Traditionally, cpufreq is the area with the greatest number of
        changes, but there are fewer of them than last time. There also is
        some activity in the generic power domains and the devfreq frameworks,
        a couple of system suspend and hibernation fixes and some assorted
        changes in other places.
      
        One new feature is the cpufreq change to allow the scheduler to pass
        hints to the governors' utilization update callbacks and some code
        rework based on that. Another one is the support for domain removal in
        the generic power domains framework. Also it is now possible to use
        hibernation with PAGE_POISONING_ZERO enabled and devfreq supports the
        RockChip DFI controller and the rk3399 DMC.
      
        The rest of the changes is mostly fixes and cleanups in a number of
        places.
      
        Specifics:
      
         - Add a mechanism for passing hints from the scheduler to cpufreq
           governors via their utilization update callbacks and use it to
           introduce "IOwait boosting" into the schedutil governor and
           intel_pstate that will make them boost performance if the enqueued
           task was previously waiting on I/O (Rafael Wysocki).
      
         - Fix a schedutil governor problem that causes it to overestimate
           utilization if SMT is in use (Steve Muckle).
      
         - Update defconfigs trying to use the schedutil governor as a module
           which is not possible any more (Javier Martinez Canillas).
      
         - Update the intel_pstate's pstate_sample tracepoint to take "IOwait
           boosting" into account (Srinivas Pandruvada).
      
         - Fix a problem in the cpufreq core causing it to mishandle the
           initialization of CPUs registered after the cpufreq driver (Viresh
           Kumar, Rafael Wysocki).
      
         - Make the cpufreq-dt driver support per-policy governor tunables,
           clean it up and update its Kconfig description (Viresh Kumar).
      
         - Add support for more ARM platforms to the cpufreq-dt driver
           (Chanwoo Choi, Dave Gerlach, Geert Uytterhoeven).
      
         - Make the cpufreq CPPC driver report frequencies in KHz to avoid
           user space compatiblility issues (Al Stone, Hoan Tran).
      
         - Clean up a few cpufreq drivers (st, kirkwood, SCPI) a bit (Colin
           Ian King, Markus Elfring).
      
         - Constify some local structures in the intel_pstate driver (Julia
           Lawall).
      
         - Add a Documentation/cpu-freq/ entry to MAINTAINERS (Jean Delvare).
      
         - Add support for PM domain removal to the generic power domains
           (genpd) framework, add new DT helper functions to it and make it
           always enable debugfs support if available (Jon Hunter, Tomeu
           Vizoso).
      
         - Clean up the generic power domains (genpd) framework and make it
           avoid measuring power-on and power-off latencies during system-wide
           PM transitions (Ulf Hansson).
      
         - Add support for the RockChip DFI controller and the rk3399 DMC to
           the devfreq framework (Lin Huang, Axel Lin, Arnd Bergmann).
      
         - Add COMPILE_TEST to the devfreq framework (Krzysztof Kozlowski,
           Stephen Rothwell).
      
         - Fix a minor issue in the exynos-ppmu devfreq driver and fix up
           devfreq Kconfig indentation style (Wei Yongjun, Jisheng Zhang).
      
         - Fix the system suspend interface to make suspend-to-idle work if
           platform suspend operations have not been registered (Sudeep
           Holla).
      
         - Make it possible to use hibernation with PAGE_POISONING_ZERO
           enabled (Anisse Astier).
      
         - Increas the default timeout of the system suspend/resume watchdog
           and make it depend on EXPERT (Chen Yu).
      
         - Make the operating performance points (OPP) framework avoid using
           OPPs that aren't supported by the platform and fix a build warning
           in it (Dave Gerlach, Arnd Bergmann).
      
         - Fix the ARM cpuidle driver's return value (Christophe Jaillet).
      
         - Make the SmartReflex AVS (Adaptive Voltage Scaling) driver use more
           common logging style (Joe Perches)"
      
      * tag 'pm-4.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (58 commits)
        PM / OPP: Don't support OPP if it provides supported-hw but platform does not
        cpufreq: st: add missing \n to end of dev_err message
        cpufreq: kirkwood: add missing \n to end of dev_err messages
        PM / Domains: Rename pm_genpd_sync_poweron|poweroff()
        PM / Domains: Don't measure latency of ->power_on|off() during system PM
        PM / Domains: Remove redundant system PM callbacks
        PM / Domains: Simplify detaching a device from its genpd
        PM / devfreq: rk3399_dmc: Remove explictly regulator_put call in .remove
        PM / devfreq: rockchip: add PM_DEVFREQ_EVENT dependency
        PM / OPP: avoid maybe-uninitialized warning
        PM / Domains: Allow holes in genpd_data.domains array
        cpufreq: CPPC: Avoid overflow when calculating desired_perf
        cpufreq: ti: Use generic platdev driver
        cpufreq: intel_pstate: Add io_boost trace
        partial revert of "PM / devfreq: Add COMPILE_TEST for build coverage"
        cpufreq: intel_pstate: Use IOWAIT flag in Atom algorithm
        cpufreq: schedutil: Add iowait boosting
        cpufreq / sched: SCHED_CPUFREQ_IOWAIT flag to indicate iowait condition
        PM / Domains: Add support for removing nested PM domains by provider
        PM / Domains: Add support for removing PM domains
        ...
      72ec9456
    • Linus Torvalds's avatar
      Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux · 7af8a0f8
      Linus Torvalds authored
      Pull arm64 updates from Will Deacon:
       "It's a bit all over the place this time with no "killer feature" to
        speak of.  Support for mismatched cache line sizes should help people
        seeing whacky JIT failures on some SoCs, and the big.LITTLE perf
        updates have been a long time coming, but a lot of the changes here
        are cleanups.
      
        We stray outside arch/arm64 in a few areas: the arch/arm/ arch_timer
        workaround is acked by Russell, the DT/OF bits are acked by Rob, the
        arch_timer clocksource changes acked by Marc, CPU hotplug by tglx and
        jump_label by Peter (all CC'd).
      
        Summary:
      
         - Support for execute-only page permissions
         - Support for hibernate and DEBUG_PAGEALLOC
         - Support for heterogeneous systems with mismatches cache line sizes
         - Errata workarounds (A53 843419 update and QorIQ A-008585 timer bug)
         - arm64 PMU perf updates, including cpumasks for heterogeneous systems
         - Set UTS_MACHINE for building rpm packages
         - Yet another head.S tidy-up
         - Some cleanups and refactoring, particularly in the NUMA code
         - Lots of random, non-critical fixes across the board"
      
      * tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux: (100 commits)
        arm64: tlbflush.h: add __tlbi() macro
        arm64: Kconfig: remove SMP dependence for NUMA
        arm64: Kconfig: select OF/ACPI_NUMA under NUMA config
        arm64: fix dump_backtrace/unwind_frame with NULL tsk
        arm/arm64: arch_timer: Use archdata to indicate vdso suitability
        arm64: arch_timer: Work around QorIQ Erratum A-008585
        arm64: arch_timer: Add device tree binding for A-008585 erratum
        arm64: Correctly bounds check virt_addr_valid
        arm64: migrate exception table users off module.h and onto extable.h
        arm64: pmu: Hoist pmu platform device name
        arm64: pmu: Probe default hw/cache counters
        arm64: pmu: add fallback probe table
        MAINTAINERS: Update ARM PMU PROFILING AND DEBUGGING entry
        arm64: Improve kprobes test for atomic sequence
        arm64/kvm: use alternative auto-nop
        arm64: use alternative auto-nop
        arm64: alternative: add auto-nop infrastructure
        arm64: lse: convert lse alternatives NOP padding to use __nops
        arm64: barriers: introduce nops and __nops macros for NOP sequences
        arm64: sysreg: replace open-coded mrs_s/msr_s with {read,write}_sysreg_s
        ...
      7af8a0f8
  5. 02 Oct, 2016 7 commits
    • Linus Torvalds's avatar
      Linux 4.8 · c8d2bc9b
      Linus Torvalds authored
      c8d2bc9b
    • Linus Torvalds's avatar
      Merge branch 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm · f76d9c61
      Linus Torvalds authored
      Pull ARM fixes from Russell King:
       "Three relatively small fixes for ARM:
      
         - Roger noticed that dma_max_pfn() was calculating the upper limit
           wrongly, by adding the PFN offset of memory twice.
      
         - A fix from Robin to correct parsing of MPIDR values when the
           address size is larger than one BE32 unit.
      
         - A fix from Srinivas to ensure that we do not rely on the boot
           loader (or previous Linux kernel) setting the translation table
           base register a certain way in the decompressor, which can lead to
           crashes"
      
      * 'fixes' of git://git.armlinux.org.uk/~rmk/linux-arm:
        ARM: 8618/1: decompressor: reset ttbcr fields to use TTBR0 on ARMv7
        ARM: 8617/1: dma: fix dma_max_pfn()
        ARM: 8616/1: dt: Respect property size when parsing CPUs
      f76d9c61
    • Srinivas Ramana's avatar
      ARM: 8618/1: decompressor: reset ttbcr fields to use TTBR0 on ARMv7 · 117e5e9c
      Srinivas Ramana authored
      If the bootloader uses the long descriptor format and jumps to
      kernel decompressor code, TTBCR may not be in a right state.
      Before enabling the MMU, it is required to clear the TTBCR.PD0
      field to use TTBR0 for translation table walks.
      
      The commit dbece458 ("ARM: 7501/1: decompressor:
      reset ttbcr for VMSA ARMv7 cores") does the reset of TTBCR.N, but
      doesn't consider all the bits for the size of TTBCR.N.
      
      Clear TTBCR.PD0 field and reset all the three bits of TTBCR.N to
      indicate the use of TTBR0 and the correct base address width.
      
      Fixes: dbece458 ("ARM: 7501/1: decompressor: reset ttbcr for VMSA ARMv7 cores")
      Acked-by: default avatarRobin Murphy <robin.murphy@arm.com>
      Signed-off-by: default avatarSrinivas Ramana <sramana@codeaurora.org>
      Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
      117e5e9c
    • Linus Torvalds's avatar
      Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · be67d60b
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "The last regression fixes for 4.8 final:
      
         - Two patches addressing the fallout of the CR4 optimizations which
           caused CR4-less machines to fail.
      
         - Fix the VDSO build on big endian machines
      
         - Take care of FPU initialization if no CPUID is available otherwise
           task struct size ends up being zero
      
         - Fix up context tracking in case load_gs_index fails"
      
      * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/entry/64: Fix context tracking state warning when load_gs_index fails
        x86/boot: Initialize FPU and X86_FEATURE_ALWAYS even if we don't have CPUID
        x86/vdso: Fix building on big endian host
        x86/boot: Fix another __read_cr4() case on 486
        x86/init: Fix cr4_init_shadow() on CR4-less machines
      be67d60b
    • Linus Torvalds's avatar
      Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus · 66188fb1
      Linus Torvalds authored
      Pull MIPS fixes from Ralf Baechle:
       "Another round of fixes:
      
         - CM: Fix mips_cm_max_vp_width for non-MT kernels on MT systems
         - CPS: Avoid BUG() when offlining pre-r6 CPUs
         - DEC: Avoid gas warnings due to suspicious instruction scheduling by
           manually expanding assembler macros.
         - FTLB: Fix configuration by moving confiuguratoin after probing
         - FTLB: clear execution hazard after changing FTLB enable
         - Highmem: Fix detection of unsupported highmem with cache aliases
         - I6400: Don't touch FTLBP chicken bits
         - microMIPS: Fix BUILD_ROLLBACK_PROLOGUE
         - Malta: Fix IOCU disable switch read for MIPS64
         - Octeon: Fix probing of devices attached to GPIO lines
         - uprobes: Misc small fixes"
      
      * 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus:
        MIPS: CM: Fix mips_cm_max_vp_width for non-MT kernels on MT systems
        MIPS: Fix detection of unsupported highmem with cache aliases
        MIPS: Malta: Fix IOCU disable switch read for MIPS64
        MIPS: Fix BUILD_ROLLBACK_PROLOGUE for microMIPS
        MIPS: clear execution hazard after changing FTLB enable
        MIPS: Configure FTLB after probing TLB sizes from config4
        MIPS: Stop setting I6400 FTLBP
        MIPS: DEC: Avoid la pseudo-instruction in delay slots
        MIPS: Octeon: mark GPIO controller node not populated after IRQ init.
        MIPS: uprobes: fix use of uninitialised variable
        MIPS: uprobes: remove incorrect set_orig_insn
        MIPS: fix uretprobe implementation
        MIPS: smp-cps: Avoid BUG() when offlining pre-r6 CPUs
      66188fb1
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc · 0c7fc30f
      Linus Torvalds authored
      Pull sparc fixes from David Miller:
      
       1) Fix section mismatches in some builds, from Paul Gortmaker.
      
       2) Need to count huge zero page mappings when doing TSB sizing, from
          Mike Kravetz.
      
       3) Fix handing of cpu_possible_mask when nr_cpus module option is
          specified, from Atish Patra.
      
       4) Don't allocate irq stacks until nr_irqs has been processed, also
          from Atish Patra.
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc:
        sparc64: Fix non-SMP build.
        sparc64: Fix irq stack bootmem allocation.
        sparc64: Fix cpu_possible_mask if nr_cpus is set
        sparc64 mm: Fix more TSB sizing issues
        sparc64: fix section mismatch in find_numa_latencies_for_group
      0c7fc30f
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net · bb6bbc7c
      Linus Torvalds authored
      Pull networking fixes from David Miller:
      
       1) Fix wrong TCP checksums on MTU probing when checksum offloading is
          disabled, from Douglas Caetano dos Santos.
      
       2) Fix qdisc backlog updates in qfq and sfb schedulers, from Cong Wang.
      
       3) Route lookup flow key protocol value is wrong in ip6gre_xmit_other(),
          fix from Lance Richardson.
      
       4) Scheduling while atomic in multicast routing code of ipv4 and ipv6,
          fix from Nikolay Aleksandrov.
      
       5) Fix packet alignment in fec driver, from Eric Nelson.
      
       6) Fix perf regression in sctp due to struct layout and cache misses,
          from Xin Long.
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net:
        sctp: fix the issue sctp_diag uses lock_sock in rcu_read_lock
        sctp: change to check peer prsctp_capable when using prsctp polices
        sctp: remove prsctp_param from sctp_chunk
        sctp: move sent_count to the memory hole in sctp_chunk
        tg3: Avoid NULL pointer dereference in tg3_io_error_detected()
        act_ife: Fix false encoding
        act_ife: Fix external mac header on encode
        VSOCK: Don't dec ack backlog twice for rejected connections
        Revert "net: ethernet: bcmgenet: use phydev from struct net_device"
        net: fec: align IP header in hardware
        net: fec: remove QUIRK_HAS_RACC from i.mx27
        net: fec: remove QUIRK_HAS_RACC from i.mx25
        ipmr, ip6mr: fix scheduling while atomic and a deadlock with ipmr_get_route
        ip6_gre: fix flowi6_proto value in ip6gre_xmit_other()
        tcp: fix a compile error in DBGUNDO()
        tcp: fix wrong checksum calculation on MTU probing
        sch_sfb: keep backlog updated with qlen
        sch_qfq: keep backlog updated with qlen
        can: dev: fix deadlock reported after bus-off
      bb6bbc7c
  6. 01 Oct, 2016 15 commits
    • Rafael J. Wysocki's avatar
      Merge branches 'pm-devfreq' and 'pm-sleep' · 993eb0ae
      Rafael J. Wysocki authored
      * pm-devfreq:
        PM / devfreq: rk3399_dmc: Remove explictly regulator_put call in .remove
        PM / devfreq: rockchip: add PM_DEVFREQ_EVENT dependency
        partial revert of "PM / devfreq: Add COMPILE_TEST for build coverage"
        PM / devfreq: rockchip: add devfreq driver for rk3399 dmc
        Documentation: bindings: add dt documentation for rk3399 dmc
        PM / devfreq: event: support rockchip dfi controller
        Documentation: bindings: add dt documentation for dfi controller
        PM / devfreq: event: remove duplicate devfreq_event_get_drvdata()
        PM / devfreq: fix Kconfig indent style
        PM / devfreq: Add COMPILE_TEST for build coverage
        PM / devfreq: exynos-ppmu: remove unneeded of_node_put()
      
      * pm-sleep:
        PM / Hibernate: allow hibernation with PAGE_POISONING_ZERO
        PM / sleep: enable suspend-to-idle even without registered suspend_ops
        PM / sleep: Increase default DPM watchdog timeout to 120
      993eb0ae
    • Rafael J. Wysocki's avatar
      Merge branches 'pm-cpuidle', 'pm-opp' and 'pm-avs' · e35db92b
      Rafael J. Wysocki authored
      * pm-cpuidle:
        ARM: cpuidle: Fix error return code
      
      * pm-opp:
        PM / OPP: Don't support OPP if it provides supported-hw but platform does not
        PM / OPP: avoid maybe-uninitialized warning
      
      * pm-avs:
        PM / AVS: SmartReflex: Neaten logging
      e35db92b
    • Rafael J. Wysocki's avatar
      Merge branch 'pm-cpufreq' · 7005f6dc
      Rafael J. Wysocki authored
      * pm-cpufreq: (24 commits)
        cpufreq: st: add missing \n to end of dev_err message
        cpufreq: kirkwood: add missing \n to end of dev_err messages
        cpufreq: CPPC: Avoid overflow when calculating desired_perf
        cpufreq: ti: Use generic platdev driver
        cpufreq: intel_pstate: Add io_boost trace
        cpufreq: intel_pstate: Use IOWAIT flag in Atom algorithm
        cpufreq: schedutil: Add iowait boosting
        cpufreq / sched: SCHED_CPUFREQ_IOWAIT flag to indicate iowait condition
        cpufreq: CPPC: Force reporting values in KHz to fix user space interface
        cpufreq: create link to policy only for registered CPUs
        intel_pstate: constify local structures
        cpufreq: dt: Support governor tunables per policy
        cpufreq: dt: Update kconfig description
        cpufreq: dt: Remove unused code
        MAINTAINERS: Add Documentation/cpu-freq/
        cpufreq: dt: Add support for r8a7792
        cpufreq / sched: ignore SMT when determining max cpu capacity
        cpufreq: Drop unnecessary check from cpufreq_policy_alloc()
        ARM: multi_v7_defconfig: Don't attempt to enable schedutil governor as module
        ARM: exynos_defconfig: Don't attempt to enable schedutil governor as module
        ...
      7005f6dc
    • Rafael J. Wysocki's avatar
      b6e25117
    • Rafael J. Wysocki's avatar
      Merge branch 'pm-domains' · 2dc3c72c
      Rafael J. Wysocki authored
      * pm-domains:
        PM / Domains: Rename pm_genpd_sync_poweron|poweroff()
        PM / Domains: Don't measure latency of ->power_on|off() during system PM
        PM / Domains: Remove redundant system PM callbacks
        PM / Domains: Simplify detaching a device from its genpd
        PM / Domains: Allow holes in genpd_data.domains array
        PM / Domains: Add support for removing nested PM domains by provider
        PM / Domains: Add support for removing PM domains
        PM / Domains: Store the provider in the PM domain structure
        PM / Domains: Prepare for adding support to remove PM domains
        PM / Domains: Verify the PM domain is present when adding a provider
        PM / Domains: Don't expose xlate and provider helper functions
        PM / Domains: Don't expose generic_pm_domain structure to clients
        staging: board: Remove calls to of_genpd_get_from_provider()
        ARM: EXYNOS: Remove calls to of_genpd_get_from_provider()
        PM / Domains: Add new helper functions for device-tree
        PM / Domains: Always enable debugfs support if available
      2dc3c72c
    • Paul Burton's avatar
      MIPS: CM: Fix mips_cm_max_vp_width for non-MT kernels on MT systems · 6605d156
      Paul Burton authored
      When discovering the number of VPEs per core, smp_num_siblings will be
      incorrect for kernels built without support for the MIPS MultiThreading
      (MT) ASE running on systems which implement said ASE. This leads to
      accesses to VPEs in secondary cores being performed incorrectly since
      mips_cm_vp_id calculates the wrong ID to write to the local "other"
      registers. Fix this by examining the number of VPEs in the core as
      reported by the CM.
      
      This patch presumes that the number of VPEs will be the same in each
      core of the system. As this path only applies to systems with CM version
      2.5 or lower, and this property is true of all such known systems, this
      is likely to be fine but is described in a comment for good measure.
      Signed-off-by: default avatarPaul Burton <paul.burton@imgtec.com>
      Cc: linux-mips@linux-mips.org
      Patchwork: https://patchwork.linux-mips.org/patch/14338/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
      6605d156
    • Rafael J. Wysocki's avatar
      Merge branches 'acpi-button', 'acpi-battery' and 'acpi-doc' · 8c4b1721
      Rafael J. Wysocki authored
      * acpi-button:
        ACPI / button: Add document for ACPI control method lid device restrictions
        ACPI / button: Fix an issue in button.lid_init_state=ignore mode
      
      * acpi-battery:
        ACPI / battery: Add sysfs representation after checking _BST
      
      * acpi-doc:
        ACPI / documentation: Use recommended name in GPIO property names
      8c4b1721
    • Rafael J. Wysocki's avatar
      Merge branches 'acpi-wdat' and 'acpi-ec' · 0137a337
      Rafael J. Wysocki authored
      * acpi-wdat:
        watchdog: wdat_wdt: Fix warning for using 0 as NULL
        watchdog: wdat_wdt: fix return value check in wdat_wdt_probe()
        platform/x86: intel_pmc_ipc: Do not create iTCO watchdog when WDAT table exists
        i2c: i801: Do not create iTCO watchdog when WDAT table exists
        mfd: lpc_ich: Do not create iTCO watchdog when WDAT table exists
        ACPI / watchdog: Add support for WDAT hardware watchdog
      
      * acpi-ec:
        ACPI / EC: Fix issues related to boot_ec
        ACPI / EC: Fix a gap that ECDT EC cannot handle EC events
        ACPI / EC: Fix a memory leakage issue in acpi_ec_add()
        ACPI / EC: Cleanup first_ec/boot_ec code
        ACPI / EC: Enable event freeze mode to improve event handling for suspend process
        ACPI / EC: Add PM operations to improve event handling for suspend process
        ACPI / EC: Add PM operations to improve event handling for resume process
        ACPI / EC: Fix an issue that SCI_EVT cannot be detected after event is enabled
        ACPI / EC: Add EC_FLAGS_QUERY_ENABLED to reveal a hidden logic
        ACPI / EC: Add PM operations for suspend/resume noirq stage
      0137a337
    • Rafael J. Wysocki's avatar
      Merge branches 'acpi-x86', 'acpi-cppc' and 'acpi-soc' · 0d573c6a
      Rafael J. Wysocki authored
      * acpi-x86:
        x86: ACPI: make variable names clearer in acpi_parse_madt_lapic_entries()
        x86: ACPI: remove extraneous white space after semicolon
      
      * acpi-cppc:
        ACPI / CPPC: Support PCC with interrupt flag
        ACPI / CPPC: Add prefix cppc to cpudata structure name
        ACPI / CPPC: Add support for functional fixed hardware address
        ACPI / CPPC: Don't return on CPPC probe failure
        ACPI / CPPC: Allow build with ACPI_CPU_FREQ_PSS config
        ACPI / CPPC: check for error bit in PCC status field
        ACPI / CPPC: move all PCC related information into pcc_data
        ACPI / CPPC: add sysfs support to compute delivered performance
        ACPI / CPPC: set a non-zero value for transition_latency
        ACPI / CPPC: support for batching CPPC requests
        ACPI / CPPC: acquire pcc_lock only while accessing PCC subspace
        ACPI / CPPC: restructure read/writes for efficient sys mapped reg ops
        mailbox: pcc: Support HW-Reduced Communication Subspace type 2
      
      * acpi-soc:
        ACPI / APD: constify local structures
        ACPI / APD: Add device HID for Vulcan SPI controller
      0d573c6a
    • Rafael J. Wysocki's avatar
      Merge branch 'acpi-bus' · 4ec9e289
      Rafael J. Wysocki authored
      * acpi-bus:
        ACPI / bus: Adjust ACPI subsystem initialization for new table loading mode
        ACPI / bus: Make acpi_get_first_physical_node() public
      4ec9e289
    • Rafael J. Wysocki's avatar
      Merge branches 'acpi-sysfs', 'acpi-pci' and 'acpi-tables' · 84a78c72
      Rafael J. Wysocki authored
      * acpi-sysfs:
        ACPI / sysfs: Update sysfs signature handling code
        ACPI / sysfs: Fix an issue for LoadTable opcode
        ACPI / sysfs: Use new GPE masking mechanism in GPE interface
      
      * acpi-pci:
        ACPI / platform: Pay attention to parent device's resources
        PCI: Add pci_find_resource()
        ACPI / PCI: fix GIC irq model default PCI IRQ polarity
      
      * acpi-tables:
        ACPI / tables: Remove duplicated include from tables.c
        ACPI / tables: do not report the number of entries ignored by acpi_parse_entries()
        ACPI / tables: fix acpi_parse_entries_array() so it traverses all subtables
        ACPI / tables: fix incorrect counts returned by acpi_parse_entries_array()
      84a78c72
    • Rafael J. Wysocki's avatar
      Merge branch 'acpica' · 9274139f
      Rafael J. Wysocki authored
      * acpica: (45 commits)
        ACPICA: Parser: Fix a regression in LoadTable support
        ACPICA: Tables: Fix "UNLOAD" code path lock issues
        ACPICA: Tables: Fix a regression in acpi_tb_find_table()
        ACPICA: Update version to 20160831
        ACPICA: Tables: Tune table mutex to be a leaf lock
        ACPICA: Dispatcher: Fix a mutex issue for method auto serialization
        ACPICA: Namespace: Fix dynamic table loading issues
        ACPICA: Namespace: Add acpi_ns_get_node_unlocked()
        ACPICA: Interpreter: Fix MLC issues by switching to new term_list grammar for table loading
        ACPICA: Update return value for intenal _OSI method
        ACPICA: Tables: Override all 64-bit GAS fields when acpi_gbl_use32_bit_fadt_addresses is TRUE
        ACPICA: Tables: Add new table events indicating table installation/uninstallation
        ACPICA: Tables: Remove wrong table event macros
        ACPICA: Tables: Remove acpi_tb_install_fixed_table()
        ACPICA: Add a couple of casts to uthex.c
        ACPICA: Cleanup for all string-to-integer conversions
        ACPICA: Debugger: Add subcommand for predefined name execution
        ACPICA: Update version to 20160729
        ACPICA: OSL: Fix a regression that old GCC requires a workaround for strchr()
        ACPICA: OSL: Cleanup the inclusion order of the compiler-specific headers
        ...
      9274139f
    • Rafael J. Wysocki's avatar
      Merge branch 'device-properties' · 52ff5adc
      Rafael J. Wysocki authored
      * device-properties:
        serial: 8250_dw: Add quirk for APM X-Gene SoC
        ACPI / LPSS: Provide build-in properties of the UART
        ACPI / APD: Provide build-in properties of the UART
        driver core: Don't leak secondary fwnode on device removal
      52ff5adc
    • Linus Torvalds's avatar
      Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · f51fdffa
      Linus Torvalds authored
      Pull SCSI fix from James Bottomley:
       "One final fix before 4.8.
      
        There was a memory leak triggered by turning scsi mq off due to the
        fact that we assume on host release that the already running hosts
        weren't mq based because that's the state of the global flag (even
        though they were).
      
        Fix it by tracking this on a per host host basis"
      
      * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
        scsi: Avoid that toggling use_blk_mq triggers a memory leak
      f51fdffa
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input · 2161a2a6
      Linus Torvalds authored
      Pull input fix from Dmitry Torokhov:
       "One small change to make joydev (which is used by older games) to bind
        to devices that export Z axis but not X or Y (such as TRC rudder)"
      
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
        Input: joydev - recognize devices with Z axis as joysticks
      2161a2a6
  7. 30 Sep, 2016 12 commits