blob: bc99817490649572ced4f09e01ec2606c252a854 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Thomas Gleixnere5580fb2005-11-07 11:15:40 +00002 * $Id: pmc551.c,v 1.32 2005/11/07 11:14:25 gleixner Exp $
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * PMC551 PCI Mezzanine Ram Device
5 *
6 * Author:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +02007 * Mark Ferrell <mferrell@mvista.com>
8 * Copyright 1999,2000 Nortel Networks
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * License:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020011 * As part of this driver was derived from the slram.c driver it
12 * falls under the same license, which is GNU General Public
13 * License v2
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 * Description:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020016 * This driver is intended to support the PMC551 PCI Ram device
17 * from Ramix Inc. The PMC551 is a PMC Mezzanine module for
18 * cPCI embedded systems. The device contains a single SROM
19 * that initially programs the V370PDC chipset onboard the
20 * device, and various banks of DRAM/SDRAM onboard. This driver
21 * implements this PCI Ram device as an MTD (Memory Technology
22 * Device) so that it can be used to hold a file system, or for
23 * added swap space in embedded systems. Since the memory on
24 * this board isn't as fast as main memory we do not try to hook
25 * it into main memory as that would simply reduce performance
26 * on the system. Using it as a block device allows us to use
27 * it as high speed swap or for a high speed disk device of some
28 * sort. Which becomes very useful on diskless systems in the
29 * embedded market I might add.
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Notes:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020032 * Due to what I assume is more buggy SROM, the 64M PMC551 I
David Woodhouse8e0aedc2007-06-29 14:18:22 +010033 * have available claims that all 4 of its DRAM banks have 64MiB
34 * of ram configured (making a grand total of 256MiB onboard).
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020035 * This is slightly annoying since the BAR0 size reflects the
36 * aperture size, not the dram size, and the V370PDC supplies no
37 * other method for memory size discovery. This problem is
38 * mostly only relevant when compiled as a module, as the
39 * unloading of the module with an aperture size smaller then
40 * the ram will cause the driver to detect the onboard memory
41 * size to be equal to the aperture size when the module is
42 * reloaded. Soooo, to help, the module supports an msize
43 * option to allow the specification of the onboard memory, and
44 * an asize option, to allow the specification of the aperture
45 * size. The aperture must be equal to or less then the memory
46 * size, the driver will correct this if you screw it up. This
47 * problem is not relevant for compiled in drivers as compiled
48 * in drivers only init once.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 *
50 * Credits:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020051 * Saeed Karamooz <saeed@ramix.com> of Ramix INC. for the
52 * initial example code of how to initialize this device and for
53 * help with questions I had concerning operation of the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 *
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020055 * Most of the MTD code for this driver was originally written
56 * for the slram.o module in the MTD drivers package which
57 * allows the mapping of system memory into an MTD device.
58 * Since the PMC551 memory module is accessed in the same
59 * fashion as system memory, the slram.c code became a very nice
60 * fit to the needs of this driver. All we added was PCI
61 * detection/initialization to the driver and automatically figure
62 * out the size via the PCI detection.o, later changes by Corey
63 * Minyard set up the card to utilize a 1M sliding apature.
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 *
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020065 * Corey Minyard <minyard@nortelnetworks.com>
66 * * Modified driver to utilize a sliding aperture instead of
67 * mapping all memory into kernel space which turned out to
68 * be very wasteful.
69 * * Located a bug in the SROM's initialization sequence that
70 * made the memory unusable, added a fix to code to touch up
71 * the DRAM some.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 *
David Woodhouse8e0aedc2007-06-29 14:18:22 +010073 * Bugs/FIXMEs:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020074 * * MUST fix the init function to not spin on a register
75 * waiting for it to set .. this does not safely handle busted
76 * devices that never reset the register correctly which will
77 * cause the system to hang w/ a reboot being the only chance at
78 * recover. [sort of fixed, could be better]
79 * * Add I2C handling of the SROM so we can read the SROM's information
80 * about the aperture size. This should always accurately reflect the
81 * onboard memory size.
82 * * Comb the init routine. It's still a bit cludgy on a few things.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/kernel.h>
86#include <linux/module.h>
87#include <asm/uaccess.h>
88#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/init.h>
90#include <linux/ptrace.h>
91#include <linux/slab.h>
92#include <linux/string.h>
93#include <linux/timer.h>
94#include <linux/major.h>
95#include <linux/fs.h>
96#include <linux/ioctl.h>
97#include <asm/io.h>
98#include <asm/system.h>
99#include <linux/pci.h>
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/mtd/mtd.h>
102#include <linux/mtd/pmc551.h>
103#include <linux/mtd/compatmac.h>
104
105static struct mtd_info *pmc551list;
106
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200107static int pmc551_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200109 struct mypriv *priv = mtd->priv;
110 u32 soff_hi, soff_lo; /* start address offset hi/lo */
111 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
112 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 u_char *ptr;
114 size_t retlen;
115
116#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200117 printk(KERN_DEBUG "pmc551_erase(pos:%ld, len:%ld)\n", (long)instr->addr,
118 (long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#endif
120
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200121 end = instr->addr + instr->len - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200123 /* Is it past the end? */
124 if (end > mtd->size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200126 printk(KERN_DEBUG "pmc551_erase() out of bounds (%ld > %ld)\n",
127 (long)end, (long)mtd->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200129 return -EINVAL;
130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200132 eoff_hi = end & ~(priv->asize - 1);
133 soff_hi = instr->addr & ~(priv->asize - 1);
134 eoff_lo = end & (priv->asize - 1);
135 soff_lo = instr->addr & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Jared Hulberta98889f2008-04-29 23:26:49 -0700137 pmc551_point(mtd, instr->addr, instr->len, &retlen,
138 (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200140 if (soff_hi == eoff_hi || mtd->size == priv->asize) {
141 /* The whole thing fits within one access, so just one shot
142 will do it. */
143 memset(ptr, 0xff, instr->len);
144 } else {
145 /* We have to do multiple writes to get all the data
146 written. */
147 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200149 printk(KERN_DEBUG "pmc551_erase() soff_hi: %ld, "
150 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200152 memset(ptr, 0xff, priv->asize);
153 if (soff_hi + priv->asize >= mtd->size) {
154 goto out;
155 }
156 soff_hi += priv->asize;
157 pmc551_point(mtd, (priv->base_map0 | soff_hi),
Jared Hulberta98889f2008-04-29 23:26:49 -0700158 priv->asize, &retlen,
159 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200160 }
161 memset(ptr, 0xff, eoff_lo);
162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200164 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 instr->state = MTD_ERASE_DONE;
166#ifdef CONFIG_MTD_PMC551_DEBUG
167 printk(KERN_DEBUG "pmc551_erase() done\n");
168#endif
169
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200170 mtd_erase_callback(instr);
171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200174static int pmc551_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -0700175 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200177 struct mypriv *priv = mtd->priv;
178 u32 soff_hi;
179 u32 soff_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181#ifdef CONFIG_MTD_PMC551_DEBUG
182 printk(KERN_DEBUG "pmc551_point(%ld, %ld)\n", (long)from, (long)len);
183#endif
184
185 if (from + len > mtd->size) {
186#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200187 printk(KERN_DEBUG "pmc551_point() out of bounds (%ld > %ld)\n",
188 (long)from + len, (long)mtd->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#endif
190 return -EINVAL;
191 }
192
Jared Hulberta98889f2008-04-29 23:26:49 -0700193 /* can we return a physical address with this driver? */
194 if (phys)
195 return -EINVAL;
196
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200197 soff_hi = from & ~(priv->asize - 1);
198 soff_lo = from & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* Cheap hack optimization */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200201 if (priv->curr_map0 != from) {
202 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
203 (priv->base_map0 | soff_hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 priv->curr_map0 = soff_hi;
205 }
206
Jared Hulberta98889f2008-04-29 23:26:49 -0700207 *virt = priv->start + soff_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 *retlen = len;
209 return 0;
210}
211
Jared Hulberta98889f2008-04-29 23:26:49 -0700212static void pmc551_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
214#ifdef CONFIG_MTD_PMC551_DEBUG
215 printk(KERN_DEBUG "pmc551_unpoint()\n");
216#endif
217}
218
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200219static int pmc551_read(struct mtd_info *mtd, loff_t from, size_t len,
220 size_t * retlen, u_char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200222 struct mypriv *priv = mtd->priv;
223 u32 soff_hi, soff_lo; /* start address offset hi/lo */
224 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
225 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 u_char *ptr;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200227 u_char *copyto = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200230 printk(KERN_DEBUG "pmc551_read(pos:%ld, len:%ld) asize: %ld\n",
231 (long)from, (long)len, (long)priv->asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#endif
233
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200234 end = from + len - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200236 /* Is it past the end? */
237 if (end > mtd->size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200239 printk(KERN_DEBUG "pmc551_read() out of bounds (%ld > %ld)\n",
240 (long)end, (long)mtd->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200242 return -EINVAL;
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200245 soff_hi = from & ~(priv->asize - 1);
246 eoff_hi = end & ~(priv->asize - 1);
247 soff_lo = from & (priv->asize - 1);
248 eoff_lo = end & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Jared Hulberta98889f2008-04-29 23:26:49 -0700250 pmc551_point(mtd, from, len, retlen, (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200252 if (soff_hi == eoff_hi) {
253 /* The whole thing fits within one access, so just one shot
254 will do it. */
255 memcpy(copyto, ptr, len);
256 copyto += len;
257 } else {
258 /* We have to do multiple writes to get all the data
259 written. */
260 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200262 printk(KERN_DEBUG "pmc551_read() soff_hi: %ld, "
263 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200265 memcpy(copyto, ptr, priv->asize);
266 copyto += priv->asize;
267 if (soff_hi + priv->asize >= mtd->size) {
268 goto out;
269 }
270 soff_hi += priv->asize;
Jared Hulberta98889f2008-04-29 23:26:49 -0700271 pmc551_point(mtd, soff_hi, priv->asize, retlen,
272 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200273 }
274 memcpy(copyto, ptr, eoff_lo);
275 copyto += eoff_lo;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200278 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#ifdef CONFIG_MTD_PMC551_DEBUG
280 printk(KERN_DEBUG "pmc551_read() done\n");
281#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200282 *retlen = copyto - buf;
283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200286static int pmc551_write(struct mtd_info *mtd, loff_t to, size_t len,
287 size_t * retlen, const u_char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200289 struct mypriv *priv = mtd->priv;
290 u32 soff_hi, soff_lo; /* start address offset hi/lo */
291 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
292 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 u_char *ptr;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200294 const u_char *copyfrom = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200297 printk(KERN_DEBUG "pmc551_write(pos:%ld, len:%ld) asize:%ld\n",
298 (long)to, (long)len, (long)priv->asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#endif
300
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200301 end = to + len - 1;
302 /* Is it past the end? or did the u32 wrap? */
303 if (end > mtd->size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200305 printk(KERN_DEBUG "pmc551_write() out of bounds (end: %ld, "
306 "size: %ld, to: %ld)\n", (long)end, (long)mtd->size,
307 (long)to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200309 return -EINVAL;
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200312 soff_hi = to & ~(priv->asize - 1);
313 eoff_hi = end & ~(priv->asize - 1);
314 soff_lo = to & (priv->asize - 1);
315 eoff_lo = end & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Jared Hulberta98889f2008-04-29 23:26:49 -0700317 pmc551_point(mtd, to, len, retlen, (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200319 if (soff_hi == eoff_hi) {
320 /* The whole thing fits within one access, so just one shot
321 will do it. */
322 memcpy(ptr, copyfrom, len);
323 copyfrom += len;
324 } else {
325 /* We have to do multiple writes to get all the data
326 written. */
327 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200329 printk(KERN_DEBUG "pmc551_write() soff_hi: %ld, "
330 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200332 memcpy(ptr, copyfrom, priv->asize);
333 copyfrom += priv->asize;
334 if (soff_hi >= mtd->size) {
335 goto out;
336 }
337 soff_hi += priv->asize;
Jared Hulberta98889f2008-04-29 23:26:49 -0700338 pmc551_point(mtd, soff_hi, priv->asize, retlen,
339 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200340 }
341 memcpy(ptr, copyfrom, eoff_lo);
342 copyfrom += eoff_lo;
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200345 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#ifdef CONFIG_MTD_PMC551_DEBUG
347 printk(KERN_DEBUG "pmc551_write() done\n");
348#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200349 *retlen = copyfrom - buf;
350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/*
354 * Fixup routines for the V370PDC
355 * PCI device ID 0x020011b0
356 *
357 * This function basicly kick starts the DRAM oboard the card and gets it
358 * ready to be used. Before this is done the device reads VERY erratic, so
359 * much that it can crash the Linux 2.2.x series kernels when a user cat's
360 * /proc/pci .. though that is mainly a kernel bug in handling the PCI DEVSEL
361 * register. FIXME: stop spinning on registers .. must implement a timeout
362 * mechanism
363 * returns the size of the memory region found.
364 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200365static u32 fixup_pmc551(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367#ifdef CONFIG_MTD_PMC551_BUGFIX
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200368 u32 dram_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200370 u32 size, dcmd, cfg, dtmp;
371 u16 cmd, tmp, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 u8 bcmd, counter;
373
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200374 /* Sanity Check */
375 if (!dev) {
376 return -ENODEV;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /*
380 * Attempt to reset the card
381 * FIXME: Stop Spinning registers
382 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200383 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* unlock registers */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200385 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, 0xA5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* read in old data */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200387 pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* bang the reset line up and down for a few */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200389 for (i = 0; i < 10; i++) {
390 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 bcmd &= ~0x80;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200392 while (counter++ < 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
394 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200395 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 bcmd |= 0x80;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200397 while (counter++ < 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
399 }
400 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200401 bcmd |= (0x40 | 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
403
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200404 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * Take care and turn off the memory on the device while we
406 * tweak the configurations
407 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200408 pci_read_config_word(dev, PCI_COMMAND, &cmd);
409 tmp = cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
410 pci_write_config_word(dev, PCI_COMMAND, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /*
413 * Disable existing aperture before probing memory size
414 */
415 pci_read_config_dword(dev, PMC551_PCI_MEM_MAP0, &dcmd);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200416 dtmp = (dcmd | PMC551_PCI_MEM_MAP_ENABLE | PMC551_PCI_MEM_MAP_REG_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 pci_write_config_dword(dev, PMC551_PCI_MEM_MAP0, dtmp);
418 /*
419 * Grab old BAR0 config so that we can figure out memory size
420 * This is another bit of kludge going on. The reason for the
421 * redundancy is I am hoping to retain the original configuration
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000422 * previously assigned to the card by the BIOS or some previous
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * fixup routine in the kernel. So we read the old config into cfg,
424 * then write all 1's to the memory space, read back the result into
425 * "size", and then write back all the old config.
426 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200427 pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#ifndef CONFIG_MTD_PMC551_BUGFIX
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200429 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, ~0);
430 pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &size);
431 size = (size & PCI_BASE_ADDRESS_MEM_MASK);
432 size &= ~(size - 1);
433 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#else
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200435 /*
436 * Get the size of the memory by reading all the DRAM size values
437 * and adding them up.
438 *
439 * KLUDGE ALERT: the boards we are using have invalid column and
440 * row mux values. We fix them here, but this will break other
441 * memory configurations.
442 */
443 pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dram_data);
444 size = PMC551_DRAM_BLK_GET_SIZE(dram_data);
445 dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
446 dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
447 pci_write_config_dword(dev, PMC551_DRAM_BLK0, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200449 pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dram_data);
450 size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
451 dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
452 dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
453 pci_write_config_dword(dev, PMC551_DRAM_BLK1, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200455 pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dram_data);
456 size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
457 dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
458 dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
459 pci_write_config_dword(dev, PMC551_DRAM_BLK2, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200461 pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dram_data);
462 size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
463 dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
464 dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
465 pci_write_config_dword(dev, PMC551_DRAM_BLK3, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200467 /*
468 * Oops .. something went wrong
469 */
470 if ((size &= PCI_BASE_ADDRESS_MEM_MASK) == 0) {
471 return -ENODEV;
472 }
473#endif /* CONFIG_MTD_PMC551_BUGFIX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200475 if ((cfg & PCI_BASE_ADDRESS_SPACE) != PCI_BASE_ADDRESS_SPACE_MEMORY) {
476 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200479 /*
480 * Precharge Dram
481 */
482 pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0400);
483 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x00bf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200485 /*
486 * Wait until command has gone through
487 * FIXME: register spinning issue
488 */
489 do {
490 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
491 if (counter++ > 100)
492 break;
493 } while ((PCI_COMMAND_IO) & cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200495 /*
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000496 * Turn on auto refresh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * The loop is taken directly from Ramix's example code. I assume that
498 * this must be held high for some duration of time, but I can find no
499 * documentation refrencing the reasons why.
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200500 */
501 for (i = 1; i <= 8; i++) {
502 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0df);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200504 /*
505 * Make certain command has gone through
506 * FIXME: register spinning issue
507 */
508 counter = 0;
509 do {
510 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
511 if (counter++ > 100)
512 break;
513 } while ((PCI_COMMAND_IO) & cmd);
514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200516 pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0020);
517 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200519 /*
520 * Wait until command completes
521 * FIXME: register spinning issue
522 */
523 counter = 0;
524 do {
525 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
526 if (counter++ > 100)
527 break;
528 } while ((PCI_COMMAND_IO) & cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200530 pci_read_config_dword(dev, PMC551_DRAM_CFG, &dcmd);
531 dcmd |= 0x02000000;
532 pci_write_config_dword(dev, PMC551_DRAM_CFG, dcmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200534 /*
535 * Check to make certain fast back-to-back, if not
536 * then set it so
537 */
538 pci_read_config_word(dev, PCI_STATUS, &cmd);
539 if ((cmd & PCI_COMMAND_FAST_BACK) == 0) {
540 cmd |= PCI_COMMAND_FAST_BACK;
541 pci_write_config_word(dev, PCI_STATUS, cmd);
542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200544 /*
545 * Check to make certain the DEVSEL is set correctly, this device
546 * has a tendancy to assert DEVSEL and TRDY when a write is performed
547 * to the memory when memory is read-only
548 */
549 if ((cmd & PCI_STATUS_DEVSEL_MASK) != 0x0) {
550 cmd &= ~PCI_STATUS_DEVSEL_MASK;
551 pci_write_config_word(dev, PCI_STATUS, cmd);
552 }
553 /*
554 * Set to be prefetchable and put everything back based on old cfg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * it's possible that the reset of the V370PDC nuked the original
556 * setup
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200557 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200559 cfg |= PCI_BASE_ADDRESS_MEM_PREFETCH;
560 pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
561 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200563 /*
564 * Turn PCI memory and I/O bus access back on
565 */
566 pci_write_config_word(dev, PCI_COMMAND,
567 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200569 /*
570 * Some screen fun
571 */
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100572 printk(KERN_DEBUG "pmc551: %d%sB (0x%x) of %sprefetchable memory at "
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200573 "0x%llx\n", (size < 1024) ? size : (size < 1048576) ?
574 size >> 10 : size >> 20,
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100575 (size < 1024) ? "" : (size < 1048576) ? "Ki" : "Mi", size,
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200576 ((dcmd & (0x1 << 3)) == 0) ? "non-" : "",
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200577 (unsigned long long)pci_resource_start(dev, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200579 /*
580 * Check to see the state of the memory
581 */
582 pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dcmd);
583 printk(KERN_DEBUG "pmc551: DRAM_BLK0 Flags: %s,%s\n"
584 "pmc551: DRAM_BLK0 Size: %d at %d\n"
585 "pmc551: DRAM_BLK0 Row MUX: %d, Col MUX: %d\n",
586 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
587 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
588 PMC551_DRAM_BLK_GET_SIZE(dcmd),
589 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
590 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200592 pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dcmd);
593 printk(KERN_DEBUG "pmc551: DRAM_BLK1 Flags: %s,%s\n"
594 "pmc551: DRAM_BLK1 Size: %d at %d\n"
595 "pmc551: DRAM_BLK1 Row MUX: %d, Col MUX: %d\n",
596 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
597 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
598 PMC551_DRAM_BLK_GET_SIZE(dcmd),
599 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
600 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200602 pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dcmd);
603 printk(KERN_DEBUG "pmc551: DRAM_BLK2 Flags: %s,%s\n"
604 "pmc551: DRAM_BLK2 Size: %d at %d\n"
605 "pmc551: DRAM_BLK2 Row MUX: %d, Col MUX: %d\n",
606 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
607 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
608 PMC551_DRAM_BLK_GET_SIZE(dcmd),
609 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
610 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200612 pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dcmd);
613 printk(KERN_DEBUG "pmc551: DRAM_BLK3 Flags: %s,%s\n"
614 "pmc551: DRAM_BLK3 Size: %d at %d\n"
615 "pmc551: DRAM_BLK3 Row MUX: %d, Col MUX: %d\n",
616 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
617 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
618 PMC551_DRAM_BLK_GET_SIZE(dcmd),
619 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
620 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200622 pci_read_config_word(dev, PCI_COMMAND, &cmd);
623 printk(KERN_DEBUG "pmc551: Memory Access %s\n",
624 (((0x1 << 1) & cmd) == 0) ? "off" : "on");
625 printk(KERN_DEBUG "pmc551: I/O Access %s\n",
626 (((0x1 << 0) & cmd) == 0) ? "off" : "on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200628 pci_read_config_word(dev, PCI_STATUS, &cmd);
629 printk(KERN_DEBUG "pmc551: Devsel %s\n",
630 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x000) ? "Fast" :
631 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x200) ? "Medium" :
632 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x400) ? "Slow" : "Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200634 printk(KERN_DEBUG "pmc551: %sFast Back-to-Back\n",
635 ((PCI_COMMAND_FAST_BACK & cmd) == 0) ? "Not " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200637 pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
638 printk(KERN_DEBUG "pmc551: EEPROM is under %s control\n"
639 "pmc551: System Control Register is %slocked to PCI access\n"
640 "pmc551: System Control Register is %slocked to EEPROM access\n",
641 (bcmd & 0x1) ? "software" : "hardware",
642 (bcmd & 0x20) ? "" : "un", (bcmd & 0x40) ? "" : "un");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200644 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/*
648 * Kernel version specific module stuffages
649 */
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651MODULE_LICENSE("GPL");
652MODULE_AUTHOR("Mark Ferrell <mferrell@mvista.com>");
653MODULE_DESCRIPTION(PMC551_VERSION);
654
655/*
656 * Stuff these outside the ifdef so as to not bust compiled in driver support
657 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200658static int msize = 0;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200659static int asize = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661module_param(msize, int, 0);
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100662MODULE_PARM_DESC(msize, "memory size in MiB [1 - 1024]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663module_param(asize, int, 0);
664MODULE_PARM_DESC(asize, "aperture size, must be <= memsize [1-1024]");
665
666/*
667 * PMC551 Card Initialization
668 */
669static int __init init_pmc551(void)
670{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200671 struct pci_dev *PCI_Device = NULL;
672 struct mypriv *priv;
673 int count, found = 0;
674 struct mtd_info *mtd;
675 u32 length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200677 if (msize) {
678 msize = (1 << (ffs(msize) - 1)) << 20;
679 if (msize > (1 << 30)) {
680 printk(KERN_NOTICE "pmc551: Invalid memory size [%d]\n",
681 msize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -EINVAL;
683 }
684 }
685
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200686 if (asize) {
687 asize = (1 << (ffs(asize) - 1)) << 20;
688 if (asize > (1 << 30)) {
689 printk(KERN_NOTICE "pmc551: Invalid aperture size "
690 "[%d]\n", asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return -EINVAL;
692 }
693 }
694
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200695 printk(KERN_INFO PMC551_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200697 /*
698 * PCU-bus chipset probe.
699 */
700 for (count = 0; count < MAX_MTD_DEVICES; count++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200702 if ((PCI_Device = pci_get_device(PCI_VENDOR_ID_V3_SEMI,
703 PCI_DEVICE_ID_V3_SEMI_V370PDC,
704 PCI_Device)) == NULL) {
705 break;
706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200708 printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%llx\n",
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200709 (unsigned long long)pci_resource_start(PCI_Device, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200711 /*
712 * The PMC551 device acts VERY weird if you don't init it
713 * first. i.e. it will not correctly report devsel. If for
714 * some reason the sdram is in a wrote-protected state the
715 * device will DEVSEL when it is written to causing problems
716 * with the oldproc.c driver in
717 * some kernels (2.2.*)
718 */
719 if ((length = fixup_pmc551(PCI_Device)) <= 0) {
720 printk(KERN_NOTICE "pmc551: Cannot init SDRAM\n");
721 break;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /*
725 * This is needed until the driver is capable of reading the
726 * onboard I2C SROM to discover the "real" memory size.
727 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200728 if (msize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 length = msize;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200730 printk(KERN_NOTICE "pmc551: Using specified memory "
731 "size 0x%x\n", length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 } else {
733 msize = length;
734 }
735
Jiri Slaby7fefb922006-09-19 21:55:18 +0200736 mtd = kzalloc(sizeof(struct mtd_info), GFP_KERNEL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200737 if (!mtd) {
738 printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
739 "device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 break;
741 }
742
Jiri Slaby7fefb922006-09-19 21:55:18 +0200743 priv = kzalloc(sizeof(struct mypriv), GFP_KERNEL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200744 if (!priv) {
745 printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
746 "device.\n");
747 kfree(mtd);
748 break;
749 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200750 mtd->priv = priv;
751 priv->dev = PCI_Device;
752
753 if (asize > length) {
754 printk(KERN_NOTICE "pmc551: reducing aperture size to "
755 "fit %dM\n", length >> 20);
756 priv->asize = asize = length;
757 } else if (asize == 0 || asize == length) {
758 printk(KERN_NOTICE "pmc551: Using existing aperture "
759 "size %dM\n", length >> 20);
760 priv->asize = asize = length;
761 } else {
762 printk(KERN_NOTICE "pmc551: Using specified aperture "
763 "size %dM\n", asize >> 20);
764 priv->asize = asize;
765 }
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200766 priv->start = pci_iomap(PCI_Device, 0, priv->asize);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200767
768 if (!priv->start) {
769 printk(KERN_NOTICE "pmc551: Unable to map IO space\n");
770 kfree(mtd->priv);
771 kfree(mtd);
772 break;
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200775 printk(KERN_DEBUG "pmc551: setting aperture to %d\n",
776 ffs(priv->asize >> 20) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777#endif
778
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200779 priv->base_map0 = (PMC551_PCI_MEM_MAP_REG_EN
780 | PMC551_PCI_MEM_MAP_ENABLE
781 | (ffs(priv->asize >> 20) - 1) << 4);
782 priv->curr_map0 = priv->base_map0;
783 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
784 priv->curr_map0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200787 printk(KERN_DEBUG "pmc551: aperture set to %d\n",
788 (priv->base_map0 & 0xF0) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789#endif
790
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200791 mtd->size = msize;
792 mtd->flags = MTD_CAP_RAM;
793 mtd->erase = pmc551_erase;
794 mtd->read = pmc551_read;
795 mtd->write = pmc551_write;
796 mtd->point = pmc551_point;
797 mtd->unpoint = pmc551_unpoint;
798 mtd->type = MTD_RAM;
799 mtd->name = "PMC551 RAM board";
800 mtd->erasesize = 0x10000;
801 mtd->writesize = 1;
802 mtd->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200804 if (add_mtd_device(mtd)) {
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100805 printk(KERN_NOTICE "pmc551: Failed to register new device\n");
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200806 pci_iounmap(PCI_Device, priv->start);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200807 kfree(mtd->priv);
808 kfree(mtd);
809 break;
810 }
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100811
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200812 /* Keep a reference as the add_mtd_device worked */
813 pci_dev_get(PCI_Device);
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100814
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200815 printk(KERN_NOTICE "Registered pmc551 memory device.\n");
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100816 printk(KERN_NOTICE "Mapped %dMiB of memory from 0x%p to 0x%p\n",
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200817 priv->asize >> 20,
818 priv->start, priv->start + priv->asize);
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100819 printk(KERN_NOTICE "Total memory is %d%sB\n",
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200820 (length < 1024) ? length :
821 (length < 1048576) ? length >> 10 : length >> 20,
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100822 (length < 1024) ? "" : (length < 1048576) ? "Ki" : "Mi");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 priv->nextpmc551 = pmc551list;
824 pmc551list = mtd;
825 found++;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200828 /* Exited early, reference left over */
829 if (PCI_Device)
830 pci_dev_put(PCI_Device);
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100831
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200832 if (!pmc551list) {
833 printk(KERN_NOTICE "pmc551: not detected\n");
834 return -ENODEV;
835 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 printk(KERN_NOTICE "pmc551: %d pmc551 devices loaded\n", found);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839}
840
841/*
842 * PMC551 Card Cleanup
843 */
844static void __exit cleanup_pmc551(void)
845{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200846 int found = 0;
847 struct mtd_info *mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 struct mypriv *priv;
849
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200850 while ((mtd = pmc551list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 priv = mtd->priv;
852 pmc551list = priv->nextpmc551;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000853
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200854 if (priv->start) {
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100855 printk(KERN_DEBUG "pmc551: unmapping %dMiB starting at "
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200856 "0x%p\n", priv->asize >> 20, priv->start);
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200857 pci_iounmap(priv->dev, priv->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100859 pci_dev_put(priv->dev);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000860
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200861 kfree(mtd->priv);
862 del_mtd_device(mtd);
863 kfree(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 found++;
865 }
866
867 printk(KERN_NOTICE "pmc551: %d pmc551 devices unloaded\n", found);
868}
869
870module_init(init_pmc551);
871module_exit(cleanup_pmc551);