1 /* Driver for Realtek RTS51xx USB card reader
3 * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2, or (at your option) any
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, see <http://www.gnu.org/licenses/>.
19 * wwang (wei_wang@realsil.com.cn)
20 * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
22 * Edwin Rong (edwin_rong@realsil.com.cn)
23 * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
26 #include <linux/blkdev.h>
27 #include <linux/kthread.h>
28 #include <linux/sched.h>
29 #include <linux/workqueue.h>
30 #include <linux/errno.h>
31 #include <linux/freezer.h>
32 #include <linux/module.h>
33 #include <linux/init.h>
34 #include <linux/slab.h>
35 #include <linux/mutex.h>
36 #include <linux/utsname.h>
37 #include <linux/usb.h>
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_cmnd.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_devinfo.h>
43 #include <scsi/scsi_eh.h>
44 #include <scsi/scsi_host.h>
49 #include "rts51x_chip.h"
50 #include "rts51x_card.h"
51 #include "rts51x_scsi.h"
52 #include "rts51x_transport.h"
53 #include "rts51x_fop.h"
55 MODULE_DESCRIPTION(RTS51X_DESC
);
56 MODULE_LICENSE("GPL");
57 MODULE_VERSION(DRIVER_VERSION
);
59 static int auto_delink_en
;
60 module_param(auto_delink_en
, int, S_IRUGO
| S_IWUSR
);
61 MODULE_PARM_DESC(auto_delink_en
, "enable auto delink");
64 module_param(ss_en
, int, S_IRUGO
| S_IWUSR
);
65 MODULE_PARM_DESC(ss_en
, "enable selective suspend");
67 static int ss_delay
= 50;
68 module_param(ss_delay
, int, S_IRUGO
| S_IWUSR
);
69 MODULE_PARM_DESC(ss_delay
,
70 "seconds to delay before entering selective suspend");
72 static int needs_remote_wakeup
;
73 module_param(needs_remote_wakeup
, int, S_IRUGO
| S_IWUSR
);
74 MODULE_PARM_DESC(needs_remote_wakeup
, "ss state needs remote wakeup supported");
76 #ifdef SUPPORT_FILE_OP
77 static const struct file_operations rts51x_fops
= {
80 .write
= rts51x_write
,
81 .unlocked_ioctl
= rts51x_ioctl
,
83 .release
= rts51x_release
,
87 * usb class driver info in order to get a minor number from the usb core,
88 * and to have the device registered with the driver core
90 static struct usb_class_driver rts51x_class
= {
97 #ifdef CONFIG_PM /* Minimal support for suspend and resume */
99 static inline void usb_autopm_enable(struct usb_interface
*intf
)
101 atomic_set(&intf
->pm_usage_cnt
, 1);
102 usb_autopm_put_interface(intf
);
105 static inline void usb_autopm_disable(struct usb_interface
*intf
)
107 atomic_set(&intf
->pm_usage_cnt
, 0);
108 usb_autopm_get_interface(intf
);
111 static void rts51x_try_to_enter_ss(struct rts51x_chip
*chip
)
113 RTS51X_DEBUGP("Ready to enter SS state\n");
114 usb_autopm_enable(chip
->usb
->pusb_intf
);
117 void rts51x_try_to_exit_ss(struct rts51x_chip
*chip
)
119 RTS51X_DEBUGP("Exit from SS state\n");
120 usb_autopm_disable(chip
->usb
->pusb_intf
);
123 int rts51x_suspend(struct usb_interface
*iface
, pm_message_t message
)
125 struct rts51x_chip
*chip
= usb_get_intfdata(iface
);
127 RTS51X_DEBUGP("%s, message.event = 0x%x\n", __func__
, message
.event
);
129 /* Wait until no command is running */
130 mutex_lock(&chip
->usb
->dev_mutex
);
132 chip
->fake_card_ready
= chip
->card_ready
;
133 rts51x_do_before_power_down(chip
);
135 if (message
.event
== PM_EVENT_AUTO_SUSPEND
) {
136 RTS51X_DEBUGP("Enter SS state");
137 chip
->resume_from_scsi
= 0;
138 RTS51X_SET_STAT(chip
, STAT_SS
);
140 RTS51X_DEBUGP("Enter SUSPEND state");
141 RTS51X_SET_STAT(chip
, STAT_SUSPEND
);
144 /* When runtime PM is working, we'll set a flag to indicate
145 * whether we should autoresume when a SCSI request arrives. */
147 mutex_unlock(&chip
->usb
->dev_mutex
);
151 int rts51x_resume(struct usb_interface
*iface
)
153 struct rts51x_chip
*chip
= usb_get_intfdata(iface
);
155 RTS51X_DEBUGP("%s\n", __func__
);
157 if (!RTS51X_CHK_STAT(chip
, STAT_SS
) || !chip
->resume_from_scsi
) {
158 mutex_lock(&chip
->usb
->dev_mutex
);
160 if (chip
->option
.ss_en
) {
161 if (GET_PM_USAGE_CNT(chip
) <= 0) {
162 /* Remote wake up, increase pm_usage_cnt */
163 RTS51X_DEBUGP("Incr pm_usage_cnt\n");
164 SET_PM_USAGE_CNT(chip
, 1);
168 RTS51X_SET_STAT(chip
, STAT_RUN
);
170 rts51x_init_chip(chip
);
171 rts51x_init_cards(chip
);
173 mutex_unlock(&chip
->usb
->dev_mutex
);
179 int rts51x_reset_resume(struct usb_interface
*iface
)
181 struct rts51x_chip
*chip
= usb_get_intfdata(iface
);
183 RTS51X_DEBUGP("%s\n", __func__
);
185 mutex_lock(&chip
->usb
->dev_mutex
);
187 RTS51X_SET_STAT(chip
, STAT_RUN
);
189 if (chip
->option
.ss_en
)
190 SET_PM_USAGE_CNT(chip
, 1);
192 rts51x_init_chip(chip
);
193 rts51x_init_cards(chip
);
195 mutex_unlock(&chip
->usb
->dev_mutex
);
197 /* FIXME: Notify the subdrivers that they need to reinitialize
202 #else /* CONFIG_PM */
204 static void rts51x_try_to_enter_ss(struct rts51x_chip
*chip
)
208 void rts51x_try_to_exit_ss(struct rts51x_chip
*chip
)
212 #endif /* CONFIG_PM */
215 * The next two routines get called just before and just after
216 * a USB port reset, whether from this driver or a different one.
219 int rts51x_pre_reset(struct usb_interface
*iface
)
221 struct rts51x_chip
*chip
= usb_get_intfdata(iface
);
223 RTS51X_DEBUGP("%s\n", __func__
);
225 /* Make sure no command runs during the reset */
226 mutex_lock(&chip
->usb
->dev_mutex
);
230 int rts51x_post_reset(struct usb_interface
*iface
)
232 struct rts51x_chip
*chip
= usb_get_intfdata(iface
);
234 RTS51X_DEBUGP("%s\n", __func__
);
236 /* Report the reset to the SCSI core */
237 /* usb_stor_report_bus_reset(us); */
239 /* FIXME: Notify the subdrivers that they need to reinitialize
242 mutex_unlock(&chip
->usb
->dev_mutex
);
246 static int rts51x_control_thread(void *__chip
)
248 struct rts51x_chip
*chip
= (struct rts51x_chip
*)__chip
;
249 struct Scsi_Host
*host
= rts51x_to_host(chip
);
252 if (wait_for_completion_interruptible(&chip
->usb
->cmnd_ready
))
255 if (test_bit(FLIDX_DISCONNECTING
, &chip
->usb
->dflags
)) {
256 RTS51X_DEBUGP("-- exiting from rts51x-control\n");
260 /* lock the device pointers */
261 mutex_lock(&(chip
->usb
->dev_mutex
));
263 /* lock access to the state */
266 /* When we are called with no command pending, we're done */
267 if (chip
->srb
== NULL
) {
269 mutex_unlock(&chip
->usb
->dev_mutex
);
270 RTS51X_DEBUGP("-- exiting from control thread\n");
274 /* has the command timed out *already* ? */
275 if (test_bit(FLIDX_TIMED_OUT
, &chip
->usb
->dflags
)) {
276 chip
->srb
->result
= DID_ABORT
<< 16;
282 /* reject the command if the direction indicator
285 if (chip
->srb
->sc_data_direction
== DMA_BIDIRECTIONAL
) {
286 RTS51X_DEBUGP("UNKNOWN data direction\n");
287 chip
->srb
->result
= DID_ERROR
<< 16;
290 /* reject if target != 0 or if LUN is higher than
291 * the maximum known LUN
293 else if (chip
->srb
->device
->id
) {
294 RTS51X_DEBUGP("Bad target number (%d:%d)\n",
295 chip
->srb
->device
->id
,
296 chip
->srb
->device
->lun
);
297 chip
->srb
->result
= DID_BAD_TARGET
<< 16;
300 else if (chip
->srb
->device
->lun
> chip
->max_lun
) {
301 RTS51X_DEBUGP("Bad LUN (%d:%d)\n",
302 chip
->srb
->device
->id
,
303 chip
->srb
->device
->lun
);
304 chip
->srb
->result
= DID_BAD_TARGET
<< 16;
307 /* we've got a command, let's do it! */
309 RTS51X_DEBUG(rts51x_scsi_show_command(chip
->srb
));
310 rts51x_invoke_transport(chip
->srb
, chip
);
313 /* lock access to the state */
316 /* indicate that the command is done */
317 if (chip
->srb
->result
!= DID_ABORT
<< 16)
318 chip
->srb
->scsi_done(chip
->srb
);
321 RTS51X_DEBUGP("scsi command aborted\n");
323 /* If an abort request was received we need to signal that
324 * the abort has finished. The proper test for this is
325 * the TIMED_OUT flag, not srb->result == DID_ABORT, because
326 * the timeout might have occurred after the command had
327 * already completed with a different result code. */
328 if (test_bit(FLIDX_TIMED_OUT
, &chip
->usb
->dflags
)) {
329 complete(&(chip
->usb
->notify
));
331 /* Allow USB transfers to resume */
332 clear_bit(FLIDX_ABORTING
, &chip
->usb
->dflags
);
333 clear_bit(FLIDX_TIMED_OUT
, &chip
->usb
->dflags
);
336 /* finished working on this command */
340 /* unlock the device pointers */
341 mutex_unlock(&chip
->usb
->dev_mutex
);
344 complete(&chip
->usb
->control_exit
);
346 /* Wait until we are told to stop */
348 set_current_state(TASK_INTERRUPTIBLE);
349 if (kthread_should_stop())
353 __set_current_state(TASK_RUNNING);*/
357 static int rts51x_polling_thread(void *__chip
)
359 struct rts51x_chip
*chip
= (struct rts51x_chip
*)__chip
;
362 wait_timeout(POLLING_INTERVAL
);
364 /* if the device has disconnected, we are free to exit */
365 if (test_bit(FLIDX_DISCONNECTING
, &chip
->usb
->dflags
)) {
366 RTS51X_DEBUGP("-- exiting from rts51x-polling\n");
370 /* if the device has disconnected, we are free to exit */
371 /* if (kthread_should_stop()) {
372 printk(KERN_INFO "Stop polling thread!\n");
377 if (RTS51X_CHK_STAT(chip
, STAT_SS
) ||
378 RTS51X_CHK_STAT(chip
, STAT_SS_PRE
) ||
379 RTS51X_CHK_STAT(chip
, STAT_SUSPEND
)) {
384 if (RTS51X_CHK_STAT(chip
, STAT_IDLE
)) {
385 if (chip
->ss_counter
<
386 (ss_delay
* 1000 / POLLING_INTERVAL
)) {
389 /* Prepare SS state */
390 RTS51X_SET_STAT(chip
, STAT_SS_PRE
);
391 rts51x_try_to_enter_ss(chip
);
395 chip
->ss_counter
= 0;
400 rts51x_mspro_polling_format_status(chip
);
402 /* lock the device pointers */
403 mutex_lock(&(chip
->usb
->dev_mutex
));
405 rts51x_polling_func(chip
);
407 /* unlock the device pointers */
408 mutex_unlock(&chip
->usb
->dev_mutex
);
411 complete(&chip
->usb
->polling_exit
);
413 /* Wait until we are told to stop */
415 set_current_state(TASK_INTERRUPTIBLE);
416 if (kthread_should_stop())
420 __set_current_state(TASK_RUNNING); */
424 /* Associate our private data with the USB device */
425 static int associate_dev(struct rts51x_chip
*chip
, struct usb_interface
*intf
)
427 struct rts51x_usb
*rts51x
= chip
->usb
;
428 #ifdef SUPPORT_FILE_OP
432 /* Fill in the device-related fields */
433 rts51x
->pusb_dev
= interface_to_usbdev(intf
);
434 rts51x
->pusb_intf
= intf
;
435 rts51x
->ifnum
= intf
->cur_altsetting
->desc
.bInterfaceNumber
;
436 RTS51X_DEBUGP("Vendor: 0x%04x, Product: 0x%04x, Revision: 0x%04x\n",
437 le16_to_cpu(rts51x
->pusb_dev
->descriptor
.idVendor
),
438 le16_to_cpu(rts51x
->pusb_dev
->descriptor
.idProduct
),
439 le16_to_cpu(rts51x
->pusb_dev
->descriptor
.bcdDevice
));
440 RTS51X_DEBUGP("Interface Subclass: 0x%02x, Protocol: 0x%02x\n",
441 intf
->cur_altsetting
->desc
.bInterfaceSubClass
,
442 intf
->cur_altsetting
->desc
.bInterfaceProtocol
);
444 /* Store our private data in the interface */
445 usb_set_intfdata(intf
, chip
);
447 #ifdef SUPPORT_FILE_OP
448 /* we can register the device now, as it is ready */
449 retval
= usb_register_dev(intf
, &rts51x_class
);
451 /* something prevented us from registering this driver */
452 RTS51X_DEBUGP("Not able to get a minor for this device.");
453 usb_set_intfdata(intf
, NULL
);
458 /* Allocate the device-related DMA-mapped buffers */
459 rts51x
->cr
= usb_buffer_alloc(rts51x
->pusb_dev
, sizeof(*rts51x
->cr
),
460 GFP_KERNEL
, &rts51x
->cr_dma
);
462 RTS51X_DEBUGP("usb_ctrlrequest allocation failed\n");
463 usb_set_intfdata(intf
, NULL
);
467 rts51x
->iobuf
= usb_buffer_alloc(rts51x
->pusb_dev
, RTS51X_IOBUF_SIZE
,
468 GFP_KERNEL
, &rts51x
->iobuf_dma
);
469 if (!rts51x
->iobuf
) {
470 RTS51X_DEBUGP("I/O buffer allocation failed\n");
471 usb_set_intfdata(intf
, NULL
);
477 static void rts51x_init_options(struct rts51x_chip
*chip
)
479 struct rts51x_option
*option
= &(chip
->option
);
481 option
->rts51x_mspro_formatter_enable
= 1;
483 option
->fpga_sd_sdr104_clk
= CLK_100
;
484 option
->fpga_sd_sdr50_clk
= CLK_100
;
485 option
->fpga_sd_ddr50_clk
= CLK_100
;
486 option
->fpga_sd_hs_clk
= CLK_100
;
487 option
->fpga_mmc_52m_clk
= CLK_80
;
488 option
->fpga_ms_hg_clk
= CLK_80
;
489 option
->fpga_ms_4bit_clk
= CLK_80
;
491 option
->asic_sd_sdr104_clk
= 98;
492 option
->asic_sd_sdr50_clk
= 98;
493 option
->asic_sd_ddr50_clk
= 98;
494 option
->asic_sd_hs_clk
= 97;
495 option
->asic_mmc_52m_clk
= 95;
496 option
->asic_ms_hg_clk
= 116;
497 option
->asic_ms_4bit_clk
= 77;
499 option
->sd_ddr_tx_phase
= 0;
500 option
->mmc_ddr_tx_phase
= 1;
502 option
->sd_speed_prior
= 0;
504 SD_PUSH_POINT_AUTO
| SD_SAMPLE_POINT_AUTO
| SUPPORT_UHS50_MMC44
;
506 option
->ss_en
= ss_en
;
507 option
->ss_delay
= ss_delay
;
509 option
->auto_delink_en
= auto_delink_en
;
511 option
->FT2_fast_mode
= 0;
512 option
->pwr_delay
= 800;
513 option
->rts51x_xd_rw_step
= 0;
514 option
->D3318_off_delay
= 50;
515 option
->delink_delay
= 100;
516 option
->rts5129_D3318_off_enable
= 0;
517 option
->sd20_pad_drive
= 0;
518 option
->reset_or_rw_fail_set_pad_drive
= 1;
519 option
->debounce_num
= 2;
520 option
->led_toggle_interval
= 6;
521 option
->rts51x_xd_rwn_step
= 0;
522 option
->sd_send_status_en
= 0;
523 option
->sdr50_tx_phase
= 0x01;
524 option
->sdr50_rx_phase
= 0x05;
525 option
->ddr50_tx_phase
= 0x09;
526 option
->ddr50_rx_phase
= 0x06;
527 option
->sdr50_phase_sel
= 0;
528 option
->sd30_pad_drive
= 1;
529 option
->ms_errreg_fix
= 0;
530 option
->reset_mmc_first
= 0;
531 option
->speed_mmc
= 1;
532 option
->led_always_on
= 0;
535 /* Get the pipe settings */
536 static int get_pipes(struct rts51x_chip
*chip
)
538 struct rts51x_usb
*rts51x
= chip
->usb
;
539 struct usb_host_interface
*altsetting
=
540 rts51x
->pusb_intf
->cur_altsetting
;
542 struct usb_endpoint_descriptor
*ep
;
543 struct usb_endpoint_descriptor
*ep_in
= NULL
;
544 struct usb_endpoint_descriptor
*ep_out
= NULL
;
545 struct usb_endpoint_descriptor
*ep_int
= NULL
;
548 * Find the first endpoint of each type we need.
549 * We are expecting a minimum of 2 endpoints - in and out (bulk).
550 * An optional interrupt-in is OK (necessary for CBI protocol).
551 * We will ignore any others.
553 for (i
= 0; i
< altsetting
->desc
.bNumEndpoints
; i
++) {
554 ep
= &altsetting
->endpoint
[i
].desc
;
556 if (usb_endpoint_xfer_bulk(ep
)) {
557 if (usb_endpoint_dir_in(ep
)) {
566 else if (usb_endpoint_is_int_in(ep
)) {
572 if (!ep_in
|| !ep_out
) {
573 RTS51X_DEBUGP("Endpoint sanity check failed!"
578 /* Calculate and store the pipe values */
579 rts51x
->send_ctrl_pipe
= usb_sndctrlpipe(rts51x
->pusb_dev
, 0);
580 rts51x
->recv_ctrl_pipe
= usb_rcvctrlpipe(rts51x
->pusb_dev
, 0);
581 rts51x
->send_bulk_pipe
= usb_sndbulkpipe(rts51x
->pusb_dev
,
582 usb_endpoint_num(ep_out
));
583 rts51x
->recv_bulk_pipe
= usb_rcvbulkpipe(rts51x
->pusb_dev
,
584 usb_endpoint_num(ep_in
));
586 rts51x
->recv_intr_pipe
= usb_rcvintpipe(rts51x
->pusb_dev
,
589 rts51x
->ep_bInterval
= ep_int
->bInterval
;
594 /* Initialize all the dynamic resources we need */
595 static int rts51x_acquire_resources(struct rts51x_chip
*chip
)
597 struct rts51x_usb
*rts51x
= chip
->usb
;
600 rts51x
->current_urb
= usb_alloc_urb(0, GFP_KERNEL
);
601 if (!rts51x
->current_urb
) {
602 RTS51X_DEBUGP("URB allocation failed\n");
606 rts51x
->intr_urb
= usb_alloc_urb(0, GFP_KERNEL
);
607 if (!rts51x
->intr_urb
) {
608 RTS51X_DEBUGP("URB allocation failed\n");
612 chip
->cmd_buf
= chip
->rsp_buf
= rts51x
->iobuf
;
614 rts51x_init_options(chip
);
616 /* Init rts51xx device */
617 retval
= rts51x_init_chip(chip
);
618 if (retval
!= STATUS_SUCCESS
)
624 /* Release all our dynamic resources */
625 static void rts51x_release_resources(struct rts51x_chip
*chip
)
627 RTS51X_DEBUGP("-- %s\n", __func__
);
629 /* Tell the control thread to exit. The SCSI host must
630 * already have been removed and the DISCONNECTING flag set
631 * so that we won't accept any more commands.
633 RTS51X_DEBUGP("-- sending exit command to thread\n");
634 complete(&chip
->usb
->cmnd_ready
);
635 if (chip
->usb
->ctl_thread
)
636 wait_for_completion(&chip
->usb
->control_exit
);
637 /* kthread_stop(chip->usb->ctl_thread); */
638 if (chip
->usb
->polling_thread
)
639 wait_for_completion(&chip
->usb
->polling_exit
);
641 /* if (chip->usb->polling_thread)
642 kthread_stop(chip->usb->polling_thread); */
646 /* Release rts51xx device here */
647 rts51x_release_chip(chip
);
649 usb_free_urb(chip
->usb
->current_urb
);
650 usb_free_urb(chip
->usb
->intr_urb
);
653 /* Dissociate from the USB device */
654 static void dissociate_dev(struct rts51x_chip
*chip
)
656 struct rts51x_usb
*rts51x
= chip
->usb
;
658 RTS51X_DEBUGP("-- %s\n", __func__
);
660 /* Free the device-related DMA-mapped buffers */
662 usb_buffer_free(rts51x
->pusb_dev
, sizeof(*rts51x
->cr
),
663 rts51x
->cr
, rts51x
->cr_dma
);
665 usb_buffer_free(rts51x
->pusb_dev
, RTS51X_IOBUF_SIZE
,
666 rts51x
->iobuf
, rts51x
->iobuf_dma
);
668 /* Remove our private data from the interface */
669 usb_set_intfdata(rts51x
->pusb_intf
, NULL
);
671 #ifdef SUPPORT_FILE_OP
672 /* give back our minor */
673 usb_deregister_dev(rts51x
->pusb_intf
, &rts51x_class
);
680 /* First stage of disconnect processing: stop SCSI scanning,
681 * remove the host, and stop accepting new commands
683 static void quiesce_and_remove_host(struct rts51x_chip
*chip
)
685 struct rts51x_usb
*rts51x
= chip
->usb
;
686 struct Scsi_Host
*host
= rts51x_to_host(chip
);
688 /* If the device is really gone, cut short reset delays */
689 if (rts51x
->pusb_dev
->state
== USB_STATE_NOTATTACHED
)
690 set_bit(FLIDX_DISCONNECTING
, &rts51x
->dflags
);
692 /* Removing the host will perform an orderly shutdown: caches
693 * synchronized, disks spun down, etc.
695 scsi_remove_host(host
);
697 /* Prevent any new commands from being accepted and cut short
701 set_bit(FLIDX_DISCONNECTING
, &rts51x
->dflags
);
705 /* Second stage of disconnect processing: deallocate all resources */
706 static void release_everything(struct rts51x_chip
*chip
)
708 rts51x_release_resources(chip
);
709 dissociate_dev(chip
);
711 /* Drop our reference to the host; the SCSI core will free it
712 * (and "chip" along with it) when the refcount becomes 0. */
713 scsi_host_put(rts51x_to_host(chip
));
716 static int rts51x_probe(struct usb_interface
*intf
,
717 const struct usb_device_id
*id
)
719 struct Scsi_Host
*host
;
720 struct rts51x_chip
*chip
;
721 struct rts51x_usb
*rts51x
;
723 struct task_struct
*th
;
725 RTS51X_DEBUGP("%s detected\n", RTS51X_NAME
);
727 rts51x
= kzalloc(sizeof(struct rts51x_usb
), GFP_KERNEL
);
729 printk(KERN_WARNING RTS51X_TIP
730 "Unable to allocate rts51x_usb\n");
735 * Ask the SCSI layer to allocate a host structure, with extra
736 * space at the end for our private us_data structure.
738 host
= scsi_host_alloc(&rts51x_host_template
, sizeof(*chip
));
740 printk(KERN_WARNING RTS51X_TIP
741 "Unable to allocate the scsi host\n");
747 * Allow 16-byte CDBs and thus > 2TB
749 host
->max_cmd_len
= 16;
750 chip
= host_to_rts51x(host
);
751 memset(chip
, 0, sizeof(struct rts51x_chip
));
753 chip
->vendor_id
= id
->idVendor
;
754 chip
->product_id
= id
->idProduct
;
756 mutex_init(&(rts51x
->dev_mutex
));
757 init_completion(&rts51x
->cmnd_ready
);
758 init_completion(&rts51x
->control_exit
);
759 init_completion(&rts51x
->polling_exit
);
760 init_completion(&(rts51x
->notify
));
764 /* Associate the us_data structure with the USB device */
765 result
= associate_dev(chip
, intf
);
769 /* Find the endpoints and calculate pipe values */
770 result
= get_pipes(chip
);
774 /* Acquire all the other resources and add the host */
775 result
= rts51x_acquire_resources(chip
);
779 /* Start up our control thread */
780 th
= kthread_run(rts51x_control_thread
, chip
, RTS51X_CTL_THREAD
);
782 printk(KERN_WARNING RTS51X_TIP
783 "Unable to start control thread\n");
784 result
= PTR_ERR(th
);
787 rts51x
->ctl_thread
= th
;
789 result
= scsi_add_host(rts51x_to_host(chip
), &rts51x
->pusb_intf
->dev
);
791 printk(KERN_WARNING RTS51X_TIP
"Unable to add the scsi host\n");
794 scsi_scan_host(rts51x_to_host(chip
));
796 /* Start up our polling thread */
797 th
= kthread_run(rts51x_polling_thread
, chip
, RTS51X_POLLING_THREAD
);
799 printk(KERN_WARNING RTS51X_TIP
800 "Unable to start polling thread\n");
801 result
= PTR_ERR(th
);
804 rts51x
->polling_thread
= th
;
808 rts51x
->pusb_intf
->needs_remote_wakeup
= needs_remote_wakeup
;
809 SET_PM_USAGE_CNT(chip
, 1);
810 RTS51X_DEBUGP("pm_usage_cnt = %d\n", GET_PM_USAGE_CNT(chip
));
816 /* We come here if there are any problems */
818 RTS51X_DEBUGP("rts51x_probe() failed\n");
819 release_everything(chip
);
823 static void rts51x_disconnect(struct usb_interface
*intf
)
825 struct rts51x_chip
*chip
= (struct rts51x_chip
*)usb_get_intfdata(intf
);
827 RTS51X_DEBUGP("rts51x_disconnect() called\n");
828 quiesce_and_remove_host(chip
);
829 release_everything(chip
);
832 /***********************************************************************
833 * Initialization and registration
834 ***********************************************************************/
836 struct usb_device_id rts5139_usb_ids
[] = {
837 {USB_DEVICE(0x0BDA, 0x0139)},
838 {USB_DEVICE(0x0BDA, 0x0129)},
839 {} /* Terminating entry */
841 EXPORT_SYMBOL_GPL(rts5139_usb_ids
);
843 MODULE_DEVICE_TABLE(usb
, rts5139_usb_ids
);
845 struct usb_driver rts51x_driver
= {
847 .probe
= rts51x_probe
,
848 .disconnect
= rts51x_disconnect
,
849 .suspend
= rts51x_suspend
,
850 .resume
= rts51x_resume
,
851 .reset_resume
= rts51x_reset_resume
,
852 .pre_reset
= rts51x_pre_reset
,
853 .post_reset
= rts51x_post_reset
,
854 .id_table
= rts5139_usb_ids
,
858 module_usb_driver(rts51x_driver
);