blob: 4dc0bf90a993567df22489ceff283c4168925e71 [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 */
Russell King2f8163b2011-07-26 10:53:52 +010012#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#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>
Russell Kingd052d1b2005-10-29 19:07:23 +010020#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/div64.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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>
28
29#include "generic.h"
30
Eric Miao04fef222008-07-29 14:26:00 +080031unsigned int reset_status;
32EXPORT_SYMBOL(reset_status);
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define NR_FREQS 16
35
36/*
37 * This table is setup for a 3.6864MHz Crystal.
38 */
39static const unsigned short cclk_frequency_100khz[NR_FREQS] = {
40 590, /* 59.0 MHz */
41 737, /* 73.7 MHz */
Kristoffer Ericsonbda03082008-09-29 17:09:10 +010042 885, /* 88.5 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 1032, /* 103.2 MHz */
44 1180, /* 118.0 MHz */
45 1327, /* 132.7 MHz */
46 1475, /* 147.5 MHz */
47 1622, /* 162.2 MHz */
48 1769, /* 176.9 MHz */
49 1917, /* 191.7 MHz */
50 2064, /* 206.4 MHz */
51 2212, /* 221.2 MHz */
Kristoffer Ericsonbda03082008-09-29 17:09:10 +010052 2359, /* 235.9 MHz */
53 2507, /* 250.7 MHz */
54 2654, /* 265.4 MHz */
55 2802 /* 280.2 MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* rounds up(!) */
59unsigned int sa11x0_freq_to_ppcr(unsigned int khz)
60{
61 int i;
62
63 khz /= 100;
64
65 for (i = 0; i < NR_FREQS; i++)
66 if (cclk_frequency_100khz[i] >= khz)
67 break;
68
69 return i;
70}
71
72unsigned int sa11x0_ppcr_to_freq(unsigned int idx)
73{
74 unsigned int freq = 0;
75 if (idx < NR_FREQS)
76 freq = cclk_frequency_100khz[idx] * 100;
77 return freq;
78}
79
80
81/* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
82 * this platform, anyway.
83 */
84int sa11x0_verify_speed(struct cpufreq_policy *policy)
85{
86 unsigned int tmp;
87 if (policy->cpu)
88 return -EINVAL;
89
90 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
91
92 /* make sure that at least one frequency is within the policy */
93 tmp = cclk_frequency_100khz[sa11x0_freq_to_ppcr(policy->min)] * 100;
94 if (tmp > policy->max)
95 policy->max = tmp;
96
97 cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, policy->cpuinfo.max_freq);
98
99 return 0;
100}
101
102unsigned int sa11x0_getspeed(unsigned int cpu)
103{
104 if (cpu)
105 return 0;
106 return cclk_frequency_100khz[PPCR & 0xf] * 100;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * Default power-off for SA1100
111 */
112static void sa1100_power_off(void)
113{
114 mdelay(100);
115 local_irq_disable();
116 /* disable internal oscillator, float CS lines */
117 PCFR = (PCFR_OPDE | PCFR_FP | PCFR_FS);
118 /* enable wake-up on GPIO0 (Assabet...) */
119 PWER = GFER = GRER = 1;
120 /*
121 * set scratchpad to zero, just in case it is used as a
122 * restart address by the bootloader.
123 */
124 PSPR = 0;
125 /* enter sleep mode */
126 PMCR = PMCR_SF;
127}
128
Russell King7a5b4e12009-10-06 14:55:53 +0100129static void sa11x0_register_device(struct platform_device *dev, void *data)
130{
131 int err;
132 dev->dev.platform_data = data;
133 err = platform_device_register(dev);
134 if (err)
135 printk(KERN_ERR "Unable to register device %s: %d\n",
136 dev->name, err);
137}
138
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140static struct resource sa11x0udc_resources[] = {
141 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100142 .start = __PREG(Ser0UDCCR),
143 .end = __PREG(Ser0UDCCR) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .flags = IORESOURCE_MEM,
145 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100146 [1] = {
147 .start = IRQ_Ser0UDC,
148 .end = IRQ_Ser0UDC,
149 .flags = IORESOURCE_IRQ,
150 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152
153static u64 sa11x0udc_dma_mask = 0xffffffffUL;
154
155static struct platform_device sa11x0udc_device = {
156 .name = "sa11x0-udc",
157 .id = -1,
158 .dev = {
159 .dma_mask = &sa11x0udc_dma_mask,
160 .coherent_dma_mask = 0xffffffff,
161 },
162 .num_resources = ARRAY_SIZE(sa11x0udc_resources),
163 .resource = sa11x0udc_resources,
164};
165
166static struct resource sa11x0uart1_resources[] = {
167 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100168 .start = __PREG(Ser1UTCR0),
169 .end = __PREG(Ser1UTCR0) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .flags = IORESOURCE_MEM,
171 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100172 [1] = {
173 .start = IRQ_Ser1UART,
174 .end = IRQ_Ser1UART,
175 .flags = IORESOURCE_IRQ,
176 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
179static struct platform_device sa11x0uart1_device = {
180 .name = "sa11x0-uart",
181 .id = 1,
182 .num_resources = ARRAY_SIZE(sa11x0uart1_resources),
183 .resource = sa11x0uart1_resources,
184};
185
186static struct resource sa11x0uart3_resources[] = {
187 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100188 .start = __PREG(Ser3UTCR0),
189 .end = __PREG(Ser3UTCR0) + 0xffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .flags = IORESOURCE_MEM,
191 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100192 [1] = {
193 .start = IRQ_Ser3UART,
194 .end = IRQ_Ser3UART,
195 .flags = IORESOURCE_IRQ,
196 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
199static struct platform_device sa11x0uart3_device = {
200 .name = "sa11x0-uart",
201 .id = 3,
202 .num_resources = ARRAY_SIZE(sa11x0uart3_resources),
203 .resource = sa11x0uart3_resources,
204};
205
206static struct resource sa11x0mcp_resources[] = {
207 [0] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100208 .start = __PREG(Ser4MCCR0),
Jochen Friedrichaf9081a2011-11-27 22:00:55 +0100209 .end = __PREG(Ser4MCCR0) + 0x1C - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .flags = IORESOURCE_MEM,
211 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100212 [1] = {
Jochen Friedrichaf9081a2011-11-27 22:00:55 +0100213 .start = __PREG(Ser4MCCR1),
214 .end = __PREG(Ser4MCCR1) + 0x4 - 1,
215 .flags = IORESOURCE_MEM,
216 },
217 [2] = {
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100218 .start = IRQ_Ser4MCP,
219 .end = IRQ_Ser4MCP,
220 .flags = IORESOURCE_IRQ,
221 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
223
224static u64 sa11x0mcp_dma_mask = 0xffffffffUL;
225
226static struct platform_device sa11x0mcp_device = {
227 .name = "sa11x0-mcp",
228 .id = -1,
229 .dev = {
230 .dma_mask = &sa11x0mcp_dma_mask,
231 .coherent_dma_mask = 0xffffffff,
232 },
233 .num_resources = ARRAY_SIZE(sa11x0mcp_resources),
234 .resource = sa11x0mcp_resources,
235};
236
Russell King7a5b4e12009-10-06 14:55:53 +0100237void sa11x0_register_mcp(struct mcp_plat_data *data)
Russell King323cdfc2005-08-18 10:10:46 +0100238{
Russell King7a5b4e12009-10-06 14:55:53 +0100239 sa11x0_register_device(&sa11x0mcp_device, data);
Russell King323cdfc2005-08-18 10:10:46 +0100240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static struct resource sa11x0ssp_resources[] = {
243 [0] = {
244 .start = 0x80070000,
245 .end = 0x8007ffff,
246 .flags = IORESOURCE_MEM,
247 },
Jochen Friedrichcf562b42011-01-03 12:19:00 +0100248 [1] = {
249 .start = IRQ_Ser4SSP,
250 .end = IRQ_Ser4SSP,
251 .flags = IORESOURCE_IRQ,
252 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
255static u64 sa11x0ssp_dma_mask = 0xffffffffUL;
256
257static struct platform_device sa11x0ssp_device = {
258 .name = "sa11x0-ssp",
259 .id = -1,
260 .dev = {
261 .dma_mask = &sa11x0ssp_dma_mask,
262 .coherent_dma_mask = 0xffffffff,
263 },
264 .num_resources = ARRAY_SIZE(sa11x0ssp_resources),
265 .resource = sa11x0ssp_resources,
266};
267
268static struct resource sa11x0fb_resources[] = {
269 [0] = {
270 .start = 0xb0100000,
271 .end = 0xb010ffff,
272 .flags = IORESOURCE_MEM,
273 },
274 [1] = {
275 .start = IRQ_LCD,
276 .end = IRQ_LCD,
277 .flags = IORESOURCE_IRQ,
278 },
279};
280
281static struct platform_device sa11x0fb_device = {
282 .name = "sa11x0-fb",
283 .id = -1,
284 .dev = {
285 .coherent_dma_mask = 0xffffffff,
286 },
287 .num_resources = ARRAY_SIZE(sa11x0fb_resources),
288 .resource = sa11x0fb_resources,
289};
290
291static struct platform_device sa11x0pcmcia_device = {
292 .name = "sa11x0-pcmcia",
293 .id = -1,
294};
295
296static struct platform_device sa11x0mtd_device = {
Uwe Kleine-Königbcc8f3e2009-01-31 01:21:58 +0100297 .name = "sa1100-mtd",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 .id = -1,
299};
300
Russell King7a5b4e12009-10-06 14:55:53 +0100301void sa11x0_register_mtd(struct flash_platform_data *flash,
302 struct resource *res, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Russell King14e66f72005-10-29 16:08:31 +0100304 flash->name = "sa1100";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 sa11x0mtd_device.resource = res;
306 sa11x0mtd_device.num_resources = nr;
Russell King7a5b4e12009-10-06 14:55:53 +0100307 sa11x0_register_device(&sa11x0mtd_device, flash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310static struct resource sa11x0ir_resources[] = {
311 {
312 .start = __PREG(Ser2UTCR0),
313 .end = __PREG(Ser2UTCR0) + 0x24 - 1,
314 .flags = IORESOURCE_MEM,
315 }, {
316 .start = __PREG(Ser2HSCR0),
317 .end = __PREG(Ser2HSCR0) + 0x1c - 1,
318 .flags = IORESOURCE_MEM,
319 }, {
320 .start = __PREG(Ser2HSCR2),
321 .end = __PREG(Ser2HSCR2) + 0x04 - 1,
322 .flags = IORESOURCE_MEM,
323 }, {
324 .start = IRQ_Ser2ICP,
325 .end = IRQ_Ser2ICP,
326 .flags = IORESOURCE_IRQ,
327 }
328};
329
330static struct platform_device sa11x0ir_device = {
331 .name = "sa11x0-ir",
332 .id = -1,
333 .num_resources = ARRAY_SIZE(sa11x0ir_resources),
334 .resource = sa11x0ir_resources,
335};
336
Russell King7a5b4e12009-10-06 14:55:53 +0100337void sa11x0_register_irda(struct irda_platform_data *irda)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Russell King7a5b4e12009-10-06 14:55:53 +0100339 sa11x0_register_device(&sa11x0ir_device, irda);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Richard Purdiee842f1c2006-03-27 01:16:46 -0800342static struct platform_device sa11x0rtc_device = {
343 .name = "sa1100-rtc",
344 .id = -1,
345};
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static struct platform_device *sa11x0_devices[] __initdata = {
348 &sa11x0udc_device,
349 &sa11x0uart1_device,
350 &sa11x0uart3_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 &sa11x0ssp_device,
352 &sa11x0pcmcia_device,
353 &sa11x0fb_device,
Richard Purdiee842f1c2006-03-27 01:16:46 -0800354 &sa11x0rtc_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
357static int __init sa1100_init(void)
358{
359 pm_power_off = sa1100_power_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return platform_add_devices(sa11x0_devices, ARRAY_SIZE(sa11x0_devices));
361}
362
363arch_initcall(sa1100_init);
364
365void (*sa1100fb_backlight_power)(int on);
366void (*sa1100fb_lcd_power)(int on);
367
368EXPORT_SYMBOL(sa1100fb_backlight_power);
369EXPORT_SYMBOL(sa1100fb_lcd_power);
370
371
372/*
373 * Common I/O mapping:
374 *
375 * Typically, static virtual address mappings are as follow:
376 *
377 * 0xf0000000-0xf3ffffff: miscellaneous stuff (CPLDs, etc.)
378 * 0xf4000000-0xf4ffffff: SA-1111
379 * 0xf5000000-0xf5ffffff: reserved (used by cache flushing area)
380 * 0xf6000000-0xfffeffff: reserved (internal SA1100 IO defined above)
381 * 0xffff0000-0xffff0fff: SA1100 exception vectors
382 * 0xffff2000-0xffff2fff: Minicache copy_user_page area
383 *
384 * Below 0xe8000000 is reserved for vm allocation.
385 *
386 * The machine specific code must provide the extra mapping beside the
387 * default mapping provided here.
388 */
389
390static struct map_desc standard_io_desc[] __initdata = {
Kristoffer Ericsonbda03082008-09-29 17:09:10 +0100391 { /* PCM */
Deepak Saxena92519d82005-10-28 15:19:04 +0100392 .virtual = 0xf8000000,
393 .pfn = __phys_to_pfn(0x80000000),
394 .length = 0x00100000,
395 .type = MT_DEVICE
396 }, { /* SCM */
397 .virtual = 0xfa000000,
398 .pfn = __phys_to_pfn(0x90000000),
399 .length = 0x00100000,
400 .type = MT_DEVICE
401 }, { /* MER */
402 .virtual = 0xfc000000,
403 .pfn = __phys_to_pfn(0xa0000000),
404 .length = 0x00100000,
405 .type = MT_DEVICE
406 }, { /* LCD + DMA */
407 .virtual = 0xfe000000,
408 .pfn = __phys_to_pfn(0xb0000000),
409 .length = 0x00200000,
410 .type = MT_DEVICE
411 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412};
413
414void __init sa1100_map_io(void)
415{
416 iotable_init(standard_io_desc, ARRAY_SIZE(standard_io_desc));
417}
418
419/*
420 * Disable the memory bus request/grant signals on the SA1110 to
421 * ensure that we don't receive spurious memory requests. We set
422 * the MBGNT signal false to ensure the SA1111 doesn't own the
423 * SDRAM bus.
424 */
425void __init sa1110_mb_disable(void)
426{
427 unsigned long flags;
428
429 local_irq_save(flags);
430
431 PGSR &= ~GPIO_MBGNT;
432 GPCR = GPIO_MBGNT;
433 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
434
435 GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
436
437 local_irq_restore(flags);
438}
439
440/*
441 * If the system is going to use the SA-1111 DMA engines, set up
442 * the memory bus request/grant pins.
443 */
Kristoffer Ericson85e6c7a2008-02-03 22:08:10 +0100444void __devinit sa1110_mb_enable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 unsigned long flags;
447
448 local_irq_save(flags);
449
450 PGSR &= ~GPIO_MBGNT;
451 GPCR = GPIO_MBGNT;
452 GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
453
454 GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
455 TUCR |= TUCR_MR;
456
457 local_irq_restore(flags);
458}
459