linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] spi driver changes
@ 2010-05-25  7:06 Grant Likely
  0 siblings, 0 replies; 2+ messages in thread
From: Grant Likely @ 2010-05-25  7:06 UTC (permalink / raw)
  To: Linus Torvalds, Linux Kernel Mailing List, spi-devel-general

Hi Linus,

Here are the SPI device driver changes for .35, plus a bug fix to the
xilinx driver related to the OF changes.

Thanks,
g.

The following changes since commit 7e125f7b9cbfce4101191b8076d606c517a73066:
  Linus Torvalds (1):
        Merge git://git.kernel.org/.../davem/ide-2.6

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6 next-spi

Anatolij Gustschin (2):
      powerpc/mpc5121: move PSC FIFO memory init to platform code
      spi/mpc5121: Add SPI master driver for MPC5121 PSC

Grant Likely (2):
      Merge remote branch 'origin' into secretlab/next-spi
      spi/xilinx: Fix compile error

Grzegorz Sygieda (1):
      spi/pl022: fix stop queue procedure

Joakim Tjernlund (3):
      spi/spi_mpc8xxx: fix potential memory corruption.
      spi/spi_mpc8xxx: Fix QE mode Litte Endian
      spi/spi_mpc8xxx: Do not use map_tx_dma to unmap rx_dma

Linus Walleij (2):
      spi/pl022: fix up differences between ARM and ST versions
      spi/pl022: add support for the PL023 derivate

Mika Westerberg (1):
      spi/ep93xx: implemented driver for Cirrus EP93xx SPI controller

Prarit Bhargava (1):
      Documentation/spi/* compile warning fix

Roman Tereshonkov (2):
      spi/omap2_mcspi: change default DMA_MIN_BYTES value to 160
      spi/omap2_mcspi: add turbo mode support

Scott Ellis (1):
      spi/omap2_mcspi: Check params before dereference or use

Thomas Koeller (1):
      spi/davinci: Fix clock prescale factor computation

hartleys (1):
      spi: move bitbang txrx utility functions to private header

 Documentation/spi/ep93xx_spi                   |   95 +++
 Documentation/spi/spidev_fdx.c                 |    4 +-
 arch/arm/mach-ep93xx/include/mach/ep93xx_spi.h |   27 +
 arch/powerpc/include/asm/mpc52xx_psc.h         |    1 +
 arch/powerpc/platforms/512x/mpc512x_shared.c   |   78 ++
 drivers/serial/mpc52xx_uart.c                  |   69 --
 drivers/spi/Kconfig                            |   17 +
 drivers/spi/Makefile                           |    2 +
 drivers/spi/amba-pl022.c                       |  250 +++++--
 drivers/spi/davinci_spi.c                      |   12 +-
 drivers/spi/ep93xx_spi.c                       |  938 ++++++++++++++++++++++++
 drivers/spi/mpc512x_psc_spi.c                  |  576 +++++++++++++++
 drivers/spi/omap2_mcspi.c                      |  153 +++-
 drivers/spi/spi_bitbang_txrx.h                 |   93 +++
 drivers/spi/spi_butterfly.c                    |    3 +-
 drivers/spi/spi_gpio.c                         |    3 +-
 drivers/spi/spi_lm70llp.c                      |    3 +-
 drivers/spi/spi_mpc8xxx.c                      |  110 ++-
 drivers/spi/spi_s3c24xx_gpio.c                 |    3 +-
 drivers/spi/spi_sh_sci.c                       |    3 +-
 drivers/spi/xilinx_spi_of.c                    |    8 +-
 include/linux/amba/pl022.h                     |   32 +-
 include/linux/spi/spi_bitbang.h                |  101 ---
 23 files changed, 2262 insertions(+), 319 deletions(-)
 create mode 100644 Documentation/spi/ep93xx_spi
 create mode 100644 arch/arm/mach-ep93xx/include/mach/ep93xx_spi.h
 create mode 100644 drivers/spi/ep93xx_spi.c
 create mode 100644 drivers/spi/mpc512x_psc_spi.c
 create mode 100644 drivers/spi/spi_bitbang_txrx.h


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [git pull] spi driver changes
@ 2011-10-29  5:09 Grant Likely
  0 siblings, 0 replies; 2+ messages in thread
From: Grant Likely @ 2011-10-29  5:09 UTC (permalink / raw)
  To: Linus Torvalds, Linux Kernel Mailing List, spi-devel-general

Hi Linus,

Another unexciting spi driver pull.  Only spi driver fixes, plus one
patch that eliminates a lot of boilerplate on platform drivers.

g.

The following changes since commit ec7ae517537ae5c7b0b2cd7f562dfa3e7a05b954:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
(2011-10-28 16:44:18 -0700)

are available in the git repository at:

  git://git.secretlab.ca/git/linux-2.6 spi/next

Grant Likely (2):
      Merge commit 'v3.1' into spi/next
      drivercore: Add helper macro for platform_driver boilerplate

H Hartley Sweeten (1):
      spi: spi-dw: fix all sparse warnings

Marc Dietrich (1):
      spi/tegra: fix compilation error in spi-tegra.c

Mika Westerberg (1):
      spi/spi-ep93xx: add module.h include

Shubhrajyoti D (1):
      OMAP: SPI: Fix the trying to free nonexistent resource error

Viresh Kumar (5):
      spi/spi-pl022: Resolve formatting issues
      spi/spi-pl022: Use GFP_ATOMIC for allocation from tasklet
      spi/spi-pl022: Don't allocate more sg than required.
      spi/spi-pl022: calculate_effective_freq() must set rate <= requested rate
      spi/spi-pl022: Call pl022_dma_remove(pl022) only if enable_dma is true

Yong Zhang (1):
      spi: irq: Remove IRQF_DISABLED

 drivers/spi/spi-altera.c        |   13 +---
 drivers/spi/spi-ath79.c         |   13 +---
 drivers/spi/spi-atmel.c         |   13 +---
 drivers/spi/spi-bfin-sport.c    |   13 +---
 drivers/spi/spi-bfin5xx.c       |    2 +-
 drivers/spi/spi-coldfire-qspi.c |   16 +----
 drivers/spi/spi-davinci.c       |   20 ++----
 drivers/spi/spi-dw-mid.c        |    9 ++-
 drivers/spi/spi-dw-mmio.c       |   14 +---
 drivers/spi/spi-dw.c            |   62 ++++++++--------
 drivers/spi/spi-dw.h            |   97 ++++++++++++++------------
 drivers/spi/spi-ep93xx.c        |   21 ++----
 drivers/spi/spi-fsl-espi.c      |   13 +---
 drivers/spi/spi-gpio.c          |   21 ++----
 drivers/spi/spi-imx.c           |   14 +----
 drivers/spi/spi-mpc512x-psc.c   |   13 +---
 drivers/spi/spi-mpc52xx-psc.c   |   13 +---
 drivers/spi/spi-mpc52xx.c       |   14 +----
 drivers/spi/spi-nuc900.c        |   14 +----
 drivers/spi/spi-oc-tiny.c       |   13 +---
 drivers/spi/spi-omap2-mcspi.c   |    7 +-
 drivers/spi/spi-pl022.c         |  146 ++++++++++++++++++---------------------
 drivers/spi/spi-ppc4xx.c        |   15 +----
 drivers/spi/spi-s3c24xx.c       |   21 ++----
 drivers/spi/spi-sh-msiof.c      |   15 +----
 drivers/spi/spi-sh-sci.c        |   13 +---
 drivers/spi/spi-sh.c            |   15 +----
 drivers/spi/spi-stmp.c          |   13 +---
 drivers/spi/spi-tegra.c         |   17 +----
 drivers/spi/spi-ti-ssp.c        |   13 +---
 drivers/spi/spi-xilinx.c        |   13 +---
 drivers/tty/serial/of_serial.c  |   12 +---
 include/linux/platform_device.h |   17 +++++
 33 files changed, 231 insertions(+), 494 deletions(-)


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-10-29  5:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-25  7:06 [git pull] spi driver changes Grant Likely
2011-10-29  5:09 Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).