blob: 4b3ba74e9d22f3ec90ad4d8b39cdb0fcfac2ab83 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm.c - Micro Memory(tm) PCI memory board block device driver - v2.3
3 *
4 * (C) 2001 San Mehat <nettwerk@valinux.com>
5 * (C) 2001 Johannes Erdfelt <jerdfelt@valinux.com>
6 * (C) 2001 NeilBrown <neilb@cse.unsw.edu.au>
7 *
8 * This driver for the Micro Memory PCI Memory Module with Battery Backup
9 * is Copyright Micro Memory Inc 2001-2002. All rights reserved.
10 *
11 * This driver is released to the public under the terms of the
12 * GNU GENERAL PUBLIC LICENSE version 2
13 * See the file COPYING for details.
14 *
15 * This driver provides a standard block device interface for Micro Memory(tm)
16 * PCI based RAM boards.
17 * 10/05/01: Phap Nguyen - Rebuilt the driver
18 * 10/22/01: Phap Nguyen - v2.1 Added disk partitioning
19 * 29oct2001:NeilBrown - Use make_request_fn instead of request_fn
20 * - use stand disk partitioning (so fdisk works).
21 * 08nov2001:NeilBrown - change driver name from "mm" to "umem"
22 * - incorporate into main kernel
23 * 08apr2002:NeilBrown - Move some of interrupt handle to tasklet
24 * - use spin_lock_bh instead of _irq
25 * - Never block on make_request. queue
26 * bh's instead.
27 * - unregister umem from devfs at mod unload
28 * - Change version to 2.3
29 * 07Nov2001:Phap Nguyen - Select pci read command: 06, 12, 15 (Decimal)
30 * 07Jan2002: P. Nguyen - Used PCI Memory Write & Invalidate for DMA
31 * 15May2002:NeilBrown - convert to bio for 2.5
32 * 17May2002:NeilBrown - remove init_mem initialisation. Instead detect
33 * - a sequence of writes that cover the card, and
34 * - set initialised bit then.
35 */
36
Randy Dunlap458cf5e2007-12-17 20:24:20 +010037#undef DEBUG /* #define DEBUG if you want debugging info (pr_debug) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/fs.h>
39#include <linux/bio.h>
40#include <linux/kernel.h>
41#include <linux/mm.h>
42#include <linux/mman.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/ioctl.h>
45#include <linux/module.h>
46#include <linux/init.h>
47#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/timer.h>
49#include <linux/pci.h>
Matthias Gehre910638a2006-03-28 01:56:48 -080050#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <linux/fcntl.h> /* O_ACCMODE */
53#include <linux/hdreg.h> /* HDIO_GETGEO */
54
Jeff Garzik3084f0c2007-09-27 06:25:06 -040055#include "umem.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#include <asm/uaccess.h>
58#include <asm/io.h>
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define MM_MAXCARDS 4
61#define MM_RAHEAD 2 /* two sectors */
62#define MM_BLKSIZE 1024 /* 1k blocks */
63#define MM_HARDSECT 512 /* 512-byte hardware sectors */
64#define MM_SHIFT 6 /* max 64 partitions on 4 cards */
65
66/*
67 * Version Information
68 */
69
Jeff Garzikee4a7b62007-09-27 07:40:33 -040070#define DRIVER_NAME "umem"
71#define DRIVER_VERSION "v2.3"
72#define DRIVER_AUTHOR "San Mehat, Johannes Erdfelt, NeilBrown"
73#define DRIVER_DESC "Micro Memory(tm) PCI memory board block driver"
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static int debug;
76/* #define HW_TRACE(x) writeb(x,cards[0].csr_remap + MEMCTRLSTATUS_MAGIC) */
77#define HW_TRACE(x)
78
79#define DEBUG_LED_ON_TRANSFER 0x01
80#define DEBUG_BATTERY_POLLING 0x02
81
82module_param(debug, int, 0644);
83MODULE_PARM_DESC(debug, "Debug bitmask");
84
85static int pci_read_cmd = 0x0C; /* Read Multiple */
86module_param(pci_read_cmd, int, 0);
87MODULE_PARM_DESC(pci_read_cmd, "PCI read command");
88
89static int pci_write_cmd = 0x0F; /* Write and Invalidate */
90module_param(pci_write_cmd, int, 0);
91MODULE_PARM_DESC(pci_write_cmd, "PCI write command");
92
93static int pci_cmds;
94
95static int major_nr;
96
97#include <linux/blkdev.h>
98#include <linux/blkpg.h>
99
100struct cardinfo {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct pci_dev *dev;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 unsigned char __iomem *csr_remap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 unsigned int mm_size; /* size in kbytes */
105
106 unsigned int init_size; /* initial segment, in sectors,
107 * that we know to
108 * have been written
109 */
110 struct bio *bio, *currentbio, **biotail;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700111 struct bvec_iter current_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Jens Axboe165125e2007-07-24 09:28:11 +0200113 struct request_queue *queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 struct mm_page {
116 dma_addr_t page_dma;
117 struct mm_dma_desc *desc;
118 int cnt, headcnt;
119 struct bio *bio, **biotail;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700120 struct bvec_iter iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 } mm_pages[2];
122#define DESC_PER_PAGE ((PAGE_SIZE*2)/sizeof(struct mm_dma_desc))
123
124 int Active, Ready;
125
126 struct tasklet_struct tasklet;
127 unsigned int dma_status;
128
129 struct {
130 int good;
131 int warned;
132 unsigned long last_change;
133 } battery[2];
134
135 spinlock_t lock;
136 int check_batteries;
137
138 int flags;
139};
140
141static struct cardinfo cards[MM_MAXCARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static struct timer_list battery_timer;
143
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100144static int num_cards;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146static struct gendisk *mm_gendisk[MM_MAXCARDS];
147
148static void check_batteries(struct cardinfo *card);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static int get_userbit(struct cardinfo *card, int bit)
151{
152 unsigned char led;
153
154 led = readb(card->csr_remap + MEMCTRLCMD_LEDCTRL);
155 return led & bit;
156}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158static int set_userbit(struct cardinfo *card, int bit, unsigned char state)
159{
160 unsigned char led;
161
162 led = readb(card->csr_remap + MEMCTRLCMD_LEDCTRL);
163 if (state)
164 led |= bit;
165 else
166 led &= ~bit;
167 writeb(led, card->csr_remap + MEMCTRLCMD_LEDCTRL);
168
169 return 0;
170}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * NOTE: For the power LED, use the LED_POWER_* macros since they differ
174 */
175static void set_led(struct cardinfo *card, int shift, unsigned char state)
176{
177 unsigned char led;
178
179 led = readb(card->csr_remap + MEMCTRLCMD_LEDCTRL);
180 if (state == LED_FLIP)
181 led ^= (1<<shift);
182 else {
183 led &= ~(0x03 << shift);
184 led |= (state << shift);
185 }
186 writeb(led, card->csr_remap + MEMCTRLCMD_LEDCTRL);
187
188}
189
190#ifdef MM_DIAG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static void dump_regs(struct cardinfo *card)
192{
193 unsigned char *p;
194 int i, i1;
195
196 p = card->csr_remap;
197 for (i = 0; i < 8; i++) {
198 printk(KERN_DEBUG "%p ", p);
199
200 for (i1 = 0; i1 < 16; i1++)
201 printk("%02x ", *p++);
202
203 printk("\n");
204 }
205}
206#endif
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static void dump_dmastat(struct cardinfo *card, unsigned int dmastat)
209{
Jeff Garzik4e0af882007-09-27 06:41:25 -0400210 dev_printk(KERN_DEBUG, &card->dev->dev, "DMAstat - ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (dmastat & DMASCR_ANY_ERR)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100212 printk(KERN_CONT "ANY_ERR ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (dmastat & DMASCR_MBE_ERR)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100214 printk(KERN_CONT "MBE_ERR ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 if (dmastat & DMASCR_PARITY_ERR_REP)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100216 printk(KERN_CONT "PARITY_ERR_REP ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (dmastat & DMASCR_PARITY_ERR_DET)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100218 printk(KERN_CONT "PARITY_ERR_DET ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (dmastat & DMASCR_SYSTEM_ERR_SIG)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100220 printk(KERN_CONT "SYSTEM_ERR_SIG ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (dmastat & DMASCR_TARGET_ABT)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100222 printk(KERN_CONT "TARGET_ABT ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (dmastat & DMASCR_MASTER_ABT)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100224 printk(KERN_CONT "MASTER_ABT ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (dmastat & DMASCR_CHAIN_COMPLETE)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100226 printk(KERN_CONT "CHAIN_COMPLETE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (dmastat & DMASCR_DMA_COMPLETE)
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100228 printk(KERN_CONT "DMA_COMPLETE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 printk("\n");
230}
231
232/*
233 * Theory of request handling
234 *
235 * Each bio is assigned to one mm_dma_desc - which may not be enough FIXME
236 * We have two pages of mm_dma_desc, holding about 64 descriptors
237 * each. These are allocated at init time.
238 * One page is "Ready" and is either full, or can have request added.
239 * The other page might be "Active", which DMA is happening on it.
240 *
241 * Whenever IO on the active page completes, the Ready page is activated
242 * and the ex-Active page is clean out and made Ready.
Jens Axboe7eaceac2011-03-10 08:52:07 +0100243 * Otherwise the Ready page is only activated when it becomes full.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *
245 * If a request arrives while both pages a full, it is queued, and b_rdev is
246 * overloaded to record whether it was a read or a write.
247 *
248 * The interrupt handler only polls the device to clear the interrupt.
249 * The processing of the result is done in a tasklet.
250 */
251
252static void mm_start_io(struct cardinfo *card)
253{
254 /* we have the lock, we know there is
255 * no IO active, and we know that card->Active
256 * is set
257 */
258 struct mm_dma_desc *desc;
259 struct mm_page *page;
260 int offset;
261
262 /* make the last descriptor end the chain */
263 page = &card->mm_pages[card->Active];
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100264 pr_debug("start_io: %d %d->%d\n",
265 card->Active, page->headcnt, page->cnt - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 desc = &page->desc[page->cnt-1];
267
268 desc->control_bits |= cpu_to_le32(DMASCR_CHAIN_COMP_EN);
269 desc->control_bits &= ~cpu_to_le32(DMASCR_CHAIN_EN);
270 desc->sem_control_bits = desc->control_bits;
271
Jeff Garzik4e953a22007-09-27 07:41:50 -0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (debug & DEBUG_LED_ON_TRANSFER)
274 set_led(card, LED_REMOVE, LED_ON);
275
276 desc = &page->desc[page->headcnt];
277 writel(0, card->csr_remap + DMA_PCI_ADDR);
278 writel(0, card->csr_remap + DMA_PCI_ADDR + 4);
279
280 writel(0, card->csr_remap + DMA_LOCAL_ADDR);
281 writel(0, card->csr_remap + DMA_LOCAL_ADDR + 4);
282
283 writel(0, card->csr_remap + DMA_TRANSFER_SIZE);
284 writel(0, card->csr_remap + DMA_TRANSFER_SIZE + 4);
285
286 writel(0, card->csr_remap + DMA_SEMAPHORE_ADDR);
287 writel(0, card->csr_remap + DMA_SEMAPHORE_ADDR + 4);
288
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100289 offset = ((char *)desc) - ((char *)page->desc);
290 writel(cpu_to_le32((page->page_dma+offset) & 0xffffffff),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 card->csr_remap + DMA_DESCRIPTOR_ADDR);
292 /* Force the value to u64 before shifting otherwise >> 32 is undefined C
293 * and on some ports will do nothing ! */
294 writel(cpu_to_le32(((u64)page->page_dma)>>32),
295 card->csr_remap + DMA_DESCRIPTOR_ADDR + 4);
296
297 /* Go, go, go */
298 writel(cpu_to_le32(DMASCR_GO | DMASCR_CHAIN_EN | pci_cmds),
299 card->csr_remap + DMA_STATUS_CTRL);
300}
301
302static int add_bio(struct cardinfo *card);
303
304static void activate(struct cardinfo *card)
305{
Jeff Garzik4e953a22007-09-27 07:41:50 -0400306 /* if No page is Active, and Ready is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * not empty, then switch Ready page
308 * to active and start IO.
309 * Then add any bh's that are available to Ready
310 */
311
312 do {
313 while (add_bio(card))
314 ;
315
316 if (card->Active == -1 &&
317 card->mm_pages[card->Ready].cnt > 0) {
318 card->Active = card->Ready;
319 card->Ready = 1-card->Ready;
320 mm_start_io(card);
321 }
322
323 } while (card->Active == -1 && add_bio(card));
324}
325
326static inline void reset_page(struct mm_page *page)
327{
328 page->cnt = 0;
329 page->headcnt = 0;
330 page->bio = NULL;
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100331 page->biotail = &page->bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Jeff Garzik4e953a22007-09-27 07:41:50 -0400334/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * If there is room on Ready page, take
336 * one bh off list and add it.
337 * return 1 if there was room, else 0.
338 */
339static int add_bio(struct cardinfo *card)
340{
341 struct mm_page *p;
342 struct mm_dma_desc *desc;
343 dma_addr_t dma_handle;
344 int offset;
345 struct bio *bio;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700346 struct bio_vec vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 int rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 bio = card->currentbio;
350 if (!bio && card->bio) {
351 card->currentbio = card->bio;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700352 card->current_iter = card->bio->bi_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 card->bio = card->bio->bi_next;
354 if (card->bio == NULL)
355 card->biotail = &card->bio;
356 card->currentbio->bi_next = NULL;
357 return 1;
358 }
359 if (!bio)
360 return 0;
361
362 rw = bio_rw(bio);
363 if (card->mm_pages[card->Ready].cnt >= DESC_PER_PAGE)
364 return 0;
365
Kent Overstreet003b5c52013-10-11 15:45:43 -0700366 vec = bio_iter_iovec(bio, card->current_iter);
367
NeilBrowneea9bef2007-08-16 13:31:26 +0200368 dma_handle = pci_map_page(card->dev,
Kent Overstreet003b5c52013-10-11 15:45:43 -0700369 vec.bv_page,
370 vec.bv_offset,
371 vec.bv_len,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100372 (rw == READ) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 PCI_DMA_FROMDEVICE : PCI_DMA_TODEVICE);
374
375 p = &card->mm_pages[card->Ready];
376 desc = &p->desc[p->cnt];
377 p->cnt++;
NeilBrowneea9bef2007-08-16 13:31:26 +0200378 if (p->bio == NULL)
Kent Overstreet003b5c52013-10-11 15:45:43 -0700379 p->iter = card->current_iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if ((p->biotail) != &bio->bi_next) {
381 *(p->biotail) = bio;
382 p->biotail = &(bio->bi_next);
383 bio->bi_next = NULL;
384 }
385
386 desc->data_dma_handle = dma_handle;
387
388 desc->pci_addr = cpu_to_le64((u64)desc->data_dma_handle);
Kent Overstreet003b5c52013-10-11 15:45:43 -0700389 desc->local_addr = cpu_to_le64(card->current_iter.bi_sector << 9);
390 desc->transfer_size = cpu_to_le32(vec.bv_len);
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100391 offset = (((char *)&desc->sem_control_bits) - ((char *)p->desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 desc->sem_addr = cpu_to_le64((u64)(p->page_dma+offset));
393 desc->zero1 = desc->zero2 = 0;
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100394 offset = (((char *)(desc+1)) - ((char *)p->desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 desc->next_desc_addr = cpu_to_le64(p->page_dma+offset);
396 desc->control_bits = cpu_to_le32(DMASCR_GO|DMASCR_ERR_INT_EN|
397 DMASCR_PARITY_INT_EN|
398 DMASCR_CHAIN_EN |
399 DMASCR_SEM_EN |
400 pci_cmds);
401 if (rw == WRITE)
402 desc->control_bits |= cpu_to_le32(DMASCR_TRANSFER_READ);
403 desc->sem_control_bits = desc->control_bits;
404
Kent Overstreet003b5c52013-10-11 15:45:43 -0700405
406 bio_advance_iter(bio, &card->current_iter, vec.bv_len);
407 if (!card->current_iter.bi_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 card->currentbio = NULL;
409
410 return 1;
411}
412
413static void process_page(unsigned long data)
414{
415 /* check if any of the requests in the page are DMA_COMPLETE,
416 * and deal with them appropriately.
417 * If we find a descriptor without DMA_COMPLETE in the semaphore, then
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100418 * dma must have hit an error on that descriptor, so use dma_status
419 * instead and assume that all following descriptors must be re-tried.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 */
421 struct mm_page *page;
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100422 struct bio *return_bio = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct cardinfo *card = (struct cardinfo *)data;
424 unsigned int dma_status = card->dma_status;
425
426 spin_lock_bh(&card->lock);
427 if (card->Active < 0)
428 goto out_unlock;
429 page = &card->mm_pages[card->Active];
Jeff Garzik4e953a22007-09-27 07:41:50 -0400430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 while (page->headcnt < page->cnt) {
432 struct bio *bio = page->bio;
433 struct mm_dma_desc *desc = &page->desc[page->headcnt];
434 int control = le32_to_cpu(desc->sem_control_bits);
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100435 int last = 0;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700436 struct bio_vec vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (!(control & DMASCR_DMA_COMPLETE)) {
439 control = dma_status;
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100440 last = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Kent Overstreet003b5c52013-10-11 15:45:43 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 page->headcnt++;
Kent Overstreet003b5c52013-10-11 15:45:43 -0700444 vec = bio_iter_iovec(bio, page->iter);
445 bio_advance_iter(bio, &page->iter, vec.bv_len);
446
447 if (!page->iter.bi_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 page->bio = bio->bi_next;
Neil Brown794e64d2007-12-10 15:49:30 -0800449 if (page->bio)
Kent Overstreet003b5c52013-10-11 15:45:43 -0700450 page->iter = page->bio->bi_iter;
NeilBrowneea9bef2007-08-16 13:31:26 +0200451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Jeff Garzik4e953a22007-09-27 07:41:50 -0400453 pci_unmap_page(card->dev, desc->data_dma_handle,
Kent Overstreet003b5c52013-10-11 15:45:43 -0700454 vec.bv_len,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100455 (control & DMASCR_TRANSFER_READ) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 PCI_DMA_TODEVICE : PCI_DMA_FROMDEVICE);
457 if (control & DMASCR_HARD_ERROR) {
458 /* error */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200459 bio->bi_error = -EIO;
Jeff Garzik4e0af882007-09-27 06:41:25 -0400460 dev_printk(KERN_WARNING, &card->dev->dev,
461 "I/O error on sector %d/%d\n",
462 le32_to_cpu(desc->local_addr)>>9,
463 le32_to_cpu(desc->transfer_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 dump_dmastat(card, control);
Mike Christiea8ebb052016-06-05 14:31:45 -0500465 } else if (op_is_write(bio_op(bio)) &&
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100466 le32_to_cpu(desc->local_addr) >> 9 ==
467 card->init_size) {
468 card->init_size += le32_to_cpu(desc->transfer_size) >> 9;
469 if (card->init_size >> 1 >= card->mm_size) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400470 dev_printk(KERN_INFO, &card->dev->dev,
471 "memory now initialised\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 set_userbit(card, MEMORY_INITIALIZED, 1);
473 }
474 }
475 if (bio != page->bio) {
476 bio->bi_next = return_bio;
477 return_bio = bio;
478 }
479
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100480 if (last)
481 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
483
484 if (debug & DEBUG_LED_ON_TRANSFER)
485 set_led(card, LED_REMOVE, LED_OFF);
486
487 if (card->check_batteries) {
488 card->check_batteries = 0;
489 check_batteries(card);
490 }
491 if (page->headcnt >= page->cnt) {
492 reset_page(page);
493 card->Active = -1;
494 activate(card);
495 } else {
496 /* haven't finished with this one yet */
Domen Puncer46308c02005-09-10 00:27:09 -0700497 pr_debug("do some more\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 mm_start_io(card);
499 }
500 out_unlock:
501 spin_unlock_bh(&card->lock);
502
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100503 while (return_bio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 struct bio *bio = return_bio;
505
506 return_bio = bio->bi_next;
507 bio->bi_next = NULL;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200508 bio_endio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510}
511
NeilBrown74018dc2012-07-31 09:08:15 +0200512static void mm_unplug(struct blk_plug_cb *cb, bool from_schedule)
Tao Guo32587372012-06-13 21:17:21 +0200513{
NeilBrown9cbb1752012-07-31 09:08:14 +0200514 struct cardinfo *card = cb->data;
Tao Guo32587372012-06-13 21:17:21 +0200515
NeilBrown9cbb1752012-07-31 09:08:14 +0200516 spin_lock_irq(&card->lock);
517 activate(card);
518 spin_unlock_irq(&card->lock);
519 kfree(cb);
Tao Guo32587372012-06-13 21:17:21 +0200520}
521
522static int mm_check_plugged(struct cardinfo *card)
523{
NeilBrown9cbb1752012-07-31 09:08:14 +0200524 return !!blk_check_plugged(mm_unplug, card, sizeof(struct blk_plug_cb));
Tao Guo32587372012-06-13 21:17:21 +0200525}
526
Jens Axboedece1632015-11-05 10:41:16 -0700527static blk_qc_t mm_make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 struct cardinfo *card = q->queuedata;
Zach Brownf2b9ecc2006-10-03 01:16:07 -0700530 pr_debug("mm_make_request %llu %u\n",
Kent Overstreet4f024f32013-10-11 15:44:27 -0700531 (unsigned long long)bio->bi_iter.bi_sector,
532 bio->bi_iter.bi_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Kent Overstreet54efd502015-04-23 22:37:18 -0700534 blk_queue_split(q, &bio, q->bio_split);
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 spin_lock_irq(&card->lock);
537 *card->biotail = bio;
538 bio->bi_next = NULL;
539 card->biotail = &bio->bi_next;
Tao Guo32587372012-06-13 21:17:21 +0200540 if (bio->bi_rw & REQ_SYNC || !mm_check_plugged(card))
541 activate(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 spin_unlock_irq(&card->lock);
543
Jens Axboedece1632015-11-05 10:41:16 -0700544 return BLK_QC_T_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
David Howells7d12e782006-10-05 14:55:46 +0100547static irqreturn_t mm_interrupt(int irq, void *__card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 struct cardinfo *card = (struct cardinfo *) __card;
550 unsigned int dma_status;
551 unsigned short cfg_status;
552
553HW_TRACE(0x30);
554
555 dma_status = le32_to_cpu(readl(card->csr_remap + DMA_STATUS_CTRL));
556
557 if (!(dma_status & (DMASCR_ERROR_MASK | DMASCR_CHAIN_COMPLETE))) {
558 /* interrupt wasn't for me ... */
559 return IRQ_NONE;
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* clear COMPLETION interrupts */
563 if (card->flags & UM_FLAG_NO_BYTE_STATUS)
564 writel(cpu_to_le32(DMASCR_DMA_COMPLETE|DMASCR_CHAIN_COMPLETE),
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100565 card->csr_remap + DMA_STATUS_CTRL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 else
567 writeb((DMASCR_DMA_COMPLETE|DMASCR_CHAIN_COMPLETE) >> 16,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100568 card->csr_remap + DMA_STATUS_CTRL + 2);
Jeff Garzik4e953a22007-09-27 07:41:50 -0400569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* log errors and clear interrupt status */
571 if (dma_status & DMASCR_ANY_ERR) {
572 unsigned int data_log1, data_log2;
573 unsigned int addr_log1, addr_log2;
574 unsigned char stat, count, syndrome, check;
575
576 stat = readb(card->csr_remap + MEMCTRLCMD_ERRSTATUS);
577
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100578 data_log1 = le32_to_cpu(readl(card->csr_remap +
579 ERROR_DATA_LOG));
580 data_log2 = le32_to_cpu(readl(card->csr_remap +
581 ERROR_DATA_LOG + 4));
582 addr_log1 = le32_to_cpu(readl(card->csr_remap +
583 ERROR_ADDR_LOG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 addr_log2 = readb(card->csr_remap + ERROR_ADDR_LOG + 4);
585
586 count = readb(card->csr_remap + ERROR_COUNT);
587 syndrome = readb(card->csr_remap + ERROR_SYNDROME);
588 check = readb(card->csr_remap + ERROR_CHECK);
589
590 dump_dmastat(card, dma_status);
591
592 if (stat & 0x01)
Jeff Garzik4e0af882007-09-27 06:41:25 -0400593 dev_printk(KERN_ERR, &card->dev->dev,
594 "Memory access error detected (err count %d)\n",
595 count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (stat & 0x02)
Jeff Garzik4e0af882007-09-27 06:41:25 -0400597 dev_printk(KERN_ERR, &card->dev->dev,
598 "Multi-bit EDC error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Jeff Garzik4e0af882007-09-27 06:41:25 -0400600 dev_printk(KERN_ERR, &card->dev->dev,
601 "Fault Address 0x%02x%08x, Fault Data 0x%08x%08x\n",
602 addr_log2, addr_log1, data_log2, data_log1);
603 dev_printk(KERN_ERR, &card->dev->dev,
604 "Fault Check 0x%02x, Fault Syndrome 0x%02x\n",
605 check, syndrome);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 writeb(0, card->csr_remap + ERROR_COUNT);
608 }
609
610 if (dma_status & DMASCR_PARITY_ERR_REP) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400611 dev_printk(KERN_ERR, &card->dev->dev,
612 "PARITY ERROR REPORTED\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 pci_read_config_word(card->dev, PCI_STATUS, &cfg_status);
614 pci_write_config_word(card->dev, PCI_STATUS, cfg_status);
615 }
616
617 if (dma_status & DMASCR_PARITY_ERR_DET) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400618 dev_printk(KERN_ERR, &card->dev->dev,
619 "PARITY ERROR DETECTED\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 pci_read_config_word(card->dev, PCI_STATUS, &cfg_status);
621 pci_write_config_word(card->dev, PCI_STATUS, cfg_status);
622 }
623
624 if (dma_status & DMASCR_SYSTEM_ERR_SIG) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400625 dev_printk(KERN_ERR, &card->dev->dev, "SYSTEM ERROR\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 pci_read_config_word(card->dev, PCI_STATUS, &cfg_status);
627 pci_write_config_word(card->dev, PCI_STATUS, cfg_status);
628 }
629
630 if (dma_status & DMASCR_TARGET_ABT) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400631 dev_printk(KERN_ERR, &card->dev->dev, "TARGET ABORT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 pci_read_config_word(card->dev, PCI_STATUS, &cfg_status);
633 pci_write_config_word(card->dev, PCI_STATUS, cfg_status);
634 }
635
636 if (dma_status & DMASCR_MASTER_ABT) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400637 dev_printk(KERN_ERR, &card->dev->dev, "MASTER ABORT\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 pci_read_config_word(card->dev, PCI_STATUS, &cfg_status);
639 pci_write_config_word(card->dev, PCI_STATUS, cfg_status);
640 }
641
642 /* and process the DMA descriptors */
643 card->dma_status = dma_status;
644 tasklet_schedule(&card->tasklet);
645
646HW_TRACE(0x36);
647
Jeff Garzik4e953a22007-09-27 07:41:50 -0400648 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/*
652 * If both batteries are good, no LED
653 * If either battery has been warned, solid LED
654 * If both batteries are bad, flash the LED quickly
655 * If either battery is bad, flash the LED semi quickly
656 */
657static void set_fault_to_battery_status(struct cardinfo *card)
658{
659 if (card->battery[0].good && card->battery[1].good)
660 set_led(card, LED_FAULT, LED_OFF);
661 else if (card->battery[0].warned || card->battery[1].warned)
662 set_led(card, LED_FAULT, LED_ON);
663 else if (!card->battery[0].good && !card->battery[1].good)
664 set_led(card, LED_FAULT, LED_FLASH_7_0);
665 else
666 set_led(card, LED_FAULT, LED_FLASH_3_5);
667}
668
669static void init_battery_timer(void);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671static int check_battery(struct cardinfo *card, int battery, int status)
672{
673 if (status != card->battery[battery].good) {
674 card->battery[battery].good = !card->battery[battery].good;
675 card->battery[battery].last_change = jiffies;
676
677 if (card->battery[battery].good) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400678 dev_printk(KERN_ERR, &card->dev->dev,
679 "Battery %d now good\n", battery + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 card->battery[battery].warned = 0;
681 } else
Jeff Garzik4e0af882007-09-27 06:41:25 -0400682 dev_printk(KERN_ERR, &card->dev->dev,
683 "Battery %d now FAILED\n", battery + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 return 1;
686 } else if (!card->battery[battery].good &&
687 !card->battery[battery].warned &&
688 time_after_eq(jiffies, card->battery[battery].last_change +
689 (HZ * 60 * 60 * 5))) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400690 dev_printk(KERN_ERR, &card->dev->dev,
691 "Battery %d still FAILED after 5 hours\n", battery + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 card->battery[battery].warned = 1;
693
694 return 1;
695 }
696
697 return 0;
698}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700static void check_batteries(struct cardinfo *card)
701{
702 /* NOTE: this must *never* be called while the card
703 * is doing (bus-to-card) DMA, or you will need the
704 * reset switch
705 */
706 unsigned char status;
707 int ret1, ret2;
708
709 status = readb(card->csr_remap + MEMCTRLSTATUS_BATTERY);
710 if (debug & DEBUG_BATTERY_POLLING)
Jeff Garzik4e0af882007-09-27 06:41:25 -0400711 dev_printk(KERN_DEBUG, &card->dev->dev,
712 "checking battery status, 1 = %s, 2 = %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 (status & BATTERY_1_FAILURE) ? "FAILURE" : "OK",
714 (status & BATTERY_2_FAILURE) ? "FAILURE" : "OK");
715
716 ret1 = check_battery(card, 0, !(status & BATTERY_1_FAILURE));
717 ret2 = check_battery(card, 1, !(status & BATTERY_2_FAILURE));
718
719 if (ret1 || ret2)
720 set_fault_to_battery_status(card);
721}
722
723static void check_all_batteries(unsigned long ptr)
724{
725 int i;
726
Jeff Garzik4e953a22007-09-27 07:41:50 -0400727 for (i = 0; i < num_cards; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (!(cards[i].flags & UM_FLAG_NO_BATT)) {
729 struct cardinfo *card = &cards[i];
730 spin_lock_bh(&card->lock);
731 if (card->Active >= 0)
732 card->check_batteries = 1;
733 else
734 check_batteries(card);
735 spin_unlock_bh(&card->lock);
736 }
737
738 init_battery_timer();
739}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741static void init_battery_timer(void)
742{
743 init_timer(&battery_timer);
744 battery_timer.function = check_all_batteries;
745 battery_timer.expires = jiffies + (HZ * 60);
746 add_timer(&battery_timer);
747}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749static void del_battery_timer(void)
750{
751 del_timer(&battery_timer);
752}
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/*
755 * Note no locks taken out here. In a worst case scenario, we could drop
756 * a chunk of system memory. But that should never happen, since validation
757 * happens at open or mount time, when locks are held.
758 *
759 * That's crap, since doing that while some partitions are opened
760 * or mounted will give you really nasty results.
761 */
762static int mm_revalidate(struct gendisk *disk)
763{
764 struct cardinfo *card = disk->private_data;
765 set_capacity(disk, card->mm_size << 1);
766 return 0;
767}
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800768
769static int mm_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800771 struct cardinfo *card = bdev->bd_disk->private_data;
772 int size = card->mm_size * (1024 / MM_HARDSECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800774 /*
775 * get geometry: we have to fake one... trim the size to a
776 * multiple of 2048 (1M): tell we have 32 sectors, 64 heads,
777 * whatever cylinders.
778 */
779 geo->heads = 64;
780 geo->sectors = 32;
781 geo->cylinders = size / (geo->heads * geo->sectors);
782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800784
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700785static const struct block_device_operations mm_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .owner = THIS_MODULE,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -0800787 .getgeo = mm_getgeo,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100788 .revalidate_disk = mm_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789};
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100790
Greg Kroah-Hartman8d85fce2012-12-21 15:13:49 -0800791static int mm_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 int ret = -ENODEV;
794 struct cardinfo *card = &cards[num_cards];
795 unsigned char mem_present;
796 unsigned char batt_status;
797 unsigned int saved_bar, data;
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400798 unsigned long csr_base;
799 unsigned long csr_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 int magic_number;
Jeff Garzik4e0af882007-09-27 06:41:25 -0400801 static int printed_version;
802
803 if (!printed_version++)
804 printk(KERN_INFO DRIVER_VERSION " : " DRIVER_DESC "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400806 ret = pci_enable_device(dev);
807 if (ret)
808 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0xF8);
811 pci_set_master(dev);
812
813 card->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400815 csr_base = pci_resource_start(dev, 0);
816 csr_len = pci_resource_len(dev, 0);
817 if (!csr_base || !csr_len)
818 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Jeff Garzik4e0af882007-09-27 06:41:25 -0400820 dev_printk(KERN_INFO, &dev->dev,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100821 "Micro Memory(tm) controller found (PCI Mem Module (Battery Backup))\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Yang Hongyang6a355282009-04-06 19:01:13 -0700823 if (pci_set_dma_mask(dev, DMA_BIT_MASK(64)) &&
Yang Hongyang284901a2009-04-06 19:01:15 -0700824 pci_set_dma_mask(dev, DMA_BIT_MASK(32))) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400825 dev_printk(KERN_WARNING, &dev->dev, "NO suitable DMA found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return -ENOMEM;
827 }
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400828
829 ret = pci_request_regions(dev, DRIVER_NAME);
830 if (ret) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400831 dev_printk(KERN_ERR, &card->dev->dev,
832 "Unable to request memory region\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 goto failed_req_csr;
834 }
835
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400836 card->csr_remap = ioremap_nocache(csr_base, csr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 if (!card->csr_remap) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400838 dev_printk(KERN_ERR, &card->dev->dev,
839 "Unable to remap memory region\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 ret = -ENOMEM;
841
842 goto failed_remap_csr;
843 }
844
Jeff Garzik4e0af882007-09-27 06:41:25 -0400845 dev_printk(KERN_INFO, &card->dev->dev,
846 "CSR 0x%08lx -> 0x%p (0x%lx)\n",
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400847 csr_base, card->csr_remap, csr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100849 switch (card->dev->device) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 case 0x5415:
851 card->flags |= UM_FLAG_NO_BYTE_STATUS | UM_FLAG_NO_BATTREG;
852 magic_number = 0x59;
853 break;
854
855 case 0x5425:
856 card->flags |= UM_FLAG_NO_BYTE_STATUS;
857 magic_number = 0x5C;
858 break;
859
860 case 0x6155:
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100861 card->flags |= UM_FLAG_NO_BYTE_STATUS |
862 UM_FLAG_NO_BATTREG | UM_FLAG_NO_BATT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 magic_number = 0x99;
864 break;
865
866 default:
867 magic_number = 0x100;
868 break;
869 }
870
871 if (readb(card->csr_remap + MEMCTRLSTATUS_MAGIC) != magic_number) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400872 dev_printk(KERN_ERR, &card->dev->dev, "Magic number invalid\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 ret = -ENOMEM;
874 goto failed_magic;
875 }
876
877 card->mm_pages[0].desc = pci_alloc_consistent(card->dev,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100878 PAGE_SIZE * 2,
879 &card->mm_pages[0].page_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 card->mm_pages[1].desc = pci_alloc_consistent(card->dev,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100881 PAGE_SIZE * 2,
882 &card->mm_pages[1].page_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (card->mm_pages[0].desc == NULL ||
884 card->mm_pages[1].desc == NULL) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400885 dev_printk(KERN_ERR, &card->dev->dev, "alloc failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto failed_alloc;
887 }
888 reset_page(&card->mm_pages[0]);
889 reset_page(&card->mm_pages[1]);
890 card->Ready = 0; /* page 0 is ready */
891 card->Active = -1; /* no page is active */
892 card->bio = NULL;
893 card->biotail = &card->bio;
894
895 card->queue = blk_alloc_queue(GFP_KERNEL);
896 if (!card->queue)
897 goto failed_alloc;
898
899 blk_queue_make_request(card->queue, mm_make_request);
Sage Weilf3c737d2009-04-23 08:37:58 +0200900 card->queue->queue_lock = &card->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 card->queue->queuedata = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 tasklet_init(&card->tasklet, process_page, (unsigned long)card);
904
905 card->check_batteries = 0;
Jeff Garzik4e953a22007-09-27 07:41:50 -0400906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 mem_present = readb(card->csr_remap + MEMCTRLSTATUS_MEMORY);
908 switch (mem_present) {
909 case MEM_128_MB:
910 card->mm_size = 1024 * 128;
911 break;
912 case MEM_256_MB:
913 card->mm_size = 1024 * 256;
914 break;
915 case MEM_512_MB:
916 card->mm_size = 1024 * 512;
917 break;
918 case MEM_1_GB:
919 card->mm_size = 1024 * 1024;
920 break;
921 case MEM_2_GB:
922 card->mm_size = 1024 * 2048;
923 break;
924 default:
925 card->mm_size = 0;
926 break;
927 }
928
929 /* Clear the LED's we control */
930 set_led(card, LED_REMOVE, LED_OFF);
931 set_led(card, LED_FAULT, LED_OFF);
932
933 batt_status = readb(card->csr_remap + MEMCTRLSTATUS_BATTERY);
934
935 card->battery[0].good = !(batt_status & BATTERY_1_FAILURE);
936 card->battery[1].good = !(batt_status & BATTERY_2_FAILURE);
937 card->battery[0].last_change = card->battery[1].last_change = jiffies;
938
Jeff Garzik4e953a22007-09-27 07:41:50 -0400939 if (card->flags & UM_FLAG_NO_BATT)
Jeff Garzik4e0af882007-09-27 06:41:25 -0400940 dev_printk(KERN_INFO, &card->dev->dev,
941 "Size %d KB\n", card->mm_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 else {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400943 dev_printk(KERN_INFO, &card->dev->dev,
944 "Size %d KB, Battery 1 %s (%s), Battery 2 %s (%s)\n",
945 card->mm_size,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100946 batt_status & BATTERY_1_DISABLED ? "Disabled" : "Enabled",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 card->battery[0].good ? "OK" : "FAILURE",
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100948 batt_status & BATTERY_2_DISABLED ? "Disabled" : "Enabled",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 card->battery[1].good ? "OK" : "FAILURE");
950
951 set_fault_to_battery_status(card);
952 }
953
954 pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, &saved_bar);
955 data = 0xffffffff;
956 pci_write_config_dword(dev, PCI_BASE_ADDRESS_1, data);
957 pci_read_config_dword(dev, PCI_BASE_ADDRESS_1, &data);
958 pci_write_config_dword(dev, PCI_BASE_ADDRESS_1, saved_bar);
959 data &= 0xfffffff0;
960 data = ~data;
961 data += 1;
962
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100963 if (request_irq(dev->irq, mm_interrupt, IRQF_SHARED, DRIVER_NAME,
964 card)) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400965 dev_printk(KERN_ERR, &card->dev->dev,
966 "Unable to allocate IRQ\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 goto failed_req_irq;
969 }
970
Jeff Garzik4e0af882007-09-27 06:41:25 -0400971 dev_printk(KERN_INFO, &card->dev->dev,
Jeff Garzikee4a7b62007-09-27 07:40:33 -0400972 "Window size %d bytes, IRQ %d\n", data, dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100974 spin_lock_init(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 pci_set_drvdata(dev, card);
977
978 if (pci_write_cmd != 0x0F) /* If not Memory Write & Invalidate */
979 pci_write_cmd = 0x07; /* then Memory Write command */
980
981 if (pci_write_cmd & 0x08) { /* use Memory Write and Invalidate */
982 unsigned short cfg_command;
983 pci_read_config_word(dev, PCI_COMMAND, &cfg_command);
984 cfg_command |= 0x10; /* Memory Write & Invalidate Enable */
985 pci_write_config_word(dev, PCI_COMMAND, cfg_command);
986 }
987 pci_cmds = (pci_read_cmd << 28) | (pci_write_cmd << 24);
988
989 num_cards++;
990
991 if (!get_userbit(card, MEMORY_INITIALIZED)) {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400992 dev_printk(KERN_INFO, &card->dev->dev,
Randy Dunlap458cf5e2007-12-17 20:24:20 +0100993 "memory NOT initialized. Consider over-writing whole device.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 card->init_size = 0;
995 } else {
Jeff Garzik4e0af882007-09-27 06:41:25 -0400996 dev_printk(KERN_INFO, &card->dev->dev,
997 "memory already initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 card->init_size = card->mm_size;
999 }
1000
1001 /* Enable ECC */
1002 writeb(EDC_STORE_CORRECT, card->csr_remap + MEMCTRLCMD_ERRCTRL);
1003
1004 return 0;
1005
1006 failed_req_irq:
1007 failed_alloc:
1008 if (card->mm_pages[0].desc)
1009 pci_free_consistent(card->dev, PAGE_SIZE*2,
1010 card->mm_pages[0].desc,
1011 card->mm_pages[0].page_dma);
1012 if (card->mm_pages[1].desc)
1013 pci_free_consistent(card->dev, PAGE_SIZE*2,
1014 card->mm_pages[1].desc,
1015 card->mm_pages[1].page_dma);
1016 failed_magic:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 iounmap(card->csr_remap);
1018 failed_remap_csr:
Jeff Garzikee4a7b62007-09-27 07:40:33 -04001019 pci_release_regions(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 failed_req_csr:
1021
1022 return ret;
1023}
Randy Dunlap458cf5e2007-12-17 20:24:20 +01001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025static void mm_pci_remove(struct pci_dev *dev)
1026{
1027 struct cardinfo *card = pci_get_drvdata(dev);
1028
1029 tasklet_kill(&card->tasklet);
Jeff Garzikee4a7b62007-09-27 07:40:33 -04001030 free_irq(dev->irq, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 iounmap(card->csr_remap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 if (card->mm_pages[0].desc)
1034 pci_free_consistent(card->dev, PAGE_SIZE*2,
1035 card->mm_pages[0].desc,
1036 card->mm_pages[0].page_dma);
1037 if (card->mm_pages[1].desc)
1038 pci_free_consistent(card->dev, PAGE_SIZE*2,
1039 card->mm_pages[1].desc,
1040 card->mm_pages[1].page_dma);
Al Viro1312f402006-03-12 11:02:03 -05001041 blk_cleanup_queue(card->queue);
Jeff Garzikee4a7b62007-09-27 07:40:33 -04001042
1043 pci_release_regions(dev);
1044 pci_disable_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Neil Brown5874c182007-07-13 07:39:46 +02001047static const struct pci_device_id mm_pci_ids[] = {
Randy Dunlap458cf5e2007-12-17 20:24:20 +01001048 {PCI_DEVICE(PCI_VENDOR_ID_MICRO_MEMORY, PCI_DEVICE_ID_MICRO_MEMORY_5415CN)},
1049 {PCI_DEVICE(PCI_VENDOR_ID_MICRO_MEMORY, PCI_DEVICE_ID_MICRO_MEMORY_5425CN)},
1050 {PCI_DEVICE(PCI_VENDOR_ID_MICRO_MEMORY, PCI_DEVICE_ID_MICRO_MEMORY_6155)},
Neil Brown5874c182007-07-13 07:39:46 +02001051 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 .vendor = 0x8086,
1053 .device = 0xB555,
Randy Dunlap458cf5e2007-12-17 20:24:20 +01001054 .subvendor = 0x1332,
1055 .subdevice = 0x5460,
1056 .class = 0x050000,
1057 .class_mask = 0,
Neil Brown5874c182007-07-13 07:39:46 +02001058 }, { /* end: all zeroes */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059};
1060
1061MODULE_DEVICE_TABLE(pci, mm_pci_ids);
1062
1063static struct pci_driver mm_pci_driver = {
Jeff Garzikee4a7b62007-09-27 07:40:33 -04001064 .name = DRIVER_NAME,
1065 .id_table = mm_pci_ids,
1066 .probe = mm_pci_probe,
1067 .remove = mm_pci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068};
Jeff Garzikee4a7b62007-09-27 07:40:33 -04001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070static int __init mm_init(void)
1071{
1072 int retval, i;
1073 int err;
1074
Richard Knutsson9bfab8c2005-11-30 00:59:34 +01001075 retval = pci_register_driver(&mm_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (retval)
1077 return -ENOMEM;
1078
Jeff Garzikcb3503c2007-09-27 07:49:39 -04001079 err = major_nr = register_blkdev(0, DRIVER_NAME);
NeilBrown5a243e02007-02-28 20:11:12 -08001080 if (err < 0) {
1081 pci_unregister_driver(&mm_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -EIO;
NeilBrown5a243e02007-02-28 20:11:12 -08001083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 for (i = 0; i < num_cards; i++) {
1086 mm_gendisk[i] = alloc_disk(1 << MM_SHIFT);
1087 if (!mm_gendisk[i])
1088 goto out;
1089 }
1090
1091 for (i = 0; i < num_cards; i++) {
1092 struct gendisk *disk = mm_gendisk[i];
1093 sprintf(disk->disk_name, "umem%c", 'a'+i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 spin_lock_init(&cards[i].lock);
1095 disk->major = major_nr;
1096 disk->first_minor = i << MM_SHIFT;
1097 disk->fops = &mm_fops;
1098 disk->private_data = &cards[i];
1099 disk->queue = cards[i].queue;
1100 set_capacity(disk, cards[i].mm_size << 1);
1101 add_disk(disk);
1102 }
1103
1104 init_battery_timer();
Jeff Garzik4e0af882007-09-27 06:41:25 -04001105 printk(KERN_INFO "MM: desc_per_page = %ld\n", DESC_PER_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/* printk("mm_init: Done. 10-19-01 9:00\n"); */
1107 return 0;
1108
1109out:
NeilBrown5a243e02007-02-28 20:11:12 -08001110 pci_unregister_driver(&mm_pci_driver);
Jeff Garzikcb3503c2007-09-27 07:49:39 -04001111 unregister_blkdev(major_nr, DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 while (i--)
1113 put_disk(mm_gendisk[i]);
1114 return -ENOMEM;
1115}
Randy Dunlap458cf5e2007-12-17 20:24:20 +01001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117static void __exit mm_cleanup(void)
1118{
1119 int i;
1120
1121 del_battery_timer();
1122
Randy Dunlap458cf5e2007-12-17 20:24:20 +01001123 for (i = 0; i < num_cards ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 del_gendisk(mm_gendisk[i]);
1125 put_disk(mm_gendisk[i]);
1126 }
1127
1128 pci_unregister_driver(&mm_pci_driver);
1129
Jeff Garzikcb3503c2007-09-27 07:49:39 -04001130 unregister_blkdev(major_nr, DRIVER_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133module_init(mm_init);
1134module_exit(mm_cleanup);
1135
1136MODULE_AUTHOR(DRIVER_AUTHOR);
1137MODULE_DESCRIPTION(DRIVER_DESC);
1138MODULE_LICENSE("GPL");