On 2014-06-12, 2:32 AM, rebecca.swee.fun.ch...@intel.com wrote:
From: Chang Rebecca Swee Fun <rebecca.swee.fun.ch...@intel.com>

Hi Bruce and all,


Sorry for the slow reply. I'm getting to the backlog of patches now.

This patchset is for rebasing the valleyisland-io-1.0 feature branch.
I recently received a notification from Greg that the Baytrail SMBUS
back-porting commits were successfully got merged into linux-stable
tree on branch linux-3.10.y. I foresee that you might as well merging
in the latest 3.10 LTS commits into linux-yocto-3.10.

What is the changes I've made in this patchset is, remove two commits
related to SMBUS. These two commits had been merge in to the 3.10 LTS.
8567f56 i2c: i801: enable Intel BayTrail SMBUS
1b796c0 i2c: i801: Add Device IDs for Intel Wildcat Point-LP PCH

Confirmed. I see these in 3.10.42+, which I'll be merging to the 3.10
linux-yocto tree shortly.


For other patches in this feature branch, some are still staging in queue
to merge into 3.10 LTSI. If you have plan to merge in 3.10 LTS commits
into linux-yocto-3.10, please help to rebase valleyisland-io-1.0 feature
branch to this new branch.

I'll do that merge shortly, leaving all but the two changes you've identified
on the feature branch.


After rebasing, valleyisland feature branch should have a new rev. branch
name called: valleyisland-io-2.0.

Confirmed. I can do that as well.

Just waiting for Darren's ack on the series/strategy and I'll get
the merge started.

Bruce


Thanks in advance.

Regards
Rebecca

The following changes since commit ca510b5192c3b3814f1d1a19403d8847ba5db12b:

   Merge tag 'v3.10.41' into standard/ltsi (2014-06-04 10:15:38 -0400)

are available in the git repository at:


   git://git.yoctoproject.org/linux-yocto-contrib rebeccas/feature-branch-rebase
   
http://git.yoctoproject.org/cgit.cgi/linux-yocto-contrib/log/?h=rebeccas/feature-branch-rebase

Adrian Hunter (1):
   mmc: sdhci: Allow for irq being shared

Alan Stern (1):
   usb: gadget: don't fail when DMA isn't present

Chang Rebecca Swee Fun (1):
   x86/byt: enable board file for Baytrail LPSS PCI mode

Chew, Chiau Ee (8):
   x86/Kconfig: add PCI dependency for CONFIG_X86_INTEL_LPSS
   serial: 8250_dw: Added support for 1M, 2M, 3M and 4M exat baud rate
   spi/pxa2xx-pci: Add support for Intel BYT SPI
   spi/pxa2xx: Fix BYT ACPI mode SPI DMA transfer failure at low speeds
   dma: dw: Add suspend and resume handling for PCI mode DW_DMAC.
   i2c: designware-pci: add 10-bit addressing mode functionality for BYT
     I2C
   i2c: designware-pci: set ideal HCNT, LCNT and SDA hold time value
   ACPI / LPSS: Add Intel BayTrail ACPI mode PWM

Chew, Kean Ho (4):
   pinctrl-baytrail: add function mux checking in gpio pin request
   pinctrl-baytrail: unmap interrupt when free the gpio pin
   pinctrl-baytrail: enable platform device in the absent of ACPI
     enumeration
   pinctrl-baytrail: setup IOAPIC interrupt for GPIO clusters on non-ACPI
     system

Felipe Balbi (1):
   usb: gadget: udc-core: move sysfs_notify() to a workqueue

H Hartley Sweeten (1):
   pwm: Add sysfs interface

Heikki Krogerus (2):
   serial: 8250: don't change the fifo trigger level when using dma
   serial: 8250_pci: add support for Intel BayTrail

Mika Westerberg (2):
   i2c: designware-pci: Add Baytrail PCI IDs
   pwm: add support for Intel Low Power Subsystem PWM

  Documentation/ABI/testing/sysfs-class-pwm  |  79 +++++++
  Documentation/pwm.txt                      |  37 +++
  arch/x86/Kconfig                           |  11 +-
  arch/x86/platform/Makefile                 |   3 +
  arch/x86/platform/byt/Makefile             |   1 +
  arch/x86/platform/byt/byt-board.c          |  84 +++++++
  drivers/acpi/acpi_lpss.c                   |  11 +
  drivers/dma/dw/pci.c                       |  33 +++
  drivers/i2c/busses/i2c-designware-pcidrv.c |  66 +++++-
  drivers/mmc/host/sdhci.c                   |   4 +-
  drivers/pinctrl/Kconfig                    |  19 +-
  drivers/pinctrl/Makefile                   |   1 +
  drivers/pinctrl/pinctrl-baytrail-dev.c     | 159 +++++++++++++
  drivers/pinctrl/pinctrl-baytrail.c         | 101 ++++++++-
  drivers/pwm/Kconfig                        |  14 ++
  drivers/pwm/Makefile                       |   2 +
  drivers/pwm/core.c                         |  25 +-
  drivers/pwm/pwm-lpss.c                     | 183 +++++++++++++++
  drivers/pwm/sysfs.c                        | 352 +++++++++++++++++++++++++++++
  drivers/spi/Kconfig                        |   5 +-
  drivers/spi/spi-pxa2xx-dma.c               |   2 +-
  drivers/spi/spi-pxa2xx-pci.c               |  85 +++++--
  drivers/tty/serial/8250/8250_core.c        |   2 +-
  drivers/tty/serial/8250/8250_dw.c          |  43 ++++
  drivers/tty/serial/8250/8250_pci.c         | 145 ++++++++++++
  drivers/usb/gadget/udc-core.c              |  18 +-
  include/linux/pinctrl/pinctrl-byt.h        |  16 ++
  include/linux/pwm.h                        |  29 ++-
  include/linux/usb/gadget.h                 |   4 +
  29 files changed, 1491 insertions(+), 43 deletions(-)
  create mode 100644 Documentation/ABI/testing/sysfs-class-pwm
  create mode 100644 arch/x86/platform/byt/Makefile
  create mode 100644 arch/x86/platform/byt/byt-board.c
  create mode 100644 drivers/pinctrl/pinctrl-baytrail-dev.c
  create mode 100644 drivers/pwm/pwm-lpss.c
  create mode 100644 drivers/pwm/sysfs.c
  create mode 100644 include/linux/pinctrl/pinctrl-byt.h


--
_______________________________________________
linux-yocto mailing list
linux-yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/linux-yocto

Reply via email to