blob: a0b123c99a4d7c4cb25dc03e7ebdceb5a44f445a [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
41/* Crystal clock: 13MHz */
42#define BASE_CLK 13000000
43
44/* Ring Oscillator Clock: 60MHz */
45#define RO_CLK 60000000
46
47#define ACCR_D0CS (1 << 26)
eric miaoc4d1fb62008-01-28 23:00:02 +000048#define ACCR_PCCE (1 << 11)
eric miao2c8086a2007-09-11 19:13:17 -070049
Mike Rapoportbf293ae2009-11-11 11:36:59 +020050#define PECR_IE(n) ((1 << ((n) * 2)) << 28)
51#define PECR_IS(n) ((1 << ((n) * 2)) << 29)
52
eric miao2c8086a2007-09-11 19:13:17 -070053/* crystal frequency to static memory controller multiplier (SMCFS) */
54static unsigned char smcfs_mult[8] = { 6, 0, 8, 0, 0, 16, };
55
56/* crystal frequency to HSIO bus frequency multiplier (HSS) */
Marek Vasut58529842010-06-24 15:57:11 +020057static unsigned char hss_mult[4] = { 8, 12, 16, 24 };
eric miao2c8086a2007-09-11 19:13:17 -070058
59/*
60 * Get the clock frequency as reflected by CCSR and the turbo flag.
61 * We assume these values have been applied via a fcs.
62 * If info is not 0 we also display the current settings.
63 */
64unsigned int pxa3xx_get_clk_frequency_khz(int info)
65{
66 unsigned long acsr, xclkcfg;
67 unsigned int t, xl, xn, hss, ro, XL, XN, CLK, HSS;
68
69 /* Read XCLKCFG register turbo bit */
70 __asm__ __volatile__("mrc\tp14, 0, %0, c6, c0, 0" : "=r"(xclkcfg));
71 t = xclkcfg & 0x1;
72
73 acsr = ACSR;
74
75 xl = acsr & 0x1f;
76 xn = (acsr >> 8) & 0x7;
77 hss = (acsr >> 14) & 0x3;
78
79 XL = xl * BASE_CLK;
80 XN = xn * XL;
81
82 ro = acsr & ACCR_D0CS;
83
84 CLK = (ro) ? RO_CLK : ((t) ? XN : XL);
85 HSS = (ro) ? RO_CLK : hss_mult[hss] * BASE_CLK;
86
87 if (info) {
88 pr_info("RO Mode clock: %d.%02dMHz (%sactive)\n",
89 RO_CLK / 1000000, (RO_CLK % 1000000) / 10000,
90 (ro) ? "" : "in");
91 pr_info("Run Mode clock: %d.%02dMHz (*%d)\n",
92 XL / 1000000, (XL % 1000000) / 10000, xl);
93 pr_info("Turbo Mode clock: %d.%02dMHz (*%d, %sactive)\n",
94 XN / 1000000, (XN % 1000000) / 10000, xn,
95 (t) ? "" : "in");
96 pr_info("HSIO bus clock: %d.%02dMHz\n",
97 HSS / 1000000, (HSS % 1000000) / 10000);
98 }
99
eric miao6232be32008-01-24 02:27:30 +0100100 return CLK / 1000;
eric miao2c8086a2007-09-11 19:13:17 -0700101}
102
Eric Miao04fef222008-07-29 14:26:00 +0800103void pxa3xx_clear_reset_status(unsigned int mask)
104{
105 /* RESET_STATUS_* has a 1:1 mapping with ARSR */
106 ARSR = mask;
107}
108
eric miao2c8086a2007-09-11 19:13:17 -0700109/*
Mark Brown60bfe7f2008-03-04 11:14:23 +0100110 * Return the current AC97 clock frequency.
111 */
112static unsigned long clk_pxa3xx_ac97_getrate(struct clk *clk)
113{
114 unsigned long rate = 312000000;
115 unsigned long ac97_div;
116
117 ac97_div = AC97_DIV;
118
119 /* This may loose precision for some rates but won't for the
120 * standard 24.576MHz.
121 */
122 rate /= (ac97_div >> 12) & 0x7fff;
123 rate *= (ac97_div & 0xfff);
124
125 return rate;
126}
127
128/*
eric miao2c8086a2007-09-11 19:13:17 -0700129 * Return the current HSIO bus clock frequency
130 */
131static unsigned long clk_pxa3xx_hsio_getrate(struct clk *clk)
132{
133 unsigned long acsr;
134 unsigned int hss, hsio_clk;
135
136 acsr = ACSR;
137
138 hss = (acsr >> 14) & 0x3;
139 hsio_clk = (acsr & ACCR_D0CS) ? RO_CLK : hss_mult[hss] * BASE_CLK;
140
141 return hsio_clk;
142}
143
eric miao7a2c5cb2008-02-19 11:13:31 +0800144void clk_pxa3xx_cken_enable(struct clk *clk)
eric miao2c8086a2007-09-11 19:13:17 -0700145{
146 unsigned long mask = 1ul << (clk->cken & 0x1f);
147
eric miao2c8086a2007-09-11 19:13:17 -0700148 if (clk->cken < 32)
149 CKENA |= mask;
150 else
151 CKENB |= mask;
eric miao2c8086a2007-09-11 19:13:17 -0700152}
153
eric miao7a2c5cb2008-02-19 11:13:31 +0800154void clk_pxa3xx_cken_disable(struct clk *clk)
eric miao2c8086a2007-09-11 19:13:17 -0700155{
156 unsigned long mask = 1ul << (clk->cken & 0x1f);
157
eric miao2c8086a2007-09-11 19:13:17 -0700158 if (clk->cken < 32)
159 CKENA &= ~mask;
160 else
161 CKENB &= ~mask;
eric miao2c8086a2007-09-11 19:13:17 -0700162}
163
eric miao7a2c5cb2008-02-19 11:13:31 +0800164const struct clkops clk_pxa3xx_cken_ops = {
eric miao2a0d7182007-10-30 08:10:18 +0100165 .enable = clk_pxa3xx_cken_enable,
166 .disable = clk_pxa3xx_cken_disable,
167};
168
eric miao2c8086a2007-09-11 19:13:17 -0700169static const struct clkops clk_pxa3xx_hsio_ops = {
170 .enable = clk_pxa3xx_cken_enable,
171 .disable = clk_pxa3xx_cken_disable,
172 .getrate = clk_pxa3xx_hsio_getrate,
173};
174
Mark Brown60bfe7f2008-03-04 11:14:23 +0100175static const struct clkops clk_pxa3xx_ac97_ops = {
176 .enable = clk_pxa3xx_cken_enable,
177 .disable = clk_pxa3xx_cken_disable,
178 .getrate = clk_pxa3xx_ac97_getrate,
179};
180
Mark Browndcc88a12008-02-13 16:39:21 +0100181static void clk_pout_enable(struct clk *clk)
182{
183 OSCC |= OSCC_PEN;
184}
185
186static void clk_pout_disable(struct clk *clk)
187{
188 OSCC &= ~OSCC_PEN;
189}
190
191static const struct clkops clk_pout_ops = {
192 .enable = clk_pout_enable,
193 .disable = clk_pout_disable,
194};
195
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100196static void clk_dummy_enable(struct clk *clk)
197{
198}
199
200static void clk_dummy_disable(struct clk *clk)
201{
202}
203
204static const struct clkops clk_dummy_ops = {
205 .enable = clk_dummy_enable,
206 .disable = clk_dummy_disable,
207};
208
Russell King8c3abc72008-11-08 20:25:21 +0000209static struct clk clk_pxa3xx_pout = {
210 .ops = &clk_pout_ops,
211 .rate = 13000000,
212 .delay = 70,
213};
Mark Browndcc88a12008-02-13 16:39:21 +0100214
Russell King8c3abc72008-11-08 20:25:21 +0000215static struct clk clk_dummy = {
216 .ops = &clk_dummy_ops,
217};
218
Russell King8c3abc72008-11-08 20:25:21 +0000219static DEFINE_PXA3_CKEN(pxa3xx_ffuart, FFUART, 14857000, 1);
220static DEFINE_PXA3_CKEN(pxa3xx_btuart, BTUART, 14857000, 1);
221static DEFINE_PXA3_CKEN(pxa3xx_stuart, STUART, 14857000, 1);
222static DEFINE_PXA3_CKEN(pxa3xx_i2c, I2C, 32842000, 0);
223static DEFINE_PXA3_CKEN(pxa3xx_udc, UDC, 48000000, 5);
224static DEFINE_PXA3_CKEN(pxa3xx_usbh, USBH, 48000000, 0);
Igor Grinberge68750a2009-11-04 14:14:39 +0200225static DEFINE_PXA3_CKEN(pxa3xx_u2d, USB2, 48000000, 0);
Russell King8c3abc72008-11-08 20:25:21 +0000226static DEFINE_PXA3_CKEN(pxa3xx_keypad, KEYPAD, 32768, 0);
227static DEFINE_PXA3_CKEN(pxa3xx_ssp1, SSP1, 13000000, 0);
228static DEFINE_PXA3_CKEN(pxa3xx_ssp2, SSP2, 13000000, 0);
229static DEFINE_PXA3_CKEN(pxa3xx_ssp3, SSP3, 13000000, 0);
230static DEFINE_PXA3_CKEN(pxa3xx_ssp4, SSP4, 13000000, 0);
231static DEFINE_PXA3_CKEN(pxa3xx_pwm0, PWM0, 13000000, 0);
232static DEFINE_PXA3_CKEN(pxa3xx_pwm1, PWM1, 13000000, 0);
233static DEFINE_PXA3_CKEN(pxa3xx_mmc1, MMC1, 19500000, 0);
234static DEFINE_PXA3_CKEN(pxa3xx_mmc2, MMC2, 19500000, 0);
235
Eric Miao2e8581e2010-11-22 09:41:39 +0800236static DEFINE_CK(pxa3xx_lcd, LCD, &clk_pxa3xx_hsio_ops);
237static DEFINE_CK(pxa3xx_camera, CAMERA, &clk_pxa3xx_hsio_ops);
238static DEFINE_CK(pxa3xx_ac97, AC97, &clk_pxa3xx_ac97_ops);
239
Russell King8c3abc72008-11-08 20:25:21 +0000240static struct clk_lookup pxa3xx_clkregs[] = {
241 INIT_CLKREG(&clk_pxa3xx_pout, NULL, "CLK_POUT"),
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100242 /* Power I2C clock is always on */
Daniel Mack5c68b092009-06-22 21:01:58 +0200243 INIT_CLKREG(&clk_dummy, "pxa3xx-pwri2c.1", NULL),
Russell King8c3abc72008-11-08 20:25:21 +0000244 INIT_CLKREG(&clk_pxa3xx_lcd, "pxa2xx-fb", NULL),
245 INIT_CLKREG(&clk_pxa3xx_camera, NULL, "CAMCLK"),
246 INIT_CLKREG(&clk_pxa3xx_ac97, NULL, "AC97CLK"),
247 INIT_CLKREG(&clk_pxa3xx_ffuart, "pxa2xx-uart.0", NULL),
248 INIT_CLKREG(&clk_pxa3xx_btuart, "pxa2xx-uart.1", NULL),
249 INIT_CLKREG(&clk_pxa3xx_stuart, "pxa2xx-uart.2", NULL),
250 INIT_CLKREG(&clk_pxa3xx_stuart, "pxa2xx-ir", "UARTCLK"),
251 INIT_CLKREG(&clk_pxa3xx_i2c, "pxa2xx-i2c.0", NULL),
252 INIT_CLKREG(&clk_pxa3xx_udc, "pxa27x-udc", NULL),
253 INIT_CLKREG(&clk_pxa3xx_usbh, "pxa27x-ohci", NULL),
Igor Grinberg69f22be2010-07-27 15:06:58 +0300254 INIT_CLKREG(&clk_pxa3xx_u2d, "pxa3xx-u2d", NULL),
Russell King8c3abc72008-11-08 20:25:21 +0000255 INIT_CLKREG(&clk_pxa3xx_keypad, "pxa27x-keypad", NULL),
256 INIT_CLKREG(&clk_pxa3xx_ssp1, "pxa27x-ssp.0", NULL),
257 INIT_CLKREG(&clk_pxa3xx_ssp2, "pxa27x-ssp.1", NULL),
258 INIT_CLKREG(&clk_pxa3xx_ssp3, "pxa27x-ssp.2", NULL),
259 INIT_CLKREG(&clk_pxa3xx_ssp4, "pxa27x-ssp.3", NULL),
260 INIT_CLKREG(&clk_pxa3xx_pwm0, "pxa27x-pwm.0", NULL),
261 INIT_CLKREG(&clk_pxa3xx_pwm1, "pxa27x-pwm.1", NULL),
262 INIT_CLKREG(&clk_pxa3xx_mmc1, "pxa2xx-mci.0", NULL),
263 INIT_CLKREG(&clk_pxa3xx_mmc2, "pxa2xx-mci.1", NULL),
eric miao2c8086a2007-09-11 19:13:17 -0700264};
265
Russell King7b5dea12008-01-07 22:18:30 +0000266#ifdef CONFIG_PM
Russell King7b5dea12008-01-07 22:18:30 +0000267
268#define ISRAM_START 0x5c000000
269#define ISRAM_SIZE SZ_256K
270
271static void __iomem *sram;
272static unsigned long wakeup_src;
273
eric miaoc4d1fb62008-01-28 23:00:02 +0000274#define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x
275#define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x]
276
Robert Jarzmik649de512008-05-02 21:17:06 +0100277enum { SLEEP_SAVE_CKENA,
eric miaoc4d1fb62008-01-28 23:00:02 +0000278 SLEEP_SAVE_CKENB,
279 SLEEP_SAVE_ACCR,
280
Robert Jarzmik649de512008-05-02 21:17:06 +0100281 SLEEP_SAVE_COUNT,
eric miaoc4d1fb62008-01-28 23:00:02 +0000282};
283
Russell King7b5dea12008-01-07 22:18:30 +0000284static void pxa3xx_cpu_pm_save(unsigned long *sleep_save)
285{
eric miaoc4d1fb62008-01-28 23:00:02 +0000286 SAVE(CKENA);
287 SAVE(CKENB);
288 SAVE(ACCR);
Russell King7b5dea12008-01-07 22:18:30 +0000289}
290
291static void pxa3xx_cpu_pm_restore(unsigned long *sleep_save)
292{
eric miaoc4d1fb62008-01-28 23:00:02 +0000293 RESTORE(ACCR);
294 RESTORE(CKENA);
295 RESTORE(CKENB);
Russell King7b5dea12008-01-07 22:18:30 +0000296}
297
298/*
299 * Enter a standby mode (S0D1C2 or S0D2C2). Upon wakeup, the dynamic
300 * memory controller has to be reinitialised, so we place some code
301 * in the SRAM to perform this function.
302 *
303 * We disable FIQs across the standby - otherwise, we might receive a
304 * FIQ while the SDRAM is unavailable.
305 */
306static void pxa3xx_cpu_standby(unsigned int pwrmode)
307{
308 extern const char pm_enter_standby_start[], pm_enter_standby_end[];
309 void (*fn)(unsigned int) = (void __force *)(sram + 0x8000);
310
311 memcpy_toio(sram + 0x8000, pm_enter_standby_start,
312 pm_enter_standby_end - pm_enter_standby_start);
313
314 AD2D0SR = ~0;
315 AD2D1SR = ~0;
316 AD2D0ER = wakeup_src;
317 AD2D1ER = 0;
318 ASCR = ASCR;
319 ARSR = ARSR;
320
321 local_fiq_disable();
322 fn(pwrmode);
323 local_fiq_enable();
324
325 AD2D0ER = 0;
326 AD2D1ER = 0;
Russell King7b5dea12008-01-07 22:18:30 +0000327}
328
eric miaoc4d1fb62008-01-28 23:00:02 +0000329/*
330 * NOTE: currently, the OBM (OEM Boot Module) binary comes along with
331 * PXA3xx development kits assumes that the resuming process continues
332 * with the address stored within the first 4 bytes of SDRAM. The PSPR
333 * register is used privately by BootROM and OBM, and _must_ be set to
334 * 0x5c014000 for the moment.
335 */
336static void pxa3xx_cpu_pm_suspend(void)
337{
338 volatile unsigned long *p = (volatile void *)0xc0000000;
339 unsigned long saved_data = *p;
340
341 extern void pxa3xx_cpu_suspend(void);
342 extern void pxa3xx_cpu_resume(void);
343
344 /* resuming from D2 requires the HSIO2/BOOT/TPM clocks enabled */
345 CKENA |= (1 << CKEN_BOOT) | (1 << CKEN_TPM);
346 CKENB |= 1 << (CKEN_HSIO2 & 0x1f);
347
348 /* clear and setup wakeup source */
349 AD3SR = ~0;
350 AD3ER = wakeup_src;
351 ASCR = ASCR;
352 ARSR = ARSR;
353
354 PCFR |= (1u << 13); /* L1_DIS */
355 PCFR &= ~((1u << 12) | (1u << 1)); /* L0_EN | SL_ROD */
356
357 PSPR = 0x5c014000;
358
359 /* overwrite with the resume address */
360 *p = virt_to_phys(pxa3xx_cpu_resume);
361
362 pxa3xx_cpu_suspend();
363
364 *p = saved_data;
365
366 AD3ER = 0;
367}
368
Russell King7b5dea12008-01-07 22:18:30 +0000369static void pxa3xx_cpu_pm_enter(suspend_state_t state)
370{
371 /*
372 * Don't sleep if no wakeup sources are defined
373 */
Mark Brownb86a5da2008-04-09 11:32:21 +0100374 if (wakeup_src == 0) {
375 printk(KERN_ERR "Not suspending: no wakeup sources\n");
Russell King7b5dea12008-01-07 22:18:30 +0000376 return;
Mark Brownb86a5da2008-04-09 11:32:21 +0100377 }
Russell King7b5dea12008-01-07 22:18:30 +0000378
379 switch (state) {
380 case PM_SUSPEND_STANDBY:
381 pxa3xx_cpu_standby(PXA3xx_PM_S0D2C2);
382 break;
383
384 case PM_SUSPEND_MEM:
eric miaoc4d1fb62008-01-28 23:00:02 +0000385 pxa3xx_cpu_pm_suspend();
Russell King7b5dea12008-01-07 22:18:30 +0000386 break;
387 }
388}
389
390static int pxa3xx_cpu_pm_valid(suspend_state_t state)
391{
392 return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
393}
394
395static struct pxa_cpu_pm_fns pxa3xx_cpu_pm_fns = {
Robert Jarzmik649de512008-05-02 21:17:06 +0100396 .save_count = SLEEP_SAVE_COUNT,
Russell King7b5dea12008-01-07 22:18:30 +0000397 .save = pxa3xx_cpu_pm_save,
398 .restore = pxa3xx_cpu_pm_restore,
399 .valid = pxa3xx_cpu_pm_valid,
400 .enter = pxa3xx_cpu_pm_enter,
401};
402
403static void __init pxa3xx_init_pm(void)
404{
405 sram = ioremap(ISRAM_START, ISRAM_SIZE);
406 if (!sram) {
407 printk(KERN_ERR "Unable to map ISRAM: disabling standby/suspend\n");
408 return;
409 }
410
411 /*
412 * Since we copy wakeup code into the SRAM, we need to ensure
413 * that it is preserved over the low power modes. Note: bit 8
414 * is undocumented in the developer manual, but must be set.
415 */
416 AD1R |= ADXR_L2 | ADXR_R0;
417 AD2R |= ADXR_L2 | ADXR_R0;
418 AD3R |= ADXR_L2 | ADXR_R0;
419
420 /*
421 * Clear the resume enable registers.
422 */
423 AD1D0ER = 0;
424 AD2D0ER = 0;
425 AD2D1ER = 0;
426 AD3ER = 0;
427
428 pxa_cpu_pm_fns = &pxa3xx_cpu_pm_fns;
429}
430
431static int pxa3xx_set_wake(unsigned int irq, unsigned int on)
432{
433 unsigned long flags, mask = 0;
434
435 switch (irq) {
436 case IRQ_SSP3:
437 mask = ADXER_MFP_WSSP3;
438 break;
439 case IRQ_MSL:
440 mask = ADXER_WMSL0;
441 break;
442 case IRQ_USBH2:
443 case IRQ_USBH1:
444 mask = ADXER_WUSBH;
445 break;
446 case IRQ_KEYPAD:
447 mask = ADXER_WKP;
448 break;
449 case IRQ_AC97:
450 mask = ADXER_MFP_WAC97;
451 break;
452 case IRQ_USIM:
453 mask = ADXER_WUSIM0;
454 break;
455 case IRQ_SSP2:
456 mask = ADXER_MFP_WSSP2;
457 break;
458 case IRQ_I2C:
459 mask = ADXER_MFP_WI2C;
460 break;
461 case IRQ_STUART:
462 mask = ADXER_MFP_WUART3;
463 break;
464 case IRQ_BTUART:
465 mask = ADXER_MFP_WUART2;
466 break;
467 case IRQ_FFUART:
468 mask = ADXER_MFP_WUART1;
469 break;
470 case IRQ_MMC:
471 mask = ADXER_MFP_WMMC1;
472 break;
473 case IRQ_SSP:
474 mask = ADXER_MFP_WSSP1;
475 break;
476 case IRQ_RTCAlrm:
477 mask = ADXER_WRTC;
478 break;
479 case IRQ_SSP4:
480 mask = ADXER_MFP_WSSP4;
481 break;
482 case IRQ_TSI:
483 mask = ADXER_WTSI;
484 break;
485 case IRQ_USIM2:
486 mask = ADXER_WUSIM1;
487 break;
488 case IRQ_MMC2:
489 mask = ADXER_MFP_WMMC2;
490 break;
491 case IRQ_NAND:
492 mask = ADXER_MFP_WFLASH;
493 break;
494 case IRQ_USB2:
495 mask = ADXER_WUSB2;
496 break;
497 case IRQ_WAKEUP0:
498 mask = ADXER_WEXTWAKE0;
499 break;
500 case IRQ_WAKEUP1:
501 mask = ADXER_WEXTWAKE1;
502 break;
503 case IRQ_MMC3:
504 mask = ADXER_MFP_GEN12;
505 break;
Mark Browne1217702008-04-23 10:28:18 +0100506 default:
507 return -EINVAL;
Russell King7b5dea12008-01-07 22:18:30 +0000508 }
509
510 local_irq_save(flags);
511 if (on)
512 wakeup_src |= mask;
513 else
514 wakeup_src &= ~mask;
515 local_irq_restore(flags);
516
517 return 0;
518}
Russell King7b5dea12008-01-07 22:18:30 +0000519#else
520static inline void pxa3xx_init_pm(void) {}
eric miaob9e25ac2008-03-04 14:19:58 +0800521#define pxa3xx_set_wake NULL
Russell King7b5dea12008-01-07 22:18:30 +0000522#endif
523
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200524static void pxa_ack_ext_wakeup(unsigned int irq)
525{
526 PECR |= PECR_IS(irq - IRQ_WAKEUP0);
527}
528
529static void pxa_mask_ext_wakeup(unsigned int irq)
530{
531 ICMR2 &= ~(1 << ((irq - PXA_IRQ(0)) & 0x1f));
532 PECR &= ~PECR_IE(irq - IRQ_WAKEUP0);
533}
534
535static void pxa_unmask_ext_wakeup(unsigned int irq)
536{
537 ICMR2 |= 1 << ((irq - PXA_IRQ(0)) & 0x1f);
538 PECR |= PECR_IE(irq - IRQ_WAKEUP0);
539}
540
Igor Grinberg12882092010-06-13 11:31:48 +0300541static int pxa_set_ext_wakeup_type(unsigned int irq, unsigned int flow_type)
542{
543 if (flow_type & IRQ_TYPE_EDGE_RISING)
544 PWER |= 1 << (irq - IRQ_WAKEUP0);
545
546 if (flow_type & IRQ_TYPE_EDGE_FALLING)
547 PWER |= 1 << (irq - IRQ_WAKEUP0 + 2);
548
549 return 0;
550}
551
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200552static struct irq_chip pxa_ext_wakeup_chip = {
553 .name = "WAKEUP",
554 .ack = pxa_ack_ext_wakeup,
555 .mask = pxa_mask_ext_wakeup,
556 .unmask = pxa_unmask_ext_wakeup,
Igor Grinberg12882092010-06-13 11:31:48 +0300557 .set_type = pxa_set_ext_wakeup_type,
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200558};
559
560static void __init pxa_init_ext_wakeup_irq(set_wake_t fn)
561{
562 int irq;
563
564 for (irq = IRQ_WAKEUP0; irq <= IRQ_WAKEUP1; irq++) {
565 set_irq_chip(irq, &pxa_ext_wakeup_chip);
566 set_irq_handler(irq, handle_edge_irq);
567 set_irq_flags(irq, IRQF_VALID);
568 }
569
570 pxa_ext_wakeup_chip.set_wake = fn;
571}
572
eric miao2c8086a2007-09-11 19:13:17 -0700573void __init pxa3xx_init_irq(void)
574{
575 /* enable CP6 access */
576 u32 value;
577 __asm__ __volatile__("mrc p15, 0, %0, c15, c1, 0\n": "=r"(value));
578 value |= (1 << 6);
579 __asm__ __volatile__("mcr p15, 0, %0, c15, c1, 0\n": :"r"(value));
580
eric miaob9e25ac2008-03-04 14:19:58 +0800581 pxa_init_irq(56, pxa3xx_set_wake);
Mike Rapoportbf293ae2009-11-11 11:36:59 +0200582 pxa_init_ext_wakeup_irq(pxa3xx_set_wake);
Eric Miaoa58fbcd2009-01-06 17:37:37 +0800583 pxa_init_gpio(IRQ_GPIO_2_x, 2, 127, NULL);
eric miao2c8086a2007-09-11 19:13:17 -0700584}
585
Marek Vasut851982c2010-10-11 02:20:19 +0200586static struct map_desc pxa3xx_io_desc[] __initdata = {
587 { /* Mem Ctl */
Marek Vasutad68bb92010-11-03 16:29:35 +0100588 .virtual = SMEMC_VIRT,
589 .pfn = __phys_to_pfn(PXA3XX_SMEMC_BASE),
Marek Vasut851982c2010-10-11 02:20:19 +0200590 .length = 0x00200000,
591 .type = MT_DEVICE
592 }
593};
594
595void __init pxa3xx_map_io(void)
596{
597 pxa_map_io();
598 iotable_init(ARRAY_AND_SIZE(pxa3xx_io_desc));
599 pxa3xx_get_clk_frequency_khz(1);
600}
601
eric miao2c8086a2007-09-11 19:13:17 -0700602/*
603 * device registration specific to PXA3xx.
604 */
605
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100606void __init pxa3xx_set_i2c_power_info(struct i2c_pxa_platform_data *info)
607{
Eric Miao14758222008-11-28 15:24:12 +0800608 pxa_register_device(&pxa3xx_device_i2c_power, info);
Mike Rapoport9ba63c42008-08-17 06:23:05 +0100609}
610
eric miao2c8086a2007-09-11 19:13:17 -0700611static struct platform_device *devices[] __initdata = {
Robert Jarzmik94c35a62009-04-21 19:19:36 +0200612 &pxa27x_device_udc,
Eric Miao09a53582010-06-14 00:43:00 +0800613 &pxa_device_pmu,
eric miao2c8086a2007-09-11 19:13:17 -0700614 &pxa_device_i2s,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000615 &pxa_device_asoc_ssp1,
616 &pxa_device_asoc_ssp2,
617 &pxa_device_asoc_ssp3,
618 &pxa_device_asoc_ssp4,
619 &pxa_device_asoc_platform,
Robert Jarzmik72493142008-11-13 23:50:56 +0100620 &sa1100_device_rtc,
eric miao2c8086a2007-09-11 19:13:17 -0700621 &pxa_device_rtc,
eric miaod8e0db12007-12-10 17:54:36 +0800622 &pxa27x_device_ssp1,
623 &pxa27x_device_ssp2,
624 &pxa27x_device_ssp3,
625 &pxa3xx_device_ssp4,
eric miao75540c12008-04-13 21:44:04 +0100626 &pxa27x_device_pwm0,
627 &pxa27x_device_pwm1,
eric miao2c8086a2007-09-11 19:13:17 -0700628};
629
eric miaoc01655042008-01-28 23:00:02 +0000630static struct sys_device pxa3xx_sysdev[] = {
631 {
eric miaoc01655042008-01-28 23:00:02 +0000632 .cls = &pxa_irq_sysclass,
eric miao16dfdbf2008-01-28 23:00:02 +0000633 }, {
eric miao4be35e22008-02-04 10:07:09 +0800634 .cls = &pxa3xx_mfp_sysclass,
635 }, {
eric miao16dfdbf2008-01-28 23:00:02 +0000636 .cls = &pxa_gpio_sysclass,
eric miaoc01655042008-01-28 23:00:02 +0000637 },
638};
639
eric miao2c8086a2007-09-11 19:13:17 -0700640static int __init pxa3xx_init(void)
641{
eric miaoc01655042008-01-28 23:00:02 +0000642 int i, ret = 0;
eric miao2c8086a2007-09-11 19:13:17 -0700643
644 if (cpu_is_pxa3xx()) {
Eric Miao04fef222008-07-29 14:26:00 +0800645
646 reset_status = ARSR;
647
Dmitry Krivoschekov86260f92008-02-08 15:02:03 +0100648 /*
649 * clear RDH bit every time after reset
650 *
651 * Note: the last 3 bits DxS are write-1-to-clear so carefully
652 * preserve them here in case they will be referenced later
653 */
654 ASCR &= ~(ASCR_RDH | ASCR_D1S | ASCR_D2S | ASCR_D3S);
655
Russell King0a0300d2010-01-12 12:28:00 +0000656 clkdev_add_table(pxa3xx_clkregs, ARRAY_SIZE(pxa3xx_clkregs));
eric miao2c8086a2007-09-11 19:13:17 -0700657
Eric Miaofef1f992009-01-02 16:26:33 +0800658 if ((ret = pxa_init_dma(IRQ_DMA, 32)))
eric miao2c8086a2007-09-11 19:13:17 -0700659 return ret;
660
Russell King7b5dea12008-01-07 22:18:30 +0000661 pxa3xx_init_pm();
662
eric miaoc01655042008-01-28 23:00:02 +0000663 for (i = 0; i < ARRAY_SIZE(pxa3xx_sysdev); i++) {
664 ret = sysdev_register(&pxa3xx_sysdev[i]);
665 if (ret)
666 pr_err("failed to register sysdev[%d]\n", i);
667 }
668
669 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
eric miao2c8086a2007-09-11 19:13:17 -0700670 }
eric miaoc01655042008-01-28 23:00:02 +0000671
672 return ret;
eric miao2c8086a2007-09-11 19:13:17 -0700673}
674
Russell King1c104e02008-04-19 10:59:24 +0100675postcore_initcall(pxa3xx_init);