[ARM] 2991/1: Replace map_desc.physical with map_desc.pfn: Shark
[linux-2.6/mini2440.git] / arch / arm / mach-shark / core.c
blob2d428b6dbb58a808e3384f643dd1888d7fa06645
1 /*
2 * linux/arch/arm/mach-shark/arch.c
4 * Architecture specific stuff.
5 */
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>
14 #include <asm/io.h>
15 #include <asm/leds.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[] = {
24 .iobase = 0x3f8,
25 .irq = 4,
26 .uartclk = 1843200,
27 .regshift = 0,
28 .iotype = UPIO_PORT,
29 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
32 .iobase = 0x2f8,
33 .irq = 3,
34 .uartclk = 1843200,
35 .regshift = 0,
36 .iotype = UPIO_PORT,
37 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
39 { },
42 static struct platform_device serial_device = {
43 .name = "serial8250",
44 .id = PLAT8250_DEV_PLATFORM,
45 .dev = {
46 .platform_data = serial_platform_data,
50 static int __init shark_init(void)
52 int ret;
54 if (machine_is_shark())
55 ret = platform_device_register(&serial_device);
57 return ret;
60 arch_initcall(shark_init);
62 extern void shark_init_irq(void);
64 static struct map_desc shark_io_desc[] __initdata = {
66 .virtual = IO_BASE,
67 .pfn = __phys_to_pfn(IO_START),
68 .length = IO_SIZE,
69 .type = MT_DEVICE
73 static void __init shark_map_io(void)
75 iotable_init(shark_io_desc, ARRAY_SIZE(shark_io_desc));
78 #define IRQ_TIMER 0
79 #define HZ_TIME ((1193180 + HZ/2) / HZ)
81 static irqreturn_t
82 shark_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
84 write_seqlock(&xtime_lock);
85 timer_tick(regs);
86 write_sequnlock(&xtime_lock);
87 return IRQ_HANDLED;
90 static struct irqaction shark_timer_irq = {
91 .name = "Shark Timer Tick",
92 .flags = SA_INTERRUPT | SA_TIMER,
93 .handler = shark_timer_interrupt,
97 * Set up timer interrupt, and return the current time in seconds.
99 static void __init shark_timer_init(void)
101 outb(0x34, 0x43); /* binary, mode 0, LSB/MSB, Ch 0 */
102 outb(HZ_TIME & 0xff, 0x40); /* LSB of count */
103 outb(HZ_TIME >> 8, 0x40);
105 setup_irq(IRQ_TIMER, &shark_timer_irq);
108 static struct sys_timer shark_timer = {
109 .init = shark_timer_init,
112 MACHINE_START(SHARK, "Shark")
113 /* Maintainer: Alexander Schulz */
114 .phys_ram = 0x08000000,
115 .phys_io = 0x40000000,
116 .io_pg_offst = ((0xe0000000) >> 18) & 0xfffc,
117 .boot_params = 0x08003000,
118 .map_io = shark_map_io,
119 .init_irq = shark_init_irq,
120 .timer = &shark_timer,
121 MACHINE_END