]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/board-n810.c
c4f4dd594c58d8af55a4695c3798ceb584e49749
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / board-n810.c
1 /*
2  * linux/arch/arm/mach-omap2/board-n810.c
3  *
4  * Copyright (C) 2007 Nokia
5  * Author: Lauri Leukkunen <lauri.leukkunen@nokia.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/init.h>
13
14 #include <asm/hardware.h>
15 #include <asm/mach-types.h>
16 #include <asm/mach/arch.h>
17 #include <asm/arch/board.h>
18 #include <asm/arch/common.h>
19
20 #include "board-n800.h"
21
22 static void __init nokia_n810_init(void)
23 {
24         nokia_n800_common_init();
25 }
26
27 MACHINE_START(NOKIA_N810, "Nokia N810")
28         .phys_io        = 0x48000000,
29         .io_pg_offst    = ((0xd8000000) >> 18) & 0xfffc,
30         .boot_params    = 0x80000100,
31         .map_io         = nokia_n800_map_io,
32         .init_irq       = nokia_n800_init_irq,
33         .init_machine   = nokia_n810_init,
34         .timer          = &omap_timer,
35 MACHINE_END