ARM: 6905/1: Integrator/CP: Use physmap driver instead of integrator-flash

Tested with an ARM-1136 core tile.

Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Marc Zyngier 2011-05-18 10:51:53 +01:00 committed by Russell King
parent f07e762e4f
commit 046dfa0abd
1 changed files with 6 additions and 7 deletions

View File

@ -22,6 +22,7 @@
#include <linux/io.h> #include <linux/io.h>
#include <linux/gfp.h> #include <linux/gfp.h>
#include <linux/clkdev.h> #include <linux/clkdev.h>
#include <linux/mtd/physmap.h>
#include <mach/hardware.h> #include <mach/hardware.h>
#include <mach/platform.h> #include <mach/platform.h>
@ -35,7 +36,6 @@
#include <mach/lm.h> #include <mach/lm.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
#include <asm/mach/flash.h>
#include <asm/mach/irq.h> #include <asm/mach/irq.h>
#include <asm/mach/map.h> #include <asm/mach/map.h>
#include <asm/mach/time.h> #include <asm/mach/time.h>
@ -239,7 +239,7 @@ static struct clk_lookup cp_lookups[] = {
/* /*
* Flash handling. * Flash handling.
*/ */
static int intcp_flash_init(void) static int intcp_flash_init(struct platform_device *dev)
{ {
u32 val; u32 val;
@ -250,7 +250,7 @@ static int intcp_flash_init(void)
return 0; return 0;
} }
static void intcp_flash_exit(void) static void intcp_flash_exit(struct platform_device *dev)
{ {
u32 val; u32 val;
@ -259,7 +259,7 @@ static void intcp_flash_exit(void)
writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
} }
static void intcp_flash_set_vpp(int on) static void intcp_flash_set_vpp(struct map_info *map, int on)
{ {
u32 val; u32 val;
@ -271,8 +271,7 @@ static void intcp_flash_set_vpp(int on)
writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
} }
static struct flash_platform_data intcp_flash_data = { static struct physmap_flash_data intcp_flash_data = {
.map_name = "cfi_probe",
.width = 4, .width = 4,
.init = intcp_flash_init, .init = intcp_flash_init,
.exit = intcp_flash_exit, .exit = intcp_flash_exit,
@ -286,7 +285,7 @@ static struct resource intcp_flash_resource = {
}; };
static struct platform_device intcp_flash_device = { static struct platform_device intcp_flash_device = {
.name = "armflash", .name = "physmap-flash",
.id = 0, .id = 0,
.dev = { .dev = {
.platform_data = &intcp_flash_data, .platform_data = &intcp_flash_data,