1 // SPDX-License-Identifier: GPL-2.0-only
3 * PMC551 PCI Mezzanine Ram Device
6 * Mark Ferrell <mferrell@mvista.com>
7 * Copyright 1999,2000 Nortel Networks
10 * This driver is intended to support the PMC551 PCI Ram device
11 * from Ramix Inc. The PMC551 is a PMC Mezzanine module for
12 * cPCI embedded systems. The device contains a single SROM
13 * that initially programs the V370PDC chipset onboard the
14 * device, and various banks of DRAM/SDRAM onboard. This driver
15 * implements this PCI Ram device as an MTD (Memory Technology
16 * Device) so that it can be used to hold a file system, or for
17 * added swap space in embedded systems. Since the memory on
18 * this board isn't as fast as main memory we do not try to hook
19 * it into main memory as that would simply reduce performance
20 * on the system. Using it as a block device allows us to use
21 * it as high speed swap or for a high speed disk device of some
22 * sort. Which becomes very useful on diskless systems in the
23 * embedded market I might add.
26 * Due to what I assume is more buggy SROM, the 64M PMC551 I
27 * have available claims that all 4 of its DRAM banks have 64MiB
28 * of ram configured (making a grand total of 256MiB onboard).
29 * This is slightly annoying since the BAR0 size reflects the
30 * aperture size, not the dram size, and the V370PDC supplies no
31 * other method for memory size discovery. This problem is
32 * mostly only relevant when compiled as a module, as the
33 * unloading of the module with an aperture size smaller than
34 * the ram will cause the driver to detect the onboard memory
35 * size to be equal to the aperture size when the module is
36 * reloaded. Soooo, to help, the module supports an msize
37 * option to allow the specification of the onboard memory, and
38 * an asize option, to allow the specification of the aperture
39 * size. The aperture must be equal to or less then the memory
40 * size, the driver will correct this if you screw it up. This
41 * problem is not relevant for compiled in drivers as compiled
42 * in drivers only init once.
45 * Saeed Karamooz <saeed@ramix.com> of Ramix INC. for the
46 * initial example code of how to initialize this device and for
47 * help with questions I had concerning operation of the device.
49 * Most of the MTD code for this driver was originally written
50 * for the slram.o module in the MTD drivers package which
51 * allows the mapping of system memory into an MTD device.
52 * Since the PMC551 memory module is accessed in the same
53 * fashion as system memory, the slram.c code became a very nice
54 * fit to the needs of this driver. All we added was PCI
55 * detection/initialization to the driver and automatically figure
56 * out the size via the PCI detection.o, later changes by Corey
57 * Minyard set up the card to utilize a 1M sliding apature.
59 * Corey Minyard <minyard@nortelnetworks.com>
60 * * Modified driver to utilize a sliding aperture instead of
61 * mapping all memory into kernel space which turned out to
63 * * Located a bug in the SROM's initialization sequence that
64 * made the memory unusable, added a fix to code to touch up
68 * * MUST fix the init function to not spin on a register
69 * waiting for it to set .. this does not safely handle busted
70 * devices that never reset the register correctly which will
71 * cause the system to hang w/ a reboot being the only chance at
72 * recover. [sort of fixed, could be better]
73 * * Add I2C handling of the SROM so we can read the SROM's information
74 * about the aperture size. This should always accurately reflect the
75 * onboard memory size.
76 * * Comb the init routine. It's still a bit cludgy on a few things.
79 #include <linux/kernel.h>
80 #include <linux/module.h>
81 #include <linux/uaccess.h>
82 #include <linux/types.h>
83 #include <linux/init.h>
84 #include <linux/ptrace.h>
85 #include <linux/slab.h>
86 #include <linux/string.h>
87 #include <linux/timer.h>
88 #include <linux/major.h>
90 #include <linux/ioctl.h>
92 #include <linux/pci.h>
93 #include <linux/mtd/mtd.h>
95 #define PMC551_VERSION \
96 "Ramix PMC551 PCI Mezzanine Ram Driver. (C) 1999,2000 Nortel Networks.\n"
98 #define PCI_VENDOR_ID_V3_SEMI 0x11b0
99 #define PCI_DEVICE_ID_V3_SEMI_V370PDC 0x0200
101 #define PMC551_PCI_MEM_MAP0 0x50
102 #define PMC551_PCI_MEM_MAP1 0x54
103 #define PMC551_PCI_MEM_MAP_MAP_ADDR_MASK 0x3ff00000
104 #define PMC551_PCI_MEM_MAP_APERTURE_MASK 0x000000f0
105 #define PMC551_PCI_MEM_MAP_REG_EN 0x00000002
106 #define PMC551_PCI_MEM_MAP_ENABLE 0x00000001
108 #define PMC551_SDRAM_MA 0x60
109 #define PMC551_SDRAM_CMD 0x62
110 #define PMC551_DRAM_CFG 0x64
111 #define PMC551_SYS_CTRL_REG 0x78
113 #define PMC551_DRAM_BLK0 0x68
114 #define PMC551_DRAM_BLK1 0x6c
115 #define PMC551_DRAM_BLK2 0x70
116 #define PMC551_DRAM_BLK3 0x74
117 #define PMC551_DRAM_BLK_GET_SIZE(x) (524288 << ((x >> 4) & 0x0f))
118 #define PMC551_DRAM_BLK_SET_COL_MUX(x, v) (((x) & ~0x00007000) | (((v) & 0x7) << 12))
119 #define PMC551_DRAM_BLK_SET_ROW_MUX(x, v) (((x) & ~0x00000f00) | (((v) & 0xf) << 8))
127 struct mtd_info
*nextpmc551
;
130 static struct mtd_info
*pmc551list
;
132 static int pmc551_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
133 size_t *retlen
, void **virt
, resource_size_t
*phys
);
135 static int pmc551_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
137 struct mypriv
*priv
= mtd
->priv
;
138 u32 soff_hi
, soff_lo
; /* start address offset hi/lo */
139 u32 eoff_hi
, eoff_lo
; /* end address offset hi/lo */
144 #ifdef CONFIG_MTD_PMC551_DEBUG
145 printk(KERN_DEBUG
"pmc551_erase(pos:%ld, len:%ld)\n", (long)instr
->addr
,
149 end
= instr
->addr
+ instr
->len
- 1;
150 eoff_hi
= end
& ~(priv
->asize
- 1);
151 soff_hi
= instr
->addr
& ~(priv
->asize
- 1);
152 eoff_lo
= end
& (priv
->asize
- 1);
153 soff_lo
= instr
->addr
& (priv
->asize
- 1);
155 pmc551_point(mtd
, instr
->addr
, instr
->len
, &retlen
,
156 (void **)&ptr
, NULL
);
158 if (soff_hi
== eoff_hi
|| mtd
->size
== priv
->asize
) {
159 /* The whole thing fits within one access, so just one shot
161 memset(ptr
, 0xff, instr
->len
);
163 /* We have to do multiple writes to get all the data
165 while (soff_hi
!= eoff_hi
) {
166 #ifdef CONFIG_MTD_PMC551_DEBUG
167 printk(KERN_DEBUG
"pmc551_erase() soff_hi: %ld, "
168 "eoff_hi: %ld\n", (long)soff_hi
, (long)eoff_hi
);
170 memset(ptr
, 0xff, priv
->asize
);
171 if (soff_hi
+ priv
->asize
>= mtd
->size
) {
174 soff_hi
+= priv
->asize
;
175 pmc551_point(mtd
, (priv
->base_map0
| soff_hi
),
176 priv
->asize
, &retlen
,
177 (void **)&ptr
, NULL
);
179 memset(ptr
, 0xff, eoff_lo
);
183 #ifdef CONFIG_MTD_PMC551_DEBUG
184 printk(KERN_DEBUG
"pmc551_erase() done\n");
190 static int pmc551_point(struct mtd_info
*mtd
, loff_t from
, size_t len
,
191 size_t *retlen
, void **virt
, resource_size_t
*phys
)
193 struct mypriv
*priv
= mtd
->priv
;
197 #ifdef CONFIG_MTD_PMC551_DEBUG
198 printk(KERN_DEBUG
"pmc551_point(%ld, %ld)\n", (long)from
, (long)len
);
201 soff_hi
= from
& ~(priv
->asize
- 1);
202 soff_lo
= from
& (priv
->asize
- 1);
204 /* Cheap hack optimization */
205 if (priv
->curr_map0
!= from
) {
206 pci_write_config_dword(priv
->dev
, PMC551_PCI_MEM_MAP0
,
207 (priv
->base_map0
| soff_hi
));
208 priv
->curr_map0
= soff_hi
;
211 *virt
= priv
->start
+ soff_lo
;
216 static int pmc551_unpoint(struct mtd_info
*mtd
, loff_t from
, size_t len
)
218 #ifdef CONFIG_MTD_PMC551_DEBUG
219 printk(KERN_DEBUG
"pmc551_unpoint()\n");
224 static int pmc551_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
225 size_t * retlen
, u_char
* buf
)
227 struct mypriv
*priv
= mtd
->priv
;
228 u32 soff_hi
, soff_lo
; /* start address offset hi/lo */
229 u32 eoff_hi
, eoff_lo
; /* end address offset hi/lo */
232 u_char
*copyto
= buf
;
234 #ifdef CONFIG_MTD_PMC551_DEBUG
235 printk(KERN_DEBUG
"pmc551_read(pos:%ld, len:%ld) asize: %ld\n",
236 (long)from
, (long)len
, (long)priv
->asize
);
239 end
= from
+ len
- 1;
240 soff_hi
= from
& ~(priv
->asize
- 1);
241 eoff_hi
= end
& ~(priv
->asize
- 1);
242 soff_lo
= from
& (priv
->asize
- 1);
243 eoff_lo
= end
& (priv
->asize
- 1);
245 pmc551_point(mtd
, from
, len
, retlen
, (void **)&ptr
, NULL
);
247 if (soff_hi
== eoff_hi
) {
248 /* The whole thing fits within one access, so just one shot
250 memcpy(copyto
, ptr
, len
);
253 /* We have to do multiple writes to get all the data
255 while (soff_hi
!= eoff_hi
) {
256 #ifdef CONFIG_MTD_PMC551_DEBUG
257 printk(KERN_DEBUG
"pmc551_read() soff_hi: %ld, "
258 "eoff_hi: %ld\n", (long)soff_hi
, (long)eoff_hi
);
260 memcpy(copyto
, ptr
, priv
->asize
);
261 copyto
+= priv
->asize
;
262 if (soff_hi
+ priv
->asize
>= mtd
->size
) {
265 soff_hi
+= priv
->asize
;
266 pmc551_point(mtd
, soff_hi
, priv
->asize
, retlen
,
267 (void **)&ptr
, NULL
);
269 memcpy(copyto
, ptr
, eoff_lo
);
274 #ifdef CONFIG_MTD_PMC551_DEBUG
275 printk(KERN_DEBUG
"pmc551_read() done\n");
277 *retlen
= copyto
- buf
;
281 static int pmc551_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
282 size_t * retlen
, const u_char
* buf
)
284 struct mypriv
*priv
= mtd
->priv
;
285 u32 soff_hi
, soff_lo
; /* start address offset hi/lo */
286 u32 eoff_hi
, eoff_lo
; /* end address offset hi/lo */
289 const u_char
*copyfrom
= buf
;
291 #ifdef CONFIG_MTD_PMC551_DEBUG
292 printk(KERN_DEBUG
"pmc551_write(pos:%ld, len:%ld) asize:%ld\n",
293 (long)to
, (long)len
, (long)priv
->asize
);
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);
302 pmc551_point(mtd
, to
, len
, retlen
, (void **)&ptr
, NULL
);
304 if (soff_hi
== eoff_hi
) {
305 /* The whole thing fits within one access, so just one shot
307 memcpy(ptr
, copyfrom
, len
);
310 /* We have to do multiple writes to get all the data
312 while (soff_hi
!= eoff_hi
) {
313 #ifdef CONFIG_MTD_PMC551_DEBUG
314 printk(KERN_DEBUG
"pmc551_write() soff_hi: %ld, "
315 "eoff_hi: %ld\n", (long)soff_hi
, (long)eoff_hi
);
317 memcpy(ptr
, copyfrom
, priv
->asize
);
318 copyfrom
+= priv
->asize
;
319 if (soff_hi
>= mtd
->size
) {
322 soff_hi
+= priv
->asize
;
323 pmc551_point(mtd
, soff_hi
, priv
->asize
, retlen
,
324 (void **)&ptr
, NULL
);
326 memcpy(ptr
, copyfrom
, eoff_lo
);
331 #ifdef CONFIG_MTD_PMC551_DEBUG
332 printk(KERN_DEBUG
"pmc551_write() done\n");
334 *retlen
= copyfrom
- buf
;
339 * Fixup routines for the V370PDC
340 * PCI device ID 0x020011b0
342 * This function basically kick starts the DRAM oboard the card and gets it
343 * ready to be used. Before this is done the device reads VERY erratic, so
344 * much that it can crash the Linux 2.2.x series kernels when a user cat's
345 * /proc/pci .. though that is mainly a kernel bug in handling the PCI DEVSEL
346 * register. FIXME: stop spinning on registers .. must implement a timeout
348 * returns the size of the memory region found.
350 static int __init
fixup_pmc551(struct pci_dev
*dev
)
352 #ifdef CONFIG_MTD_PMC551_BUGFIX
355 u32 size
, dcmd
, cfg
, dtmp
;
365 * Attempt to reset the card
366 * FIXME: Stop Spinning registers
369 /* unlock registers */
370 pci_write_config_byte(dev
, PMC551_SYS_CTRL_REG
, 0xA5);
371 /* read in old data */
372 pci_read_config_byte(dev
, PMC551_SYS_CTRL_REG
, &bcmd
);
373 /* bang the reset line up and down for a few */
374 for (i
= 0; i
< 10; i
++) {
377 while (counter
++ < 100) {
378 pci_write_config_byte(dev
, PMC551_SYS_CTRL_REG
, bcmd
);
382 while (counter
++ < 100) {
383 pci_write_config_byte(dev
, PMC551_SYS_CTRL_REG
, bcmd
);
386 bcmd
|= (0x40 | 0x20);
387 pci_write_config_byte(dev
, PMC551_SYS_CTRL_REG
, bcmd
);
390 * Take care and turn off the memory on the device while we
391 * tweak the configurations
393 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
394 tmp
= cmd
& ~(PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
);
395 pci_write_config_word(dev
, PCI_COMMAND
, tmp
);
398 * Disable existing aperture before probing memory size
400 pci_read_config_dword(dev
, PMC551_PCI_MEM_MAP0
, &dcmd
);
401 dtmp
= (dcmd
| PMC551_PCI_MEM_MAP_ENABLE
| PMC551_PCI_MEM_MAP_REG_EN
);
402 pci_write_config_dword(dev
, PMC551_PCI_MEM_MAP0
, dtmp
);
404 * Grab old BAR0 config so that we can figure out memory size
405 * This is another bit of kludge going on. The reason for the
406 * redundancy is I am hoping to retain the original configuration
407 * previously assigned to the card by the BIOS or some previous
408 * fixup routine in the kernel. So we read the old config into cfg,
409 * then write all 1's to the memory space, read back the result into
410 * "size", and then write back all the old config.
412 pci_read_config_dword(dev
, PCI_BASE_ADDRESS_0
, &cfg
);
413 #ifndef CONFIG_MTD_PMC551_BUGFIX
414 pci_write_config_dword(dev
, PCI_BASE_ADDRESS_0
, ~0);
415 pci_read_config_dword(dev
, PCI_BASE_ADDRESS_0
, &size
);
416 size
= (size
& PCI_BASE_ADDRESS_MEM_MASK
);
418 pci_write_config_dword(dev
, PCI_BASE_ADDRESS_0
, cfg
);
421 * Get the size of the memory by reading all the DRAM size values
422 * and adding them up.
424 * KLUDGE ALERT: the boards we are using have invalid column and
425 * row mux values. We fix them here, but this will break other
426 * memory configurations.
428 pci_read_config_dword(dev
, PMC551_DRAM_BLK0
, &dram_data
);
429 size
= PMC551_DRAM_BLK_GET_SIZE(dram_data
);
430 dram_data
= PMC551_DRAM_BLK_SET_COL_MUX(dram_data
, 0x5);
431 dram_data
= PMC551_DRAM_BLK_SET_ROW_MUX(dram_data
, 0x9);
432 pci_write_config_dword(dev
, PMC551_DRAM_BLK0
, dram_data
);
434 pci_read_config_dword(dev
, PMC551_DRAM_BLK1
, &dram_data
);
435 size
+= PMC551_DRAM_BLK_GET_SIZE(dram_data
);
436 dram_data
= PMC551_DRAM_BLK_SET_COL_MUX(dram_data
, 0x5);
437 dram_data
= PMC551_DRAM_BLK_SET_ROW_MUX(dram_data
, 0x9);
438 pci_write_config_dword(dev
, PMC551_DRAM_BLK1
, dram_data
);
440 pci_read_config_dword(dev
, PMC551_DRAM_BLK2
, &dram_data
);
441 size
+= PMC551_DRAM_BLK_GET_SIZE(dram_data
);
442 dram_data
= PMC551_DRAM_BLK_SET_COL_MUX(dram_data
, 0x5);
443 dram_data
= PMC551_DRAM_BLK_SET_ROW_MUX(dram_data
, 0x9);
444 pci_write_config_dword(dev
, PMC551_DRAM_BLK2
, dram_data
);
446 pci_read_config_dword(dev
, PMC551_DRAM_BLK3
, &dram_data
);
447 size
+= PMC551_DRAM_BLK_GET_SIZE(dram_data
);
448 dram_data
= PMC551_DRAM_BLK_SET_COL_MUX(dram_data
, 0x5);
449 dram_data
= PMC551_DRAM_BLK_SET_ROW_MUX(dram_data
, 0x9);
450 pci_write_config_dword(dev
, PMC551_DRAM_BLK3
, dram_data
);
453 * Oops .. something went wrong
455 if ((size
&= PCI_BASE_ADDRESS_MEM_MASK
) == 0) {
458 #endif /* CONFIG_MTD_PMC551_BUGFIX */
460 if ((cfg
& PCI_BASE_ADDRESS_SPACE
) != PCI_BASE_ADDRESS_SPACE_MEMORY
) {
467 pci_write_config_word(dev
, PMC551_SDRAM_MA
, 0x0400);
468 pci_write_config_word(dev
, PMC551_SDRAM_CMD
, 0x00bf);
471 * Wait until command has gone through
472 * FIXME: register spinning issue
475 pci_read_config_word(dev
, PMC551_SDRAM_CMD
, &cmd
);
478 } while ((PCI_COMMAND_IO
) & cmd
);
481 * Turn on auto refresh
482 * The loop is taken directly from Ramix's example code. I assume that
483 * this must be held high for some duration of time, but I can find no
484 * documentation refrencing the reasons why.
486 for (i
= 1; i
<= 8; i
++) {
487 pci_write_config_word(dev
, PMC551_SDRAM_CMD
, 0x0df);
490 * Make certain command has gone through
491 * FIXME: register spinning issue
495 pci_read_config_word(dev
, PMC551_SDRAM_CMD
, &cmd
);
498 } while ((PCI_COMMAND_IO
) & cmd
);
501 pci_write_config_word(dev
, PMC551_SDRAM_MA
, 0x0020);
502 pci_write_config_word(dev
, PMC551_SDRAM_CMD
, 0x0ff);
505 * Wait until command completes
506 * FIXME: register spinning issue
510 pci_read_config_word(dev
, PMC551_SDRAM_CMD
, &cmd
);
513 } while ((PCI_COMMAND_IO
) & cmd
);
515 pci_read_config_dword(dev
, PMC551_DRAM_CFG
, &dcmd
);
517 pci_write_config_dword(dev
, PMC551_DRAM_CFG
, dcmd
);
520 * Check to make certain fast back-to-back, if not
523 pci_read_config_word(dev
, PCI_STATUS
, &cmd
);
524 if ((cmd
& PCI_COMMAND_FAST_BACK
) == 0) {
525 cmd
|= PCI_COMMAND_FAST_BACK
;
526 pci_write_config_word(dev
, PCI_STATUS
, cmd
);
530 * Check to make certain the DEVSEL is set correctly, this device
531 * has a tendency to assert DEVSEL and TRDY when a write is performed
532 * to the memory when memory is read-only
534 if ((cmd
& PCI_STATUS_DEVSEL_MASK
) != 0x0) {
535 cmd
&= ~PCI_STATUS_DEVSEL_MASK
;
536 pci_write_config_word(dev
, PCI_STATUS
, cmd
);
539 * Set to be prefetchable and put everything back based on old cfg.
540 * it's possible that the reset of the V370PDC nuked the original
544 cfg |= PCI_BASE_ADDRESS_MEM_PREFETCH;
545 pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
549 * Turn PCI memory and I/O bus access back on
551 pci_write_config_word(dev
, PCI_COMMAND
,
552 PCI_COMMAND_MEMORY
| PCI_COMMAND_IO
);
553 #ifdef CONFIG_MTD_PMC551_DEBUG
557 printk(KERN_DEBUG
"pmc551: %d%sB (0x%x) of %sprefetchable memory at "
558 "0x%llx\n", (size
< 1024) ? size
: (size
< 1048576) ?
559 size
>> 10 : size
>> 20,
560 (size
< 1024) ? "" : (size
< 1048576) ? "Ki" : "Mi", size
,
561 ((dcmd
& (0x1 << 3)) == 0) ? "non-" : "",
562 (unsigned long long)pci_resource_start(dev
, 0));
565 * Check to see the state of the memory
567 pci_read_config_dword(dev
, PMC551_DRAM_BLK0
, &dcmd
);
568 printk(KERN_DEBUG
"pmc551: DRAM_BLK0 Flags: %s,%s\n"
569 "pmc551: DRAM_BLK0 Size: %d at %d\n"
570 "pmc551: DRAM_BLK0 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),
575 ((dcmd
>> 9) & 0xF));
577 pci_read_config_dword(dev
, PMC551_DRAM_BLK1
, &dcmd
);
578 printk(KERN_DEBUG
"pmc551: DRAM_BLK1 Flags: %s,%s\n"
579 "pmc551: DRAM_BLK1 Size: %d at %d\n"
580 "pmc551: DRAM_BLK1 Row MUX: %d, Col MUX: %d\n",
581 (((0x1 << 1) & dcmd
) == 0) ? "RW" : "RO",
582 (((0x1 << 0) & dcmd
) == 0) ? "Off" : "On",
583 PMC551_DRAM_BLK_GET_SIZE(dcmd
),
584 ((dcmd
>> 20) & 0x7FF), ((dcmd
>> 13) & 0x7),
585 ((dcmd
>> 9) & 0xF));
587 pci_read_config_dword(dev
, PMC551_DRAM_BLK2
, &dcmd
);
588 printk(KERN_DEBUG
"pmc551: DRAM_BLK2 Flags: %s,%s\n"
589 "pmc551: DRAM_BLK2 Size: %d at %d\n"
590 "pmc551: DRAM_BLK2 Row MUX: %d, Col MUX: %d\n",
591 (((0x1 << 1) & dcmd
) == 0) ? "RW" : "RO",
592 (((0x1 << 0) & dcmd
) == 0) ? "Off" : "On",
593 PMC551_DRAM_BLK_GET_SIZE(dcmd
),
594 ((dcmd
>> 20) & 0x7FF), ((dcmd
>> 13) & 0x7),
595 ((dcmd
>> 9) & 0xF));
597 pci_read_config_dword(dev
, PMC551_DRAM_BLK3
, &dcmd
);
598 printk(KERN_DEBUG
"pmc551: DRAM_BLK3 Flags: %s,%s\n"
599 "pmc551: DRAM_BLK3 Size: %d at %d\n"
600 "pmc551: DRAM_BLK3 Row MUX: %d, Col MUX: %d\n",
601 (((0x1 << 1) & dcmd
) == 0) ? "RW" : "RO",
602 (((0x1 << 0) & dcmd
) == 0) ? "Off" : "On",
603 PMC551_DRAM_BLK_GET_SIZE(dcmd
),
604 ((dcmd
>> 20) & 0x7FF), ((dcmd
>> 13) & 0x7),
605 ((dcmd
>> 9) & 0xF));
607 pci_read_config_word(dev
, PCI_COMMAND
, &cmd
);
608 printk(KERN_DEBUG
"pmc551: Memory Access %s\n",
609 (((0x1 << 1) & cmd
) == 0) ? "off" : "on");
610 printk(KERN_DEBUG
"pmc551: I/O Access %s\n",
611 (((0x1 << 0) & cmd
) == 0) ? "off" : "on");
613 pci_read_config_word(dev
, PCI_STATUS
, &cmd
);
614 printk(KERN_DEBUG
"pmc551: Devsel %s\n",
615 ((PCI_STATUS_DEVSEL_MASK
& cmd
) == 0x000) ? "Fast" :
616 ((PCI_STATUS_DEVSEL_MASK
& cmd
) == 0x200) ? "Medium" :
617 ((PCI_STATUS_DEVSEL_MASK
& cmd
) == 0x400) ? "Slow" : "Invalid");
619 printk(KERN_DEBUG
"pmc551: %sFast Back-to-Back\n",
620 ((PCI_COMMAND_FAST_BACK
& cmd
) == 0) ? "Not " : "");
622 pci_read_config_byte(dev
, PMC551_SYS_CTRL_REG
, &bcmd
);
623 printk(KERN_DEBUG
"pmc551: EEPROM is under %s control\n"
624 "pmc551: System Control Register is %slocked to PCI access\n"
625 "pmc551: System Control Register is %slocked to EEPROM access\n",
626 (bcmd
& 0x1) ? "software" : "hardware",
627 (bcmd
& 0x20) ? "" : "un", (bcmd
& 0x40) ? "" : "un");
633 * Kernel version specific module stuffages
636 MODULE_LICENSE("GPL");
637 MODULE_AUTHOR("Mark Ferrell <mferrell@mvista.com>");
638 MODULE_DESCRIPTION(PMC551_VERSION
);
641 * Stuff these outside the ifdef so as to not bust compiled in driver support
643 static int msize
= 0;
644 static int asize
= 0;
646 module_param(msize
, int, 0);
647 MODULE_PARM_DESC(msize
, "memory size in MiB [1 - 1024]");
648 module_param(asize
, int, 0);
649 MODULE_PARM_DESC(asize
, "aperture size, must be <= memsize [1-1024]");
652 * PMC551 Card Initialization
654 static int __init
init_pmc551(void)
656 struct pci_dev
*PCI_Device
= NULL
;
659 struct mtd_info
*mtd
;
663 msize
= (1 << (ffs(msize
) - 1)) << 20;
664 if (msize
> (1 << 30)) {
665 printk(KERN_NOTICE
"pmc551: Invalid memory size [%d]\n",
672 asize
= (1 << (ffs(asize
) - 1)) << 20;
673 if (asize
> (1 << 30)) {
674 printk(KERN_NOTICE
"pmc551: Invalid aperture size "
680 printk(KERN_INFO PMC551_VERSION
);
683 * PCU-bus chipset probe.
687 if ((PCI_Device
= pci_get_device(PCI_VENDOR_ID_V3_SEMI
,
688 PCI_DEVICE_ID_V3_SEMI_V370PDC
,
689 PCI_Device
)) == NULL
) {
693 printk(KERN_NOTICE
"pmc551: Found PCI V370PDC at 0x%llx\n",
694 (unsigned long long)pci_resource_start(PCI_Device
, 0));
697 * The PMC551 device acts VERY weird if you don't init it
698 * first. i.e. it will not correctly report devsel. If for
699 * some reason the sdram is in a wrote-protected state the
700 * device will DEVSEL when it is written to causing problems
701 * with the oldproc.c driver in
702 * some kernels (2.2.*)
704 if ((length
= fixup_pmc551(PCI_Device
)) <= 0) {
705 printk(KERN_NOTICE
"pmc551: Cannot init SDRAM\n");
710 * This is needed until the driver is capable of reading the
711 * onboard I2C SROM to discover the "real" memory size.
715 printk(KERN_NOTICE
"pmc551: Using specified memory "
716 "size 0x%x\n", length
);
721 mtd
= kzalloc(sizeof(struct mtd_info
), GFP_KERNEL
);
725 priv
= kzalloc(sizeof(struct mypriv
), GFP_KERNEL
);
731 priv
->dev
= PCI_Device
;
733 if (asize
> length
) {
734 printk(KERN_NOTICE
"pmc551: reducing aperture size to "
735 "fit %dM\n", length
>> 20);
736 priv
->asize
= asize
= length
;
737 } else if (asize
== 0 || asize
== length
) {
738 printk(KERN_NOTICE
"pmc551: Using existing aperture "
739 "size %dM\n", length
>> 20);
740 priv
->asize
= asize
= length
;
742 printk(KERN_NOTICE
"pmc551: Using specified aperture "
743 "size %dM\n", asize
>> 20);
746 priv
->start
= pci_iomap(PCI_Device
, 0, priv
->asize
);
749 printk(KERN_NOTICE
"pmc551: Unable to map IO space\n");
754 #ifdef CONFIG_MTD_PMC551_DEBUG
755 printk(KERN_DEBUG
"pmc551: setting aperture to %d\n",
756 ffs(priv
->asize
>> 20) - 1);
759 priv
->base_map0
= (PMC551_PCI_MEM_MAP_REG_EN
760 | PMC551_PCI_MEM_MAP_ENABLE
761 | (ffs(priv
->asize
>> 20) - 1) << 4);
762 priv
->curr_map0
= priv
->base_map0
;
763 pci_write_config_dword(priv
->dev
, PMC551_PCI_MEM_MAP0
,
766 #ifdef CONFIG_MTD_PMC551_DEBUG
767 printk(KERN_DEBUG
"pmc551: aperture set to %d\n",
768 (priv
->base_map0
& 0xF0) >> 4);
772 mtd
->flags
= MTD_CAP_RAM
;
773 mtd
->_erase
= pmc551_erase
;
774 mtd
->_read
= pmc551_read
;
775 mtd
->_write
= pmc551_write
;
776 mtd
->_point
= pmc551_point
;
777 mtd
->_unpoint
= pmc551_unpoint
;
779 mtd
->name
= "PMC551 RAM board";
780 mtd
->erasesize
= 0x10000;
782 mtd
->owner
= THIS_MODULE
;
784 if (mtd_device_register(mtd
, NULL
, 0)) {
785 printk(KERN_NOTICE
"pmc551: Failed to register new device\n");
786 pci_iounmap(PCI_Device
, priv
->start
);
792 /* Keep a reference as the mtd_device_register worked */
793 pci_dev_get(PCI_Device
);
795 printk(KERN_NOTICE
"Registered pmc551 memory device.\n");
796 printk(KERN_NOTICE
"Mapped %dMiB of memory from 0x%p to 0x%p\n",
798 priv
->start
, priv
->start
+ priv
->asize
);
799 printk(KERN_NOTICE
"Total memory is %d%sB\n",
800 (length
< 1024) ? length
:
801 (length
< 1048576) ? length
>> 10 : length
>> 20,
802 (length
< 1024) ? "" : (length
< 1048576) ? "Ki" : "Mi");
803 priv
->nextpmc551
= pmc551list
;
808 /* Exited early, reference left over */
809 pci_dev_put(PCI_Device
);
812 printk(KERN_NOTICE
"pmc551: not detected\n");
815 printk(KERN_NOTICE
"pmc551: %d pmc551 devices loaded\n", found
);
821 * PMC551 Card Cleanup
823 static void __exit
cleanup_pmc551(void)
826 struct mtd_info
*mtd
;
829 while ((mtd
= pmc551list
)) {
831 pmc551list
= priv
->nextpmc551
;
834 printk(KERN_DEBUG
"pmc551: unmapping %dMiB starting at "
835 "0x%p\n", priv
->asize
>> 20, priv
->start
);
836 pci_iounmap(priv
->dev
, priv
->start
);
838 pci_dev_put(priv
->dev
);
841 mtd_device_unregister(mtd
);
846 printk(KERN_NOTICE
"pmc551: %d pmc551 devices unloaded\n", found
);
849 module_init(init_pmc551
);
850 module_exit(cleanup_pmc551
);