Merge branch 'upstream'
[pandora-kernel.git] / arch / arm / mach-sa1100 / generic.c
1 /*
2  * linux/arch/arm/mach-sa1100/generic.c
3  *
4  * Author: Nicolas Pitre
5  *
6  * Code common to all SA11x0 machines.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12 #include <linux/config.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/pm.h>
18 #include <linux/cpufreq.h>
19 #include <linux/ioport.h>
20
21 #include <asm/div64.h>
22 #include <asm/hardware.h>
23 #include <asm/system.h>
24 #include <asm/pgtable.h>
25 #include <asm/mach/map.h>
26 #include <asm/mach/flash.h>
27 #include <asm/irq.h>
28
29 #include "generic.h"
30
31 #define NR_FREQS        16
32
33 /*
34  * This table is setup for a 3.6864MHz Crystal.
35  */
36 static const unsigned short cclk_frequency_100khz[NR_FREQS] = {
37          590,   /*  59.0 MHz */
38          737,   /*  73.7 MHz */
39          885,   /*  88.5 MHz */
40         1032,   /* 103.2 MHz */
41         1180,   /* 118.0 MHz */
42         1327,   /* 132.7 MHz */
43         1475,   /* 147.5 MHz */
44         1622,   /* 162.2 MHz */
45         1769,   /* 176.9 MHz */
46         1917,   /* 191.7 MHz */
47         2064,   /* 206.4 MHz */
48         2212,   /* 221.2 MHz */
49         2359,   /* 235.9 MHz */
50         2507,   /* 250.7 MHz */
51         2654,   /* 265.4 MHz */
52         2802    /* 280.2 MHz */
53 };
54
55 #if defined(CONFIG_CPU_FREQ_SA1100) || defined(CONFIG_CPU_FREQ_SA1110)
56 /* rounds up(!)  */
57 unsigned int sa11x0_freq_to_ppcr(unsigned int khz)
58 {
59         int i;
60
61         khz /= 100;
62
63         for (i = 0; i < NR_FREQS; i++)
64                 if (cclk_frequency_100khz[i] >= khz)
65                         break;
66
67         return i;
68 }
69
70 unsigned int sa11x0_ppcr_to_freq(unsigned int idx)
71 {
72         unsigned int freq = 0;
73         if (idx < NR_FREQS)
74                 freq = cclk_frequency_100khz[idx] * 100;
75         return freq;
76 }
77
78
79 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
80  * this platform, anyway.
81  */
82 int sa11x0_verify_speed(struct cpufreq_policy *policy)
83 {
84         unsigned int tmp;
85         if (policy->cpu)
86                 return -EINVAL;
87
88         cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
89
90         /* make sure that at least one frequency is within the policy */
91         tmp = cclk_frequency_100khz[sa11x0_freq_to_ppcr(policy->min)] * 100;
92         if (tmp > policy->max)
93                 policy->max = tmp;
94
95         cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
96
97         return 0;
98 }
99
100 unsigned int sa11x0_getspeed(unsigned int cpu)
101 {
102         if (cpu)
103                 return 0;
104         return cclk_frequency_100khz[PPCR & 0xf] * 100;
105 }
106
107 #else
108 /*
109  * We still need to provide this so building without cpufreq works.
110  */ 
111 unsigned int cpufreq_get(unsigned int cpu)
112 {
113         return cclk_frequency_100khz[PPCR & 0xf] * 100;
114 }
115 EXPORT_SYMBOL(cpufreq_get);
116 #endif
117
118 /*
119  * This is the SA11x0 sched_clock implementation.  This has
120  * a resolution of 271ns, and a maximum value of 1165s.
121  *  ( * 1E9 / 3686400 => * 78125 / 288)
122  */
123 unsigned long long sched_clock(void)
124 {
125         unsigned long long v;
126
127         v = (unsigned long long)OSCR * 78125;
128         do_div(v, 288);
129
130         return v;
131 }
132
133 /*
134  * Default power-off for SA1100
135  */
136 static void sa1100_power_off(void)
137 {
138         mdelay(100);
139         local_irq_disable();
140         /* disable internal oscillator, float CS lines */
141         PCFR = (PCFR_OPDE | PCFR_FP | PCFR_FS);
142         /* enable wake-up on GPIO0 (Assabet...) */
143         PWER = GFER = GRER = 1;
144         /*
145          * set scratchpad to zero, just in case it is used as a
146          * restart address by the bootloader.
147          */
148         PSPR = 0;
149         /* enter sleep mode */
150         PMCR = PMCR_SF;
151 }
152
153 static struct resource sa11x0udc_resources[] = {
154         [0] = {
155                 .start  = 0x80000000,
156                 .end    = 0x8000ffff,
157                 .flags  = IORESOURCE_MEM,
158         },
159 };
160
161 static u64 sa11x0udc_dma_mask = 0xffffffffUL;
162
163 static struct platform_device sa11x0udc_device = {
164         .name           = "sa11x0-udc",
165         .id             = -1,
166         .dev            = {
167                 .dma_mask = &sa11x0udc_dma_mask,
168                 .coherent_dma_mask = 0xffffffff,
169         },
170         .num_resources  = ARRAY_SIZE(sa11x0udc_resources),
171         .resource       = sa11x0udc_resources,
172 };
173
174 static struct resource sa11x0uart1_resources[] = {
175         [0] = {
176                 .start  = 0x80010000,
177                 .end    = 0x8001ffff,
178                 .flags  = IORESOURCE_MEM,
179         },
180 };
181
182 static struct platform_device sa11x0uart1_device = {
183         .name           = "sa11x0-uart",
184         .id             = 1,
185         .num_resources  = ARRAY_SIZE(sa11x0uart1_resources),
186         .resource       = sa11x0uart1_resources,
187 };
188
189 static struct resource sa11x0uart3_resources[] = {
190         [0] = {
191                 .start  = 0x80050000,
192                 .end    = 0x8005ffff,
193                 .flags  = IORESOURCE_MEM,
194         },
195 };
196
197 static struct platform_device sa11x0uart3_device = {
198         .name           = "sa11x0-uart",
199         .id             = 3,
200         .num_resources  = ARRAY_SIZE(sa11x0uart3_resources),
201         .resource       = sa11x0uart3_resources,
202 };
203
204 static struct resource sa11x0mcp_resources[] = {
205         [0] = {
206                 .start  = 0x80060000,
207                 .end    = 0x8006ffff,
208                 .flags  = IORESOURCE_MEM,
209         },
210 };
211
212 static u64 sa11x0mcp_dma_mask = 0xffffffffUL;
213
214 static struct platform_device sa11x0mcp_device = {
215         .name           = "sa11x0-mcp",
216         .id             = -1,
217         .dev = {
218                 .dma_mask = &sa11x0mcp_dma_mask,
219                 .coherent_dma_mask = 0xffffffff,
220         },
221         .num_resources  = ARRAY_SIZE(sa11x0mcp_resources),
222         .resource       = sa11x0mcp_resources,
223 };
224
225 void sa11x0_set_mcp_data(struct mcp_plat_data *data)
226 {
227         sa11x0mcp_device.dev.platform_data = data;
228 }
229
230 static struct resource sa11x0ssp_resources[] = {
231         [0] = {
232                 .start  = 0x80070000,
233                 .end    = 0x8007ffff,
234                 .flags  = IORESOURCE_MEM,
235         },
236 };
237
238 static u64 sa11x0ssp_dma_mask = 0xffffffffUL;
239
240 static struct platform_device sa11x0ssp_device = {
241         .name           = "sa11x0-ssp",
242         .id             = -1,
243         .dev = {
244                 .dma_mask = &sa11x0ssp_dma_mask,
245                 .coherent_dma_mask = 0xffffffff,
246         },
247         .num_resources  = ARRAY_SIZE(sa11x0ssp_resources),
248         .resource       = sa11x0ssp_resources,
249 };
250
251 static struct resource sa11x0fb_resources[] = {
252         [0] = {
253                 .start  = 0xb0100000,
254                 .end    = 0xb010ffff,
255                 .flags  = IORESOURCE_MEM,
256         },
257         [1] = {
258                 .start  = IRQ_LCD,
259                 .end    = IRQ_LCD,
260                 .flags  = IORESOURCE_IRQ,
261         },
262 };
263
264 static struct platform_device sa11x0fb_device = {
265         .name           = "sa11x0-fb",
266         .id             = -1,
267         .dev = {
268                 .coherent_dma_mask = 0xffffffff,
269         },
270         .num_resources  = ARRAY_SIZE(sa11x0fb_resources),
271         .resource       = sa11x0fb_resources,
272 };
273
274 static struct platform_device sa11x0pcmcia_device = {
275         .name           = "sa11x0-pcmcia",
276         .id             = -1,
277 };
278
279 static struct platform_device sa11x0mtd_device = {
280         .name           = "flash",
281         .id             = -1,
282 };
283
284 void sa11x0_set_flash_data(struct flash_platform_data *flash,
285                            struct resource *res, int nr)
286 {
287         flash->name = "sa1100";
288         sa11x0mtd_device.dev.platform_data = flash;
289         sa11x0mtd_device.resource = res;
290         sa11x0mtd_device.num_resources = nr;
291 }
292
293 static struct resource sa11x0ir_resources[] = {
294         {
295                 .start  = __PREG(Ser2UTCR0),
296                 .end    = __PREG(Ser2UTCR0) + 0x24 - 1,
297                 .flags  = IORESOURCE_MEM,
298         }, {
299                 .start  = __PREG(Ser2HSCR0),
300                 .end    = __PREG(Ser2HSCR0) + 0x1c - 1,
301                 .flags  = IORESOURCE_MEM,
302         }, {
303                 .start  = __PREG(Ser2HSCR2),
304                 .end    = __PREG(Ser2HSCR2) + 0x04 - 1,
305                 .flags  = IORESOURCE_MEM,
306         }, {
307                 .start  = IRQ_Ser2ICP,
308                 .end    = IRQ_Ser2ICP,
309                 .flags  = IORESOURCE_IRQ,
310         }
311 };
312
313 static struct platform_device sa11x0ir_device = {
314         .name           = "sa11x0-ir",
315         .id             = -1,
316         .num_resources  = ARRAY_SIZE(sa11x0ir_resources),
317         .resource       = sa11x0ir_resources,
318 };
319
320 void sa11x0_set_irda_data(struct irda_platform_data *irda)
321 {
322         sa11x0ir_device.dev.platform_data = irda;
323 }
324
325 static struct platform_device *sa11x0_devices[] __initdata = {
326         &sa11x0udc_device,
327         &sa11x0uart1_device,
328         &sa11x0uart3_device,
329         &sa11x0mcp_device,
330         &sa11x0ssp_device,
331         &sa11x0pcmcia_device,
332         &sa11x0fb_device,
333         &sa11x0mtd_device,
334 };
335
336 static int __init sa1100_init(void)
337 {
338         pm_power_off = sa1100_power_off;
339
340         if (sa11x0ir_device.dev.platform_data)
341                 platform_device_register(&sa11x0ir_device);
342
343         return platform_add_devices(sa11x0_devices, ARRAY_SIZE(sa11x0_devices));
344 }
345
346 arch_initcall(sa1100_init);
347
348 void (*sa1100fb_backlight_power)(int on);
349 void (*sa1100fb_lcd_power)(int on);
350
351 EXPORT_SYMBOL(sa1100fb_backlight_power);
352 EXPORT_SYMBOL(sa1100fb_lcd_power);
353
354
355 /*
356  * Common I/O mapping:
357  *
358  * Typically, static virtual address mappings are as follow:
359  *
360  * 0xf0000000-0xf3ffffff:       miscellaneous stuff (CPLDs, etc.)
361  * 0xf4000000-0xf4ffffff:       SA-1111
362  * 0xf5000000-0xf5ffffff:       reserved (used by cache flushing area)
363  * 0xf6000000-0xfffeffff:       reserved (internal SA1100 IO defined above)
364  * 0xffff0000-0xffff0fff:       SA1100 exception vectors
365  * 0xffff2000-0xffff2fff:       Minicache copy_user_page area
366  *
367  * Below 0xe8000000 is reserved for vm allocation.
368  *
369  * The machine specific code must provide the extra mapping beside the
370  * default mapping provided here.
371  */
372
373 static struct map_desc standard_io_desc[] __initdata = {
374         {       /* PCM */
375                 .virtual        =  0xf8000000,
376                 .pfn            = __phys_to_pfn(0x80000000),
377                 .length         = 0x00100000,
378                 .type           = MT_DEVICE
379         }, {    /* SCM */
380                 .virtual        =  0xfa000000,
381                 .pfn            = __phys_to_pfn(0x90000000),
382                 .length         = 0x00100000,
383                 .type           = MT_DEVICE
384         }, {    /* MER */
385                 .virtual        =  0xfc000000,
386                 .pfn            = __phys_to_pfn(0xa0000000),
387                 .length         = 0x00100000,
388                 .type           = MT_DEVICE
389         }, {    /* LCD + DMA */
390                 .virtual        =  0xfe000000,
391                 .pfn            = __phys_to_pfn(0xb0000000),
392                 .length         = 0x00200000,
393                 .type           = MT_DEVICE
394         },
395 };
396
397 void __init sa1100_map_io(void)
398 {
399         iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
400 }
401
402 /*
403  * Disable the memory bus request/grant signals on the SA1110 to
404  * ensure that we don't receive spurious memory requests.  We set
405  * the MBGNT signal false to ensure the SA1111 doesn't own the
406  * SDRAM bus.
407  */
408 void __init sa1110_mb_disable(void)
409 {
410         unsigned long flags;
411
412         local_irq_save(flags);
413         
414         PGSR &= ~GPIO_MBGNT;
415         GPCR = GPIO_MBGNT;
416         GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
417
418         GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
419
420         local_irq_restore(flags);
421 }
422
423 /*
424  * If the system is going to use the SA-1111 DMA engines, set up
425  * the memory bus request/grant pins.
426  */
427 void __init sa1110_mb_enable(void)
428 {
429         unsigned long flags;
430
431         local_irq_save(flags);
432
433         PGSR &= ~GPIO_MBGNT;
434         GPCR = GPIO_MBGNT;
435         GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
436
437         GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
438         TUCR |= TUCR_MR;
439
440         local_irq_restore(flags);
441 }
442