2 * $Id: ixp4xx.c,v 1.13 2005/11/16 16:23:21 dvrabel Exp $
4 * drivers/mtd/maps/ixp4xx.c
6 * MTD Map file for IXP4XX based systems. Please do not make per-board
7 * changes in here. If your board needs special setup, do it in your
8 * platform level code in arch/arm/mach-ixp4xx/board-setup.c
10 * Original Author: Intel Corporation
11 * Maintainer: Deepak Saxena <dsaxena@mvista.com>
13 * Copyright (C) 2002 Intel Corporation
14 * Copyright (C) 2003-2004 MontaVista Software, Inc.
18 #include <linux/module.h>
19 #include <linux/types.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/slab.h>
24 #include <linux/ioport.h>
25 #include <linux/device.h>
26 #include <linux/platform_device.h>
28 #include <linux/mtd/mtd.h>
29 #include <linux/mtd/map.h>
30 #include <linux/mtd/partitions.h>
33 #include <asm/mach/flash.h>
35 #include <linux/reboot.h>
38 * Read/write a 16 bit word from flash address 'addr'.
40 * When the cpu is in little-endian mode it swizzles the address lines
41 * ('address coherency') so we need to undo the swizzling to ensure commands
42 * and the like end up on the correct flash address.
44 * To further complicate matters, due to the way the expansion bus controller
45 * handles 32 bit reads, the byte stream ABCD is stored on the flash as:
52 * This means that on LE systems each 16 bit word must be swapped. Note that
53 * this requires CONFIG_MTD_CFI_BE_BYTE_SWAP to be enabled to 'unswap' the CFI
54 * data and other flash commands which are always in D7-D0.
57 #ifndef CONFIG_MTD_CFI_BE_BYTE_SWAP
58 # error CONFIG_MTD_CFI_BE_BYTE_SWAP required
61 static inline u16
flash_read16(void __iomem
*addr
)
63 return be16_to_cpu(__raw_readw((void __iomem
*)((unsigned long)addr
^ 0x2)));
66 static inline void flash_write16(u16 d
, void __iomem
*addr
)
68 __raw_writew(cpu_to_be16(d
), (void __iomem
*)((unsigned long)addr
^ 0x2));
71 #define BYTE0(h) ((h) & 0xFF)
72 #define BYTE1(h) (((h) >> 8) & 0xFF)
76 static inline u16
flash_read16(const void __iomem
*addr
)
78 return __raw_readw(addr
);
81 static inline void flash_write16(u16 d
, void __iomem
*addr
)
83 __raw_writew(d
, addr
);
86 #define BYTE0(h) (((h) >> 8) & 0xFF)
87 #define BYTE1(h) ((h) & 0xFF)
90 static map_word
ixp4xx_read16(struct map_info
*map
, unsigned long ofs
)
93 val
.x
[0] = flash_read16(map
->virt
+ ofs
);
98 * The IXP4xx expansion bus only allows 16-bit wide acceses
99 * when attached to a 16-bit wide device (such as the 28F128J3A),
100 * so we can't just memcpy_fromio().
102 static void ixp4xx_copy_from(struct map_info
*map
, void *to
,
103 unsigned long from
, ssize_t len
)
105 u8
*dest
= (u8
*) to
;
106 void __iomem
*src
= map
->virt
+ from
;
112 *dest
++ = BYTE1(flash_read16(src
));
118 u16 data
= flash_read16(src
);
119 *dest
++ = BYTE0(data
);
120 *dest
++ = BYTE1(data
);
126 *dest
++ = BYTE0(flash_read16(src
));
130 * Unaligned writes are ignored, causing the 8-bit
131 * probe to fail and proceed to the 16-bit probe (which succeeds).
133 static void ixp4xx_probe_write16(struct map_info
*map
, map_word d
, unsigned long adr
)
136 flash_write16(d
.x
[0], map
->virt
+ adr
);
140 * Fast write16 function without the probing check above
142 static void ixp4xx_write16(struct map_info
*map
, map_word d
, unsigned long adr
)
144 flash_write16(d
.x
[0], map
->virt
+ adr
);
147 struct ixp4xx_flash_info
{
148 struct mtd_info
*mtd
;
150 struct mtd_partition
*partitions
;
151 struct resource
*res
;
154 static const char *probes
[] = { "RedBoot", "cmdlinepart", NULL
};
156 static int ixp4xx_flash_remove(struct platform_device
*dev
)
158 struct flash_platform_data
*plat
= dev
->dev
.platform_data
;
159 struct ixp4xx_flash_info
*info
= platform_get_drvdata(dev
);
161 platform_set_drvdata(dev
, NULL
);
167 del_mtd_partitions(info
->mtd
);
168 map_destroy(info
->mtd
);
171 iounmap(info
->map
.virt
);
173 kfree(info
->partitions
);
176 release_resource(info
->res
);
186 static int ixp4xx_flash_probe(struct platform_device
*dev
)
188 struct flash_platform_data
*plat
= dev
->dev
.platform_data
;
189 struct ixp4xx_flash_info
*info
;
201 info
= kmalloc(sizeof(struct ixp4xx_flash_info
), GFP_KERNEL
);
206 memzero(info
, sizeof(struct ixp4xx_flash_info
));
208 platform_set_drvdata(dev
, info
);
211 * Tell the MTD layer we're not 1:1 mapped so that it does
212 * not attempt to do a direct access on us.
214 info
->map
.phys
= NO_XIP
;
215 info
->map
.size
= dev
->resource
->end
- dev
->resource
->start
+ 1;
218 * We only support 16-bit accesses for now. If and when
219 * any board use 8-bit access, we'll fixup the driver to
222 info
->map
.bankwidth
= 2;
223 info
->map
.name
= dev
->dev
.bus_id
;
224 info
->map
.read
= ixp4xx_read16
,
225 info
->map
.write
= ixp4xx_probe_write16
,
226 info
->map
.copy_from
= ixp4xx_copy_from
,
228 info
->res
= request_mem_region(dev
->resource
->start
,
229 dev
->resource
->end
- dev
->resource
->start
+ 1,
232 printk(KERN_ERR
"IXP4XXFlash: Could not reserve memory region\n");
237 info
->map
.virt
= ioremap(dev
->resource
->start
,
238 dev
->resource
->end
- dev
->resource
->start
+ 1);
239 if (!info
->map
.virt
) {
240 printk(KERN_ERR
"IXP4XXFlash: Failed to ioremap region\n");
245 info
->mtd
= do_map_probe(plat
->map_name
, &info
->map
);
247 printk(KERN_ERR
"IXP4XXFlash: map_probe failed\n");
251 info
->mtd
->owner
= THIS_MODULE
;
253 /* Use the fast version */
254 info
->map
.write
= ixp4xx_write16
,
256 err
= parse_mtd_partitions(info
->mtd
, probes
, &info
->partitions
, dev
->resource
->start
);
258 err
= add_mtd_partitions(info
->mtd
, info
->partitions
, err
);
260 printk(KERN_ERR
"Could not parse partitions\n");
269 ixp4xx_flash_remove(dev
);
273 static struct platform_driver ixp4xx_flash_driver
= {
274 .probe
= ixp4xx_flash_probe
,
275 .remove
= ixp4xx_flash_remove
,
277 .name
= "IXP4XX-Flash",
281 static int __init
ixp4xx_flash_init(void)
283 return platform_driver_register(&ixp4xx_flash_driver
);
286 static void __exit
ixp4xx_flash_exit(void)
288 platform_driver_unregister(&ixp4xx_flash_driver
);
292 module_init(ixp4xx_flash_init
);
293 module_exit(ixp4xx_flash_exit
);
295 MODULE_LICENSE("GPL");
296 MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems");
297 MODULE_AUTHOR("Deepak Saxena");