blob: c8396b8574c4624debf97d0846ab0a88dd07867f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Thomas Gleixner69f34c92005-11-07 11:15:40 +00002 * $Id: ixp2000.c,v 1.9 2005/11/07 11:14:27 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * drivers/mtd/maps/ixp2000.c
5 *
6 * Mapping for the Intel XScale IXP2000 based systems
7 *
8 * Copyright (C) 2002 Intel Corp.
9 * Copyright (C) 2003-2004 MontaVista Software, Inc.
10 *
11 * Original Author: Naeem M Afzal <naeem.m.afzal@intel.com>
12 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
Thomas Gleixner69f34c92005-11-07 11:15:40 +000017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/init.h>
23#include <linux/kernel.h>
24#include <linux/string.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080025#include <linux/slab.h>
26#include <linux/ioport.h>
27#include <linux/device.h>
Linus Torvalds4fd5f822005-10-31 07:32:56 -080028#include <linux/platform_device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/mtd/mtd.h>
31#include <linux/mtd/map.h>
32#include <linux/mtd/partitions.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/io.h>
35#include <asm/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/mach/flash.h>
37
38#include <linux/reboot.h>
39
40struct ixp2000_flash_info {
41 struct mtd_info *mtd;
42 struct map_info map;
43 struct mtd_partition *partitions;
44 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
47static inline unsigned long flash_bank_setup(struct map_info *map, unsigned long ofs)
Thomas Gleixner69f34c92005-11-07 11:15:40 +000048{
49 unsigned long (*set_bank)(unsigned long) =
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 (unsigned long(*)(unsigned long))map->map_priv_2;
51
52 return (set_bank ? set_bank(ofs) : ofs);
53}
54
55#ifdef __ARMEB__
56/*
Thomas Gleixner69f34c92005-11-07 11:15:40 +000057 * Rev A0 and A1 of IXP2400 silicon have a broken addressing unit which
58 * causes the lower address bits to be XORed with 0x11 on 8 bit accesses
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * and XORed with 0x10 on 16 bit accesses. See the spec update, erratum 44.
60 */
61static int erratum44_workaround = 0;
62
63static inline unsigned long address_fix8_write(unsigned long addr)
64{
65 if (erratum44_workaround) {
66 return (addr ^ 3);
67 }
68 return addr;
69}
70#else
71
72#define address_fix8_write(x) (x)
73#endif
74
75static map_word ixp2000_flash_read8(struct map_info *map, unsigned long ofs)
76{
77 map_word val;
78
79 val.x[0] = *((u8 *)(map->map_priv_1 + flash_bank_setup(map, ofs)));
80 return val;
81}
82
83/*
84 * We can't use the standard memcpy due to the broken SlowPort
85 * address translation on rev A0 and A1 silicon and the fact that
86 * we have banked flash.
87 */
88static void ixp2000_flash_copy_from(struct map_info *map, void *to,
89 unsigned long from, ssize_t len)
90{
91 from = flash_bank_setup(map, from);
Thomas Gleixner69f34c92005-11-07 11:15:40 +000092 while(len--)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *(__u8 *) to++ = *(__u8 *)(map->map_priv_1 + from++);
94}
95
96static void ixp2000_flash_write8(struct map_info *map, map_word d, unsigned long ofs)
97{
98 *(__u8 *) (address_fix8_write(map->map_priv_1 +
99 flash_bank_setup(map, ofs))) = d.x[0];
100}
101
102static void ixp2000_flash_copy_to(struct map_info *map, unsigned long to,
103 const void *from, ssize_t len)
104{
105 to = flash_bank_setup(map, to);
106 while(len--) {
107 unsigned long tmp = address_fix8_write(map->map_priv_1 + to++);
108 *(__u8 *)(tmp) = *(__u8 *)(from++);
109 }
110}
111
112
Russell King3ae5eae2005-11-09 22:32:44 +0000113static int ixp2000_flash_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct flash_platform_data *plat = dev->dev.platform_data;
Russell King3ae5eae2005-11-09 22:32:44 +0000116 struct ixp2000_flash_info *info = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Russell King3ae5eae2005-11-09 22:32:44 +0000118 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if(!info)
121 return 0;
122
123 if (info->mtd) {
124 del_mtd_partitions(info->mtd);
125 map_destroy(info->mtd);
126 }
127 if (info->map.map_priv_1)
128 iounmap((void *) info->map.map_priv_1);
129
Jesper Juhlfa671642005-11-07 01:01:27 -0800130 kfree(info->partitions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 if (info->res) {
133 release_resource(info->res);
134 kfree(info->res);
135 }
136
137 if (plat->exit)
138 plat->exit();
139
140 return 0;
141}
142
143
Russell King3ae5eae2005-11-09 22:32:44 +0000144static int ixp2000_flash_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 static const char *probes[] = { "RedBoot", "cmdlinepart", NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 struct ixp2000_flash_data *ixp_data = dev->dev.platform_data;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000148 struct flash_platform_data *plat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct ixp2000_flash_info *info;
150 unsigned long window_size;
151 int err = -1;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!ixp_data)
154 return -ENODEV;
155
156 plat = ixp_data->platform_data;
157 if (!plat)
158 return -ENODEV;
159
160 window_size = dev->resource->end - dev->resource->start + 1;
Russell King7d78c882005-11-17 15:47:30 +0000161 dev_info(&dev->dev, "Probe of IXP2000 flash(%d banks x %dMiB)\n",
162 ixp_data->nr_banks, ((u32)window_size >> 20));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 if (plat->width != 1) {
Russell King7d78c882005-11-17 15:47:30 +0000165 dev_err(&dev->dev, "IXP2000 MTD map only supports 8-bit mode, asking for %d\n",
166 plat->width * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -EIO;
168 }
169
170 info = kmalloc(sizeof(struct ixp2000_flash_info), GFP_KERNEL);
171 if(!info) {
172 err = -ENOMEM;
173 goto Error;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 memzero(info, sizeof(struct ixp2000_flash_info));
176
Russell King3ae5eae2005-11-09 22:32:44 +0000177 platform_set_drvdata(dev, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /*
180 * Tell the MTD layer we're not 1:1 mapped so that it does
181 * not attempt to do a direct access on us.
182 */
183 info->map.phys = NO_XIP;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 info->map.size = ixp_data->nr_banks * window_size;
186 info->map.bankwidth = 1;
187
188 /*
189 * map_priv_2 is used to store a ptr to to the bank_setup routine
190 */
Lennert Buytenhekea176292005-11-07 08:09:05 +0000191 info->map.map_priv_2 = (unsigned long) ixp_data->bank_setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 info->map.name = dev->dev.bus_id;
194 info->map.read = ixp2000_flash_read8;
195 info->map.write = ixp2000_flash_write8;
196 info->map.copy_from = ixp2000_flash_copy_from;
197 info->map.copy_to = ixp2000_flash_copy_to;
198
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000199 info->res = request_mem_region(dev->resource->start,
200 dev->resource->end - dev->resource->start + 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dev->dev.bus_id);
202 if (!info->res) {
Russell King7d78c882005-11-17 15:47:30 +0000203 dev_err(&dev->dev, "Could not reserve memory region\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 err = -ENOMEM;
205 goto Error;
206 }
207
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000208 info->map.map_priv_1 = (unsigned long) ioremap(dev->resource->start,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dev->resource->end - dev->resource->start + 1);
210 if (!info->map.map_priv_1) {
Russell King7d78c882005-11-17 15:47:30 +0000211 dev_err(&dev->dev, "Failed to ioremap flash region\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 err = -EIO;
213 goto Error;
214 }
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#if defined(__ARMEB__)
217 /*
218 * Enable erratum 44 workaround for NPUs with broken slowport
219 */
220
221 erratum44_workaround = ixp2000_has_broken_slowport();
Russell King7d78c882005-11-17 15:47:30 +0000222 dev_info(&dev->dev, "Erratum 44 workaround %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 erratum44_workaround ? "enabled" : "disabled");
224#endif
225
226 info->mtd = do_map_probe(plat->map_name, &info->map);
227 if (!info->mtd) {
Russell King7d78c882005-11-17 15:47:30 +0000228 dev_err(&dev->dev, "map_probe failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 err = -ENXIO;
230 goto Error;
231 }
232 info->mtd->owner = THIS_MODULE;
233
234 err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0);
235 if (err > 0) {
236 err = add_mtd_partitions(info->mtd, info->partitions, err);
237 if(err)
Russell King7d78c882005-11-17 15:47:30 +0000238 dev_err(&dev->dev, "Could not parse partitions\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240
241 if (err)
242 goto Error;
243
244 return 0;
245
246Error:
Russell King3ae5eae2005-11-09 22:32:44 +0000247 ixp2000_flash_remove(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return err;
249}
250
Russell King3ae5eae2005-11-09 22:32:44 +0000251static struct platform_driver ixp2000_flash_driver = {
Russell King7d78c882005-11-17 15:47:30 +0000252 .probe = ixp2000_flash_probe,
253 .remove = ixp2000_flash_remove,
Russell King3ae5eae2005-11-09 22:32:44 +0000254 .driver = {
255 .name = "IXP2000-Flash",
Kay Sievers41d867c2008-04-18 13:44:26 -0700256 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +0000257 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
260static int __init ixp2000_flash_init(void)
261{
Russell King3ae5eae2005-11-09 22:32:44 +0000262 return platform_driver_register(&ixp2000_flash_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265static void __exit ixp2000_flash_exit(void)
266{
Russell King3ae5eae2005-11-09 22:32:44 +0000267 platform_driver_unregister(&ixp2000_flash_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270module_init(ixp2000_flash_init);
271module_exit(ixp2000_flash_exit);
272MODULE_LICENSE("GPL");
273MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>");
Kay Sievers41d867c2008-04-18 13:44:26 -0700274MODULE_ALIAS("platform:IXP2000-Flash");