2 * Copyright (C) 2010 - Maxim Levitsky
3 * driver for Ricoh memstick readers
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/freezer.h>
13 #include <linux/jiffies.h>
14 #include <linux/interrupt.h>
15 #include <linux/pci.h>
16 #include <linux/pci_ids.h>
17 #include <linux/delay.h>
18 #include <linux/slab.h>
19 #include <linux/kthread.h>
20 #include <linux/sched.h>
21 #include <linux/highmem.h>
22 #include <asm/byteorder.h>
23 #include <linux/swab.h>
26 static bool r592_enable_dma
= 1;
29 static const char *tpc_names
[] = {
30 "MS_TPC_READ_MG_STATUS",
31 "MS_TPC_READ_LONG_DATA",
32 "MS_TPC_READ_SHORT_DATA",
34 "MS_TPC_READ_QUAD_DATA",
37 "MS_TPC_SET_RW_REG_ADRS",
39 "MS_TPC_WRITE_QUAD_DATA",
41 "MS_TPC_WRITE_SHORT_DATA",
42 "MS_TPC_WRITE_LONG_DATA",
47 * memstick_debug_get_tpc_name - debug helper that returns string for
50 const char *memstick_debug_get_tpc_name(int tpc
)
52 return tpc_names
[tpc
-1];
54 EXPORT_SYMBOL(memstick_debug_get_tpc_name
);
58 static inline u32
r592_read_reg(struct r592_device
*dev
, int address
)
60 u32 value
= readl(dev
->mmio
+ address
);
61 dbg_reg("reg #%02d == 0x%08x", address
, value
);
65 /* Write a register */
66 static inline void r592_write_reg(struct r592_device
*dev
,
67 int address
, u32 value
)
69 dbg_reg("reg #%02d <- 0x%08x", address
, value
);
70 writel(value
, dev
->mmio
+ address
);
73 /* Reads a big endian DWORD register */
74 static inline u32
r592_read_reg_raw_be(struct r592_device
*dev
, int address
)
76 u32 value
= __raw_readl(dev
->mmio
+ address
);
77 dbg_reg("reg #%02d == 0x%08x", address
, value
);
78 return be32_to_cpu(value
);
81 /* Writes a big endian DWORD register */
82 static inline void r592_write_reg_raw_be(struct r592_device
*dev
,
83 int address
, u32 value
)
85 dbg_reg("reg #%02d <- 0x%08x", address
, value
);
86 __raw_writel(cpu_to_be32(value
), dev
->mmio
+ address
);
89 /* Set specific bits in a register (little endian) */
90 static inline void r592_set_reg_mask(struct r592_device
*dev
,
91 int address
, u32 mask
)
93 u32 reg
= readl(dev
->mmio
+ address
);
94 dbg_reg("reg #%02d |= 0x%08x (old =0x%08x)", address
, mask
, reg
);
95 writel(reg
| mask
, dev
->mmio
+ address
);
98 /* Clear specific bits in a register (little endian) */
99 static inline void r592_clear_reg_mask(struct r592_device
*dev
,
100 int address
, u32 mask
)
102 u32 reg
= readl(dev
->mmio
+ address
);
103 dbg_reg("reg #%02d &= 0x%08x (old = 0x%08x, mask = 0x%08x)",
104 address
, ~mask
, reg
, mask
);
105 writel(reg
& ~mask
, dev
->mmio
+ address
);
109 /* Wait for status bits while checking for errors */
110 static int r592_wait_status(struct r592_device
*dev
, u32 mask
, u32 wanted_mask
)
112 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
113 u32 reg
= r592_read_reg(dev
, R592_STATUS
);
115 if ((reg
& mask
) == wanted_mask
)
118 while (time_before(jiffies
, timeout
)) {
120 reg
= r592_read_reg(dev
, R592_STATUS
);
122 if ((reg
& mask
) == wanted_mask
)
125 if (reg
& (R592_STATUS_SEND_ERR
| R592_STATUS_RECV_ERR
))
134 /* Enable/disable device */
135 static int r592_enable_device(struct r592_device
*dev
, bool enable
)
137 dbg("%sabling the device", enable
? "en" : "dis");
141 /* Power up the card */
142 r592_write_reg(dev
, R592_POWER
, R592_POWER_0
| R592_POWER_1
);
144 /* Perform a reset */
145 r592_set_reg_mask(dev
, R592_IO
, R592_IO_RESET
);
149 /* Power down the card */
150 r592_write_reg(dev
, R592_POWER
, 0);
155 /* Set serial/parallel mode */
156 static int r592_set_mode(struct r592_device
*dev
, bool parallel_mode
)
158 if (!parallel_mode
) {
159 dbg("switching to serial mode");
161 /* Set serial mode */
162 r592_write_reg(dev
, R592_IO_MODE
, R592_IO_MODE_SERIAL
);
164 r592_clear_reg_mask(dev
, R592_POWER
, R592_POWER_20
);
167 dbg("switching to parallel mode");
169 /* This setting should be set _before_ switch TPC */
170 r592_set_reg_mask(dev
, R592_POWER
, R592_POWER_20
);
172 r592_clear_reg_mask(dev
, R592_IO
,
173 R592_IO_SERIAL1
| R592_IO_SERIAL2
);
175 /* Set the parallel mode now */
176 r592_write_reg(dev
, R592_IO_MODE
, R592_IO_MODE_PARALLEL
);
179 dev
->parallel_mode
= parallel_mode
;
183 /* Perform a controller reset without powering down the card */
184 static void r592_host_reset(struct r592_device
*dev
)
186 r592_set_reg_mask(dev
, R592_IO
, R592_IO_RESET
);
188 r592_set_mode(dev
, dev
->parallel_mode
);
191 /* Disable all hardware interrupts */
192 static void r592_clear_interrupts(struct r592_device
*dev
)
194 /* Disable & ACK all interrupts */
195 r592_clear_reg_mask(dev
, R592_REG_MSC
, IRQ_ALL_ACK_MASK
);
196 r592_clear_reg_mask(dev
, R592_REG_MSC
, IRQ_ALL_EN_MASK
);
199 /* Tests if there is an CRC error */
200 static int r592_test_io_error(struct r592_device
*dev
)
202 if (!(r592_read_reg(dev
, R592_STATUS
) &
203 (R592_STATUS_SEND_ERR
| R592_STATUS_RECV_ERR
)))
209 /* Ensure that FIFO is ready for use */
210 static int r592_test_fifo_empty(struct r592_device
*dev
)
212 if (r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_FIFO_EMPTY
)
215 dbg("FIFO not ready, trying to reset the device");
216 r592_host_reset(dev
);
218 if (r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_FIFO_EMPTY
)
221 message("FIFO still not ready, giving up");
225 /* Activates the DMA transfer from to FIFO */
226 static void r592_start_dma(struct r592_device
*dev
, bool is_write
)
230 spin_lock_irqsave(&dev
->irq_lock
, flags
);
232 /* Ack interrupts (just in case) + enable them */
233 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_ACK_MASK
);
234 r592_set_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_EN_MASK
);
236 /* Set DMA address */
237 r592_write_reg(dev
, R592_FIFO_DMA
, sg_dma_address(&dev
->req
->sg
));
240 reg
= r592_read_reg(dev
, R592_FIFO_DMA_SETTINGS
);
241 reg
|= R592_FIFO_DMA_SETTINGS_EN
;
244 reg
|= R592_FIFO_DMA_SETTINGS_DIR
;
246 reg
&= ~R592_FIFO_DMA_SETTINGS_DIR
;
247 r592_write_reg(dev
, R592_FIFO_DMA_SETTINGS
, reg
);
249 spin_unlock_irqrestore(&dev
->irq_lock
, flags
);
252 /* Cleanups DMA related settings */
253 static void r592_stop_dma(struct r592_device
*dev
, int error
)
255 r592_clear_reg_mask(dev
, R592_FIFO_DMA_SETTINGS
,
256 R592_FIFO_DMA_SETTINGS_EN
);
258 /* This is only a precation */
259 r592_write_reg(dev
, R592_FIFO_DMA
,
260 dev
->dummy_dma_page_physical_address
);
262 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_EN_MASK
);
263 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_ACK_MASK
);
264 dev
->dma_error
= error
;
267 /* Test if hardware supports DMA */
268 static void r592_check_dma(struct r592_device
*dev
)
270 dev
->dma_capable
= r592_enable_dma
&&
271 (r592_read_reg(dev
, R592_FIFO_DMA_SETTINGS
) &
272 R592_FIFO_DMA_SETTINGS_CAP
);
275 /* Transfers fifo contents in/out using DMA */
276 static int r592_transfer_fifo_dma(struct r592_device
*dev
)
281 if (!dev
->dma_capable
|| !dev
->req
->long_data
)
284 len
= dev
->req
->sg
.length
;
285 is_write
= dev
->req
->data_dir
== WRITE
;
287 if (len
!= R592_LFIFO_SIZE
)
290 dbg_verbose("doing dma transfer");
293 INIT_COMPLETION(dev
->dma_done
);
295 /* TODO: hidden assumption about nenth beeing always 1 */
296 sg_count
= dma_map_sg(&dev
->pci_dev
->dev
, &dev
->req
->sg
, 1, is_write
?
297 PCI_DMA_TODEVICE
: PCI_DMA_FROMDEVICE
);
300 (sg_dma_len(&dev
->req
->sg
) < dev
->req
->sg
.length
)) {
301 message("problem in dma_map_sg");
305 r592_start_dma(dev
, is_write
);
307 /* Wait for DMA completion */
308 if (!wait_for_completion_timeout(
309 &dev
->dma_done
, msecs_to_jiffies(1000))) {
310 message("DMA timeout");
311 r592_stop_dma(dev
, -ETIMEDOUT
);
314 dma_unmap_sg(&dev
->pci_dev
->dev
, &dev
->req
->sg
, 1, is_write
?
315 PCI_DMA_TODEVICE
: PCI_DMA_FROMDEVICE
);
318 return dev
->dma_error
;
322 * Writes the FIFO in 4 byte chunks.
323 * If length isn't 4 byte aligned, rest of the data if put to a fifo
324 * to be written later
325 * Use r592_flush_fifo_write to flush that fifo when writing for the
328 static void r592_write_fifo_pio(struct r592_device
*dev
,
329 unsigned char *buffer
, int len
)
331 /* flush spill from former write */
332 if (!kfifo_is_empty(&dev
->pio_fifo
)) {
335 int copy_len
= kfifo_in(&dev
->pio_fifo
, buffer
, len
);
337 if (!kfifo_is_full(&dev
->pio_fifo
))
342 copy_len
= kfifo_out(&dev
->pio_fifo
, tmp
, 4);
343 WARN_ON(copy_len
!= 4);
344 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)tmp
);
347 WARN_ON(!kfifo_is_empty(&dev
->pio_fifo
));
349 /* write full dwords */
351 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)buffer
);
356 /* put remaining bytes to the spill */
358 kfifo_in(&dev
->pio_fifo
, buffer
, len
);
361 /* Flushes the temporary FIFO used to make aligned DWORD writes */
362 static void r592_flush_fifo_write(struct r592_device
*dev
)
364 u8 buffer
[4] = { 0 };
367 if (kfifo_is_empty(&dev
->pio_fifo
))
370 len
= kfifo_out(&dev
->pio_fifo
, buffer
, 4);
371 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)buffer
);
375 * Read a fifo in 4 bytes chunks.
376 * If input doesn't fit the buffer, it places bytes of last dword in spill
377 * buffer, so that they don't get lost on last read, just throw these away.
379 static void r592_read_fifo_pio(struct r592_device
*dev
,
380 unsigned char *buffer
, int len
)
384 /* Read from last spill */
385 if (!kfifo_is_empty(&dev
->pio_fifo
)) {
387 kfifo_out(&dev
->pio_fifo
, buffer
, min(4, len
));
388 buffer
+= bytes_copied
;
391 if (!kfifo_is_empty(&dev
->pio_fifo
))
395 /* Reads dwords from FIFO */
397 *(u32
*)buffer
= r592_read_reg_raw_be(dev
, R592_FIFO_PIO
);
403 *(u32
*)tmp
= r592_read_reg_raw_be(dev
, R592_FIFO_PIO
);
404 kfifo_in(&dev
->pio_fifo
, tmp
, 4);
405 len
-= kfifo_out(&dev
->pio_fifo
, buffer
, len
);
412 /* Transfers actual data using PIO. */
413 static int r592_transfer_fifo_pio(struct r592_device
*dev
)
417 bool is_write
= dev
->req
->tpc
>= MS_TPC_SET_RW_REG_ADRS
;
418 struct sg_mapping_iter miter
;
420 kfifo_reset(&dev
->pio_fifo
);
422 if (!dev
->req
->long_data
) {
424 r592_write_fifo_pio(dev
, dev
->req
->data
,
426 r592_flush_fifo_write(dev
);
428 r592_read_fifo_pio(dev
, dev
->req
->data
,
433 local_irq_save(flags
);
434 sg_miter_start(&miter
, &dev
->req
->sg
, 1, SG_MITER_ATOMIC
|
435 (is_write
? SG_MITER_FROM_SG
: SG_MITER_TO_SG
));
437 /* Do the transfer fifo<->memory*/
438 while (sg_miter_next(&miter
))
440 r592_write_fifo_pio(dev
, miter
.addr
, miter
.length
);
442 r592_read_fifo_pio(dev
, miter
.addr
, miter
.length
);
445 /* Write last few non aligned bytes*/
447 r592_flush_fifo_write(dev
);
449 sg_miter_stop(&miter
);
450 local_irq_restore(flags
);
454 /* Executes one TPC (data is read/written from small or large fifo) */
455 static void r592_execute_tpc(struct r592_device
*dev
)
462 message("BUG: tpc execution without request!");
466 is_write
= dev
->req
->tpc
>= MS_TPC_SET_RW_REG_ADRS
;
467 len
= dev
->req
->long_data
?
468 dev
->req
->sg
.length
: dev
->req
->data_len
;
470 /* Ensure that FIFO can hold the input data */
471 if (len
> R592_LFIFO_SIZE
) {
472 message("IO: hardware doesn't support TPCs longer that 512");
477 if (!(r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_PRSNT
)) {
478 dbg("IO: refusing to send TPC because card is absent");
483 dbg("IO: executing %s LEN=%d",
484 memstick_debug_get_tpc_name(dev
->req
->tpc
), len
);
486 /* Set IO direction */
488 r592_set_reg_mask(dev
, R592_IO
, R592_IO_DIRECTION
);
490 r592_clear_reg_mask(dev
, R592_IO
, R592_IO_DIRECTION
);
493 error
= r592_test_fifo_empty(dev
);
497 /* Transfer write data */
499 error
= r592_transfer_fifo_dma(dev
);
500 if (error
== -EINVAL
)
501 error
= r592_transfer_fifo_pio(dev
);
507 /* Trigger the TPC */
508 reg
= (len
<< R592_TPC_EXEC_LEN_SHIFT
) |
509 (dev
->req
->tpc
<< R592_TPC_EXEC_TPC_SHIFT
) |
510 R592_TPC_EXEC_BIG_FIFO
;
512 r592_write_reg(dev
, R592_TPC_EXEC
, reg
);
514 /* Wait for TPC completion */
515 status
= R592_STATUS_RDY
;
516 if (dev
->req
->need_card_int
)
517 status
|= R592_STATUS_CED
;
519 error
= r592_wait_status(dev
, status
, status
);
521 message("card didn't respond");
526 error
= r592_test_io_error(dev
);
532 /* Read data from FIFO */
534 error
= r592_transfer_fifo_dma(dev
);
535 if (error
== -EINVAL
)
536 error
= r592_transfer_fifo_pio(dev
);
539 /* read INT reg. This can be shortened with shifts, but that way
541 if (dev
->parallel_mode
&& dev
->req
->need_card_int
) {
543 dev
->req
->int_reg
= 0;
544 status
= r592_read_reg(dev
, R592_STATUS
);
546 if (status
& R592_STATUS_P_CMDNACK
)
547 dev
->req
->int_reg
|= MEMSTICK_INT_CMDNAK
;
548 if (status
& R592_STATUS_P_BREQ
)
549 dev
->req
->int_reg
|= MEMSTICK_INT_BREQ
;
550 if (status
& R592_STATUS_P_INTERR
)
551 dev
->req
->int_reg
|= MEMSTICK_INT_ERR
;
552 if (status
& R592_STATUS_P_CED
)
553 dev
->req
->int_reg
|= MEMSTICK_INT_CED
;
557 dbg("FIFO read error");
559 dev
->req
->error
= error
;
560 r592_clear_reg_mask(dev
, R592_REG_MSC
, R592_REG_MSC_LED
);
564 /* Main request processing thread */
565 static int r592_process_thread(void *data
)
568 struct r592_device
*dev
= (struct r592_device
*)data
;
571 while (!kthread_should_stop()) {
572 spin_lock_irqsave(&dev
->io_thread_lock
, flags
);
573 set_current_state(TASK_INTERRUPTIBLE
);
574 error
= memstick_next_req(dev
->host
, &dev
->req
);
575 spin_unlock_irqrestore(&dev
->io_thread_lock
, flags
);
578 if (error
== -ENXIO
|| error
== -EAGAIN
) {
579 dbg_verbose("IO: done IO, sleeping");
581 dbg("IO: unknown error from "
582 "memstick_next_req %d", error
);
585 if (kthread_should_stop())
586 set_current_state(TASK_RUNNING
);
590 set_current_state(TASK_RUNNING
);
591 r592_execute_tpc(dev
);
597 /* Reprogram chip to detect change in card state */
598 /* eg, if card is detected, arm it to detect removal, and vice versa */
599 static void r592_update_card_detect(struct r592_device
*dev
)
601 u32 reg
= r592_read_reg(dev
, R592_REG_MSC
);
602 bool card_detected
= reg
& R592_REG_MSC_PRSNT
;
604 dbg("update card detect. card state: %s", card_detected
?
605 "present" : "absent");
607 reg
&= ~((R592_REG_MSC_IRQ_REMOVE
| R592_REG_MSC_IRQ_INSERT
) << 16);
610 reg
|= (R592_REG_MSC_IRQ_REMOVE
<< 16);
612 reg
|= (R592_REG_MSC_IRQ_INSERT
<< 16);
614 r592_write_reg(dev
, R592_REG_MSC
, reg
);
617 /* Timer routine that fires 1 second after last card detection event, */
618 static void r592_detect_timer(long unsigned int data
)
620 struct r592_device
*dev
= (struct r592_device
*)data
;
621 r592_update_card_detect(dev
);
622 memstick_detect_change(dev
->host
);
625 /* Interrupt handler */
626 static irqreturn_t
r592_irq(int irq
, void *data
)
628 struct r592_device
*dev
= (struct r592_device
*)data
;
629 irqreturn_t ret
= IRQ_NONE
;
631 u16 irq_enable
, irq_status
;
635 spin_lock_irqsave(&dev
->irq_lock
, flags
);
637 reg
= r592_read_reg(dev
, R592_REG_MSC
);
638 irq_enable
= reg
>> 16;
639 irq_status
= reg
& 0xFFFF;
641 /* Ack the interrupts */
643 r592_write_reg(dev
, R592_REG_MSC
, reg
);
645 /* Get the IRQ status minus bits that aren't enabled */
646 irq_status
&= (irq_enable
);
648 /* Due to limitation of memstick core, we don't look at bits that
649 indicate that card was removed/inserted and/or present */
650 if (irq_status
& (R592_REG_MSC_IRQ_INSERT
| R592_REG_MSC_IRQ_REMOVE
)) {
652 bool card_was_added
= irq_status
& R592_REG_MSC_IRQ_INSERT
;
655 message("IRQ: card %s", card_was_added
? "added" : "removed");
657 mod_timer(&dev
->detect_timer
,
658 jiffies
+ msecs_to_jiffies(card_was_added
? 500 : 50));
662 (R592_REG_MSC_FIFO_DMA_DONE
| R592_REG_MSC_FIFO_DMA_ERR
)) {
665 if (irq_status
& R592_REG_MSC_FIFO_DMA_ERR
) {
666 message("IRQ: DMA error");
669 dbg_verbose("IRQ: dma done");
673 r592_stop_dma(dev
, error
);
674 complete(&dev
->dma_done
);
677 spin_unlock_irqrestore(&dev
->irq_lock
, flags
);
681 /* External inteface: set settings */
682 static int r592_set_param(struct memstick_host
*host
,
683 enum memstick_param param
, int value
)
685 struct r592_device
*dev
= memstick_priv(host
);
690 case MEMSTICK_POWER_ON
:
691 return r592_enable_device(dev
, true);
692 case MEMSTICK_POWER_OFF
:
693 return r592_enable_device(dev
, false);
697 case MEMSTICK_INTERFACE
:
699 case MEMSTICK_SERIAL
:
700 return r592_set_mode(dev
, 0);
702 return r592_set_mode(dev
, 1);
711 /* External interface: submit requests */
712 static void r592_submit_req(struct memstick_host
*host
)
714 struct r592_device
*dev
= memstick_priv(host
);
720 spin_lock_irqsave(&dev
->io_thread_lock
, flags
);
721 if (wake_up_process(dev
->io_thread
))
722 dbg_verbose("IO thread woken to process requests");
723 spin_unlock_irqrestore(&dev
->io_thread_lock
, flags
);
726 static const struct pci_device_id r592_pci_id_tbl
[] = {
728 { PCI_VDEVICE(RICOH
, 0x0592), },
733 static int r592_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
736 struct memstick_host
*host
;
737 struct r592_device
*dev
;
739 /* Allocate memory */
740 host
= memstick_alloc_host(sizeof(struct r592_device
), &pdev
->dev
);
744 dev
= memstick_priv(host
);
747 pci_set_drvdata(pdev
, dev
);
749 /* pci initialization */
750 error
= pci_enable_device(pdev
);
754 pci_set_master(pdev
);
755 error
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
759 error
= pci_request_regions(pdev
, DRV_NAME
);
763 dev
->mmio
= pci_ioremap_bar(pdev
, 0);
767 dev
->irq
= pdev
->irq
;
768 spin_lock_init(&dev
->irq_lock
);
769 spin_lock_init(&dev
->io_thread_lock
);
770 init_completion(&dev
->dma_done
);
771 INIT_KFIFO(dev
->pio_fifo
);
772 setup_timer(&dev
->detect_timer
,
773 r592_detect_timer
, (long unsigned int)dev
);
775 /* Host initialization */
776 host
->caps
= MEMSTICK_CAP_PAR4
;
777 host
->request
= r592_submit_req
;
778 host
->set_param
= r592_set_param
;
781 dev
->io_thread
= kthread_run(r592_process_thread
, dev
, "r592_io");
782 if (IS_ERR(dev
->io_thread
)) {
783 error
= PTR_ERR(dev
->io_thread
);
787 /* This is just a precation, so don't fail */
788 dev
->dummy_dma_page
= pci_alloc_consistent(pdev
, PAGE_SIZE
,
789 &dev
->dummy_dma_page_physical_address
);
790 r592_stop_dma(dev
, 0);
792 if (request_irq(dev
->irq
, &r592_irq
, IRQF_SHARED
,
796 r592_update_card_detect(dev
);
797 if (memstick_add_host(host
))
800 message("driver successfully loaded");
803 free_irq(dev
->irq
, dev
);
805 if (dev
->dummy_dma_page
)
806 pci_free_consistent(pdev
, PAGE_SIZE
, dev
->dummy_dma_page
,
807 dev
->dummy_dma_page_physical_address
);
809 kthread_stop(dev
->io_thread
);
813 pci_release_regions(pdev
);
815 pci_disable_device(pdev
);
817 memstick_free_host(host
);
822 static void r592_remove(struct pci_dev
*pdev
)
825 struct r592_device
*dev
= pci_get_drvdata(pdev
);
827 /* Stop the processing thread.
828 That ensures that we won't take any more requests */
829 kthread_stop(dev
->io_thread
);
831 r592_enable_device(dev
, false);
833 while (!error
&& dev
->req
) {
834 dev
->req
->error
= -ETIME
;
835 error
= memstick_next_req(dev
->host
, &dev
->req
);
837 memstick_remove_host(dev
->host
);
839 free_irq(dev
->irq
, dev
);
841 pci_release_regions(pdev
);
842 pci_disable_device(pdev
);
843 memstick_free_host(dev
->host
);
845 if (dev
->dummy_dma_page
)
846 pci_free_consistent(pdev
, PAGE_SIZE
, dev
->dummy_dma_page
,
847 dev
->dummy_dma_page_physical_address
);
850 #ifdef CONFIG_PM_SLEEP
851 static int r592_suspend(struct device
*core_dev
)
853 struct pci_dev
*pdev
= to_pci_dev(core_dev
);
854 struct r592_device
*dev
= pci_get_drvdata(pdev
);
856 r592_clear_interrupts(dev
);
857 memstick_suspend_host(dev
->host
);
858 del_timer_sync(&dev
->detect_timer
);
862 static int r592_resume(struct device
*core_dev
)
864 struct pci_dev
*pdev
= to_pci_dev(core_dev
);
865 struct r592_device
*dev
= pci_get_drvdata(pdev
);
867 r592_clear_interrupts(dev
);
868 r592_enable_device(dev
, false);
869 memstick_resume_host(dev
->host
);
870 r592_update_card_detect(dev
);
875 static SIMPLE_DEV_PM_OPS(r592_pm_ops
, r592_suspend
, r592_resume
);
877 MODULE_DEVICE_TABLE(pci
, r592_pci_id_tbl
);
879 static struct pci_driver r852_pci_driver
= {
881 .id_table
= r592_pci_id_tbl
,
883 .remove
= r592_remove
,
884 .driver
.pm
= &r592_pm_ops
,
887 static __init
int r592_module_init(void)
889 return pci_register_driver(&r852_pci_driver
);
892 static void __exit
r592_module_exit(void)
894 pci_unregister_driver(&r852_pci_driver
);
897 module_init(r592_module_init
);
898 module_exit(r592_module_exit
);
900 module_param_named(enable_dma
, r592_enable_dma
, bool, S_IRUGO
);
901 MODULE_PARM_DESC(enable_dma
, "Enable usage of the DMA (default)");
902 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
903 MODULE_PARM_DESC(debug
, "Debug level (0-3)");
905 MODULE_LICENSE("GPL");
906 MODULE_AUTHOR("Maxim Levitsky <maximlevitsky@gmail.com>");
907 MODULE_DESCRIPTION("Ricoh R5C592 Memstick/Memstick PRO card reader driver");