blob: b7858eb935347acb767d2961de8896027b4b1674 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/drivers/mtd/maps/bast_flash.c
2 *
Ben Dooks6fc93d82005-01-18 11:13:50 +00003 * Copyright (c) 2004-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Simtec Bast (EB2410ITX) NOR MTD Mapping driver
7 *
8 * Changelog:
9 * 20-Sep-2004 BJD Initial version
Ben Dooks6fc93d82005-01-18 11:13:50 +000010 * 17-Jan-2005 BJD Add whole device if no partitions found
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Thomas Gleixner69f34c92005-11-07 11:15:40 +000012 * $Id: bast-flash.c,v 1.5 2005/11/07 11:14:26 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27*/
28
29#include <linux/module.h>
30#include <linux/types.h>
31#include <linux/init.h>
32#include <linux/kernel.h>
33#include <linux/string.h>
34#include <linux/ioport.h>
35#include <linux/device.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080036#include <linux/slab.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010037#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/mtd/mtd.h>
39#include <linux/mtd/map.h>
40#include <linux/mtd/partitions.h>
41
42#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mach/flash.h>
44
45#include <asm/arch/map.h>
46#include <asm/arch/bast-map.h>
47#include <asm/arch/bast-cpld.h>
48
49#ifdef CONFIG_MTD_BAST_MAXSIZE
Ben Dooks6fc93d82005-01-18 11:13:50 +000050#define AREA_MAXSIZE (CONFIG_MTD_BAST_MAXSIZE * SZ_1M)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#else
Ben Dooks6fc93d82005-01-18 11:13:50 +000052#define AREA_MAXSIZE (32 * SZ_1M)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif
54
55#define PFX "bast-flash: "
56
57struct bast_flash_info {
58 struct mtd_info *mtd;
59 struct map_info map;
60 struct mtd_partition *partitions;
61 struct resource *area;
62};
63
64static const char *probes[] = { "RedBoot", "cmdlinepart", NULL };
65
66static struct bast_flash_info *to_bast_info(struct device *dev)
67{
68 return (struct bast_flash_info *)dev_get_drvdata(dev);
69}
70
71static void bast_flash_setrw(int to)
72{
73 unsigned int val;
74 unsigned long flags;
75
76 local_irq_save(flags);
77 val = __raw_readb(BAST_VA_CTRL3);
Thomas Gleixner69f34c92005-11-07 11:15:40 +000078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (to)
80 val |= BAST_CPLD_CTRL3_ROMWEN;
81 else
82 val &= ~BAST_CPLD_CTRL3_ROMWEN;
83
84 pr_debug("new cpld ctrl3=%02x\n", val);
85
86 __raw_writeb(val, BAST_VA_CTRL3);
87 local_irq_restore(flags);
88}
89
90static int bast_flash_remove(struct device *dev)
91{
92 struct bast_flash_info *info = to_bast_info(dev);
93
94 dev_set_drvdata(dev, NULL);
95
Thomas Gleixner69f34c92005-11-07 11:15:40 +000096 if (info == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return 0;
98
99 if (info->map.virt != NULL)
100 iounmap(info->map.virt);
101
102 if (info->mtd) {
103 del_mtd_partitions(info->mtd);
104 map_destroy(info->mtd);
105 }
106
Jesper Juhlfa671642005-11-07 01:01:27 -0800107 kfree(info->partitions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 if (info->area) {
110 release_resource(info->area);
111 kfree(info->area);
112 }
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 kfree(info);
115
116 return 0;
117}
118
119static int bast_flash_probe(struct device *dev)
120{
121 struct platform_device *pdev = to_platform_device(dev);
122 struct bast_flash_info *info;
123 struct resource *res;
124 int err = 0;
125
126 info = kmalloc(sizeof(*info), GFP_KERNEL);
127 if (info == NULL) {
128 printk(KERN_ERR PFX "no memory for flash info\n");
129 err = -ENOMEM;
130 goto exit_error;
131 }
132
133 memzero(info, sizeof(*info));
134 dev_set_drvdata(dev, info);
135
136 res = pdev->resource; /* assume that the flash has one resource */
137
138 info->map.phys = res->start;
139 info->map.size = res->end - res->start + 1;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000140 info->map.name = dev->bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 info->map.bankwidth = 2;
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (info->map.size > AREA_MAXSIZE)
144 info->map.size = AREA_MAXSIZE;
145
146 pr_debug("%s: area %08lx, size %ld\n", __FUNCTION__,
147 info->map.phys, info->map.size);
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 info->area = request_mem_region(res->start, info->map.size,
150 pdev->name);
151 if (info->area == NULL) {
152 printk(KERN_ERR PFX "cannot reserve flash memory region\n");
153 err = -ENOENT;
154 goto exit_error;
155 }
156
157 info->map.virt = ioremap(res->start, info->map.size);
158 pr_debug("%s: virt at %08x\n", __FUNCTION__, (int)info->map.virt);
159
160 if (info->map.virt == 0) {
161 printk(KERN_ERR PFX "failed to ioremap() region\n");
162 err = -EIO;
163 goto exit_error;
164 }
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 simple_map_init(&info->map);
167
168 /* enable the write to the flash area */
169
170 bast_flash_setrw(1);
171
172 /* probe for the device(s) */
173
174 info->mtd = do_map_probe("jedec_probe", &info->map);
175 if (info->mtd == NULL)
176 info->mtd = do_map_probe("cfi_probe", &info->map);
177
178 if (info->mtd == NULL) {
179 printk(KERN_ERR PFX "map_probe() failed\n");
180 err = -ENXIO;
181 goto exit_error;
182 }
183
184 /* mark ourselves as the owner */
185 info->mtd->owner = THIS_MODULE;
186
187 err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0);
188 if (err > 0) {
189 err = add_mtd_partitions(info->mtd, info->partitions, err);
Thomas Gleixner69f34c92005-11-07 11:15:40 +0000190 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 printk(KERN_ERR PFX "cannot add/parse partitions\n");
Ben Dooks6fc93d82005-01-18 11:13:50 +0000192 } else {
193 err = add_mtd_device(info->mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
196 if (err == 0)
197 return 0;
198
199 /* fall through to exit error */
200
201 exit_error:
202 bast_flash_remove(dev);
203 return err;
204}
205
206static struct device_driver bast_flash_driver = {
207 .name = "bast-nor",
Ben Dookse0030b62005-10-10 01:13:41 +0100208 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 .bus = &platform_bus_type,
210 .probe = bast_flash_probe,
211 .remove = bast_flash_remove,
212};
213
214static int __init bast_flash_init(void)
215{
216 printk("BAST NOR-Flash Driver, (c) 2004 Simtec Electronics\n");
217 return driver_register(&bast_flash_driver);
218}
219
220static void __exit bast_flash_exit(void)
221{
222 driver_unregister(&bast_flash_driver);
223}
224
225module_init(bast_flash_init);
226module_exit(bast_flash_exit);
227
228MODULE_LICENSE("GPL");
229MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
230MODULE_DESCRIPTION("BAST MTD Map driver");