2 * linux/arch/arm/mach-mmp/jasper.c
4 * Support for the Marvell Jasper Development Platform.
6 * Copyright (C) 2009-2010 Marvell International Ltd.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * publishhed by the Free Software Foundation.
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15 #include <linux/platform_device.h>
17 #include <linux/gpio.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
21 #include <mach/addr-map.h>
22 #include <mach/mfp-mmp2.h>
23 #include <mach/mmp2.h>
27 static unsigned long jasper_pin_config[] __initdata = {
63 static void __init jasper_init(void)
65 mfp_config(ARRAY_AND_SIZE(jasper_pin_config));
72 MACHINE_START(MARVELL_JASPER, "Jasper Development Platform")
73 .phys_io = APB_PHYS_BASE,
74 .boot_params = 0x00000100,
75 .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc,
77 .init_irq = mmp2_init_irq,
79 .init_machine = jasper_init,