blob: 0d87c02dee046f32070427b8e743ac550fa1f8ed [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tim Schmielau4e57b682005-10-30 15:03:48 -080023#include <linux/slab.h>
24#include <linux/ioport.h>
25#include <linux/device.h>
Linus Torvalds4fd5f822005-10-31 07:32:56 -080026#include <linux/platform_device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mtd/mtd.h>
29#include <linux/mtd/map.h>
30#include <linux/mtd/partitions.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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
45static 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 */
57static 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 */
79static 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 */
88static 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
93struct ixp4xx_flash_info {
94 struct mtd_info *mtd;
95 struct map_info map;
96 struct mtd_partition *partitions;
97 struct resource *res;
98};
99
100static const char *probes[] = { "RedBoot", "cmdlinepart", NULL };
101
102static 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
Jesper Juhlfa671642005-11-07 01:01:27 -0800127 kfree(info->partitions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (info->res) {
130 release_resource(info->res);
131 kfree(info->res);
132 }
133
134 if (plat->exit)
135 plat->exit();
136
137 /* Disable flash write */
138 *IXP4XX_EXP_CS0 &= ~IXP4XX_FLASH_WRITABLE;
139
140 return 0;
141}
142
143static int ixp4xx_flash_probe(struct device *_dev)
144{
145 struct platform_device *dev = to_platform_device(_dev);
146 struct flash_platform_data *plat = dev->dev.platform_data;
147 struct ixp4xx_flash_info *info;
148 int err = -1;
149
150 if (!plat)
151 return -ENODEV;
152
153 if (plat->init) {
154 err = plat->init();
155 if (err)
156 return err;
157 }
158
159 info = kmalloc(sizeof(struct ixp4xx_flash_info), GFP_KERNEL);
160 if(!info) {
161 err = -ENOMEM;
162 goto Error;
163 }
164 memzero(info, sizeof(struct ixp4xx_flash_info));
165
166 dev_set_drvdata(&dev->dev, info);
167
168 /*
169 * Enable flash write
170 * TODO: Move this out to board specific code
171 */
172 *IXP4XX_EXP_CS0 |= IXP4XX_FLASH_WRITABLE;
173
174 /*
175 * Tell the MTD layer we're not 1:1 mapped so that it does
176 * not attempt to do a direct access on us.
177 */
178 info->map.phys = NO_XIP;
179 info->map.size = dev->resource->end - dev->resource->start + 1;
180
181 /*
182 * We only support 16-bit accesses for now. If and when
183 * any board use 8-bit access, we'll fixup the driver to
184 * handle that.
185 */
186 info->map.bankwidth = 2;
187 info->map.name = dev->dev.bus_id;
188 info->map.read = ixp4xx_read16,
189 info->map.write = ixp4xx_probe_write16,
190 info->map.copy_from = ixp4xx_copy_from,
191
192 info->res = request_mem_region(dev->resource->start,
193 dev->resource->end - dev->resource->start + 1,
194 "IXP4XXFlash");
195 if (!info->res) {
196 printk(KERN_ERR "IXP4XXFlash: Could not reserve memory region\n");
197 err = -ENOMEM;
198 goto Error;
199 }
200
201 info->map.map_priv_1 = ioremap(dev->resource->start,
202 dev->resource->end - dev->resource->start + 1);
203 if (!info->map.map_priv_1) {
204 printk(KERN_ERR "IXP4XXFlash: Failed to ioremap region\n");
205 err = -EIO;
206 goto Error;
207 }
208
209 info->mtd = do_map_probe(plat->map_name, &info->map);
210 if (!info->mtd) {
211 printk(KERN_ERR "IXP4XXFlash: map_probe failed\n");
212 err = -ENXIO;
213 goto Error;
214 }
215 info->mtd->owner = THIS_MODULE;
216
217 /* Use the fast version */
218 info->map.write = ixp4xx_write16,
219
220 err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0);
221 if (err > 0) {
222 err = add_mtd_partitions(info->mtd, info->partitions, err);
223 if(err)
224 printk(KERN_ERR "Could not parse partitions\n");
225 }
226
227 if (err)
228 goto Error;
229
230 return 0;
231
232Error:
233 ixp4xx_flash_remove(_dev);
234 return err;
235}
236
237static struct device_driver ixp4xx_flash_driver = {
238 .name = "IXP4XX-Flash",
239 .bus = &platform_bus_type,
240 .probe = ixp4xx_flash_probe,
241 .remove = ixp4xx_flash_remove,
242};
243
244static int __init ixp4xx_flash_init(void)
245{
246 return driver_register(&ixp4xx_flash_driver);
247}
248
249static void __exit ixp4xx_flash_exit(void)
250{
251 driver_unregister(&ixp4xx_flash_driver);
252}
253
254
255module_init(ixp4xx_flash_init);
256module_exit(ixp4xx_flash_exit);
257
258MODULE_LICENSE("GPL");
Deepak Saxena82810a92005-09-28 16:42:54 -0700259MODULE_DESCRIPTION("MTD map driver for Intel IXP4xx systems");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260MODULE_AUTHOR("Deepak Saxena");
261