Re: [linux-yocto] [PATCH 0/4] powercap/RAPL: Backport powercap/RAPL patch for 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:36 PM To: Yu, Ong Hock ; linux-yocto@yoctoproject.org Subject: Re: [PATCH 0/4] powercap/RAPL: Backport powercap/RAPL patch for 4.1 On 2016-03-14 1:30 AM, ong.hock...@int

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, ong.hock...@intel.com wrote: > F

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: intel

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 ena

Re: [linux-yocto] [PATCH 0/4] powercap/RAPL: Backport powercap/RAPL patch for 4.1

2016-03-14 Thread Bruce Ashfield
On 2016-03-14 1:30 AM, ong.hock...@intel.com wrote: From: "Yu, Ong Hock" The patch "powercap / RAPL: Enable Broxton RAPL support" is to enable Broxton RAPL support. The rest of the 3 patches are dependency patches, to ensure the above patches applied cleanly to the branch. staged in the 4.1

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-4.1 on standard/bas

[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 drivers/gpu/drm

[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 codecs when power wel

[linux-yocto] [PATCH 1/2] ALSA: hda - Add hduadio support to DEVTABLE

2016-03-14 Thread Yong, Jonathan
From: "Subhransu S. Prusty" For generating modalias entries automatically, move the definition of struct hda_device_id to linux/mod_devicetable.h and add the handling of this record in file2alias helper. The new modalias is represented with combination of vendor id, device id, and api version as

[linux-yocto] [PATCH 5/6] pinctrl: intel: Allow requesting pins which are in ACPI mode as GPIOs

2016-03-14 Thread Tan Jui Nee
From: Mika Westerberg Reserved for ACPI actually means that in such case the GPIO hardware will not update the interrupt status register (GPI_IS) even if the pin is configured to trigger an interrupt. It will update GPI_GPE_STS instead and does not trigger an interrupt. Allow using such pins as

[linux-yocto] [PATCH 6/6] pinctrl: intel: Add Intel Broxton pin controller support

2016-03-14 Thread Tan Jui Nee
From: Mika Westerberg This driver adds pinctrl/GPIO support for Intel Broxton. The GPIO controller is based on the same hardware design that is already used in Intel Sunrisepoint so we leverage the core driver here. Signed-off-by: Mika Westerberg Signed-off-by: Linus Walleij (cherry picked fro

[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 error code might be different from

[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. Signed-off-by: Mika Westerberg

[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 request the interrupt using devm_req

[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 well. Signed-off-by: Mika Westerber

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

2016-03-14 Thread Tan Jui Nee
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: intel: Add Intel Broxton pin controller support"