summaryrefslogtreecommitdiffstats
path: root/linux-2.4.x/drivers/mtd/maps/sa1100-flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux-2.4.x/drivers/mtd/maps/sa1100-flash.c')
-rw-r--r--linux-2.4.x/drivers/mtd/maps/sa1100-flash.c1283
1 files changed, 367 insertions, 916 deletions
diff --git a/linux-2.4.x/drivers/mtd/maps/sa1100-flash.c b/linux-2.4.x/drivers/mtd/maps/sa1100-flash.c
index a957813..3ee3906 100644
--- a/linux-2.4.x/drivers/mtd/maps/sa1100-flash.c
+++ b/linux-2.4.x/drivers/mtd/maps/sa1100-flash.c
@@ -1,1028 +1,479 @@
/*
* Flash memory access on SA11x0 based devices
- *
+ *
* (C) 2000 Nicolas Pitre <nico@cam.org>
- *
- * $Id: sa1100-flash.c,v 1.26 2002/03/13 16:30:44 rmk Exp $
+ *
+ * $Id: sa1100-flash.c,v 1.52 2005/11/29 20:01:28 gleixner Exp $
*/
-
#include <linux/config.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/errno.h>
+#include <linux/slab.h>
+#include <linux/platform_device.h>
+#include <linux/err.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
+#include <linux/mtd/concat.h>
#include <asm/hardware.h>
#include <asm/io.h>
+#include <asm/sizes.h>
+#include <asm/mach/flash.h>
-
-#ifndef CONFIG_ARCH_SA1100
-#error This is for SA1100 architecture only
-#endif
-
-
-#define WINDOW_ADDR 0xe8000000
-
-static __u8 sa1100_read8(struct map_info *map, unsigned long ofs)
-{
- return readb(map->map_priv_1 + ofs);
-}
-
-static __u16 sa1100_read16(struct map_info *map, unsigned long ofs)
-{
- return readw(map->map_priv_1 + ofs);
-}
-
-static __u32 sa1100_read32(struct map_info *map, unsigned long ofs)
-{
- return readl(map->map_priv_1 + ofs);
-}
-
-static void sa1100_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len)
-{
- memcpy(to, (void *)(map->map_priv_1 + from), len);
-}
-
-static void sa1100_write8(struct map_info *map, __u8 d, unsigned long adr)
-{
- writeb(d, map->map_priv_1 + adr);
-}
-
-static void sa1100_write16(struct map_info *map, __u16 d, unsigned long adr)
-{
- writew(d, map->map_priv_1 + adr);
-}
-
-static void sa1100_write32(struct map_info *map, __u32 d, unsigned long adr)
-{
- writel(d, map->map_priv_1 + adr);
-}
-
-static void sa1100_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len)
-{
- memcpy((void *)(map->map_priv_1 + to), from, len);
-}
-
-static struct map_info sa1100_map = {
- name: "SA1100 flash",
- read8: sa1100_read8,
- read16: sa1100_read16,
- read32: sa1100_read32,
- copy_from: sa1100_copy_from,
- write8: sa1100_write8,
- write16: sa1100_write16,
- write32: sa1100_write32,
- copy_to: sa1100_copy_to,
-
- map_priv_1: WINDOW_ADDR,
- map_priv_2: -1,
-};
-
-
-/*
- * Here are partition information for all known SA1100-based devices.
- * See include/linux/mtd/partitions.h for definition of the mtd_partition
- * structure.
- *
- * The *_max_flash_size is the maximum possible mapped flash size which
- * is not necessarily the actual flash size. It must be no more than
- * the value specified in the "struct map_desc *_io_desc" mapping
- * definition for the corresponding machine.
- *
- * Please keep these in alphabetical order, and formatted as per existing
- * entries. Thanks.
- */
-
-#ifdef CONFIG_SA1100_ADSBITSY
-#define ADSBITSY_FLASH_SIZE 0x02000000
-static struct mtd_partition adsbitsy_partitions[] = {
- {
- name: "bootROM",
- size: 0x80000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "zImage",
- size: 0x100000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "ramdisk.gz",
- size: 0x300000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "User FS",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
-};
-#endif
-
-#ifdef CONFIG_SA1100_ASSABET
-/* Phase 4 Assabet has two 28F160B3 flash parts in bank 0: */
-#define ASSABET4_FLASH_SIZE 0x00400000
-static struct mtd_partition assabet4_partitions[] = {
- {
- name: "bootloader",
- size: 0x00020000,
- offset: 0,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "bootloader params",
- size: 0x00020000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "jffs",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
-};
-
-/* Phase 5 Assabet has two 28F128J3A flash parts in bank 0: */
-#define ASSABET5_FLASH_SIZE 0x02000000
-static struct mtd_partition assabet5_partitions[] = {
- {
- name: "bootloader",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "bootloader params",
- size: 0x00040000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "jffs",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
-};
-
-#define ASSABET_FLASH_SIZE ASSABET5_FLASH_SIZE
-#define assabet_partitions assabet5_partitions
-#endif
-
-#ifdef CONFIG_SA1100_BADGE4
-
+#if 0
/*
- * 1 x Intel 28F320C3BA100 Advanced+ Boot Block Flash (32 Mi bit)
- * Eight 4 KiW Parameter Bottom Blocks (64 KiB)
- * Sixty-three 32 KiW Main Blocks (4032 Ki b)
+ * This is here for documentation purposes only - until these people
+ * submit their machine types. It will be gone January 2005.
*/
-#define BADGE4_FLASH_SIZE 0x00400000
-static struct mtd_partition badge4_partitions[] = {
- {
- name: "BLOB boot loader",
- offset: 0,
- size: 0x0000A000
- }, {
- name: "params",
- offset: MTDPART_OFS_APPEND,
- size: 0x00006000
- }, {
- name: "kernel",
- offset: MTDPART_OFS_APPEND,
- size: 0x00100000
- }, {
- name: "root",
- offset: MTDPART_OFS_APPEND,
- size: MTDPART_SIZ_FULL
- }
-};
-
-#endif
-
-
-#ifdef CONFIG_SA1100_CERF
-#ifdef CONFIG_SA1100_CERF_FLASH_32MB
-#define CERF_FLASH_SIZE 0x02000000
-static struct mtd_partition cerf_partitions[] = {
- {
- name: "firmware",
- size: 0x00040000,
- offset: 0,
- }, {
- name: "params",
- size: 0x00040000,
- offset: 0x00040000,
- }, {
- name: "kernel",
- size: 0x00100000,
- offset: 0x00080000,
- }, {
- name: "rootdisk",
- size: 0x01E80000,
- offset: 0x00180000,
- }
-};
-#elif defined CONFIG_SA1100_CERF_FLASH_16MB
-#define CERF_FLASH_SIZE 0x01000000
-static struct mtd_partition cerf_partitions[] = {
- {
- name: "firmware",
- size: 0x00020000,
- offset: 0,
- }, {
- name: "params",
- size: 0x00020000,
- offset: 0x00020000,
- }, {
- name: "kernel",
- size: 0x00100000,
- offset: 0x00040000,
- }, {
- name: "rootdisk",
- size: 0x00EC0000,
- offset: 0x00140000,
- }
-};
-#elif defined CONFIG_SA1100_CERF_FLASH_8MB
-# error "Unwritten type definition"
-#else
-# error "Undefined memory orientation for CERF in sa1100-flash.c"
-#endif
-#endif
-
-#ifdef CONFIG_SA1100_CONSUS
-#define CONSUS_FLASH_SIZE 0x02000000
static struct mtd_partition consus_partitions[] = {
{
- name: "Consus boot firmware",
- offset: 0,
- size: 0x00040000,
- mask_flags: MTD_WRITABLE, /* force read-only */
- }, {
- name: "Consus kernel",
- offset: 0x00040000,
- size: 0x00100000,
- mask_flags: 0,
- }, {
- name: "Consus disk",
- offset: 0x00140000,
+ .name = "Consus boot firmware",
+ .offset = 0,
+ .size = 0x00040000,
+ .mask_flags = MTD_WRITABLE, /* force read-only */
+ }, {
+ .name = "Consus kernel",
+ .offset = 0x00040000,
+ .size = 0x00100000,
+ .mask_flags = 0,
+ }, {
+ .name = "Consus disk",
+ .offset = 0x00140000,
/* The rest (up to 16M) for jffs. We could put 0 and
make it find the size automatically, but right now
i have 32 megs. jffs will use all 32 megs if given
the chance, and this leads to horrible problems
when you try to re-flash the image because blob
won't erase the whole partition. */
- size: 0x01000000 - 0x00140000,
- mask_flags: 0,
+ .size = 0x01000000 - 0x00140000,
+ .mask_flags = 0,
}, {
/* this disk is a secondary disk, which can be used as
needed, for simplicity, make it the size of the other
consus partition, although realistically it could be
the remainder of the disk (depending on the file
system used) */
- name: "Consus disk2",
- offset: 0x01000000,
- size: 0x01000000 - 0x00140000,
- mask_flags: 0,
- }
-};
-#endif
-
-#ifdef CONFIG_SA1100_FLEXANET
-/* Flexanet has two 28F128J3A flash parts in bank 0: */
-#define FLEXANET_FLASH_SIZE 0x02000000
-static struct mtd_partition flexanet_partitions[] = {
- {
- name: "bootloader",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "bootloader params",
- size: 0x00040000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "kernel",
- size: 0x000C0000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "altkernel",
- size: 0x000C0000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "root",
- size: 0x00400000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "free1",
- size: 0x00300000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "free2",
- size: 0x00300000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
- }, {
- name: "free3",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE,
+ .name = "Consus disk2",
+ .offset = 0x01000000,
+ .size = 0x01000000 - 0x00140000,
+ .mask_flags = 0,
}
};
-#endif
-#ifdef CONFIG_SA1100_FREEBIRD
-#define FREEBIRD_FLASH_SIZE 0x02000000
-static struct mtd_partition freebird_partitions[] = {
-#if CONFIG_SA1100_FREEBIRD_NEW
- {
- name: "firmware",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "kernel",
- size: 0x00080000,
- offset: 0x00040000,
- }, {
- name: "params",
- size: 0x00040000,
- offset: 0x000C0000,
- }, {
- name: "initrd",
- size: 0x00100000,
- offset: 0x00100000,
- }, {
- name: "root cramfs",
- size: 0x00300000,
- offset: 0x00200000,
- }, {
- name: "usr cramfs",
- size: 0x00C00000,
- offset: 0x00500000,
- }, {
- name: "local",
- size: MTDPART_SIZ_FULL,
- offset: 0x01100000,
- }
-#else
- {
- size: 0x00040000,
- offset: 0,
- }, {
- size: 0x000c0000,
- offset: MTDPART_OFS_APPEND,
- }, {
- size: 0x00400000,
- offset: MTDPART_OFS_APPEND,
- }, {
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
-#endif
-};
-#endif
-
-#ifdef CONFIG_SA1100_FRODO
/* Frodo has 2 x 16M 28F128J3A flash chips in bank 0: */
-#define FRODO_FLASH_SIZE 0x02000000
static struct mtd_partition frodo_partitions[] =
{
{
- name: "bootloader",
- size: 0x00040000,
- offset: 0x00000000,
- mask_flags: MTD_WRITEABLE
- }, {
- name: "bootloader params",
- size: 0x00040000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE
- }, {
- name: "kernel",
- size: 0x00100000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE
- }, {
- name: "ramdisk",
- size: 0x00400000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE
- }, {
- name: "file system",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND
- }
-};
-#endif
-
-#ifdef CONFIG_SA1100_GRAPHICSCLIENT
-#define GRAPHICSCLIENT_FLASH_SIZE 0x02000000
-static struct mtd_partition graphicsclient_partitions[] = {
- {
- name: "zImage",
- size: 0x100000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "ramdisk.gz",
- size: 0x300000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "User FS",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
-};
-#endif
-
-#ifdef CONFIG_SA1100_GRAPHICSMASTER
-#define GRAPHICSMASTER_FLASH_SIZE 0x01000000
-static struct mtd_partition graphicsmaster_partitions[] = {
- {
- name: "zImage",
- size: 0x100000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- },
- {
- name: "ramdisk.gz",
- size: 0x300000,
- offset: MTDPART_OFS_APPEND,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- },
- {
- name: "User FS",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
+ .name = "bootloader",
+ .size = 0x00040000,
+ .offset = 0x00000000,
+ .mask_flags = MTD_WRITEABLE
+ }, {
+ .name = "bootloader params",
+ .size = 0x00040000,
+ .offset = MTDPART_OFS_APPEND,
+ .mask_flags = MTD_WRITEABLE
+ }, {
+ .name = "kernel",
+ .size = 0x00100000,
+ .offset = MTDPART_OFS_APPEND,
+ .mask_flags = MTD_WRITEABLE
+ }, {
+ .name = "ramdisk",
+ .size = 0x00400000,
+ .offset = MTDPART_OFS_APPEND,
+ .mask_flags = MTD_WRITEABLE
+ }, {
+ .name = "file system",
+ .size = MTDPART_SIZ_FULL,
+ .offset = MTDPART_OFS_APPEND
}
};
-#endif
-#ifdef CONFIG_SA1100_H3600
-#define H3600_FLASH_SIZE 0x02000000
-static struct mtd_partition h3600_partitions[] = {
+static struct mtd_partition jornada56x_partitions[] = {
{
- name: "H3600 boot firmware",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
+ .name = "bootldr",
+ .size = 0x00040000,
+ .offset = 0,
+ .mask_flags = MTD_WRITEABLE,
}, {
- name: "H3600 kernel",
- size: 0x00080000,
- offset: 0x00040000,
- }, {
- name: "H3600 params",
- size: 0x00040000,
- offset: 0x000C0000,
- }, {
-#ifdef CONFIG_JFFS2_FS
- name: "H3600 root jffs2",
- size: MTDPART_SIZ_FULL,
- offset: 0x00100000,
-#else
- name: "H3600 initrd",
- size: 0x00100000,
- offset: 0x00100000,
- }, {
- name: "H3600 root cramfs",
- size: 0x00300000,
- offset: 0x00200000,
- }, {
- name: "H3600 usr cramfs",
- size: 0x00800000,
- offset: 0x00500000,
- }, {
- name: "H3600 usr local",
- size: MTDPART_SIZ_FULL,
- offset: 0x00d00000,
-#endif
+ .name = "rootfs",
+ .size = MTDPART_SIZ_FULL,
+ .offset = MTDPART_OFS_APPEND,
}
};
-static void h3600_set_vpp(struct map_info *map, int vpp)
+static void jornada56x_set_vpp(int vpp)
{
- assign_h3600_egpio(IPAQ_EGPIO_VPP_ON, vpp);
+ if (vpp)
+ GPSR = GPIO_GPIO26;
+ else
+ GPCR = GPIO_GPIO26;
+ GPDR |= GPIO_GPIO26;
}
+
+/*
+ * Machine Phys Size set_vpp
+ * Consus : SA1100_CS0_PHYS SZ_32M
+ * Frodo : SA1100_CS0_PHYS SZ_32M
+ * Jornada56x: SA1100_CS0_PHYS SZ_32M jornada56x_set_vpp
+ */
#endif
-#ifdef CONFIG_SA1100_HUW_WEBPANEL
-#define HUW_WEBPANEL_FLASH_SIZE 0x01000000
-static struct mtd_partition huw_webpanel_partitions[] = {
- {
- name: "Loader",
- size: 0x00040000,
- offset: 0,
- }, {
- name: "Sector 1",
- size: 0x00040000,
- offset: MTDPART_OFS_APPEND,
- }, {
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
- }
+struct sa_subdev_info {
+ char name[16];
+ struct map_info map;
+ struct mtd_info *mtd;
+ struct flash_platform_data *plat;
};
-#endif
-#ifdef CONFIG_SA1100_JORNADA720
-#define JORNADA720_FLASH_SIZE 0x02000000
-static struct mtd_partition jornada720_partitions[] = {
- {
- name: "JORNADA720 boot firmware",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "JORNADA720 kernel",
- size: 0x000c0000,
- offset: 0x00040000,
- }, {
- name: "JORNADA720 params",
- size: 0x00040000,
- offset: 0x00100000,
- }, {
- name: "JORNADA720 initrd",
- size: 0x00100000,
- offset: 0x00140000,
- }, {
- name: "JORNADA720 root cramfs",
- size: 0x00300000,
- offset: 0x00240000,
- }, {
- name: "JORNADA720 usr cramfs",
- size: 0x00800000,
- offset: 0x00540000,
- }, {
- name: "JORNADA720 usr local",
- size: 0 /* will expand to the end of the flash */
- offset: 0x00d00000,
- }
+struct sa_info {
+ struct mtd_partition *parts;
+ struct mtd_info *mtd;
+ int num_subdev;
+ unsigned int nr_parts;
+ struct sa_subdev_info subdev[0];
};
-static void jornada720_set_vpp(int vpp)
+static void sa1100_set_vpp(struct map_info *map, int on)
{
- if (vpp)
- PPSR |= 0x80;
- else
- PPSR &= ~0x80;
- PPDR |= 0x80;
+ struct sa_subdev_info *subdev = container_of(map, struct sa_subdev_info, map);
+ subdev->plat->set_vpp(on);
}
-#endif
+static void sa1100_destroy_subdev(struct sa_subdev_info *subdev)
+{
+ if (subdev->mtd)
+ map_destroy(subdev->mtd);
+ if (subdev->map.virt)
+ iounmap(subdev->map.virt);
+ release_mem_region(subdev->map.phys, subdev->map.size);
+}
-#ifdef CONFIG_SA1100_PANGOLIN
-#define PANGOLIN_FLASH_SIZE 0x04000000
-static struct mtd_partition pangolin_partitions[] = {
- {
- name: "boot firmware",
- size: 0x00080000,
- offset: 0x00000000,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "kernel",
- size: 0x00100000,
- offset: 0x00080000,
- }, {
- name: "initrd",
- size: 0x00280000,
- offset: 0x00180000,
- }, {
- name: "initrd-test",
- size: 0x03C00000,
- offset: 0x00400000,
- }
-};
-#endif
+static int sa1100_probe_subdev(struct sa_subdev_info *subdev, struct resource *res)
+{
+ unsigned long phys;
+ unsigned int size;
+ int ret;
-#ifdef CONFIG_SA1100_PT_SYSTEM3
-/* erase size is 0x40000 == 256k partitions have to have this boundary */
-#define SYSTEM3_FLASH_SIZE 0x01000000
-static struct mtd_partition system3_partitions[] = {
- {
- name: "BLOB",
- size: 0x00040000,
- offset: 0x00000000,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "config",
- size: 0x00040000,
- offset: MTDPART_OFS_APPEND,
- }, {
- name: "kernel",
- size: 0x00100000,
- offset: MTDPART_OFS_APPEND,
- }, {
- name: "root",
- size: MTDPART_SIZ_FULL,
- offset: MTDPART_OFS_APPEND,
+ phys = res->start;
+ size = res->end - phys + 1;
+
+ /*
+ * Retrieve the bankwidth from the MSC registers.
+ * We currently only implement CS0 and CS1 here.
+ */
+ switch (phys) {
+ default:
+ printk(KERN_WARNING "SA1100 flash: unknown base address "
+ "0x%08lx, assuming CS0\n", phys);
+
+ case SA1100_CS0_PHYS:
+ subdev->map.bankwidth = (MSC0 & MSC_RBW) ? 2 : 4;
+ break;
+
+ case SA1100_CS1_PHYS:
+ subdev->map.bankwidth = ((MSC0 >> 16) & MSC_RBW) ? 2 : 4;
+ break;
}
-};
-#endif
-#ifdef CONFIG_SA1100_SHANNON
-#define SHANNON_FLASH_SIZE 0x00400000
-static struct mtd_partition shannon_partitions[] = {
- {
- name: "BLOB boot loader",
- offset: 0,
- size: 0x20000
- },
- {
- name: "kernel",
- offset: MTDPART_OFS_APPEND,
- size: 0xe0000
- },
- {
- name: "initrd",
- offset: MTDPART_OFS_APPEND,
- size: MTDPART_SIZ_FULL
+ if (!request_mem_region(phys, size, subdev->name)) {
+ ret = -EBUSY;
+ goto out;
}
-};
-#endif
+ if (subdev->plat->set_vpp)
+ subdev->map.set_vpp = sa1100_set_vpp;
-#ifdef CONFIG_SA1100_SHERMAN
-#define SHERMAN_FLASH_SIZE 0x02000000
-static struct mtd_partition sherman_partitions[] = {
- {
- size: 0x50000,
- offset: 0,
- }, {
- size: 0x70000,
- offset: MTDPART_OFS_APPEND,
- }, {
- size: 0x600000,
- offset: MTDPART_OFS_APPEND,
- }, {
- size: 0xA0000,
- offset: MTDPART_OFS_APPEND,
+ subdev->map.phys = phys;
+ subdev->map.size = size;
+ subdev->map.virt = ioremap(phys, size);
+ if (!subdev->map.virt) {
+ ret = -ENOMEM;
+ goto err;
}
-};
-#endif
-#ifdef CONFIG_SA1100_SIMPAD
-#define SIMPAD_FLASH_SIZE 0x02000000
-static struct mtd_partition simpad_partitions[] = {
- {
- name: "SIMpad boot firmware",
- size: 0x00080000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "SIMpad kernel",
- size: 0x00100000,
- offset: 0x00080000,
- }, {
-#ifdef CONFIG_JFFS2_FS
- name: "SIMpad root jffs2",
- size: MTDPART_SIZ_FULL,
- offset: 0x00180000,
-#else
- name: "SIMpad initrd",
- size: 0x00300000,
- offset: 0x00180000,
- }, {
- name: "SIMpad root cramfs",
- size: 0x00300000,
- offset: 0x00480000,
- }, {
- name: "SIMpad usr cramfs",
- size: 0x005c0000,
- offset: 0x00780000,
- }, {
- name: "SIMpad usr local",
- size: MTDPART_SIZ_FULL,
- offset: 0x00d40000,
-#endif
+ simple_map_init(&subdev->map);
+
+ /*
+ * Now let's probe for the actual flash. Do it here since
+ * specific machine settings might have been set above.
+ */
+ subdev->mtd = do_map_probe(subdev->plat->map_name, &subdev->map);
+ if (subdev->mtd == NULL) {
+ ret = -ENXIO;
+ goto err;
}
-};
-#endif /* CONFIG_SA1100_SIMPAD */
+ subdev->mtd->owner = THIS_MODULE;
-#ifdef CONFIG_SA1100_STORK
-#define STORK_FLASH_SIZE 0x02000000
-static struct mtd_partition stork_partitions[] = {
- {
- name: "STORK boot firmware",
- size: 0x00040000,
- offset: 0,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "STORK params",
- size: 0x00040000,
- offset: 0x00040000,
- }, {
- name: "STORK kernel",
- size: 0x00100000,
- offset: 0x00080000,
- }, {
-#ifdef CONFIG_JFFS2_FS
- name: "STORK root jffs2",
- offset: 0x00180000,
- size: MTDPART_SIZ_FULL,
-#else
- name: "STORK initrd",
- size: 0x00100000,
- offset: 0x00180000,
- }, {
- name: "STORK root cramfs",
- size: 0x00300000,
- offset: 0x00280000,
- }, {
- name: "STORK usr cramfs",
- size: 0x00800000,
- offset: 0x00580000,
- }, {
- name: "STORK usr local",
- offset: 0x00d80000,
- size: MTDPART_SIZ_FULL,
+ printk(KERN_INFO "SA1100 flash: CFI device at 0x%08lx, %dMiB, "
+ "%d-bit\n", phys, subdev->mtd->size >> 20,
+ subdev->map.bankwidth * 8);
+
+ return 0;
+
+ err:
+ sa1100_destroy_subdev(subdev);
+ out:
+ return ret;
+}
+
+static void sa1100_destroy(struct sa_info *info, struct flash_platform_data *plat)
+{
+ int i;
+
+ if (info->mtd) {
+ if (info->nr_parts == 0)
+ del_mtd_device(info->mtd);
+#ifdef CONFIG_MTD_PARTITIONS
+ else
+ del_mtd_partitions(info->mtd);
#endif
- }
-};
+#ifdef CONFIG_MTD_CONCAT
+ if (info->mtd != info->subdev[0].mtd)
+ mtd_concat_destroy(info->mtd);
#endif
-
-#ifdef CONFIG_SA1100_YOPY
-#define YOPY_FLASH_SIZE 0x08000000
-static struct mtd_partition yopy_partitions[] = {
- {
- name: "boot firmware",
- size: 0x00040000,
- offset: 0x00000000,
- mask_flags: MTD_WRITEABLE, /* force read-only */
- }, {
- name: "kernel",
- size: 0x00080000,
- offset: 0x00080000,
- }, {
- name: "initrd",
- size: 0x00300000,
- offset: 0x00100000,
- }, {
- name: "root",
- size: 0x01000000,
- offset: 0x00400000,
}
-};
-#endif
-extern int parse_redboot_partitions(struct mtd_info *master, struct mtd_partition **pparts);
-extern int parse_bootldr_partitions(struct mtd_info *master, struct mtd_partition **pparts);
+ kfree(info->parts);
-static struct mtd_partition *parsed_parts;
-static struct mtd_info *mymtd;
+ for (i = info->num_subdev - 1; i >= 0; i--)
+ sa1100_destroy_subdev(&info->subdev[i]);
+ kfree(info);
-int __init sa1100_mtd_init(void)
-{
- struct mtd_partition *parts;
- int nb_parts = 0, ret;
- int parsed_nr_parts = 0;
- const char *part_type;
- unsigned long base = -1UL;
+ if (plat->exit)
+ plat->exit();
+}
- /* Default flash buswidth */
- sa1100_map.buswidth = (MSC0 & MSC_RBW) ? 2 : 4;
+static struct sa_info *__init
+sa1100_setup_mtd(struct platform_device *pdev, struct flash_platform_data *plat)
+{
+ struct sa_info *info;
+ int nr, size, i, ret = 0;
/*
- * Static partition definition selection
+ * Count number of devices.
*/
- part_type = "static";
-
-#ifdef CONFIG_SA1100_ADSBITSY
- if (machine_is_adsbitsy()) {
- parts = adsbitsy_partitions;
- nb_parts = ARRAY_SIZE(adsbitsy_partitions);
- sa1100_map.size = ADSBITSY_FLASH_SIZE;
- sa1100_map.buswidth = (MSC1 & MSC_RBW) ? 2 : 4;
- }
-#endif
-#ifdef CONFIG_SA1100_ASSABET
- if (machine_is_assabet()) {
- parts = assabet_partitions;
- nb_parts = ARRAY_SIZE(assabet_partitions);
- sa1100_map.size = ASSABET_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_BADGE4
- if (machine_is_badge4()) {
- parts = badge4_partitions;
- nb_parts = ARRAY_SIZE(badge4_partitions);
- sa1100_map.size = BADGE4_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_CERF
- if (machine_is_cerf()) {
- parts = cerf_partitions;
- nb_parts = ARRAY_SIZE(cerf_partitions);
- sa1100_map.size = CERF_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_CONSUS
- if (machine_is_consus()) {
- parts = consus_partitions;
- nb_parts = ARRAY_SIZE(consus_partitions);
- sa1100_map.size = CONSUS_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_FLEXANET
- if (machine_is_flexanet()) {
- parts = flexanet_partitions;
- nb_parts = ARRAY_SIZE(flexanet_partitions);
- sa1100_map.size = FLEXANET_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_FREEBIRD
- if (machine_is_freebird()) {
- parts = freebird_partitions;
- nb_parts = ARRAY_SIZE(freebird_partitions);
- sa1100_map.size = FREEBIRD_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_FRODO
- if (machine_is_frodo()) {
- parts = frodo_partitions;
- nb_parts = ARRAY_SIZE(frodo_partitions);
- sa1100_map.size = FRODO_FLASH_SIZE;
- base = 0x00000000;
- }
-#ifdef CONFIG_SA1100_GRAPHICSCLIENT
- if (machine_is_graphicsclient()) {
- parts = graphicsclient_partitions;
- nb_parts = ARRAY_SIZE(graphicsclient_partitions);
- sa1100_map.size = GRAPHICSCLIENT_FLASH_SIZE;
- sa1100_map.buswidth = (MSC1 & MSC_RBW) ? 2:4;
- }
-#endif
-#ifdef CONFIG_SA1100_GRAPHICSMASTER
- if (machine_is_graphicsmaster()) {
- parts = graphicsmaster_partitions;
- nb_parts = ARRAY_SIZE(graphicsmaster_partitions);
- sa1100_map.size = GRAPHICSMASTER_FLASH_SIZE;
- sa1100_map.buswidth = (MSC1 & MSC_RBW) ? 2:4;
- }
-#endif
-#ifdef CONFIG_SA1100_H3600
- if (machine_is_h3600()) {
- parts = h3600_partitions;
- nb_parts = ARRAY_SIZE(h3600_partitions);
- sa1100_map.size = H3600_FLASH_SIZE;
- sa1100_map.set_vpp = h3600_set_vpp;
- }
-#endif
-#ifdef CONFIG_SA1100_HUW_WEBPANEL
- if (machine_is_huw_webpanel()) {
- parts = huw_webpanel_partitions;
- nb_parts = ARRAY_SIZE(huw_webpanel_partitions);
- sa1100_map.size = HUW_WEBPANEL_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_JORNADA720
- if (machine_is_jornada720()) {
- parts = jornada720_partitions;
- nb_parts = ARRAY_SIZE(jornada720_partitions);
- sa1100_map.size = JORNADA720_FLASH_SIZE;
- sa1100_map.set_vpp = jornada720_set_vpp;
- }
-#endif
-#ifdef CONFIG_SA1100_PANGOLIN
- if (machine_is_pangolin()) {
- parts = pangolin_partitions;
- nb_parts = ARRAY_SIZE(pangolin_partitions);
- sa1100_map.size = PANGOLIN_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_PT_SYSTEM3
- if (machine_is_pt_system3()) {
- parts = system3_partitions;
- nb_parts = ARRAY_SIZE(system3_partitions);
- sa1100_map.size = SYSTEM3_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_SHANNON
- if (machine_is_shannon()) {
- parts = shannon_partitions;
- nb_parts = ARRAY_SIZE(shannon_partitions);
- sa1100_map.size = SHANNON_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_SHERMAN
- if (machine_is_sherman()) {
- parts = sherman_partitions;
- nb_parts = ARRAY_SIZE(sherman_partitions);
- sa1100_map.size = SHERMAN_FLASH_SIZE;
- }
-#endif
-#ifdef CONFIG_SA1100_SIMPAD
- if (machine_is_simpad()) {
- parts = simpad_partitions;
- nb_parts = ARRAY_SIZE(simpad_partitions);
- sa1100_map.size = SIMPAD_FLASH_SIZE;
+ for (nr = 0; ; nr++)
+ if (!platform_get_resource(pdev, IORESOURCE_MEM, nr))
+ break;
+
+ if (nr == 0) {
+ ret = -ENODEV;
+ goto out;
}
-#endif
-#ifdef CONFIG_SA1100_STORK
- if (machine_is_stork()) {
- parts = stork_partitions;
- nb_parts = ARRAY_SIZE(stork_partitions);
- sa1100_map.size = STORK_FLASH_SIZE;
+
+ size = sizeof(struct sa_info) + sizeof(struct sa_subdev_info) * nr;
+
+ /*
+ * Allocate the map_info structs in one go.
+ */
+ info = kmalloc(size, GFP_KERNEL);
+ if (!info) {
+ ret = -ENOMEM;
+ goto out;
}
-#endif
-#ifdef CONFIG_SA1100_YOPY
- if (machine_is_yopy()) {
- parts = yopy_partitions;
- nb_parts = ARRAY_SIZE(yopy_partitions);
- sa1100_map.size = YOPY_FLASH_SIZE;
+
+ memset(info, 0, size);
+
+ if (plat->init) {
+ ret = plat->init();
+ if (ret)
+ goto err;
}
-#endif
/*
- * For simple flash devices, use ioremap to map the flash.
+ * Claim and then map the memory regions.
*/
- if (base != (unsigned long)-1) {
- if (!request_mem_region(base, sa1100_map.size, "flash"))
- return -EBUSY;
- sa1100_map.map_priv_2 = base;
- sa1100_map.map_priv_1 = (unsigned long)
- ioremap(base, sa1100_map.size);
- ret = -ENOMEM;
- if (!sa1100_map.map_priv_1)
- goto out_err;
+ for (i = 0; i < nr; i++) {
+ struct sa_subdev_info *subdev = &info->subdev[i];
+ struct resource *res;
+
+ res = platform_get_resource(pdev, IORESOURCE_MEM, i);
+ if (!res)
+ break;
+
+ subdev->map.name = subdev->name;
+ sprintf(subdev->name, "%s-%d", plat->name, i);
+ subdev->plat = plat;
+
+ ret = sa1100_probe_subdev(subdev, res);
+ if (ret)
+ break;
}
+ info->num_subdev = i;
+
/*
- * Now let's probe for the actual flash. Do it here since
- * specific machine settings might have been set above.
+ * ENXIO is special. It means we didn't find a chip when we probed.
*/
- printk(KERN_NOTICE "SA1100 flash: probing %d-bit flash bus\n", sa1100_map.buswidth*8);
- mymtd = do_map_probe("cfi_probe", &sa1100_map);
- ret = -ENXIO;
- if (!mymtd)
- goto out_err;
- mymtd->module = THIS_MODULE;
+ if (ret != 0 && !(ret == -ENXIO && info->num_subdev > 0))
+ goto err;
/*
- * Dynamic partition selection stuff (might override the static ones)
+ * If we found one device, don't bother with concat support. If
+ * we found multiple devices, use concat if we have it available,
+ * otherwise fail. Either way, it'll be called "sa1100".
*/
-#ifdef CONFIG_MTD_REDBOOT_PARTS
- if (parsed_nr_parts == 0) {
- int ret = parse_redboot_partitions(mymtd, &parsed_parts);
-
- if (ret > 0) {
- part_type = "RedBoot";
- parsed_nr_parts = ret;
- }
- }
+ if (info->num_subdev == 1) {
+ strcpy(info->subdev[0].name, plat->name);
+ info->mtd = info->subdev[0].mtd;
+ ret = 0;
+ } else if (info->num_subdev > 1) {
+#ifdef CONFIG_MTD_CONCAT
+ struct mtd_info *cdev[nr];
+ /*
+ * We detected multiple devices. Concatenate them together.
+ */
+ for (i = 0; i < info->num_subdev; i++)
+ cdev[i] = info->subdev[i].mtd;
+
+ info->mtd = mtd_concat_create(cdev, info->num_subdev,
+ plat->name);
+ if (info->mtd == NULL)
+ ret = -ENXIO;
+#else
+ printk(KERN_ERR "SA1100 flash: multiple devices "
+ "found but MTD concat support disabled.\n");
+ ret = -ENXIO;
#endif
-#ifdef CONFIG_MTD_BOOTLDR_PARTS
- if (parsed_nr_parts == 0) {
- int ret = parse_bootldr_partitions(mymtd, &parsed_parts);
- if (ret > 0) {
- part_type = "Compaq bootldr";
- parsed_nr_parts = ret;
- }
}
-#endif
- if (parsed_nr_parts > 0) {
- parts = parsed_parts;
- nb_parts = parsed_nr_parts;
+ if (ret == 0)
+ return info;
+
+ err:
+ sa1100_destroy(info, plat);
+ out:
+ return ERR_PTR(ret);
+}
+
+static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
+
+static int __init sa1100_mtd_probe(struct platform_device *pdev)
+{
+ struct flash_platform_data *plat = pdev->dev.platform_data;
+ struct mtd_partition *parts;
+ const char *part_type = NULL;
+ struct sa_info *info;
+ int err, nr_parts = 0;
+
+ if (!plat)
+ return -ENODEV;
+
+ info = sa1100_setup_mtd(pdev, plat);
+ if (IS_ERR(info)) {
+ err = PTR_ERR(info);
+ goto out;
+ }
+
+ /*
+ * Partition selection stuff.
+ */
+#ifdef CONFIG_MTD_PARTITIONS
+ nr_parts = parse_mtd_partitions(info->mtd, part_probes, &parts, 0);
+ if (nr_parts > 0) {
+ info->parts = parts;
+ part_type = "dynamic";
+ } else
+#endif
+ {
+ parts = plat->parts;
+ nr_parts = plat->nr_parts;
+ part_type = "static";
}
- if (nb_parts == 0) {
- printk(KERN_NOTICE "SA1100 flash: no partition info available, registering whole flash at once\n");
- add_mtd_device(mymtd);
+ if (nr_parts == 0) {
+ printk(KERN_NOTICE "SA1100 flash: no partition info "
+ "available, registering whole flash\n");
+ add_mtd_device(info->mtd);
} else {
- printk(KERN_NOTICE "Using %s partition definition\n", part_type);
- add_mtd_partitions(mymtd, parts, nb_parts);
+ printk(KERN_NOTICE "SA1100 flash: using %s partition "
+ "definition\n", part_type);
+ add_mtd_partitions(info->mtd, parts, nr_parts);
}
+
+ info->nr_parts = nr_parts;
+
+ platform_set_drvdata(pdev, info);
+ err = 0;
+
+ out:
+ return err;
+}
+
+static int __exit sa1100_mtd_remove(struct platform_device *pdev)
+{
+ struct sa_info *info = platform_get_drvdata(pdev);
+ struct flash_platform_data *plat = pdev->dev.platform_data;
+
+ platform_set_drvdata(pdev, NULL);
+ sa1100_destroy(info, plat);
+
return 0;
+}
+
+#ifdef CONFIG_PM
+static int sa1100_mtd_suspend(struct platform_device *dev, pm_message_t state)
+{
+ struct sa_info *info = platform_get_drvdata(dev);
+ int ret = 0;
+
+ if (info)
+ ret = info->mtd->suspend(info->mtd);
- out_err:
- if (sa1100_map.map_priv_2 != -1) {
- iounmap((void *)sa1100_map.map_priv_1);
- release_mem_region(sa1100_map.map_priv_2, sa1100_map.size);
- }
return ret;
}
-static void __exit sa1100_mtd_cleanup(void)
+static int sa1100_mtd_resume(struct platform_device *dev)
{
- if (mymtd) {
- del_mtd_partitions(mymtd);
- map_destroy(mymtd);
- if (parsed_parts)
- kfree(parsed_parts);
- }
- if (sa1100_map.map_priv_2 != -1) {
- iounmap((void *)sa1100_map.map_priv_1);
- release_mem_region(sa1100_map.map_priv_2, sa1100_map.size);
- }
+ struct sa_info *info = platform_get_drvdata(dev);
+ if (info)
+ info->mtd->resume(info->mtd);
+ return 0;
+}
+
+static void sa1100_mtd_shutdown(struct platform_device *dev)
+{
+ struct sa_info *info = platform_get_drvdata(dev);
+ if (info && info->mtd->suspend(info->mtd) == 0)
+ info->mtd->resume(info->mtd);
+}
+#else
+#define sa1100_mtd_suspend NULL
+#define sa1100_mtd_resume NULL
+#define sa1100_mtd_shutdown NULL
+#endif
+
+static struct platform_driver sa1100_mtd_driver = {
+ .probe = sa1100_mtd_probe,
+ .remove = __exit_p(sa1100_mtd_remove),
+ .suspend = sa1100_mtd_suspend,
+ .resume = sa1100_mtd_resume,
+ .shutdown = sa1100_mtd_shutdown,
+ .driver = {
+ .name = "flash",
+ },
+};
+
+static int __init sa1100_mtd_init(void)
+{
+ return platform_driver_register(&sa1100_mtd_driver);
+}
+
+static void __exit sa1100_mtd_exit(void)
+{
+ platform_driver_unregister(&sa1100_mtd_driver);
}
module_init(sa1100_mtd_init);
-module_exit(sa1100_mtd_cleanup);
+module_exit(sa1100_mtd_exit);
MODULE_AUTHOR("Nicolas Pitre");
MODULE_DESCRIPTION("SA1100 CFI map driver");