blob: 1407985c8ab0e149f7497a2532710cd137a34214 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "generic.h"
28
29/* Crystal clock: 13MHz */
30#define BASE_CLK 13000000
31
32/*
33 * Get the clock frequency as reflected by CCSR and the turbo flag.
34 * We assume these values have been applied via a fcs.
35 * If info is not 0 we also display the current settings.
36 */
37unsigned int get_clk_frequency_khz( int info)
38{
39 unsigned long ccsr, clkcfg;
40 unsigned int l, L, m, M, n2, N, S;
41 int cccr_a, t, ht, b;
42
43 ccsr = CCSR;
44 cccr_a = CCCR & (1 << 25);
45
46 /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
47 asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
Richard Purdieafe5df22006-02-01 19:25:59 +000048 t = clkcfg & (1 << 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 ht = clkcfg & (1 << 2);
50 b = clkcfg & (1 << 3);
51
52 l = ccsr & 0x1f;
53 n2 = (ccsr>>7) & 0xf;
54 m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
55
56 L = l * BASE_CLK;
57 N = (L * n2) / 2;
58 M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
59 S = (b) ? L : (L/2);
60
61 if (info) {
62 printk( KERN_INFO "Run Mode clock: %d.%02dMHz (*%d)\n",
63 L / 1000000, (L % 1000000) / 10000, l );
64 printk( KERN_INFO "Turbo Mode clock: %d.%02dMHz (*%d.%d, %sactive)\n",
65 N / 1000000, (N % 1000000)/10000, n2 / 2, (n2 % 2)*5,
66 (t) ? "" : "in" );
67 printk( KERN_INFO "Memory clock: %d.%02dMHz (/%d)\n",
68 M / 1000000, (M % 1000000) / 10000, m );
69 printk( KERN_INFO "System bus clock: %d.%02dMHz \n",
70 S / 1000000, (S % 1000000) / 10000 );
71 }
72
73 return (t) ? (N/1000) : (L/1000);
74}
75
76/*
77 * Return the current mem clock frequency in units of 10kHz as
78 * reflected by CCCR[A], B, and L
79 */
80unsigned int get_memclk_frequency_10khz(void)
81{
82 unsigned long ccsr, clkcfg;
83 unsigned int l, L, m, M;
84 int cccr_a, b;
85
86 ccsr = CCSR;
87 cccr_a = CCCR & (1 << 25);
88
89 /* Read clkcfg register: it has turbo, b, half-turbo (and f) */
90 asm( "mrc\tp14, 0, %0, c6, c0, 0" : "=r" (clkcfg) );
91 b = clkcfg & (1 << 3);
92
93 l = ccsr & 0x1f;
94 m = (l <= 10) ? 1 : (l <= 20) ? 2 : 4;
95
96 L = l * BASE_CLK;
97 M = (!cccr_a) ? (L/m) : ((b) ? L : (L/2));
98
99 return (M / 10000);
100}
101
102/*
103 * Return the current LCD clock frequency in units of 10kHz as
104 */
105unsigned int get_lcdclk_frequency_10khz(void)
106{
107 unsigned long ccsr;
108 unsigned int l, L, k, K;
109
110 ccsr = CCSR;
111
112 l = ccsr & 0x1f;
113 k = (l <= 7) ? 1 : (l <= 16) ? 2 : 4;
114
115 L = l * BASE_CLK;
116 K = L / k;
117
118 return (K / 10000);
119}
120
121EXPORT_SYMBOL(get_clk_frequency_khz);
122EXPORT_SYMBOL(get_memclk_frequency_10khz);
123EXPORT_SYMBOL(get_lcdclk_frequency_10khz);
124
Nicolas Pitrea8fa3f02005-06-13 22:35:41 +0100125#ifdef CONFIG_PM
126
Todd Poynor87754202005-06-03 20:52:27 +0100127void pxa_cpu_pm_enter(suspend_state_t state)
128{
129 extern void pxa_cpu_standby(void);
130 extern void pxa_cpu_suspend(unsigned int);
131 extern void pxa_cpu_resume(void);
132
Todd Poynor26705ca2005-07-01 11:27:05 +0100133 if (state == PM_SUSPEND_STANDBY)
Richard Purdie1f750a72007-07-02 10:19:07 +0100134 CKEN = (1 << CKEN_MEMC) | (1 << CKEN_OSTIMER) | (1 << CKEN_LCD) | (1 << CKEN_PWM0);
Todd Poynor26705ca2005-07-01 11:27:05 +0100135 else
Richard Purdie1f750a72007-07-02 10:19:07 +0100136 CKEN = (1 << CKEN_MEMC) | (1 << CKEN_OSTIMER);
Todd Poynor87754202005-06-03 20:52:27 +0100137
138 /* ensure voltage-change sequencer not initiated, which hangs */
139 PCFR &= ~PCFR_FVC;
140
141 /* Clear edge-detect status register. */
142 PEDR = 0xDF12FE1B;
143
144 switch (state) {
Todd Poynor26705ca2005-07-01 11:27:05 +0100145 case PM_SUSPEND_STANDBY:
146 pxa_cpu_standby();
147 break;
Todd Poynor87754202005-06-03 20:52:27 +0100148 case PM_SUSPEND_MEM:
149 /* set resume return address */
150 PSPR = virt_to_phys(pxa_cpu_resume);
Todd Poynor80a18572005-10-28 16:25:01 +0100151 pxa_cpu_suspend(PWRMODE_SLEEP);
Todd Poynor87754202005-06-03 20:52:27 +0100152 break;
153 }
154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Russell King88dfe982007-05-15 11:22:48 +0100156static int pxa27x_pm_valid(suspend_state_t state)
157{
158 return state == PM_SUSPEND_MEM || state == PM_SUSPEND_STANDBY;
159}
160
Russell Kinge176bb02007-05-15 11:16:10 +0100161static struct pm_ops pxa27x_pm_ops = {
Russell Kinge176bb02007-05-15 11:16:10 +0100162 .enter = pxa_pm_enter,
Russell King88dfe982007-05-15 11:22:48 +0100163 .valid = pxa27x_pm_valid,
Russell Kinge176bb02007-05-15 11:16:10 +0100164};
Nicolas Pitrea8fa3f02005-06-13 22:35:41 +0100165#endif
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
168 * device registration specific to PXA27x.
169 */
170
171static u64 pxa27x_dmamask = 0xffffffffUL;
172
173static struct resource pxa27x_ohci_resources[] = {
174 [0] = {
175 .start = 0x4C000000,
176 .end = 0x4C00ff6f,
177 .flags = IORESOURCE_MEM,
178 },
179 [1] = {
180 .start = IRQ_USBH1,
181 .end = IRQ_USBH1,
182 .flags = IORESOURCE_IRQ,
183 },
184};
185
186static struct platform_device ohci_device = {
187 .name = "pxa27x-ohci",
188 .id = -1,
189 .dev = {
190 .dma_mask = &pxa27x_dmamask,
191 .coherent_dma_mask = 0xffffffff,
192 },
193 .num_resources = ARRAY_SIZE(pxa27x_ohci_resources),
194 .resource = pxa27x_ohci_resources,
195};
196
Richard Purdie81f280e2005-11-12 14:22:11 +0000197void __init pxa_set_ohci_info(struct pxaohci_platform_data *info)
198{
199 ohci_device.dev.platform_data = info;
200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static struct platform_device *devices[] __initdata = {
203 &ohci_device,
204};
205
Eric Miaocd491042007-06-22 04:14:09 +0100206void __init pxa27x_init_irq(void)
207{
208 pxa_init_irq_low();
209 pxa_init_irq_high();
210 pxa_init_irq_gpio(128);
211}
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static int __init pxa27x_init(void)
214{
Russell Kinge176bb02007-05-15 11:16:10 +0100215 int ret = 0;
216 if (cpu_is_pxa27x()) {
217#ifdef CONFIG_PM
218 pm_set_ops(&pxa27x_pm_ops);
219#endif
220 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
221 }
222 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225subsys_initcall(pxa27x_init);