]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[ARM] 4760/1: [AT91] SPI CS0 errata on AT91RM9200
authorAndrew Victor <linux@maxim.org.za>
Wed, 23 Jan 2008 08:29:46 +0000 (09:29 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Sat, 26 Jan 2008 15:00:32 +0000 (15:00 +0000)
Due to errata regarding the handling of SPI CS0 on the AT91RM9200, the
atmel_spi driver drives CS0 from the SPI controller and not as a GPIO
pin.
We therefore need to configure CS0 for use by the controller

Signed-off-by: Andrew Victor <linux@maxim.org.za>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/mach-at91/at91rm9200_devices.c

index ea9a952fb877b6bba50399b1602db64efb09837f..ef6aeb86e9805ba402c58cc70afdece13b009419 100644 (file)
@@ -558,8 +558,11 @@ void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
                else
                        cs_pin = spi_standard_cs[devices[i].chip_select];
 
-               /* enable chip-select pin */
-               at91_set_gpio_output(cs_pin, 1);
+               if (devices[i].chip_select == 0)        /* for CS0 errata */
+                       at91_set_A_periph(cs_pin, 0);
+               else
+                       at91_set_gpio_output(cs_pin, 1);
+
 
                /* pass chip-select pin to driver */
                devices[i].controller_data = (void *) cs_pin;