diff options
author | eric miao <eric.miao@marvell.com> | 2007-12-10 04:54:36 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 10:07:51 -0500 |
commit | d8e0db1111b51558456466f66c9115d71b68e8b9 (patch) | |
tree | 0e02d2e72bcf1c0b5d9975b7cfdadcc4586339a9 /arch/arm/mach-pxa/pxa3xx.c | |
parent | d2b82dded8c45daeaad332459222034a3fabd227 (diff) |
[ARM] pxa: add ssp devices and clk support for pxa25x/pxa27x/pxa3xx
Signed-off-by: eric miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/pxa3xx.c')
-rw-r--r-- | arch/arm/mach-pxa/pxa3xx.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/pxa3xx.c b/arch/arm/mach-pxa/pxa3xx.c index 37fbc4face09..c0483c3261d0 100644 --- a/arch/arm/mach-pxa/pxa3xx.c +++ b/arch/arm/mach-pxa/pxa3xx.c | |||
@@ -189,6 +189,11 @@ static struct clk pxa3xx_clks[] = { | |||
189 | 189 | ||
190 | PXA3xx_CKEN("I2CCLK", I2C, 32842000, 0, &pxa_device_i2c.dev), | 190 | PXA3xx_CKEN("I2CCLK", I2C, 32842000, 0, &pxa_device_i2c.dev), |
191 | PXA3xx_CKEN("UDCCLK", UDC, 48000000, 5, &pxa_device_udc.dev), | 191 | PXA3xx_CKEN("UDCCLK", UDC, 48000000, 5, &pxa_device_udc.dev), |
192 | |||
193 | PXA3xx_CKEN("SSPCLK", SSP1, 13000000, 0, &pxa27x_device_ssp1.dev), | ||
194 | PXA3xx_CKEN("SSPCLK", SSP2, 13000000, 0, &pxa27x_device_ssp2.dev), | ||
195 | PXA3xx_CKEN("SSPCLK", SSP3, 13000000, 0, &pxa27x_device_ssp3.dev), | ||
196 | PXA3xx_CKEN("SSPCLK", SSP4, 13000000, 0, &pxa3xx_device_ssp4.dev), | ||
192 | }; | 197 | }; |
193 | 198 | ||
194 | void __init pxa3xx_init_irq(void) | 199 | void __init pxa3xx_init_irq(void) |
@@ -215,6 +220,10 @@ static struct platform_device *devices[] __initdata = { | |||
215 | &pxa_device_stuart, | 220 | &pxa_device_stuart, |
216 | &pxa_device_i2s, | 221 | &pxa_device_i2s, |
217 | &pxa_device_rtc, | 222 | &pxa_device_rtc, |
223 | &pxa27x_device_ssp1, | ||
224 | &pxa27x_device_ssp2, | ||
225 | &pxa27x_device_ssp3, | ||
226 | &pxa3xx_device_ssp4, | ||
218 | }; | 227 | }; |
219 | 228 | ||
220 | static int __init pxa3xx_init(void) | 229 | static int __init pxa3xx_init(void) |