Re: [linux-yocto] [PATCH 0/2] [linux-yocto-3.10] standard/base: Backport Baytrail bug fixes patches from mainline kernel into Yocto Project linux kernel 3.10

2015-11-16 Thread Bruce Ashfield
On 15-11-12 03:00 AM, wan.ahmad.zainie.wan.moha...@intel.com wrote: From: Wan Ahmad Zainie Hi all. This patch is to backport Baytrail bug fixes patches that are available in the upstream kernel into Yocto Project linux kernel v3.10. These bug fixes

Re: [linux-yocto] [PATCH 0/2] Intel Axxia updates to linux-yocto-3.10

2015-11-16 Thread Bruce Ashfield
On 15-11-13 01:29 PM, Cristian Bercaru wrote: Hello! Please apply this series of fixes to Axxia platform drivers on the following branches from linux-yocto-3.10: standard/axxia/base standard/preempt-rt/axxia/base merged. Bruce Gary McGee (1): drivers/misc/lsi-ncr.c: Remove

Re: [linux-yocto] [PATCH 0/1] features: add pwm-lpss-platform to baytrail

2015-11-16 Thread Bruce Ashfield
On 15-11-12 04:15 PM, california.l.sulli...@intel.com wrote: From: California Sullivan This patch is targetted for both the 4.1 and 3.19 branches. merged to 3.19, 4.1 and master. Bruce California Sullivan (1): features: add pwm-lpss-platform to

[linux-yocto] [PATCH 1/6] Revert "dmaengine: dw: move clock operations to platform.c"

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: "Ng, Wei Tee" This reverts commit a2adfa19c6f9adb33e1c11cacf02f0e06e166434. Signed-off-by: Ng, Wei Tee --- drivers/dma/dw/core.c | 11 +++ drivers/dma/dw/internal.h | 2 -- drivers/dma/dw/platform.c | 25 +++--

[linux-yocto] [PATCH 0/6] [linux-yocto-3.10] valleyisland-io-4.0: Updated for Bay Trail IO

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Wan Ahmad Zainie Hi. This patch is to update the feature branch (valleyisland-io-4.0) with the following changes: 1. Rearrange the dmaengine commits in the correct order. 2. Update of i2c-designware for mode switching. It was built with Valley

[linux-yocto] [PATCH 2/6] dmaengine: dw: apply both HS interfaces and remove slave_id usage

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Andy Shevchenko Instead of one request line member let's use both source and destination ones. Usually we have no such hardware except Atmel MMC controller found on AVR32 platform (see arch/avr32/mach-at32ap/at32ap700x.c and drivers/mmc/host/atmel-mci.c).

[linux-yocto] [PATCH 1/2] serial: 8250: don't use slave_id of dma_slave_config

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Andy Shevchenko That field has been deprecated in favour of getting the necessary information from ACPI or DT. However, we still need to deal systems that are PCI only (no ACPI to back up) like Intel Bay Trail. In order to support such systems, we

[linux-yocto] [PATCH 3/6] dmaengine: dw: move clock operations to platform.c

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Andy Shevchenko On BayTrail platform DMA is not functional in the PCI mode, whereby it always failed and exit at the point when it tries to get a clock. It causes the PCI mode probe to exit with the error message: dw_dmac_pci: probe of

[linux-yocto] [PATCH 5/6] i2c: allow Designware I2C to be probed before SMBus for Baytrail

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Maurice Petallo When SMBus is enabled in Baytrail, it is being probed first before all the Designware I2C devices. This means SMBus will take the first available bus id which is 0 and then the I2C devices will take the next succeeding bus ids. This should be

[linux-yocto] [PATCH 2/2] spi/pxa2xx: Don't use slave_id of dma_slave_config

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: Mika Westerberg That field has been deprecated in favour of getting the necessary information from ACPI/DT. However, we still need to deal systems that are PCI only (no ACPI to back up). In order to support such systems, we allow the DMA filter function

[linux-yocto] [PATCH 6/6] i2c: designware: enable fast and standard speed mode switching

2015-11-16 Thread wan . ahmad . zainie . wan . mohamad
From: cchew14 This patch applies the change to both platform and pci driver For built-in driver, insert i2c-designware-pci.force_std_mode=1 for LPSS PCI Mode or i2c-designware-platform.force_std_mode=1 for LPSS ACPI Mode in kernel boot configuration. v3: - Nothing was