blob: 59d14f0fdcf8d1af2c5d5f837cc70bba37be99f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/delay.h>
16#include <linux/pm.h>
17#include <linux/cpufreq.h>
18#include <linux/ioport.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010019#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/div64.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/system.h>
24#include <asm/pgtable.h>
25#include <asm/mach/map.h>
Russell King14e66f72005-10-29 16:08:31 +010026#include <asm/mach/flash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/irq.h>
David Brownellaeb3f6d2007-03-18 01:26:13 -080028#include <asm/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include "generic.h"
31
Eric Miao04fef222008-07-29 14:26:00 +080032unsigned int reset_status;
33EXPORT_SYMBOL(reset_status);
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define NR_FREQS 16
36
37/*
38 * This table is setup for a 3.6864MHz Crystal.
39 */
40static const unsigned short cclk_frequency_100khz[NR_FREQS] = {
41 590, /* 59.0 MHz */
42 737, /* 73.7 MHz */
Kristoffer Ericsonbda03082008-09-29 17:09:10 +010043 885, /* 88.5 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 1032, /* 103.2 MHz */
45 1180, /* 118.0 MHz */
46 1327, /* 132.7 MHz */
47 1475, /* 147.5 MHz */
48 1622, /* 162.2 MHz */
49 1769, /* 176.9 MHz */
50 1917, /* 191.7 MHz */
51 2064, /* 206.4 MHz */
52 2212, /* 221.2 MHz */
Kristoffer Ericsonbda03082008-09-29 17:09:10 +010053 2359, /* 235.9 MHz */
54 2507, /* 250.7 MHz */
55 2654, /* 265.4 MHz */
56 2802 /* 280.2 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* rounds up(!) */
60unsigned int sa11x0_freq_to_ppcr(unsigned int khz)
61{
62 int i;
63
64 khz /= 100;
65
66 for (i = 0; i < NR_FREQS; i++)
67 if (cclk_frequency_100khz[i] >= khz)
68 break;
69
70 return i;
71}
72
73unsigned int sa11x0_ppcr_to_freq(unsigned int idx)
74{
75 unsigned int freq = 0;
76 if (idx < NR_FREQS)
77 freq = cclk_frequency_100khz[idx] * 100;
78 return freq;
79}
80
81
82/* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
83 * this platform, anyway.
84 */
85int sa11x0_verify_speed(struct cpufreq_policy *policy)
86{
87 unsigned int tmp;
88 if (policy->cpu)
89 return -EINVAL;
90
91 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
92
93 /* make sure that at least one frequency is within the policy */
94 tmp = cclk_frequency_100khz[sa11x0_freq_to_ppcr(policy->min)] * 100;
95 if (tmp > policy->max)
96 policy->max = tmp;
97
98 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
99
100 return 0;
101}
102
103unsigned int sa11x0_getspeed(unsigned int cpu)
104{
105 if (cpu)
106 return 0;
107 return cclk_frequency_100khz[PPCR & 0xf] * 100;
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * Default power-off for SA1100
112 */
113static void sa1100_power_off(void)
114{
115 mdelay(100);
116 local_irq_disable();
117 /* disable internal oscillator, float CS lines */
118 PCFR = (PCFR_OPDE | PCFR_FP | PCFR_FS);
119 /* enable wake-up on GPIO0 (Assabet...) */
120 PWER = GFER = GRER = 1;
121 /*
122 * set scratchpad to zero, just in case it is used as a
123 * restart address by the bootloader.
124 */
125 PSPR = 0;
126 /* enter sleep mode */
127 PMCR = PMCR_SF;
128}
129
Russell King7a5b4e12009-10-06 14:55:53 +0100130static void sa11x0_register_device(struct platform_device *dev, void *data)
131{
132 int err;
133 dev->dev.platform_data = data;
134 err = platform_device_register(dev);
135 if (err)
136 printk(KERN_ERR "Unable to register device %s: %d\n",
137 dev->name, err);
138}
139
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static struct resource sa11x0udc_resources[] = {
142 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100143 .start = __PREG(Ser0UDCCR),
144 .end = __PREG(Ser0UDCCR) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 .flags = IORESOURCE_MEM,
146 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100147 [1] = {
148 .start = IRQ_Ser0UDC,
149 .end = IRQ_Ser0UDC,
150 .flags = IORESOURCE_IRQ,
151 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154static u64 sa11x0udc_dma_mask = 0xffffffffUL;
155
156static struct platform_device sa11x0udc_device = {
157 .name = "sa11x0-udc",
158 .id = -1,
159 .dev = {
160 .dma_mask = &sa11x0udc_dma_mask,
161 .coherent_dma_mask = 0xffffffff,
162 },
163 .num_resources = ARRAY_SIZE(sa11x0udc_resources),
164 .resource = sa11x0udc_resources,
165};
166
167static struct resource sa11x0uart1_resources[] = {
168 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100169 .start = __PREG(Ser1UTCR0),
170 .end = __PREG(Ser1UTCR0) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 .flags = IORESOURCE_MEM,
172 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100173 [1] = {
174 .start = IRQ_Ser1UART,
175 .end = IRQ_Ser1UART,
176 .flags = IORESOURCE_IRQ,
177 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
180static struct platform_device sa11x0uart1_device = {
181 .name = "sa11x0-uart",
182 .id = 1,
183 .num_resources = ARRAY_SIZE(sa11x0uart1_resources),
184 .resource = sa11x0uart1_resources,
185};
186
187static struct resource sa11x0uart3_resources[] = {
188 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100189 .start = __PREG(Ser3UTCR0),
190 .end = __PREG(Ser3UTCR0) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 .flags = IORESOURCE_MEM,
192 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100193 [1] = {
194 .start = IRQ_Ser3UART,
195 .end = IRQ_Ser3UART,
196 .flags = IORESOURCE_IRQ,
197 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200static struct platform_device sa11x0uart3_device = {
201 .name = "sa11x0-uart",
202 .id = 3,
203 .num_resources = ARRAY_SIZE(sa11x0uart3_resources),
204 .resource = sa11x0uart3_resources,
205};
206
207static struct resource sa11x0mcp_resources[] = {
208 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100209 .start = __PREG(Ser4MCCR0),
210 .end = __PREG(Ser4MCCR0) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 .flags = IORESOURCE_MEM,
212 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100213 [1] = {
214 .start = IRQ_Ser4MCP,
215 .end = IRQ_Ser4MCP,
216 .flags = IORESOURCE_IRQ,
217 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
220static u64 sa11x0mcp_dma_mask = 0xffffffffUL;
221
222static struct platform_device sa11x0mcp_device = {
223 .name = "sa11x0-mcp",
224 .id = -1,
225 .dev = {
226 .dma_mask = &sa11x0mcp_dma_mask,
227 .coherent_dma_mask = 0xffffffff,
228 },
229 .num_resources = ARRAY_SIZE(sa11x0mcp_resources),
230 .resource = sa11x0mcp_resources,
231};
232
Russell King7a5b4e12009-10-06 14:55:53 +0100233void sa11x0_register_mcp(struct mcp_plat_data *data)
Russell King323cdfc2005-08-18 10:10:46 +0100234{
Russell King7a5b4e12009-10-06 14:55:53 +0100235 sa11x0_register_device(&sa11x0mcp_device, data);
Russell King323cdfc2005-08-18 10:10:46 +0100236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static struct resource sa11x0ssp_resources[] = {
239 [0] = {
240 .start = 0x80070000,
241 .end = 0x8007ffff,
242 .flags = IORESOURCE_MEM,
243 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100244 [1] = {
245 .start = IRQ_Ser4SSP,
246 .end = IRQ_Ser4SSP,
247 .flags = IORESOURCE_IRQ,
248 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
251static u64 sa11x0ssp_dma_mask = 0xffffffffUL;
252
253static struct platform_device sa11x0ssp_device = {
254 .name = "sa11x0-ssp",
255 .id = -1,
256 .dev = {
257 .dma_mask = &sa11x0ssp_dma_mask,
258 .coherent_dma_mask = 0xffffffff,
259 },
260 .num_resources = ARRAY_SIZE(sa11x0ssp_resources),
261 .resource = sa11x0ssp_resources,
262};
263
264static struct resource sa11x0fb_resources[] = {
265 [0] = {
266 .start = 0xb0100000,
267 .end = 0xb010ffff,
268 .flags = IORESOURCE_MEM,
269 },
270 [1] = {
271 .start = IRQ_LCD,
272 .end = IRQ_LCD,
273 .flags = IORESOURCE_IRQ,
274 },
275};
276
277static struct platform_device sa11x0fb_device = {
278 .name = "sa11x0-fb",
279 .id = -1,
280 .dev = {
281 .coherent_dma_mask = 0xffffffff,
282 },
283 .num_resources = ARRAY_SIZE(sa11x0fb_resources),
284 .resource = sa11x0fb_resources,
285};
286
287static struct platform_device sa11x0pcmcia_device = {
288 .name = "sa11x0-pcmcia",
289 .id = -1,
290};
291
292static struct platform_device sa11x0mtd_device = {
Uwe Kleine-Königbcc8f3e2009-01-31 01:21:58 +0100293 .name = "sa1100-mtd",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .id = -1,
295};
296
Russell King7a5b4e12009-10-06 14:55:53 +0100297void sa11x0_register_mtd(struct flash_platform_data *flash,
298 struct resource *res, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Russell King14e66f72005-10-29 16:08:31 +0100300 flash->name = "sa1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sa11x0mtd_device.resource = res;
302 sa11x0mtd_device.num_resources = nr;
Russell King7a5b4e12009-10-06 14:55:53 +0100303 sa11x0_register_device(&sa11x0mtd_device, flash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306static struct resource sa11x0ir_resources[] = {
307 {
308 .start = __PREG(Ser2UTCR0),
309 .end = __PREG(Ser2UTCR0) + 0x24 - 1,
310 .flags = IORESOURCE_MEM,
311 }, {
312 .start = __PREG(Ser2HSCR0),
313 .end = __PREG(Ser2HSCR0) + 0x1c - 1,
314 .flags = IORESOURCE_MEM,
315 }, {
316 .start = __PREG(Ser2HSCR2),
317 .end = __PREG(Ser2HSCR2) + 0x04 - 1,
318 .flags = IORESOURCE_MEM,
319 }, {
320 .start = IRQ_Ser2ICP,
321 .end = IRQ_Ser2ICP,
322 .flags = IORESOURCE_IRQ,
323 }
324};
325
326static struct platform_device sa11x0ir_device = {
327 .name = "sa11x0-ir",
328 .id = -1,
329 .num_resources = ARRAY_SIZE(sa11x0ir_resources),
330 .resource = sa11x0ir_resources,
331};
332
Russell King7a5b4e12009-10-06 14:55:53 +0100333void sa11x0_register_irda(struct irda_platform_data *irda)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Russell King7a5b4e12009-10-06 14:55:53 +0100335 sa11x0_register_device(&sa11x0ir_device, irda);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Richard Purdiee842f1c2006-03-27 01:16:46 -0800338static struct platform_device sa11x0rtc_device = {
339 .name = "sa1100-rtc",
340 .id = -1,
341};
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static struct platform_device *sa11x0_devices[] __initdata = {
344 &sa11x0udc_device,
345 &sa11x0uart1_device,
346 &sa11x0uart3_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 &sa11x0ssp_device,
348 &sa11x0pcmcia_device,
349 &sa11x0fb_device,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800350 &sa11x0rtc_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351};
352
353static int __init sa1100_init(void)
354{
355 pm_power_off = sa1100_power_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return platform_add_devices(sa11x0_devices, ARRAY_SIZE(sa11x0_devices));
357}
358
359arch_initcall(sa1100_init);
360
361void (*sa1100fb_backlight_power)(int on);
362void (*sa1100fb_lcd_power)(int on);
363
364EXPORT_SYMBOL(sa1100fb_backlight_power);
365EXPORT_SYMBOL(sa1100fb_lcd_power);
366
367
368/*
369 * Common I/O mapping:
370 *
371 * Typically, static virtual address mappings are as follow:
372 *
373 * 0xf0000000-0xf3ffffff: miscellaneous stuff (CPLDs, etc.)
374 * 0xf4000000-0xf4ffffff: SA-1111
375 * 0xf5000000-0xf5ffffff: reserved (used by cache flushing area)
376 * 0xf6000000-0xfffeffff: reserved (internal SA1100 IO defined above)
377 * 0xffff0000-0xffff0fff: SA1100 exception vectors
378 * 0xffff2000-0xffff2fff: Minicache copy_user_page area
379 *
380 * Below 0xe8000000 is reserved for vm allocation.
381 *
382 * The machine specific code must provide the extra mapping beside the
383 * default mapping provided here.
384 */
385
386static struct map_desc standard_io_desc[] __initdata = {
Kristoffer Ericsonbda03082008-09-29 17:09:10 +0100387 { /* PCM */
Deepak Saxena92519d82005-10-28 15:19:04 +0100388 .virtual = 0xf8000000,
389 .pfn = __phys_to_pfn(0x80000000),
390 .length = 0x00100000,
391 .type = MT_DEVICE
392 }, { /* SCM */
393 .virtual = 0xfa000000,
394 .pfn = __phys_to_pfn(0x90000000),
395 .length = 0x00100000,
396 .type = MT_DEVICE
397 }, { /* MER */
398 .virtual = 0xfc000000,
399 .pfn = __phys_to_pfn(0xa0000000),
400 .length = 0x00100000,
401 .type = MT_DEVICE
402 }, { /* LCD + DMA */
403 .virtual = 0xfe000000,
404 .pfn = __phys_to_pfn(0xb0000000),
405 .length = 0x00200000,
406 .type = MT_DEVICE
407 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
410void __init sa1100_map_io(void)
411{
412 iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
413}
414
415/*
416 * Disable the memory bus request/grant signals on the SA1110 to
417 * ensure that we don't receive spurious memory requests. We set
418 * the MBGNT signal false to ensure the SA1111 doesn't own the
419 * SDRAM bus.
420 */
421void __init sa1110_mb_disable(void)
422{
423 unsigned long flags;
424
425 local_irq_save(flags);
426
427 PGSR &= ~GPIO_MBGNT;
428 GPCR = GPIO_MBGNT;
429 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
430
431 GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
432
433 local_irq_restore(flags);
434}
435
436/*
437 * If the system is going to use the SA-1111 DMA engines, set up
438 * the memory bus request/grant pins.
439 */
Kristoffer Ericson85e6c7a2008-02-03 22:08:10 +0100440void __devinit sa1110_mb_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 unsigned long flags;
443
444 local_irq_save(flags);
445
446 PGSR &= ~GPIO_MBGNT;
447 GPCR = GPIO_MBGNT;
448 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
449
450 GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
451 TUCR |= TUCR_MR;
452
453 local_irq_restore(flags);
454}
455