[linux-yocto] [PATCH 02/13] ktypes: add extended ktype

2016-02-04 Thread California Sullivan
The extended ktype enables EMBEDDED, EXPERT, and DEBUG_KERNEL, opening up more kernel options. Signed-off-by: California Sullivan --- ktypes/extended/extended.cfg | 18 ++ ktypes/extended/extended.scc | 10 ++ 2 files changed, 28 insertions(+) create mode 100644 ktypes

[linux-yocto] [PATCH 01/13] features/debug: add debug-kernel feature

2016-02-04 Thread California Sullivan
Since EMBEDDED, EXPERT, and DEBUG_KERNEL are being removed from the base ktype, we can no longer assume DEBUG_KERNEL is enabled. Also add this fragment to features that require DEBUG_KERNEL. Signed-off-by: California Sullivan --- features/debug/debug-kernel.cfg| 2 ++ features/debug/debug

[linux-yocto] [PATCH 03/13] ktypes/base: Disable EMBEDDED and DEBUG_KERNEL

2016-02-04 Thread California Sullivan
DEBUG_KERNEL should not be in the base ktype, as a production kernel may not necessarily want any debug turned on. EMBEDDED is also removed, as EMBEDDED selects EXPERT which selects DEBUG_KERNEL. Signed-off-by: California Sullivan --- ktypes/base/base.cfg | 6 +++--- 1 file changed, 3

[linux-yocto] [PATCH 00/13] ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED

2016-02-04 Thread California Sullivan
ove to the extended ktype. California Sullivan (13): features/debug: add debug-kernel feature ktypes: add extended ktype ktypes/base: Disable EMBEDDED and DEBUG_KERNEL base.cfg: disable some HIDs cfg: do not enable PROCESSOR_SELECT intel-common-drivers.scc: move profiling and latencytop to

[linux-yocto] [PATCH 05/13] cfg: do not enable PROCESSOR_SELECT

2016-02-04 Thread California Sullivan
: California Sullivan --- cfg/amd.cfg | 1 - cfg/intel.cfg | 2 -- 2 files changed, 3 deletions(-) diff --git a/cfg/amd.cfg b/cfg/amd.cfg index 704b8f7..845d29f 100644 --- a/cfg/amd.cfg +++ b/cfg/amd.cfg @@ -6,7 +6,6 @@ CONFIG_MICROCODE_EARLY=y CONFIG_MICROCODE_AMD=y CONFIG_MICROCODE_EARLY_AMD=y

[linux-yocto] [PATCH 04/13] base.cfg: disable some HIDs

2016-02-04 Thread California Sullivan
These options default to !EXPERT. Since we removed EXPERT from base, these became enabled, adding functionality and size that we do not need. Signed-off-by: California Sullivan --- ktypes/base/base.cfg | 11 +++ 1 file changed, 11 insertions(+) diff --git a/ktypes/base/base.cfg b

[linux-yocto] [PATCH 10/13] intel-common: add intel-extended-drivers.scc to preempt-rt bsps

2016-02-04 Thread California Sullivan
Since we include the extended ktype we should include extended drivers. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-preempt-rt.scc | 1 + bsp/intel-common/intel-corei7-64-preempt-rt.scc | 1 + 2 files changed, 2 insertions(+) diff --git a/bsp/intel-common/intel

[linux-yocto] [PATCH 09/13] preempt-rt.scc: inlcude extended ktype instead of standard

2016-02-04 Thread California Sullivan
The extended ktype now has the functionality of the previous standard ktype. To keep preempt-rt's functionality consistent we must include extended. Signed-off-by: California Sullivan --- ktypes/preempt-rt/preempt-rt.scc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k

[linux-yocto] [PATCH 11/13] CONFIG_I2C_I801: set option to yes in intel-core* bsps

2016-02-04 Thread California Sullivan
Without EXPERT, we hit a select on I2C_I801, forcing it to yes and causing a warning. Set I2C_I801 to yes, and if a bsp wants to build it as a module, it can be done through an extended ktype bsp. Signed-off-by: California Sullivan --- bsp/haswell-wc/haswell-wc.cfg | 2 +- bsp/mohonpeak

[linux-yocto] [PATCH 06/13] intel-common-drivers.scc: move profiling and latencytop to a new file

2016-02-04 Thread California Sullivan
Profiling and latencytop enable DEBUG_KERNEL, which is no longer a standard config option. Move these features to a new file called intel-extended-drivers.scc, which is to be included in intel extended bsps. Signed-off-by: California Sullivan --- bsp/intel-common/intel-common-drivers.scc | 2

[linux-yocto] [PATCH 08/13] bsp/intel-common: add intel-core* extended bsps

2016-02-04 Thread California Sullivan
These bsps use the extended ktype and add the intel-extended-drivers.scc file. They should have the same functionality as the -standard bsps had previously. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-extended.scc | 14 ++ bsp/intel-common/intel-corei7-64

[linux-yocto] [PATCH 12/13] bsp: add extended common-pc bsps

2016-02-04 Thread California Sullivan
By using the extended ktype instead of standard, these bsps have the same functionality of the old -standard bsps. Signed-off-by: California Sullivan --- bsp/common-pc-64/common-pc-64-extended.scc | 17 + bsp/common-pc/common-pc-extended.scc | 17 + 2 files

[linux-yocto] [PATCH 07/13] romley.scc remove profiling and latencytop features

2016-02-04 Thread California Sullivan
Romley is supported by the intel-core* bsp which already include profiling and latencytop where appropriate. Signed-off-by: California Sullivan --- bsp/romley/romley.scc | 3 --- 1 file changed, 3 deletions(-) diff --git a/bsp/romley/romley.scc b/bsp/romley/romley.scc index 9967407..20ffb88

[linux-yocto] [PATCH 13/13] bsp: remove profiling and latencytop from non-extended common-pc bsps

2016-02-04 Thread California Sullivan
These features enable DEBUG_KERNEL, which is no longer standard. They are still availabel in the -extended bsps. Signed-off-by: California Sullivan --- bsp/common-pc-64/common-pc-64-standard.scc | 2 -- bsp/common-pc/common-pc-standard.scc | 2 -- 2 files changed, 4 deletions(-) diff

[linux-yocto] [PATCH v2 00/12] features/debug: add debug-kernel feature

2016-02-12 Thread California Sullivan
Since EMBEDDED, EXPERT, and DEBUG_KERNEL are being removed from the base ktype, we can no longer assume DEBUG_KERNEL is enabled. Also add this fragment to features that require DEBUG_KERNEL. Signed-off-by: California Sullivan --- features/debug/debug-kernel.cfg| 3 +++ features/debug/debug

[linux-yocto] [PATCH v2 00/12] ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED

2016-02-12 Thread California Sullivan
or this change, as existing BSPs WILL be affected, and will either need to accept the changes in the standard ktype or move to the developer ktype. California Sullivan (12): features/debug: add debug-kernel feature ktypes: add developer ktype ktypes/base: Disable EMBEDDE

[linux-yocto] [PATCH v2 00/12] CONFIG_PROCESSOR_SELECT: do not enable

2016-02-12 Thread California Sullivan
: California Sullivan --- bsp/intel-common/intel-core2-32.cfg | 1 - cfg/amd.cfg | 1 - cfg/intel.cfg | 2 -- 3 files changed, 4 deletions(-) diff --git a/bsp/intel-common/intel-core2-32.cfg b/bsp/intel-common/intel-core2-32.cfg index ab004ea..b106c76 100644

[linux-yocto] [PATCH v2 00/12] preempt-rt.scc: inlcude developer ktype instead of standard

2016-02-12 Thread California Sullivan
The developer ktype now has the functionality of the previous standard ktype. To keep preempt-rt's functionality consistent we must include developer. Signed-off-by: California Sullivan --- ktypes/preempt-rt/preempt-rt.scc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[linux-yocto] [PATCH v2 00/12] romley.scc remove profiling and latencytop features

2016-02-12 Thread California Sullivan
Romley is supported by the intel-core* BSP which already include profiling and latencytop where appropriate. Signed-off-by: California Sullivan --- bsp/romley/romley.scc | 3 --- 1 file changed, 3 deletions(-) diff --git a/bsp/romley/romley.scc b/bsp/romley/romley.scc index 9967407..20ffb88

[linux-yocto] [PATCH v2 00/12] ktypes/base: Disable EMBEDDED and DEBUG_KERNEL

2016-02-12 Thread California Sullivan
DEBUG_KERNEL should not be in the base ktype, as a production kernel may not necessarily want any debug turned on. EMBEDDED is also removed, as EMBEDDED selects EXPERT which selects DEBUG_KERNEL. Signed-off-by: California Sullivan --- ktypes/base/base.cfg | 6 +++--- 1 file changed, 3

[linux-yocto] [PATCH v2 00/12] ktypes: add developer ktype

2016-02-12 Thread California Sullivan
The developer ktype enables EMBEDDED, EXPERT, and DEBUG_KERNEL, opening up more kernel options and setting some defaults. Signed-off-by: California Sullivan --- ktypes/developer/developer.cfg | 19 +++ ktypes/developer/developer.scc | 10 ++ 2 files changed, 29

[linux-yocto] [PATCH v2 00/12] intel-common-drivers.scc: move profiling and latencytop to a new file

2016-02-12 Thread California Sullivan
Profiling and latencytop enable DEBUG_KERNEL, which is no longer a standard config option. Move these features to a new file called intel-developer-drivers.scc, which is to be included in intel developer BSPs. Signed-off-by: California Sullivan --- bsp/intel-common/intel-common-drivers.scc

[linux-yocto] [PATCH v2 00/12] bsp/intel-common: add intel-core* developer BSPs

2016-02-12 Thread California Sullivan
These BSPs use the developer ktype and add the intel-developer-drivers.scc file. They should have the same functionality as the -standard BSPs had previously. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-developer.scc | 14 ++ bsp/intel-common/intel-corei7

[linux-yocto] [PATCH v2 00/12] bsp: add developer common-pc BSPs

2016-02-12 Thread California Sullivan
By using the developer ktype instead of standard, these BSPs have the same functionality of the old -standard BSPs. Signed-off-by: California Sullivan --- bsp/common-pc-64/common-pc-64-developer.scc | 17 + bsp/common-pc/common-pc-developer.scc | 17 + 2

[linux-yocto] [PATCH v2 00/12] intel-common: add intel-developer-drivers.scc to preempt-rt BSPS

2016-02-12 Thread California Sullivan
Since we include the developer ktype we should include developer drivers. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-preempt-rt.scc | 1 + bsp/intel-common/intel-corei7-64-preempt-rt.scc | 1 + 2 files changed, 2 insertions(+) diff --git a/bsp/intel-common/intel

[linux-yocto] [PATCH v2 00/12] CONFIG_I2C_I801: set option to yes in intel-core* BSPs

2016-02-12 Thread California Sullivan
Without EXPERT, we hit a select on I2C_I801, forcing it to yes and causing a warning. Set I2C_I801 to yes, and if a BSP wants to build it as a module, it can be done through a developer ktype BSP. Signed-off-by: California Sullivan --- bsp/haswell-wc/haswell-wc.cfg | 2 +- bsp/mohonpeak

[linux-yocto] [PATCH v2 00/12] bsp: remove profiling and latencytop from non-developer common-pc BSPs

2016-02-12 Thread California Sullivan
These features enable DEBUG_KERNEL, which is no longer standard. They are still available in the -developer BSPs. Signed-off-by: California Sullivan --- bsp/common-pc-64/common-pc-64-standard.scc | 2 -- bsp/common-pc/common-pc-standard.scc | 2 -- 2 files changed, 4 deletions(-) diff

[linux-yocto] [PATCH v3 01/12] features/debug: add debug-kernel feature

2016-02-17 Thread California Sullivan
Since EMBEDDED, EXPERT, and DEBUG_KERNEL are being removed from the base ktype, we can no longer assume DEBUG_KERNEL is enabled. Also add this fragment to features that require DEBUG_KERNEL. Signed-off-by: California Sullivan --- features/debug/debug-kernel.cfg| 3 +++ features/debug/debug

[linux-yocto] [PATCH v3 05/12] intel-common-drivers.scc: move profiling and latencytop to a new file

2016-02-17 Thread California Sullivan
Profiling and latencytop enable DEBUG_KERNEL, which is no longer a standard config option. Move these features to a new file called intel-developer-drivers.scc, which is to be included in intel developer BSPs. Signed-off-by: California Sullivan --- bsp/intel-common/intel-common-drivers.scc

[linux-yocto] [PATCH v3 02/12] ktypes: add developer ktype

2016-02-17 Thread California Sullivan
The developer ktype enables EMBEDDED, EXPERT, and DEBUG_KERNEL, opening up more kernel options and setting some defaults. Signed-off-by: California Sullivan --- ktypes/developer/developer.cfg | 19 +++ ktypes/developer/developer.scc | 9 + 2 files changed, 28 insertions

[linux-yocto] [PATCH v3 06/12] romley.scc remove profiling and latencytop features

2016-02-17 Thread California Sullivan
Romley is supported by the intel-core* BSP which already include profiling and latencytop where appropriate. Signed-off-by: California Sullivan --- bsp/romley/romley.scc | 3 --- 1 file changed, 3 deletions(-) diff --git a/bsp/romley/romley.scc b/bsp/romley/romley.scc index 9967407..20ffb88

[linux-yocto] [PATCH v3 04/12] CONFIG_PROCESSOR_SELECT: do not enable

2016-02-17 Thread California Sullivan
: California Sullivan --- bsp/intel-common/intel-core2-32.cfg | 1 - cfg/amd.cfg | 1 - cfg/intel.cfg | 2 -- 3 files changed, 4 deletions(-) diff --git a/bsp/intel-common/intel-core2-32.cfg b/bsp/intel-common/intel-core2-32.cfg index ab004ea..b106c76 100644

[linux-yocto] [PATCH v3 07/12] bsp/intel-common: add intel-core* developer BSPs

2016-02-17 Thread California Sullivan
These BSPs use the developer ktype and add the intel-developer-drivers.scc file. They should have the same functionality as the -standard BSPs had previously. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-developer.scc | 14 ++ bsp/intel-common/intel-corei7

[linux-yocto] [PATCH v3 03/12] ktypes/base: Disable EMBEDDED and DEBUG_KERNEL

2016-02-17 Thread California Sullivan
DEBUG_KERNEL should not be in the base ktype, as a production kernel may not necessarily want any debug turned on. EMBEDDED is also removed, as EMBEDDED selects EXPERT which selects DEBUG_KERNEL. Signed-off-by: California Sullivan --- ktypes/base/base.cfg | 6 +++--- 1 file changed, 3

[linux-yocto] [PATCH v3 00/12] ktype refactoring: move DEBUG_KERNEL, EXPERT and EMBEDDED

2016-02-17 Thread California Sullivan
hange, as existing BSPs WILL be affected, and will either need to accept the changes in the standard ktype or move to the developer ktype. California Sullivan (12): features/debug: add debug-kernel feature ktypes: add developer ktype ktypes/base: Disable EMBEDDED and DEBUG_KERNEL CON

[linux-yocto] [PATCH v3 10/12] CONFIG_I2C_I801: set option to yes in intel-core* BSPs

2016-02-17 Thread California Sullivan
Without EXPERT, we hit a select on I2C_I801, forcing it to yes and causing a warning. Set I2C_I801 to yes, and if a BSP wants to build it as a module, it can be done through a developer ktype BSP. Signed-off-by: California Sullivan --- bsp/haswell-wc/haswell-wc.cfg | 2 +- bsp/mohonpeak

[linux-yocto] [PATCH v3 08/12] preempt-rt.scc: include developer ktype instead of standard

2016-02-17 Thread California Sullivan
The developer ktype now has the functionality of the previous standard ktype. To keep preempt-rt's functionality consistent we must include developer. Signed-off-by: California Sullivan --- ktypes/preempt-rt/preempt-rt.scc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --

[linux-yocto] [PATCH v3 11/12] bsp: add developer common-pc BSPs

2016-02-17 Thread California Sullivan
These -developer BSPs use the developer ktype, giving the same functionality of the old -standard BSPs. With the changes to the standard and base ktypes, the -standard BSPs no longer have EMBEDDED, EXPERT, or DEBUG_KERNEL, creating a more production-ready default. Signed-off-by: California

[linux-yocto] [PATCH v3 09/12] intel-common: add intel-developer-drivers.scc to preempt-rt BSPs

2016-02-17 Thread California Sullivan
Since we include the developer ktype we should include developer drivers. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32-preempt-rt.scc | 1 + bsp/intel-common/intel-corei7-64-preempt-rt.scc | 1 + 2 files changed, 2 insertions(+) diff --git a/bsp/intel-common/intel

[linux-yocto] [PATCH v3 12/12] bsp: remove profiling and latencytop from non-developer common-pc BSPs

2016-02-17 Thread California Sullivan
These features enable DEBUG_KERNEL, which is no longer standard. They are still available in the -developer BSPs. Signed-off-by: California Sullivan --- bsp/common-pc-64/common-pc-64-standard.scc | 2 -- bsp/common-pc/common-pc-standard.scc | 2 -- 2 files changed, 4 deletions(-) diff

[linux-yocto] [PATCH 0/1] Move preliminary HW support to i915 feature

2016-02-23 Thread California Sullivan
cache. Thanks, Cal Sullivan California Sullivan (1): braswell: Remove feature and move DRM_I915_PRELIMINARY_HW_SUPPORT option bsp/intel-common/intel-core2-32.scc | 1 - bsp/intel-common/intel-corei7-64.scc | 1 - features/i915/i915.cfg | 1 + features/soc/braswell/braswell.cfg

[linux-yocto] [PATCH 1/1] braswell: Remove feature and move DRM_I915_PRELIMINARY_HW_SUPPORT option

2016-02-23 Thread California Sullivan
Ps. Fixes [YOCTO 9319] Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32.scc | 1 - bsp/intel-common/intel-corei7-64.scc | 1 - features/i915/i915.cfg | 1 + features/soc/braswell/braswell.cfg | 1 - features/soc/braswell/braswell.scc | 6 -- 5 files

[linux-yocto] [PATCH 1/1] features/ftrace: set CONFIG_FTRACE=y

2016-03-07 Thread California Sullivan
With EXPERT, EMBEDDED and DEBUG_KERNEL removed from the base, this is no longer being selected by default in in standard BSPs, causing breakage in things that relied on it. Signed-off-by: California Sullivan --- features/ftrace/ftrace.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a

[linux-yocto] [PATCH 0/1] Fix ftrace missing in -standard BSPs

2016-03-07 Thread California Sullivan
Targetted for 4.4 and master. California Sullivan (1): features/ftrace: set CONFIG_FTRACE=y features/ftrace/ftrace.cfg | 1 + 1 file changed, 1 insertion(+) -- 2.5.0 -- ___ linux-yocto mailing list linux-yocto@yoctoproject.org https

[linux-yocto] [PATCH 2/2] ktypes/standard: Add tmpfs-posix-acl feature

2016-03-21 Thread California Sullivan
Fixes [YOCTO #9269] Signed-off-by: California Sullivan --- ktypes/standard/standard.scc | 1 + 1 file changed, 1 insertion(+) diff --git a/ktypes/standard/standard.scc b/ktypes/standard/standard.scc index 6b9fb1a..fb8b343 100644 --- a/ktypes/standard/standard.scc +++ b/ktypes/standard

[linux-yocto] [PATCH 1/2] features: Add tmpfs-posix-acl feature fragments

2016-03-21 Thread California Sullivan
This enables the CONFIG_TMPFS_POSIX_ACL, which is wanted by things like systemd. We also explicitly enable the features's dependencies and options selected by the feature for clarity. Partial fix for [YOCTO #9269]. Signed-off-by: California Sullivan --- features/tmpfs/tmpfs-posix-acl.cfg

[linux-yocto] [PATCH 1/1] drm/i915/skl: Fix DMC load on Skylake J0 and K0

2016-03-28 Thread California Sullivan
Martineau Reviewed-by: Rodrigo Vivi Signed-off-by: Rodrigo Vivi Link: http://patchwork.freedesktop.org/patch/msgid/1454023163-25469-1-git-send-email-mathew.j.martin...@linux.intel.com Signed-off-by: California Sullivan --- drivers/gpu/drm/i915/intel_csr.c | 3 ++- 1 file changed, 2 insertions

[linux-yocto] [PATCH 0/9] Broxton enablement and slight refactoring for 4.4 and master

2016-05-02 Thread California Sullivan
. Matt, Steve, please review and make sure there are no more absolute needs for Broxton enablement. Thanks, Cal California Sullivan (9): features/soc/skylake: Refactor and comment config fragment features/i915: Add CONFIG_KMS_FB_HELPER=y cfg/sound.cfg: Add USB audio support features/usb

[linux-yocto] [PATCH 1/9] features/soc/skylake: Refactor and comment config fragment

2016-05-02 Thread California Sullivan
Organized configurations into labeled sections. Removed NETCONSOLE as its in the base configuration and is not necessarily a SoC feature. Signed-off-by: California Sullivan --- features/soc/skylake/skylake.cfg | 18 ++ 1 file changed, 14 insertions(+), 4 deletions(-) diff --git

[linux-yocto] [PATCH 4/9] features/usb: Add usb-designware2 and 3 features

2016-05-02 Thread California Sullivan
These features support DesignWare USB2 and USB3 controllers and are used by many SoCs. Signed-off-by: California Sullivan --- features/usb/designware-usb2.cfg | 2 ++ features/usb/designware-usb2.scc | 4 features/usb/designware-usb3.cfg | 3 +++ features/usb/designware-usb3.scc | 4

[linux-yocto] [PATCH 3/9] cfg/sound.cfg: Add USB audio support

2016-05-02 Thread California Sullivan
Sound over USB is very common and should be part of general sound configuration. Signed-off-by: California Sullivan --- cfg/sound.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cfg/sound.cfg b/cfg/sound.cfg index bf9846c..d296ae7 100644 --- a/cfg/sound.cfg +++ b/cfg/sound.cfg

[linux-yocto] [PATCH 9/9] bsp/intel-corei7-64: Add intel-telemetry feature

2016-05-02 Thread California Sullivan
intel-telemetry is a 64 bit feature available on the Apollo Lake platform and beyond. --- bsp/intel-common/intel-corei7-64.scc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/intel-common/intel-corei7-64.scc b/bsp/intel-common/intel-corei7-64.scc index 781ae92..ad6099e 100644 --- a/bsp

[linux-yocto] [PATCH 6/9] features: add broxton soc feature

2016-05-02 Thread California Sullivan
This feature fragment should support most functions provided by the Broxton SoC. Signed-off-by: California Sullivan --- features/soc/broxton/broxton.cfg | 22 ++ features/soc/broxton/broxton.scc | 15 +++ 2 files changed, 37 insertions(+) create mode 100644

[linux-yocto] [PATCH 8/9] features: add intel-telemetry feature

2016-05-02 Thread California Sullivan
This feature enables the Intel Telemerty driver for Apollo Lake and newer platforms. The feature adds an interface to the debugfs for SoC state monitoring. Signed-off-by: California Sullivan --- features/telemetry/intel-telemetry.cfg | 9 + features/telemetry/intel-telemetry.scc | 4

[linux-yocto] [PATCH 5/9] baytrail; valleyisland: Use designware-usb3 feature instead of config

2016-05-02 Thread California Sullivan
A common configuration is shared across many platforms. Use a feature instead of additional configuration options in each file. Signed-off-by: California Sullivan --- bsp/valleyisland/valleyisland.cfg | 2 -- bsp/valleyisland/valleyisland.scc | 1 + features/soc/baytrail/baytrail.cfg | 2

[linux-yocto] [PATCH 2/9] features/i915: Add CONFIG_KMS_FB_HELPER=y

2016-05-02 Thread California Sullivan
We already get this option through a select. Add it to the configuration for clarity. Signed-off-by: California Sullivan --- features/i915/i915.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/features/i915/i915.cfg b/features/i915/i915.cfg index aa765f3..16d5f4a 100644 --- a/features

[linux-yocto] [PATCH 7/9] bsp/intel-common: Add broxton to supported SoCs in intel-core* BSPs

2016-05-02 Thread California Sullivan
Adds support to features found on Broxton SoCs. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32.scc | 1 + bsp/intel-common/intel-corei7-64.scc | 1 + 2 files changed, 2 insertions(+) diff --git a/bsp/intel-common/intel-core2-32.scc b/bsp/intel-common/intel-core2-32

[linux-yocto] [PULL REQUEST] Broxton related backports for linux-yocto-4.4

2016-05-24 Thread California Sullivan
Hi Bruce, This is a set of backports from upstream. I have tested allyesconfig, allnoconfig, and standard builds and can't find anything wrong there. I have also tested running the kernel on MinnowBoard Max and there are no new errors or warnings. Let me know if I need to make any modifications a

[linux-yocto] [PATCH 0/4] mmc backports for linux-yocto-4.4 standard/base and standard/intel

2016-06-02 Thread California Sullivan
Hi Bruce, This set of backports solves some issues we are seeing with mmc on Broxton-based boards. I also tested the updated kernel on a MinnowBoard Turbot and found no additional errors. These commits can also be pulled from git://git.yoctoproject.org/linux-yocto-contrib branch clsulliv/standard

[linux-yocto] [PATCH 1/4] mmc: block: Always switch back to main area after RPMB access

2016-06-02 Thread California Sullivan
are affected. Signed-off-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/card/block.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index 553113e..cbc4211 100644 --- a/drivers/mmc

[linux-yocto] [PATCH 4/4] mmc: sdhci-pci: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controller

2016-06-02 Thread California Sullivan
From: Adrian Hunter commit 822969369482166050c5b2f7013501505e025c39 upstream. CMD19/CMD14 bus width test has been found to be unreliable in some cases. It is not essential, so simply remove it. Signed-off-by: Adrian Hunter Cc: sta...@vger.kernel.org Signed-off-by: California Sullivan

[linux-yocto] [PATCH 2/4] mmc: block: Pause re-tuning while switched to the RPMB partition

2016-06-02 Thread California Sullivan
ff-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/card/block.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index cbc4211..6e4b26e 100644 --- a/drivers/mmc/card/b

[linux-yocto] [PATCH 3/4] mmc: core: Add a facility to "pause" re-tuning

2016-06-02 Thread California Sullivan
switch to RPMB). We also need to "unpause" in the recovery path, which is catered for by adding it to mmc_retune_disable(). Signed-off-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/core/host.c | 24 incl

[linux-yocto] [PATCH 4/4] mmc: sdhci-pci: Remove MMC_CAP_BUS_WIDTH_TEST for Intel controller

2016-06-03 Thread California Sullivan
From: Adrian Hunter commit 822969369482166050c5b2f7013501505e025c39 upstream. CMD19/CMD14 bus width test has been found to be unreliable in some cases. It is not essential, so simply remove it. Signed-off-by: Adrian Hunter Cc: sta...@vger.kernel.org Signed-off-by: California Sullivan

[linux-yocto] [PATCH 2/4] mmc: block: Pause re-tuning while switched to the RPMB partition

2016-06-03 Thread California Sullivan
ff-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/card/block.c | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index cbc4211..6e4b26e 100644 --- a/drivers/mmc/card/b

[linux-yocto] [PATCH 3/4] mmc: core: Add a facility to "pause" re-tuning

2016-06-03 Thread California Sullivan
switch to RPMB). We also need to "unpause" in the recovery path, which is catered for by adding it to mmc_retune_disable(). Signed-off-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/core/host.c | 24 incl

[linux-yocto] [PATCH 1/4] mmc: block: Always switch back to main area after RPMB access

2016-06-03 Thread California Sullivan
are affected. Signed-off-by: Adrian Hunter Signed-off-by: Ulf Hansson Signed-off-by: California Sullivan --- drivers/mmc/card/block.c | 8 1 file changed, 8 insertions(+) diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index 553113e..cbc4211 100644 --- a/drivers/mmc

[linux-yocto] [PATCH 0/1] Backport ALSA bugfix patch for standard/intel/bxt-rebase

2016-06-21 Thread California Sullivan
Hi Bruce, Seems that the original ALSA backport missed this patch. See bug 9804. Please apply to linux-yocto-4.4 standard/intel/bxt-rebase branch. Thanks, Cal Sullivan Libin Yang (1): ALSA: hda - hdmi_find_pcm_slot return value bug fix sound/pci/hda/patch_hdmi.c | 2 +- 1 file changed, 1 in

[linux-yocto] [PATCH 1/1] ALSA: hda - hdmi_find_pcm_slot return value bug fix

2016-06-21 Thread California Sullivan
Signed-off-by: Libin Yang Signed-off-by: Takashi Iwai Signed-off-by: California Sullivan --- sound/pci/hda/patch_hdmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index 0de79ef..5b5e5db 100644 --- a/sound/pci/hda/pa

[linux-yocto] [PATCH 0/3] ACPI fixes for standard/intel/* branches

2016-06-23 Thread California Sullivan
Hi Bruce, These patches (not yet upstream) fix a bug with ACPI device enumeration that we hit on some of our Broxton boards. Please apply them to the linux-yocto-4.4 Intel branches. Thanks, Cal Sullivan Octavian Purdila (3): acpi: fix enumeration (visited) flags for bus rescans acpi: add sup

[linux-yocto] [PATCH 3/3] i2c: add support for ACPI reconfigure notifications

2016-06-23 Thread California Sullivan
-by: California Sullivan --- drivers/i2c/i2c-core.c | 172 ++--- 1 file changed, 134 insertions(+), 38 deletions(-) diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index ba8eb08..e9fe7f3 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c

[linux-yocto] [PATCH 2/3] acpi: add support for ACPI reconfiguration notifiers

2016-06-23 Thread California Sullivan
notifications supported for now are device add and device remove. Since ACPICA allows only one table notification handler, this patch makes the table notifier function generic and moves it out of the sysfs specific code. Signed-off-by: Octavian Purdila Signed-off-by: California Sullivan --- drivers/acpi

[linux-yocto] [PATCH 1/3] acpi: fix enumeration (visited) flags for bus rescans

2016-06-23 Thread California Sullivan
device as enumerated. Signed-off-by: Octavian Purdila Signed-off-by: California Sullivan --- drivers/acpi/scan.c | 13 +++-- include/linux/acpi.h | 18 ++ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 78d5f02

[linux-yocto] [PATCH 1/1][yocto-kernel-cache][yocto-4.4] features/input: Add keyboard-gpio feature

2016-06-27 Thread California Sullivan
This feature adds keyboard-gpio support to the kernel. We also add a specific implementation by default. More can be added as necessary. Signed-off-by: California Sullivan --- features/input/keyboard-gpio.cfg | 8 features/input/keyboard-gpio.scc | 6 ++ 2 files changed, 14

[linux-yocto] [PATCH 1/1][yocto-4.4] bsp/intel-common: add keyboard-gpio to intel-common-drivers

2016-07-06 Thread California Sullivan
This feature is needed for power button functionality on some Broxton- based boards. Signed-off-by: California Sullivan --- bsp/intel-common/intel-common-drivers.scc | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/intel-common/intel-common-drivers.scc b/bsp/intel-common/intel-common

[linux-yocto] [PATCH 01/10] UPSTREAM: backlight: pwm_bl: Avoid backlight flicker when probed from DT

2016-07-21 Thread California Sullivan
that can enable the backlight at the appropriate time. Signed-off-by: Philipp Zabel Reviewed-by: Christian Gmeiner Tested-by: Heiko Stuebner Signed-off-by: Lee Jones (cherry picked from 3698d7e7d221a5c90d4b55e96d0c8f98a8b4d7df) Signed-off-by: California Sullivan --- drivers/video/backlight

[linux-yocto] [PATCH 03/10] UPSTREAM: backlight: pwm_bl: Free PWM requested by legacy API on error path

2016-07-21 Thread California Sullivan
-by: California Sullivan --- drivers/video/backlight/pwm_bl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c index a22c1ec..64f9e1b 100644 --- a/drivers/video/backlight/pwm_bl.c +++ b/drivers/video/backlight/pwm_bl.c

[linux-yocto] [PATCH 00/10] pwm related fixes for standard/intel/* branches

2016-07-21 Thread California Sullivan
The drm forklift brought in some changes to structs and enums used by PWM drivers. These drivers didn't get updated, causing them to fail compilation. This set of backports updates the drivers to use the new structs and methods and fixes compilation. This set of patches is also available at ssh://

[linux-yocto] [PATCH 04/10] UPSTREAM: backlight: pwm_bl: Remove useless call to pwm_set_period()

2016-07-21 Thread California Sullivan
7f044b09b68d36811518c55f736a20648e8ed6e2) Signed-off-by: California Sullivan --- drivers/video/backlight/pwm_bl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c index 64f9e1b..a33a290 100644 --- a/drivers/video/backlight

[linux-yocto] [PATCH 08/10] UPSTREAM: pwm: rcar: Make use of pwm_is_enabled()

2016-07-21 Thread California Sullivan
ch without impacting PWM drivers. Fix this driver to use pwm_is_enabled() instead of directly accessing the ->flags field. Signed-off-by: Boris Brezillon Signed-off-by: Thierry Reding (cherry picked from commit 3587c260906259632df07652743269627f408d85) Signed-off-by: California Sullivan --- dr

[linux-yocto] [PATCH 02/10] UPSTREAM: backlight: pwm_bl: Fix broken PWM backlight for non-dt platforms

2016-07-21 Thread California Sullivan
ble and by checking that for NULL before dereferencing it. Reported-by: Robert Jarzmik Signed-off-by: Philipp Zabel Acked-by: Thierry Reding Tested-by: Robert Jarzmik Signed-off-by: Lee Jones (cherry picked from commit 8777078015bb77f0561303b6dea23d40bd9f3053) Signed-off-by: Californi

[linux-yocto] [PATCH 06/10] UPSTREAM: backlight: lm3630a_bl: Stop messing with the pwm->period field

2016-07-21 Thread California Sullivan
rom 4ff66efd59102280a71d432c9f0e89cdaf66b849) Signed-off-by: California Sullivan --- drivers/video/backlight/lm3630a_bl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/video/backlight/lm3630a_bl.c b/drivers/video/backlight/lm3630a_bl.c index 35fe482..3d16bd6 100644 --- a/drivers/video/backli

[linux-yocto] [PATCH 05/10] UPSTREAM: backlight: pwm_bl: Use pwm_get_args() where appropriate

2016-07-21 Thread California Sullivan
6cb9644db7364ff5d2980ccd365b8cb684145327) Signed-off-by: California Sullivan --- drivers/video/backlight/pwm_bl.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c index a33a290..b2b366b 100644 --- a/drivers

[linux-yocto] [PATCH 10/10] UPSTREAM: hwmon: pwm-fan: Use pwm_get_args() where appropriate

2016-07-21 Thread California Sullivan
picked from commit 2289711c9d4d588954ff86a06685f1579bf6c446) Signed-off-by: California Sullivan --- drivers/hwmon/pwm-fan.c | 26 -- 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/drivers/hwmon/pwm-fan.c b/drivers/hwmon/pwm-fan.c index 3e23003..f9af393 100644

[linux-yocto] [PATCH 09/10] UPSTREAM: pwm: Use pwm_get/set_xxx() helpers where appropriate

2016-07-21 Thread California Sullivan
map-dmtimer as well, which does not yet exist in the 4.4 kernel. (cherry picked from commit 4b58896f72176b781816a9e14dcea5f755b19b5c) Signed-off-by: California Sullivan --- drivers/pwm/pwm-crc.c | 2 +- drivers/pwm/pwm-lpc18xx-sct.c | 2 +- drivers/pwm/pwm-sun4i.c | 3 ++- 3 fi

[linux-yocto] [PATCH 07/10] UPSTREAM: clk: pwm: Use pwm_get_args() where appropriate

2016-07-21 Thread California Sullivan
picked from commit dd0b38b7ca0d8c8aadcf8a17d7c90d36ab8ab6e4) Signed-off-by: California Sullivan --- drivers/clk/clk-pwm.c | 17 - 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/drivers/clk/clk-pwm.c b/drivers/clk/clk-pwm.c index 328fcfc..9897eb1 100644 --- a/drivers

[linux-yocto] [PATCH 1/3] features: Add 6lowpan feature and add it where necessary

2016-08-17 Thread California Sullivan
For now just add the minimum configuration necessary to support other 6LoWPAN options we are already trying to enable. Fixes some configuration warnings that occur due to missing dependencies. Signed-off-by: California Sullivan --- features/6lowpan/6lowpan.cfg | 7 +++ features

[linux-yocto] [PATCH 3/3] features: Create mfd-intel-lpss feature and use where appropriate

2016-08-17 Thread California Sullivan
No need to have these similar configurations spread all around. Also solves a warning where skylake tried to set MFD_INTEL_LPSS to build as a module, but MFD_INTEL_LPSS_PCI in broxton hits a select and forces it to built in. Signed-off-by: California Sullivan --- features/mfd/mfd-intel-lpss.cfg

[linux-yocto] [PATCH 2/3] features/iio: Set IIO_BUFFER_CB to =m instead of =y

2016-08-17 Thread California Sullivan
CONFIG_IIO_BUFFER_CB is a tristate and CONFIG_IIO is set to =m, so CONFIG_IIO_BUFFER_CB gets forced to =m anyway. Fixes a kernel_configcheck warning we get with the new tools. Signed-off-by: California Sullivan --- features/iio/iio.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[linux-yocto] [PATCH 0/3] Fix kernel_configcheck warnings

2016-08-17 Thread California Sullivan
Hi Bruce, This set of patches should fix the warnings we see with the new kernel tools. Please apply them to 4.4 and master branches of the yocto-kernel-cache. Thanks, Cal Sullivan California Sullivan (3): features: Add 6lowpan feature and add it where necessary features/iio: Set

[linux-yocto] [PATCH 1/1] drm/i915: Fix i915 merge with v4.4.16

2016-08-19 Thread California Sullivan
from master. All the patches applied cleanly and we can now compile. Signed-off-by: California Sullivan --- drivers/gpu/drm/i915/i915_reg.h | 2 ++ drivers/gpu/drm/i915/intel_dp.c | 11 +-- drivers/gpu/drm/i915/intel_dp_link_training.c

[linux-yocto] [PATCH 0/1] Fix i915 merge

2016-08-19 Thread California Sullivan
Eric, Bruce, please make sure my strategy with this fix is sane before merging. If it is, please apply it to standard/intel/base and merge into all the other intel branches. Thanks, Cal Sullivan California Sullivan (1): drm/i915: Fix i915 merge with v4.4.16 drivers/gpu/drm/i915/i915_reg.h

[linux-yocto] [PATCH 1/3] features: Fix dependencies and =m vs =y discrepancies for corei7

2016-08-19 Thread California Sullivan
I missed these in my first pass. This should fix the remaining warnings that occur with the intel-corei7-64 configurations. The ISDN configurations might need to be broken out into their own feature but for now just enable them as dependencies for BT_CMTP. Signed-off-by: California Sullivan

[linux-yocto] [PATCH 0/3] core2 architecture mismatch and configuration warning fixes

2016-08-19 Thread California Sullivan
Hi Bruce, I missed some things with my last set of patches. With this set I don't see any more warnings with the new kernel tools in my local testing. Please apply to 4.4 and master. Hopefully this is the last set! Thanks, Cal Sullivan California Sullivan (3): features: Fix dependencie

[linux-yocto] [PATCH 2/3] intel-core2-32.cfg: Explicitly disable CONFIG_64BIT

2016-08-19 Thread California Sullivan
The new kernel tools do not automagically do this, causing dependency issues and architecture mismatch errors. Explicitly disable the CONFIG to fix it. Signed-off-by: California Sullivan --- bsp/intel-common/intel-core2-32.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/intel

[linux-yocto] [PATCH 3/3] kver: bump to v4.4.18

2016-08-19 Thread California Sullivan
Signed-off-by: California Sullivan --- kver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kver b/kver index 8f2c70f..036594b 100644 --- a/kver +++ b/kver @@ -1 +1 @@ -v4.4.15 +v4.4.18 -- 2.5.5 -- ___ linux-yocto mailing list

[linux-yocto] [PATCH 1/4] features: Add 6lowpan feature and add it where necessary

2016-08-29 Thread California Sullivan
For now just add the minimum configuration necessary to support other 6LoWPAN options we are already trying to enable. Fixes some configuration warnings that occur due to missing dependencies. Signed-off-by: California Sullivan Signed-off-by: Bruce Ashfield --- features/6lowpan/6lowpan.cfg

[linux-yocto] [PATCH 0/4][yocto-4.1] Fix kernel_configcheck warnings for core2 and corei7

2016-08-29 Thread California Sullivan
This is a backport of a few patches from the yocto-4.4 branch and one new patch for yocto-4.1 specifically. These fix the warnings we get with the new kernel tools for these two BSPs. Still to come is intel-quark fixes for both branches. Thanks, Cal Sullivan California Sullivan (4): features

[linux-yocto] [PATCH 2/4] intel-core2-32.cfg: Explicitly disable CONFIG_64BIT

2016-08-29 Thread California Sullivan
The new kernel tools do not automagically do this, causing dependency issues and architecture mismatch errors. Explicitly disable the CONFIG to fix it. Signed-off-by: California Sullivan Signed-off-by: Bruce Ashfield --- bsp/intel-common/intel-core2-32.cfg | 3 +++ 1 file changed, 3 insertions

[linux-yocto] [PATCH 3/4] features: Fix dependencies and =m vs =y discrepancies for corei7

2016-08-29 Thread California Sullivan
I missed these in my first pass. This should fix the remaining warnings that occur with the intel-corei7-64 configurations. The ISDN configurations might need to be broken out into their own feature but for now just enable them as dependencies for BT_CMTP. Signed-off-by: California Sullivan

  1   2   >