blob: e8caf58e004c62a73f742a7f65c1a720c48ba75a [file] [log] [blame]
Eric Miao49cbe782009-01-20 14:15:18 +08001/*
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