Re: [linux-yocto] [PATCH] Thermal: Backport thermal patch to 4.1

2016-03-14 Thread Yu, Ong Hock
Thanks! -Original Message- From: Bruce Ashfield [mailto:bruce.ashfi...@windriver.com] Sent: Tuesday, March 15, 2016 12:35 PM To: Yu, Ong Hock ; linux-yocto@yoctoproject.org Subject: Re: [PATCH] Thermal: Backport thermal patch to 4.1 On 2016-03-14 1:29 AM,

Re: [linux-yocto] [PATCH 0/6] Backport pinctrl/intel patches from mainline kernel into linux-yocto-4.1

2016-03-14 Thread Bruce Ashfield
On 2016-03-14 9:48 PM, Tan Jui Nee wrote: Hi Bruce, The patches are to backport Intel Broxton and Sunrisepoint-H patches that are available in the mainline Linux kernel, upstreamed by Mika Westerberg. The patch "pinctrl: intel: sunrisepoint: Add Intel Sunrisepoint-H support" and "pinctrl:

Re: [linux-yocto] [PATCH 0/2] Minor updates for i915 audio support for 4.1

2016-03-14 Thread Bruce Ashfield
On 2016-03-14 10:01 PM, Yong, Jonathan wrote: Hi Linux-yocto, These 2 patches are already in Linus's tree. Patches should apply for linux-yocto-4.1 standard/base. Staged. Will send updates when my builds complete. Bruce Thanks. Lu, Han (1): drm/i915/audio: add codec wakeup override

Re: [linux-yocto] [PATCH] Thermal: Backport thermal patch to 4.1

2016-03-14 Thread Bruce Ashfield
On 2016-03-14 1:29 AM, ong.hock...@intel.com wrote: From: "Yu, Ong Hock" The patch is to enable Broxton and Apollo Lake thermal reporting device. Staged. Once my test builds are complete, I'll send updates to the SRCREVs. Bruce The patches are targetted for

[linux-yocto] [PATCH 0/2] Minor updates for i915 audio support for 4.1

2016-03-14 Thread Yong, Jonathan
Hi Linux-yocto, These 2 patches are already in Linus's tree. Patches should apply for linux-yocto-4.1 standard/base. Thanks. Lu, Han (1): drm/i915/audio: add codec wakeup override enabled/disable callback Subhransu S. Prusty (1): ALSA: hda - Add hduadio support to DEVTABLE

[linux-yocto] [PATCH 2/2] drm/i915/audio: add codec wakeup override enabled/disable callback

2016-03-14 Thread Yong, Jonathan
From: "Lu, Han" Add support for enabling codec wakeup override signal to allow re-enumeration of the controller on SKL after resume from low power state. In SKL, HDMI/DP codec and PCH HD Audio Controller are in different power wells, so it's necessary to reset display audio

[linux-yocto] [PATCH 2/6] pinctrl: make pinctrl_register() return proper error code

2016-03-14 Thread Tan Jui Nee
From: Masahiro Yamada Currently, pinctrl_register() just returns NULL on error, so the callers can not know the exact reason of the failure. Some of the pinctrl drivers return -EINVAL, some -ENODEV, and some -ENOMEM on error of pinctrl_register(), although the

[linux-yocto] [PATCH 1/6] pinctrl: intel: sunrisepoint: Add Intel Sunrisepoint-H support

2016-03-14 Thread Tan Jui Nee
From: Mika Westerberg Intel Sunrisepoint-H is a desktop version of the PCH (Platform Controller Hub). It has slightly different pin configuration compared to the LP version. This patch adds support for Sunrisepoint-H to the existing pinctrl-sunrisepoint.c driver.

[linux-yocto] [PATCH 4/6] pinctrl: intel: Add support for multiple GPIO chips sharing the interrupt

2016-03-14 Thread Tan Jui Nee
From: Mika Westerberg On Intel Broxton the GPIO hardware consists of several chips that all share the parent interrupt. It is not possible to handle this by setting chained handler for each chip (as they will overwrite each other). To overcome this we need to

[linux-yocto] [PATCH 3/6] pinctrl: intel: Fix compilation warning when !CONFIG_PM_SLEEP

2016-03-14 Thread Tan Jui Nee
From: Mika Westerberg We get following warning when CONFIG_PM_SLEEP is not set warning: ‘intel_gpio_irq_init’ defined but not used [-Wunused-function] Since the function is only called from intel_pinctrl_resume() move it inside CONFIG_PM_SLEEP guard as