[linux-yocto] [PATCH] brcmfmac: Prevent re-tuning conflicting with 'wake-up'

2016-07-11 Thread Lim Key Seong
Hi Bruce, This patch is in the process of upstream. It is unknown when it will be merged. This patch is targeted for linux-yocto-4.1 standard/intel/base. Thanks Best regards KS LIM Adrian Hunter (1): brcmfmac: Prevent re-tuning conflicting with 'wake-up' drivers/net/wireless/brcm80211/brcm

[linux-yocto] [PATCH] brcmfmac: Prevent re-tuning conflicting with 'wake-up'

2016-07-11 Thread Lim Key Seong
From: Adrian Hunter If the device is in a custom sleep state, then re-tuning will fail. Add calls to sdio_retune_hold_now() and sdio_retune_release() to prevent re-tuning before the wake-up command. In the case re-tuning was needed, the wake-up command might return an error, but the wake-up is ex

Re: [linux-yocto] [PATCH 1/1] drm: fix up post-merge commit

2016-07-11 Thread Bruce Ashfield
On 2016-07-11 5:07 PM, Eric Ernst wrote: It appears that the merge of drm-forklift-v4.4.14 into standard/intel/base was completed without issue, but there were errors with the merge conflict resolution when merging base into bxt-rebase. This patch applies the diff between standard/intel/bxt-reba

[linux-yocto] [PATCH 09/10] pinctrl: Remove .owner field

2016-07-11 Thread Yong, Jonathan
From: Fabio Estevam platform_driver does not need to set the owner field, as it will be populated by the driver core, so just remove it. The semantic patch that makes this change is available in scripts/coccinelle/api/platform_no_drv_owner.cocci. Signed-off-by: Fabio Estevam Signed-off-by: Lin

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

2016-07-11 Thread Yong, Jonathan
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 07/10] pinctrl: mediatek: Add Pinctrl/GPIO driver for mt6397.

2016-07-11 Thread Yong, Jonathan
From: Hongzhou Yang Add mt6397 support using mediatek common pinctrl driver. mt6397 is a PMIC, and pinctrl/GPIO is part of 6397 chip. Pinctrl/GPIO driver should obtain regmap from PMIC, so adding this support to common code. Also, mt6397 is no need to support interrupt controller, so changing c

[linux-yocto] [PATCH 08/10] pinctrl: mediatek: add pinctrl/GPIO/EINT driver for mt8127

2016-07-11 Thread Yong, Jonathan
From: Yingjoe Chen MT8127 pinctrl/eint are similar to mt8135 and mt8173, add support for mt8127 using mediatek common pinctrl driver. Signed-off-by: Yingjoe Chen Signed-off-by: Hongzhou Yang Signed-off-by: Linus Walleij (cherry picked from commit 6acdee8c1325ce3b02006f7ed6047f42273c9d44) Sign

[linux-yocto] [PATCH 06/10] pinctrl: add imx7d support

2016-07-11 Thread Yong, Jonathan
From: Frank Li Add i.MX7D pinctrl driver support Signed-off-by: Frank Li Signed-off-by: Anson Huang Signed-off-by: Linus Walleij (cherry picked from commit c30024a6449070d6fde51a8bddf4c97f884db2cc) Signed-off-by: Yong, Jonathan --- drivers/pinctrl/freescale/Kconfig | 7 + drivers/

[linux-yocto] [PATCH 04/10] pinctrl: Add Pistachio SoC pin control driver

2016-07-11 Thread Yong, Jonathan
From: Andrew Bresticker Add a driver for the pin controller present on the IMG Pistachio SoC. This driver provides pinmux and pinconfig operations as well as GPIO and IRQ chips for the GPIO banks. Changes from v4: - Switched to using gpiochip_add_pin_range(). - Fixed up Kconfig entry. Changes

[linux-yocto] [PATCH 01/10] pinctrl: add lpc18xx pinctrl driver

2016-07-11 Thread Yong, Jonathan
From: Joachim Eastwood Pinctrl driver for the System Control Unit (SCU) found on NXP LPC18xx/43xx devices. Driver uses the generic pinctrl DT bindings for multiplexing and property settings. Signed-off-by: Joachim Eastwood Signed-off-by: Linus Walleij (cherry picked from commit 2f77ac93a947f1

[linux-yocto] [PATCH 03/10] pinctrl: lpc18xx: add the missing group function map

2016-07-11 Thread Yong, Jonathan
From: Joachim Eastwood Add the required group function map and fill it at probe using the pin capabilities information already present in the driver. Signed-off-by: Joachim Eastwood Signed-off-by: Linus Walleij (cherry picked from commit 16a4851d8c0c508f0e75a2b4b5e9195524dae600) Signed-off-by:

[linux-yocto] [PATCH 02/10] pinctrl: lpc18xx: create pin cap lookup helper

2016-07-11 Thread Yong, Jonathan
From: Joachim Eastwood Both pconf_get_pin and pconf_set_pin needs to lookup pin cap based on the pin number. Create a common helper function that both functions can use that also handles the case where no pin number is found in the pins array. This also fixes a small bug in pconf_get_pin where p

[linux-yocto] [PATCH 00/10] pinctrl_register to report errors consistently

2016-07-11 Thread Yong, Jonathan
Make pinctrl_register return proper error codes. The other commits are pulled in as depdencies. All commits are already in Linus's tree. This series should be applied to linux-yocto-4.1 standard/base. Andrew Bresticker (1): pinctrl: Add Pistachio SoC pin control driver Fabio Estevam (1): pin

[linux-yocto] [PATCH 6/6] [UPSTREAMED] acpi: add support for loading SSDTs via configfs

2016-07-11 Thread Sebastien Boeuf
From: Octavian Purdila New tables can be loaded by creating directories under /config/table/ and writing the AML code into the aml table attribute. Various table attributes will be readable once the table is successfully loaded. Unloading tables is not supported at the moment, but it can be easi

[linux-yocto] [PATCH 1/6] [UPSTREAM] efi: Merge boolean flag arguments

2016-07-11 Thread Sebastien Boeuf
From: Julia Lawall The parameters atomic and duplicates of efivar_init always have opposite values. Drop the parameter atomic, replace the uses of !atomic with duplicates, and update the call sites accordingly. The code using duplicates is slightly reorganized with an 'else', to avoid duplicati

[linux-yocto] [PATCH 3/6] [UPSTREAMED] i2c: acpi: add the delta from upstream patch

2016-07-11 Thread Sebastien Boeuf
From: Octavian Purdila This patch adds the missing delta on initial commit from Octavian Purdila: i2c: add support for ACPI reconfigure notifications from Mika Westerberg for-eywa branch where commit id is: f13ed6642bcfe29bcbabd87b0d8601b002d2dc1b Signed-off-by: Octavian Purdila Signe

[linux-yocto] [PATCH 4/6] [UPSTREAMED] efi: load SSTDs from EFI variables

2016-07-11 Thread Sebastien Boeuf
From: Octavian Purdila This patch allows SSDTs to be loaded from EFI variables. It works by specifying the EFI variable name containing the SSDT to be loaded. All variables with the same name (regardless of the vendor GUID) will be loaded. Note that we can't use acpi_install_table and we must re

[linux-yocto] [PATCH 2/6] [UPSTREAMED] Documentation: acpi: add SSDT overlays documentation

2016-07-11 Thread Sebastien Boeuf
From: Octavian Purdila Signed-off-by: Octavian Purdila --- Documentation/acpi/ssdt-overlays.txt | 91 1 file changed, 91 insertions(+) create mode 100644 Documentation/acpi/ssdt-overlays.txt diff --git a/Documentation/acpi/ssdt-overlays.txt b/Documentatio

[linux-yocto] [PATCH 0/6] Fix i2c-video probing duplicates

2016-07-11 Thread Sebastien Boeuf
These ACPI patches are needed to fix i2c-video issue. When kernel boots, it detects twice the same hardware on i2c bus on GT board. Julia Lawall (1): [UPSTREAM] efi: Merge boolean flag arguments Octavian Purdila (5): [UPSTREAMED] Documentation: acpi: add SSDT overlays documentation [UPSTREA

[linux-yocto] [PATCH 5/6] [UPSTREAMED] acpi: add support for configfs

2016-07-11 Thread Sebastien Boeuf
From: Octavian Purdila Register the ACPI subsystem with configfs. Patch slightly modified because of cherry-pick conflict in Makefile. Signed-off-by: Octavian Purdila Signed-off-by: Sebastien Boeuf Conflicts: drivers/acpi/Makefile --- Documentation/ABI/testing/configfs-acpi | 7 +++

[linux-yocto] [PATCH 1/1] UPSTREAM: mm: Export nr_swap_pages

2016-07-11 Thread Eric Ernst
From: Chris Wilson Some modules, like i915.ko, use swappable objects and may try to swap them out under memory pressure (via the shrinker). Before doing so, they want to check using get_nr_swap_pages() to see if any swap space is available as otherwise they will waste time purging the object from

[linux-yocto] [PATCH 1/1] drm: fix up post-merge commit

2016-07-11 Thread Eric Ernst
It appears that the merge of drm-forklift-v4.4.14 into standard/intel/base was completed without issue, but there were errors with the merge conflict resolution when merging base into bxt-rebase. This patch applies the diff between standard/intel/bxt-rebase and standard/intel/base for drivers/gpu/

Re: [linux-yocto] [PATCH] Thermal: Backport thermal patch to linux-yocto-4.4 bxt-rebase

2016-07-11 Thread Bruce Ashfield
On 2016-07-10 10:48 PM, Nilesh Bacchewar wrote: Its backport thermal patch to enable Broxton thermal reporting device. It is targeted for linux-yocto-4.4 on bxt-rebase branch. merged. Bruce Amy Wiles (1): Thermal: Enable Broxton SoC thermal reporting device drivers/thermal/int340x_the

Re: [linux-yocto] [yocto-kernel-cache] [PATCH] follow up on INTEL_POWERCLAMP driver config

2016-07-11 Thread Bruce Ashfield
On 2016-07-11 05:34 AM, Rebecca Chang Swee Fun wrote: Hi Bruce, Based on comment from Saul, INTEL_POWERCLAMP can be built as modules. The driver will be auto loaded by Apollolake upon system boot up. Please help to merge this follow up patch to yocto-4.1, yocto-4.4 and yocto-4.6. merged. Bru

Re: [linux-yocto] [PATCH 0/8] USB Type C backport on linux-yocto-4.4

2016-07-11 Thread Bruce Ashfield
On 2016-07-11 11:37 AM, Bruce Ashfield wrote: On 2016-07-08 07:18 PM, Pranav Tipnis wrote: This patch set backports USB Type C support on linux-yocto-4.4 from kernel version 4.7-rc. These patches have been submitted upstream and the approval is in progress, hence may not be final. The patches ha

Re: [linux-yocto] [PATCH 0/8] USB Type C backport on linux-yocto-4.4

2016-07-11 Thread Bruce Ashfield
On 2016-07-08 07:18 PM, Pranav Tipnis wrote: This patch set backports USB Type C support on linux-yocto-4.4 from kernel version 4.7-rc. These patches have been submitted upstream and the approval is in progress, hence may not be final. The patches have been rebased on bxt-rebase branch. This new

Re: [linux-yocto] [yocto-kernel-cache] [PATCH] GPIO: disable Intel PMIC gpio config

2016-07-11 Thread Bruce Ashfield
On 2016-07-08 02:33 PM, Nilesh Bacchewar wrote: Hello Bruce, This change disables Intel PMIC gpio config on broxton platform. This change is targeted for yocto-4.4 branch. I've grab the change. After build tests, I'll send SRCREV updates. Bruce Nilesh Bacchewar (1): gpio: disable Inte

[linux-yocto] [yocto-kernel-cache] [PATCH] follow up on INTEL_POWERCLAMP driver config

2016-07-11 Thread Rebecca Chang Swee Fun
Hi Bruce, Based on comment from Saul, INTEL_POWERCLAMP can be built as modules. The driver will be auto loaded by Apollolake upon system boot up. Please help to merge this follow up patch to yocto-4.1, yocto-4.4 and yocto-4.6. Thanks a lot. Regards, Rebecca Rebecca Chang Swee Fun (1): featur

[linux-yocto] [yocto-kernel-cache] [PATCH] features/thermal: make INTEL_POWERCLAMP driver built as module

2016-07-11 Thread Rebecca Chang Swee Fun
Signed-off-by: Rebecca Chang Swee Fun --- features/thermal/coretemp.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/thermal/coretemp.cfg b/features/thermal/coretemp.cfg index 9be6e74..cee7110 100644 --- a/features/thermal/coretemp.cfg +++ b/features/thermal/corete