Re: [spi-devel-general] [PATCH] spi: Add support for the OpenCores SPI controller.

2009-04-04 Thread David Brownell
Hmm ... Open Hardware, Free Software. Sounds like a good match! This driver has some all-too-common failings though: (a) doesn't correctly reject invalid device configurations in the setup() method (b) doesn't correctly reject unsupported per-message options in the transfer() method

Re: [spi-devel-general] [PATCH] spi: Add support for the OpenCores SPI controller.

2009-03-30 Thread Florian Fainelli
Hi Thierry, Le Thursday 26 March 2009 09:07:53 Thierry Reding, vous avez écrit : > This patch adds a platform device driver that supports the OpenCores SPI > controller. > > The driver expects two resources: an IORESOURCE_MEM resource defining the > core's memory-mapped registers and an IORESOURCE

[spi-devel-general] [PATCH] spi: Add support for the OpenCores SPI controller.

2009-03-26 Thread Thierry Reding
This patch adds a platform device driver that supports the OpenCores SPI controller. The driver expects two resources: an IORESOURCE_MEM resource defining the core's memory-mapped registers and an IORESOURCE_IRQ for the associated interrupt. It also requires a clock, "spi-master-clk", used to comp

[spi-devel-general] [PATCH] spi: Add support for the OpenCores SPI controller.

2009-02-09 Thread Thierry Reding
This patch adds support for the OpenCores SPI controller. Signed-off-by: Thierry Reding --- drivers/spi/Kconfig |5 + drivers/spi/Makefile |1 + drivers/spi/spioc.c | 529 + include/linux/spi/spioc.h | 25 +++ 4 files chang