blob: 0c51b988e1f8880af884995540cee3c5ac91dfca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * PMC551 PCI Mezzanine Ram Device
3 *
4 * Author:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +02005 * Mark Ferrell <mferrell@mvista.com>
6 * Copyright 1999,2000 Nortel Networks
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * License:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +02009 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Description:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020014 * 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.
Thomas Gleixnere5580fb2005-11-07 11:15:40 +000028 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Notes:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020030 * Due to what I assume is more buggy SROM, the 64M PMC551 I
David Woodhouse8e0aedc2007-06-29 14:18:22 +010031 * have available claims that all 4 of its DRAM banks have 64MiB
32 * of ram configured (making a grand total of 256MiB onboard).
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020033 * 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
Frederik Schwarzer025dfda2008-10-16 19:02:37 +020037 * unloading of the module with an aperture size smaller than
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020038 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 *
48 * Credits:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020049 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 *
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020053 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 *
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020063 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 *
David Woodhouse8e0aedc2007-06-29 14:18:22 +010071 * Bugs/FIXMEs:
Jiri Slabycdf0a7d2006-09-19 21:55:06 +020072 * * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/kernel.h>
84#include <linux/module.h>
85#include <asm/uaccess.h>
86#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <linux/mtd/mtd.h>
Artem Bityutskiyc3faac42012-02-06 13:44:27 +020098
99#define PMC551_VERSION \
100 "Ramix PMC551 PCI Mezzanine Ram Driver. (C) 1999,2000 Nortel Networks.\n"
101
102#define PCI_VENDOR_ID_V3_SEMI 0x11b0
103#define PCI_DEVICE_ID_V3_SEMI_V370PDC 0x0200
104
105#define PMC551_PCI_MEM_MAP0 0x50
106#define PMC551_PCI_MEM_MAP1 0x54
107#define PMC551_PCI_MEM_MAP_MAP_ADDR_MASK 0x3ff00000
108#define PMC551_PCI_MEM_MAP_APERTURE_MASK 0x000000f0
109#define PMC551_PCI_MEM_MAP_REG_EN 0x00000002
110#define PMC551_PCI_MEM_MAP_ENABLE 0x00000001
111
112#define PMC551_SDRAM_MA 0x60
113#define PMC551_SDRAM_CMD 0x62
114#define PMC551_DRAM_CFG 0x64
115#define PMC551_SYS_CTRL_REG 0x78
116
117#define PMC551_DRAM_BLK0 0x68
118#define PMC551_DRAM_BLK1 0x6c
119#define PMC551_DRAM_BLK2 0x70
120#define PMC551_DRAM_BLK3 0x74
121#define PMC551_DRAM_BLK_GET_SIZE(x) (524288 << ((x >> 4) & 0x0f))
122#define PMC551_DRAM_BLK_SET_COL_MUX(x, v) (((x) & ~0x00007000) | (((v) & 0x7) << 12))
123#define PMC551_DRAM_BLK_SET_ROW_MUX(x, v) (((x) & ~0x00000f00) | (((v) & 0xf) << 8))
124
125struct mypriv {
126 struct pci_dev *dev;
127 u_char *start;
128 u32 base_map0;
129 u32 curr_map0;
130 u32 asize;
131 struct mtd_info *nextpmc551;
132};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134static struct mtd_info *pmc551list;
135
Artem Bityutskiyc3faac42012-02-06 13:44:27 +0200136static int pmc551_point(struct mtd_info *mtd, loff_t from, size_t len,
137 size_t *retlen, void **virt, resource_size_t *phys);
138
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200139static int pmc551_erase(struct mtd_info *mtd, struct erase_info *instr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200141 struct mypriv *priv = mtd->priv;
142 u32 soff_hi, soff_lo; /* start address offset hi/lo */
143 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
144 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 u_char *ptr;
146 size_t retlen;
147
148#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200149 printk(KERN_DEBUG "pmc551_erase(pos:%ld, len:%ld)\n", (long)instr->addr,
150 (long)instr->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#endif
152
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200153 end = instr->addr + instr->len - 1;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200154 eoff_hi = end & ~(priv->asize - 1);
155 soff_hi = instr->addr & ~(priv->asize - 1);
156 eoff_lo = end & (priv->asize - 1);
157 soff_lo = instr->addr & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Jared Hulberta98889f2008-04-29 23:26:49 -0700159 pmc551_point(mtd, instr->addr, instr->len, &retlen,
160 (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200162 if (soff_hi == eoff_hi || mtd->size == priv->asize) {
163 /* The whole thing fits within one access, so just one shot
164 will do it. */
165 memset(ptr, 0xff, instr->len);
166 } else {
167 /* We have to do multiple writes to get all the data
168 written. */
169 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200171 printk(KERN_DEBUG "pmc551_erase() soff_hi: %ld, "
172 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200174 memset(ptr, 0xff, priv->asize);
175 if (soff_hi + priv->asize >= mtd->size) {
176 goto out;
177 }
178 soff_hi += priv->asize;
179 pmc551_point(mtd, (priv->base_map0 | soff_hi),
Jared Hulberta98889f2008-04-29 23:26:49 -0700180 priv->asize, &retlen,
181 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200182 }
183 memset(ptr, 0xff, eoff_lo);
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200186 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 instr->state = MTD_ERASE_DONE;
188#ifdef CONFIG_MTD_PMC551_DEBUG
189 printk(KERN_DEBUG "pmc551_erase() done\n");
190#endif
191
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200192 mtd_erase_callback(instr);
193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200196static int pmc551_point(struct mtd_info *mtd, loff_t from, size_t len,
Jared Hulberta98889f2008-04-29 23:26:49 -0700197 size_t *retlen, void **virt, resource_size_t *phys)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200199 struct mypriv *priv = mtd->priv;
200 u32 soff_hi;
201 u32 soff_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203#ifdef CONFIG_MTD_PMC551_DEBUG
204 printk(KERN_DEBUG "pmc551_point(%ld, %ld)\n", (long)from, (long)len);
205#endif
206
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200207 soff_hi = from & ~(priv->asize - 1);
208 soff_lo = from & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* Cheap hack optimization */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200211 if (priv->curr_map0 != from) {
212 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
213 (priv->base_map0 | soff_hi));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 priv->curr_map0 = soff_hi;
215 }
216
Jared Hulberta98889f2008-04-29 23:26:49 -0700217 *virt = priv->start + soff_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 *retlen = len;
219 return 0;
220}
221
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +0200222static int pmc551_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224#ifdef CONFIG_MTD_PMC551_DEBUG
225 printk(KERN_DEBUG "pmc551_unpoint()\n");
226#endif
Artem Bityutskiy5e4e6e32012-02-03 13:20:43 +0200227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200230static int pmc551_read(struct mtd_info *mtd, loff_t from, size_t len,
231 size_t * retlen, u_char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200233 struct mypriv *priv = mtd->priv;
234 u32 soff_hi, soff_lo; /* start address offset hi/lo */
235 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
236 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 u_char *ptr;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200238 u_char *copyto = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200241 printk(KERN_DEBUG "pmc551_read(pos:%ld, len:%ld) asize: %ld\n",
242 (long)from, (long)len, (long)priv->asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#endif
244
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200245 end = from + len - 1;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200246 soff_hi = from & ~(priv->asize - 1);
247 eoff_hi = end & ~(priv->asize - 1);
248 soff_lo = from & (priv->asize - 1);
249 eoff_lo = end & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jared Hulberta98889f2008-04-29 23:26:49 -0700251 pmc551_point(mtd, from, len, retlen, (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200253 if (soff_hi == eoff_hi) {
254 /* The whole thing fits within one access, so just one shot
255 will do it. */
256 memcpy(copyto, ptr, len);
257 copyto += len;
258 } else {
259 /* We have to do multiple writes to get all the data
260 written. */
261 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200263 printk(KERN_DEBUG "pmc551_read() soff_hi: %ld, "
264 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200266 memcpy(copyto, ptr, priv->asize);
267 copyto += priv->asize;
268 if (soff_hi + priv->asize >= mtd->size) {
269 goto out;
270 }
271 soff_hi += priv->asize;
Jared Hulberta98889f2008-04-29 23:26:49 -0700272 pmc551_point(mtd, soff_hi, priv->asize, retlen,
273 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200274 }
275 memcpy(copyto, ptr, eoff_lo);
276 copyto += eoff_lo;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200279 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#ifdef CONFIG_MTD_PMC551_DEBUG
281 printk(KERN_DEBUG "pmc551_read() done\n");
282#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200283 *retlen = copyto - buf;
284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200287static int pmc551_write(struct mtd_info *mtd, loff_t to, size_t len,
288 size_t * retlen, const u_char * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200290 struct mypriv *priv = mtd->priv;
291 u32 soff_hi, soff_lo; /* start address offset hi/lo */
292 u32 eoff_hi, eoff_lo; /* end address offset hi/lo */
293 unsigned long end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u_char *ptr;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200295 const u_char *copyfrom = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200298 printk(KERN_DEBUG "pmc551_write(pos:%ld, len:%ld) asize:%ld\n",
299 (long)to, (long)len, (long)priv->asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300#endif
301
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200302 end = to + len - 1;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200303 soff_hi = to & ~(priv->asize - 1);
304 eoff_hi = end & ~(priv->asize - 1);
305 soff_lo = to & (priv->asize - 1);
306 eoff_lo = end & (priv->asize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Jared Hulberta98889f2008-04-29 23:26:49 -0700308 pmc551_point(mtd, to, len, retlen, (void **)&ptr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200310 if (soff_hi == eoff_hi) {
311 /* The whole thing fits within one access, so just one shot
312 will do it. */
313 memcpy(ptr, copyfrom, len);
314 copyfrom += len;
315 } else {
316 /* We have to do multiple writes to get all the data
317 written. */
318 while (soff_hi != eoff_hi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200320 printk(KERN_DEBUG "pmc551_write() soff_hi: %ld, "
321 "eoff_hi: %ld\n", (long)soff_hi, (long)eoff_hi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200323 memcpy(ptr, copyfrom, priv->asize);
324 copyfrom += priv->asize;
325 if (soff_hi >= mtd->size) {
326 goto out;
327 }
328 soff_hi += priv->asize;
Jared Hulberta98889f2008-04-29 23:26:49 -0700329 pmc551_point(mtd, soff_hi, priv->asize, retlen,
330 (void **)&ptr, NULL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200331 }
332 memcpy(ptr, copyfrom, eoff_lo);
333 copyfrom += eoff_lo;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200336 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#ifdef CONFIG_MTD_PMC551_DEBUG
338 printk(KERN_DEBUG "pmc551_write() done\n");
339#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200340 *retlen = copyfrom - buf;
341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/*
345 * Fixup routines for the V370PDC
346 * PCI device ID 0x020011b0
347 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300348 * This function basically kick starts the DRAM oboard the card and gets it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * ready to be used. Before this is done the device reads VERY erratic, so
350 * much that it can crash the Linux 2.2.x series kernels when a user cat's
351 * /proc/pci .. though that is mainly a kernel bug in handling the PCI DEVSEL
352 * register. FIXME: stop spinning on registers .. must implement a timeout
353 * mechanism
354 * returns the size of the memory region found.
355 */
Xi Wang2ff5e152012-01-09 16:58:25 -0500356static int fixup_pmc551(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358#ifdef CONFIG_MTD_PMC551_BUGFIX
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200359 u32 dram_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200361 u32 size, dcmd, cfg, dtmp;
362 u16 cmd, tmp, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 u8 bcmd, counter;
364
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200365 /* Sanity Check */
366 if (!dev) {
367 return -ENODEV;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 /*
371 * Attempt to reset the card
372 * FIXME: Stop Spinning registers
373 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200374 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* unlock registers */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200376 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, 0xA5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* read in old data */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200378 pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /* bang the reset line up and down for a few */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200380 for (i = 0; i < 10; i++) {
381 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 bcmd &= ~0x80;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200383 while (counter++ < 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
385 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200386 counter = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 bcmd |= 0x80;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200388 while (counter++ < 100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
390 }
391 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200392 bcmd |= (0x40 | 0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 pci_write_config_byte(dev, PMC551_SYS_CTRL_REG, bcmd);
394
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200395 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * Take care and turn off the memory on the device while we
397 * tweak the configurations
398 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200399 pci_read_config_word(dev, PCI_COMMAND, &cmd);
400 tmp = cmd & ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
401 pci_write_config_word(dev, PCI_COMMAND, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /*
404 * Disable existing aperture before probing memory size
405 */
406 pci_read_config_dword(dev, PMC551_PCI_MEM_MAP0, &dcmd);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200407 dtmp = (dcmd | PMC551_PCI_MEM_MAP_ENABLE | PMC551_PCI_MEM_MAP_REG_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 pci_write_config_dword(dev, PMC551_PCI_MEM_MAP0, dtmp);
409 /*
410 * Grab old BAR0 config so that we can figure out memory size
411 * This is another bit of kludge going on. The reason for the
412 * redundancy is I am hoping to retain the original configuration
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000413 * previously assigned to the card by the BIOS or some previous
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * fixup routine in the kernel. So we read the old config into cfg,
415 * then write all 1's to the memory space, read back the result into
416 * "size", and then write back all the old config.
417 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200418 pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#ifndef CONFIG_MTD_PMC551_BUGFIX
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200420 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, ~0);
421 pci_read_config_dword(dev, PCI_BASE_ADDRESS_0, &size);
422 size = (size & PCI_BASE_ADDRESS_MEM_MASK);
423 size &= ~(size - 1);
424 pci_write_config_dword(dev, PCI_BASE_ADDRESS_0, cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#else
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200426 /*
427 * Get the size of the memory by reading all the DRAM size values
428 * and adding them up.
429 *
430 * KLUDGE ALERT: the boards we are using have invalid column and
431 * row mux values. We fix them here, but this will break other
432 * memory configurations.
433 */
434 pci_read_config_dword(dev, PMC551_DRAM_BLK0, &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_BLK0, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200440 pci_read_config_dword(dev, PMC551_DRAM_BLK1, &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_BLK1, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200446 pci_read_config_dword(dev, PMC551_DRAM_BLK2, &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_BLK2, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200452 pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dram_data);
453 size += PMC551_DRAM_BLK_GET_SIZE(dram_data);
454 dram_data = PMC551_DRAM_BLK_SET_COL_MUX(dram_data, 0x5);
455 dram_data = PMC551_DRAM_BLK_SET_ROW_MUX(dram_data, 0x9);
456 pci_write_config_dword(dev, PMC551_DRAM_BLK3, dram_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200458 /*
459 * Oops .. something went wrong
460 */
461 if ((size &= PCI_BASE_ADDRESS_MEM_MASK) == 0) {
462 return -ENODEV;
463 }
464#endif /* CONFIG_MTD_PMC551_BUGFIX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200466 if ((cfg & PCI_BASE_ADDRESS_SPACE) != PCI_BASE_ADDRESS_SPACE_MEMORY) {
467 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200470 /*
471 * Precharge Dram
472 */
473 pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0400);
474 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x00bf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200476 /*
477 * Wait until command has gone through
478 * FIXME: register spinning issue
479 */
480 do {
481 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
482 if (counter++ > 100)
483 break;
484 } while ((PCI_COMMAND_IO) & cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200486 /*
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000487 * Turn on auto refresh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 * The loop is taken directly from Ramix's example code. I assume that
489 * this must be held high for some duration of time, but I can find no
490 * documentation refrencing the reasons why.
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200491 */
492 for (i = 1; i <= 8; i++) {
493 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0df);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200495 /*
496 * Make certain command has gone through
497 * FIXME: register spinning issue
498 */
499 counter = 0;
500 do {
501 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
502 if (counter++ > 100)
503 break;
504 } while ((PCI_COMMAND_IO) & cmd);
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200507 pci_write_config_word(dev, PMC551_SDRAM_MA, 0x0020);
508 pci_write_config_word(dev, PMC551_SDRAM_CMD, 0x0ff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200510 /*
511 * Wait until command completes
512 * FIXME: register spinning issue
513 */
514 counter = 0;
515 do {
516 pci_read_config_word(dev, PMC551_SDRAM_CMD, &cmd);
517 if (counter++ > 100)
518 break;
519 } while ((PCI_COMMAND_IO) & cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200521 pci_read_config_dword(dev, PMC551_DRAM_CFG, &dcmd);
522 dcmd |= 0x02000000;
523 pci_write_config_dword(dev, PMC551_DRAM_CFG, dcmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200525 /*
526 * Check to make certain fast back-to-back, if not
527 * then set it so
528 */
529 pci_read_config_word(dev, PCI_STATUS, &cmd);
530 if ((cmd & PCI_COMMAND_FAST_BACK) == 0) {
531 cmd |= PCI_COMMAND_FAST_BACK;
532 pci_write_config_word(dev, PCI_STATUS, cmd);
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200535 /*
536 * Check to make certain the DEVSEL is set correctly, this device
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300537 * has a tendency to assert DEVSEL and TRDY when a write is performed
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200538 * to the memory when memory is read-only
539 */
540 if ((cmd & PCI_STATUS_DEVSEL_MASK) != 0x0) {
541 cmd &= ~PCI_STATUS_DEVSEL_MASK;
542 pci_write_config_word(dev, PCI_STATUS, cmd);
543 }
544 /*
545 * Set to be prefetchable and put everything back based on old cfg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * it's possible that the reset of the V370PDC nuked the original
547 * setup
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200548 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /*
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200550 cfg |= PCI_BASE_ADDRESS_MEM_PREFETCH;
551 pci_write_config_dword( dev, PCI_BASE_ADDRESS_0, cfg );
552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200554 /*
555 * Turn PCI memory and I/O bus access back on
556 */
557 pci_write_config_word(dev, PCI_COMMAND,
558 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200560 /*
561 * Some screen fun
562 */
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100563 printk(KERN_DEBUG "pmc551: %d%sB (0x%x) of %sprefetchable memory at "
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200564 "0x%llx\n", (size < 1024) ? size : (size < 1048576) ?
565 size >> 10 : size >> 20,
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100566 (size < 1024) ? "" : (size < 1048576) ? "Ki" : "Mi", size,
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200567 ((dcmd & (0x1 << 3)) == 0) ? "non-" : "",
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200568 (unsigned long long)pci_resource_start(dev, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200570 /*
571 * Check to see the state of the memory
572 */
573 pci_read_config_dword(dev, PMC551_DRAM_BLK0, &dcmd);
574 printk(KERN_DEBUG "pmc551: DRAM_BLK0 Flags: %s,%s\n"
575 "pmc551: DRAM_BLK0 Size: %d at %d\n"
576 "pmc551: DRAM_BLK0 Row MUX: %d, Col MUX: %d\n",
577 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
578 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
579 PMC551_DRAM_BLK_GET_SIZE(dcmd),
580 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
581 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200583 pci_read_config_dword(dev, PMC551_DRAM_BLK1, &dcmd);
584 printk(KERN_DEBUG "pmc551: DRAM_BLK1 Flags: %s,%s\n"
585 "pmc551: DRAM_BLK1 Size: %d at %d\n"
586 "pmc551: DRAM_BLK1 Row MUX: %d, Col MUX: %d\n",
587 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
588 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
589 PMC551_DRAM_BLK_GET_SIZE(dcmd),
590 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
591 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200593 pci_read_config_dword(dev, PMC551_DRAM_BLK2, &dcmd);
594 printk(KERN_DEBUG "pmc551: DRAM_BLK2 Flags: %s,%s\n"
595 "pmc551: DRAM_BLK2 Size: %d at %d\n"
596 "pmc551: DRAM_BLK2 Row MUX: %d, Col MUX: %d\n",
597 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
598 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
599 PMC551_DRAM_BLK_GET_SIZE(dcmd),
600 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
601 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200603 pci_read_config_dword(dev, PMC551_DRAM_BLK3, &dcmd);
604 printk(KERN_DEBUG "pmc551: DRAM_BLK3 Flags: %s,%s\n"
605 "pmc551: DRAM_BLK3 Size: %d at %d\n"
606 "pmc551: DRAM_BLK3 Row MUX: %d, Col MUX: %d\n",
607 (((0x1 << 1) & dcmd) == 0) ? "RW" : "RO",
608 (((0x1 << 0) & dcmd) == 0) ? "Off" : "On",
609 PMC551_DRAM_BLK_GET_SIZE(dcmd),
610 ((dcmd >> 20) & 0x7FF), ((dcmd >> 13) & 0x7),
611 ((dcmd >> 9) & 0xF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200613 pci_read_config_word(dev, PCI_COMMAND, &cmd);
614 printk(KERN_DEBUG "pmc551: Memory Access %s\n",
615 (((0x1 << 1) & cmd) == 0) ? "off" : "on");
616 printk(KERN_DEBUG "pmc551: I/O Access %s\n",
617 (((0x1 << 0) & cmd) == 0) ? "off" : "on");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200619 pci_read_config_word(dev, PCI_STATUS, &cmd);
620 printk(KERN_DEBUG "pmc551: Devsel %s\n",
621 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x000) ? "Fast" :
622 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x200) ? "Medium" :
623 ((PCI_STATUS_DEVSEL_MASK & cmd) == 0x400) ? "Slow" : "Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200625 printk(KERN_DEBUG "pmc551: %sFast Back-to-Back\n",
626 ((PCI_COMMAND_FAST_BACK & cmd) == 0) ? "Not " : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200628 pci_read_config_byte(dev, PMC551_SYS_CTRL_REG, &bcmd);
629 printk(KERN_DEBUG "pmc551: EEPROM is under %s control\n"
630 "pmc551: System Control Register is %slocked to PCI access\n"
631 "pmc551: System Control Register is %slocked to EEPROM access\n",
632 (bcmd & 0x1) ? "software" : "hardware",
633 (bcmd & 0x20) ? "" : "un", (bcmd & 0x40) ? "" : "un");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#endif
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200635 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638/*
639 * Kernel version specific module stuffages
640 */
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642MODULE_LICENSE("GPL");
643MODULE_AUTHOR("Mark Ferrell <mferrell@mvista.com>");
644MODULE_DESCRIPTION(PMC551_VERSION);
645
646/*
647 * Stuff these outside the ifdef so as to not bust compiled in driver support
648 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200649static int msize = 0;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200650static int asize = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652module_param(msize, int, 0);
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100653MODULE_PARM_DESC(msize, "memory size in MiB [1 - 1024]");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654module_param(asize, int, 0);
655MODULE_PARM_DESC(asize, "aperture size, must be <= memsize [1-1024]");
656
657/*
658 * PMC551 Card Initialization
659 */
660static int __init init_pmc551(void)
661{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200662 struct pci_dev *PCI_Device = NULL;
663 struct mypriv *priv;
Ben Hutchings24c15492010-01-29 20:58:23 +0000664 int found = 0;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200665 struct mtd_info *mtd;
Xi Wang2ff5e152012-01-09 16:58:25 -0500666 int length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200668 if (msize) {
669 msize = (1 << (ffs(msize) - 1)) << 20;
670 if (msize > (1 << 30)) {
671 printk(KERN_NOTICE "pmc551: Invalid memory size [%d]\n",
672 msize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return -EINVAL;
674 }
675 }
676
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200677 if (asize) {
678 asize = (1 << (ffs(asize) - 1)) << 20;
679 if (asize > (1 << 30)) {
680 printk(KERN_NOTICE "pmc551: Invalid aperture size "
681 "[%d]\n", asize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -EINVAL;
683 }
684 }
685
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200686 printk(KERN_INFO PMC551_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200688 /*
689 * PCU-bus chipset probe.
690 */
Ben Hutchings24c15492010-01-29 20:58:23 +0000691 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200693 if ((PCI_Device = pci_get_device(PCI_VENDOR_ID_V3_SEMI,
694 PCI_DEVICE_ID_V3_SEMI_V370PDC,
695 PCI_Device)) == NULL) {
696 break;
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200699 printk(KERN_NOTICE "pmc551: Found PCI V370PDC at 0x%llx\n",
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200700 (unsigned long long)pci_resource_start(PCI_Device, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200702 /*
703 * The PMC551 device acts VERY weird if you don't init it
704 * first. i.e. it will not correctly report devsel. If for
705 * some reason the sdram is in a wrote-protected state the
706 * device will DEVSEL when it is written to causing problems
707 * with the oldproc.c driver in
708 * some kernels (2.2.*)
709 */
710 if ((length = fixup_pmc551(PCI_Device)) <= 0) {
711 printk(KERN_NOTICE "pmc551: Cannot init SDRAM\n");
712 break;
713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /*
716 * This is needed until the driver is capable of reading the
717 * onboard I2C SROM to discover the "real" memory size.
718 */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200719 if (msize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 length = msize;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200721 printk(KERN_NOTICE "pmc551: Using specified memory "
722 "size 0x%x\n", length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 } else {
724 msize = length;
725 }
726
Jiri Slaby7fefb922006-09-19 21:55:18 +0200727 mtd = kzalloc(sizeof(struct mtd_info), GFP_KERNEL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200728 if (!mtd) {
729 printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
730 "device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 break;
732 }
733
Jiri Slaby7fefb922006-09-19 21:55:18 +0200734 priv = kzalloc(sizeof(struct mypriv), GFP_KERNEL);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200735 if (!priv) {
736 printk(KERN_NOTICE "pmc551: Cannot allocate new MTD "
737 "device.\n");
738 kfree(mtd);
739 break;
740 }
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200741 mtd->priv = priv;
742 priv->dev = PCI_Device;
743
744 if (asize > length) {
745 printk(KERN_NOTICE "pmc551: reducing aperture size to "
746 "fit %dM\n", length >> 20);
747 priv->asize = asize = length;
748 } else if (asize == 0 || asize == length) {
749 printk(KERN_NOTICE "pmc551: Using existing aperture "
750 "size %dM\n", length >> 20);
751 priv->asize = asize = length;
752 } else {
753 printk(KERN_NOTICE "pmc551: Using specified aperture "
754 "size %dM\n", asize >> 20);
755 priv->asize = asize;
756 }
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200757 priv->start = pci_iomap(PCI_Device, 0, priv->asize);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200758
759 if (!priv->start) {
760 printk(KERN_NOTICE "pmc551: Unable to map IO space\n");
761 kfree(mtd->priv);
762 kfree(mtd);
763 break;
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200766 printk(KERN_DEBUG "pmc551: setting aperture to %d\n",
767 ffs(priv->asize >> 20) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768#endif
769
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200770 priv->base_map0 = (PMC551_PCI_MEM_MAP_REG_EN
771 | PMC551_PCI_MEM_MAP_ENABLE
772 | (ffs(priv->asize >> 20) - 1) << 4);
773 priv->curr_map0 = priv->base_map0;
774 pci_write_config_dword(priv->dev, PMC551_PCI_MEM_MAP0,
775 priv->curr_map0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777#ifdef CONFIG_MTD_PMC551_DEBUG
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200778 printk(KERN_DEBUG "pmc551: aperture set to %d\n",
779 (priv->base_map0 & 0xF0) >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780#endif
781
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200782 mtd->size = msize;
783 mtd->flags = MTD_CAP_RAM;
Artem Bityutskiy3c3c10b2012-01-30 14:58:32 +0200784 mtd->_erase = pmc551_erase;
785 mtd->_read = pmc551_read;
786 mtd->_write = pmc551_write;
787 mtd->_point = pmc551_point;
788 mtd->_unpoint = pmc551_unpoint;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200789 mtd->type = MTD_RAM;
790 mtd->name = "PMC551 RAM board";
791 mtd->erasesize = 0x10000;
792 mtd->writesize = 1;
793 mtd->owner = THIS_MODULE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100795 if (mtd_device_register(mtd, NULL, 0)) {
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100796 printk(KERN_NOTICE "pmc551: Failed to register new device\n");
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200797 pci_iounmap(PCI_Device, priv->start);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200798 kfree(mtd->priv);
799 kfree(mtd);
800 break;
801 }
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100802
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100803 /* Keep a reference as the mtd_device_register worked */
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200804 pci_dev_get(PCI_Device);
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100805
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200806 printk(KERN_NOTICE "Registered pmc551 memory device.\n");
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100807 printk(KERN_NOTICE "Mapped %dMiB of memory from 0x%p to 0x%p\n",
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200808 priv->asize >> 20,
809 priv->start, priv->start + priv->asize);
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100810 printk(KERN_NOTICE "Total memory is %d%sB\n",
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200811 (length < 1024) ? length :
812 (length < 1048576) ? length >> 10 : length >> 20,
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100813 (length < 1024) ? "" : (length < 1048576) ? "Ki" : "Mi");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 priv->nextpmc551 = pmc551list;
815 pmc551list = mtd;
816 found++;
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200819 /* Exited early, reference left over */
820 if (PCI_Device)
821 pci_dev_put(PCI_Device);
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100822
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200823 if (!pmc551list) {
824 printk(KERN_NOTICE "pmc551: not detected\n");
825 return -ENODEV;
826 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 printk(KERN_NOTICE "pmc551: %d pmc551 devices loaded\n", found);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200828 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830}
831
832/*
833 * PMC551 Card Cleanup
834 */
835static void __exit cleanup_pmc551(void)
836{
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200837 int found = 0;
838 struct mtd_info *mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct mypriv *priv;
840
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200841 while ((mtd = pmc551list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 priv = mtd->priv;
843 pmc551list = priv->nextpmc551;
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000844
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200845 if (priv->start) {
David Woodhouse8e0aedc2007-06-29 14:18:22 +0100846 printk(KERN_DEBUG "pmc551: unmapping %dMiB starting at "
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200847 "0x%p\n", priv->asize >> 20, priv->start);
Jiri Slaby98aacdf2006-09-19 21:55:28 +0200848 pci_iounmap(priv->dev, priv->start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
Alan Coxdd8e9ed2006-09-22 10:19:20 +0100850 pci_dev_put(priv->dev);
Thomas Gleixnere5580fb2005-11-07 11:15:40 +0000851
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200852 kfree(mtd->priv);
Jamie Ilesee0e87b2011-05-23 10:23:40 +0100853 mtd_device_unregister(mtd);
Jiri Slabycdf0a7d2006-09-19 21:55:06 +0200854 kfree(mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 found++;
856 }
857
858 printk(KERN_NOTICE "pmc551: %d pmc551 devices unloaded\n", found);
859}
860
861module_init(init_pmc551);
862module_exit(cleanup_pmc551);