Commit 0f71fd49 authored by Marc Zyngier's avatar Marc Zyngier Committed by Russell King

ARM: 6909/1: VExpress: Use physmap driver instead of integrator-flash

Signed-off-by: default avatarMarc Zyngier <marc.zyngier@arm.com>
Acked-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
Acked-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 68c0e38c
...@@ -13,11 +13,11 @@ ...@@ -13,11 +13,11 @@
#include <linux/sysdev.h> #include <linux/sysdev.h>
#include <linux/usb/isp1760.h> #include <linux/usb/isp1760.h>
#include <linux/clkdev.h> #include <linux/clkdev.h>
#include <linux/mtd/physmap.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
#include <asm/sizes.h> #include <asm/sizes.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
#include <asm/mach/flash.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include <asm/mach/time.h> #include <asm/mach/time.h>
#include <asm/hardware/arm_timer.h> #include <asm/hardware/arm_timer.h>
...@@ -206,27 +206,13 @@ static struct platform_device v2m_usb_device = { ...@@ -206,27 +206,13 @@ static struct platform_device v2m_usb_device = {
.dev.platform_data = &v2m_usb_config, .dev.platform_data = &v2m_usb_config,
}; };
static int v2m_flash_init(void) static void v2m_flash_set_vpp(struct map_info *map, int on)
{
writel(0, MMIO_P2V(V2M_SYS_FLASH));
return 0;
}
static void v2m_flash_exit(void)
{
writel(0, MMIO_P2V(V2M_SYS_FLASH));
}
static void v2m_flash_set_vpp(int on)
{ {
writel(on != 0, MMIO_P2V(V2M_SYS_FLASH)); writel(on != 0, MMIO_P2V(V2M_SYS_FLASH));
} }
static struct flash_platform_data v2m_flash_data = { static struct physmap_flash_data v2m_flash_data = {
.map_name = "cfi_probe",
.width = 4, .width = 4,
.init = v2m_flash_init,
.exit = v2m_flash_exit,
.set_vpp = v2m_flash_set_vpp, .set_vpp = v2m_flash_set_vpp,
}; };
...@@ -243,7 +229,7 @@ static struct resource v2m_flash_resources[] = { ...@@ -243,7 +229,7 @@ static struct resource v2m_flash_resources[] = {
}; };
static struct platform_device v2m_flash_device = { static struct platform_device v2m_flash_device = {
.name = "armflash", .name = "physmap-flash",
.id = -1, .id = -1,
.resource = v2m_flash_resources, .resource = v2m_flash_resources,
.num_resources = ARRAY_SIZE(v2m_flash_resources), .num_resources = ARRAY_SIZE(v2m_flash_resources),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment