mbox

[PULL] topic/designware-baytrail for 4.12 [UPDATED]

Message ID 20170302155649.bngbuyoqk5nupcbd@phenom.ffwll.local
State Accepted
Headers show

Pull-request

git://anongit.freedesktop.org/git/drm-intel tags/topic/designware-baytrail-2017-03-02

Message

Daniel Vetter March 2, 2017, 3:56 p.m. UTC
Hi Dave,

topic/designware-baytrail-2017-03-02:
Baytrail PMIC vs. PMU race fixes from Hans de Goede

This time the right version (v4), with the compile fix.

Updated pull request with new tag, same story as before

Cheers, Daniel


The following changes since commit 64a577196d66b44e37384bc5c4d78c61f59d5b2a:

  lib/Kconfig: make PRIME_NUMBERS not user selectable. (2017-02-24 12:11:21 +1000)

are available in the git repository at:

  git://anongit.freedesktop.org/git/drm-intel tags/topic/designware-baytrail-2017-03-02

for you to fetch changes up to 264ec1a8221c60f9ccf13f58ac597da21235132d:

  drm/i915: Listen for PMIC bus access notifications (2017-03-02 15:46:37 +0100)

----------------------------------------------------------------
Baytrail PMIC vs. PMU race fixes from Hans de Goede

This time the right version (v4), with the compile fix.

----------------------------------------------------------------
Hans de Goede (12):
      x86/platform/intel/iosf_mbi: Add a mutex for P-Unit access
      x86/platform/intel/iosf_mbi: Add a PMIC bus access notifier
      i2c: designware: Rename accessor_flags to flags
      i2c: designware-baytrail: Pass dw_i2c_dev into helper functions
      i2c: designware-baytrail: Only check iosf_mbi_available() for shared hosts
      i2c: designware-baytrail: Disallow the CPU to enter C6 or C7 while holding the punit semaphore
      i2c: designware-baytrail: Fix race when resetting the semaphore
      i2c: designware-baytrail: Add support for cherrytrail
      i2c: designware-baytrail: Acquire P-Unit access on bus acquire
      i2c: designware-baytrail: Call pmic_bus_access_notifier_chain
      drm/i915: Add intel_uncore_suspend / resume functions
      drm/i915: Listen for PMIC bus access notifications

 arch/x86/include/asm/iosf_mbi.h              | 87 ++++++++++++++++++++++++++++
 arch/x86/platform/intel/iosf_mbi.c           | 49 ++++++++++++++++
 drivers/gpu/drm/i915/Kconfig                 |  1 +
 drivers/gpu/drm/i915/i915_drv.c              |  6 +-
 drivers/gpu/drm/i915/i915_drv.h              |  7 +--
 drivers/gpu/drm/i915/intel_uncore.c          | 53 +++++++++++++++--
 drivers/i2c/busses/i2c-designware-baytrail.c | 83 ++++++++++++++++++--------
 drivers/i2c/busses/i2c-designware-core.c     | 14 ++---
 drivers/i2c/busses/i2c-designware-core.h     | 13 ++++-
 drivers/i2c/busses/i2c-designware-pcidrv.c   | 26 ++++++---
 drivers/i2c/busses/i2c-designware-platdrv.c  |  8 ++-
 11 files changed, 290 insertions(+), 57 deletions(-)

Comments

Daniel Vetter March 13, 2017, 8:25 a.m. UTC | #1
On Thu, Mar 02, 2017 at 04:56:49PM +0100, Daniel Vetter wrote:
> Hi Dave,
> 
> topic/designware-baytrail-2017-03-02:
> Baytrail PMIC vs. PMU race fixes from Hans de Goede
> 
> This time the right version (v4), with the compile fix.
> 
> Updated pull request with new tag, same story as before
> 
> Cheers, Daniel
> 
> 
> The following changes since commit 64a577196d66b44e37384bc5c4d78c61f59d5b2a:
> 
>   lib/Kconfig: make PRIME_NUMBERS not user selectable. (2017-02-24 12:11:21 +1000)
> 
> are available in the git repository at:
> 
>   git://anongit.freedesktop.org/git/drm-intel tags/topic/designware-baytrail-2017-03-02
> 
> for you to fetch changes up to 264ec1a8221c60f9ccf13f58ac597da21235132d:
> 
>   drm/i915: Listen for PMIC bus access notifications (2017-03-02 15:46:37 +0100)

Assuming that no news = good news I've pulled this into drm-intel-next.
-Daniel
> 
> ----------------------------------------------------------------
> Baytrail PMIC vs. PMU race fixes from Hans de Goede
> 
> This time the right version (v4), with the compile fix.
> 
> ----------------------------------------------------------------
> Hans de Goede (12):
>       x86/platform/intel/iosf_mbi: Add a mutex for P-Unit access
>       x86/platform/intel/iosf_mbi: Add a PMIC bus access notifier
>       i2c: designware: Rename accessor_flags to flags
>       i2c: designware-baytrail: Pass dw_i2c_dev into helper functions
>       i2c: designware-baytrail: Only check iosf_mbi_available() for shared hosts
>       i2c: designware-baytrail: Disallow the CPU to enter C6 or C7 while holding the punit semaphore
>       i2c: designware-baytrail: Fix race when resetting the semaphore
>       i2c: designware-baytrail: Add support for cherrytrail
>       i2c: designware-baytrail: Acquire P-Unit access on bus acquire
>       i2c: designware-baytrail: Call pmic_bus_access_notifier_chain
>       drm/i915: Add intel_uncore_suspend / resume functions
>       drm/i915: Listen for PMIC bus access notifications
> 
>  arch/x86/include/asm/iosf_mbi.h              | 87 ++++++++++++++++++++++++++++
>  arch/x86/platform/intel/iosf_mbi.c           | 49 ++++++++++++++++
>  drivers/gpu/drm/i915/Kconfig                 |  1 +
>  drivers/gpu/drm/i915/i915_drv.c              |  6 +-
>  drivers/gpu/drm/i915/i915_drv.h              |  7 +--
>  drivers/gpu/drm/i915/intel_uncore.c          | 53 +++++++++++++++--
>  drivers/i2c/busses/i2c-designware-baytrail.c | 83 ++++++++++++++++++--------
>  drivers/i2c/busses/i2c-designware-core.c     | 14 ++---
>  drivers/i2c/busses/i2c-designware-core.h     | 13 ++++-
>  drivers/i2c/busses/i2c-designware-pcidrv.c   | 26 ++++++---
>  drivers/i2c/busses/i2c-designware-platdrv.c  |  8 ++-
>  11 files changed, 290 insertions(+), 57 deletions(-)
> 
> -- 
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch