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>
22 #include <asm/div64.h>
23 #include <asm/cnt32_to_63.h>
24 #include <asm/hardware.h>
25 #include <asm/system.h>
26 #include <asm/pgtable.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/flash.h>
37 * This table is setup for a 3.6864MHz Crystal.
39 static const unsigned short cclk_frequency_100khz
[NR_FREQS
] = {
58 #if defined(CONFIG_CPU_FREQ_SA1100) || defined(CONFIG_CPU_FREQ_SA1110)
60 unsigned int sa11x0_freq_to_ppcr(unsigned int khz
)
66 for (i
= 0; i
< NR_FREQS
; i
++)
67 if (cclk_frequency_100khz
[i
] >= khz
)
73 unsigned int sa11x0_ppcr_to_freq(unsigned int idx
)
75 unsigned int freq
= 0;
77 freq
= cclk_frequency_100khz
[idx
] * 100;
82 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
83 * this platform, anyway.
85 int sa11x0_verify_speed(struct cpufreq_policy
*policy
)
91 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
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
)
98 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
103 unsigned int sa11x0_getspeed(unsigned int cpu
)
107 return cclk_frequency_100khz
[PPCR
& 0xf] * 100;
112 * We still need to provide this so building without cpufreq works.
114 unsigned int cpufreq_get(unsigned int cpu
)
116 return cclk_frequency_100khz
[PPCR
& 0xf] * 100;
118 EXPORT_SYMBOL(cpufreq_get
);
122 * This is the SA11x0 sched_clock implementation. This has
123 * a resolution of 271ns, and a maximum value of 32025597s (370 days).
125 * The return value is guaranteed to be monotonic in that range as
126 * long as there is always less than 582 seconds between successive
127 * calls to this function.
129 * ( * 1E9 / 3686400 => * 78125 / 288)
131 unsigned long long sched_clock(void)
133 unsigned long long v
= cnt32_to_63(OSCR
);
135 /* the <<1 gets rid of the cnt_32_to_63 top bit saving on a bic insn */
143 * Default power-off for SA1100
145 static void sa1100_power_off(void)
149 /* disable internal oscillator, float CS lines */
150 PCFR
= (PCFR_OPDE
| PCFR_FP
| PCFR_FS
);
151 /* enable wake-up on GPIO0 (Assabet...) */
152 PWER
= GFER
= GRER
= 1;
154 * set scratchpad to zero, just in case it is used as a
155 * restart address by the bootloader.
158 /* enter sleep mode */
162 static struct resource sa11x0udc_resources
[] = {
166 .flags
= IORESOURCE_MEM
,
170 static u64 sa11x0udc_dma_mask
= 0xffffffffUL
;
172 static struct platform_device sa11x0udc_device
= {
173 .name
= "sa11x0-udc",
176 .dma_mask
= &sa11x0udc_dma_mask
,
177 .coherent_dma_mask
= 0xffffffff,
179 .num_resources
= ARRAY_SIZE(sa11x0udc_resources
),
180 .resource
= sa11x0udc_resources
,
183 static struct resource sa11x0uart1_resources
[] = {
187 .flags
= IORESOURCE_MEM
,
191 static struct platform_device sa11x0uart1_device
= {
192 .name
= "sa11x0-uart",
194 .num_resources
= ARRAY_SIZE(sa11x0uart1_resources
),
195 .resource
= sa11x0uart1_resources
,
198 static struct resource sa11x0uart3_resources
[] = {
202 .flags
= IORESOURCE_MEM
,
206 static struct platform_device sa11x0uart3_device
= {
207 .name
= "sa11x0-uart",
209 .num_resources
= ARRAY_SIZE(sa11x0uart3_resources
),
210 .resource
= sa11x0uart3_resources
,
213 static struct resource sa11x0mcp_resources
[] = {
217 .flags
= IORESOURCE_MEM
,
221 static u64 sa11x0mcp_dma_mask
= 0xffffffffUL
;
223 static struct platform_device sa11x0mcp_device
= {
224 .name
= "sa11x0-mcp",
227 .dma_mask
= &sa11x0mcp_dma_mask
,
228 .coherent_dma_mask
= 0xffffffff,
230 .num_resources
= ARRAY_SIZE(sa11x0mcp_resources
),
231 .resource
= sa11x0mcp_resources
,
234 void sa11x0_set_mcp_data(struct mcp_plat_data
*data
)
236 sa11x0mcp_device
.dev
.platform_data
= data
;
239 static struct resource sa11x0ssp_resources
[] = {
243 .flags
= IORESOURCE_MEM
,
247 static u64 sa11x0ssp_dma_mask
= 0xffffffffUL
;
249 static struct platform_device sa11x0ssp_device
= {
250 .name
= "sa11x0-ssp",
253 .dma_mask
= &sa11x0ssp_dma_mask
,
254 .coherent_dma_mask
= 0xffffffff,
256 .num_resources
= ARRAY_SIZE(sa11x0ssp_resources
),
257 .resource
= sa11x0ssp_resources
,
260 static struct resource sa11x0fb_resources
[] = {
264 .flags
= IORESOURCE_MEM
,
269 .flags
= IORESOURCE_IRQ
,
273 static struct platform_device sa11x0fb_device
= {
277 .coherent_dma_mask
= 0xffffffff,
279 .num_resources
= ARRAY_SIZE(sa11x0fb_resources
),
280 .resource
= sa11x0fb_resources
,
283 static struct platform_device sa11x0pcmcia_device
= {
284 .name
= "sa11x0-pcmcia",
288 static struct platform_device sa11x0mtd_device
= {
293 void sa11x0_set_flash_data(struct flash_platform_data
*flash
,
294 struct resource
*res
, int nr
)
296 flash
->name
= "sa1100";
297 sa11x0mtd_device
.dev
.platform_data
= flash
;
298 sa11x0mtd_device
.resource
= res
;
299 sa11x0mtd_device
.num_resources
= nr
;
302 static struct resource sa11x0ir_resources
[] = {
304 .start
= __PREG(Ser2UTCR0
),
305 .end
= __PREG(Ser2UTCR0
) + 0x24 - 1,
306 .flags
= IORESOURCE_MEM
,
308 .start
= __PREG(Ser2HSCR0
),
309 .end
= __PREG(Ser2HSCR0
) + 0x1c - 1,
310 .flags
= IORESOURCE_MEM
,
312 .start
= __PREG(Ser2HSCR2
),
313 .end
= __PREG(Ser2HSCR2
) + 0x04 - 1,
314 .flags
= IORESOURCE_MEM
,
316 .start
= IRQ_Ser2ICP
,
318 .flags
= IORESOURCE_IRQ
,
322 static struct platform_device sa11x0ir_device
= {
325 .num_resources
= ARRAY_SIZE(sa11x0ir_resources
),
326 .resource
= sa11x0ir_resources
,
329 void sa11x0_set_irda_data(struct irda_platform_data
*irda
)
331 sa11x0ir_device
.dev
.platform_data
= irda
;
334 static struct platform_device sa11x0rtc_device
= {
335 .name
= "sa1100-rtc",
339 static struct platform_device
*sa11x0_devices
[] __initdata
= {
345 &sa11x0pcmcia_device
,
351 static int __init
sa1100_init(void)
353 pm_power_off
= sa1100_power_off
;
355 if (sa11x0ir_device
.dev
.platform_data
)
356 platform_device_register(&sa11x0ir_device
);
358 return platform_add_devices(sa11x0_devices
, ARRAY_SIZE(sa11x0_devices
));
361 arch_initcall(sa1100_init
);
363 void (*sa1100fb_backlight_power
)(int on
);
364 void (*sa1100fb_lcd_power
)(int on
);
366 EXPORT_SYMBOL(sa1100fb_backlight_power
);
367 EXPORT_SYMBOL(sa1100fb_lcd_power
);
371 * Common I/O mapping:
373 * Typically, static virtual address mappings are as follow:
375 * 0xf0000000-0xf3ffffff: miscellaneous stuff (CPLDs, etc.)
376 * 0xf4000000-0xf4ffffff: SA-1111
377 * 0xf5000000-0xf5ffffff: reserved (used by cache flushing area)
378 * 0xf6000000-0xfffeffff: reserved (internal SA1100 IO defined above)
379 * 0xffff0000-0xffff0fff: SA1100 exception vectors
380 * 0xffff2000-0xffff2fff: Minicache copy_user_page area
382 * Below 0xe8000000 is reserved for vm allocation.
384 * The machine specific code must provide the extra mapping beside the
385 * default mapping provided here.
388 static struct map_desc standard_io_desc
[] __initdata
= {
390 .virtual = 0xf8000000,
391 .pfn
= __phys_to_pfn(0x80000000),
392 .length
= 0x00100000,
395 .virtual = 0xfa000000,
396 .pfn
= __phys_to_pfn(0x90000000),
397 .length
= 0x00100000,
400 .virtual = 0xfc000000,
401 .pfn
= __phys_to_pfn(0xa0000000),
402 .length
= 0x00100000,
405 .virtual = 0xfe000000,
406 .pfn
= __phys_to_pfn(0xb0000000),
407 .length
= 0x00200000,
412 void __init
sa1100_map_io(void)
414 iotable_init(standard_io_desc
, ARRAY_SIZE(standard_io_desc
));
418 * Disable the memory bus request/grant signals on the SA1110 to
419 * ensure that we don't receive spurious memory requests. We set
420 * the MBGNT signal false to ensure the SA1111 doesn't own the
423 void __init
sa1110_mb_disable(void)
427 local_irq_save(flags
);
431 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
433 GAFR
&= ~(GPIO_MBGNT
| GPIO_MBREQ
);
435 local_irq_restore(flags
);
439 * If the system is going to use the SA-1111 DMA engines, set up
440 * the memory bus request/grant pins.
442 void __devinit
sa1110_mb_enable(void)
446 local_irq_save(flags
);
450 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
452 GAFR
|= (GPIO_MBGNT
| GPIO_MBREQ
);
455 local_irq_restore(flags
);