| * linux/arch/arm/mach-mmp/jasper.c |
| * Support for the Marvell Jasper Development Platform. |
| * Copyright (C) 2009-2010 Marvell International Ltd. |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 as |
| * publishhed by the Free Software Foundation. |
| #include <linux/kernel.h> |
| #include <linux/platform_device.h> |
| #include <asm/mach-types.h> |
| #include <asm/mach/arch.h> |
| #include <mach/addr-map.h> |
| #include <mach/mfp-mmp2.h> |
| static unsigned long jasper_pin_config[] __initdata = { |
| static void __init jasper_init(void) |
| mfp_config(ARRAY_AND_SIZE(jasper_pin_config)); |
| MACHINE_START(MARVELL_JASPER, "Jasper Development Platform") |
| .phys_io = APB_PHYS_BASE, |
| .boot_params = 0x00000100, |
| .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc, |
| .init_irq = mmp2_init_irq, |
| .init_machine = jasper_init, |