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