[linux-yocto] feature: restructure mei settings

2016-07-26 Thread Tomas Winkler
1.Separete mei-me and mei-txe support and enable them only on approriate platforms 2. Amt is not anabled on all plaform and exists only on BigCores over mei-me. To not break anyting wwe left amt.cfg in bsp/intel-common/intel-common-drivers.scc, but this should be fine tunend later.

Re: [linux-yocto] [PATCH] mousedev: fix warning err caused by __cpu_to_le16p()

2016-07-26 Thread Bruce Ashfield
On 2016-07-26 4:28 AM, Zhenbo Gao wrote: following warning msg is found when compiling the kernel for qemumips: .../drivers/input/mousedev.c:749:15: warning: passing argument 1 of '__cpu_to_le16p' from incompatible pointer type [-Wincompatible-pointer-types] convert the function's parameter to

Re: [linux-yocto] [PATCH] Add module parameter to portmux-intel-drcfg driver

2016-07-26 Thread Bruce Ashfield
On 2016-07-26 1:47 AM, wan.ahmad.zainie.wan.moha...@intel.com wrote: From: Wan Ahmad Zainie Hi Bruce. This is a resend. I mistakenly put a wrong from email address in my previous email. This patch is to add two module parameters to portmux-intel-drcfg

[linux-yocto] [PATCH] usb: mux: add module parameter to portmux-intel-drcfg

2016-07-26 Thread wan . ahmad . zainie . wan . mohamad
From: Wan Ahmad Zainie This patch add the following module parameter, usb0_init_state to override default USB port 0 role set by ABL/BIOS, and usb0_auto_role to set USB port 0 mux in automatic mode. By default, this driver will set the initial mode based

[linux-yocto] [PATCH] Add module parameter to portmux-intel-drcfg driver

2016-07-26 Thread wan . ahmad . zainie . wan . mohamad
From: Wan Ahmad Zainie Hi Bruce. This patch is to add two module parameters to portmux-intel-drcfg driver, to enable configuring USB port 0 of Apollo Lake during boot time. First one is usb0_init_state, to override the default mode of the port set by

Re: [linux-yocto] [PATCH] drivers/mfd/pca9685-pwm.c: Update to reflect changes in patches from upstream

2016-07-26 Thread Bruce Ashfield
On 2016-07-21 10:58 PM, Bruce Ashfield wrote: On 2016-07-21 3:21 PM, Saul Wold wrote: There are some patches brought into to 4.4 from upstream that change the pwm structure and move period and duty_cycle into a state structure so fix these up. Additional address the removal of PWMF_ENABLED in

Re: [linux-yocto] [PATCH 1/1] 4.1.28 Fix bad backport of 8f182270dfec "mm/swap.c: flush lru, pvecs on compound page arrival"

2016-07-26 Thread Bruce Ashfield
On 2016-07-25 04:43 PM, Chris Sykes wrote: From 74225a4cbea38034034add5da67a2f7ee23251c0 Mon Sep 17 00:00:00 2001 From: Steven Rostedt When I pulled in 4.1.28 into my stable 4.1-rt tree and ran the tests, it crashed with a severe OOM killing everything. I then tested

[linux-yocto] [PATCH] mousedev: fix warning err caused by __cpu_to_le16p()

2016-07-26 Thread Zhenbo Gao
following warning msg is found when compiling the kernel for qemumips: .../drivers/input/mousedev.c:749:15: warning: passing argument 1 of '__cpu_to_le16p' from incompatible pointer type [-Wincompatible-pointer-types] convert the function's parameter to (__u16 *) to fix this warning.