mfd: rtsx: Fix checkpatch warning
[linux-2.6-block.git] / drivers / mfd / rtsx_pcr.c
CommitLineData
ada8a8a1
WW
1/* Driver for Realtek PCI-Express card reader
2 *
3 * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
4 *
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
8 * later version.
9 *
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.
14 *
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/>.
17 *
18 * Author:
19 * Wei WANG <wei_wang@realsil.com.cn>
20 * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
21 */
22
23#include <linux/pci.h>
24#include <linux/module.h>
aec17ea1 25#include <linux/slab.h>
ada8a8a1
WW
26#include <linux/dma-mapping.h>
27#include <linux/highmem.h>
28#include <linux/interrupt.h>
29#include <linux/delay.h>
30#include <linux/idr.h>
31#include <linux/platform_device.h>
32#include <linux/mfd/core.h>
33#include <linux/mfd/rtsx_pci.h>
34#include <asm/unaligned.h>
35
36#include "rtsx_pcr.h"
37
38static bool msi_en = true;
39module_param(msi_en, bool, S_IRUGO | S_IWUSR);
40MODULE_PARM_DESC(msi_en, "Enable MSI");
41
42static DEFINE_IDR(rtsx_pci_idr);
43static DEFINE_SPINLOCK(rtsx_pci_lock);
44
45static struct mfd_cell rtsx_pcr_cells[] = {
46 [RTSX_SD_CARD] = {
47 .name = DRV_NAME_RTSX_PCI_SDMMC,
48 },
49 [RTSX_MS_CARD] = {
50 .name = DRV_NAME_RTSX_PCI_MS,
51 },
52};
53
54static DEFINE_PCI_DEVICE_TABLE(rtsx_pci_ids) = {
55 { PCI_DEVICE(0x10EC, 0x5209), PCI_CLASS_OTHERS << 16, 0xFF0000 },
56 { PCI_DEVICE(0x10EC, 0x5229), PCI_CLASS_OTHERS << 16, 0xFF0000 },
57 { PCI_DEVICE(0x10EC, 0x5289), PCI_CLASS_OTHERS << 16, 0xFF0000 },
58 { 0, }
59};
60
61MODULE_DEVICE_TABLE(pci, rtsx_pci_ids);
62
63void rtsx_pci_start_run(struct rtsx_pcr *pcr)
64{
65 /* If pci device removed, don't queue idle work any more */
66 if (pcr->remove_pci)
67 return;
68
69 if (pcr->state != PDEV_STAT_RUN) {
70 pcr->state = PDEV_STAT_RUN;
71 if (pcr->ops->enable_auto_blink)
72 pcr->ops->enable_auto_blink(pcr);
73 }
74
75 mod_delayed_work(system_wq, &pcr->idle_work, msecs_to_jiffies(200));
76}
77EXPORT_SYMBOL_GPL(rtsx_pci_start_run);
78
79int rtsx_pci_write_register(struct rtsx_pcr *pcr, u16 addr, u8 mask, u8 data)
80{
81 int i;
82 u32 val = HAIMR_WRITE_START;
83
84 val |= (u32)(addr & 0x3FFF) << 16;
85 val |= (u32)mask << 8;
86 val |= (u32)data;
87
88 rtsx_pci_writel(pcr, RTSX_HAIMR, val);
89
90 for (i = 0; i < MAX_RW_REG_CNT; i++) {
91 val = rtsx_pci_readl(pcr, RTSX_HAIMR);
92 if ((val & HAIMR_TRANS_END) == 0) {
93 if (data != (u8)val)
94 return -EIO;
95 return 0;
96 }
97 }
98
99 return -ETIMEDOUT;
100}
101EXPORT_SYMBOL_GPL(rtsx_pci_write_register);
102
103int rtsx_pci_read_register(struct rtsx_pcr *pcr, u16 addr, u8 *data)
104{
105 u32 val = HAIMR_READ_START;
106 int i;
107
108 val |= (u32)(addr & 0x3FFF) << 16;
109 rtsx_pci_writel(pcr, RTSX_HAIMR, val);
110
111 for (i = 0; i < MAX_RW_REG_CNT; i++) {
112 val = rtsx_pci_readl(pcr, RTSX_HAIMR);
113 if ((val & HAIMR_TRANS_END) == 0)
114 break;
115 }
116
117 if (i >= MAX_RW_REG_CNT)
118 return -ETIMEDOUT;
119
120 if (data)
121 *data = (u8)(val & 0xFF);
122
123 return 0;
124}
125EXPORT_SYMBOL_GPL(rtsx_pci_read_register);
126
127int rtsx_pci_write_phy_register(struct rtsx_pcr *pcr, u8 addr, u16 val)
128{
129 int err, i, finished = 0;
130 u8 tmp;
131
132 rtsx_pci_init_cmd(pcr);
133
134 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYDATA0, 0xFF, (u8)val);
135 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYDATA1, 0xFF, (u8)(val >> 8));
136 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYADDR, 0xFF, addr);
137 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYRWCTL, 0xFF, 0x81);
138
139 err = rtsx_pci_send_cmd(pcr, 100);
140 if (err < 0)
141 return err;
142
143 for (i = 0; i < 100000; i++) {
144 err = rtsx_pci_read_register(pcr, PHYRWCTL, &tmp);
145 if (err < 0)
146 return err;
147
148 if (!(tmp & 0x80)) {
149 finished = 1;
150 break;
151 }
152 }
153
154 if (!finished)
155 return -ETIMEDOUT;
156
157 return 0;
158}
159EXPORT_SYMBOL_GPL(rtsx_pci_write_phy_register);
160
161int rtsx_pci_read_phy_register(struct rtsx_pcr *pcr, u8 addr, u16 *val)
162{
163 int err, i, finished = 0;
164 u16 data;
165 u8 *ptr, tmp;
166
167 rtsx_pci_init_cmd(pcr);
168
169 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYADDR, 0xFF, addr);
170 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PHYRWCTL, 0xFF, 0x80);
171
172 err = rtsx_pci_send_cmd(pcr, 100);
173 if (err < 0)
174 return err;
175
176 for (i = 0; i < 100000; i++) {
177 err = rtsx_pci_read_register(pcr, PHYRWCTL, &tmp);
178 if (err < 0)
179 return err;
180
181 if (!(tmp & 0x80)) {
182 finished = 1;
183 break;
184 }
185 }
186
187 if (!finished)
188 return -ETIMEDOUT;
189
190 rtsx_pci_init_cmd(pcr);
191
192 rtsx_pci_add_cmd(pcr, READ_REG_CMD, PHYDATA0, 0, 0);
193 rtsx_pci_add_cmd(pcr, READ_REG_CMD, PHYDATA1, 0, 0);
194
195 err = rtsx_pci_send_cmd(pcr, 100);
196 if (err < 0)
197 return err;
198
199 ptr = rtsx_pci_get_cmd_data(pcr);
200 data = ((u16)ptr[1] << 8) | ptr[0];
201
202 if (val)
203 *val = data;
204
205 return 0;
206}
207EXPORT_SYMBOL_GPL(rtsx_pci_read_phy_register);
208
209void rtsx_pci_stop_cmd(struct rtsx_pcr *pcr)
210{
211 rtsx_pci_writel(pcr, RTSX_HCBCTLR, STOP_CMD);
212 rtsx_pci_writel(pcr, RTSX_HDBCTLR, STOP_DMA);
213
214 rtsx_pci_write_register(pcr, DMACTL, 0x80, 0x80);
215 rtsx_pci_write_register(pcr, RBCTL, 0x80, 0x80);
216}
217EXPORT_SYMBOL_GPL(rtsx_pci_stop_cmd);
218
219void rtsx_pci_add_cmd(struct rtsx_pcr *pcr,
220 u8 cmd_type, u16 reg_addr, u8 mask, u8 data)
221{
222 unsigned long flags;
223 u32 val = 0;
224 u32 *ptr = (u32 *)(pcr->host_cmds_ptr);
225
226 val |= (u32)(cmd_type & 0x03) << 30;
227 val |= (u32)(reg_addr & 0x3FFF) << 16;
228 val |= (u32)mask << 8;
229 val |= (u32)data;
230
231 spin_lock_irqsave(&pcr->lock, flags);
232 ptr += pcr->ci;
233 if (pcr->ci < (HOST_CMDS_BUF_LEN / 4)) {
234 put_unaligned_le32(val, ptr);
235 ptr++;
236 pcr->ci++;
237 }
238 spin_unlock_irqrestore(&pcr->lock, flags);
239}
240EXPORT_SYMBOL_GPL(rtsx_pci_add_cmd);
241
242void rtsx_pci_send_cmd_no_wait(struct rtsx_pcr *pcr)
243{
244 u32 val = 1 << 31;
245
246 rtsx_pci_writel(pcr, RTSX_HCBAR, pcr->host_cmds_addr);
247
248 val |= (u32)(pcr->ci * 4) & 0x00FFFFFF;
249 /* Hardware Auto Response */
250 val |= 0x40000000;
251 rtsx_pci_writel(pcr, RTSX_HCBCTLR, val);
252}
253EXPORT_SYMBOL_GPL(rtsx_pci_send_cmd_no_wait);
254
255int rtsx_pci_send_cmd(struct rtsx_pcr *pcr, int timeout)
256{
257 struct completion trans_done;
258 u32 val = 1 << 31;
259 long timeleft;
260 unsigned long flags;
261 int err = 0;
262
263 spin_lock_irqsave(&pcr->lock, flags);
264
265 /* set up data structures for the wakeup system */
266 pcr->done = &trans_done;
267 pcr->trans_result = TRANS_NOT_READY;
268 init_completion(&trans_done);
269
270 rtsx_pci_writel(pcr, RTSX_HCBAR, pcr->host_cmds_addr);
271
272 val |= (u32)(pcr->ci * 4) & 0x00FFFFFF;
273 /* Hardware Auto Response */
274 val |= 0x40000000;
275 rtsx_pci_writel(pcr, RTSX_HCBCTLR, val);
276
277 spin_unlock_irqrestore(&pcr->lock, flags);
278
279 /* Wait for TRANS_OK_INT */
280 timeleft = wait_for_completion_interruptible_timeout(
281 &trans_done, msecs_to_jiffies(timeout));
282 if (timeleft <= 0) {
283 dev_dbg(&(pcr->pci->dev), "Timeout (%s %d)\n",
284 __func__, __LINE__);
285 err = -ETIMEDOUT;
286 goto finish_send_cmd;
287 }
288
289 spin_lock_irqsave(&pcr->lock, flags);
290 if (pcr->trans_result == TRANS_RESULT_FAIL)
291 err = -EINVAL;
292 else if (pcr->trans_result == TRANS_RESULT_OK)
293 err = 0;
294 else if (pcr->trans_result == TRANS_NO_DEVICE)
295 err = -ENODEV;
296 spin_unlock_irqrestore(&pcr->lock, flags);
297
298finish_send_cmd:
299 spin_lock_irqsave(&pcr->lock, flags);
300 pcr->done = NULL;
301 spin_unlock_irqrestore(&pcr->lock, flags);
302
303 if ((err < 0) && (err != -ENODEV))
304 rtsx_pci_stop_cmd(pcr);
305
306 if (pcr->finish_me)
307 complete(pcr->finish_me);
308
309 return err;
310}
311EXPORT_SYMBOL_GPL(rtsx_pci_send_cmd);
312
313static void rtsx_pci_add_sg_tbl(struct rtsx_pcr *pcr,
314 dma_addr_t addr, unsigned int len, int end)
315{
316 u64 *ptr = (u64 *)(pcr->host_sg_tbl_ptr) + pcr->sgi;
317 u64 val;
318 u8 option = SG_VALID | SG_TRANS_DATA;
319
320 dev_dbg(&(pcr->pci->dev), "DMA addr: 0x%x, Len: 0x%x\n",
321 (unsigned int)addr, len);
322
323 if (end)
324 option |= SG_END;
325 val = ((u64)addr << 32) | ((u64)len << 12) | option;
326
327 put_unaligned_le64(val, ptr);
ada8a8a1
WW
328 pcr->sgi++;
329}
330
331int rtsx_pci_transfer_data(struct rtsx_pcr *pcr, struct scatterlist *sglist,
332 int num_sg, bool read, int timeout)
333{
334 struct completion trans_done;
335 u8 dir;
336 int err = 0, i, count;
337 long timeleft;
338 unsigned long flags;
339 struct scatterlist *sg;
340 enum dma_data_direction dma_dir;
341 u32 val;
342 dma_addr_t addr;
343 unsigned int len;
344
345 dev_dbg(&(pcr->pci->dev), "--> %s: num_sg = %d\n", __func__, num_sg);
346
347 /* don't transfer data during abort processing */
348 if (pcr->remove_pci)
349 return -EINVAL;
350
351 if ((sglist == NULL) || (num_sg <= 0))
352 return -EINVAL;
353
354 if (read) {
355 dir = DEVICE_TO_HOST;
356 dma_dir = DMA_FROM_DEVICE;
357 } else {
358 dir = HOST_TO_DEVICE;
359 dma_dir = DMA_TO_DEVICE;
360 }
361
362 count = dma_map_sg(&(pcr->pci->dev), sglist, num_sg, dma_dir);
363 if (count < 1) {
364 dev_err(&(pcr->pci->dev), "scatterlist map failed\n");
365 return -EINVAL;
366 }
367 dev_dbg(&(pcr->pci->dev), "DMA mapping count: %d\n", count);
368
369 val = ((u32)(dir & 0x01) << 29) | TRIG_DMA | ADMA_MODE;
370 pcr->sgi = 0;
371 for_each_sg(sglist, sg, count, i) {
372 addr = sg_dma_address(sg);
373 len = sg_dma_len(sg);
374 rtsx_pci_add_sg_tbl(pcr, addr, len, i == count - 1);
375 }
376
377 spin_lock_irqsave(&pcr->lock, flags);
378
379 pcr->done = &trans_done;
380 pcr->trans_result = TRANS_NOT_READY;
381 init_completion(&trans_done);
382 rtsx_pci_writel(pcr, RTSX_HDBAR, pcr->host_sg_tbl_addr);
383 rtsx_pci_writel(pcr, RTSX_HDBCTLR, val);
384
385 spin_unlock_irqrestore(&pcr->lock, flags);
386
387 timeleft = wait_for_completion_interruptible_timeout(
388 &trans_done, msecs_to_jiffies(timeout));
389 if (timeleft <= 0) {
390 dev_dbg(&(pcr->pci->dev), "Timeout (%s %d)\n",
391 __func__, __LINE__);
392 err = -ETIMEDOUT;
393 goto out;
394 }
395
396 spin_lock_irqsave(&pcr->lock, flags);
397
398 if (pcr->trans_result == TRANS_RESULT_FAIL)
399 err = -EINVAL;
400 else if (pcr->trans_result == TRANS_NO_DEVICE)
401 err = -ENODEV;
402
403 spin_unlock_irqrestore(&pcr->lock, flags);
404
405out:
406 spin_lock_irqsave(&pcr->lock, flags);
407 pcr->done = NULL;
408 spin_unlock_irqrestore(&pcr->lock, flags);
409
410 dma_unmap_sg(&(pcr->pci->dev), sglist, num_sg, dma_dir);
411
412 if ((err < 0) && (err != -ENODEV))
413 rtsx_pci_stop_cmd(pcr);
414
415 if (pcr->finish_me)
416 complete(pcr->finish_me);
417
418 return err;
419}
420EXPORT_SYMBOL_GPL(rtsx_pci_transfer_data);
421
422int rtsx_pci_read_ppbuf(struct rtsx_pcr *pcr, u8 *buf, int buf_len)
423{
424 int err;
425 int i, j;
426 u16 reg;
427 u8 *ptr;
428
429 if (buf_len > 512)
430 buf_len = 512;
431
432 ptr = buf;
433 reg = PPBUF_BASE2;
434 for (i = 0; i < buf_len / 256; i++) {
435 rtsx_pci_init_cmd(pcr);
436
437 for (j = 0; j < 256; j++)
438 rtsx_pci_add_cmd(pcr, READ_REG_CMD, reg++, 0, 0);
439
440 err = rtsx_pci_send_cmd(pcr, 250);
441 if (err < 0)
442 return err;
443
444 memcpy(ptr, rtsx_pci_get_cmd_data(pcr), 256);
445 ptr += 256;
446 }
447
448 if (buf_len % 256) {
449 rtsx_pci_init_cmd(pcr);
450
451 for (j = 0; j < buf_len % 256; j++)
452 rtsx_pci_add_cmd(pcr, READ_REG_CMD, reg++, 0, 0);
453
454 err = rtsx_pci_send_cmd(pcr, 250);
455 if (err < 0)
456 return err;
457 }
458
459 memcpy(ptr, rtsx_pci_get_cmd_data(pcr), buf_len % 256);
460
461 return 0;
462}
463EXPORT_SYMBOL_GPL(rtsx_pci_read_ppbuf);
464
465int rtsx_pci_write_ppbuf(struct rtsx_pcr *pcr, u8 *buf, int buf_len)
466{
467 int err;
468 int i, j;
469 u16 reg;
470 u8 *ptr;
471
472 if (buf_len > 512)
473 buf_len = 512;
474
475 ptr = buf;
476 reg = PPBUF_BASE2;
477 for (i = 0; i < buf_len / 256; i++) {
478 rtsx_pci_init_cmd(pcr);
479
480 for (j = 0; j < 256; j++) {
481 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD,
482 reg++, 0xFF, *ptr);
483 ptr++;
484 }
485
486 err = rtsx_pci_send_cmd(pcr, 250);
487 if (err < 0)
488 return err;
489 }
490
491 if (buf_len % 256) {
492 rtsx_pci_init_cmd(pcr);
493
494 for (j = 0; j < buf_len % 256; j++) {
495 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD,
496 reg++, 0xFF, *ptr);
497 ptr++;
498 }
499
500 err = rtsx_pci_send_cmd(pcr, 250);
501 if (err < 0)
502 return err;
503 }
504
505 return 0;
506}
507EXPORT_SYMBOL_GPL(rtsx_pci_write_ppbuf);
508
509static int rtsx_pci_set_pull_ctl(struct rtsx_pcr *pcr, const u32 *tbl)
510{
511 int err;
512
513 rtsx_pci_init_cmd(pcr);
514
515 while (*tbl & 0xFFFF0000) {
516 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD,
517 (u16)(*tbl >> 16), 0xFF, (u8)(*tbl));
518 tbl++;
519 }
520
521 err = rtsx_pci_send_cmd(pcr, 100);
522 if (err < 0)
523 return err;
524
525 return 0;
526}
527
528int rtsx_pci_card_pull_ctl_enable(struct rtsx_pcr *pcr, int card)
529{
530 const u32 *tbl;
531
532 if (card == RTSX_SD_CARD)
533 tbl = pcr->sd_pull_ctl_enable_tbl;
534 else if (card == RTSX_MS_CARD)
535 tbl = pcr->ms_pull_ctl_enable_tbl;
536 else
537 return -EINVAL;
538
539 return rtsx_pci_set_pull_ctl(pcr, tbl);
540}
541EXPORT_SYMBOL_GPL(rtsx_pci_card_pull_ctl_enable);
542
543int rtsx_pci_card_pull_ctl_disable(struct rtsx_pcr *pcr, int card)
544{
545 const u32 *tbl;
546
547 if (card == RTSX_SD_CARD)
548 tbl = pcr->sd_pull_ctl_disable_tbl;
549 else if (card == RTSX_MS_CARD)
550 tbl = pcr->ms_pull_ctl_disable_tbl;
551 else
552 return -EINVAL;
553
554
555 return rtsx_pci_set_pull_ctl(pcr, tbl);
556}
557EXPORT_SYMBOL_GPL(rtsx_pci_card_pull_ctl_disable);
558
559static void rtsx_pci_enable_bus_int(struct rtsx_pcr *pcr)
560{
561 pcr->bier = TRANS_OK_INT_EN | TRANS_FAIL_INT_EN | SD_INT_EN;
562
563 if (pcr->num_slots > 1)
564 pcr->bier |= MS_INT_EN;
565
566 /* Enable Bus Interrupt */
567 rtsx_pci_writel(pcr, RTSX_BIER, pcr->bier);
568
569 dev_dbg(&(pcr->pci->dev), "RTSX_BIER: 0x%08x\n", pcr->bier);
570}
571
572static inline u8 double_ssc_depth(u8 depth)
573{
574 return ((depth > 1) ? (depth - 1) : depth);
575}
576
577static u8 revise_ssc_depth(u8 ssc_depth, u8 div)
578{
579 if (div > CLK_DIV_1) {
580 if (ssc_depth > (div - 1))
581 ssc_depth -= (div - 1);
582 else
583 ssc_depth = SSC_DEPTH_4M;
584 }
585
586 return ssc_depth;
587}
588
589int rtsx_pci_switch_clock(struct rtsx_pcr *pcr, unsigned int card_clock,
590 u8 ssc_depth, bool initial_mode, bool double_clk, bool vpclk)
591{
592 int err, clk;
678cacdf 593 u8 n, min_n, max_n, clk_divider;
ada8a8a1
WW
594 u8 mcu_cnt, div, max_div;
595 u8 depth[] = {
596 [RTSX_SSC_DEPTH_4M] = SSC_DEPTH_4M,
597 [RTSX_SSC_DEPTH_2M] = SSC_DEPTH_2M,
598 [RTSX_SSC_DEPTH_1M] = SSC_DEPTH_1M,
599 [RTSX_SSC_DEPTH_500K] = SSC_DEPTH_500K,
600 [RTSX_SSC_DEPTH_250K] = SSC_DEPTH_250K,
601 };
602
603 if (initial_mode) {
604 /* We use 250k(around) here, in initial stage */
605 clk_divider = SD_CLK_DIVIDE_128;
606 card_clock = 30000000;
607 } else {
608 clk_divider = SD_CLK_DIVIDE_0;
609 }
610 err = rtsx_pci_write_register(pcr, SD_CFG1,
611 SD_CLK_DIVIDE_MASK, clk_divider);
612 if (err < 0)
613 return err;
614
615 card_clock /= 1000000;
616 dev_dbg(&(pcr->pci->dev), "Switch card clock to %dMHz\n", card_clock);
617
678cacdf
WW
618 min_n = 80;
619 max_n = 208;
ada8a8a1
WW
620 max_div = CLK_DIV_8;
621
622 clk = card_clock;
623 if (!initial_mode && double_clk)
624 clk = card_clock * 2;
625 dev_dbg(&(pcr->pci->dev),
626 "Internal SSC clock: %dMHz (cur_clock = %d)\n",
627 clk, pcr->cur_clock);
628
629 if (clk == pcr->cur_clock)
630 return 0;
631
ab4e8f8b 632 if (pcr->ops->conv_clk_and_div_n)
678cacdf 633 n = (u8)pcr->ops->conv_clk_and_div_n(clk, CLK_TO_DIV_N);
ab4e8f8b 634 else
678cacdf
WW
635 n = (u8)(clk - 2);
636 if ((clk <= 2) || (n > max_n))
ada8a8a1
WW
637 return -EINVAL;
638
639 mcu_cnt = (u8)(125/clk + 3);
640 if (mcu_cnt > 15)
641 mcu_cnt = 15;
642
678cacdf 643 /* Make sure that the SSC clock div_n is equal or greater than min_n */
ada8a8a1 644 div = CLK_DIV_1;
678cacdf 645 while ((n < min_n) && (div < max_div)) {
ab4e8f8b 646 if (pcr->ops->conv_clk_and_div_n) {
678cacdf 647 int dbl_clk = pcr->ops->conv_clk_and_div_n(n,
ab4e8f8b 648 DIV_N_TO_CLK) * 2;
678cacdf 649 n = (u8)pcr->ops->conv_clk_and_div_n(dbl_clk,
ab4e8f8b
WW
650 CLK_TO_DIV_N);
651 } else {
678cacdf 652 n = (n + 2) * 2 - 2;
ab4e8f8b 653 }
ada8a8a1
WW
654 div++;
655 }
678cacdf 656 dev_dbg(&(pcr->pci->dev), "n = %d, div = %d\n", n, div);
ada8a8a1
WW
657
658 ssc_depth = depth[ssc_depth];
659 if (double_clk)
660 ssc_depth = double_ssc_depth(ssc_depth);
661
662 ssc_depth = revise_ssc_depth(ssc_depth, div);
663 dev_dbg(&(pcr->pci->dev), "ssc_depth = %d\n", ssc_depth);
664
665 rtsx_pci_init_cmd(pcr);
666 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_CTL,
667 CLK_LOW_FREQ, CLK_LOW_FREQ);
668 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_DIV,
669 0xFF, (div << 4) | mcu_cnt);
670 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1, SSC_RSTB, 0);
671 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL2,
672 SSC_DEPTH_MASK, ssc_depth);
678cacdf 673 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_DIV_N_0, 0xFF, n);
ada8a8a1
WW
674 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1, SSC_RSTB, SSC_RSTB);
675 if (vpclk) {
676 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD_VPCLK0_CTL,
677 PHASE_NOT_RESET, 0);
678 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD_VPCLK0_CTL,
679 PHASE_NOT_RESET, PHASE_NOT_RESET);
680 }
681
682 err = rtsx_pci_send_cmd(pcr, 2000);
683 if (err < 0)
684 return err;
685
686 /* Wait SSC clock stable */
687 udelay(10);
688 err = rtsx_pci_write_register(pcr, CLK_CTL, CLK_LOW_FREQ, 0);
689 if (err < 0)
690 return err;
691
692 pcr->cur_clock = clk;
693 return 0;
694}
695EXPORT_SYMBOL_GPL(rtsx_pci_switch_clock);
696
697int rtsx_pci_card_power_on(struct rtsx_pcr *pcr, int card)
698{
699 if (pcr->ops->card_power_on)
700 return pcr->ops->card_power_on(pcr, card);
701
702 return 0;
703}
704EXPORT_SYMBOL_GPL(rtsx_pci_card_power_on);
705
706int rtsx_pci_card_power_off(struct rtsx_pcr *pcr, int card)
707{
708 if (pcr->ops->card_power_off)
709 return pcr->ops->card_power_off(pcr, card);
710
711 return 0;
712}
713EXPORT_SYMBOL_GPL(rtsx_pci_card_power_off);
714
d817ac4e
WW
715int rtsx_pci_switch_output_voltage(struct rtsx_pcr *pcr, u8 voltage)
716{
717 if (pcr->ops->switch_output_voltage)
718 return pcr->ops->switch_output_voltage(pcr, voltage);
719
720 return 0;
721}
722EXPORT_SYMBOL_GPL(rtsx_pci_switch_output_voltage);
723
ada8a8a1
WW
724unsigned int rtsx_pci_card_exist(struct rtsx_pcr *pcr)
725{
726 unsigned int val;
727
728 val = rtsx_pci_readl(pcr, RTSX_BIPR);
729 if (pcr->ops->cd_deglitch)
730 val = pcr->ops->cd_deglitch(pcr);
731
732 return val;
733}
734EXPORT_SYMBOL_GPL(rtsx_pci_card_exist);
735
736void rtsx_pci_complete_unfinished_transfer(struct rtsx_pcr *pcr)
737{
738 struct completion finish;
739
740 pcr->finish_me = &finish;
741 init_completion(&finish);
742
743 if (pcr->done)
744 complete(pcr->done);
745
746 if (!pcr->remove_pci)
747 rtsx_pci_stop_cmd(pcr);
748
749 wait_for_completion_interruptible_timeout(&finish,
750 msecs_to_jiffies(2));
751 pcr->finish_me = NULL;
752}
753EXPORT_SYMBOL_GPL(rtsx_pci_complete_unfinished_transfer);
754
755static void rtsx_pci_card_detect(struct work_struct *work)
756{
757 struct delayed_work *dwork;
758 struct rtsx_pcr *pcr;
759 unsigned long flags;
760 unsigned int card_detect = 0;
761 u32 irq_status;
762
763 dwork = to_delayed_work(work);
764 pcr = container_of(dwork, struct rtsx_pcr, carddet_work);
765
766 dev_dbg(&(pcr->pci->dev), "--> %s\n", __func__);
767
768 spin_lock_irqsave(&pcr->lock, flags);
769
770 irq_status = rtsx_pci_readl(pcr, RTSX_BIPR);
771 dev_dbg(&(pcr->pci->dev), "irq_status: 0x%08x\n", irq_status);
772
773 if (pcr->card_inserted || pcr->card_removed) {
774 dev_dbg(&(pcr->pci->dev),
775 "card_inserted: 0x%x, card_removed: 0x%x\n",
776 pcr->card_inserted, pcr->card_removed);
777
778 if (pcr->ops->cd_deglitch)
779 pcr->card_inserted = pcr->ops->cd_deglitch(pcr);
780
781 card_detect = pcr->card_inserted | pcr->card_removed;
782 pcr->card_inserted = 0;
783 pcr->card_removed = 0;
784 }
785
786 spin_unlock_irqrestore(&pcr->lock, flags);
787
2d1484f5 788 if ((card_detect & SD_EXIST) && pcr->slots[RTSX_SD_CARD].card_event)
ada8a8a1
WW
789 pcr->slots[RTSX_SD_CARD].card_event(
790 pcr->slots[RTSX_SD_CARD].p_dev);
2d1484f5 791 if ((card_detect & MS_EXIST) && pcr->slots[RTSX_MS_CARD].card_event)
ada8a8a1
WW
792 pcr->slots[RTSX_MS_CARD].card_event(
793 pcr->slots[RTSX_MS_CARD].p_dev);
794}
795
796static irqreturn_t rtsx_pci_isr(int irq, void *dev_id)
797{
798 struct rtsx_pcr *pcr = dev_id;
799 u32 int_reg;
800
801 if (!pcr)
802 return IRQ_NONE;
803
804 spin_lock(&pcr->lock);
805
806 int_reg = rtsx_pci_readl(pcr, RTSX_BIPR);
807 /* Clear interrupt flag */
808 rtsx_pci_writel(pcr, RTSX_BIPR, int_reg);
809 if ((int_reg & pcr->bier) == 0) {
810 spin_unlock(&pcr->lock);
811 return IRQ_NONE;
812 }
813 if (int_reg == 0xFFFFFFFF) {
814 spin_unlock(&pcr->lock);
815 return IRQ_HANDLED;
816 }
817
818 int_reg &= (pcr->bier | 0x7FFFFF);
819
820 if (int_reg & SD_INT) {
821 if (int_reg & SD_EXIST) {
822 pcr->card_inserted |= SD_EXIST;
823 } else {
824 pcr->card_removed |= SD_EXIST;
825 pcr->card_inserted &= ~SD_EXIST;
826 }
827 }
828
829 if (int_reg & MS_INT) {
830 if (int_reg & MS_EXIST) {
831 pcr->card_inserted |= MS_EXIST;
832 } else {
833 pcr->card_removed |= MS_EXIST;
834 pcr->card_inserted &= ~MS_EXIST;
835 }
836 }
837
838 if (pcr->card_inserted || pcr->card_removed)
839 schedule_delayed_work(&pcr->carddet_work,
840 msecs_to_jiffies(200));
841
842 if (int_reg & (NEED_COMPLETE_INT | DELINK_INT)) {
843 if (int_reg & (TRANS_FAIL_INT | DELINK_INT)) {
844 pcr->trans_result = TRANS_RESULT_FAIL;
845 if (pcr->done)
846 complete(pcr->done);
847 } else if (int_reg & TRANS_OK_INT) {
848 pcr->trans_result = TRANS_RESULT_OK;
849 if (pcr->done)
850 complete(pcr->done);
851 }
852 }
853
854 spin_unlock(&pcr->lock);
855 return IRQ_HANDLED;
856}
857
858static int rtsx_pci_acquire_irq(struct rtsx_pcr *pcr)
859{
860 dev_info(&(pcr->pci->dev), "%s: pcr->msi_en = %d, pci->irq = %d\n",
861 __func__, pcr->msi_en, pcr->pci->irq);
862
863 if (request_irq(pcr->pci->irq, rtsx_pci_isr,
864 pcr->msi_en ? 0 : IRQF_SHARED,
865 DRV_NAME_RTSX_PCI, pcr)) {
866 dev_err(&(pcr->pci->dev),
867 "rtsx_sdmmc: unable to grab IRQ %d, disabling device\n",
868 pcr->pci->irq);
869 return -1;
870 }
871
872 pcr->irq = pcr->pci->irq;
873 pci_intx(pcr->pci, !pcr->msi_en);
874
875 return 0;
876}
877
878static void rtsx_pci_idle_work(struct work_struct *work)
879{
880 struct delayed_work *dwork = to_delayed_work(work);
881 struct rtsx_pcr *pcr = container_of(dwork, struct rtsx_pcr, idle_work);
882
883 dev_dbg(&(pcr->pci->dev), "--> %s\n", __func__);
884
885 mutex_lock(&pcr->pcr_mutex);
886
887 pcr->state = PDEV_STAT_IDLE;
888
889 if (pcr->ops->disable_auto_blink)
890 pcr->ops->disable_auto_blink(pcr);
891 if (pcr->ops->turn_off_led)
892 pcr->ops->turn_off_led(pcr);
893
894 mutex_unlock(&pcr->pcr_mutex);
895}
896
897static int rtsx_pci_init_hw(struct rtsx_pcr *pcr)
898{
899 int err;
900
901 rtsx_pci_writel(pcr, RTSX_HCBAR, pcr->host_cmds_addr);
902
903 rtsx_pci_enable_bus_int(pcr);
904
905 /* Power on SSC */
906 err = rtsx_pci_write_register(pcr, FPDCTL, SSC_POWER_DOWN, 0);
907 if (err < 0)
908 return err;
909
910 /* Wait SSC power stable */
911 udelay(200);
912
913 if (pcr->ops->optimize_phy) {
914 err = pcr->ops->optimize_phy(pcr);
915 if (err < 0)
916 return err;
917 }
918
919 rtsx_pci_init_cmd(pcr);
920
921 /* Set mcu_cnt to 7 to ensure data can be sampled properly */
922 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_DIV, 0x07, 0x07);
923
924 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, HOST_SLEEP_STATE, 0x03, 0x00);
925 /* Disable card clock */
926 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CARD_CLK_EN, 0x1E, 0);
927 /* Reset ASPM state to default value */
928 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, ASPM_FORCE_CTL, 0x3F, 0);
929 /* Reset delink mode */
930 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CHANGE_LINK_STATE, 0x0A, 0);
931 /* Card driving select */
932 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD30_DRIVE_SEL,
933 0x07, DRIVER_TYPE_D);
934 /* Enable SSC Clock */
935 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1,
936 0xFF, SSC_8X_EN | SSC_SEL_4M);
937 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL2, 0xFF, 0x12);
938 /* Disable cd_pwr_save */
939 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CHANGE_LINK_STATE, 0x16, 0x10);
940 /* Clear Link Ready Interrupt */
941 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, IRQSTAT0,
942 LINK_RDY_INT, LINK_RDY_INT);
943 /* Enlarge the estimation window of PERST# glitch
944 * to reduce the chance of invalid card interrupt
945 */
946 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PERST_GLITCH_WIDTH, 0xFF, 0x80);
947 /* Update RC oscillator to 400k
948 * bit[0] F_HIGH: for RC oscillator, Rst_value is 1'b1
949 * 1: 2M 0: 400k
950 */
951 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, RCCTL, 0x01, 0x00);
952 /* Set interrupt write clear
953 * bit 1: U_elbi_if_rd_clr_en
954 * 1: Enable ELBI interrupt[31:22] & [7:0] flag read clear
955 * 0: ELBI interrupt flag[31:22] & [7:0] only can be write clear
956 */
957 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, NFTS_TX_CTRL, 0x02, 0);
958 /* Force CLKREQ# PIN to drive 0 to request clock */
959 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PETXCFG, 0x08, 0x08);
960
961 err = rtsx_pci_send_cmd(pcr, 100);
962 if (err < 0)
963 return err;
964
965 /* Enable clk_request_n to enable clock power management */
966 rtsx_pci_write_config_byte(pcr, 0x81, 1);
967 /* Enter L1 when host tx idle */
968 rtsx_pci_write_config_byte(pcr, 0x70F, 0x5B);
969
970 if (pcr->ops->extra_init_hw) {
971 err = pcr->ops->extra_init_hw(pcr);
972 if (err < 0)
973 return err;
974 }
975
976 return 0;
977}
978
979static int rtsx_pci_init_chip(struct rtsx_pcr *pcr)
980{
981 int err;
982
983 spin_lock_init(&pcr->lock);
984 mutex_init(&pcr->pcr_mutex);
985
986 switch (PCI_PID(pcr)) {
987 default:
988 case 0x5209:
989 rts5209_init_params(pcr);
990 break;
991
992 case 0x5229:
993 rts5229_init_params(pcr);
994 break;
995
996 case 0x5289:
997 rtl8411_init_params(pcr);
998 break;
999 }
1000
1001 dev_dbg(&(pcr->pci->dev), "PID: 0x%04x, IC version: 0x%02x\n",
1002 PCI_PID(pcr), pcr->ic_version);
1003
1004 pcr->slots = kcalloc(pcr->num_slots, sizeof(struct rtsx_slot),
1005 GFP_KERNEL);
1006 if (!pcr->slots)
1007 return -ENOMEM;
1008
1009 pcr->state = PDEV_STAT_IDLE;
1010 err = rtsx_pci_init_hw(pcr);
1011 if (err < 0) {
1012 kfree(pcr->slots);
1013 return err;
1014 }
1015
1016 return 0;
1017}
1018
612b95cd
GKH
1019static int rtsx_pci_probe(struct pci_dev *pcidev,
1020 const struct pci_device_id *id)
ada8a8a1
WW
1021{
1022 struct rtsx_pcr *pcr;
1023 struct pcr_handle *handle;
1024 u32 base, len;
1025 int ret, i;
1026
1027 dev_dbg(&(pcidev->dev),
1028 ": Realtek PCI-E Card Reader found at %s [%04x:%04x] (rev %x)\n",
1029 pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device,
1030 (int)pcidev->revision);
1031
f84ef042
WW
1032 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32));
1033 if (ret < 0)
1034 return ret;
1035
ada8a8a1
WW
1036 ret = pci_enable_device(pcidev);
1037 if (ret)
1038 return ret;
1039
1040 ret = pci_request_regions(pcidev, DRV_NAME_RTSX_PCI);
1041 if (ret)
1042 goto disable;
1043
1044 pcr = kzalloc(sizeof(*pcr), GFP_KERNEL);
1045 if (!pcr) {
1046 ret = -ENOMEM;
1047 goto release_pci;
1048 }
1049
1050 handle = kzalloc(sizeof(*handle), GFP_KERNEL);
1051 if (!handle) {
1052 ret = -ENOMEM;
1053 goto free_pcr;
1054 }
1055 handle->pcr = pcr;
1056
1057 if (!idr_pre_get(&rtsx_pci_idr, GFP_KERNEL)) {
1058 ret = -ENOMEM;
1059 goto free_handle;
1060 }
1061
1062 spin_lock(&rtsx_pci_lock);
1063 ret = idr_get_new(&rtsx_pci_idr, pcr, &pcr->id);
1064 spin_unlock(&rtsx_pci_lock);
1065 if (ret)
1066 goto free_handle;
1067
1068 pcr->pci = pcidev;
1069 dev_set_drvdata(&pcidev->dev, handle);
1070
1071 len = pci_resource_len(pcidev, 0);
1072 base = pci_resource_start(pcidev, 0);
1073 pcr->remap_addr = ioremap_nocache(base, len);
1074 if (!pcr->remap_addr) {
1075 ret = -ENOMEM;
1076 goto free_host;
1077 }
1078
1079 pcr->rtsx_resv_buf = dma_alloc_coherent(&(pcidev->dev),
1080 RTSX_RESV_BUF_LEN, &(pcr->rtsx_resv_buf_addr),
1081 GFP_KERNEL);
1082 if (pcr->rtsx_resv_buf == NULL) {
1083 ret = -ENXIO;
1084 goto unmap;
1085 }
1086 pcr->host_cmds_ptr = pcr->rtsx_resv_buf;
1087 pcr->host_cmds_addr = pcr->rtsx_resv_buf_addr;
1088 pcr->host_sg_tbl_ptr = pcr->rtsx_resv_buf + HOST_CMDS_BUF_LEN;
1089 pcr->host_sg_tbl_addr = pcr->rtsx_resv_buf_addr + HOST_CMDS_BUF_LEN;
1090
1091 pcr->card_inserted = 0;
1092 pcr->card_removed = 0;
1093 INIT_DELAYED_WORK(&pcr->carddet_work, rtsx_pci_card_detect);
1094 INIT_DELAYED_WORK(&pcr->idle_work, rtsx_pci_idle_work);
1095
1096 pcr->msi_en = msi_en;
1097 if (pcr->msi_en) {
1098 ret = pci_enable_msi(pcidev);
1099 if (ret < 0)
1100 pcr->msi_en = false;
1101 }
1102
1103 ret = rtsx_pci_acquire_irq(pcr);
1104 if (ret < 0)
1105 goto free_dma;
1106
1107 pci_set_master(pcidev);
1108 synchronize_irq(pcr->irq);
1109
1110 ret = rtsx_pci_init_chip(pcr);
1111 if (ret < 0)
1112 goto disable_irq;
1113
1114 for (i = 0; i < ARRAY_SIZE(rtsx_pcr_cells); i++) {
1115 rtsx_pcr_cells[i].platform_data = handle;
1116 rtsx_pcr_cells[i].pdata_size = sizeof(*handle);
1117 }
1118 ret = mfd_add_devices(&pcidev->dev, pcr->id, rtsx_pcr_cells,
1119 ARRAY_SIZE(rtsx_pcr_cells), NULL, 0, NULL);
1120 if (ret < 0)
1121 goto disable_irq;
1122
1123 schedule_delayed_work(&pcr->idle_work, msecs_to_jiffies(200));
1124
1125 return 0;
1126
1127disable_irq:
1128 free_irq(pcr->irq, (void *)pcr);
1129free_dma:
1130 dma_free_coherent(&(pcr->pci->dev), RTSX_RESV_BUF_LEN,
1131 pcr->rtsx_resv_buf, pcr->rtsx_resv_buf_addr);
1132unmap:
1133 iounmap(pcr->remap_addr);
1134free_host:
1135 dev_set_drvdata(&pcidev->dev, NULL);
1136free_handle:
1137 kfree(handle);
1138free_pcr:
1139 kfree(pcr);
1140release_pci:
1141 pci_release_regions(pcidev);
1142disable:
1143 pci_disable_device(pcidev);
1144
1145 return ret;
1146}
1147
612b95cd 1148static void rtsx_pci_remove(struct pci_dev *pcidev)
ada8a8a1
WW
1149{
1150 struct pcr_handle *handle = pci_get_drvdata(pcidev);
1151 struct rtsx_pcr *pcr = handle->pcr;
1152
1153 pcr->remove_pci = true;
1154
1155 cancel_delayed_work(&pcr->carddet_work);
1156 cancel_delayed_work(&pcr->idle_work);
1157
1158 mfd_remove_devices(&pcidev->dev);
1159
1160 dma_free_coherent(&(pcr->pci->dev), RTSX_RESV_BUF_LEN,
1161 pcr->rtsx_resv_buf, pcr->rtsx_resv_buf_addr);
1162 free_irq(pcr->irq, (void *)pcr);
1163 if (pcr->msi_en)
1164 pci_disable_msi(pcr->pci);
1165 iounmap(pcr->remap_addr);
1166
1167 dev_set_drvdata(&pcidev->dev, NULL);
1168 pci_release_regions(pcidev);
1169 pci_disable_device(pcidev);
1170
1171 spin_lock(&rtsx_pci_lock);
1172 idr_remove(&rtsx_pci_idr, pcr->id);
1173 spin_unlock(&rtsx_pci_lock);
1174
1175 kfree(pcr->slots);
1176 kfree(pcr);
1177 kfree(handle);
1178
1179 dev_dbg(&(pcidev->dev),
1180 ": Realtek PCI-E Card Reader at %s [%04x:%04x] has been removed\n",
1181 pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device);
1182}
1183
1184#ifdef CONFIG_PM
1185
1186static int rtsx_pci_suspend(struct pci_dev *pcidev, pm_message_t state)
1187{
1188 struct pcr_handle *handle;
1189 struct rtsx_pcr *pcr;
1190 int ret = 0;
1191
1192 dev_dbg(&(pcidev->dev), "--> %s\n", __func__);
1193
1194 handle = pci_get_drvdata(pcidev);
1195 pcr = handle->pcr;
1196
1197 cancel_delayed_work(&pcr->carddet_work);
1198 cancel_delayed_work(&pcr->idle_work);
1199
1200 mutex_lock(&pcr->pcr_mutex);
1201
1202 if (pcr->ops->turn_off_led)
1203 pcr->ops->turn_off_led(pcr);
1204
1205 rtsx_pci_writel(pcr, RTSX_BIER, 0);
1206 pcr->bier = 0;
1207
1208 rtsx_pci_write_register(pcr, PETXCFG, 0x08, 0x08);
1209 rtsx_pci_write_register(pcr, HOST_SLEEP_STATE, 0x03, 0x02);
1210
1211 pci_save_state(pcidev);
1212 pci_enable_wake(pcidev, pci_choose_state(pcidev, state), 0);
1213 pci_disable_device(pcidev);
1214 pci_set_power_state(pcidev, pci_choose_state(pcidev, state));
1215
1216 mutex_unlock(&pcr->pcr_mutex);
1217 return ret;
1218}
1219
1220static int rtsx_pci_resume(struct pci_dev *pcidev)
1221{
1222 struct pcr_handle *handle;
1223 struct rtsx_pcr *pcr;
1224 int ret = 0;
1225
1226 dev_dbg(&(pcidev->dev), "--> %s\n", __func__);
1227
1228 handle = pci_get_drvdata(pcidev);
1229 pcr = handle->pcr;
1230
1231 mutex_lock(&pcr->pcr_mutex);
1232
1233 pci_set_power_state(pcidev, PCI_D0);
1234 pci_restore_state(pcidev);
1235 ret = pci_enable_device(pcidev);
1236 if (ret)
1237 goto out;
1238 pci_set_master(pcidev);
1239
1240 ret = rtsx_pci_write_register(pcr, HOST_SLEEP_STATE, 0x03, 0x00);
1241 if (ret)
1242 goto out;
1243
1244 ret = rtsx_pci_init_hw(pcr);
1245 if (ret)
1246 goto out;
1247
1248 schedule_delayed_work(&pcr->idle_work, msecs_to_jiffies(200));
1249
1250out:
1251 mutex_unlock(&pcr->pcr_mutex);
1252 return ret;
1253}
1254
1255#else /* CONFIG_PM */
1256
1257#define rtsx_pci_suspend NULL
1258#define rtsx_pci_resume NULL
1259
1260#endif /* CONFIG_PM */
1261
1262static struct pci_driver rtsx_pci_driver = {
1263 .name = DRV_NAME_RTSX_PCI,
1264 .id_table = rtsx_pci_ids,
1265 .probe = rtsx_pci_probe,
612b95cd 1266 .remove = rtsx_pci_remove,
ada8a8a1
WW
1267 .suspend = rtsx_pci_suspend,
1268 .resume = rtsx_pci_resume,
1269};
1270module_pci_driver(rtsx_pci_driver);
1271
1272MODULE_LICENSE("GPL");
1273MODULE_AUTHOR("Wei WANG <wei_wang@realsil.com.cn>");
1274MODULE_DESCRIPTION("Realtek PCI-E Card Reader Driver");