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/gpio.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/dma-mapping.h>
19 #include <linux/cpufreq.h>
20 #include <linux/ioport.h>
21 #include <linux/platform_device.h>
22 #include <linux/reboot.h>
24 #include <video/sa1100fb.h>
26 #include <asm/div64.h>
27 #include <asm/mach/map.h>
28 #include <asm/mach/flash.h>
30 #include <asm/system_misc.h>
32 #include <mach/hardware.h>
33 #include <mach/irqs.h>
37 unsigned int reset_status
;
38 EXPORT_SYMBOL(reset_status
);
43 * This table is setup for a 3.6864MHz Crystal.
45 static const unsigned short cclk_frequency_100khz
[NR_FREQS
] = {
65 unsigned int sa11x0_freq_to_ppcr(unsigned int khz
)
71 for (i
= 0; i
< NR_FREQS
; i
++)
72 if (cclk_frequency_100khz
[i
] >= khz
)
78 unsigned int sa11x0_ppcr_to_freq(unsigned int idx
)
80 unsigned int freq
= 0;
82 freq
= cclk_frequency_100khz
[idx
] * 100;
87 /* make sure that only the "userspace" governor is run -- anything else wouldn't make sense on
88 * this platform, anyway.
90 int sa11x0_verify_speed(struct cpufreq_policy
*policy
)
96 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
98 /* make sure that at least one frequency is within the policy */
99 tmp
= cclk_frequency_100khz
[sa11x0_freq_to_ppcr(policy
->min
)] * 100;
100 if (tmp
> policy
->max
)
103 cpufreq_verify_within_limits(policy
, policy
->cpuinfo
.min_freq
, policy
->cpuinfo
.max_freq
);
108 unsigned int sa11x0_getspeed(unsigned int cpu
)
112 return cclk_frequency_100khz
[PPCR
& 0xf] * 100;
116 * Default power-off for SA1100
118 static void sa1100_power_off(void)
122 /* disable internal oscillator, float CS lines */
123 PCFR
= (PCFR_OPDE
| PCFR_FP
| PCFR_FS
);
124 /* enable wake-up on GPIO0 (Assabet...) */
125 PWER
= GFER
= GRER
= 1;
127 * set scratchpad to zero, just in case it is used as a
128 * restart address by the bootloader.
131 /* enter sleep mode */
135 void sa11x0_restart(enum reboot_mode mode
, const char *cmd
)
137 if (mode
== REBOOT_SOFT
) {
138 /* Jump into ROM at address 0 */
141 /* Use on-chip reset capability */
146 static void sa11x0_register_device(struct platform_device
*dev
, void *data
)
149 dev
->dev
.platform_data
= data
;
150 err
= platform_device_register(dev
);
152 printk(KERN_ERR
"Unable to register device %s: %d\n",
157 static struct resource sa11x0udc_resources
[] = {
158 [0] = DEFINE_RES_MEM(__PREG(Ser0UDCCR
), SZ_64K
),
159 [1] = DEFINE_RES_IRQ(IRQ_Ser0UDC
),
162 static u64 sa11x0udc_dma_mask
= 0xffffffffUL
;
164 static struct platform_device sa11x0udc_device
= {
165 .name
= "sa11x0-udc",
168 .dma_mask
= &sa11x0udc_dma_mask
,
169 .coherent_dma_mask
= 0xffffffff,
171 .num_resources
= ARRAY_SIZE(sa11x0udc_resources
),
172 .resource
= sa11x0udc_resources
,
175 static struct resource sa11x0uart1_resources
[] = {
176 [0] = DEFINE_RES_MEM(__PREG(Ser1UTCR0
), SZ_64K
),
177 [1] = DEFINE_RES_IRQ(IRQ_Ser1UART
),
180 static struct platform_device sa11x0uart1_device
= {
181 .name
= "sa11x0-uart",
183 .num_resources
= ARRAY_SIZE(sa11x0uart1_resources
),
184 .resource
= sa11x0uart1_resources
,
187 static struct resource sa11x0uart3_resources
[] = {
188 [0] = DEFINE_RES_MEM(__PREG(Ser3UTCR0
), SZ_64K
),
189 [1] = DEFINE_RES_IRQ(IRQ_Ser3UART
),
192 static struct platform_device sa11x0uart3_device
= {
193 .name
= "sa11x0-uart",
195 .num_resources
= ARRAY_SIZE(sa11x0uart3_resources
),
196 .resource
= sa11x0uart3_resources
,
199 static struct resource sa11x0mcp_resources
[] = {
200 [0] = DEFINE_RES_MEM(__PREG(Ser4MCCR0
), SZ_64K
),
201 [1] = DEFINE_RES_MEM(__PREG(Ser4MCCR1
), 4),
202 [2] = DEFINE_RES_IRQ(IRQ_Ser4MCP
),
205 static u64 sa11x0mcp_dma_mask
= 0xffffffffUL
;
207 static struct platform_device sa11x0mcp_device
= {
208 .name
= "sa11x0-mcp",
211 .dma_mask
= &sa11x0mcp_dma_mask
,
212 .coherent_dma_mask
= 0xffffffff,
214 .num_resources
= ARRAY_SIZE(sa11x0mcp_resources
),
215 .resource
= sa11x0mcp_resources
,
218 void __init
sa11x0_ppc_configure_mcp(void)
220 /* Setup the PPC unit for the MCP */
222 PPDR
|= PPC_TXD4
| PPC_SCLK
| PPC_SFRM
;
224 PSDR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
225 PPSR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
228 void sa11x0_register_mcp(struct mcp_plat_data
*data
)
230 sa11x0_register_device(&sa11x0mcp_device
, data
);
233 static struct resource sa11x0ssp_resources
[] = {
234 [0] = DEFINE_RES_MEM(0x80070000, SZ_64K
),
235 [1] = DEFINE_RES_IRQ(IRQ_Ser4SSP
),
238 static u64 sa11x0ssp_dma_mask
= 0xffffffffUL
;
240 static struct platform_device sa11x0ssp_device
= {
241 .name
= "sa11x0-ssp",
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] = DEFINE_RES_MEM(0xb0100000, SZ_64K
),
253 [1] = DEFINE_RES_IRQ(IRQ_LCD
),
256 static struct platform_device sa11x0fb_device
= {
260 .coherent_dma_mask
= 0xffffffff,
262 .num_resources
= ARRAY_SIZE(sa11x0fb_resources
),
263 .resource
= sa11x0fb_resources
,
266 void sa11x0_register_lcd(struct sa1100fb_mach_info
*inf
)
268 sa11x0_register_device(&sa11x0fb_device
, inf
);
271 static struct platform_device sa11x0pcmcia_device
= {
272 .name
= "sa11x0-pcmcia",
276 static struct platform_device sa11x0mtd_device
= {
277 .name
= "sa1100-mtd",
281 void sa11x0_register_mtd(struct flash_platform_data
*flash
,
282 struct resource
*res
, int nr
)
284 flash
->name
= "sa1100";
285 sa11x0mtd_device
.resource
= res
;
286 sa11x0mtd_device
.num_resources
= nr
;
287 sa11x0_register_device(&sa11x0mtd_device
, flash
);
290 static struct resource sa11x0ir_resources
[] = {
291 DEFINE_RES_MEM(__PREG(Ser2UTCR0
), 0x24),
292 DEFINE_RES_MEM(__PREG(Ser2HSCR0
), 0x1c),
293 DEFINE_RES_MEM(__PREG(Ser2HSCR2
), 0x04),
294 DEFINE_RES_IRQ(IRQ_Ser2ICP
),
297 static struct platform_device sa11x0ir_device
= {
300 .num_resources
= ARRAY_SIZE(sa11x0ir_resources
),
301 .resource
= sa11x0ir_resources
,
304 void sa11x0_register_irda(struct irda_platform_data
*irda
)
306 sa11x0_register_device(&sa11x0ir_device
, irda
);
309 static struct resource sa1100_rtc_resources
[] = {
310 DEFINE_RES_MEM(0x90010000, 0x40),
311 DEFINE_RES_IRQ_NAMED(IRQ_RTC1Hz
, "rtc 1Hz"),
312 DEFINE_RES_IRQ_NAMED(IRQ_RTCAlrm
, "rtc alarm"),
315 static struct platform_device sa11x0rtc_device
= {
316 .name
= "sa1100-rtc",
318 .num_resources
= ARRAY_SIZE(sa1100_rtc_resources
),
319 .resource
= sa1100_rtc_resources
,
322 static struct resource sa11x0dma_resources
[] = {
323 DEFINE_RES_MEM(DMA_PHYS
, DMA_SIZE
),
324 DEFINE_RES_IRQ(IRQ_DMA0
),
325 DEFINE_RES_IRQ(IRQ_DMA1
),
326 DEFINE_RES_IRQ(IRQ_DMA2
),
327 DEFINE_RES_IRQ(IRQ_DMA3
),
328 DEFINE_RES_IRQ(IRQ_DMA4
),
329 DEFINE_RES_IRQ(IRQ_DMA5
),
332 static u64 sa11x0dma_dma_mask
= DMA_BIT_MASK(32);
334 static struct platform_device sa11x0dma_device
= {
335 .name
= "sa11x0-dma",
338 .dma_mask
= &sa11x0dma_dma_mask
,
339 .coherent_dma_mask
= 0xffffffff,
341 .num_resources
= ARRAY_SIZE(sa11x0dma_resources
),
342 .resource
= sa11x0dma_resources
,
345 static struct platform_device
*sa11x0_devices
[] __initdata
= {
350 &sa11x0pcmcia_device
,
355 static int __init
sa1100_init(void)
357 pm_power_off
= sa1100_power_off
;
358 return platform_add_devices(sa11x0_devices
, ARRAY_SIZE(sa11x0_devices
));
361 arch_initcall(sa1100_init
);
363 void __init
sa11x0_init_late(void)
369 * Common I/O mapping:
371 * Typically, static virtual address mappings are as follow:
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
380 * Below 0xe8000000 is reserved for vm allocation.
382 * The machine specific code must provide the extra mapping beside the
383 * default mapping provided here.
386 static struct map_desc standard_io_desc
[] __initdata
= {
388 .virtual = 0xf8000000,
389 .pfn
= __phys_to_pfn(0x80000000),
390 .length
= 0x00100000,
393 .virtual = 0xfa000000,
394 .pfn
= __phys_to_pfn(0x90000000),
395 .length
= 0x00100000,
398 .virtual = 0xfc000000,
399 .pfn
= __phys_to_pfn(0xa0000000),
400 .length
= 0x00100000,
403 .virtual = 0xfe000000,
404 .pfn
= __phys_to_pfn(0xb0000000),
405 .length
= 0x00200000,
410 void __init
sa1100_map_io(void)
412 iotable_init(standard_io_desc
, ARRAY_SIZE(standard_io_desc
));
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
421 void sa1110_mb_disable(void)
425 local_irq_save(flags
);
429 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
431 GAFR
&= ~(GPIO_MBGNT
| GPIO_MBREQ
);
433 local_irq_restore(flags
);
437 * If the system is going to use the SA-1111 DMA engines, set up
438 * the memory bus request/grant pins.
440 void sa1110_mb_enable(void)
444 local_irq_save(flags
);
448 GPDR
= (GPDR
& ~GPIO_MBREQ
) | GPIO_MBGNT
;
450 GAFR
|= (GPIO_MBGNT
| GPIO_MBREQ
);
453 local_irq_restore(flags
);