blob: a1c3ab26ce63120f837a5bfdc661ee48243e41fa [file] [log] [blame]
eric miao2c8086a2007-09-11 19:13:17 -07001/*
2 * linux/arch/arm/mach-pxa/pxa3xx.c
3 *
4 * code specific to pxa3xx aka Monahans
5 *
6 * Copyright (C) 2006 Marvell International Ltd.
7 *
eric miaoe9bba8e2007-10-30 08:01:38 +01008 * 2007-09-02: eric miao <eric.miao@marvell.com>
eric miao2c8086a2007-09-11 19:13:17 -07009 * initial version
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/pm.h>
20#include <linux/platform_device.h>
21#include <linux/irq.h>
Russell King7b5dea12008-01-07 22:18:30 +000022#include <linux/io.h>
eric miaoc01655042008-01-28 23:00:02 +000023#include <linux/sysdev.h>
eric miao2c8086a2007-09-11 19:13:17 -070024
Marek Vasut851982c2010-10-11 02:20:19 +020025#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/hardware.h>
Eric Miaoa58fbcd2009-01-06 17:37:37 +080027#include <mach/gpio.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/pxa3xx-regs.h>
Russell Kingafd2fc02008-08-07 11:05:25 +010029#include <mach/reset.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/ohci.h>
31#include <mach/pm.h>
32#include <mach/dma.h>
Mike Rapoportbf293ae2009-11-11 11:36:59 +020033#include <mach/regs-intc.h>
Marek Vasutad68bb92010-11-03 16:29:35 +010034#include <mach/smemc.h>
Eric Miaof0a83702009-04-13 15:03:11 +080035#include <plat/i2c.h>
eric miao2c8086a2007-09-11 19:13:17 -070036
37#include "generic.h"
38#include "devices.h"
39#include "clock.h"
40
Mike Rapoportbf293ae2009-11-11 11:36:59 +020041#define PECR_IE(n) ((1 << ((n) * 2)) << 28)
42#define PECR_IS(n) ((1 << ((n) * 2)) << 29)
43
Eric Miao04fef222008-07-29 14:26:00 +080044void pxa3xx_clear_reset_status(unsigned int mask)
45{
46 /* RESET_STATUS_* has a 1:1 mapping with ARSR */
47 ARSR = mask;
48}
49
Russell King8c3abc72008-11-08 20:25:21 +000050static DEFINE_PXA3_CKEN(pxa3xx_ffuart, FFUART, 14857000, 1);
51static DEFINE_PXA3_CKEN(pxa3xx_btuart, BTUART, 14857000, 1);
52static DEFINE_PXA3_CKEN(pxa3xx_stuart, STUART, 14857000, 1);
53static DEFINE_PXA3_CKEN(pxa3xx_i2c, I2C, 32842000, 0);
54static DEFINE_PXA3_CKEN(pxa3xx_udc, UDC, 48000000, 5);
55static DEFINE_PXA3_CKEN(pxa3xx_usbh, USBH, 48000000, 0);
Igor Grinberge68750a2009-11-04 14:14:39 +020056static DEFINE_PXA3_CKEN(pxa3xx_u2d, USB2, 48000000, 0);
Russell King8c3abc72008-11-08 20:25:21 +000057static DEFINE_PXA3_CKEN(pxa3xx_keypad, KEYPAD, 32768, 0);
58static DEFINE_PXA3_CKEN(pxa3xx_ssp1, SSP1, 13000000, 0);
59static DEFINE_PXA3_CKEN(pxa3xx_ssp2, SSP2, 13000000, 0);
60static DEFINE_PXA3_CKEN(pxa3xx_ssp3, SSP3, 13000000, 0);
61static DEFINE_PXA3_CKEN(pxa3xx_ssp4, SSP4, 13000000, 0);
62static DEFINE_PXA3_CKEN(pxa3xx_pwm0, PWM0, 13000000, 0);
63static DEFINE_PXA3_CKEN(pxa3xx_pwm1, PWM1, 13000000, 0);
64static DEFINE_PXA3_CKEN(pxa3xx_mmc1, MMC1, 19500000, 0);
65static DEFINE_PXA3_CKEN(pxa3xx_mmc2, MMC2, 19500000, 0);
66
Eric Miao2e8581e2010-11-22 09:41:39 +080067static DEFINE_CK(pxa3xx_lcd, LCD, &clk_pxa3xx_hsio_ops);
68static DEFINE_CK(pxa3xx_camera, CAMERA, &clk_pxa3xx_hsio_ops);
69static DEFINE_CK(pxa3xx_ac97, AC97, &clk_pxa3xx_ac97_ops);
Eric Miao40298132010-11-22 10:49:55 +080070static DEFINE_CLK(pxa3xx_pout, &clk_pxa3xx_pout_ops, 13000000, 70);
Eric Miao2e8581e2010-11-22 09:41:39 +080071
Russell King8c3abc72008-11-08 20:25:21 +000072static struct clk_lookup pxa3xx_clkregs[] = {
73 INIT_CLKREG(&clk_pxa3xx_pout, NULL, "CLK_POUT"),
Mike Rapoport9ba63c42008-08-17 06:23:05 +010074 /* Power I2C clock is always on */
Daniel Mack5c68b092009-06-22 21:01:58 +020075 INIT_CLKREG(&clk_dummy, "pxa3xx-pwri2c.1", NULL),
Russell King8c3abc72008-11-08 20:25:21 +000076 INIT_CLKREG(&clk_pxa3xx_lcd, "pxa2xx-fb", NULL),
77 INIT_CLKREG(&clk_pxa3xx_camera, NULL, "CAMCLK"),
78 INIT_CLKREG(&clk_pxa3xx_ac97, NULL, "AC97CLK"),
79 INIT_CLKREG(&clk_pxa3xx_ffuart, "pxa2xx-uart.0", NULL),
80 INIT_CLKREG(&clk_pxa3xx_btuart, "pxa2xx-uart.1", NULL),
81 INIT_CLKREG(&clk_pxa3xx_stuart, "pxa2xx-uart.2", NULL),
82 INIT_CLKREG(&clk_pxa3xx_stuart, "pxa2xx-ir", "UARTCLK"),
83 INIT_CLKREG(&clk_pxa3xx_i2c, "pxa2xx-i2c.0", NULL),
84 INIT_CLKREG(&clk_pxa3xx_udc, "pxa27x-udc", NULL),
85 INIT_CLKREG(&clk_pxa3xx_usbh, "pxa27x-ohci", NULL),
Igor Grinberg69f22be2010-07-27 15:06:58 +030086 INIT_CLKREG(&clk_pxa3xx_u2d, "pxa3xx-u2d", NULL),
Russell King8c3abc72008-11-08 20:25:21 +000087 INIT_CLKREG(&clk_pxa3xx_keypad, "pxa27x-keypad", NULL),
88 INIT_CLKREG(&clk_pxa3xx_ssp1, "pxa27x-ssp.0", NULL),
89 INIT_CLKREG(&clk_pxa3xx_ssp2, "pxa27x-ssp.1", NULL),
90 INIT_CLKREG(&clk_pxa3xx_ssp3, "pxa27x-ssp.2", NULL),
91 INIT_CLKREG(&clk_pxa3xx_ssp4, "pxa27x-ssp.3", NULL),
92 INIT_CLKREG(&clk_pxa3xx_pwm0, "pxa27x-pwm.0", NULL),
93 INIT_CLKREG(&clk_pxa3xx_pwm1, "pxa27x-pwm.1", NULL),
94 INIT_CLKREG(&clk_pxa3xx_mmc1, "pxa2xx-mci.0", NULL),
95 INIT_CLKREG(&clk_pxa3xx_mmc2, "pxa2xx-mci.1", NULL),
eric miao2c8086a2007-09-11 19:13:17 -070096};
97
Russell King7b5dea12008-01-07 22:18:30 +000098#ifdef CONFIG_PM
Russell King7b5dea12008-01-07 22:18:30 +000099
100#define ISRAM_START 0x5c000000
101#define ISRAM_SIZE SZ_256K
102
103static void __iomem *sram;
104static unsigned long wakeup_src;
105
Russell King7b5dea12008-01-07 22:18:30 +0000106/*
107 * Enter a standby mode (S0D1C2 or S0D2C2). Upon wakeup, the dynamic
108 * memory controller has to be reinitialised, so we place some code
109 * in the SRAM to perform this function.
110 *
111 * We disable FIQs across the standby - otherwise, we might receive a
112 * FIQ while the SDRAM is unavailable.
113 */
114static void pxa3xx_cpu_standby(unsigned int pwrmode)
115{
116 extern const char pm_enter_standby_start[], pm_enter_standby_end[];
117 void (*fn)(unsigned int) = (void __force *)(sram + 0x8000);
118
119 memcpy_toio(sram + 0x8000, pm_enter_standby_start,
120 pm_enter_standby_end - pm_enter_standby_start);
121
122 AD2D0SR = ~0;
123 AD2D1SR = ~0;
124 AD2D0ER = wakeup_src;
125 AD2D1ER = 0;
126 ASCR = ASCR;
127 ARSR = ARSR;
128
129 local_fiq_disable();
130 fn(pwrmode);
131 local_fiq_enable();
132
133 AD2D0ER = 0;
134 AD2D1ER = 0;
Russell King7b5dea12008-01-07 22:18:30 +0000135}
136
eric miaoc4d1fb62008-01-28 23:00:02 +0000137/*
138 * NOTE: currently, the OBM (OEM Boot Module) binary comes along with
139 * PXA3xx development kits assumes that the resuming process continues
140 * with the address stored within the first 4 bytes of SDRAM. The PSPR
141 * register is used privately by BootROM and OBM, and _must_ be set to
142 * 0x5c014000 for the moment.
143 */
144static void pxa3xx_cpu_pm_suspend(void)
145{
146 volatile unsigned long *p = (volatile void *)0xc0000000;
147 unsigned long saved_data = *p;
148
149 extern void pxa3xx_cpu_suspend(void);
150 extern void pxa3xx_cpu_resume(void);
151
152 /* resuming from D2 requires the HSIO2/BOOT/TPM clocks enabled */
153 CKENA |= (1 << CKEN_BOOT) | (1 << CKEN_TPM);
154 CKENB |= 1 << (CKEN_HSIO2 & 0x1f);
155
156 /* clear and setup wakeup source */
157 AD3SR = ~0;
158 AD3ER = wakeup_src;
159 ASCR = ASCR;
160 ARSR = ARSR;
161
162 PCFR |= (1u << 13); /* L1_DIS */
163 PCFR &= ~((1u << 12) | (1u << 1)); /* L0_EN | SL_ROD */
164
165 PSPR = 0x5c014000;
166
167 /* overwrite with the resume address */
168 *p = virt_to_phys(pxa3xx_cpu_resume);
169
170 pxa3xx_cpu_suspend();
171
172 *p = saved_data;
173
174 AD3ER = 0;
175}
176
Russell King7b5dea12008-01-07 22:18:30 +0000177static void pxa3xx_cpu_pm_enter(suspend_state_t state)
178{
179 /*
180 * Don't sleep if no wakeup sources are defined
181 */
Mark Brownb86a5da2008-04-09 11:32:21 +0100182 if (wakeup_src == 0) {
183 printk(KERN_ERR "Not suspending: no wakeup sources\n");
Russell King7b5dea12008-01-07 22:18:30 +0000184 return;
Mark Brownb86a5da2008-04-09 11:32:21 +0100185 }
Russell King7b5dea12008-01-07 22:18:30 +0000186
187 switch (state) {
188 case PM_SUSPEND_STANDBY:
189 pxa3xx_cpu_standby(PXA3xx_PM_S0D2C2);
190 break;
191
192 case PM_SUSPEND_MEM:
eric miaoc4d1fb62008-01-28 23:00:02 +0000193 pxa3xx_cpu_pm_suspend();
Russell King7b5dea12008-01-07 22:18:30 +0000194 break;
195 }
196}
197
198static int pxa3xx_cpu_pm_valid(suspend_state_t state)
199{
200 return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
201}
202
203static struct pxa_cpu_pm_fns pxa3xx_cpu_pm_fns = {
Russell King7b5dea12008-01-07 22:18:30 +0000204 .valid = pxa3xx_cpu_pm_valid,
205 .enter = pxa3xx_cpu_pm_enter,
206};
207
208static void __init pxa3xx_init_pm(void)
209{
210 sram = ioremap(ISRAM_START, ISRAM_SIZE);
211 if (!sram) {
212 printk(KERN_ERR "Unable to map ISRAM: disabling standby/suspend\n");
213 return;
214 }
215
216 /*
217 * Since we copy wakeup code into the SRAM, we need to ensure
218 * that it is preserved over the low power modes. Note: bit 8
219 * is undocumented in the developer manual, but must be set.
220 */
221 AD1R |= ADXR_L2 | ADXR_R0;
222 AD2R |= ADXR_L2 | ADXR_R0;
223 AD3R |= ADXR_L2 | ADXR_R0;
224
225 /*
226 * Clear the resume enable registers.
227 */
228 AD1D0ER = 0;
229 AD2D0ER = 0;
230 AD2D1ER = 0;
231 AD3ER = 0;
232
233 pxa_cpu_pm_fns = &pxa3xx_cpu_pm_fns;
234}
235
236static int pxa3xx_set_wake(unsigned int irq, unsigned int on)
237{
238 unsigned long flags, mask = 0;
239
240 switch (irq) {
241 case IRQ_SSP3:
242 mask = ADXER_MFP_WSSP3;
243 break;
244 case IRQ_MSL:
245 mask = ADXER_WMSL0;
246 break;
247 case IRQ_USBH2:
248 case IRQ_USBH1:
249 mask = ADXER_WUSBH;
250 break;
251 case IRQ_KEYPAD:
252 mask = ADXER_WKP;
253 break;
254 case IRQ_AC97:
255 mask = ADXER_MFP_WAC97;
256 break;
257 case IRQ_USIM:
258 mask = ADXER_WUSIM0;
259 break;
260 case IRQ_SSP2:
261 mask = ADXER_MFP_WSSP2;
262 break;
263 case IRQ_I2C:
264 mask = ADXER_MFP_WI2C;
265 break;
266 case IRQ_STUART:
267 mask = ADXER_MFP_WUART3;
268 break;
269 case IRQ_BTUART:
270 mask = ADXER_MFP_WUART2;
271 break;
272 case IRQ_FFUART:
273 mask = ADXER_MFP_WUART1;
274 break;
275 case IRQ_MMC:
276 mask = ADXER_MFP_WMMC1;
277 break;
278 case IRQ_SSP:
279 mask = ADXER_MFP_WSSP1;
280 break;
281 case IRQ_RTCAlrm:
282 mask = ADXER_WRTC;
283 break;
284 case IRQ_SSP4:
285 mask = ADXER_MFP_WSSP4;
286 break;
287 case IRQ_TSI:
288 mask = ADXER_WTSI;
289 break;
290 case IRQ_USIM2:
291 mask = ADXER_WUSIM1;
292 break;
293 case IRQ_MMC2:
294 mask = ADXER_MFP_WMMC2;
295 break;
296 case IRQ_NAND:
297 mask = ADXER_MFP_WFLASH;
298 break;
299 case IRQ_USB2:
300 mask = ADXER_WUSB2;
301 break;
302 case IRQ_WAKEUP0:
303 mask = ADXER_WEXTWAKE0;
304 break;
305 case IRQ_WAKEUP1:
306 mask = ADXER_WEXTWAKE1;
307 break;
308 case IRQ_MMC3:
309 mask = ADXER_MFP_GEN12;
310 break;
Mark Browne1217702008-04-23 10:28:18 +0100311 default:
312 return -EINVAL;
Russell King7b5dea12008-01-07 22:18:30 +0000313 }
314
315 local_irq_save(flags);
316 if (on)
317 wakeup_src |= mask;
318 else
319 wakeup_src &= ~mask;
320 local_irq_restore(flags);
321
322 return 0;
323}
Russell King7b5dea12008-01-07 22:18:30 +0000324#else
325static inline void pxa3xx_init_pm(void) {}
eric miaob9e25ac2008-03-04 14:19:58 +0800326#define pxa3xx_set_wake NULL
Russell King7b5dea12008-01-07 22:18:30 +0000327#endif
328
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200329static void pxa_ack_ext_wakeup(unsigned int irq)
330{
331 PECR |= PECR_IS(irq - IRQ_WAKEUP0);
332}
333
334static void pxa_mask_ext_wakeup(unsigned int irq)
335{
336 ICMR2 &= ~(1 << ((irq - PXA_IRQ(0)) & 0x1f));
337 PECR &= ~PECR_IE(irq - IRQ_WAKEUP0);
338}
339
340static void pxa_unmask_ext_wakeup(unsigned int irq)
341{
342 ICMR2 |= 1 << ((irq - PXA_IRQ(0)) & 0x1f);
343 PECR |= PECR_IE(irq - IRQ_WAKEUP0);
344}
345
Igor Grinberg12882092010-06-13 11:31:48 +0300346static int pxa_set_ext_wakeup_type(unsigned int irq, unsigned int flow_type)
347{
348 if (flow_type & IRQ_TYPE_EDGE_RISING)
349 PWER |= 1 << (irq - IRQ_WAKEUP0);
350
351 if (flow_type & IRQ_TYPE_EDGE_FALLING)
352 PWER |= 1 << (irq - IRQ_WAKEUP0 + 2);
353
354 return 0;
355}
356
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200357static struct irq_chip pxa_ext_wakeup_chip = {
358 .name = "WAKEUP",
359 .ack = pxa_ack_ext_wakeup,
360 .mask = pxa_mask_ext_wakeup,
361 .unmask = pxa_unmask_ext_wakeup,
Igor Grinberg12882092010-06-13 11:31:48 +0300362 .set_type = pxa_set_ext_wakeup_type,
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200363};
364
365static void __init pxa_init_ext_wakeup_irq(set_wake_t fn)
366{
367 int irq;
368
369 for (irq = IRQ_WAKEUP0; irq <= IRQ_WAKEUP1; irq++) {
370 set_irq_chip(irq, &pxa_ext_wakeup_chip);
371 set_irq_handler(irq, handle_edge_irq);
372 set_irq_flags(irq, IRQF_VALID);
373 }
374
375 pxa_ext_wakeup_chip.set_wake = fn;
376}
377
eric miao2c8086a2007-09-11 19:13:17 -0700378void __init pxa3xx_init_irq(void)
379{
380 /* enable CP6 access */
381 u32 value;
382 __asm__ __volatile__("mrc p15, 0, %0, c15, c1, 0\n": "=r"(value));
383 value |= (1 << 6);
384 __asm__ __volatile__("mcr p15, 0, %0, c15, c1, 0\n": :"r"(value));
385
eric miaob9e25ac2008-03-04 14:19:58 +0800386 pxa_init_irq(56, pxa3xx_set_wake);
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200387 pxa_init_ext_wakeup_irq(pxa3xx_set_wake);
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800388 pxa_init_gpio(IRQ_GPIO_2_x, 2, 127, NULL);
eric miao2c8086a2007-09-11 19:13:17 -0700389}
390
Marek Vasut851982c2010-10-11 02:20:19 +0200391static struct map_desc pxa3xx_io_desc[] __initdata = {
392 { /* Mem Ctl */
Marek Vasutad68bb92010-11-03 16:29:35 +0100393 .virtual = SMEMC_VIRT,
394 .pfn = __phys_to_pfn(PXA3XX_SMEMC_BASE),
Marek Vasut851982c2010-10-11 02:20:19 +0200395 .length = 0x00200000,
396 .type = MT_DEVICE
397 }
398};
399
400void __init pxa3xx_map_io(void)
401{
402 pxa_map_io();
403 iotable_init(ARRAY_AND_SIZE(pxa3xx_io_desc));
404 pxa3xx_get_clk_frequency_khz(1);
405}
406
eric miao2c8086a2007-09-11 19:13:17 -0700407/*
408 * device registration specific to PXA3xx.
409 */
410
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100411void __init pxa3xx_set_i2c_power_info(struct i2c_pxa_platform_data *info)
412{
Eric Miao14758222008-11-28 15:24:12 +0800413 pxa_register_device(&pxa3xx_device_i2c_power, info);
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100414}
415
eric miao2c8086a2007-09-11 19:13:17 -0700416static struct platform_device *devices[] __initdata = {
Robert Jarzmik94c35a62009-04-21 19:19:36 +0200417 &pxa27x_device_udc,
Eric Miao09a53582010-06-14 00:43:00 +0800418 &pxa_device_pmu,
eric miao2c8086a2007-09-11 19:13:17 -0700419 &pxa_device_i2s,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000420 &pxa_device_asoc_ssp1,
421 &pxa_device_asoc_ssp2,
422 &pxa_device_asoc_ssp3,
423 &pxa_device_asoc_ssp4,
424 &pxa_device_asoc_platform,
Robert Jarzmik72493142008-11-13 23:50:56 +0100425 &sa1100_device_rtc,
eric miao2c8086a2007-09-11 19:13:17 -0700426 &pxa_device_rtc,
eric miaod8e0db12007-12-10 17:54:36 +0800427 &pxa27x_device_ssp1,
428 &pxa27x_device_ssp2,
429 &pxa27x_device_ssp3,
430 &pxa3xx_device_ssp4,
eric miao75540c12008-04-13 21:44:04 +0100431 &pxa27x_device_pwm0,
432 &pxa27x_device_pwm1,
eric miao2c8086a2007-09-11 19:13:17 -0700433};
434
eric miaoc01655042008-01-28 23:00:02 +0000435static struct sys_device pxa3xx_sysdev[] = {
436 {
eric miaoc01655042008-01-28 23:00:02 +0000437 .cls = &pxa_irq_sysclass,
eric miao16dfdbf2008-01-28 23:00:02 +0000438 }, {
eric miao4be35e22008-02-04 10:07:09 +0800439 .cls = &pxa3xx_mfp_sysclass,
440 }, {
eric miao16dfdbf2008-01-28 23:00:02 +0000441 .cls = &pxa_gpio_sysclass,
Eric Miaoaae82242010-11-23 17:07:48 +0800442 }, {
443 .cls = &pxa3xx_clock_sysclass,
444 }
eric miaoc01655042008-01-28 23:00:02 +0000445};
446
eric miao2c8086a2007-09-11 19:13:17 -0700447static int __init pxa3xx_init(void)
448{
eric miaoc01655042008-01-28 23:00:02 +0000449 int i, ret = 0;
eric miao2c8086a2007-09-11 19:13:17 -0700450
451 if (cpu_is_pxa3xx()) {
Eric Miao04fef222008-07-29 14:26:00 +0800452
453 reset_status = ARSR;
454
Dmitry Krivoschekov86260f92008-02-08 15:02:03 +0100455 /*
456 * clear RDH bit every time after reset
457 *
458 * Note: the last 3 bits DxS are write-1-to-clear so carefully
459 * preserve them here in case they will be referenced later
460 */
461 ASCR &= ~(ASCR_RDH | ASCR_D1S | ASCR_D2S | ASCR_D3S);
462
Russell King0a0300d2010-01-12 12:28:00 +0000463 clkdev_add_table(pxa3xx_clkregs, ARRAY_SIZE(pxa3xx_clkregs));
eric miao2c8086a2007-09-11 19:13:17 -0700464
Eric Miaofef1f992009-01-02 16:26:33 +0800465 if ((ret = pxa_init_dma(IRQ_DMA, 32)))
eric miao2c8086a2007-09-11 19:13:17 -0700466 return ret;
467
Russell King7b5dea12008-01-07 22:18:30 +0000468 pxa3xx_init_pm();
469
eric miaoc01655042008-01-28 23:00:02 +0000470 for (i = 0; i < ARRAY_SIZE(pxa3xx_sysdev); i++) {
471 ret = sysdev_register(&pxa3xx_sysdev[i]);
472 if (ret)
473 pr_err("failed to register sysdev[%d]\n", i);
474 }
475
476 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
eric miao2c8086a2007-09-11 19:13:17 -0700477 }
eric miaoc01655042008-01-28 23:00:02 +0000478
479 return ret;
eric miao2c8086a2007-09-11 19:13:17 -0700480}
481
Russell King1c104e02008-04-19 10:59:24 +0100482postcore_initcall(pxa3xx_init);