]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/mtd/devices/pmc551.c
mtd: harmonize mtd_point interface implementation
[karo-tx-linux.git] / drivers / mtd / devices / pmc551.c
1 /*
2  * PMC551 PCI Mezzanine Ram Device
3  *
4  * Author:
5  *      Mark Ferrell <mferrell@mvista.com>
6  *      Copyright 1999,2000 Nortel Networks
7  *
8  * License:
9  *      As part of this driver was derived from the slram.c driver it
10  *      falls under the same license, which is GNU General Public
11  *      License v2
12  *
13  * Description:
14  *      This driver is intended to support the PMC551 PCI Ram device
15  *      from Ramix Inc.  The PMC551 is a PMC Mezzanine module for
16  *      cPCI embedded systems.  The device contains a single SROM
17  *      that initially programs the V370PDC chipset onboard the
18  *      device, and various banks of DRAM/SDRAM onboard.  This driver
19  *      implements this PCI Ram device as an MTD (Memory Technology
20  *      Device) so that it can be used to hold a file system, or for
21  *      added swap space in embedded systems.  Since the memory on
22  *      this board isn't as fast as main memory we do not try to hook
23  *      it into main memory as that would simply reduce performance
24  *      on the system.  Using it as a block device allows us to use
25  *      it as high speed swap or for a high speed disk device of some
26  *      sort.  Which becomes very useful on diskless systems in the
27  *      embedded market I might add.
28  *
29  * Notes:
30  *      Due to what I assume is more buggy SROM, the 64M PMC551 I
31  *      have available claims that all 4 of its DRAM banks have 64MiB
32  *      of ram configured (making a grand total of 256MiB onboard).
33  *      This is slightly annoying since the BAR0 size reflects the
34  *      aperture size, not the dram size, and the V370PDC supplies no
35  *      other method for memory size discovery.  This problem is
36  *      mostly only relevant when compiled as a module, as the
37  *      unloading of the module with an aperture size smaller than
38  *      the ram will cause the driver to detect the onboard memory
39  *      size to be equal to the aperture size when the module is
40  *      reloaded.  Soooo, to help, the module supports an msize
41  *      option to allow the specification of the onboard memory, and
42  *      an asize option, to allow the specification of the aperture
43  *      size.  The aperture must be equal to or less then the memory
44  *      size, the driver will correct this if you screw it up.  This
45  *      problem is not relevant for compiled in drivers as compiled
46  *      in drivers only init once.
47  *
48  * Credits:
49  *      Saeed Karamooz <saeed@ramix.com> of Ramix INC. for the
50  *      initial example code of how to initialize this device and for
51  *      help with questions I had concerning operation of the device.
52  *
53  *      Most of the MTD code for this driver was originally written
54  *      for the slram.o module in the MTD drivers package which
55  *      allows the mapping of system memory into an MTD device.
56  *      Since the PMC551 memory module is accessed in the same
57  *      fashion as system memory, the slram.c code became a very nice
58  *      fit to the needs of this driver.  All we added was PCI
59  *      detection/initialization to the driver and automatically figure
60  *      out the size via the PCI detection.o, later changes by Corey
61  *      Minyard set up the card to utilize a 1M sliding apature.
62  *
63  *      Corey Minyard <minyard@nortelnetworks.com>
64  *      * Modified driver to utilize a sliding aperture instead of
65  *       mapping all memory into kernel space which turned out to
66  *       be very wasteful.
67  *      * Located a bug in the SROM's initialization sequence that
68  *       made the memory unusable, added a fix to code to touch up
69  *       the DRAM some.
70  *
71  * Bugs/FIXMEs:
72  *      * MUST fix the init function to not spin on a register
73  *      waiting for it to set .. this does not safely handle busted
74  *      devices that never reset the register correctly which will
75  *      cause the system to hang w/ a reboot being the only chance at
76  *      recover. [sort of fixed, could be better]
77  *      * Add I2C handling of the SROM so we can read the SROM's information
78  *      about the aperture size.  This should always accurately reflect the
79  *      onboard memory size.
80  *      * Comb the init routine.  It's still a bit cludgy on a few things.
81  */
82
83 #include <linux/kernel.h>
84 #include <linux/module.h>
85 #include <asm/uaccess.h>
86 #include <linux/types.h>
87 #include <linux/init.h>
88 #include <linux/ptrace.h>
89 #include <linux/slab.h>
90 #include <linux/string.h>
91 #include <linux/timer.h>
92 #include <linux/major.h>
93 #include <linux/fs.h>
94 #include <linux/ioctl.h>
95 #include <asm/io.h>
96 #include <asm/system.h>
97 #include <linux/pci.h>
98 #include <linux/mtd/mtd.h>
99
100 #define PMC551_VERSION \
101         "Ramix PMC551 PCI Mezzanine Ram Driver. (C) 1999,2000 Nortel Networks.\n"
102
103 #define PCI_VENDOR_ID_V3_SEMI 0x11b0
104 #define PCI_DEVICE_ID_V3_SEMI_V370PDC 0x0200
105
106 #define PMC551_PCI_MEM_MAP0 0x50
107 #define PMC551_PCI_MEM_MAP1 0x54
108 #define PMC551_PCI_MEM_MAP_MAP_ADDR_MASK 0x3ff00000
109 #define PMC551_PCI_MEM_MAP_APERTURE_MASK 0x000000f0
110 #define PMC551_PCI_MEM_MAP_REG_EN 0x00000002
111 #define PMC551_PCI_MEM_MAP_ENABLE 0x00000001
112
113 #define PMC551_SDRAM_MA  0x60
114 #define PMC551_SDRAM_CMD 0x62
115 #define PMC551_DRAM_CFG  0x64
116 #define PMC551_SYS_CTRL_REG 0x78
117
118 #define PMC551_DRAM_BLK0 0x68
119 #define PMC551_DRAM_BLK1 0x6c
120 #define PMC551_DRAM_BLK2 0x70
121 #define PMC551_DRAM_BLK3 0x74
122 #define PMC551_DRAM_BLK_GET_SIZE(x) (524288 << ((x >> 4) & 0x0f))
123 #define PMC551_DRAM_BLK_SET_COL_MUX(x, v) (((x) & ~0x00007000) | (((v) & 0x7) << 12))
124 #define PMC551_DRAM_BLK_SET_ROW_MUX(x, v) (((x) & ~0x00000f00) | (((v) & 0xf) << 8))
125
126 struct mypriv {
127         struct pci_dev *dev;
128         u_char *start;
129         u32 base_map0;
130         u32 curr_map0;
131         u32 asize;
132         struct mtd_info *nextpmc551;
133 };
134
135 static struct mtd_info *pmc551list;
136
137 static int pmc551_point(struct mtd_info *mtd, loff_t from, size_t len,
138                         size_t *retlen, void **virt, resource_size_t *phys);
139
140 static int pmc551_erase(struct mtd_info *mtd, struct erase_info *instr)
141 {
142         struct mypriv *priv = mtd->priv;
143         u32 soff_hi, soff_lo;   /* start address offset hi/lo */
144         u32 eoff_hi, eoff_lo;   /* end address offset hi/lo */
145         unsigned long end;
146         u_char *ptr;
147         size_t retlen;
148
149 #ifdef CONFIG_MTD_PMC551_DEBUG
150         printk(KERN_DEBUG "pmc551_erase(pos:%ld, len:%ld)\n", (long)instr->addr,
151                 (long)instr->len);
152 #endif
153
154         end = instr->addr + instr->len - 1;
155         eoff_hi = end & ~(priv->asize - 1);
156         soff_hi = instr->addr & ~(priv->asize - 1);
157         eoff_lo = end & (priv->asize - 1);
158         soff_lo = instr->addr & (priv->asize - 1);
159
160         pmc551_point(mtd, instr->addr, instr->len, &retlen,
161                      (void **)&ptr, NULL);
162
163         if (soff_hi == eoff_hi || mtd->size == priv->asize) {
164                 /* The whole thing fits within one access, so just one shot
165                    will do it. */
166                 memset(ptr, 0xff, instr->len);
167         } else {
168                 /* We have to do multiple writes to get all the data
169                    written. */
170                 while (soff_hi != eoff_hi) {
171 #ifdef CONFIG_MTD_PMC551_DEBUG
172                         printk(KERN_DEBUG "pmc551_erase() soff_hi: %ld, "
173                                 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
174 #endif
175                         memset(ptr, 0xff, priv->asize);
176                         if (soff_hi + priv->asize >= mtd->size) {
177                                 goto out;
178                         }
179                         soff_hi += priv->asize;
180                         pmc551_point(mtd, (priv->base_map0 | soff_hi),
181                                      priv->asize, &retlen,
182                                      (void **)&ptr, NULL);
183                 }
184                 memset(ptr, 0xff, eoff_lo);
185         }
186
187       out:
188         instr->state = MTD_ERASE_DONE;
189 #ifdef CONFIG_MTD_PMC551_DEBUG
190         printk(KERN_DEBUG "pmc551_erase() done\n");
191 #endif
192
193         mtd_erase_callback(instr);
194         return 0;
195 }
196
197 static int pmc551_point(struct mtd_info *mtd, loff_t from, size_t len,
198                         size_t *retlen, void **virt, resource_size_t *phys)
199 {
200         struct mypriv *priv = mtd->priv;
201         u32 soff_hi;
202         u32 soff_lo;
203
204 #ifdef CONFIG_MTD_PMC551_DEBUG
205         printk(KERN_DEBUG "pmc551_point(%ld, %ld)\n", (long)from, (long)len);
206 #endif
207
208         soff_hi = from & ~(priv->asize - 1);
209         soff_lo = from & (priv->asize - 1);
210
211         /* Cheap hack optimization */
212         if (priv->curr_map0 != from) {
213                 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
214                                         (priv->base_map0 | soff_hi));
215                 priv->curr_map0 = soff_hi;
216         }
217
218         *virt = priv->start + soff_lo;
219         *retlen = len;
220         return 0;
221 }
222
223 static int pmc551_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
224 {
225 #ifdef CONFIG_MTD_PMC551_DEBUG
226         printk(KERN_DEBUG "pmc551_unpoint()\n");
227 #endif
228         return 0;
229 }
230
231 static int pmc551_read(struct mtd_info *mtd, loff_t from, size_t len,
232                         size_t * retlen, u_char * buf)
233 {
234         struct mypriv *priv = mtd->priv;
235         u32 soff_hi, soff_lo;   /* start address offset hi/lo */
236         u32 eoff_hi, eoff_lo;   /* end address offset hi/lo */
237         unsigned long end;
238         u_char *ptr;
239         u_char *copyto = buf;
240
241 #ifdef CONFIG_MTD_PMC551_DEBUG
242         printk(KERN_DEBUG "pmc551_read(pos:%ld, len:%ld) asize: %ld\n",
243                 (long)from, (long)len, (long)priv->asize);
244 #endif
245
246         end = from + len - 1;
247         soff_hi = from & ~(priv->asize - 1);
248         eoff_hi = end & ~(priv->asize - 1);
249         soff_lo = from & (priv->asize - 1);
250         eoff_lo = end & (priv->asize - 1);
251
252         pmc551_point(mtd, from, len, retlen, (void **)&ptr, NULL);
253
254         if (soff_hi == eoff_hi) {
255                 /* The whole thing fits within one access, so just one shot
256                    will do it. */
257                 memcpy(copyto, ptr, len);
258                 copyto += len;
259         } else {
260                 /* We have to do multiple writes to get all the data
261                    written. */
262                 while (soff_hi != eoff_hi) {
263 #ifdef CONFIG_MTD_PMC551_DEBUG
264                         printk(KERN_DEBUG "pmc551_read() soff_hi: %ld, "
265                                 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
266 #endif
267                         memcpy(copyto, ptr, priv->asize);
268                         copyto += priv->asize;
269                         if (soff_hi + priv->asize >= mtd->size) {
270                                 goto out;
271                         }
272                         soff_hi += priv->asize;
273                         pmc551_point(mtd, soff_hi, priv->asize, retlen,
274                                      (void **)&ptr, NULL);
275                 }
276                 memcpy(copyto, ptr, eoff_lo);
277                 copyto += eoff_lo;
278         }
279
280       out:
281 #ifdef CONFIG_MTD_PMC551_DEBUG
282         printk(KERN_DEBUG "pmc551_read() done\n");
283 #endif
284         *retlen = copyto - buf;
285         return 0;
286 }
287
288 static int pmc551_write(struct mtd_info *mtd, loff_t to, size_t len,
289                         size_t * retlen, const u_char * buf)
290 {
291         struct mypriv *priv = mtd->priv;
292         u32 soff_hi, soff_lo;   /* start address offset hi/lo */
293         u32 eoff_hi, eoff_lo;   /* end address offset hi/lo */
294         unsigned long end;
295         u_char *ptr;
296         const u_char *copyfrom = buf;
297
298 #ifdef CONFIG_MTD_PMC551_DEBUG
299         printk(KERN_DEBUG "pmc551_write(pos:%ld, len:%ld) asize:%ld\n",
300                 (long)to, (long)len, (long)priv->asize);
301 #endif
302
303         end = to + len - 1;
304         soff_hi = to & ~(priv->asize - 1);
305         eoff_hi = end & ~(priv->asize - 1);
306         soff_lo = to & (priv->asize - 1);
307         eoff_lo = end & (priv->asize - 1);
308
309         pmc551_point(mtd, to, len, retlen, (void **)&ptr, NULL);
310
311         if (soff_hi == eoff_hi) {
312                 /* The whole thing fits within one access, so just one shot
313                    will do it. */
314                 memcpy(ptr, copyfrom, len);
315                 copyfrom += len;
316         } else {
317                 /* We have to do multiple writes to get all the data
318                    written. */
319                 while (soff_hi != eoff_hi) {
320 #ifdef CONFIG_MTD_PMC551_DEBUG
321                         printk(KERN_DEBUG "pmc551_write() soff_hi: %ld, "
322                                 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
323 #endif
324                         memcpy(ptr, copyfrom, priv->asize);
325                         copyfrom += priv->asize;
326                         if (soff_hi >= mtd->size) {
327                                 goto out;
328                         }
329                         soff_hi += priv->asize;
330                         pmc551_point(mtd, soff_hi, priv->asize, retlen,
331                                      (void **)&ptr, NULL);
332                 }
333                 memcpy(ptr, copyfrom, eoff_lo);
334                 copyfrom += eoff_lo;
335         }
336
337       out:
338 #ifdef CONFIG_MTD_PMC551_DEBUG
339         printk(KERN_DEBUG "pmc551_write() done\n");
340 #endif
341         *retlen = copyfrom - buf;
342         return 0;
343 }
344
345 /*
346  * Fixup routines for the V370PDC
347  * PCI device ID 0x020011b0
348  *
349  * This function basically kick starts the DRAM oboard the card and gets it
350  * ready to be used.  Before this is done the device reads VERY erratic, so
351  * much that it can crash the Linux 2.2.x series kernels when a user cat's
352  * /proc/pci .. though that is mainly a kernel bug in handling the PCI DEVSEL
353  * register.  FIXME: stop spinning on registers .. must implement a timeout
354  * mechanism
355  * returns the size of the memory region found.
356  */
357 static int fixup_pmc551(struct pci_dev *dev)
358 {
359 #ifdef CONFIG_MTD_PMC551_BUGFIX
360         u32 dram_data;
361 #endif
362         u32 size, dcmd, cfg, dtmp;
363         u16 cmd, tmp, i;
364         u8 bcmd, counter;
365
366         /* Sanity Check */
367         if (!dev) {
368                 return -ENODEV;
369         }
370
371         /*
372          * Attempt to reset the card
373          * FIXME: Stop Spinning registers
374          */
375         counter = 0;
376         /* unlock registers */
377         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, 0xA5);
378         /* read in old data */
379         pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
380         /* bang the reset line up and down for a few */
381         for (i = 0; i < 10; i++) {
382                 counter = 0;
383                 bcmd &= ~0x80;
384                 while (counter++ < 100) {
385                         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
386                 }
387                 counter = 0;
388                 bcmd |= 0x80;
389                 while (counter++ < 100) {
390                         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
391                 }
392         }
393         bcmd |= (0x40 | 0x20);
394         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
395
396         /*
397          * Take care and turn off the memory on the device while we
398          * tweak the configurations
399          */
400         pci_read_config_word(dev, PCI_COMMAND, &cmd);
401         tmp = cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
402         pci_write_config_word(dev, PCI_COMMAND, tmp);
403
404         /*
405          * Disable existing aperture before probing memory size
406          */
407         pci_read_config_dword(dev, PMC551_PCI_MEM_MAP0, &dcmd);
408         dtmp = (dcmd | PMC551_PCI_MEM_MAP_ENABLE | PMC551_PCI_MEM_MAP_REG_EN);
409         pci_write_config_dword(dev, PMC551_PCI_MEM_MAP0, dtmp);
410         /*
411          * Grab old BAR0 config so that we can figure out memory size
412          * This is another bit of kludge going on.  The reason for the
413          * redundancy is I am hoping to retain the original configuration
414          * previously assigned to the card by the BIOS or some previous
415          * fixup routine in the kernel.  So we read the old config into cfg,
416          * then write all 1's to the memory space, read back the result into
417          * "size", and then write back all the old config.
418          */
419         pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &cfg);
420 #ifndef CONFIG_MTD_PMC551_BUGFIX
421         pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, ~0);
422         pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &size);
423         size = (size & PCI_BASE_ADDRESS_MEM_MASK);
424         size &= ~(size - 1);
425         pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, cfg);
426 #else
427         /*
428          * Get the size of the memory by reading all the DRAM size values
429          * and adding them up.
430          *
431          * KLUDGE ALERT: the boards we are using have invalid column and
432          * row mux values.  We fix them here, but this will break other
433          * memory configurations.
434          */
435         pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dram_data);
436         size = PMC551_DRAM_BLK_GET_SIZE(dram_data);
437         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
438         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
439         pci_write_config_dword(dev, PMC551_DRAM_BLK0, dram_data);
440
441         pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dram_data);
442         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
443         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
444         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
445         pci_write_config_dword(dev, PMC551_DRAM_BLK1, dram_data);
446
447         pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dram_data);
448         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
449         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
450         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
451         pci_write_config_dword(dev, PMC551_DRAM_BLK2, dram_data);
452
453         pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dram_data);
454         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
455         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
456         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
457         pci_write_config_dword(dev, PMC551_DRAM_BLK3, dram_data);
458
459         /*
460          * Oops .. something went wrong
461          */
462         if ((size &= PCI_BASE_ADDRESS_MEM_MASK) == 0) {
463                 return -ENODEV;
464         }
465 #endif                          /* CONFIG_MTD_PMC551_BUGFIX */
466
467         if ((cfg & PCI_BASE_ADDRESS_SPACE) != PCI_BASE_ADDRESS_SPACE_MEMORY) {
468                 return -ENODEV;
469         }
470
471         /*
472          * Precharge Dram
473          */
474         pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0400);
475         pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x00bf);
476
477         /*
478          * Wait until command has gone through
479          * FIXME: register spinning issue
480          */
481         do {
482                 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
483                 if (counter++ > 100)
484                         break;
485         } while ((PCI_COMMAND_IO) & cmd);
486
487         /*
488          * Turn on auto refresh
489          * The loop is taken directly from Ramix's example code.  I assume that
490          * this must be held high for some duration of time, but I can find no
491          * documentation refrencing the reasons why.
492          */
493         for (i = 1; i <= 8; i++) {
494                 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0df);
495
496                 /*
497                  * Make certain command has gone through
498                  * FIXME: register spinning issue
499                  */
500                 counter = 0;
501                 do {
502                         pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
503                         if (counter++ > 100)
504                                 break;
505                 } while ((PCI_COMMAND_IO) & cmd);
506         }
507
508         pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0020);
509         pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0ff);
510
511         /*
512          * Wait until command completes
513          * FIXME: register spinning issue
514          */
515         counter = 0;
516         do {
517                 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
518                 if (counter++ > 100)
519                         break;
520         } while ((PCI_COMMAND_IO) & cmd);
521
522         pci_read_config_dword(dev, PMC551_DRAM_CFG, &dcmd);
523         dcmd |= 0x02000000;
524         pci_write_config_dword(dev, PMC551_DRAM_CFG, dcmd);
525
526         /*
527          * Check to make certain fast back-to-back, if not
528          * then set it so
529          */
530         pci_read_config_word(dev, PCI_STATUS, &cmd);
531         if ((cmd & PCI_COMMAND_FAST_BACK) == 0) {
532                 cmd |= PCI_COMMAND_FAST_BACK;
533                 pci_write_config_word(dev, PCI_STATUS, cmd);
534         }
535
536         /*
537          * Check to make certain the DEVSEL is set correctly, this device
538          * has a tendency to assert DEVSEL and TRDY when a write is performed
539          * to the memory when memory is read-only
540          */
541         if ((cmd & PCI_STATUS_DEVSEL_MASK) != 0x0) {
542                 cmd &= ~PCI_STATUS_DEVSEL_MASK;
543                 pci_write_config_word(dev, PCI_STATUS, cmd);
544         }
545         /*
546          * Set to be prefetchable and put everything back based on old cfg.
547          * it's possible that the reset of the V370PDC nuked the original
548          * setup
549          */
550         /*
551            cfg |= PCI_BASE_ADDRESS_MEM_PREFETCH;
552            pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
553          */
554
555         /*
556          * Turn PCI memory and I/O bus access back on
557          */
558         pci_write_config_word(dev, PCI_COMMAND,
559                               PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
560 #ifdef CONFIG_MTD_PMC551_DEBUG
561         /*
562          * Some screen fun
563          */
564         printk(KERN_DEBUG "pmc551: %d%sB (0x%x) of %sprefetchable memory at "
565                 "0x%llx\n", (size < 1024) ? size : (size < 1048576) ?
566                 size >> 10 : size >> 20,
567                 (size < 1024) ? "" : (size < 1048576) ? "Ki" : "Mi", size,
568                 ((dcmd & (0x1 << 3)) == 0) ? "non-" : "",
569                 (unsigned long long)pci_resource_start(dev, 0));
570
571         /*
572          * Check to see the state of the memory
573          */
574         pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dcmd);
575         printk(KERN_DEBUG "pmc551: DRAM_BLK0 Flags: %s,%s\n"
576                 "pmc551: DRAM_BLK0 Size: %d at %d\n"
577                 "pmc551: DRAM_BLK0 Row MUX: %d, Col MUX: %d\n",
578                 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
579                 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
580                 PMC551_DRAM_BLK_GET_SIZE(dcmd),
581                 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
582                 ((dcmd >> 9) & 0xF));
583
584         pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dcmd);
585         printk(KERN_DEBUG "pmc551: DRAM_BLK1 Flags: %s,%s\n"
586                 "pmc551: DRAM_BLK1 Size: %d at %d\n"
587                 "pmc551: DRAM_BLK1 Row MUX: %d, Col MUX: %d\n",
588                 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
589                 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
590                 PMC551_DRAM_BLK_GET_SIZE(dcmd),
591                 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
592                 ((dcmd >> 9) & 0xF));
593
594         pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dcmd);
595         printk(KERN_DEBUG "pmc551: DRAM_BLK2 Flags: %s,%s\n"
596                 "pmc551: DRAM_BLK2 Size: %d at %d\n"
597                 "pmc551: DRAM_BLK2 Row MUX: %d, Col MUX: %d\n",
598                 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
599                 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
600                 PMC551_DRAM_BLK_GET_SIZE(dcmd),
601                 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
602                 ((dcmd >> 9) & 0xF));
603
604         pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dcmd);
605         printk(KERN_DEBUG "pmc551: DRAM_BLK3 Flags: %s,%s\n"
606                 "pmc551: DRAM_BLK3 Size: %d at %d\n"
607                 "pmc551: DRAM_BLK3 Row MUX: %d, Col MUX: %d\n",
608                 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
609                 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
610                 PMC551_DRAM_BLK_GET_SIZE(dcmd),
611                 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
612                 ((dcmd >> 9) & 0xF));
613
614         pci_read_config_word(dev, PCI_COMMAND, &cmd);
615         printk(KERN_DEBUG "pmc551: Memory Access %s\n",
616                 (((0x1 << 1) & cmd) == 0) ? "off" : "on");
617         printk(KERN_DEBUG "pmc551: I/O Access %s\n",
618                 (((0x1 << 0) & cmd) == 0) ? "off" : "on");
619
620         pci_read_config_word(dev, PCI_STATUS, &cmd);
621         printk(KERN_DEBUG "pmc551: Devsel %s\n",
622                 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x000) ? "Fast" :
623                 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x200) ? "Medium" :
624                 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x400) ? "Slow" : "Invalid");
625
626         printk(KERN_DEBUG "pmc551: %sFast Back-to-Back\n",
627                 ((PCI_COMMAND_FAST_BACK & cmd) == 0) ? "Not " : "");
628
629         pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
630         printk(KERN_DEBUG "pmc551: EEPROM is under %s control\n"
631                 "pmc551: System Control Register is %slocked to PCI access\n"
632                 "pmc551: System Control Register is %slocked to EEPROM access\n",
633                 (bcmd & 0x1) ? "software" : "hardware",
634                 (bcmd & 0x20) ? "" : "un", (bcmd & 0x40) ? "" : "un");
635 #endif
636         return size;
637 }
638
639 /*
640  * Kernel version specific module stuffages
641  */
642
643 MODULE_LICENSE("GPL");
644 MODULE_AUTHOR("Mark Ferrell <mferrell@mvista.com>");
645 MODULE_DESCRIPTION(PMC551_VERSION);
646
647 /*
648  * Stuff these outside the ifdef so as to not bust compiled in driver support
649  */
650 static int msize = 0;
651 static int asize = 0;
652
653 module_param(msize, int, 0);
654 MODULE_PARM_DESC(msize, "memory size in MiB [1 - 1024]");
655 module_param(asize, int, 0);
656 MODULE_PARM_DESC(asize, "aperture size, must be <= memsize [1-1024]");
657
658 /*
659  * PMC551 Card Initialization
660  */
661 static int __init init_pmc551(void)
662 {
663         struct pci_dev *PCI_Device = NULL;
664         struct mypriv *priv;
665         int found = 0;
666         struct mtd_info *mtd;
667         int length = 0;
668
669         if (msize) {
670                 msize = (1 << (ffs(msize) - 1)) << 20;
671                 if (msize > (1 << 30)) {
672                         printk(KERN_NOTICE "pmc551: Invalid memory size [%d]\n",
673                                 msize);
674                         return -EINVAL;
675                 }
676         }
677
678         if (asize) {
679                 asize = (1 << (ffs(asize) - 1)) << 20;
680                 if (asize > (1 << 30)) {
681                         printk(KERN_NOTICE "pmc551: Invalid aperture size "
682                                 "[%d]\n", asize);
683                         return -EINVAL;
684                 }
685         }
686
687         printk(KERN_INFO PMC551_VERSION);
688
689         /*
690          * PCU-bus chipset probe.
691          */
692         for (;;) {
693
694                 if ((PCI_Device = pci_get_device(PCI_VENDOR_ID_V3_SEMI,
695                                                   PCI_DEVICE_ID_V3_SEMI_V370PDC,
696                                                   PCI_Device)) == NULL) {
697                         break;
698                 }
699
700                 printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%llx\n",
701                         (unsigned long long)pci_resource_start(PCI_Device, 0));
702
703                 /*
704                  * The PMC551 device acts VERY weird if you don't init it
705                  * first.  i.e. it will not correctly report devsel.  If for
706                  * some reason the sdram is in a wrote-protected state the
707                  * device will DEVSEL when it is written to causing problems
708                  * with the oldproc.c driver in
709                  * some kernels (2.2.*)
710                  */
711                 if ((length = fixup_pmc551(PCI_Device)) <= 0) {
712                         printk(KERN_NOTICE "pmc551: Cannot init SDRAM\n");
713                         break;
714                 }
715
716                 /*
717                  * This is needed until the driver is capable of reading the
718                  * onboard I2C SROM to discover the "real" memory size.
719                  */
720                 if (msize) {
721                         length = msize;
722                         printk(KERN_NOTICE "pmc551: Using specified memory "
723                                 "size 0x%x\n", length);
724                 } else {
725                         msize = length;
726                 }
727
728                 mtd = kzalloc(sizeof(struct mtd_info), GFP_KERNEL);
729                 if (!mtd) {
730                         printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
731                                 "device.\n");
732                         break;
733                 }
734
735                 priv = kzalloc(sizeof(struct mypriv), GFP_KERNEL);
736                 if (!priv) {
737                         printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
738                                 "device.\n");
739                         kfree(mtd);
740                         break;
741                 }
742                 mtd->priv = priv;
743                 priv->dev = PCI_Device;
744
745                 if (asize > length) {
746                         printk(KERN_NOTICE "pmc551: reducing aperture size to "
747                                 "fit %dM\n", length >> 20);
748                         priv->asize = asize = length;
749                 } else if (asize == 0 || asize == length) {
750                         printk(KERN_NOTICE "pmc551: Using existing aperture "
751                                 "size %dM\n", length >> 20);
752                         priv->asize = asize = length;
753                 } else {
754                         printk(KERN_NOTICE "pmc551: Using specified aperture "
755                                 "size %dM\n", asize >> 20);
756                         priv->asize = asize;
757                 }
758                 priv->start = pci_iomap(PCI_Device, 0, priv->asize);
759
760                 if (!priv->start) {
761                         printk(KERN_NOTICE "pmc551: Unable to map IO space\n");
762                         kfree(mtd->priv);
763                         kfree(mtd);
764                         break;
765                 }
766 #ifdef CONFIG_MTD_PMC551_DEBUG
767                 printk(KERN_DEBUG "pmc551: setting aperture to %d\n",
768                         ffs(priv->asize >> 20) - 1);
769 #endif
770
771                 priv->base_map0 = (PMC551_PCI_MEM_MAP_REG_EN
772                                    | PMC551_PCI_MEM_MAP_ENABLE
773                                    | (ffs(priv->asize >> 20) - 1) << 4);
774                 priv->curr_map0 = priv->base_map0;
775                 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
776                                         priv->curr_map0);
777
778 #ifdef CONFIG_MTD_PMC551_DEBUG
779                 printk(KERN_DEBUG "pmc551: aperture set to %d\n",
780                         (priv->base_map0 & 0xF0) >> 4);
781 #endif
782
783                 mtd->size = msize;
784                 mtd->flags = MTD_CAP_RAM;
785                 mtd->_erase = pmc551_erase;
786                 mtd->_read = pmc551_read;
787                 mtd->_write = pmc551_write;
788                 mtd->_point = pmc551_point;
789                 mtd->_unpoint = pmc551_unpoint;
790                 mtd->type = MTD_RAM;
791                 mtd->name = "PMC551 RAM board";
792                 mtd->erasesize = 0x10000;
793                 mtd->writesize = 1;
794                 mtd->owner = THIS_MODULE;
795
796                 if (mtd_device_register(mtd, NULL, 0)) {
797                         printk(KERN_NOTICE "pmc551: Failed to register new device\n");
798                         pci_iounmap(PCI_Device, priv->start);
799                         kfree(mtd->priv);
800                         kfree(mtd);
801                         break;
802                 }
803
804                 /* Keep a reference as the mtd_device_register worked */
805                 pci_dev_get(PCI_Device);
806
807                 printk(KERN_NOTICE "Registered pmc551 memory device.\n");
808                 printk(KERN_NOTICE "Mapped %dMiB of memory from 0x%p to 0x%p\n",
809                         priv->asize >> 20,
810                         priv->start, priv->start + priv->asize);
811                 printk(KERN_NOTICE "Total memory is %d%sB\n",
812                         (length < 1024) ? length :
813                         (length < 1048576) ? length >> 10 : length >> 20,
814                         (length < 1024) ? "" : (length < 1048576) ? "Ki" : "Mi");
815                 priv->nextpmc551 = pmc551list;
816                 pmc551list = mtd;
817                 found++;
818         }
819
820         /* Exited early, reference left over */
821         if (PCI_Device)
822                 pci_dev_put(PCI_Device);
823
824         if (!pmc551list) {
825                 printk(KERN_NOTICE "pmc551: not detected\n");
826                 return -ENODEV;
827         } else {
828                 printk(KERN_NOTICE "pmc551: %d pmc551 devices loaded\n", found);
829                 return 0;
830         }
831 }
832
833 /*
834  * PMC551 Card Cleanup
835  */
836 static void __exit cleanup_pmc551(void)
837 {
838         int found = 0;
839         struct mtd_info *mtd;
840         struct mypriv *priv;
841
842         while ((mtd = pmc551list)) {
843                 priv = mtd->priv;
844                 pmc551list = priv->nextpmc551;
845
846                 if (priv->start) {
847                         printk(KERN_DEBUG "pmc551: unmapping %dMiB starting at "
848                                 "0x%p\n", priv->asize >> 20, priv->start);
849                         pci_iounmap(priv->dev, priv->start);
850                 }
851                 pci_dev_put(priv->dev);
852
853                 kfree(mtd->priv);
854                 mtd_device_unregister(mtd);
855                 kfree(mtd);
856                 found++;
857         }
858
859         printk(KERN_NOTICE "pmc551: %d pmc551 devices unloaded\n", found);
860 }
861
862 module_init(init_pmc551);
863 module_exit(cleanup_pmc551);