blob: 5b819e2c556394103784a6c158c6a9d8e07aed24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/pxa27x.c
3 *
4 * Author: Nicolas Pitre
5 * Created: Nov 05, 2002
6 * Copyright: MontaVista Software Inc.
7 *
8 * Code specific to PXA27x aka Bulverde.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/pm.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010018#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/hardware.h>
21#include <asm/irq.h>
Eric Miaocd491042007-06-22 04:14:09 +010022#include <asm/arch/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/arch/pxa-regs.h>
Richard Purdie81f280e2005-11-12 14:22:11 +000024#include <asm/arch/ohci.h>
Russell Kinge176bb02007-05-15 11:16:10 +010025#include <asm/arch/pm.h>
Eric Miaof53f0662007-06-22 05:40:17 +010026#include <asm/arch/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "generic.h"
29
30/* Crystal clock: 13MHz */
31#define BASE_CLK 13000000
32
33/*
34 * Get the clock frequency as reflected by CCSR and the turbo flag.
35 * We assume these values have been applied via a fcs.
36 * If info is not 0 we also display the current settings.
37 */
38unsigned int get_clk_frequency_khz( int info)
39{
40 unsigned long ccsr, clkcfg;
41 unsigned int l, L, m, M, n2, N, S;
42 int cccr_a, t, ht, b;
43
44 ccsr = CCSR;
45 cccr_a = CCCR & (1 << 25);
46
47 /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
48 asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
Richard Purdieafe5df22006-02-01 19:25:59 +000049 t = clkcfg & (1 << 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 ht = clkcfg & (1 << 2);
51 b = clkcfg & (1 << 3);
52
53 l = ccsr & 0x1f;
54 n2 = (ccsr>>7) & 0xf;
55 m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
56
57 L = l * BASE_CLK;
58 N = (L * n2) / 2;
59 M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
60 S = (b) ? L : (L/2);
61
62 if (info) {
63 printk( KERN_INFO "Run Mode clock: %d.%02dMHz (*%d)\n",
64 L / 1000000, (L % 1000000) / 10000, l );
65 printk( KERN_INFO "Turbo Mode clock: %d.%02dMHz (*%d.%d, %sactive)\n",
66 N / 1000000, (N % 1000000)/10000, n2 / 2, (n2 % 2)*5,
67 (t) ? "" : "in" );
68 printk( KERN_INFO "Memory clock: %d.%02dMHz (/%d)\n",
69 M / 1000000, (M % 1000000) / 10000, m );
70 printk( KERN_INFO "System bus clock: %d.%02dMHz \n",
71 S / 1000000, (S % 1000000) / 10000 );
72 }
73
74 return (t) ? (N/1000) : (L/1000);
75}
76
77/*
78 * Return the current mem clock frequency in units of 10kHz as
79 * reflected by CCCR[A], B, and L
80 */
81unsigned int get_memclk_frequency_10khz(void)
82{
83 unsigned long ccsr, clkcfg;
84 unsigned int l, L, m, M;
85 int cccr_a, b;
86
87 ccsr = CCSR;
88 cccr_a = CCCR & (1 << 25);
89
90 /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
91 asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
92 b = clkcfg & (1 << 3);
93
94 l = ccsr & 0x1f;
95 m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
96
97 L = l * BASE_CLK;
98 M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
99
100 return (M / 10000);
101}
102
103/*
104 * Return the current LCD clock frequency in units of 10kHz as
105 */
106unsigned int get_lcdclk_frequency_10khz(void)
107{
108 unsigned long ccsr;
109 unsigned int l, L, k, K;
110
111 ccsr = CCSR;
112
113 l = ccsr & 0x1f;
114 k = (l <= 7) ? 1 : (l <= 16) ? 2 : 4;
115
116 L = l * BASE_CLK;
117 K = L / k;
118
119 return (K / 10000);
120}
121
122EXPORT_SYMBOL(get_clk_frequency_khz);
123EXPORT_SYMBOL(get_memclk_frequency_10khz);
124EXPORT_SYMBOL(get_lcdclk_frequency_10khz);
125
Nicolas Pitrea8fa3f02005-06-13 22:35:41 +0100126#ifdef CONFIG_PM
127
Todd Poynor87754202005-06-03 20:52:27 +0100128void pxa_cpu_pm_enter(suspend_state_t state)
129{
130 extern void pxa_cpu_standby(void);
131 extern void pxa_cpu_suspend(unsigned int);
132 extern void pxa_cpu_resume(void);
133
Todd Poynor26705ca2005-07-01 11:27:05 +0100134 if (state == PM_SUSPEND_STANDBY)
Richard Purdie1f750a72007-07-02 10:19:07 +0100135 CKEN = (1 << CKEN_MEMC) | (1 << CKEN_OSTIMER) | (1 << CKEN_LCD) | (1 << CKEN_PWM0);
Todd Poynor26705ca2005-07-01 11:27:05 +0100136 else
Richard Purdie1f750a72007-07-02 10:19:07 +0100137 CKEN = (1 << CKEN_MEMC) | (1 << CKEN_OSTIMER);
Todd Poynor87754202005-06-03 20:52:27 +0100138
139 /* ensure voltage-change sequencer not initiated, which hangs */
140 PCFR &= ~PCFR_FVC;
141
142 /* Clear edge-detect status register. */
143 PEDR = 0xDF12FE1B;
144
145 switch (state) {
Todd Poynor26705ca2005-07-01 11:27:05 +0100146 case PM_SUSPEND_STANDBY:
147 pxa_cpu_standby();
148 break;
Todd Poynor87754202005-06-03 20:52:27 +0100149 case PM_SUSPEND_MEM:
150 /* set resume return address */
151 PSPR = virt_to_phys(pxa_cpu_resume);
Todd Poynor80a18572005-10-28 16:25:01 +0100152 pxa_cpu_suspend(PWRMODE_SLEEP);
Todd Poynor87754202005-06-03 20:52:27 +0100153 break;
154 }
155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Russell King88dfe982007-05-15 11:22:48 +0100157static int pxa27x_pm_valid(suspend_state_t state)
158{
159 return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
160}
161
Russell Kinge176bb02007-05-15 11:16:10 +0100162static struct pm_ops pxa27x_pm_ops = {
Russell Kinge176bb02007-05-15 11:16:10 +0100163 .enter = pxa_pm_enter,
Russell King88dfe982007-05-15 11:22:48 +0100164 .valid = pxa27x_pm_valid,
Russell Kinge176bb02007-05-15 11:16:10 +0100165};
Nicolas Pitrea8fa3f02005-06-13 22:35:41 +0100166#endif
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
169 * device registration specific to PXA27x.
170 */
171
172static u64 pxa27x_dmamask = 0xffffffffUL;
173
174static struct resource pxa27x_ohci_resources[] = {
175 [0] = {
176 .start = 0x4C000000,
177 .end = 0x4C00ff6f,
178 .flags = IORESOURCE_MEM,
179 },
180 [1] = {
181 .start = IRQ_USBH1,
182 .end = IRQ_USBH1,
183 .flags = IORESOURCE_IRQ,
184 },
185};
186
187static struct platform_device ohci_device = {
188 .name = "pxa27x-ohci",
189 .id = -1,
190 .dev = {
191 .dma_mask = &pxa27x_dmamask,
192 .coherent_dma_mask = 0xffffffff,
193 },
194 .num_resources = ARRAY_SIZE(pxa27x_ohci_resources),
195 .resource = pxa27x_ohci_resources,
196};
197
Richard Purdie81f280e2005-11-12 14:22:11 +0000198void __init pxa_set_ohci_info(struct pxaohci_platform_data *info)
199{
200 ohci_device.dev.platform_data = info;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static struct platform_device *devices[] __initdata = {
204 &ohci_device,
205};
206
Eric Miaocd491042007-06-22 04:14:09 +0100207void __init pxa27x_init_irq(void)
208{
209 pxa_init_irq_low();
210 pxa_init_irq_high();
211 pxa_init_irq_gpio(128);
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214static int __init pxa27x_init(void)
215{
Russell Kinge176bb02007-05-15 11:16:10 +0100216 int ret = 0;
217 if (cpu_is_pxa27x()) {
Eric Miaof53f0662007-06-22 05:40:17 +0100218 if ((ret = pxa_init_dma(32)))
219 return ret;
Russell Kinge176bb02007-05-15 11:16:10 +0100220#ifdef CONFIG_PM
221 pm_set_ops(&pxa27x_pm_ops);
222#endif
223 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
224 }
225 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
228subsys_initcall(pxa27x_init);