[ARM] Allow MTD device name to be passed via platform data
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-sa1100 / generic.c
blobf94b0fbcdcc86af73db3a3f4091318b620519e16
1 /*
2 * linux/arch/arm/mach-sa1100/generic.c
4 * Author: Nicolas Pitre
6 * Code common to all SA11x0 machines.
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.
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>
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>
29 #include "generic.h"
31 #define NR_FREQS 16
34 * This table is setup for a 3.6864MHz Crystal.
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 */
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)
59 int i;
61 khz /= 100;
63 for (i = 0; i < NR_FREQS; i++)
64 if (cclk_frequency_100khz[i] >= khz)
65 break;
67 return i;
70 unsigned int sa11x0_ppcr_to_freq(unsigned int idx)
72 unsigned int freq = 0;
73 if (idx < NR_FREQS)
74 freq = cclk_frequency_100khz[idx] * 100;
75 return freq;
79 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
80 * this platform, anyway.
82 int sa11x0_verify_speed(struct cpufreq_policy *policy)
84 unsigned int tmp;
85 if (policy->cpu)
86 return -EINVAL;
88 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
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;
95 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
97 return 0;
100 unsigned int sa11x0_getspeed(unsigned int cpu)
102 if (cpu)
103 return 0;
104 return cclk_frequency_100khz[PPCR & 0xf] * 100;
107 #else
109 * We still need to provide this so building without cpufreq works.
111 unsigned int cpufreq_get(unsigned int cpu)
113 return cclk_frequency_100khz[PPCR & 0xf] * 100;
115 EXPORT_SYMBOL(cpufreq_get);
116 #endif
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)
123 unsigned long long sched_clock(void)
125 unsigned long long v;
127 v = (unsigned long long)OSCR * 78125;
128 do_div(v, 288);
130 return v;
134 * Default power-off for SA1100
136 static void sa1100_power_off(void)
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;
145 * set scratchpad to zero, just in case it is used as a
146 * restart address by the bootloader.
148 PSPR = 0;
149 /* enter sleep mode */
150 PMCR = PMCR_SF;
153 static struct resource sa11x0udc_resources[] = {
154 [0] = {
155 .start = 0x80000000,
156 .end = 0x8000ffff,
157 .flags = IORESOURCE_MEM,
161 static u64 sa11x0udc_dma_mask = 0xffffffffUL;
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,
170 .num_resources = ARRAY_SIZE(sa11x0udc_resources),
171 .resource = sa11x0udc_resources,
174 static struct resource sa11x0uart1_resources[] = {
175 [0] = {
176 .start = 0x80010000,
177 .end = 0x8001ffff,
178 .flags = IORESOURCE_MEM,
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,
189 static struct resource sa11x0uart3_resources[] = {
190 [0] = {
191 .start = 0x80050000,
192 .end = 0x8005ffff,
193 .flags = IORESOURCE_MEM,
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,
204 static struct resource sa11x0mcp_resources[] = {
205 [0] = {
206 .start = 0x80060000,
207 .end = 0x8006ffff,
208 .flags = IORESOURCE_MEM,
212 static u64 sa11x0mcp_dma_mask = 0xffffffffUL;
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,
221 .num_resources = ARRAY_SIZE(sa11x0mcp_resources),
222 .resource = sa11x0mcp_resources,
225 void sa11x0_set_mcp_data(struct mcp_plat_data *data)
227 sa11x0mcp_device.dev.platform_data = data;
230 static struct resource sa11x0ssp_resources[] = {
231 [0] = {
232 .start = 0x80070000,
233 .end = 0x8007ffff,
234 .flags = IORESOURCE_MEM,
238 static u64 sa11x0ssp_dma_mask = 0xffffffffUL;
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,
247 .num_resources = ARRAY_SIZE(sa11x0ssp_resources),
248 .resource = sa11x0ssp_resources,
251 static struct resource sa11x0fb_resources[] = {
252 [0] = {
253 .start = 0xb0100000,
254 .end = 0xb010ffff,
255 .flags = IORESOURCE_MEM,
257 [1] = {
258 .start = IRQ_LCD,
259 .end = IRQ_LCD,
260 .flags = IORESOURCE_IRQ,
264 static struct platform_device sa11x0fb_device = {
265 .name = "sa11x0-fb",
266 .id = -1,
267 .dev = {
268 .coherent_dma_mask = 0xffffffff,
270 .num_resources = ARRAY_SIZE(sa11x0fb_resources),
271 .resource = sa11x0fb_resources,
274 static struct platform_device sa11x0pcmcia_device = {
275 .name = "sa11x0-pcmcia",
276 .id = -1,
279 static struct platform_device sa11x0mtd_device = {
280 .name = "flash",
281 .id = -1,
284 void sa11x0_set_flash_data(struct flash_platform_data *flash,
285 struct resource *res, int nr)
287 flash->name = "sa1100";
288 sa11x0mtd_device.dev.platform_data = flash;
289 sa11x0mtd_device.resource = res;
290 sa11x0mtd_device.num_resources = nr;
293 static struct resource sa11x0ir_resources[] = {
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,
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,
320 void sa11x0_set_irda_data(struct irda_platform_data *irda)
322 sa11x0ir_device.dev.platform_data = irda;
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,
336 static int __init sa1100_init(void)
338 pm_power_off = sa1100_power_off;
340 if (sa11x0ir_device.dev.platform_data)
341 platform_device_register(&sa11x0ir_device);
343 return platform_add_devices(sa11x0_devices, ARRAY_SIZE(sa11x0_devices));
346 arch_initcall(sa1100_init);
348 void (*sa1100fb_backlight_power)(int on);
349 void (*sa1100fb_lcd_power)(int on);
351 EXPORT_SYMBOL(sa1100fb_backlight_power);
352 EXPORT_SYMBOL(sa1100fb_lcd_power);
356 * Common I/O mapping:
358 * Typically, static virtual address mappings are as follow:
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
367 * Below 0xe8000000 is reserved for vm allocation.
369 * The machine specific code must provide the extra mapping beside the
370 * default mapping provided here.
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
397 void __init sa1100_map_io(void)
399 iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
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.
408 void __init sa1110_mb_disable(void)
410 unsigned long flags;
412 local_irq_save(flags);
414 PGSR &= ~GPIO_MBGNT;
415 GPCR = GPIO_MBGNT;
416 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
418 GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
420 local_irq_restore(flags);
424 * If the system is going to use the SA-1111 DMA engines, set up
425 * the memory bus request/grant pins.
427 void __init sa1110_mb_enable(void)
429 unsigned long flags;
431 local_irq_save(flags);
433 PGSR &= ~GPIO_MBGNT;
434 GPCR = GPIO_MBGNT;
435 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
437 GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
438 TUCR |= TUCR_MR;
440 local_irq_restore(flags);