linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mika Westerberg <mika.westerberg-X3B1VOXEql0@public.gmane.org>
To: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Cc: dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
	martinwguy-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	hsweeten-3FF4nKcrg1dE2c76skzGb0EOCMrvLtNR@public.gmane.org,
	ryan-7Wk5F4Od5/oYd5yxfr4S2w@public.gmane.org,
	mika.westerberg-X3B1VOXEql0@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: [PATCH v7 0/2] spi: driver for Cirrus EP93xx SPI controller
Date: Thu,  6 May 2010 07:47:03 +0300	[thread overview]
Message-ID: <cover.1273120206.git.mika.westerberg@iki.fi> (raw)

Hello,

This series implements SPI master driver for Cirrus Logic EP93xx SPI
controllers.

Changes to previous (v6) version:
	- only cosmetic non-functional changes (removed unnecessary comments and
	  few inlines) based on review comments by H Hartley Sweeten

Tested on TS-7260 (ep9302) and Sim.One (ep9307) boards with mmc_spi and at25
drivers.

Note that patch 2/2 depends on patch that is already in Russell's patch
tracking system (and in linux-next)
	http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=5998/1
So 2/2 should probably go in via Russell's tree.

Regards,
MW

Mika Westerberg (2):
  spi: implemented driver for Cirrus EP93xx SPI controller
  ep93xx: SPI driver platform support code

 Documentation/spi/ep93xx_spi                    |   95 +++
 arch/arm/mach-ep93xx/clock.c                    |   13 +
 arch/arm/mach-ep93xx/core.c                     |   52 ++
 arch/arm/mach-ep93xx/include/mach/ep93xx-regs.h |    1 +
 arch/arm/mach-ep93xx/include/mach/ep93xx_spi.h  |   27 +
 arch/arm/mach-ep93xx/include/mach/platform.h    |    4 +
 drivers/spi/Kconfig                             |   10 +
 drivers/spi/Makefile                            |    1 +
 drivers/spi/ep93xx_spi.c                        |  938 +++++++++++++++++++++++
 9 files changed, 1141 insertions(+), 0 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


------------------------------------------------------------------------------

             reply	other threads:[~2010-05-06  4:47 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-06  4:47 Mika Westerberg [this message]
     [not found] ` <cover.1273120206.git.mika.westerberg-X3B1VOXEql0@public.gmane.org>
2010-05-06  4:47   ` [PATCH v7 1/2] spi: implemented driver for Cirrus EP93xx SPI controller Mika Westerberg
     [not found]     ` <3729cd3650f5af6aebfc5bae02ff6aad1b9b1e82.1273120206.git.mika.westerberg-X3B1VOXEql0@public.gmane.org>
2010-05-08 17:32       ` Martin Guy
     [not found]         ` <AANLkTimZywbu5KVvnUouLUoY1GUxWGlYoSgIbUlRDT5w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-05-08 17:33           ` Martin Guy
2010-05-09  9:29           ` Mika Westerberg
     [not found]             ` <20100509092917.GR26418-WfG2TfFPcQ9S6P4I59wummXnswh1EIUO@public.gmane.org>
2010-05-09 16:47               ` Martin Guy
     [not found]                 ` <AANLkTiks2l9N1uXisctdI3aiNmFavIHzvwbOTcgeFGbZ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2010-05-09 17:17                   ` Mika Westerberg
2010-05-22  7:27       ` Mika Westerberg
2010-05-22  7:49         ` Grant Likely
2010-05-06  4:47   ` [PATCH v7 2/2] ep93xx: SPI driver platform support code Mika Westerberg
2010-05-09 16:57     ` Martin Guy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1273120206.git.mika.westerberg@iki.fi \
    --to=mika.westerberg-x3b1voxeql0@public.gmane.org \
    --cc=dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=hsweeten-3FF4nKcrg1dE2c76skzGb0EOCMrvLtNR@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=martinwguy-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=ryan-7Wk5F4Od5/oYd5yxfr4S2w@public.gmane.org \
    --cc=spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).