]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/mtd/maps/ixp4xx.c
Merge master.kernel.org:/home/rmk/linux-2.6-drvmodel
[linux-2.6-omap-h63xx.git] / drivers / mtd / maps / ixp4xx.c
1 /*
2  * $Id: ixp4xx.c,v 1.7 2004/11/04 13:24:15 gleixner Exp $
3  *
4  * drivers/mtd/maps/ixp4xx.c
5  *
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
9  *
10  * Original Author: Intel Corporation
11  * Maintainer: Deepak Saxena <dsaxena@mvista.com>
12  *
13  * Copyright (C) 2002 Intel Corporation
14  * Copyright (C) 2003-2004 MontaVista Software, Inc.
15  *
16  */
17
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>
27
28 #include <linux/mtd/mtd.h>
29 #include <linux/mtd/map.h>
30 #include <linux/mtd/partitions.h>
31
32 #include <asm/io.h>
33 #include <asm/mach/flash.h>
34
35 #include <linux/reboot.h>
36
37 #ifndef __ARMEB__
38 #define BYTE0(h)        ((h) & 0xFF)
39 #define BYTE1(h)        (((h) >> 8) & 0xFF)
40 #else
41 #define BYTE0(h)        (((h) >> 8) & 0xFF)
42 #define BYTE1(h)        ((h) & 0xFF)
43 #endif
44
45 static map_word ixp4xx_read16(struct map_info *map, unsigned long ofs)
46 {
47         map_word val;
48         val.x[0] = *(__u16 *) (map->map_priv_1 + ofs);
49         return val;
50 }
51
52 /*
53  * The IXP4xx expansion bus only allows 16-bit wide acceses
54  * when attached to a 16-bit wide device (such as the 28F128J3A),
55  * so we can't just memcpy_fromio().
56  */
57 static void ixp4xx_copy_from(struct map_info *map, void *to,
58                              unsigned long from, ssize_t len)
59 {
60         int i;
61         u8 *dest = (u8 *) to;
62         u16 *src = (u16 *) (map->map_priv_1 + from);
63         u16 data;
64
65         for (i = 0; i < (len / 2); i++) {
66                 data = src[i];
67                 dest[i * 2] = BYTE0(data);
68                 dest[i * 2 + 1] = BYTE1(data);
69         }
70
71         if (len & 1)
72                 dest[len - 1] = BYTE0(src[i]);
73 }
74
75 /* 
76  * Unaligned writes are ignored, causing the 8-bit
77  * probe to fail and proceed to the 16-bit probe (which succeeds).
78  */
79 static void ixp4xx_probe_write16(struct map_info *map, map_word d, unsigned long adr)
80 {
81         if (!(adr & 1))
82                *(__u16 *) (map->map_priv_1 + adr) = d.x[0];
83 }
84
85 /* 
86  * Fast write16 function without the probing check above
87  */
88 static void ixp4xx_write16(struct map_info *map, map_word d, unsigned long adr)
89 {
90        *(__u16 *) (map->map_priv_1 + adr) = d.x[0];
91 }
92
93 struct ixp4xx_flash_info {
94         struct mtd_info *mtd;
95         struct map_info map;
96         struct mtd_partition *partitions;
97         struct resource *res;
98 };
99
100 static const char *probes[] = { "RedBoot", "cmdlinepart", NULL };
101
102 static int ixp4xx_flash_remove(struct device *_dev)
103 {
104         struct platform_device *dev = to_platform_device(_dev);
105         struct flash_platform_data *plat = dev->dev.platform_data;
106         struct ixp4xx_flash_info *info = dev_get_drvdata(&dev->dev);
107         map_word d;
108
109         dev_set_drvdata(&dev->dev, NULL);
110
111         if(!info)
112                 return 0;
113
114         /*
115          * This is required for a soft reboot to work.
116          */
117         d.x[0] = 0xff;
118         ixp4xx_write16(&info->map, d, 0x55 * 0x2);
119
120         if (info->mtd) {
121                 del_mtd_partitions(info->mtd);
122                 map_destroy(info->mtd);
123         }
124         if (info->map.map_priv_1)
125                 iounmap((void *) info->map.map_priv_1);
126
127         if (info->partitions)
128                 kfree(info->partitions);
129
130         if (info->res) {
131                 release_resource(info->res);
132                 kfree(info->res);
133         }
134
135         if (plat->exit)
136                 plat->exit();
137
138         /* Disable flash write */
139         *IXP4XX_EXP_CS0 &= ~IXP4XX_FLASH_WRITABLE;
140
141         return 0;
142 }
143
144 static int ixp4xx_flash_probe(struct device *_dev)
145 {
146         struct platform_device *dev = to_platform_device(_dev);
147         struct flash_platform_data *plat = dev->dev.platform_data;
148         struct ixp4xx_flash_info *info;
149         int err = -1;
150
151         if (!plat)
152                 return -ENODEV;
153
154         if (plat->init) {
155                 err = plat->init();
156                 if (err)
157                         return err;
158         }
159
160         info = kmalloc(sizeof(struct ixp4xx_flash_info), GFP_KERNEL);
161         if(!info) {
162                 err = -ENOMEM;
163                 goto Error;
164         }       
165         memzero(info, sizeof(struct ixp4xx_flash_info));
166
167         dev_set_drvdata(&dev->dev, info);
168
169         /* 
170          * Enable flash write 
171          * TODO: Move this out to board specific code
172          */
173         *IXP4XX_EXP_CS0 |= IXP4XX_FLASH_WRITABLE;
174
175         /*
176          * Tell the MTD layer we're not 1:1 mapped so that it does
177          * not attempt to do a direct access on us.
178          */
179         info->map.phys = NO_XIP;
180         info->map.size = dev->resource->end - dev->resource->start + 1;
181
182         /*
183          * We only support 16-bit accesses for now. If and when
184          * any board use 8-bit access, we'll fixup the driver to
185          * handle that.
186          */
187         info->map.bankwidth = 2;
188         info->map.name = dev->dev.bus_id;
189         info->map.read = ixp4xx_read16,
190         info->map.write = ixp4xx_probe_write16,
191         info->map.copy_from = ixp4xx_copy_from,
192
193         info->res = request_mem_region(dev->resource->start, 
194                         dev->resource->end - dev->resource->start + 1, 
195                         "IXP4XXFlash");
196         if (!info->res) {
197                 printk(KERN_ERR "IXP4XXFlash: Could not reserve memory region\n");
198                 err = -ENOMEM;
199                 goto Error;
200         }
201
202         info->map.map_priv_1 = ioremap(dev->resource->start,
203                             dev->resource->end - dev->resource->start + 1);
204         if (!info->map.map_priv_1) {
205                 printk(KERN_ERR "IXP4XXFlash: Failed to ioremap region\n");
206                 err = -EIO;
207                 goto Error;
208         }
209
210         info->mtd = do_map_probe(plat->map_name, &info->map);
211         if (!info->mtd) {
212                 printk(KERN_ERR "IXP4XXFlash: map_probe failed\n");
213                 err = -ENXIO;
214                 goto Error;
215         }
216         info->mtd->owner = THIS_MODULE;
217         
218         /* Use the fast version */
219         info->map.write = ixp4xx_write16,
220
221         err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0);
222         if (err > 0) {
223                 err = add_mtd_partitions(info->mtd, info->partitions, err);
224                 if(err)
225                         printk(KERN_ERR "Could not parse partitions\n");
226         }
227
228         if (err)
229                 goto Error;
230
231         return 0;
232
233 Error:
234         ixp4xx_flash_remove(_dev);
235         return err;
236 }
237
238 static struct device_driver ixp4xx_flash_driver = {
239         .name           = "IXP4XX-Flash",
240         .bus            = &platform_bus_type,
241         .probe          = ixp4xx_flash_probe,
242         .remove         = ixp4xx_flash_remove,
243 };
244
245 static int __init ixp4xx_flash_init(void)
246 {
247         return driver_register(&ixp4xx_flash_driver);
248 }
249
250 static void __exit ixp4xx_flash_exit(void)
251 {
252         driver_unregister(&ixp4xx_flash_driver);
253 }
254
255
256 module_init(ixp4xx_flash_init);
257 module_exit(ixp4xx_flash_exit);
258
259 MODULE_LICENSE("GPL");
260 MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems");
261 MODULE_AUTHOR("Deepak Saxena");
262