diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-07 20:08:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-07 20:08:46 -0500 |
commit | 021db8e2bde53024a163fb4417a185de46fe77aa (patch) | |
tree | 098a28bd2414ea2622493a1736a677dab5085dfc /arch | |
parent | 72eb6a791459c87a0340318840bb3bd9252b627b (diff) | |
parent | 07fe0351702b6f0c9749e80cdbcb758686b0fe9b (diff) |
Merge branch 'next-spi' of git://git.secretlab.ca/git/linux-2.6
* 'next-spi' of git://git.secretlab.ca/git/linux-2.6: (77 commits)
spi/omap: Fix DMA API usage in OMAP MCSPI driver
spi/imx: correct the test on platform_get_irq() return value
spi/topcliff: Typo fix threhold to threshold
spi/dw_spi Typo change diable to disable.
spi/fsl_espi: change the read behaviour of the SPIRF
spi/mpc52xx-psc-spi: move probe/remove to proper sections
spi/dw_spi: add DMA support
spi/dw_spi: change to EXPORT_SYMBOL_GPL for exported APIs
spi/dw_spi: Fix too short timeout in spi polling loop
spi/pl022: convert running variable
spi/pl022: convert busy flag to a bool
spi/pl022: pass the returned sglen to the DMA engine
spi/pl022: map the buffers on the DMA engine
spi/topcliff_pch: Fix data transfer issue
spi/imx: remove autodetection
spi/pxa2xx: pass of_node to spi device and set a parent device
spi/pxa2xx: Modify RX-Tresh instead of busy-loop for the remaining RX bytes.
spi/pxa2xx: Add chipselect support for Sodaville
spi/pxa2xx: Consider CE4100's FIFO depth
spi/pxa2xx: Add CE4100 support
...
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-davinci/dm365.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/spi.h | 52 | ||||
-rw-r--r-- | arch/arm/mach-pxa/cm-x255.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/cm-x270.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/corgi.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/devices.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/em-x270.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/hx4700.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/icontrol.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/include/mach/pxa2xx_spi.h | 47 | ||||
-rw-r--r-- | arch/arm/mach-pxa/littleton.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/lubbock.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/pcm027.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/poodle.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 3 | ||||
-rw-r--r-- | arch/arm/mach-pxa/stargate2.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/tosa.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/trizeps4.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-pxa/z2.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/zeus.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-pxa/include/plat/ssp.h | 186 | ||||
-rw-r--r-- | arch/arm/plat-pxa/ssp.c | 2 |
23 files changed, 64 insertions, 270 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index 2652af124acd..a5f8a80c1f28 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c | |||
@@ -412,12 +412,7 @@ static struct resource dm355_spi0_resources[] = { | |||
412 | static struct davinci_spi_platform_data dm355_spi0_pdata = { | 412 | static struct davinci_spi_platform_data dm355_spi0_pdata = { |
413 | .version = SPI_VERSION_1, | 413 | .version = SPI_VERSION_1, |
414 | .num_chipselect = 2, | 414 | .num_chipselect = 2, |
415 | .clk_internal = 1, | 415 | .cshold_bug = true, |
416 | .cs_hold = 1, | ||
417 | .intr_level = 0, | ||
418 | .poll_mode = 1, /* 0 -> interrupt mode 1-> polling mode */ | ||
419 | .c2tdelay = 0, | ||
420 | .t2cdelay = 0, | ||
421 | }; | 416 | }; |
422 | static struct platform_device dm355_spi0_device = { | 417 | static struct platform_device dm355_spi0_device = { |
423 | .name = "spi_davinci", | 418 | .name = "spi_davinci", |
diff --git a/arch/arm/mach-davinci/dm365.c b/arch/arm/mach-davinci/dm365.c index c466d710d3c1..02d2cc380df7 100644 --- a/arch/arm/mach-davinci/dm365.c +++ b/arch/arm/mach-davinci/dm365.c | |||
@@ -625,12 +625,6 @@ static u64 dm365_spi0_dma_mask = DMA_BIT_MASK(32); | |||
625 | static struct davinci_spi_platform_data dm365_spi0_pdata = { | 625 | static struct davinci_spi_platform_data dm365_spi0_pdata = { |
626 | .version = SPI_VERSION_1, | 626 | .version = SPI_VERSION_1, |
627 | .num_chipselect = 2, | 627 | .num_chipselect = 2, |
628 | .clk_internal = 1, | ||
629 | .cs_hold = 1, | ||
630 | .intr_level = 0, | ||
631 | .poll_mode = 1, /* 0 -> interrupt mode 1-> polling mode */ | ||
632 | .c2tdelay = 0, | ||
633 | .t2cdelay = 0, | ||
634 | }; | 628 | }; |
635 | 629 | ||
636 | static struct resource dm365_spi0_resources[] = { | 630 | static struct resource dm365_spi0_resources[] = { |
diff --git a/arch/arm/mach-davinci/include/mach/spi.h b/arch/arm/mach-davinci/include/mach/spi.h index 910efbf099c0..38f4da5ca135 100644 --- a/arch/arm/mach-davinci/include/mach/spi.h +++ b/arch/arm/mach-davinci/include/mach/spi.h | |||
@@ -19,26 +19,66 @@ | |||
19 | #ifndef __ARCH_ARM_DAVINCI_SPI_H | 19 | #ifndef __ARCH_ARM_DAVINCI_SPI_H |
20 | #define __ARCH_ARM_DAVINCI_SPI_H | 20 | #define __ARCH_ARM_DAVINCI_SPI_H |
21 | 21 | ||
22 | #define SPI_INTERN_CS 0xFF | ||
23 | |||
22 | enum { | 24 | enum { |
23 | SPI_VERSION_1, /* For DM355/DM365/DM6467 */ | 25 | SPI_VERSION_1, /* For DM355/DM365/DM6467 */ |
24 | SPI_VERSION_2, /* For DA8xx */ | 26 | SPI_VERSION_2, /* For DA8xx */ |
25 | }; | 27 | }; |
26 | 28 | ||
29 | /** | ||
30 | * davinci_spi_platform_data - Platform data for SPI master device on DaVinci | ||
31 | * | ||
32 | * @version: version of the SPI IP. Different DaVinci devices have slightly | ||
33 | * varying versions of the same IP. | ||
34 | * @num_chipselect: number of chipselects supported by this SPI master | ||
35 | * @intr_line: interrupt line used to connect the SPI IP to the ARM interrupt | ||
36 | * controller withn the SoC. Possible values are 0 and 1. | ||
37 | * @chip_sel: list of GPIOs which can act as chip-selects for the SPI. | ||
38 | * SPI_INTERN_CS denotes internal SPI chip-select. Not necessary | ||
39 | * to populate if all chip-selects are internal. | ||
40 | * @cshold_bug: set this to true if the SPI controller on your chip requires | ||
41 | * a write to CSHOLD bit in between transfers (like in DM355). | ||
42 | */ | ||
27 | struct davinci_spi_platform_data { | 43 | struct davinci_spi_platform_data { |
28 | u8 version; | 44 | u8 version; |
29 | u8 num_chipselect; | 45 | u8 num_chipselect; |
46 | u8 intr_line; | ||
47 | u8 *chip_sel; | ||
48 | bool cshold_bug; | ||
49 | }; | ||
50 | |||
51 | /** | ||
52 | * davinci_spi_config - Per-chip-select configuration for SPI slave devices | ||
53 | * | ||
54 | * @wdelay: amount of delay between transmissions. Measured in number of | ||
55 | * SPI module clocks. | ||
56 | * @odd_parity: polarity of parity flag at the end of transmit data stream. | ||
57 | * 0 - odd parity, 1 - even parity. | ||
58 | * @parity_enable: enable transmission of parity at end of each transmit | ||
59 | * data stream. | ||
60 | * @io_type: type of IO transfer. Choose between polled, interrupt and DMA. | ||
61 | * @timer_disable: disable chip-select timers (setup and hold) | ||
62 | * @c2tdelay: chip-select setup time. Measured in number of SPI module clocks. | ||
63 | * @t2cdelay: chip-select hold time. Measured in number of SPI module clocks. | ||
64 | * @t2edelay: transmit data finished to SPI ENAn pin inactive time. Measured | ||
65 | * in number of SPI clocks. | ||
66 | * @c2edelay: chip-select active to SPI ENAn signal active time. Measured in | ||
67 | * number of SPI clocks. | ||
68 | */ | ||
69 | struct davinci_spi_config { | ||
30 | u8 wdelay; | 70 | u8 wdelay; |
31 | u8 odd_parity; | 71 | u8 odd_parity; |
32 | u8 parity_enable; | 72 | u8 parity_enable; |
33 | u8 wait_enable; | 73 | #define SPI_IO_TYPE_INTR 0 |
74 | #define SPI_IO_TYPE_POLL 1 | ||
75 | #define SPI_IO_TYPE_DMA 2 | ||
76 | u8 io_type; | ||
34 | u8 timer_disable; | 77 | u8 timer_disable; |
35 | u8 clk_internal; | ||
36 | u8 cs_hold; | ||
37 | u8 intr_level; | ||
38 | u8 poll_mode; | ||
39 | u8 use_dma; | ||
40 | u8 c2tdelay; | 78 | u8 c2tdelay; |
41 | u8 t2cdelay; | 79 | u8 t2cdelay; |
80 | u8 t2edelay; | ||
81 | u8 c2edelay; | ||
42 | }; | 82 | }; |
43 | 83 | ||
44 | #endif /* __ARCH_ARM_DAVINCI_SPI_H */ | 84 | #endif /* __ARCH_ARM_DAVINCI_SPI_H */ |
diff --git a/arch/arm/mach-pxa/cm-x255.c b/arch/arm/mach-pxa/cm-x255.c index f1a7703d771b..93f59f877fc6 100644 --- a/arch/arm/mach-pxa/cm-x255.c +++ b/arch/arm/mach-pxa/cm-x255.c | |||
@@ -17,13 +17,13 @@ | |||
17 | #include <linux/mtd/nand-gpio.h> | 17 | #include <linux/mtd/nand-gpio.h> |
18 | 18 | ||
19 | #include <linux/spi/spi.h> | 19 | #include <linux/spi/spi.h> |
20 | #include <linux/spi/pxa2xx_spi.h> | ||
20 | 21 | ||
21 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
22 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
23 | #include <asm/mach/map.h> | 24 | #include <asm/mach/map.h> |
24 | 25 | ||
25 | #include <mach/pxa25x.h> | 26 | #include <mach/pxa25x.h> |
26 | #include <mach/pxa2xx_spi.h> | ||
27 | 27 | ||
28 | #include "generic.h" | 28 | #include "generic.h" |
29 | 29 | ||
diff --git a/arch/arm/mach-pxa/cm-x270.c b/arch/arm/mach-pxa/cm-x270.c index a9926bb75922..b88d601a8090 100644 --- a/arch/arm/mach-pxa/cm-x270.c +++ b/arch/arm/mach-pxa/cm-x270.c | |||
@@ -19,12 +19,12 @@ | |||
19 | #include <video/mbxfb.h> | 19 | #include <video/mbxfb.h> |
20 | 20 | ||
21 | #include <linux/spi/spi.h> | 21 | #include <linux/spi/spi.h> |
22 | #include <linux/spi/pxa2xx_spi.h> | ||
22 | #include <linux/spi/libertas_spi.h> | 23 | #include <linux/spi/libertas_spi.h> |
23 | 24 | ||
24 | #include <mach/pxa27x.h> | 25 | #include <mach/pxa27x.h> |
25 | #include <mach/ohci.h> | 26 | #include <mach/ohci.h> |
26 | #include <mach/mmc.h> | 27 | #include <mach/mmc.h> |
27 | #include <mach/pxa2xx_spi.h> | ||
28 | 28 | ||
29 | #include "generic.h" | 29 | #include "generic.h" |
30 | 30 | ||
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 9f3e5af0a0db..a5452a3a276d 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/spi/spi.h> | 28 | #include <linux/spi/spi.h> |
29 | #include <linux/spi/ads7846.h> | 29 | #include <linux/spi/ads7846.h> |
30 | #include <linux/spi/corgi_lcd.h> | 30 | #include <linux/spi/corgi_lcd.h> |
31 | #include <linux/spi/pxa2xx_spi.h> | ||
31 | #include <linux/mtd/sharpsl.h> | 32 | #include <linux/mtd/sharpsl.h> |
32 | #include <linux/input/matrix_keypad.h> | 33 | #include <linux/input/matrix_keypad.h> |
33 | #include <video/w100fb.h> | 34 | #include <video/w100fb.h> |
@@ -48,7 +49,6 @@ | |||
48 | #include <mach/irda.h> | 49 | #include <mach/irda.h> |
49 | #include <mach/mmc.h> | 50 | #include <mach/mmc.h> |
50 | #include <mach/udc.h> | 51 | #include <mach/udc.h> |
51 | #include <mach/pxa2xx_spi.h> | ||
52 | #include <mach/corgi.h> | 52 | #include <mach/corgi.h> |
53 | #include <mach/sharpsl_pm.h> | 53 | #include <mach/sharpsl_pm.h> |
54 | 54 | ||
diff --git a/arch/arm/mach-pxa/devices.c b/arch/arm/mach-pxa/devices.c index 022c2fa4af04..4c766e3b4af3 100644 --- a/arch/arm/mach-pxa/devices.c +++ b/arch/arm/mach-pxa/devices.c | |||
@@ -3,6 +3,7 @@ | |||
3 | #include <linux/init.h> | 3 | #include <linux/init.h> |
4 | #include <linux/platform_device.h> | 4 | #include <linux/platform_device.h> |
5 | #include <linux/dma-mapping.h> | 5 | #include <linux/dma-mapping.h> |
6 | #include <linux/spi/pxa2xx_spi.h> | ||
6 | 7 | ||
7 | #include <asm/pmu.h> | 8 | #include <asm/pmu.h> |
8 | #include <mach/udc.h> | 9 | #include <mach/udc.h> |
@@ -12,7 +13,6 @@ | |||
12 | #include <mach/irda.h> | 13 | #include <mach/irda.h> |
13 | #include <mach/ohci.h> | 14 | #include <mach/ohci.h> |
14 | #include <plat/pxa27x_keypad.h> | 15 | #include <plat/pxa27x_keypad.h> |
15 | #include <mach/pxa2xx_spi.h> | ||
16 | #include <mach/camera.h> | 16 | #include <mach/camera.h> |
17 | #include <mach/audio.h> | 17 | #include <mach/audio.h> |
18 | #include <mach/hardware.h> | 18 | #include <mach/hardware.h> |
diff --git a/arch/arm/mach-pxa/em-x270.c b/arch/arm/mach-pxa/em-x270.c index 4cefd1d18afd..a78bb3097739 100644 --- a/arch/arm/mach-pxa/em-x270.c +++ b/arch/arm/mach-pxa/em-x270.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
27 | #include <linux/spi/tdo24m.h> | 27 | #include <linux/spi/tdo24m.h> |
28 | #include <linux/spi/libertas_spi.h> | 28 | #include <linux/spi/libertas_spi.h> |
29 | #include <linux/spi/pxa2xx_spi.h> | ||
29 | #include <linux/power_supply.h> | 30 | #include <linux/power_supply.h> |
30 | #include <linux/apm-emulation.h> | 31 | #include <linux/apm-emulation.h> |
31 | #include <linux/i2c.h> | 32 | #include <linux/i2c.h> |
@@ -46,7 +47,6 @@ | |||
46 | #include <plat/pxa27x_keypad.h> | 47 | #include <plat/pxa27x_keypad.h> |
47 | #include <plat/i2c.h> | 48 | #include <plat/i2c.h> |
48 | #include <mach/camera.h> | 49 | #include <mach/camera.h> |
49 | #include <mach/pxa2xx_spi.h> | ||
50 | 50 | ||
51 | #include "generic.h" | 51 | #include "generic.h" |
52 | #include "devices.h" | 52 | #include "devices.h" |
diff --git a/arch/arm/mach-pxa/hx4700.c b/arch/arm/mach-pxa/hx4700.c index cacb21b7014d..a908e0a5f396 100644 --- a/arch/arm/mach-pxa/hx4700.c +++ b/arch/arm/mach-pxa/hx4700.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/regulator/max1586.h> | 33 | #include <linux/regulator/max1586.h> |
34 | #include <linux/spi/ads7846.h> | 34 | #include <linux/spi/ads7846.h> |
35 | #include <linux/spi/spi.h> | 35 | #include <linux/spi/spi.h> |
36 | #include <linux/spi/pxa2xx_spi.h> | ||
36 | #include <linux/usb/gpio_vbus.h> | 37 | #include <linux/usb/gpio_vbus.h> |
37 | 38 | ||
38 | #include <mach/hardware.h> | 39 | #include <mach/hardware.h> |
@@ -43,7 +44,6 @@ | |||
43 | #include <mach/hx4700.h> | 44 | #include <mach/hx4700.h> |
44 | #include <plat/i2c.h> | 45 | #include <plat/i2c.h> |
45 | #include <mach/irda.h> | 46 | #include <mach/irda.h> |
46 | #include <mach/pxa2xx_spi.h> | ||
47 | 47 | ||
48 | #include <video/platform_lcd.h> | 48 | #include <video/platform_lcd.h> |
49 | #include <video/w100fb.h> | 49 | #include <video/w100fb.h> |
diff --git a/arch/arm/mach-pxa/icontrol.c b/arch/arm/mach-pxa/icontrol.c index ac6ee12e400e..6cedc81da3bc 100644 --- a/arch/arm/mach-pxa/icontrol.c +++ b/arch/arm/mach-pxa/icontrol.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <mach/mxm8x10.h> | 24 | #include <mach/mxm8x10.h> |
25 | 25 | ||
26 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
27 | #include <mach/pxa2xx_spi.h> | 27 | #include <linux/spi/pxa2xx_spi.h> |
28 | #include <linux/can/platform/mcp251x.h> | 28 | #include <linux/can/platform/mcp251x.h> |
29 | 29 | ||
30 | #include "generic.h" | 30 | #include "generic.h" |
diff --git a/arch/arm/mach-pxa/include/mach/pxa2xx_spi.h b/arch/arm/mach-pxa/include/mach/pxa2xx_spi.h deleted file mode 100644 index b87cecd9bbdc..000000000000 --- a/arch/arm/mach-pxa/include/mach/pxa2xx_spi.h +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2005 Stephen Street / StreetFire Sound Labs | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef PXA2XX_SPI_H_ | ||
20 | #define PXA2XX_SPI_H_ | ||
21 | |||
22 | #define PXA2XX_CS_ASSERT (0x01) | ||
23 | #define PXA2XX_CS_DEASSERT (0x02) | ||
24 | |||
25 | /* device.platform_data for SSP controller devices */ | ||
26 | struct pxa2xx_spi_master { | ||
27 | u32 clock_enable; | ||
28 | u16 num_chipselect; | ||
29 | u8 enable_dma; | ||
30 | }; | ||
31 | |||
32 | /* spi_board_info.controller_data for SPI slave devices, | ||
33 | * copied to spi_device.platform_data ... mostly for dma tuning | ||
34 | */ | ||
35 | struct pxa2xx_spi_chip { | ||
36 | u8 tx_threshold; | ||
37 | u8 rx_threshold; | ||
38 | u8 dma_burst_size; | ||
39 | u32 timeout; | ||
40 | u8 enable_loopback; | ||
41 | int gpio_cs; | ||
42 | void (*cs_control)(u32 command); | ||
43 | }; | ||
44 | |||
45 | extern void pxa2xx_set_spi_info(unsigned id, struct pxa2xx_spi_master *info); | ||
46 | |||
47 | #endif /*PXA2XX_SPI_H_*/ | ||
diff --git a/arch/arm/mach-pxa/littleton.c b/arch/arm/mach-pxa/littleton.c index 719c260597e7..ccb7bfad17ca 100644 --- a/arch/arm/mach-pxa/littleton.c +++ b/arch/arm/mach-pxa/littleton.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/gpio.h> | 23 | #include <linux/gpio.h> |
24 | #include <linux/spi/spi.h> | 24 | #include <linux/spi/spi.h> |
25 | #include <linux/spi/pxa2xx_spi.h> | ||
25 | #include <linux/smc91x.h> | 26 | #include <linux/smc91x.h> |
26 | #include <linux/i2c.h> | 27 | #include <linux/i2c.h> |
27 | #include <linux/leds.h> | 28 | #include <linux/leds.h> |
@@ -42,7 +43,6 @@ | |||
42 | #include <mach/pxa300.h> | 43 | #include <mach/pxa300.h> |
43 | #include <mach/pxafb.h> | 44 | #include <mach/pxafb.h> |
44 | #include <mach/mmc.h> | 45 | #include <mach/mmc.h> |
45 | #include <mach/pxa2xx_spi.h> | ||
46 | #include <plat/pxa27x_keypad.h> | 46 | #include <plat/pxa27x_keypad.h> |
47 | #include <mach/littleton.h> | 47 | #include <mach/littleton.h> |
48 | #include <plat/i2c.h> | 48 | #include <plat/i2c.h> |
diff --git a/arch/arm/mach-pxa/lubbock.c b/arch/arm/mach-pxa/lubbock.c index d3375486c8cd..3072dbea5c1f 100644 --- a/arch/arm/mach-pxa/lubbock.c +++ b/arch/arm/mach-pxa/lubbock.c | |||
@@ -25,7 +25,7 @@ | |||
25 | 25 | ||
26 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
27 | #include <linux/spi/ads7846.h> | 27 | #include <linux/spi/ads7846.h> |
28 | #include <mach/pxa2xx_spi.h> | 28 | #include <linux/spi/pxa2xx_spi.h> |
29 | 29 | ||
30 | #include <asm/setup.h> | 30 | #include <asm/setup.h> |
31 | #include <asm/memory.h> | 31 | #include <asm/memory.h> |
diff --git a/arch/arm/mach-pxa/pcm027.c b/arch/arm/mach-pxa/pcm027.c index 8547c9abc40a..1fc8a66407ae 100644 --- a/arch/arm/mach-pxa/pcm027.c +++ b/arch/arm/mach-pxa/pcm027.c | |||
@@ -25,12 +25,12 @@ | |||
25 | #include <linux/mtd/physmap.h> | 25 | #include <linux/mtd/physmap.h> |
26 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
27 | #include <linux/spi/max7301.h> | 27 | #include <linux/spi/max7301.h> |
28 | #include <linux/spi/pxa2xx_spi.h> | ||
28 | #include <linux/leds.h> | 29 | #include <linux/leds.h> |
29 | 30 | ||
30 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
31 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
32 | #include <mach/pxa27x.h> | 33 | #include <mach/pxa27x.h> |
33 | #include <mach/pxa2xx_spi.h> | ||
34 | #include <mach/pcm027.h> | 34 | #include <mach/pcm027.h> |
35 | #include "generic.h" | 35 | #include "generic.h" |
36 | 36 | ||
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index 8451790cb48d..4f0ff1ab623d 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/i2c.h> | 25 | #include <linux/i2c.h> |
26 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
27 | #include <linux/spi/ads7846.h> | 27 | #include <linux/spi/ads7846.h> |
28 | #include <linux/spi/pxa2xx_spi.h> | ||
28 | #include <linux/mtd/sharpsl.h> | 29 | #include <linux/mtd/sharpsl.h> |
29 | 30 | ||
30 | #include <mach/hardware.h> | 31 | #include <mach/hardware.h> |
@@ -43,7 +44,6 @@ | |||
43 | #include <mach/irda.h> | 44 | #include <mach/irda.h> |
44 | #include <mach/poodle.h> | 45 | #include <mach/poodle.h> |
45 | #include <mach/pxafb.h> | 46 | #include <mach/pxafb.h> |
46 | #include <mach/pxa2xx_spi.h> | ||
47 | #include <plat/i2c.h> | 47 | #include <plat/i2c.h> |
48 | 48 | ||
49 | #include <asm/hardware/scoop.h> | 49 | #include <asm/hardware/scoop.h> |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 0499a69e7673..0bc938729c4c 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -23,7 +23,7 @@ | |||
23 | #include <linux/spi/spi.h> | 23 | #include <linux/spi/spi.h> |
24 | #include <linux/spi/ads7846.h> | 24 | #include <linux/spi/ads7846.h> |
25 | #include <linux/spi/corgi_lcd.h> | 25 | #include <linux/spi/corgi_lcd.h> |
26 | #include <linux/mtd/physmap.h> | 26 | #include <linux/spi/pxa2xx_spi.h> |
27 | #include <linux/mtd/sharpsl.h> | 27 | #include <linux/mtd/sharpsl.h> |
28 | #include <linux/input/matrix_keypad.h> | 28 | #include <linux/input/matrix_keypad.h> |
29 | #include <linux/regulator/machine.h> | 29 | #include <linux/regulator/machine.h> |
@@ -42,7 +42,6 @@ | |||
42 | #include <mach/mmc.h> | 42 | #include <mach/mmc.h> |
43 | #include <mach/ohci.h> | 43 | #include <mach/ohci.h> |
44 | #include <mach/pxafb.h> | 44 | #include <mach/pxafb.h> |
45 | #include <mach/pxa2xx_spi.h> | ||
46 | #include <mach/spitz.h> | 45 | #include <mach/spitz.h> |
47 | #include <mach/sharpsl_pm.h> | 46 | #include <mach/sharpsl_pm.h> |
48 | #include <mach/smemc.h> | 47 | #include <mach/smemc.h> |
diff --git a/arch/arm/mach-pxa/stargate2.c b/arch/arm/mach-pxa/stargate2.c index 3498a1423943..9a14fdb83c82 100644 --- a/arch/arm/mach-pxa/stargate2.c +++ b/arch/arm/mach-pxa/stargate2.c | |||
@@ -46,11 +46,11 @@ | |||
46 | #include <plat/i2c.h> | 46 | #include <plat/i2c.h> |
47 | #include <mach/mmc.h> | 47 | #include <mach/mmc.h> |
48 | #include <mach/udc.h> | 48 | #include <mach/udc.h> |
49 | #include <mach/pxa2xx_spi.h> | ||
50 | #include <mach/pxa27x-udc.h> | 49 | #include <mach/pxa27x-udc.h> |
51 | #include <mach/smemc.h> | 50 | #include <mach/smemc.h> |
52 | 51 | ||
53 | #include <linux/spi/spi.h> | 52 | #include <linux/spi/spi.h> |
53 | #include <linux/spi/pxa2xx_spi.h> | ||
54 | #include <linux/mfd/da903x.h> | 54 | #include <linux/mfd/da903x.h> |
55 | #include <linux/sht15.h> | 55 | #include <linux/sht15.h> |
56 | 56 | ||
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 57d61ee9b226..af152e70cfcf 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/gpio.h> | 32 | #include <linux/gpio.h> |
33 | #include <linux/pda_power.h> | 33 | #include <linux/pda_power.h> |
34 | #include <linux/spi/spi.h> | 34 | #include <linux/spi/spi.h> |
35 | #include <linux/spi/pxa2xx_spi.h> | ||
35 | #include <linux/input/matrix_keypad.h> | 36 | #include <linux/input/matrix_keypad.h> |
36 | 37 | ||
37 | #include <asm/setup.h> | 38 | #include <asm/setup.h> |
@@ -44,7 +45,6 @@ | |||
44 | #include <mach/mmc.h> | 45 | #include <mach/mmc.h> |
45 | #include <mach/udc.h> | 46 | #include <mach/udc.h> |
46 | #include <mach/tosa_bt.h> | 47 | #include <mach/tosa_bt.h> |
47 | #include <mach/pxa2xx_spi.h> | ||
48 | #include <mach/audio.h> | 48 | #include <mach/audio.h> |
49 | #include <mach/smemc.h> | 49 | #include <mach/smemc.h> |
50 | 50 | ||
diff --git a/arch/arm/mach-pxa/trizeps4.c b/arch/arm/mach-pxa/trizeps4.c index 43fc9ca14594..423261d63d07 100644 --- a/arch/arm/mach-pxa/trizeps4.c +++ b/arch/arm/mach-pxa/trizeps4.c | |||
@@ -40,7 +40,6 @@ | |||
40 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
41 | 41 | ||
42 | #include <mach/pxa27x.h> | 42 | #include <mach/pxa27x.h> |
43 | #include <mach/pxa2xx_spi.h> | ||
44 | #include <mach/trizeps4.h> | 43 | #include <mach/trizeps4.h> |
45 | #include <mach/audio.h> | 44 | #include <mach/audio.h> |
46 | #include <mach/pxafb.h> | 45 | #include <mach/pxafb.h> |
diff --git a/arch/arm/mach-pxa/z2.c b/arch/arm/mach-pxa/z2.c index 527c2a1ed310..a323e076129e 100644 --- a/arch/arm/mach-pxa/z2.c +++ b/arch/arm/mach-pxa/z2.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/z2_battery.h> | 20 | #include <linux/z2_battery.h> |
21 | #include <linux/dma-mapping.h> | 21 | #include <linux/dma-mapping.h> |
22 | #include <linux/spi/spi.h> | 22 | #include <linux/spi/spi.h> |
23 | #include <linux/spi/pxa2xx_spi.h> | ||
23 | #include <linux/spi/libertas_spi.h> | 24 | #include <linux/spi/libertas_spi.h> |
24 | #include <linux/spi/lms283gf05.h> | 25 | #include <linux/spi/lms283gf05.h> |
25 | #include <linux/power_supply.h> | 26 | #include <linux/power_supply.h> |
@@ -38,7 +39,6 @@ | |||
38 | #include <mach/pxafb.h> | 39 | #include <mach/pxafb.h> |
39 | #include <mach/mmc.h> | 40 | #include <mach/mmc.h> |
40 | #include <plat/pxa27x_keypad.h> | 41 | #include <plat/pxa27x_keypad.h> |
41 | #include <mach/pxa2xx_spi.h> | ||
42 | 42 | ||
43 | #include <plat/i2c.h> | 43 | #include <plat/i2c.h> |
44 | 44 | ||
diff --git a/arch/arm/mach-pxa/zeus.c b/arch/arm/mach-pxa/zeus.c index c87f2b35ee05..bf034c7670dd 100644 --- a/arch/arm/mach-pxa/zeus.c +++ b/arch/arm/mach-pxa/zeus.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/dm9000.h> | 20 | #include <linux/dm9000.h> |
21 | #include <linux/mmc/host.h> | 21 | #include <linux/mmc/host.h> |
22 | #include <linux/spi/spi.h> | 22 | #include <linux/spi/spi.h> |
23 | #include <linux/spi/pxa2xx_spi.h> | ||
23 | #include <linux/mtd/mtd.h> | 24 | #include <linux/mtd/mtd.h> |
24 | #include <linux/mtd/partitions.h> | 25 | #include <linux/mtd/partitions.h> |
25 | #include <linux/mtd/physmap.h> | 26 | #include <linux/mtd/physmap.h> |
@@ -41,7 +42,6 @@ | |||
41 | #include <mach/pxa27x-udc.h> | 42 | #include <mach/pxa27x-udc.h> |
42 | #include <mach/udc.h> | 43 | #include <mach/udc.h> |
43 | #include <mach/pxafb.h> | 44 | #include <mach/pxafb.h> |
44 | #include <mach/pxa2xx_spi.h> | ||
45 | #include <mach/mfp-pxa27x.h> | 45 | #include <mach/mfp-pxa27x.h> |
46 | #include <mach/pm.h> | 46 | #include <mach/pm.h> |
47 | #include <mach/audio.h> | 47 | #include <mach/audio.h> |
diff --git a/arch/arm/plat-pxa/include/plat/ssp.h b/arch/arm/plat-pxa/include/plat/ssp.h deleted file mode 100644 index fe43150690ed..000000000000 --- a/arch/arm/plat-pxa/include/plat/ssp.h +++ /dev/null | |||
@@ -1,186 +0,0 @@ | |||
1 | /* | ||
2 | * ssp.h | ||
3 | * | ||
4 | * Copyright (C) 2003 Russell King, All Rights Reserved. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * This driver supports the following PXA CPU/SSP ports:- | ||
11 | * | ||
12 | * PXA250 SSP | ||
13 | * PXA255 SSP, NSSP | ||
14 | * PXA26x SSP, NSSP, ASSP | ||
15 | * PXA27x SSP1, SSP2, SSP3 | ||
16 | * PXA3xx SSP1, SSP2, SSP3, SSP4 | ||
17 | */ | ||
18 | |||
19 | #ifndef __ASM_ARCH_SSP_H | ||
20 | #define __ASM_ARCH_SSP_H | ||
21 | |||
22 | #include <linux/list.h> | ||
23 | #include <linux/io.h> | ||
24 | |||
25 | /* | ||
26 | * SSP Serial Port Registers | ||
27 | * PXA250, PXA255, PXA26x and PXA27x SSP controllers are all slightly different. | ||
28 | * PXA255, PXA26x and PXA27x have extra ports, registers and bits. | ||
29 | */ | ||
30 | |||
31 | #define SSCR0 (0x00) /* SSP Control Register 0 */ | ||
32 | #define SSCR1 (0x04) /* SSP Control Register 1 */ | ||
33 | #define SSSR (0x08) /* SSP Status Register */ | ||
34 | #define SSITR (0x0C) /* SSP Interrupt Test Register */ | ||
35 | #define SSDR (0x10) /* SSP Data Write/Data Read Register */ | ||
36 | |||
37 | #define SSTO (0x28) /* SSP Time Out Register */ | ||
38 | #define SSPSP (0x2C) /* SSP Programmable Serial Protocol */ | ||
39 | #define SSTSA (0x30) /* SSP Tx Timeslot Active */ | ||
40 | #define SSRSA (0x34) /* SSP Rx Timeslot Active */ | ||
41 | #define SSTSS (0x38) /* SSP Timeslot Status */ | ||
42 | #define SSACD (0x3C) /* SSP Audio Clock Divider */ | ||
43 | #define SSACDD (0x40) /* SSP Audio Clock Dither Divider */ | ||
44 | |||
45 | /* Common PXA2xx bits first */ | ||
46 | #define SSCR0_DSS (0x0000000f) /* Data Size Select (mask) */ | ||
47 | #define SSCR0_DataSize(x) ((x) - 1) /* Data Size Select [4..16] */ | ||
48 | #define SSCR0_FRF (0x00000030) /* FRame Format (mask) */ | ||
49 | #define SSCR0_Motorola (0x0 << 4) /* Motorola's Serial Peripheral Interface (SPI) */ | ||
50 | #define SSCR0_TI (0x1 << 4) /* Texas Instruments' Synchronous Serial Protocol (SSP) */ | ||
51 | #define SSCR0_National (0x2 << 4) /* National Microwire */ | ||
52 | #define SSCR0_ECS (1 << 6) /* External clock select */ | ||
53 | #define SSCR0_SSE (1 << 7) /* Synchronous Serial Port Enable */ | ||
54 | #define SSCR0_SCR(x) ((x) << 8) /* Serial Clock Rate (mask) */ | ||
55 | |||
56 | /* PXA27x, PXA3xx */ | ||
57 | #define SSCR0_EDSS (1 << 20) /* Extended data size select */ | ||
58 | #define SSCR0_NCS (1 << 21) /* Network clock select */ | ||
59 | #define SSCR0_RIM (1 << 22) /* Receive FIFO overrrun interrupt mask */ | ||
60 | #define SSCR0_TUM (1 << 23) /* Transmit FIFO underrun interrupt mask */ | ||
61 | #define SSCR0_FRDC (0x07000000) /* Frame rate divider control (mask) */ | ||
62 | #define SSCR0_SlotsPerFrm(x) (((x) - 1) << 24) /* Time slots per frame [1..8] */ | ||
63 | #define SSCR0_FPCKE (1 << 29) /* FIFO packing enable */ | ||
64 | #define SSCR0_ACS (1 << 30) /* Audio clock select */ | ||
65 | #define SSCR0_MOD (1 << 31) /* Mode (normal or network) */ | ||
66 | |||
67 | |||
68 | #define SSCR1_RIE (1 << 0) /* Receive FIFO Interrupt Enable */ | ||
69 | #define SSCR1_TIE (1 << 1) /* Transmit FIFO Interrupt Enable */ | ||
70 | #define SSCR1_LBM (1 << 2) /* Loop-Back Mode */ | ||
71 | #define SSCR1_SPO (1 << 3) /* Motorola SPI SSPSCLK polarity setting */ | ||
72 | #define SSCR1_SPH (1 << 4) /* Motorola SPI SSPSCLK phase setting */ | ||
73 | #define SSCR1_MWDS (1 << 5) /* Microwire Transmit Data Size */ | ||
74 | #define SSCR1_TFT (0x000003c0) /* Transmit FIFO Threshold (mask) */ | ||
75 | #define SSCR1_TxTresh(x) (((x) - 1) << 6) /* level [1..16] */ | ||
76 | #define SSCR1_RFT (0x00003c00) /* Receive FIFO Threshold (mask) */ | ||
77 | #define SSCR1_RxTresh(x) (((x) - 1) << 10) /* level [1..16] */ | ||
78 | |||
79 | #define SSSR_TNF (1 << 2) /* Transmit FIFO Not Full */ | ||
80 | #define SSSR_RNE (1 << 3) /* Receive FIFO Not Empty */ | ||
81 | #define SSSR_BSY (1 << 4) /* SSP Busy */ | ||
82 | #define SSSR_TFS (1 << 5) /* Transmit FIFO Service Request */ | ||
83 | #define SSSR_RFS (1 << 6) /* Receive FIFO Service Request */ | ||
84 | #define SSSR_ROR (1 << 7) /* Receive FIFO Overrun */ | ||
85 | |||
86 | |||
87 | /* extra bits in PXA255, PXA26x and PXA27x SSP ports */ | ||
88 | #define SSCR0_TISSP (1 << 4) /* TI Sync Serial Protocol */ | ||
89 | #define SSCR0_PSP (3 << 4) /* PSP - Programmable Serial Protocol */ | ||
90 | #define SSCR1_TTELP (1 << 31) /* TXD Tristate Enable Last Phase */ | ||
91 | #define SSCR1_TTE (1 << 30) /* TXD Tristate Enable */ | ||
92 | #define SSCR1_EBCEI (1 << 29) /* Enable Bit Count Error interrupt */ | ||
93 | #define SSCR1_SCFR (1 << 28) /* Slave Clock free Running */ | ||
94 | #define SSCR1_ECRA (1 << 27) /* Enable Clock Request A */ | ||
95 | #define SSCR1_ECRB (1 << 26) /* Enable Clock request B */ | ||
96 | #define SSCR1_SCLKDIR (1 << 25) /* Serial Bit Rate Clock Direction */ | ||
97 | #define SSCR1_SFRMDIR (1 << 24) /* Frame Direction */ | ||
98 | #define SSCR1_RWOT (1 << 23) /* Receive Without Transmit */ | ||
99 | #define SSCR1_TRAIL (1 << 22) /* Trailing Byte */ | ||
100 | #define SSCR1_TSRE (1 << 21) /* Transmit Service Request Enable */ | ||
101 | #define SSCR1_RSRE (1 << 20) /* Receive Service Request Enable */ | ||
102 | #define SSCR1_TINTE (1 << 19) /* Receiver Time-out Interrupt enable */ | ||
103 | #define SSCR1_PINTE (1 << 18) /* Peripheral Trailing Byte Interupt Enable */ | ||
104 | #define SSCR1_IFS (1 << 16) /* Invert Frame Signal */ | ||
105 | #define SSCR1_STRF (1 << 15) /* Select FIFO or EFWR */ | ||
106 | #define SSCR1_EFWR (1 << 14) /* Enable FIFO Write/Read */ | ||
107 | |||
108 | #define SSSR_BCE (1 << 23) /* Bit Count Error */ | ||
109 | #define SSSR_CSS (1 << 22) /* Clock Synchronisation Status */ | ||
110 | #define SSSR_TUR (1 << 21) /* Transmit FIFO Under Run */ | ||
111 | #define SSSR_EOC (1 << 20) /* End Of Chain */ | ||
112 | #define SSSR_TINT (1 << 19) /* Receiver Time-out Interrupt */ | ||
113 | #define SSSR_PINT (1 << 18) /* Peripheral Trailing Byte Interrupt */ | ||
114 | |||
115 | |||
116 | #define SSPSP_SCMODE(x) ((x) << 0) /* Serial Bit Rate Clock Mode */ | ||
117 | #define SSPSP_SFRMP (1 << 2) /* Serial Frame Polarity */ | ||
118 | #define SSPSP_ETDS (1 << 3) /* End of Transfer data State */ | ||
119 | #define SSPSP_STRTDLY(x) ((x) << 4) /* Start Delay */ | ||
120 | #define SSPSP_DMYSTRT(x) ((x) << 7) /* Dummy Start */ | ||
121 | #define SSPSP_SFRMDLY(x) ((x) << 9) /* Serial Frame Delay */ | ||
122 | #define SSPSP_SFRMWDTH(x) ((x) << 16) /* Serial Frame Width */ | ||
123 | #define SSPSP_DMYSTOP(x) ((x) << 23) /* Dummy Stop */ | ||
124 | #define SSPSP_FSRT (1 << 25) /* Frame Sync Relative Timing */ | ||
125 | |||
126 | /* PXA3xx */ | ||
127 | #define SSPSP_EDMYSTRT(x) ((x) << 26) /* Extended Dummy Start */ | ||
128 | #define SSPSP_EDMYSTOP(x) ((x) << 28) /* Extended Dummy Stop */ | ||
129 | #define SSPSP_TIMING_MASK (0x7f8001f0) | ||
130 | |||
131 | #define SSACD_SCDB (1 << 3) /* SSPSYSCLK Divider Bypass */ | ||
132 | #define SSACD_ACPS(x) ((x) << 4) /* Audio clock PLL select */ | ||
133 | #define SSACD_ACDS(x) ((x) << 0) /* Audio clock divider select */ | ||
134 | #define SSACD_SCDX8 (1 << 7) /* SYSCLK division ratio select */ | ||
135 | |||
136 | enum pxa_ssp_type { | ||
137 | SSP_UNDEFINED = 0, | ||
138 | PXA25x_SSP, /* pxa 210, 250, 255, 26x */ | ||
139 | PXA25x_NSSP, /* pxa 255, 26x (including ASSP) */ | ||
140 | PXA27x_SSP, | ||
141 | PXA168_SSP, | ||
142 | }; | ||
143 | |||
144 | struct ssp_device { | ||
145 | struct platform_device *pdev; | ||
146 | struct list_head node; | ||
147 | |||
148 | struct clk *clk; | ||
149 | void __iomem *mmio_base; | ||
150 | unsigned long phys_base; | ||
151 | |||
152 | const char *label; | ||
153 | int port_id; | ||
154 | int type; | ||
155 | int use_count; | ||
156 | int irq; | ||
157 | int drcmr_rx; | ||
158 | int drcmr_tx; | ||
159 | }; | ||
160 | |||
161 | /** | ||
162 | * pxa_ssp_write_reg - Write to a SSP register | ||
163 | * | ||
164 | * @dev: SSP device to access | ||
165 | * @reg: Register to write to | ||
166 | * @val: Value to be written. | ||
167 | */ | ||
168 | static inline void pxa_ssp_write_reg(struct ssp_device *dev, u32 reg, u32 val) | ||
169 | { | ||
170 | __raw_writel(val, dev->mmio_base + reg); | ||
171 | } | ||
172 | |||
173 | /** | ||
174 | * pxa_ssp_read_reg - Read from a SSP register | ||
175 | * | ||
176 | * @dev: SSP device to access | ||
177 | * @reg: Register to read from | ||
178 | */ | ||
179 | static inline u32 pxa_ssp_read_reg(struct ssp_device *dev, u32 reg) | ||
180 | { | ||
181 | return __raw_readl(dev->mmio_base + reg); | ||
182 | } | ||
183 | |||
184 | struct ssp_device *pxa_ssp_request(int port, const char *label); | ||
185 | void pxa_ssp_free(struct ssp_device *); | ||
186 | #endif /* __ASM_ARCH_SSP_H */ | ||
diff --git a/arch/arm/plat-pxa/ssp.c b/arch/arm/plat-pxa/ssp.c index c6357e554aba..58b79809d20c 100644 --- a/arch/arm/plat-pxa/ssp.c +++ b/arch/arm/plat-pxa/ssp.c | |||
@@ -28,11 +28,11 @@ | |||
28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
29 | #include <linux/err.h> | 29 | #include <linux/err.h> |
30 | #include <linux/platform_device.h> | 30 | #include <linux/platform_device.h> |
31 | #include <linux/spi/pxa2xx_spi.h> | ||
31 | #include <linux/io.h> | 32 | #include <linux/io.h> |
32 | 33 | ||
33 | #include <asm/irq.h> | 34 | #include <asm/irq.h> |
34 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
35 | #include <plat/ssp.h> | ||
36 | 36 | ||
37 | static DEFINE_MUTEX(ssp_lock); | 37 | static DEFINE_MUTEX(ssp_lock); |
38 | static LIST_HEAD(ssp_list); | 38 | static LIST_HEAD(ssp_list); |