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/module.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/delay.h>
17 #include <linux/cpufreq.h>
18 #include <linux/ioport.h>
19 #include <linux/sched.h> /* just for sched_clock() - funny that */
20 #include <linux/platform_device.h>
21 #include <linux/cnt32_to_63.h>
23 #include <asm/div64.h>
24 #include <mach/hardware.h>
25 #include <asm/system.h>
26 #include <asm/pgtable.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/flash.h>
34 unsigned int reset_status
;
35 EXPORT_SYMBOL(reset_status
);
40 * This table is setup for a 3.6864MHz Crystal.
42 static const unsigned short cclk_frequency_100khz
[NR_FREQS
] = {
62 unsigned int sa11x0_freq_to_ppcr(unsigned int khz
)
68 for (i
= 0; i
< NR_FREQS
; i
++)
69 if (cclk_frequency_100khz
[i
] >= khz
)
75 unsigned int sa11x0_ppcr_to_freq(unsigned int idx
)
77 unsigned int freq
= 0;
79 freq
= cclk_frequency_100khz
[idx
] * 100;
84 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
85 * this platform, anyway.
87 int sa11x0_verify_speed(struct cpufreq_policy
*policy
)
93 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
95 /* make sure that at least one frequency is within the policy */
96 tmp
= cclk_frequency_100khz
[sa11x0_freq_to_ppcr(policy
->min
)] * 100;
97 if (tmp
> policy
->max
)
100 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
105 unsigned int sa11x0_getspeed(unsigned int cpu
)
109 return cclk_frequency_100khz
[PPCR
& 0xf] * 100;
113 * This is the SA11x0 sched_clock implementation. This has
114 * a resolution of 271ns, and a maximum value of 32025597s (370 days).
116 * The return value is guaranteed to be monotonic in that range as
117 * long as there is always less than 582 seconds between successive
118 * calls to this function.
120 * ( * 1E9 / 3686400 => * 78125 / 288)
122 unsigned long long sched_clock(void)
124 unsigned long long v
= cnt32_to_63(OSCR
);
126 /* the <<1 gets rid of the cnt_32_to_63 top bit saving on a bic insn */
134 * Default power-off for SA1100
136 static void sa1100_power_off(void)
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.
149 /* enter sleep mode */
153 static void sa11x0_register_device(struct platform_device
*dev
, void *data
)
156 dev
->dev
.platform_data
= data
;
157 err
= platform_device_register(dev
);
159 printk(KERN_ERR
"Unable to register device %s: %d\n",
164 static struct resource sa11x0udc_resources
[] = {
168 .flags
= IORESOURCE_MEM
,
172 static u64 sa11x0udc_dma_mask
= 0xffffffffUL
;
174 static struct platform_device sa11x0udc_device
= {
175 .name
= "sa11x0-udc",
178 .dma_mask
= &sa11x0udc_dma_mask
,
179 .coherent_dma_mask
= 0xffffffff,
181 .num_resources
= ARRAY_SIZE(sa11x0udc_resources
),
182 .resource
= sa11x0udc_resources
,
185 static struct resource sa11x0uart1_resources
[] = {
189 .flags
= IORESOURCE_MEM
,
193 static struct platform_device sa11x0uart1_device
= {
194 .name
= "sa11x0-uart",
196 .num_resources
= ARRAY_SIZE(sa11x0uart1_resources
),
197 .resource
= sa11x0uart1_resources
,
200 static struct resource sa11x0uart3_resources
[] = {
204 .flags
= IORESOURCE_MEM
,
208 static struct platform_device sa11x0uart3_device
= {
209 .name
= "sa11x0-uart",
211 .num_resources
= ARRAY_SIZE(sa11x0uart3_resources
),
212 .resource
= sa11x0uart3_resources
,
215 static struct resource sa11x0mcp_resources
[] = {
219 .flags
= IORESOURCE_MEM
,
223 static u64 sa11x0mcp_dma_mask
= 0xffffffffUL
;
225 static struct platform_device sa11x0mcp_device
= {
226 .name
= "sa11x0-mcp",
229 .dma_mask
= &sa11x0mcp_dma_mask
,
230 .coherent_dma_mask
= 0xffffffff,
232 .num_resources
= ARRAY_SIZE(sa11x0mcp_resources
),
233 .resource
= sa11x0mcp_resources
,
236 void sa11x0_register_mcp(struct mcp_plat_data
*data
)
238 sa11x0_register_device(&sa11x0mcp_device
, data
);
241 static struct resource sa11x0ssp_resources
[] = {
245 .flags
= IORESOURCE_MEM
,
249 static u64 sa11x0ssp_dma_mask
= 0xffffffffUL
;
251 static struct platform_device sa11x0ssp_device
= {
252 .name
= "sa11x0-ssp",
255 .dma_mask
= &sa11x0ssp_dma_mask
,
256 .coherent_dma_mask
= 0xffffffff,
258 .num_resources
= ARRAY_SIZE(sa11x0ssp_resources
),
259 .resource
= sa11x0ssp_resources
,
262 static struct resource sa11x0fb_resources
[] = {
266 .flags
= IORESOURCE_MEM
,
271 .flags
= IORESOURCE_IRQ
,
275 static struct platform_device sa11x0fb_device
= {
279 .coherent_dma_mask
= 0xffffffff,
281 .num_resources
= ARRAY_SIZE(sa11x0fb_resources
),
282 .resource
= sa11x0fb_resources
,
285 static struct platform_device sa11x0pcmcia_device
= {
286 .name
= "sa11x0-pcmcia",
290 static struct platform_device sa11x0mtd_device
= {
291 .name
= "sa1100-mtd",
295 void sa11x0_register_mtd(struct flash_platform_data
*flash
,
296 struct resource
*res
, int nr
)
298 flash
->name
= "sa1100";
299 sa11x0mtd_device
.resource
= res
;
300 sa11x0mtd_device
.num_resources
= nr
;
301 sa11x0_register_device(&sa11x0mtd_device
, flash
);
304 static struct resource sa11x0ir_resources
[] = {
306 .start
= __PREG(Ser2UTCR0
),
307 .end
= __PREG(Ser2UTCR0
) + 0x24 - 1,
308 .flags
= IORESOURCE_MEM
,
310 .start
= __PREG(Ser2HSCR0
),
311 .end
= __PREG(Ser2HSCR0
) + 0x1c - 1,
312 .flags
= IORESOURCE_MEM
,
314 .start
= __PREG(Ser2HSCR2
),
315 .end
= __PREG(Ser2HSCR2
) + 0x04 - 1,
316 .flags
= IORESOURCE_MEM
,
318 .start
= IRQ_Ser2ICP
,
320 .flags
= IORESOURCE_IRQ
,
324 static struct platform_device sa11x0ir_device
= {
327 .num_resources
= ARRAY_SIZE(sa11x0ir_resources
),
328 .resource
= sa11x0ir_resources
,
331 void sa11x0_register_irda(struct irda_platform_data
*irda
)
333 sa11x0_register_device(&sa11x0ir_device
, irda
);
336 static struct platform_device sa11x0rtc_device
= {
337 .name
= "sa1100-rtc",
341 static struct platform_device
*sa11x0_devices
[] __initdata
= {
346 &sa11x0pcmcia_device
,
351 static int __init
sa1100_init(void)
353 pm_power_off
= sa1100_power_off
;
354 return platform_add_devices(sa11x0_devices
, ARRAY_SIZE(sa11x0_devices
));
357 arch_initcall(sa1100_init
);
359 void (*sa1100fb_backlight_power
)(int on
);
360 void (*sa1100fb_lcd_power
)(int on
);
362 EXPORT_SYMBOL(sa1100fb_backlight_power
);
363 EXPORT_SYMBOL(sa1100fb_lcd_power
);
367 * Common I/O mapping:
369 * Typically, static virtual address mappings are as follow:
371 * 0xf0000000-0xf3ffffff: miscellaneous stuff (CPLDs, etc.)
372 * 0xf4000000-0xf4ffffff: SA-1111
373 * 0xf5000000-0xf5ffffff: reserved (used by cache flushing area)
374 * 0xf6000000-0xfffeffff: reserved (internal SA1100 IO defined above)
375 * 0xffff0000-0xffff0fff: SA1100 exception vectors
376 * 0xffff2000-0xffff2fff: Minicache copy_user_page area
378 * Below 0xe8000000 is reserved for vm allocation.
380 * The machine specific code must provide the extra mapping beside the
381 * default mapping provided here.
384 static struct map_desc standard_io_desc
[] __initdata
= {
386 .virtual = 0xf8000000,
387 .pfn
= __phys_to_pfn(0x80000000),
388 .length
= 0x00100000,
391 .virtual = 0xfa000000,
392 .pfn
= __phys_to_pfn(0x90000000),
393 .length
= 0x00100000,
396 .virtual = 0xfc000000,
397 .pfn
= __phys_to_pfn(0xa0000000),
398 .length
= 0x00100000,
401 .virtual = 0xfe000000,
402 .pfn
= __phys_to_pfn(0xb0000000),
403 .length
= 0x00200000,
408 void __init
sa1100_map_io(void)
410 iotable_init(standard_io_desc
, ARRAY_SIZE(standard_io_desc
));
414 * Disable the memory bus request/grant signals on the SA1110 to
415 * ensure that we don't receive spurious memory requests. We set
416 * the MBGNT signal false to ensure the SA1111 doesn't own the
419 void __init
sa1110_mb_disable(void)
423 local_irq_save(flags
);
427 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
429 GAFR
&= ~(GPIO_MBGNT
| GPIO_MBREQ
);
431 local_irq_restore(flags
);
435 * If the system is going to use the SA-1111 DMA engines, set up
436 * the memory bus request/grant pins.
438 void __devinit
sa1110_mb_enable(void)
442 local_irq_save(flags
);
446 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
448 GAFR
|= (GPIO_MBGNT
| GPIO_MBREQ
);
451 local_irq_restore(flags
);