2 * linux/arch/arm/mach-pxa/pxa3xx.c
4 * code specific to pxa3xx aka Monahans
6 * Copyright (C) 2006 Marvell International Ltd.
8 * 2007-09-02: eric miao <eric.miao@marvell.com>
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.
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/irq.h>
23 #include <linux/sysdev.h>
25 #include <asm/hardware.h>
26 #include <asm/arch/pxa3xx-regs.h>
27 #include <asm/arch/ohci.h>
28 #include <asm/arch/pm.h>
29 #include <asm/arch/dma.h>
30 #include <asm/arch/ssp.h>
36 /* Crystal clock: 13MHz */
37 #define BASE_CLK 13000000
39 /* Ring Oscillator Clock: 60MHz */
40 #define RO_CLK 60000000
42 #define ACCR_D0CS (1 << 26)
43 #define ACCR_PCCE (1 << 11)
45 /* crystal frequency to static memory controller multiplier (SMCFS) */
46 static unsigned char smcfs_mult[8] = { 6, 0, 8, 0, 0, 16, };
48 /* crystal frequency to HSIO bus frequency multiplier (HSS) */
49 static unsigned char hss_mult[4] = { 8, 12, 16, 0 };
52 * Get the clock frequency as reflected by CCSR and the turbo flag.
53 * We assume these values have been applied via a fcs.
54 * If info is not 0 we also display the current settings.
56 unsigned int pxa3xx_get_clk_frequency_khz(int info)
58 unsigned long acsr, xclkcfg;
59 unsigned int t, xl, xn, hss, ro, XL, XN, CLK, HSS;
61 /* Read XCLKCFG register turbo bit */
62 __asm__ __volatile__("mrc\tp14, 0, %0, c6, c0, 0" : "=r"(xclkcfg));
68 xn = (acsr >> 8) & 0x7;
69 hss = (acsr >> 14) & 0x3;
74 ro = acsr & ACCR_D0CS;
76 CLK = (ro) ? RO_CLK : ((t) ? XN : XL);
77 HSS = (ro) ? RO_CLK : hss_mult[hss] * BASE_CLK;
80 pr_info("RO Mode clock: %d.%02dMHz (%sactive)\n",
81 RO_CLK / 1000000, (RO_CLK % 1000000) / 10000,
83 pr_info("Run Mode clock: %d.%02dMHz (*%d)\n",
84 XL / 1000000, (XL % 1000000) / 10000, xl);
85 pr_info("Turbo Mode clock: %d.%02dMHz (*%d, %sactive)\n",
86 XN / 1000000, (XN % 1000000) / 10000, xn,
88 pr_info("HSIO bus clock: %d.%02dMHz\n",
89 HSS / 1000000, (HSS % 1000000) / 10000);
96 * Return the current static memory controller clock frequency
99 unsigned int pxa3xx_get_memclk_frequency_10khz(void)
102 unsigned int smcfs, clk = 0;
106 smcfs = (acsr >> 23) & 0x7;
107 clk = (acsr & ACCR_D0CS) ? RO_CLK : smcfs_mult[smcfs] * BASE_CLK;
109 return (clk / 10000);
113 * Return the current HSIO bus clock frequency
115 static unsigned long clk_pxa3xx_hsio_getrate(struct clk *clk)
118 unsigned int hss, hsio_clk;
122 hss = (acsr >> 14) & 0x3;
123 hsio_clk = (acsr & ACCR_D0CS) ? RO_CLK : hss_mult[hss] * BASE_CLK;
128 static void clk_pxa3xx_cken_enable(struct clk *clk)
130 unsigned long mask = 1ul << (clk->cken & 0x1f);
138 static void clk_pxa3xx_cken_disable(struct clk *clk)
140 unsigned long mask = 1ul << (clk->cken & 0x1f);
148 static const struct clkops clk_pxa3xx_cken_ops = {
149 .enable = clk_pxa3xx_cken_enable,
150 .disable = clk_pxa3xx_cken_disable,
153 static const struct clkops clk_pxa3xx_hsio_ops = {
154 .enable = clk_pxa3xx_cken_enable,
155 .disable = clk_pxa3xx_cken_disable,
156 .getrate = clk_pxa3xx_hsio_getrate,
159 #define PXA3xx_CKEN(_name, _cken, _rate, _delay, _dev) \
163 .ops = &clk_pxa3xx_cken_ops, \
165 .cken = CKEN_##_cken, \
169 #define PXA3xx_CK(_name, _cken, _ops, _dev) \
174 .cken = CKEN_##_cken, \
177 static struct clk pxa3xx_clks[] = {
178 PXA3xx_CK("LCDCLK", LCD, &clk_pxa3xx_hsio_ops, &pxa_device_fb.dev),
179 PXA3xx_CK("CAMCLK", CAMERA, &clk_pxa3xx_hsio_ops, NULL),
181 PXA3xx_CKEN("UARTCLK", FFUART, 14857000, 1, &pxa_device_ffuart.dev),
182 PXA3xx_CKEN("UARTCLK", BTUART, 14857000, 1, &pxa_device_btuart.dev),
183 PXA3xx_CKEN("UARTCLK", STUART, 14857000, 1, NULL),
185 PXA3xx_CKEN("I2CCLK", I2C, 32842000, 0, &pxa_device_i2c.dev),
186 PXA3xx_CKEN("UDCCLK", UDC, 48000000, 5, &pxa_device_udc.dev),
187 PXA3xx_CKEN("USBCLK", USBH, 48000000, 0, &pxa27x_device_ohci.dev),
189 PXA3xx_CKEN("SSPCLK", SSP1, 13000000, 0, &pxa27x_device_ssp1.dev),
190 PXA3xx_CKEN("SSPCLK", SSP2, 13000000, 0, &pxa27x_device_ssp2.dev),
191 PXA3xx_CKEN("SSPCLK", SSP3, 13000000, 0, &pxa27x_device_ssp3.dev),
192 PXA3xx_CKEN("SSPCLK", SSP4, 13000000, 0, &pxa3xx_device_ssp4.dev),
194 PXA3xx_CKEN("MMCCLK", MMC1, 19500000, 0, &pxa_device_mci.dev),
195 PXA3xx_CKEN("MMCCLK", MMC2, 19500000, 0, &pxa3xx_device_mci2.dev),
196 PXA3xx_CKEN("MMCCLK", MMC3, 19500000, 0, &pxa3xx_device_mci3.dev),
201 #define ISRAM_START 0x5c000000
202 #define ISRAM_SIZE SZ_256K
204 static void __iomem *sram;
205 static unsigned long wakeup_src;
207 #define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x
208 #define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x]
210 enum { SLEEP_SAVE_START = 0,
218 static void pxa3xx_cpu_pm_save(unsigned long *sleep_save)
225 static void pxa3xx_cpu_pm_restore(unsigned long *sleep_save)
233 * Enter a standby mode (S0D1C2 or S0D2C2). Upon wakeup, the dynamic
234 * memory controller has to be reinitialised, so we place some code
235 * in the SRAM to perform this function.
237 * We disable FIQs across the standby - otherwise, we might receive a
238 * FIQ while the SDRAM is unavailable.
240 static void pxa3xx_cpu_standby(unsigned int pwrmode)
242 extern const char pm_enter_standby_start[], pm_enter_standby_end[];
243 void (*fn)(unsigned int) = (void __force *)(sram + 0x8000);
245 memcpy_toio(sram + 0x8000, pm_enter_standby_start,
246 pm_enter_standby_end - pm_enter_standby_start);
250 AD2D0ER = wakeup_src;
264 * NOTE: currently, the OBM (OEM Boot Module) binary comes along with
265 * PXA3xx development kits assumes that the resuming process continues
266 * with the address stored within the first 4 bytes of SDRAM. The PSPR
267 * register is used privately by BootROM and OBM, and _must_ be set to
268 * 0x5c014000 for the moment.
270 static void pxa3xx_cpu_pm_suspend(void)
272 volatile unsigned long *p = (volatile void *)0xc0000000;
273 unsigned long saved_data = *p;
275 extern void pxa3xx_cpu_suspend(void);
276 extern void pxa3xx_cpu_resume(void);
278 /* resuming from D2 requires the HSIO2/BOOT/TPM clocks enabled */
279 CKENA |= (1 << CKEN_BOOT) | (1 << CKEN_TPM);
280 CKENB |= 1 << (CKEN_HSIO2 & 0x1f);
282 /* clear and setup wakeup source */
288 PCFR |= (1u << 13); /* L1_DIS */
289 PCFR &= ~((1u << 12) | (1u << 1)); /* L0_EN | SL_ROD */
293 /* overwrite with the resume address */
294 *p = virt_to_phys(pxa3xx_cpu_resume);
296 pxa3xx_cpu_suspend();
303 static void pxa3xx_cpu_pm_enter(suspend_state_t state)
306 * Don't sleep if no wakeup sources are defined
312 case PM_SUSPEND_STANDBY:
313 pxa3xx_cpu_standby(PXA3xx_PM_S0D2C2);
317 pxa3xx_cpu_pm_suspend();
322 static int pxa3xx_cpu_pm_valid(suspend_state_t state)
324 return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
327 static struct pxa_cpu_pm_fns pxa3xx_cpu_pm_fns = {
328 .save_size = SLEEP_SAVE_SIZE,
329 .save = pxa3xx_cpu_pm_save,
330 .restore = pxa3xx_cpu_pm_restore,
331 .valid = pxa3xx_cpu_pm_valid,
332 .enter = pxa3xx_cpu_pm_enter,
335 static void __init pxa3xx_init_pm(void)
337 sram = ioremap(ISRAM_START, ISRAM_SIZE);
339 printk(KERN_ERR "Unable to map ISRAM: disabling standby/suspend\n");
344 * Since we copy wakeup code into the SRAM, we need to ensure
345 * that it is preserved over the low power modes. Note: bit 8
346 * is undocumented in the developer manual, but must be set.
348 AD1R |= ADXR_L2 | ADXR_R0;
349 AD2R |= ADXR_L2 | ADXR_R0;
350 AD3R |= ADXR_L2 | ADXR_R0;
353 * Clear the resume enable registers.
360 pxa_cpu_pm_fns = &pxa3xx_cpu_pm_fns;
363 static int pxa3xx_set_wake(unsigned int irq, unsigned int on)
365 unsigned long flags, mask = 0;
369 mask = ADXER_MFP_WSSP3;
382 mask = ADXER_MFP_WAC97;
388 mask = ADXER_MFP_WSSP2;
391 mask = ADXER_MFP_WI2C;
394 mask = ADXER_MFP_WUART3;
397 mask = ADXER_MFP_WUART2;
400 mask = ADXER_MFP_WUART1;
403 mask = ADXER_MFP_WMMC1;
406 mask = ADXER_MFP_WSSP1;
412 mask = ADXER_MFP_WSSP4;
421 mask = ADXER_MFP_WMMC2;
424 mask = ADXER_MFP_WFLASH;
430 mask = ADXER_WEXTWAKE0;
433 mask = ADXER_WEXTWAKE1;
436 mask = ADXER_MFP_GEN12;
440 local_irq_save(flags);
445 local_irq_restore(flags);
450 static void pxa3xx_init_irq_pm(void)
452 pxa_init_irq_set_wake(pxa3xx_set_wake);
456 static inline void pxa3xx_init_pm(void) {}
457 static inline void pxa3xx_init_irq_pm(void) {}
460 void __init pxa3xx_init_irq(void)
462 /* enable CP6 access */
464 __asm__ __volatile__("mrc p15, 0, %0, c15, c1, 0\n": "=r"(value));
466 __asm__ __volatile__("mcr p15, 0, %0, c15, c1, 0\n": :"r"(value));
470 pxa_init_irq_gpio(128);
471 pxa3xx_init_irq_pm();
475 * device registration specific to PXA3xx.
478 static struct platform_device *devices[] __initdata = {
491 static struct sys_device pxa3xx_sysdev[] = {
494 .cls = &pxa_irq_sysclass,
497 .cls = &pxa_irq_sysclass,
499 .cls = &pxa_gpio_sysclass,
503 static int __init pxa3xx_init(void)
507 if (cpu_is_pxa3xx()) {
509 * clear RDH bit every time after reset
511 * Note: the last 3 bits DxS are write-1-to-clear so carefully
512 * preserve them here in case they will be referenced later
514 ASCR &= ~(ASCR_RDH | ASCR_D1S | ASCR_D2S | ASCR_D3S);
516 clks_register(pxa3xx_clks, ARRAY_SIZE(pxa3xx_clks));
518 if ((ret = pxa_init_dma(32)))
523 for (i = 0; i < ARRAY_SIZE(pxa3xx_sysdev); i++) {
524 ret = sysdev_register(&pxa3xx_sysdev[i]);
526 pr_err("failed to register sysdev[%d]\n", i);
529 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
535 subsys_initcall(pxa3xx_init);