1 // SPDX-License-Identifier: GPL-2.0+
3 * Driver for Realtek RTS51xx USB card reader
5 * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
8 * wwang (wei_wang@realsil.com.cn)
9 * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
12 #include <linux/module.h>
13 #include <linux/blkdev.h>
14 #include <linux/kthread.h>
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
18 #include <scsi/scsi.h>
19 #include <scsi/scsi_cmnd.h>
20 #include <scsi/scsi_device.h>
21 #include <linux/cdrom.h>
23 #include <linux/usb.h>
24 #include <linux/slab.h>
25 #include <linux/usb_usual.h>
28 #include "transport.h"
33 #define DRV_NAME "ums-realtek"
35 MODULE_DESCRIPTION("Driver for Realtek USB Card Reader");
36 MODULE_AUTHOR("wwang <wei_wang@realsil.com.cn>");
37 MODULE_LICENSE("GPL");
38 MODULE_IMPORT_NS(USB_STORAGE
);
40 static int auto_delink_en
= 1;
41 module_param(auto_delink_en
, int, S_IRUGO
| S_IWUSR
);
42 MODULE_PARM_DESC(auto_delink_en
, "auto delink mode (0=firmware, 1=software [default])");
44 #ifdef CONFIG_REALTEK_AUTOPM
46 module_param(ss_en
, int, S_IRUGO
| S_IWUSR
);
47 MODULE_PARM_DESC(ss_en
, "enable selective suspend");
49 static int ss_delay
= 50;
50 module_param(ss_delay
, int, S_IRUGO
| S_IWUSR
);
51 MODULE_PARM_DESC(ss_delay
,
52 "seconds to delay before entering selective suspend");
61 #define POLLING_INTERVAL 50
63 #define rts51x_set_stat(chip, stat) \
64 ((chip)->state = (enum RTS51X_STAT)(stat))
65 #define rts51x_get_stat(chip) ((chip)->state)
67 #define SET_LUN_READY(chip, lun) ((chip)->lun_ready |= ((u8)1 << (lun)))
68 #define CLR_LUN_READY(chip, lun) ((chip)->lun_ready &= ~((u8)1 << (lun)))
69 #define TST_LUN_READY(chip, lun) ((chip)->lun_ready & ((u8)1 << (lun)))
73 struct rts51x_status
{
96 struct rts51x_status
*status
;
102 #ifdef CONFIG_REALTEK_AUTOPM
103 struct timer_list rts51x_suspend_timer
;
104 unsigned long timer_expires
;
107 enum RTS51X_STAT state
;
108 int support_auto_delink
;
110 /* used to back up the protocol chosen in probe1 phase */
111 proto_cmnd proto_handler_backup
;
114 /* flag definition */
115 #define FLIDX_AUTO_DELINK 0x01
117 #define SCSI_LUN(srb) ((srb)->device->lun)
120 #define SET_BIT(data, idx) ((data) |= 1 << (idx))
121 #define CLR_BIT(data, idx) ((data) &= ~(1 << (idx)))
122 #define CHK_BIT(data, idx) ((data) & (1 << (idx)))
124 #define SET_AUTO_DELINK(chip) ((chip)->flag |= FLIDX_AUTO_DELINK)
125 #define CLR_AUTO_DELINK(chip) ((chip)->flag &= ~FLIDX_AUTO_DELINK)
126 #define CHK_AUTO_DELINK(chip) ((chip)->flag & FLIDX_AUTO_DELINK)
128 #define RTS51X_GET_VID(chip) ((chip)->vendor_id)
129 #define RTS51X_GET_PID(chip) ((chip)->product_id)
131 #define VENDOR_ID(chip) ((chip)->status[0].vid)
132 #define PRODUCT_ID(chip) ((chip)->status[0].pid)
133 #define FW_VERSION(chip) ((chip)->status[0].fw_ver)
134 #define STATUS_LEN(chip) ((chip)->status_len)
136 #define STATUS_SUCCESS 0
137 #define STATUS_FAIL 1
139 /* Check card reader function */
140 #define SUPPORT_DETAILED_TYPE1(chip) \
141 CHK_BIT((chip)->status[0].function[0], 1)
142 #define SUPPORT_OT(chip) \
143 CHK_BIT((chip)->status[0].function[0], 2)
144 #define SUPPORT_OC(chip) \
145 CHK_BIT((chip)->status[0].function[0], 3)
146 #define SUPPORT_AUTO_DELINK(chip) \
147 CHK_BIT((chip)->status[0].function[0], 4)
148 #define SUPPORT_SDIO(chip) \
149 CHK_BIT((chip)->status[0].function[1], 0)
150 #define SUPPORT_DETAILED_TYPE2(chip) \
151 CHK_BIT((chip)->status[0].function[1], 1)
153 #define CHECK_PID(chip, pid) (RTS51X_GET_PID(chip) == (pid))
154 #define CHECK_FW_VER(chip, fw_ver) (FW_VERSION(chip) == (fw_ver))
155 #define CHECK_ID(chip, pid, fw_ver) \
156 (CHECK_PID((chip), (pid)) && CHECK_FW_VER((chip), (fw_ver)))
158 static int init_realtek_cr(struct us_data
*us
);
161 * The table of devices
163 #define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
164 vendorName, productName, useProtocol, useTransport, \
165 initFunction, flags) \
167 USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
168 .driver_info = (flags) \
171 static const struct usb_device_id realtek_cr_ids
[] = {
172 # include "unusual_realtek.h"
173 {} /* Terminating entry */
176 MODULE_DEVICE_TABLE(usb
, realtek_cr_ids
);
183 #define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
184 vendor_name, product_name, use_protocol, use_transport, \
185 init_function, Flags) \
187 .vendorName = vendor_name, \
188 .productName = product_name, \
189 .useProtocol = use_protocol, \
190 .useTransport = use_transport, \
191 .initFunction = init_function, \
194 static struct us_unusual_dev realtek_cr_unusual_dev_list
[] = {
195 # include "unusual_realtek.h"
196 {} /* Terminating entry */
201 static int rts51x_bulk_transport(struct us_data
*us
, u8 lun
,
202 u8
*cmd
, int cmd_len
, u8
*buf
, int buf_len
,
203 enum dma_data_direction dir
, int *act_len
)
205 struct bulk_cb_wrap
*bcb
= (struct bulk_cb_wrap
*)us
->iobuf
;
206 struct bulk_cs_wrap
*bcs
= (struct bulk_cs_wrap
*)us
->iobuf
;
208 unsigned int residue
;
210 unsigned int cbwlen
= US_BULK_CB_WRAP_LEN
;
212 /* set up the command wrapper */
213 bcb
->Signature
= cpu_to_le32(US_BULK_CB_SIGN
);
214 bcb
->DataTransferLength
= cpu_to_le32(buf_len
);
215 bcb
->Flags
= (dir
== DMA_FROM_DEVICE
) ? US_BULK_FLAG_IN
: 0;
216 bcb
->Tag
= ++us
->tag
;
218 bcb
->Length
= cmd_len
;
220 /* copy the command payload */
221 memset(bcb
->CDB
, 0, sizeof(bcb
->CDB
));
222 memcpy(bcb
->CDB
, cmd
, bcb
->Length
);
224 /* send it to out endpoint */
225 result
= usb_stor_bulk_transfer_buf(us
, us
->send_bulk_pipe
,
227 if (result
!= USB_STOR_XFER_GOOD
)
228 return USB_STOR_TRANSPORT_ERROR
;
231 /* send/receive data payload, if there is any */
233 if (buf
&& buf_len
) {
234 unsigned int pipe
= (dir
== DMA_FROM_DEVICE
) ?
235 us
->recv_bulk_pipe
: us
->send_bulk_pipe
;
236 result
= usb_stor_bulk_transfer_buf(us
, pipe
,
238 if (result
== USB_STOR_XFER_ERROR
)
239 return USB_STOR_TRANSPORT_ERROR
;
242 /* get CSW for device status */
243 result
= usb_stor_bulk_transfer_buf(us
, us
->recv_bulk_pipe
,
244 bcs
, US_BULK_CS_WRAP_LEN
, &cswlen
);
245 if (result
!= USB_STOR_XFER_GOOD
)
246 return USB_STOR_TRANSPORT_ERROR
;
248 /* check bulk status */
249 if (bcs
->Signature
!= cpu_to_le32(US_BULK_CS_SIGN
)) {
250 usb_stor_dbg(us
, "Signature mismatch: got %08X, expecting %08X\n",
251 le32_to_cpu(bcs
->Signature
), US_BULK_CS_SIGN
);
252 return USB_STOR_TRANSPORT_ERROR
;
255 residue
= bcs
->Residue
;
256 if (bcs
->Tag
!= us
->tag
)
257 return USB_STOR_TRANSPORT_ERROR
;
260 * try to compute the actual residue, based on how much data
261 * was really transferred and what the device tells us
264 residue
= residue
< buf_len
? residue
: buf_len
;
267 *act_len
= buf_len
- residue
;
269 /* based on the status code, we report good or bad */
270 switch (bcs
->Status
) {
271 case US_BULK_STAT_OK
:
272 /* command good -- note that data could be short */
273 return USB_STOR_TRANSPORT_GOOD
;
275 case US_BULK_STAT_FAIL
:
277 return USB_STOR_TRANSPORT_FAILED
;
279 case US_BULK_STAT_PHASE
:
281 * phase error -- note that a transport reset will be
282 * invoked by the invoke_transport() function
284 return USB_STOR_TRANSPORT_ERROR
;
287 /* we should never get here, but if we do, we're in trouble */
288 return USB_STOR_TRANSPORT_ERROR
;
291 static int rts51x_bulk_transport_special(struct us_data
*us
, u8 lun
,
292 u8
*cmd
, int cmd_len
, u8
*buf
, int buf_len
,
293 enum dma_data_direction dir
, int *act_len
)
295 struct bulk_cb_wrap
*bcb
= (struct bulk_cb_wrap
*) us
->iobuf
;
296 struct bulk_cs_wrap
*bcs
= (struct bulk_cs_wrap
*) us
->iobuf
;
299 unsigned int cbwlen
= US_BULK_CB_WRAP_LEN
;
301 /* set up the command wrapper */
302 bcb
->Signature
= cpu_to_le32(US_BULK_CB_SIGN
);
303 bcb
->DataTransferLength
= cpu_to_le32(buf_len
);
304 bcb
->Flags
= (dir
== DMA_FROM_DEVICE
) ? US_BULK_FLAG_IN
: 0;
305 bcb
->Tag
= ++us
->tag
;
307 bcb
->Length
= cmd_len
;
309 /* copy the command payload */
310 memset(bcb
->CDB
, 0, sizeof(bcb
->CDB
));
311 memcpy(bcb
->CDB
, cmd
, bcb
->Length
);
313 /* send it to out endpoint */
314 result
= usb_stor_bulk_transfer_buf(us
, us
->send_bulk_pipe
,
316 if (result
!= USB_STOR_XFER_GOOD
)
317 return USB_STOR_TRANSPORT_ERROR
;
320 /* send/receive data payload, if there is any */
322 if (buf
&& buf_len
) {
323 unsigned int pipe
= (dir
== DMA_FROM_DEVICE
) ?
324 us
->recv_bulk_pipe
: us
->send_bulk_pipe
;
325 result
= usb_stor_bulk_transfer_buf(us
, pipe
,
327 if (result
== USB_STOR_XFER_ERROR
)
328 return USB_STOR_TRANSPORT_ERROR
;
331 /* get CSW for device status */
332 result
= usb_bulk_msg(us
->pusb_dev
, us
->recv_bulk_pipe
, bcs
,
333 US_BULK_CS_WRAP_LEN
, &cswlen
, 250);
337 /* Determine what the maximum LUN supported is */
338 static int rts51x_get_max_lun(struct us_data
*us
)
342 /* issue the command */
344 result
= usb_stor_control_msg(us
, us
->recv_ctrl_pipe
,
346 USB_DIR_IN
| USB_TYPE_CLASS
|
348 0, us
->ifnum
, us
->iobuf
, 1, 10 * HZ
);
350 usb_stor_dbg(us
, "GetMaxLUN command result is %d, data is %d\n",
351 result
, us
->iobuf
[0]);
353 /* if we have a successful request, return the result */
360 static int rts51x_read_mem(struct us_data
*us
, u16 addr
, u8
*data
, u16 len
)
366 buf
= kmalloc(len
, GFP_NOIO
);
368 return USB_STOR_TRANSPORT_ERROR
;
370 usb_stor_dbg(us
, "addr = 0x%x, len = %d\n", addr
, len
);
374 cmnd
[2] = (u8
) (addr
>> 8);
376 cmnd
[4] = (u8
) (len
>> 8);
379 retval
= rts51x_bulk_transport(us
, 0, cmnd
, 12,
380 buf
, len
, DMA_FROM_DEVICE
, NULL
);
381 if (retval
!= USB_STOR_TRANSPORT_GOOD
) {
386 memcpy(data
, buf
, len
);
391 static int rts51x_write_mem(struct us_data
*us
, u16 addr
, u8
*data
, u16 len
)
397 buf
= kmemdup(data
, len
, GFP_NOIO
);
399 return USB_STOR_TRANSPORT_ERROR
;
401 usb_stor_dbg(us
, "addr = 0x%x, len = %d\n", addr
, len
);
405 cmnd
[2] = (u8
) (addr
>> 8);
407 cmnd
[4] = (u8
) (len
>> 8);
410 retval
= rts51x_bulk_transport(us
, 0, cmnd
, 12,
411 buf
, len
, DMA_TO_DEVICE
, NULL
);
413 if (retval
!= USB_STOR_TRANSPORT_GOOD
)
419 static int rts51x_read_status(struct us_data
*us
,
420 u8 lun
, u8
*status
, int len
, int *actlen
)
426 buf
= kmalloc(len
, GFP_NOIO
);
428 return USB_STOR_TRANSPORT_ERROR
;
430 usb_stor_dbg(us
, "lun = %d\n", lun
);
435 retval
= rts51x_bulk_transport(us
, lun
, cmnd
, 12,
436 buf
, len
, DMA_FROM_DEVICE
, actlen
);
437 if (retval
!= USB_STOR_TRANSPORT_GOOD
) {
442 memcpy(status
, buf
, len
);
447 static int rts51x_check_status(struct us_data
*us
, u8 lun
)
449 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
453 retval
= rts51x_read_status(us
, lun
, buf
, 16, &(chip
->status_len
));
454 if (retval
!= STATUS_SUCCESS
)
457 usb_stor_dbg(us
, "chip->status_len = %d\n", chip
->status_len
);
459 chip
->status
[lun
].vid
= ((u16
) buf
[0] << 8) | buf
[1];
460 chip
->status
[lun
].pid
= ((u16
) buf
[2] << 8) | buf
[3];
461 chip
->status
[lun
].cur_lun
= buf
[4];
462 chip
->status
[lun
].card_type
= buf
[5];
463 chip
->status
[lun
].total_lun
= buf
[6];
464 chip
->status
[lun
].fw_ver
= ((u16
) buf
[7] << 8) | buf
[8];
465 chip
->status
[lun
].phy_exist
= buf
[9];
466 chip
->status
[lun
].multi_flag
= buf
[10];
467 chip
->status
[lun
].multi_card
= buf
[11];
468 chip
->status
[lun
].log_exist
= buf
[12];
469 if (chip
->status_len
== 16) {
470 chip
->status
[lun
].detailed_type
.detailed_type1
= buf
[13];
471 chip
->status
[lun
].function
[0] = buf
[14];
472 chip
->status
[lun
].function
[1] = buf
[15];
478 static int enable_oscillator(struct us_data
*us
)
483 retval
= rts51x_read_mem(us
, 0xFE77, &value
, 1);
488 retval
= rts51x_write_mem(us
, 0xFE77, &value
, 1);
492 retval
= rts51x_read_mem(us
, 0xFE77, &value
, 1);
502 static int __do_config_autodelink(struct us_data
*us
, u8
*data
, u16 len
)
508 usb_stor_dbg(us
, "addr = 0xfe47, len = %d\n", len
);
510 buf
= kmemdup(data
, len
, GFP_NOIO
);
512 return USB_STOR_TRANSPORT_ERROR
;
518 cmnd
[4] = (u8
)(len
>> 8);
521 retval
= rts51x_bulk_transport_special(us
, 0, cmnd
, 12, buf
, len
, DMA_TO_DEVICE
, NULL
);
523 if (retval
!= USB_STOR_TRANSPORT_GOOD
) {
530 static int do_config_autodelink(struct us_data
*us
, int enable
, int force
)
535 retval
= rts51x_read_mem(us
, 0xFE47, &value
, 1);
548 usb_stor_dbg(us
, "set 0xfe47 to 0x%x\n", value
);
550 /* retval = rts51x_write_mem(us, 0xFE47, &value, 1); */
551 retval
= __do_config_autodelink(us
, &value
, 1);
558 static int config_autodelink_after_power_on(struct us_data
*us
)
560 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
564 if (!CHK_AUTO_DELINK(chip
))
567 retval
= rts51x_read_mem(us
, 0xFE47, &value
, 1);
571 if (auto_delink_en
) {
576 if (CHECK_ID(chip
, 0x0138, 0x3882))
581 /* retval = rts51x_write_mem(us, 0xFE47, &value, 1); */
582 retval
= __do_config_autodelink(us
, &value
, 1);
586 retval
= enable_oscillator(us
);
588 (void)do_config_autodelink(us
, 1, 0);
590 /* Autodelink controlled by firmware */
594 if (CHECK_ID(chip
, 0x0138, 0x3882))
597 if (CHECK_ID(chip
, 0x0159, 0x5889) ||
598 CHECK_ID(chip
, 0x0138, 0x3880)) {
603 /* retval = rts51x_write_mem(us, 0xFE47, &value, 1); */
604 retval
= __do_config_autodelink(us
, &value
, 1);
608 if (CHECK_ID(chip
, 0x0159, 0x5888)) {
610 retval
= rts51x_write_mem(us
, 0xFE79, &value
, 1);
615 retval
= rts51x_write_mem(us
, 0x48, &value
, 1);
625 static int config_autodelink_before_power_down(struct us_data
*us
)
627 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
631 if (!CHK_AUTO_DELINK(chip
))
634 if (auto_delink_en
) {
635 retval
= rts51x_read_mem(us
, 0xFE77, &value
, 1);
640 retval
= rts51x_write_mem(us
, 0xFE77, &value
, 1);
644 if (CHECK_ID(chip
, 0x0159, 0x5888)) {
646 retval
= rts51x_write_mem(us
, 0x48, &value
, 1);
651 retval
= rts51x_read_mem(us
, 0xFE47, &value
, 1);
656 if (CHECK_ID(chip
, 0x0138, 0x3882))
658 retval
= rts51x_write_mem(us
, 0xFE77, &value
, 1);
662 if (CHECK_ID(chip
, 0x0159, 0x5889) ||
663 CHECK_ID(chip
, 0x0138, 0x3880) ||
664 CHECK_ID(chip
, 0x0138, 0x3882)) {
665 retval
= rts51x_read_mem(us
, 0xFE47, &value
, 1);
669 if (CHECK_ID(chip
, 0x0159, 0x5889) ||
670 CHECK_ID(chip
, 0x0138, 0x3880)) {
675 if (CHECK_ID(chip
, 0x0138, 0x3882))
678 /* retval = rts51x_write_mem(us, 0xFE47, &value, 1); */
679 retval
= __do_config_autodelink(us
, &value
, 1);
684 if (CHECK_ID(chip
, 0x0159, 0x5888)) {
686 retval
= rts51x_write_mem(us
, 0x48, &value
, 1);
695 static void fw5895_init(struct us_data
*us
)
697 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
701 if ((PRODUCT_ID(chip
) != 0x0158) || (FW_VERSION(chip
) != 0x5895)) {
702 usb_stor_dbg(us
, "Not the specified device, return immediately!\n");
704 retval
= rts51x_read_mem(us
, 0xFD6F, &val
, 1);
705 if (retval
== STATUS_SUCCESS
&& (val
& 0x1F) == 0) {
707 retval
= rts51x_write_mem(us
, 0xFD70, &val
, 1);
708 if (retval
!= STATUS_SUCCESS
)
709 usb_stor_dbg(us
, "Write memory fail\n");
711 usb_stor_dbg(us
, "Read memory fail, OR (val & 0x1F) != 0\n");
717 #ifdef CONFIG_REALTEK_AUTOPM
718 static void fw5895_set_mmc_wp(struct us_data
*us
)
720 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
724 if ((PRODUCT_ID(chip
) != 0x0158) || (FW_VERSION(chip
) != 0x5895)) {
725 usb_stor_dbg(us
, "Not the specified device, return immediately!\n");
727 retval
= rts51x_read_mem(us
, 0xFD6F, buf
, 1);
728 if (retval
== STATUS_SUCCESS
&& (buf
[0] & 0x24) == 0x24) {
729 /* SD Exist and SD WP */
730 retval
= rts51x_read_mem(us
, 0xD04E, buf
, 1);
731 if (retval
== STATUS_SUCCESS
) {
733 retval
= rts51x_write_mem(us
, 0xFD70, buf
, 1);
734 if (retval
!= STATUS_SUCCESS
)
735 usb_stor_dbg(us
, "Write memory fail\n");
737 usb_stor_dbg(us
, "Read memory fail\n");
740 usb_stor_dbg(us
, "Read memory fail, OR (buf[0]&0x24)!=0x24\n");
745 static void rts51x_modi_suspend_timer(struct rts51x_chip
*chip
)
747 struct us_data
*us
= chip
->us
;
749 usb_stor_dbg(us
, "state:%d\n", rts51x_get_stat(chip
));
751 chip
->timer_expires
= jiffies
+ msecs_to_jiffies(1000*ss_delay
);
752 mod_timer(&chip
->rts51x_suspend_timer
, chip
->timer_expires
);
755 static void rts51x_suspend_timer_fn(struct timer_list
*t
)
757 struct rts51x_chip
*chip
= from_timer(chip
, t
, rts51x_suspend_timer
);
758 struct us_data
*us
= chip
->us
;
760 switch (rts51x_get_stat(chip
)) {
761 case RTS51X_STAT_INIT
:
762 case RTS51X_STAT_RUN
:
763 rts51x_modi_suspend_timer(chip
);
765 case RTS51X_STAT_IDLE
:
767 usb_stor_dbg(us
, "RTS51X_STAT_SS, power.usage:%d\n",
768 atomic_read(&us
->pusb_intf
->dev
.power
.usage_count
));
770 if (atomic_read(&us
->pusb_intf
->dev
.power
.usage_count
) > 0) {
771 usb_stor_dbg(us
, "Ready to enter SS state\n");
772 rts51x_set_stat(chip
, RTS51X_STAT_SS
);
773 /* ignore mass storage interface's children */
774 pm_suspend_ignore_children(&us
->pusb_intf
->dev
, true);
775 usb_autopm_put_interface_async(us
->pusb_intf
);
776 usb_stor_dbg(us
, "RTS51X_STAT_SS 01, power.usage:%d\n",
777 atomic_read(&us
->pusb_intf
->dev
.power
.usage_count
));
781 usb_stor_dbg(us
, "Unknown state !!!\n");
786 static inline int working_scsi(struct scsi_cmnd
*srb
)
788 if ((srb
->cmnd
[0] == TEST_UNIT_READY
) ||
789 (srb
->cmnd
[0] == ALLOW_MEDIUM_REMOVAL
)) {
796 static void rts51x_invoke_transport(struct scsi_cmnd
*srb
, struct us_data
*us
)
798 struct rts51x_chip
*chip
= (struct rts51x_chip
*)(us
->extra
);
799 static int card_first_show
= 1;
800 static u8 media_not_present
[] = { 0x70, 0, 0x02, 0, 0, 0, 0,
801 10, 0, 0, 0, 0, 0x3A, 0, 0, 0, 0, 0
803 static u8 invalid_cmd_field
[] = { 0x70, 0, 0x05, 0, 0, 0, 0,
804 10, 0, 0, 0, 0, 0x24, 0, 0, 0, 0, 0
808 if (working_scsi(srb
)) {
809 usb_stor_dbg(us
, "working scsi, power.usage:%d\n",
810 atomic_read(&us
->pusb_intf
->dev
.power
.usage_count
));
812 if (atomic_read(&us
->pusb_intf
->dev
.power
.usage_count
) <= 0) {
813 ret
= usb_autopm_get_interface(us
->pusb_intf
);
814 usb_stor_dbg(us
, "working scsi, ret=%d\n", ret
);
816 if (rts51x_get_stat(chip
) != RTS51X_STAT_RUN
)
817 rts51x_set_stat(chip
, RTS51X_STAT_RUN
);
818 chip
->proto_handler_backup(srb
, us
);
820 if (rts51x_get_stat(chip
) == RTS51X_STAT_SS
) {
821 usb_stor_dbg(us
, "NOT working scsi\n");
822 if ((srb
->cmnd
[0] == TEST_UNIT_READY
) &&
823 (chip
->pwr_state
== US_SUSPEND
)) {
824 if (TST_LUN_READY(chip
, srb
->device
->lun
)) {
825 srb
->result
= SAM_STAT_GOOD
;
827 srb
->result
= SAM_STAT_CHECK_CONDITION
;
828 memcpy(srb
->sense_buffer
,
832 usb_stor_dbg(us
, "TEST_UNIT_READY\n");
835 if (srb
->cmnd
[0] == ALLOW_MEDIUM_REMOVAL
) {
836 int prevent
= srb
->cmnd
[4] & 0x1;
838 srb
->result
= SAM_STAT_CHECK_CONDITION
;
839 memcpy(srb
->sense_buffer
,
843 srb
->result
= SAM_STAT_GOOD
;
845 usb_stor_dbg(us
, "ALLOW_MEDIUM_REMOVAL\n");
849 usb_stor_dbg(us
, "NOT working scsi, not SS\n");
850 chip
->proto_handler_backup(srb
, us
);
851 /* Check whether card is plugged in */
852 if (srb
->cmnd
[0] == TEST_UNIT_READY
) {
853 if (srb
->result
== SAM_STAT_GOOD
) {
854 SET_LUN_READY(chip
, srb
->device
->lun
);
855 if (card_first_show
) {
857 fw5895_set_mmc_wp(us
);
860 CLR_LUN_READY(chip
, srb
->device
->lun
);
864 if (rts51x_get_stat(chip
) != RTS51X_STAT_IDLE
)
865 rts51x_set_stat(chip
, RTS51X_STAT_IDLE
);
869 usb_stor_dbg(us
, "state:%d\n", rts51x_get_stat(chip
));
870 if (rts51x_get_stat(chip
) == RTS51X_STAT_RUN
)
871 rts51x_modi_suspend_timer(chip
);
874 static int realtek_cr_autosuspend_setup(struct us_data
*us
)
876 struct rts51x_chip
*chip
;
877 struct rts51x_status
*status
= NULL
;
881 chip
= (struct rts51x_chip
*)us
->extra
;
882 chip
->support_auto_delink
= 0;
883 chip
->pwr_state
= US_RESUME
;
885 rts51x_set_stat(chip
, RTS51X_STAT_INIT
);
887 retval
= rts51x_read_status(us
, 0, buf
, 16, &(chip
->status_len
));
888 if (retval
!= STATUS_SUCCESS
) {
889 usb_stor_dbg(us
, "Read status fail\n");
892 status
= chip
->status
;
893 status
->vid
= ((u16
) buf
[0] << 8) | buf
[1];
894 status
->pid
= ((u16
) buf
[2] << 8) | buf
[3];
895 status
->cur_lun
= buf
[4];
896 status
->card_type
= buf
[5];
897 status
->total_lun
= buf
[6];
898 status
->fw_ver
= ((u16
) buf
[7] << 8) | buf
[8];
899 status
->phy_exist
= buf
[9];
900 status
->multi_flag
= buf
[10];
901 status
->multi_card
= buf
[11];
902 status
->log_exist
= buf
[12];
903 if (chip
->status_len
== 16) {
904 status
->detailed_type
.detailed_type1
= buf
[13];
905 status
->function
[0] = buf
[14];
906 status
->function
[1] = buf
[15];
909 /* back up the proto_handler in us->extra */
910 chip
= (struct rts51x_chip
*)(us
->extra
);
911 chip
->proto_handler_backup
= us
->proto_handler
;
912 /* Set the autosuspend_delay to 0 */
913 pm_runtime_set_autosuspend_delay(&us
->pusb_dev
->dev
, 0);
914 /* override us->proto_handler setted in get_protocol() */
915 us
->proto_handler
= rts51x_invoke_transport
;
917 chip
->timer_expires
= 0;
918 timer_setup(&chip
->rts51x_suspend_timer
, rts51x_suspend_timer_fn
, 0);
921 /* enable autosuspend function of the usb device */
922 usb_enable_autosuspend(us
->pusb_dev
);
928 static void realtek_cr_destructor(void *extra
)
930 struct rts51x_chip
*chip
= extra
;
935 #ifdef CONFIG_REALTEK_AUTOPM
937 del_timer(&chip
->rts51x_suspend_timer
);
938 chip
->timer_expires
= 0;
945 static int realtek_cr_suspend(struct usb_interface
*iface
, pm_message_t message
)
947 struct us_data
*us
= usb_get_intfdata(iface
);
949 /* wait until no command is running */
950 mutex_lock(&us
->dev_mutex
);
952 config_autodelink_before_power_down(us
);
954 mutex_unlock(&us
->dev_mutex
);
959 static int realtek_cr_resume(struct usb_interface
*iface
)
961 struct us_data
*us
= usb_get_intfdata(iface
);
964 config_autodelink_after_power_on(us
);
969 #define realtek_cr_suspend NULL
970 #define realtek_cr_resume NULL
973 static int init_realtek_cr(struct us_data
*us
)
975 struct rts51x_chip
*chip
;
978 chip
= kzalloc(sizeof(struct rts51x_chip
), GFP_KERNEL
);
983 us
->extra_destructor
= realtek_cr_destructor
;
984 us
->max_lun
= chip
->max_lun
= rts51x_get_max_lun(us
);
987 usb_stor_dbg(us
, "chip->max_lun = %d\n", chip
->max_lun
);
989 size
= (chip
->max_lun
+ 1) * sizeof(struct rts51x_status
);
990 chip
->status
= kzalloc(size
, GFP_KERNEL
);
994 for (i
= 0; i
<= (int)(chip
->max_lun
); i
++) {
995 retval
= rts51x_check_status(us
, (u8
) i
);
1000 if (CHECK_PID(chip
, 0x0138) || CHECK_PID(chip
, 0x0158) ||
1001 CHECK_PID(chip
, 0x0159)) {
1002 if (CHECK_FW_VER(chip
, 0x5888) || CHECK_FW_VER(chip
, 0x5889) ||
1003 CHECK_FW_VER(chip
, 0x5901))
1004 SET_AUTO_DELINK(chip
);
1005 if (STATUS_LEN(chip
) == 16) {
1006 if (SUPPORT_AUTO_DELINK(chip
))
1007 SET_AUTO_DELINK(chip
);
1010 #ifdef CONFIG_REALTEK_AUTOPM
1012 realtek_cr_autosuspend_setup(us
);
1015 usb_stor_dbg(us
, "chip->flag = 0x%x\n", chip
->flag
);
1017 (void)config_autodelink_after_power_on(us
);
1023 kfree(chip
->status
);
1031 static struct scsi_host_template realtek_cr_host_template
;
1033 static int realtek_cr_probe(struct usb_interface
*intf
,
1034 const struct usb_device_id
*id
)
1039 dev_dbg(&intf
->dev
, "Probe Realtek Card Reader!\n");
1041 result
= usb_stor_probe1(&us
, intf
, id
,
1042 (id
- realtek_cr_ids
) +
1043 realtek_cr_unusual_dev_list
,
1044 &realtek_cr_host_template
);
1048 result
= usb_stor_probe2(us
);
1053 static struct usb_driver realtek_cr_driver
= {
1055 .probe
= realtek_cr_probe
,
1056 .disconnect
= usb_stor_disconnect
,
1057 /* .suspend = usb_stor_suspend, */
1058 /* .resume = usb_stor_resume, */
1059 .reset_resume
= usb_stor_reset_resume
,
1060 .suspend
= realtek_cr_suspend
,
1061 .resume
= realtek_cr_resume
,
1062 .pre_reset
= usb_stor_pre_reset
,
1063 .post_reset
= usb_stor_post_reset
,
1064 .id_table
= realtek_cr_ids
,
1066 .supports_autosuspend
= 1,
1070 module_usb_stor_driver(realtek_cr_driver
, realtek_cr_host_template
, DRV_NAME
);