Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / drivers / mtd / devices / pmc551.c
1 /*
2  * $Id: pmc551.c,v 1.32 2005/11/07 11:14:25 gleixner Exp $
3  *
4  * PMC551 PCI Mezzanine Ram Device
5  *
6  * Author:
7  *       Mark Ferrell <mferrell@mvista.com>
8  *       Copyright 1999,2000 Nortel Networks
9  *
10  * License:
11  *       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
14  *
15  * Description:
16  *       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.
30  *
31  * Notes:
32  *       Due to what I assume is more buggy SROM, the 64M PMC551 I
33  *       have available claims that all 4 of it's DRAM banks have 64M
34  *       of ram configured (making a grand total of 256M onboard).
35  *       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.
49  *
50  * Credits:
51  *       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.
54  *
55  *       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.
64  *
65  *       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.
72  *
73  * Bugs/FIXME's:
74  *       * 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.
83  */
84
85 #include <linux/kernel.h>
86 #include <linux/module.h>
87 #include <asm/uaccess.h>
88 #include <linux/types.h>
89 #include <linux/sched.h>
90 #include <linux/init.h>
91 #include <linux/ptrace.h>
92 #include <linux/slab.h>
93 #include <linux/string.h>
94 #include <linux/timer.h>
95 #include <linux/major.h>
96 #include <linux/fs.h>
97 #include <linux/ioctl.h>
98 #include <asm/io.h>
99 #include <asm/system.h>
100 #include <linux/pci.h>
101
102 #include <linux/mtd/mtd.h>
103 #include <linux/mtd/pmc551.h>
104 #include <linux/mtd/compatmac.h>
105
106 static struct mtd_info *pmc551list;
107
108 static int pmc551_erase (struct mtd_info *mtd, struct erase_info *instr)
109 {
110         struct mypriv *priv = mtd->priv;
111         u32 soff_hi, soff_lo; /* start address offset hi/lo */
112         u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
113         unsigned long end;
114         u_char *ptr;
115         size_t retlen;
116
117 #ifdef CONFIG_MTD_PMC551_DEBUG
118         printk(KERN_DEBUG "pmc551_erase(pos:%ld, len:%ld)\n", (long)instr->addr, (long)instr->len);
119 #endif
120
121         end = instr->addr + instr->len - 1;
122
123         /* Is it past the end? */
124         if ( end > mtd->size ) {
125 #ifdef CONFIG_MTD_PMC551_DEBUG
126         printk(KERN_DEBUG "pmc551_erase() out of bounds (%ld > %ld)\n", (long)end, (long)mtd->size);
127 #endif
128                 return -EINVAL;
129         }
130
131         eoff_hi = end & ~(priv->asize - 1);
132         soff_hi = instr->addr & ~(priv->asize - 1);
133         eoff_lo = end & (priv->asize - 1);
134         soff_lo = instr->addr & (priv->asize - 1);
135
136         pmc551_point (mtd, instr->addr, instr->len, &retlen, &ptr);
137
138         if ( soff_hi == eoff_hi || mtd->size == priv->asize) {
139                 /* The whole thing fits within one access, so just one shot
140                    will do it. */
141                 memset(ptr, 0xff, instr->len);
142         } else {
143                 /* We have to do multiple writes to get all the data
144                    written. */
145                 while (soff_hi != eoff_hi) {
146 #ifdef CONFIG_MTD_PMC551_DEBUG
147                         printk( KERN_DEBUG "pmc551_erase() soff_hi: %ld, eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
148 #endif
149                         memset(ptr, 0xff, priv->asize);
150                         if (soff_hi + priv->asize >= mtd->size) {
151                                 goto out;
152                         }
153                         soff_hi += priv->asize;
154                         pmc551_point (mtd,(priv->base_map0|soff_hi),
155                                       priv->asize, &retlen, &ptr);
156                 }
157                 memset (ptr, 0xff, eoff_lo);
158         }
159
160 out:
161         instr->state = MTD_ERASE_DONE;
162 #ifdef CONFIG_MTD_PMC551_DEBUG
163         printk(KERN_DEBUG "pmc551_erase() done\n");
164 #endif
165
166         mtd_erase_callback(instr);
167         return 0;
168 }
169
170
171 static int pmc551_point (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char **mtdbuf)
172 {
173         struct mypriv *priv = mtd->priv;
174         u32 soff_hi;
175         u32 soff_lo;
176
177 #ifdef CONFIG_MTD_PMC551_DEBUG
178         printk(KERN_DEBUG "pmc551_point(%ld, %ld)\n", (long)from, (long)len);
179 #endif
180
181         if (from + len > mtd->size) {
182 #ifdef CONFIG_MTD_PMC551_DEBUG
183                 printk(KERN_DEBUG "pmc551_point() out of bounds (%ld > %ld)\n", (long)from+len, (long)mtd->size);
184 #endif
185                 return -EINVAL;
186         }
187
188         soff_hi = from & ~(priv->asize - 1);
189         soff_lo = from & (priv->asize - 1);
190
191         /* Cheap hack optimization */
192         if( priv->curr_map0 != from ) {
193                 pci_write_config_dword ( priv->dev, PMC551_PCI_MEM_MAP0,
194                                         (priv->base_map0 | soff_hi) );
195                 priv->curr_map0 = soff_hi;
196         }
197
198         *mtdbuf = priv->start + soff_lo;
199         *retlen = len;
200         return 0;
201 }
202
203
204 static void pmc551_unpoint (struct mtd_info *mtd, u_char *addr, loff_t from, size_t len)
205 {
206 #ifdef CONFIG_MTD_PMC551_DEBUG
207         printk(KERN_DEBUG "pmc551_unpoint()\n");
208 #endif
209 }
210
211
212 static int pmc551_read (struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf)
213 {
214         struct mypriv *priv = mtd->priv;
215         u32 soff_hi, soff_lo; /* start address offset hi/lo */
216         u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
217         unsigned long end;
218         u_char *ptr;
219         u_char *copyto = buf;
220
221 #ifdef CONFIG_MTD_PMC551_DEBUG
222         printk(KERN_DEBUG "pmc551_read(pos:%ld, len:%ld) asize: %ld\n", (long)from, (long)len, (long)priv->asize);
223 #endif
224
225         end = from + len - 1;
226
227         /* Is it past the end? */
228         if (end > mtd->size) {
229 #ifdef CONFIG_MTD_PMC551_DEBUG
230         printk(KERN_DEBUG "pmc551_read() out of bounds (%ld > %ld)\n", (long) end, (long)mtd->size);
231 #endif
232                 return -EINVAL;
233         }
234
235         soff_hi = from & ~(priv->asize - 1);
236         eoff_hi = end & ~(priv->asize - 1);
237         soff_lo = from & (priv->asize - 1);
238         eoff_lo = end & (priv->asize - 1);
239
240         pmc551_point (mtd, from, len, retlen, &ptr);
241
242         if (soff_hi == eoff_hi) {
243                 /* The whole thing fits within one access, so just one shot
244                    will do it. */
245                 memcpy(copyto, ptr, len);
246                 copyto += len;
247         } else {
248                 /* We have to do multiple writes to get all the data
249                    written. */
250                 while (soff_hi != eoff_hi) {
251 #ifdef CONFIG_MTD_PMC551_DEBUG
252                         printk( KERN_DEBUG "pmc551_read() soff_hi: %ld, eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
253 #endif
254                         memcpy(copyto, ptr, priv->asize);
255                         copyto += priv->asize;
256                         if (soff_hi + priv->asize >= mtd->size) {
257                                 goto out;
258                         }
259                         soff_hi += priv->asize;
260                         pmc551_point (mtd, soff_hi, priv->asize, retlen, &ptr);
261                 }
262                 memcpy(copyto, ptr, eoff_lo);
263                 copyto += eoff_lo;
264         }
265
266 out:
267 #ifdef CONFIG_MTD_PMC551_DEBUG
268         printk(KERN_DEBUG "pmc551_read() done\n");
269 #endif
270         *retlen = copyto - buf;
271         return 0;
272 }
273
274 static int pmc551_write (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf)
275 {
276         struct mypriv *priv = mtd->priv;
277         u32 soff_hi, soff_lo; /* start address offset hi/lo */
278         u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
279         unsigned long end;
280         u_char *ptr;
281         const u_char *copyfrom = buf;
282
283
284 #ifdef CONFIG_MTD_PMC551_DEBUG
285         printk(KERN_DEBUG "pmc551_write(pos:%ld, len:%ld) asize:%ld\n", (long)to, (long)len, (long)priv->asize);
286 #endif
287
288         end = to + len - 1;
289         /* Is it past the end?  or did the u32 wrap? */
290         if (end > mtd->size ) {
291 #ifdef CONFIG_MTD_PMC551_DEBUG
292         printk(KERN_DEBUG "pmc551_write() out of bounds (end: %ld, size: %ld, to: %ld)\n", (long) end, (long)mtd->size, (long)to);
293 #endif
294                 return -EINVAL;
295         }
296
297         soff_hi = to & ~(priv->asize - 1);
298         eoff_hi = end & ~(priv->asize - 1);
299         soff_lo = to & (priv->asize - 1);
300         eoff_lo = end & (priv->asize - 1);
301
302         pmc551_point (mtd, to, len, retlen, &ptr);
303
304         if (soff_hi == eoff_hi) {
305                 /* The whole thing fits within one access, so just one shot
306                    will do it. */
307                 memcpy(ptr, copyfrom, len);
308                 copyfrom += len;
309         } else {
310                 /* We have to do multiple writes to get all the data
311                    written. */
312                 while (soff_hi != eoff_hi) {
313 #ifdef CONFIG_MTD_PMC551_DEBUG
314                         printk( KERN_DEBUG "pmc551_write() soff_hi: %ld, eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
315 #endif
316                         memcpy(ptr, copyfrom, priv->asize);
317                         copyfrom += priv->asize;
318                         if (soff_hi >= mtd->size) {
319                                 goto out;
320                         }
321                         soff_hi += priv->asize;
322                         pmc551_point (mtd, soff_hi, priv->asize, retlen, &ptr);
323                 }
324                 memcpy(ptr, copyfrom, eoff_lo);
325                 copyfrom += eoff_lo;
326         }
327
328 out:
329 #ifdef CONFIG_MTD_PMC551_DEBUG
330         printk(KERN_DEBUG "pmc551_write() done\n");
331 #endif
332         *retlen = copyfrom - buf;
333         return 0;
334 }
335
336 /*
337  * Fixup routines for the V370PDC
338  * PCI device ID 0x020011b0
339  *
340  * This function basicly kick starts the DRAM oboard the card and gets it
341  * ready to be used.  Before this is done the device reads VERY erratic, so
342  * much that it can crash the Linux 2.2.x series kernels when a user cat's
343  * /proc/pci .. though that is mainly a kernel bug in handling the PCI DEVSEL
344  * register.  FIXME: stop spinning on registers .. must implement a timeout
345  * mechanism
346  * returns the size of the memory region found.
347  */
348 static u32 fixup_pmc551 (struct pci_dev *dev)
349 {
350 #ifdef CONFIG_MTD_PMC551_BUGFIX
351         u32 dram_data;
352 #endif
353         u32 size, dcmd, cfg, dtmp;
354         u16 cmd, tmp, i;
355         u8 bcmd, counter;
356
357         /* Sanity Check */
358         if(!dev) {
359                 return -ENODEV;
360         }
361
362         /*
363          * Attempt to reset the card
364          * FIXME: Stop Spinning registers
365          */
366         counter=0;
367         /* unlock registers */
368         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, 0xA5 );
369         /* read in old data */
370         pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd );
371         /* bang the reset line up and down for a few */
372         for(i=0;i<10;i++) {
373                 counter=0;
374                 bcmd &= ~0x80;
375                 while(counter++ < 100) {
376                         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
377                 }
378                 counter=0;
379                 bcmd |= 0x80;
380                 while(counter++ < 100) {
381                         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
382                 }
383         }
384         bcmd |= (0x40|0x20);
385         pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
386
387         /*
388          * Take care and turn off the memory on the device while we
389          * tweak the configurations
390          */
391         pci_read_config_word(dev, PCI_COMMAND, &cmd);
392         tmp = cmd & ~(PCI_COMMAND_IO|PCI_COMMAND_MEMORY);
393         pci_write_config_word(dev, PCI_COMMAND, tmp);
394
395         /*
396          * Disable existing aperture before probing memory size
397          */
398         pci_read_config_dword(dev, PMC551_PCI_MEM_MAP0, &dcmd);
399         dtmp=(dcmd|PMC551_PCI_MEM_MAP_ENABLE|PMC551_PCI_MEM_MAP_REG_EN);
400         pci_write_config_dword(dev, PMC551_PCI_MEM_MAP0, dtmp);
401         /*
402          * Grab old BAR0 config so that we can figure out memory size
403          * This is another bit of kludge going on.  The reason for the
404          * redundancy is I am hoping to retain the original configuration
405          * previously assigned to the card by the BIOS or some previous
406          * fixup routine in the kernel.  So we read the old config into cfg,
407          * then write all 1's to the memory space, read back the result into
408          * "size", and then write back all the old config.
409          */
410         pci_read_config_dword( dev, PCI_BASE_ADDRESS_0, &cfg );
411 #ifndef CONFIG_MTD_PMC551_BUGFIX
412         pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, ~0 );
413         pci_read_config_dword( dev, PCI_BASE_ADDRESS_0, &size );
414         size = (size&PCI_BASE_ADDRESS_MEM_MASK);
415         size &= ~(size-1);
416         pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
417 #else
418         /*
419          * Get the size of the memory by reading all the DRAM size values
420          * and adding them up.
421          *
422          * KLUDGE ALERT: the boards we are using have invalid column and
423          * row mux values.  We fix them here, but this will break other
424          * memory configurations.
425          */
426         pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dram_data);
427         size = PMC551_DRAM_BLK_GET_SIZE(dram_data);
428         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
429         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
430         pci_write_config_dword(dev, PMC551_DRAM_BLK0, dram_data);
431
432         pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dram_data);
433         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
434         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
435         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
436         pci_write_config_dword(dev, PMC551_DRAM_BLK1, dram_data);
437
438         pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dram_data);
439         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
440         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
441         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
442         pci_write_config_dword(dev, PMC551_DRAM_BLK2, dram_data);
443
444         pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dram_data);
445         size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
446         dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
447         dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
448         pci_write_config_dword(dev, PMC551_DRAM_BLK3, dram_data);
449
450         /*
451          * Oops .. something went wrong
452          */
453         if( (size &= PCI_BASE_ADDRESS_MEM_MASK) == 0) {
454                 return -ENODEV;
455         }
456 #endif /* CONFIG_MTD_PMC551_BUGFIX */
457
458         if ((cfg&PCI_BASE_ADDRESS_SPACE) != PCI_BASE_ADDRESS_SPACE_MEMORY) {
459                 return -ENODEV;
460         }
461
462         /*
463          * Precharge Dram
464          */
465         pci_write_config_word( dev, PMC551_SDRAM_MA, 0x0400 );
466         pci_write_config_word( dev, PMC551_SDRAM_CMD, 0x00bf );
467
468         /*
469          * Wait until command has gone through
470          * FIXME: register spinning issue
471          */
472         do {    pci_read_config_word( dev, PMC551_SDRAM_CMD, &cmd );
473                 if(counter++ > 100)break;
474         } while ( (PCI_COMMAND_IO) & cmd );
475
476         /*
477          * Turn on auto refresh
478          * The loop is taken directly from Ramix's example code.  I assume that
479          * this must be held high for some duration of time, but I can find no
480          * documentation refrencing the reasons why.
481          */
482         for ( i = 1; i<=8 ; i++) {
483                 pci_write_config_word (dev, PMC551_SDRAM_CMD, 0x0df);
484
485                 /*
486                  * Make certain command has gone through
487                  * FIXME: register spinning issue
488                  */
489                 counter=0;
490                 do {    pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
491                         if(counter++ > 100)break;
492                 } while ( (PCI_COMMAND_IO) & cmd );
493         }
494
495         pci_write_config_word ( dev, PMC551_SDRAM_MA, 0x0020);
496         pci_write_config_word ( dev, PMC551_SDRAM_CMD, 0x0ff);
497
498         /*
499          * Wait until command completes
500          * FIXME: register spinning issue
501          */
502         counter=0;
503         do {    pci_read_config_word ( dev, PMC551_SDRAM_CMD, &cmd);
504                 if(counter++ > 100)break;
505         } while ( (PCI_COMMAND_IO) & cmd );
506
507         pci_read_config_dword ( dev, PMC551_DRAM_CFG, &dcmd);
508         dcmd |= 0x02000000;
509         pci_write_config_dword ( dev, PMC551_DRAM_CFG, dcmd);
510
511         /*
512          * Check to make certain fast back-to-back, if not
513          * then set it so
514          */
515         pci_read_config_word( dev, PCI_STATUS, &cmd);
516         if((cmd&PCI_COMMAND_FAST_BACK) == 0) {
517                 cmd |= PCI_COMMAND_FAST_BACK;
518                 pci_write_config_word( dev, PCI_STATUS, cmd);
519         }
520
521         /*
522          * Check to make certain the DEVSEL is set correctly, this device
523          * has a tendancy to assert DEVSEL and TRDY when a write is performed
524          * to the memory when memory is read-only
525          */
526         if((cmd&PCI_STATUS_DEVSEL_MASK) != 0x0) {
527                 cmd &= ~PCI_STATUS_DEVSEL_MASK;
528                 pci_write_config_word( dev, PCI_STATUS, cmd );
529         }
530         /*
531          * Set to be prefetchable and put everything back based on old cfg.
532          * it's possible that the reset of the V370PDC nuked the original
533          * setup
534          */
535         /*
536         cfg |= PCI_BASE_ADDRESS_MEM_PREFETCH;
537         pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
538         */
539
540         /*
541          * Turn PCI memory and I/O bus access back on
542          */
543         pci_write_config_word( dev, PCI_COMMAND,
544                                PCI_COMMAND_MEMORY | PCI_COMMAND_IO );
545 #ifdef CONFIG_MTD_PMC551_DEBUG
546         /*
547          * Some screen fun
548          */
549         printk(KERN_DEBUG "pmc551: %d%c (0x%x) of %sprefetchable memory at 0x%llx\n",
550                (size<1024)?size:(size<1048576)?size>>10:size>>20,
551                (size<1024)?'B':(size<1048576)?'K':'M',
552                size, ((dcmd&(0x1<<3)) == 0)?"non-":"",
553                (unsigned long long)((dev->resource[0].start)&PCI_BASE_ADDRESS_MEM_MASK));
554
555         /*
556          * Check to see the state of the memory
557          */
558         pci_read_config_dword( dev, PMC551_DRAM_BLK0, &dcmd );
559         printk(KERN_DEBUG "pmc551: DRAM_BLK0 Flags: %s,%s\n"
560                           "pmc551: DRAM_BLK0 Size: %d at %d\n"
561                           "pmc551: DRAM_BLK0 Row MUX: %d, Col MUX: %d\n",
562                (((0x1<<1)&dcmd) == 0)?"RW":"RO",
563                (((0x1<<0)&dcmd) == 0)?"Off":"On",
564                PMC551_DRAM_BLK_GET_SIZE(dcmd),
565                ((dcmd>>20)&0x7FF), ((dcmd>>13)&0x7), ((dcmd>>9)&0xF) );
566
567         pci_read_config_dword( dev, PMC551_DRAM_BLK1, &dcmd );
568         printk(KERN_DEBUG "pmc551: DRAM_BLK1 Flags: %s,%s\n"
569                           "pmc551: DRAM_BLK1 Size: %d at %d\n"
570                           "pmc551: DRAM_BLK1 Row MUX: %d, Col MUX: %d\n",
571                (((0x1<<1)&dcmd) == 0)?"RW":"RO",
572                (((0x1<<0)&dcmd) == 0)?"Off":"On",
573                PMC551_DRAM_BLK_GET_SIZE(dcmd),
574                ((dcmd>>20)&0x7FF), ((dcmd>>13)&0x7), ((dcmd>>9)&0xF) );
575
576         pci_read_config_dword( dev, PMC551_DRAM_BLK2, &dcmd );
577         printk(KERN_DEBUG "pmc551: DRAM_BLK2 Flags: %s,%s\n"
578                           "pmc551: DRAM_BLK2 Size: %d at %d\n"
579                           "pmc551: DRAM_BLK2 Row MUX: %d, Col MUX: %d\n",
580                (((0x1<<1)&dcmd) == 0)?"RW":"RO",
581                (((0x1<<0)&dcmd) == 0)?"Off":"On",
582                PMC551_DRAM_BLK_GET_SIZE(dcmd),
583                ((dcmd>>20)&0x7FF), ((dcmd>>13)&0x7), ((dcmd>>9)&0xF) );
584
585         pci_read_config_dword( dev, PMC551_DRAM_BLK3, &dcmd );
586         printk(KERN_DEBUG "pmc551: DRAM_BLK3 Flags: %s,%s\n"
587                           "pmc551: DRAM_BLK3 Size: %d at %d\n"
588                           "pmc551: DRAM_BLK3 Row MUX: %d, Col MUX: %d\n",
589                (((0x1<<1)&dcmd) == 0)?"RW":"RO",
590                (((0x1<<0)&dcmd) == 0)?"Off":"On",
591                PMC551_DRAM_BLK_GET_SIZE(dcmd),
592                ((dcmd>>20)&0x7FF), ((dcmd>>13)&0x7), ((dcmd>>9)&0xF) );
593
594         pci_read_config_word( dev, PCI_COMMAND, &cmd );
595         printk( KERN_DEBUG "pmc551: Memory Access %s\n",
596                 (((0x1<<1)&cmd) == 0)?"off":"on" );
597         printk( KERN_DEBUG "pmc551: I/O Access %s\n",
598                 (((0x1<<0)&cmd) == 0)?"off":"on" );
599
600         pci_read_config_word( dev, PCI_STATUS, &cmd );
601         printk( KERN_DEBUG "pmc551: Devsel %s\n",
602                 ((PCI_STATUS_DEVSEL_MASK&cmd)==0x000)?"Fast":
603                 ((PCI_STATUS_DEVSEL_MASK&cmd)==0x200)?"Medium":
604                 ((PCI_STATUS_DEVSEL_MASK&cmd)==0x400)?"Slow":"Invalid" );
605
606         printk( KERN_DEBUG "pmc551: %sFast Back-to-Back\n",
607                 ((PCI_COMMAND_FAST_BACK&cmd) == 0)?"Not ":"" );
608
609         pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd );
610         printk( KERN_DEBUG "pmc551: EEPROM is under %s control\n"
611                            "pmc551: System Control Register is %slocked to PCI access\n"
612                            "pmc551: System Control Register is %slocked to EEPROM access\n",
613                 (bcmd&0x1)?"software":"hardware",
614                 (bcmd&0x20)?"":"un", (bcmd&0x40)?"":"un");
615 #endif
616         return size;
617 }
618
619 /*
620  * Kernel version specific module stuffages
621  */
622
623
624 MODULE_LICENSE("GPL");
625 MODULE_AUTHOR("Mark Ferrell <mferrell@mvista.com>");
626 MODULE_DESCRIPTION(PMC551_VERSION);
627
628 /*
629  * Stuff these outside the ifdef so as to not bust compiled in driver support
630  */
631 static int msize=0;
632 #if defined(CONFIG_MTD_PMC551_APERTURE_SIZE)
633 static int asize=CONFIG_MTD_PMC551_APERTURE_SIZE
634 #else
635 static int asize=0;
636 #endif
637
638 module_param(msize, int, 0);
639 MODULE_PARM_DESC(msize, "memory size in Megabytes [1 - 1024]");
640 module_param(asize, int, 0);
641 MODULE_PARM_DESC(asize, "aperture size, must be <= memsize [1-1024]");
642
643 /*
644  * PMC551 Card Initialization
645  */
646 static int __init init_pmc551(void)
647 {
648         struct pci_dev *PCI_Device = NULL;
649         struct mypriv *priv;
650         int count, found=0;
651         struct mtd_info *mtd;
652         u32 length = 0;
653
654         if(msize) {
655                 msize = (1 << (ffs(msize) - 1))<<20;
656                 if (msize > (1<<30)) {
657                         printk(KERN_NOTICE "pmc551: Invalid memory size [%d]\n", msize);
658                         return -EINVAL;
659                 }
660         }
661
662         if(asize) {
663                 asize = (1 << (ffs(asize) - 1))<<20;
664                 if (asize > (1<<30) ) {
665                         printk(KERN_NOTICE "pmc551: Invalid aperture size [%d]\n", asize);
666                         return -EINVAL;
667                 }
668         }
669
670         printk(KERN_INFO PMC551_VERSION);
671
672         /*
673          * PCU-bus chipset probe.
674          */
675         for( count = 0; count < MAX_MTD_DEVICES; count++ ) {
676
677                 if ((PCI_Device = pci_find_device(PCI_VENDOR_ID_V3_SEMI,
678                                                   PCI_DEVICE_ID_V3_SEMI_V370PDC,
679                                                   PCI_Device ) ) == NULL) {
680                         break;
681                 }
682
683                 printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%llx\n",
684                                     (unsigned long long)PCI_Device->resource[0].start);
685
686                 /*
687                  * The PMC551 device acts VERY weird if you don't init it
688                  * first.  i.e. it will not correctly report devsel.  If for
689                  * some reason the sdram is in a wrote-protected state the
690                  * device will DEVSEL when it is written to causing problems
691                  * with the oldproc.c driver in
692                  * some kernels (2.2.*)
693                  */
694                 if((length = fixup_pmc551(PCI_Device)) <= 0) {
695                         printk(KERN_NOTICE "pmc551: Cannot init SDRAM\n");
696                         break;
697                 }
698
699                 /*
700                  * This is needed until the driver is capable of reading the
701                  * onboard I2C SROM to discover the "real" memory size.
702                  */
703                 if(msize) {
704                         length = msize;
705                         printk(KERN_NOTICE "pmc551: Using specified memory size 0x%x\n", length);
706                 } else {
707                         msize = length;
708                 }
709
710                 mtd = kmalloc(sizeof(struct mtd_info), GFP_KERNEL);
711                 if (!mtd) {
712                         printk(KERN_NOTICE "pmc551: Cannot allocate new MTD device.\n");
713                         break;
714                 }
715
716                 memset(mtd, 0, sizeof(struct mtd_info));
717
718                 priv = kmalloc (sizeof(struct mypriv), GFP_KERNEL);
719                 if (!priv) {
720                         printk(KERN_NOTICE "pmc551: Cannot allocate new MTD device.\n");
721                         kfree(mtd);
722                         break;
723                 }
724                 memset(priv, 0, sizeof(*priv));
725                 mtd->priv = priv;
726                 priv->dev = PCI_Device;
727
728                 if(asize > length) {
729                         printk(KERN_NOTICE "pmc551: reducing aperture size to fit %dM\n",length>>20);
730                         priv->asize = asize = length;
731                 } else if (asize == 0 || asize == length) {
732                         printk(KERN_NOTICE "pmc551: Using existing aperture size %dM\n", length>>20);
733                         priv->asize = asize = length;
734                 } else {
735                         printk(KERN_NOTICE "pmc551: Using specified aperture size %dM\n", asize>>20);
736                         priv->asize = asize;
737                 }
738                 priv->start = ioremap(((PCI_Device->resource[0].start)
739                                        & PCI_BASE_ADDRESS_MEM_MASK),
740                                       priv->asize);
741
742                 if (!priv->start) {
743                         printk(KERN_NOTICE "pmc551: Unable to map IO space\n");
744                         kfree(mtd->priv);
745                         kfree(mtd);
746                         break;
747                 }
748
749 #ifdef CONFIG_MTD_PMC551_DEBUG
750                 printk( KERN_DEBUG "pmc551: setting aperture to %d\n",
751                         ffs(priv->asize>>20)-1);
752 #endif
753
754                 priv->base_map0 = ( PMC551_PCI_MEM_MAP_REG_EN
755                                   | PMC551_PCI_MEM_MAP_ENABLE
756                                   | (ffs(priv->asize>>20)-1)<<4 );
757                 priv->curr_map0 = priv->base_map0;
758                 pci_write_config_dword ( priv->dev, PMC551_PCI_MEM_MAP0,
759                                          priv->curr_map0 );
760
761 #ifdef CONFIG_MTD_PMC551_DEBUG
762                 printk( KERN_DEBUG "pmc551: aperture set to %d\n",
763                         (priv->base_map0 & 0xF0)>>4 );
764 #endif
765
766                 mtd->size       = msize;
767                 mtd->flags      = MTD_CAP_RAM;
768                 mtd->erase      = pmc551_erase;
769                 mtd->read       = pmc551_read;
770                 mtd->write      = pmc551_write;
771                 mtd->point      = pmc551_point;
772                 mtd->unpoint    = pmc551_unpoint;
773                 mtd->type       = MTD_RAM;
774                 mtd->name       = "PMC551 RAM board";
775                 mtd->erasesize  = 0x10000;
776                 mtd->writesize  = 1;
777                 mtd->owner = THIS_MODULE;
778
779                 if (add_mtd_device(mtd)) {
780                         printk(KERN_NOTICE "pmc551: Failed to register new device\n");
781                         iounmap(priv->start);
782                         kfree(mtd->priv);
783                         kfree(mtd);
784                         break;
785                 }
786                 printk(KERN_NOTICE "Registered pmc551 memory device.\n");
787                 printk(KERN_NOTICE "Mapped %dM of memory from 0x%p to 0x%p\n",
788                        priv->asize>>20,
789                        priv->start,
790                        priv->start + priv->asize);
791                 printk(KERN_NOTICE "Total memory is %d%c\n",
792                         (length<1024)?length:
793                                 (length<1048576)?length>>10:length>>20,
794                         (length<1024)?'B':(length<1048576)?'K':'M');
795                 priv->nextpmc551 = pmc551list;
796                 pmc551list = mtd;
797                 found++;
798         }
799
800         if( !pmc551list ) {
801                 printk(KERN_NOTICE "pmc551: not detected\n");
802                 return -ENODEV;
803         } else {
804                 printk(KERN_NOTICE "pmc551: %d pmc551 devices loaded\n", found);
805                 return 0;
806         }
807 }
808
809 /*
810  * PMC551 Card Cleanup
811  */
812 static void __exit cleanup_pmc551(void)
813 {
814         int found=0;
815         struct mtd_info *mtd;
816         struct mypriv *priv;
817
818         while((mtd=pmc551list)) {
819                 priv = mtd->priv;
820                 pmc551list = priv->nextpmc551;
821
822                 if(priv->start) {
823                         printk (KERN_DEBUG "pmc551: unmapping %dM starting at 0x%p\n",
824                                 priv->asize>>20, priv->start);
825                         iounmap (priv->start);
826                 }
827
828                 kfree (mtd->priv);
829                 del_mtd_device (mtd);
830                 kfree (mtd);
831                 found++;
832         }
833
834         printk(KERN_NOTICE "pmc551: %d pmc551 devices unloaded\n", found);
835 }
836
837 module_init(init_pmc551);
838 module_exit(cleanup_pmc551);