1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2010 - Maxim Levitsky
4 * driver for Ricoh memstick readers
7 #include <linux/kernel.h>
8 #include <linux/module.h>
9 #include <linux/freezer.h>
10 #include <linux/jiffies.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
13 #include <linux/pci_ids.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
16 #include <linux/kthread.h>
17 #include <linux/sched.h>
18 #include <linux/highmem.h>
19 #include <asm/byteorder.h>
20 #include <linux/swab.h>
23 static bool r592_enable_dma
= 1;
26 static const char *tpc_names
[] = {
27 "MS_TPC_READ_MG_STATUS",
28 "MS_TPC_READ_LONG_DATA",
29 "MS_TPC_READ_SHORT_DATA",
31 "MS_TPC_READ_QUAD_DATA",
34 "MS_TPC_SET_RW_REG_ADRS",
36 "MS_TPC_WRITE_QUAD_DATA",
38 "MS_TPC_WRITE_SHORT_DATA",
39 "MS_TPC_WRITE_LONG_DATA",
44 * memstick_debug_get_tpc_name - debug helper that returns string for
47 const char *memstick_debug_get_tpc_name(int tpc
)
49 return tpc_names
[tpc
-1];
51 EXPORT_SYMBOL(memstick_debug_get_tpc_name
);
55 static inline u32
r592_read_reg(struct r592_device
*dev
, int address
)
57 u32 value
= readl(dev
->mmio
+ address
);
58 dbg_reg("reg #%02d == 0x%08x", address
, value
);
62 /* Write a register */
63 static inline void r592_write_reg(struct r592_device
*dev
,
64 int address
, u32 value
)
66 dbg_reg("reg #%02d <- 0x%08x", address
, value
);
67 writel(value
, dev
->mmio
+ address
);
70 /* Reads a big endian DWORD register */
71 static inline u32
r592_read_reg_raw_be(struct r592_device
*dev
, int address
)
73 u32 value
= __raw_readl(dev
->mmio
+ address
);
74 dbg_reg("reg #%02d == 0x%08x", address
, value
);
75 return be32_to_cpu(value
);
78 /* Writes a big endian DWORD register */
79 static inline void r592_write_reg_raw_be(struct r592_device
*dev
,
80 int address
, u32 value
)
82 dbg_reg("reg #%02d <- 0x%08x", address
, value
);
83 __raw_writel(cpu_to_be32(value
), dev
->mmio
+ address
);
86 /* Set specific bits in a register (little endian) */
87 static inline void r592_set_reg_mask(struct r592_device
*dev
,
88 int address
, u32 mask
)
90 u32 reg
= readl(dev
->mmio
+ address
);
91 dbg_reg("reg #%02d |= 0x%08x (old =0x%08x)", address
, mask
, reg
);
92 writel(reg
| mask
, dev
->mmio
+ address
);
95 /* Clear specific bits in a register (little endian) */
96 static inline void r592_clear_reg_mask(struct r592_device
*dev
,
97 int address
, u32 mask
)
99 u32 reg
= readl(dev
->mmio
+ address
);
100 dbg_reg("reg #%02d &= 0x%08x (old = 0x%08x, mask = 0x%08x)",
101 address
, ~mask
, reg
, mask
);
102 writel(reg
& ~mask
, dev
->mmio
+ address
);
106 /* Wait for status bits while checking for errors */
107 static int r592_wait_status(struct r592_device
*dev
, u32 mask
, u32 wanted_mask
)
109 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
110 u32 reg
= r592_read_reg(dev
, R592_STATUS
);
112 if ((reg
& mask
) == wanted_mask
)
115 while (time_before(jiffies
, timeout
)) {
117 reg
= r592_read_reg(dev
, R592_STATUS
);
119 if ((reg
& mask
) == wanted_mask
)
122 if (reg
& (R592_STATUS_SEND_ERR
| R592_STATUS_RECV_ERR
))
131 /* Enable/disable device */
132 static int r592_enable_device(struct r592_device
*dev
, bool enable
)
134 dbg("%sabling the device", enable
? "en" : "dis");
138 /* Power up the card */
139 r592_write_reg(dev
, R592_POWER
, R592_POWER_0
| R592_POWER_1
);
141 /* Perform a reset */
142 r592_set_reg_mask(dev
, R592_IO
, R592_IO_RESET
);
146 /* Power down the card */
147 r592_write_reg(dev
, R592_POWER
, 0);
152 /* Set serial/parallel mode */
153 static int r592_set_mode(struct r592_device
*dev
, bool parallel_mode
)
155 if (!parallel_mode
) {
156 dbg("switching to serial mode");
158 /* Set serial mode */
159 r592_write_reg(dev
, R592_IO_MODE
, R592_IO_MODE_SERIAL
);
161 r592_clear_reg_mask(dev
, R592_POWER
, R592_POWER_20
);
164 dbg("switching to parallel mode");
166 /* This setting should be set _before_ switch TPC */
167 r592_set_reg_mask(dev
, R592_POWER
, R592_POWER_20
);
169 r592_clear_reg_mask(dev
, R592_IO
,
170 R592_IO_SERIAL1
| R592_IO_SERIAL2
);
172 /* Set the parallel mode now */
173 r592_write_reg(dev
, R592_IO_MODE
, R592_IO_MODE_PARALLEL
);
176 dev
->parallel_mode
= parallel_mode
;
180 /* Perform a controller reset without powering down the card */
181 static void r592_host_reset(struct r592_device
*dev
)
183 r592_set_reg_mask(dev
, R592_IO
, R592_IO_RESET
);
185 r592_set_mode(dev
, dev
->parallel_mode
);
188 #ifdef CONFIG_PM_SLEEP
189 /* Disable all hardware interrupts */
190 static void r592_clear_interrupts(struct r592_device
*dev
)
192 /* Disable & ACK all interrupts */
193 r592_clear_reg_mask(dev
, R592_REG_MSC
, IRQ_ALL_ACK_MASK
);
194 r592_clear_reg_mask(dev
, R592_REG_MSC
, IRQ_ALL_EN_MASK
);
198 /* Tests if there is an CRC error */
199 static int r592_test_io_error(struct r592_device
*dev
)
201 if (!(r592_read_reg(dev
, R592_STATUS
) &
202 (R592_STATUS_SEND_ERR
| R592_STATUS_RECV_ERR
)))
208 /* Ensure that FIFO is ready for use */
209 static int r592_test_fifo_empty(struct r592_device
*dev
)
211 if (r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_FIFO_EMPTY
)
214 dbg("FIFO not ready, trying to reset the device");
215 r592_host_reset(dev
);
217 if (r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_FIFO_EMPTY
)
220 message("FIFO still not ready, giving up");
224 /* Activates the DMA transfer from to FIFO */
225 static void r592_start_dma(struct r592_device
*dev
, bool is_write
)
229 spin_lock_irqsave(&dev
->irq_lock
, flags
);
231 /* Ack interrupts (just in case) + enable them */
232 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_ACK_MASK
);
233 r592_set_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_EN_MASK
);
235 /* Set DMA address */
236 r592_write_reg(dev
, R592_FIFO_DMA
, sg_dma_address(&dev
->req
->sg
));
239 reg
= r592_read_reg(dev
, R592_FIFO_DMA_SETTINGS
);
240 reg
|= R592_FIFO_DMA_SETTINGS_EN
;
243 reg
|= R592_FIFO_DMA_SETTINGS_DIR
;
245 reg
&= ~R592_FIFO_DMA_SETTINGS_DIR
;
246 r592_write_reg(dev
, R592_FIFO_DMA_SETTINGS
, reg
);
248 spin_unlock_irqrestore(&dev
->irq_lock
, flags
);
251 /* Cleanups DMA related settings */
252 static void r592_stop_dma(struct r592_device
*dev
, int error
)
254 r592_clear_reg_mask(dev
, R592_FIFO_DMA_SETTINGS
,
255 R592_FIFO_DMA_SETTINGS_EN
);
257 /* This is only a precation */
258 r592_write_reg(dev
, R592_FIFO_DMA
,
259 dev
->dummy_dma_page_physical_address
);
261 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_EN_MASK
);
262 r592_clear_reg_mask(dev
, R592_REG_MSC
, DMA_IRQ_ACK_MASK
);
263 dev
->dma_error
= error
;
266 /* Test if hardware supports DMA */
267 static void r592_check_dma(struct r592_device
*dev
)
269 dev
->dma_capable
= r592_enable_dma
&&
270 (r592_read_reg(dev
, R592_FIFO_DMA_SETTINGS
) &
271 R592_FIFO_DMA_SETTINGS_CAP
);
274 /* Transfers fifo contents in/out using DMA */
275 static int r592_transfer_fifo_dma(struct r592_device
*dev
)
280 if (!dev
->dma_capable
|| !dev
->req
->long_data
)
283 len
= dev
->req
->sg
.length
;
284 is_write
= dev
->req
->data_dir
== WRITE
;
286 if (len
!= R592_LFIFO_SIZE
)
289 dbg_verbose("doing dma transfer");
292 reinit_completion(&dev
->dma_done
);
294 /* TODO: hidden assumption about nenth beeing always 1 */
295 sg_count
= dma_map_sg(&dev
->pci_dev
->dev
, &dev
->req
->sg
, 1, is_write
?
296 PCI_DMA_TODEVICE
: PCI_DMA_FROMDEVICE
);
298 if (sg_count
!= 1 || sg_dma_len(&dev
->req
->sg
) < R592_LFIFO_SIZE
) {
299 message("problem in dma_map_sg");
303 r592_start_dma(dev
, is_write
);
305 /* Wait for DMA completion */
306 if (!wait_for_completion_timeout(
307 &dev
->dma_done
, msecs_to_jiffies(1000))) {
308 message("DMA timeout");
309 r592_stop_dma(dev
, -ETIMEDOUT
);
312 dma_unmap_sg(&dev
->pci_dev
->dev
, &dev
->req
->sg
, 1, is_write
?
313 PCI_DMA_TODEVICE
: PCI_DMA_FROMDEVICE
);
316 return dev
->dma_error
;
320 * Writes the FIFO in 4 byte chunks.
321 * If length isn't 4 byte aligned, rest of the data if put to a fifo
322 * to be written later
323 * Use r592_flush_fifo_write to flush that fifo when writing for the
326 static void r592_write_fifo_pio(struct r592_device
*dev
,
327 unsigned char *buffer
, int len
)
329 /* flush spill from former write */
330 if (!kfifo_is_empty(&dev
->pio_fifo
)) {
333 int copy_len
= kfifo_in(&dev
->pio_fifo
, buffer
, len
);
335 if (!kfifo_is_full(&dev
->pio_fifo
))
340 copy_len
= kfifo_out(&dev
->pio_fifo
, tmp
, 4);
341 WARN_ON(copy_len
!= 4);
342 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)tmp
);
345 WARN_ON(!kfifo_is_empty(&dev
->pio_fifo
));
347 /* write full dwords */
349 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)buffer
);
354 /* put remaining bytes to the spill */
356 kfifo_in(&dev
->pio_fifo
, buffer
, len
);
359 /* Flushes the temporary FIFO used to make aligned DWORD writes */
360 static void r592_flush_fifo_write(struct r592_device
*dev
)
362 u8 buffer
[4] = { 0 };
365 if (kfifo_is_empty(&dev
->pio_fifo
))
368 len
= kfifo_out(&dev
->pio_fifo
, buffer
, 4);
369 r592_write_reg_raw_be(dev
, R592_FIFO_PIO
, *(u32
*)buffer
);
373 * Read a fifo in 4 bytes chunks.
374 * If input doesn't fit the buffer, it places bytes of last dword in spill
375 * buffer, so that they don't get lost on last read, just throw these away.
377 static void r592_read_fifo_pio(struct r592_device
*dev
,
378 unsigned char *buffer
, int len
)
382 /* Read from last spill */
383 if (!kfifo_is_empty(&dev
->pio_fifo
)) {
385 kfifo_out(&dev
->pio_fifo
, buffer
, min(4, len
));
386 buffer
+= bytes_copied
;
389 if (!kfifo_is_empty(&dev
->pio_fifo
))
393 /* Reads dwords from FIFO */
395 *(u32
*)buffer
= r592_read_reg_raw_be(dev
, R592_FIFO_PIO
);
401 *(u32
*)tmp
= r592_read_reg_raw_be(dev
, R592_FIFO_PIO
);
402 kfifo_in(&dev
->pio_fifo
, tmp
, 4);
403 len
-= kfifo_out(&dev
->pio_fifo
, buffer
, len
);
410 /* Transfers actual data using PIO. */
411 static int r592_transfer_fifo_pio(struct r592_device
*dev
)
415 bool is_write
= dev
->req
->tpc
>= MS_TPC_SET_RW_REG_ADRS
;
416 struct sg_mapping_iter miter
;
418 kfifo_reset(&dev
->pio_fifo
);
420 if (!dev
->req
->long_data
) {
422 r592_write_fifo_pio(dev
, dev
->req
->data
,
424 r592_flush_fifo_write(dev
);
426 r592_read_fifo_pio(dev
, dev
->req
->data
,
431 local_irq_save(flags
);
432 sg_miter_start(&miter
, &dev
->req
->sg
, 1, SG_MITER_ATOMIC
|
433 (is_write
? SG_MITER_FROM_SG
: SG_MITER_TO_SG
));
435 /* Do the transfer fifo<->memory*/
436 while (sg_miter_next(&miter
))
438 r592_write_fifo_pio(dev
, miter
.addr
, miter
.length
);
440 r592_read_fifo_pio(dev
, miter
.addr
, miter
.length
);
443 /* Write last few non aligned bytes*/
445 r592_flush_fifo_write(dev
);
447 sg_miter_stop(&miter
);
448 local_irq_restore(flags
);
452 /* Executes one TPC (data is read/written from small or large fifo) */
453 static void r592_execute_tpc(struct r592_device
*dev
)
460 message("BUG: tpc execution without request!");
464 is_write
= dev
->req
->tpc
>= MS_TPC_SET_RW_REG_ADRS
;
465 len
= dev
->req
->long_data
?
466 dev
->req
->sg
.length
: dev
->req
->data_len
;
468 /* Ensure that FIFO can hold the input data */
469 if (len
> R592_LFIFO_SIZE
) {
470 message("IO: hardware doesn't support TPCs longer that 512");
475 if (!(r592_read_reg(dev
, R592_REG_MSC
) & R592_REG_MSC_PRSNT
)) {
476 dbg("IO: refusing to send TPC because card is absent");
481 dbg("IO: executing %s LEN=%d",
482 memstick_debug_get_tpc_name(dev
->req
->tpc
), len
);
484 /* Set IO direction */
486 r592_set_reg_mask(dev
, R592_IO
, R592_IO_DIRECTION
);
488 r592_clear_reg_mask(dev
, R592_IO
, R592_IO_DIRECTION
);
491 error
= r592_test_fifo_empty(dev
);
495 /* Transfer write data */
497 error
= r592_transfer_fifo_dma(dev
);
498 if (error
== -EINVAL
)
499 error
= r592_transfer_fifo_pio(dev
);
505 /* Trigger the TPC */
506 reg
= (len
<< R592_TPC_EXEC_LEN_SHIFT
) |
507 (dev
->req
->tpc
<< R592_TPC_EXEC_TPC_SHIFT
) |
508 R592_TPC_EXEC_BIG_FIFO
;
510 r592_write_reg(dev
, R592_TPC_EXEC
, reg
);
512 /* Wait for TPC completion */
513 status
= R592_STATUS_RDY
;
514 if (dev
->req
->need_card_int
)
515 status
|= R592_STATUS_CED
;
517 error
= r592_wait_status(dev
, status
, status
);
519 message("card didn't respond");
524 error
= r592_test_io_error(dev
);
530 /* Read data from FIFO */
532 error
= r592_transfer_fifo_dma(dev
);
533 if (error
== -EINVAL
)
534 error
= r592_transfer_fifo_pio(dev
);
537 /* read INT reg. This can be shortened with shifts, but that way
539 if (dev
->parallel_mode
&& dev
->req
->need_card_int
) {
541 dev
->req
->int_reg
= 0;
542 status
= r592_read_reg(dev
, R592_STATUS
);
544 if (status
& R592_STATUS_P_CMDNACK
)
545 dev
->req
->int_reg
|= MEMSTICK_INT_CMDNAK
;
546 if (status
& R592_STATUS_P_BREQ
)
547 dev
->req
->int_reg
|= MEMSTICK_INT_BREQ
;
548 if (status
& R592_STATUS_P_INTERR
)
549 dev
->req
->int_reg
|= MEMSTICK_INT_ERR
;
550 if (status
& R592_STATUS_P_CED
)
551 dev
->req
->int_reg
|= MEMSTICK_INT_CED
;
555 dbg("FIFO read error");
557 dev
->req
->error
= error
;
558 r592_clear_reg_mask(dev
, R592_REG_MSC
, R592_REG_MSC_LED
);
562 /* Main request processing thread */
563 static int r592_process_thread(void *data
)
566 struct r592_device
*dev
= (struct r592_device
*)data
;
569 while (!kthread_should_stop()) {
570 spin_lock_irqsave(&dev
->io_thread_lock
, flags
);
571 set_current_state(TASK_INTERRUPTIBLE
);
572 error
= memstick_next_req(dev
->host
, &dev
->req
);
573 spin_unlock_irqrestore(&dev
->io_thread_lock
, flags
);
576 if (error
== -ENXIO
|| error
== -EAGAIN
) {
577 dbg_verbose("IO: done IO, sleeping");
579 dbg("IO: unknown error from "
580 "memstick_next_req %d", error
);
583 if (kthread_should_stop())
584 set_current_state(TASK_RUNNING
);
588 set_current_state(TASK_RUNNING
);
589 r592_execute_tpc(dev
);
595 /* Reprogram chip to detect change in card state */
596 /* eg, if card is detected, arm it to detect removal, and vice versa */
597 static void r592_update_card_detect(struct r592_device
*dev
)
599 u32 reg
= r592_read_reg(dev
, R592_REG_MSC
);
600 bool card_detected
= reg
& R592_REG_MSC_PRSNT
;
602 dbg("update card detect. card state: %s", card_detected
?
603 "present" : "absent");
605 reg
&= ~((R592_REG_MSC_IRQ_REMOVE
| R592_REG_MSC_IRQ_INSERT
) << 16);
608 reg
|= (R592_REG_MSC_IRQ_REMOVE
<< 16);
610 reg
|= (R592_REG_MSC_IRQ_INSERT
<< 16);
612 r592_write_reg(dev
, R592_REG_MSC
, reg
);
615 /* Timer routine that fires 1 second after last card detection event, */
616 static void r592_detect_timer(struct timer_list
*t
)
618 struct r592_device
*dev
= from_timer(dev
, t
, detect_timer
);
619 r592_update_card_detect(dev
);
620 memstick_detect_change(dev
->host
);
623 /* Interrupt handler */
624 static irqreturn_t
r592_irq(int irq
, void *data
)
626 struct r592_device
*dev
= (struct r592_device
*)data
;
627 irqreturn_t ret
= IRQ_NONE
;
629 u16 irq_enable
, irq_status
;
633 spin_lock_irqsave(&dev
->irq_lock
, flags
);
635 reg
= r592_read_reg(dev
, R592_REG_MSC
);
636 irq_enable
= reg
>> 16;
637 irq_status
= reg
& 0xFFFF;
639 /* Ack the interrupts */
641 r592_write_reg(dev
, R592_REG_MSC
, reg
);
643 /* Get the IRQ status minus bits that aren't enabled */
644 irq_status
&= (irq_enable
);
646 /* Due to limitation of memstick core, we don't look at bits that
647 indicate that card was removed/inserted and/or present */
648 if (irq_status
& (R592_REG_MSC_IRQ_INSERT
| R592_REG_MSC_IRQ_REMOVE
)) {
650 bool card_was_added
= irq_status
& R592_REG_MSC_IRQ_INSERT
;
653 message("IRQ: card %s", card_was_added
? "added" : "removed");
655 mod_timer(&dev
->detect_timer
,
656 jiffies
+ msecs_to_jiffies(card_was_added
? 500 : 50));
660 (R592_REG_MSC_FIFO_DMA_DONE
| R592_REG_MSC_FIFO_DMA_ERR
)) {
663 if (irq_status
& R592_REG_MSC_FIFO_DMA_ERR
) {
664 message("IRQ: DMA error");
667 dbg_verbose("IRQ: dma done");
671 r592_stop_dma(dev
, error
);
672 complete(&dev
->dma_done
);
675 spin_unlock_irqrestore(&dev
->irq_lock
, flags
);
679 /* External inteface: set settings */
680 static int r592_set_param(struct memstick_host
*host
,
681 enum memstick_param param
, int value
)
683 struct r592_device
*dev
= memstick_priv(host
);
688 case MEMSTICK_POWER_ON
:
689 return r592_enable_device(dev
, true);
690 case MEMSTICK_POWER_OFF
:
691 return r592_enable_device(dev
, false);
695 case MEMSTICK_INTERFACE
:
697 case MEMSTICK_SERIAL
:
698 return r592_set_mode(dev
, 0);
700 return r592_set_mode(dev
, 1);
709 /* External interface: submit requests */
710 static void r592_submit_req(struct memstick_host
*host
)
712 struct r592_device
*dev
= memstick_priv(host
);
718 spin_lock_irqsave(&dev
->io_thread_lock
, flags
);
719 if (wake_up_process(dev
->io_thread
))
720 dbg_verbose("IO thread woken to process requests");
721 spin_unlock_irqrestore(&dev
->io_thread_lock
, flags
);
724 static const struct pci_device_id r592_pci_id_tbl
[] = {
726 { PCI_VDEVICE(RICOH
, 0x0592), },
731 static int r592_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
734 struct memstick_host
*host
;
735 struct r592_device
*dev
;
737 /* Allocate memory */
738 host
= memstick_alloc_host(sizeof(struct r592_device
), &pdev
->dev
);
742 dev
= memstick_priv(host
);
745 pci_set_drvdata(pdev
, dev
);
747 /* pci initialization */
748 error
= pci_enable_device(pdev
);
752 pci_set_master(pdev
);
753 error
= dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32));
757 error
= pci_request_regions(pdev
, DRV_NAME
);
761 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 timer_setup(&dev
->detect_timer
, r592_detect_timer
, 0);
774 /* Host initialization */
775 host
->caps
= MEMSTICK_CAP_PAR4
;
776 host
->request
= r592_submit_req
;
777 host
->set_param
= r592_set_param
;
780 dev
->io_thread
= kthread_run(r592_process_thread
, dev
, "r592_io");
781 if (IS_ERR(dev
->io_thread
)) {
782 error
= PTR_ERR(dev
->io_thread
);
786 /* This is just a precation, so don't fail */
787 dev
->dummy_dma_page
= dma_alloc_coherent(&pdev
->dev
, PAGE_SIZE
,
788 &dev
->dummy_dma_page_physical_address
, GFP_KERNEL
);
789 r592_stop_dma(dev
, 0);
791 error
= request_irq(dev
->irq
, &r592_irq
, IRQF_SHARED
,
796 r592_update_card_detect(dev
);
797 error
= memstick_add_host(host
);
801 message("driver successfully loaded");
804 free_irq(dev
->irq
, dev
);
806 if (dev
->dummy_dma_page
)
807 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
, dev
->dummy_dma_page
,
808 dev
->dummy_dma_page_physical_address
);
810 kthread_stop(dev
->io_thread
);
814 pci_release_regions(pdev
);
816 pci_disable_device(pdev
);
818 memstick_free_host(host
);
823 static void r592_remove(struct pci_dev
*pdev
)
826 struct r592_device
*dev
= pci_get_drvdata(pdev
);
828 /* Stop the processing thread.
829 That ensures that we won't take any more requests */
830 kthread_stop(dev
->io_thread
);
832 r592_enable_device(dev
, false);
834 while (!error
&& dev
->req
) {
835 dev
->req
->error
= -ETIME
;
836 error
= memstick_next_req(dev
->host
, &dev
->req
);
838 memstick_remove_host(dev
->host
);
840 free_irq(dev
->irq
, dev
);
842 pci_release_regions(pdev
);
843 pci_disable_device(pdev
);
844 memstick_free_host(dev
->host
);
846 if (dev
->dummy_dma_page
)
847 dma_free_coherent(&pdev
->dev
, PAGE_SIZE
, dev
->dummy_dma_page
,
848 dev
->dummy_dma_page_physical_address
);
851 #ifdef CONFIG_PM_SLEEP
852 static int r592_suspend(struct device
*core_dev
)
854 struct r592_device
*dev
= dev_get_drvdata(core_dev
);
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 r592_device
*dev
= dev_get_drvdata(core_dev
);
866 r592_clear_interrupts(dev
);
867 r592_enable_device(dev
, false);
868 memstick_resume_host(dev
->host
);
869 r592_update_card_detect(dev
);
874 static SIMPLE_DEV_PM_OPS(r592_pm_ops
, r592_suspend
, r592_resume
);
876 MODULE_DEVICE_TABLE(pci
, r592_pci_id_tbl
);
878 static struct pci_driver r852_pci_driver
= {
880 .id_table
= r592_pci_id_tbl
,
882 .remove
= r592_remove
,
883 .driver
.pm
= &r592_pm_ops
,
886 module_pci_driver(r852_pci_driver
);
888 module_param_named(enable_dma
, r592_enable_dma
, bool, S_IRUGO
);
889 MODULE_PARM_DESC(enable_dma
, "Enable usage of the DMA (default)");
890 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
891 MODULE_PARM_DESC(debug
, "Debug level (0-3)");
893 MODULE_LICENSE("GPL");
894 MODULE_AUTHOR("Maxim Levitsky <maximlevitsky@gmail.com>");
895 MODULE_DESCRIPTION("Ricoh R5C592 Memstick/Memstick PRO card reader driver");