aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mmp/aspenite.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-mmp/aspenite.c')
-rw-r--r--arch/arm/mach-mmp/aspenite.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/arch/arm/mach-mmp/aspenite.c b/arch/arm/mach-mmp/aspenite.c
new file mode 100644
index 000000000000..e8caf58e004c
--- /dev/null
+++ b/arch/arm/mach-mmp/aspenite.c
@@ -0,0 +1,42 @@
1/*
2 * linux/arch/arm/mach-mmp/aspenite.c
3 *
4 * Support for the Marvell PXA168-based Aspenite and Zylonite2
5 * Development Platform.
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 * publishhed by the Free Software Foundation.
10 */
11
12#include <linux/init.h>
13
14#include <asm/mach-types.h>
15#include <asm/mach/arch.h>
16#include <mach/addr-map.h>
17
18#include "common.h"
19
20static void __init common_init(void)
21{
22}
23
24MACHINE_START(ASPENITE, "PXA168-based Aspenite Development Platform")
25 .phys_io = APB_PHYS_BASE,
26 .boot_params = 0x00000100,
27 .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc,
28 .map_io = pxa_map_io,
29 .init_irq = pxa168_init_irq,
30 .timer = &pxa168_timer,
31 .init_machine = common_init,
32MACHINE_END
33
34MACHINE_START(ZYLONITE2, "PXA168-based Zylonite2 Development Platform")
35 .phys_io = APB_PHYS_BASE,
36 .boot_params = 0x00000100,
37 .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc,
38 .map_io = pxa_map_io,
39 .init_irq = pxa168_init_irq,
40 .timer = &pxa168_timer,
41 .init_machine = common_init,
42MACHINE_END