2 * linux/arch/arm/mach-shark/arch.c
4 * Architecture specific stuff.
6 #include <linux/kernel.h>
7 #include <linux/init.h>
8 #include <linux/interrupt.h>
9 #include <linux/sched.h>
10 #include <linux/serial_8250.h>
12 #include <asm/setup.h>
13 #include <asm/mach-types.h>
16 #include <asm/param.h>
18 #include <asm/mach/map.h>
19 #include <asm/mach/arch.h>
20 #include <asm/mach/time.h>
22 static struct plat_serial8250_port serial_platform_data
[] = {
29 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
37 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
,
42 static struct platform_device serial_device
= {
46 .platform_data
= serial_platform_data
,
50 static int __init
shark_init(void)
54 if (machine_is_shark())
55 ret
= platform_device_register(&serial_device
);
60 arch_initcall(shark_init
);
62 extern void shark_init_irq(void);
64 static struct map_desc shark_io_desc
[] __initdata
= {
65 { IO_BASE
, IO_START
, IO_SIZE
, MT_DEVICE
}
68 static void __init
shark_map_io(void)
70 iotable_init(shark_io_desc
, ARRAY_SIZE(shark_io_desc
));
74 #define HZ_TIME ((1193180 + HZ/2) / HZ)
77 shark_timer_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
79 write_seqlock(&xtime_lock
);
81 write_sequnlock(&xtime_lock
);
85 static struct irqaction shark_timer_irq
= {
86 .name
= "Shark Timer Tick",
87 .flags
= SA_INTERRUPT
| SA_TIMER
,
88 .handler
= shark_timer_interrupt
,
92 * Set up timer interrupt, and return the current time in seconds.
94 static void __init
shark_timer_init(void)
96 outb(0x34, 0x43); /* binary, mode 0, LSB/MSB, Ch 0 */
97 outb(HZ_TIME
& 0xff, 0x40); /* LSB of count */
98 outb(HZ_TIME
>> 8, 0x40);
100 setup_irq(IRQ_TIMER
, &shark_timer_irq
);
103 static struct sys_timer shark_timer
= {
104 .init
= shark_timer_init
,
107 MACHINE_START(SHARK
, "Shark")
108 /* Maintainer: Alexander Schulz */
109 .phys_ram
= 0x08000000,
110 .phys_io
= 0x40000000,
111 .io_pg_offst
= ((0xe0000000) >> 18) & 0xfffc,
112 .boot_params
= 0x08003000,
113 .map_io
= shark_map_io
,
114 .init_irq
= shark_init_irq
,
115 .timer
= &shark_timer
,