blob: 67bb34ef0ebdc8d22acef6730ea78b4f8e2e0067 [file] [log] [blame]
Wei WANGada8a8a2012-10-29 13:49:33 +08001/* 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>
Samuel Ortizaec17ea2012-11-09 10:19:54 +010025#include <linux/slab.h>
Wei WANGada8a8a2012-10-29 13:49:33 +080026#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);
Wei WANGada8a8a2012-10-29 13:49:33 +0800328 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;
Wei WANGeebbe252013-01-29 15:21:36 +0800593 u8 n, clk_divider, mcu_cnt, div;
Wei WANGada8a8a2012-10-29 13:49:33 +0800594 u8 depth[] = {
595 [RTSX_SSC_DEPTH_4M] = SSC_DEPTH_4M,
596 [RTSX_SSC_DEPTH_2M] = SSC_DEPTH_2M,
597 [RTSX_SSC_DEPTH_1M] = SSC_DEPTH_1M,
598 [RTSX_SSC_DEPTH_500K] = SSC_DEPTH_500K,
599 [RTSX_SSC_DEPTH_250K] = SSC_DEPTH_250K,
600 };
601
602 if (initial_mode) {
603 /* We use 250k(around) here, in initial stage */
604 clk_divider = SD_CLK_DIVIDE_128;
605 card_clock = 30000000;
606 } else {
607 clk_divider = SD_CLK_DIVIDE_0;
608 }
609 err = rtsx_pci_write_register(pcr, SD_CFG1,
610 SD_CLK_DIVIDE_MASK, clk_divider);
611 if (err < 0)
612 return err;
613
614 card_clock /= 1000000;
615 dev_dbg(&(pcr->pci->dev), "Switch card clock to %dMHz\n", card_clock);
616
Wei WANGada8a8a2012-10-29 13:49:33 +0800617 clk = card_clock;
618 if (!initial_mode && double_clk)
619 clk = card_clock * 2;
620 dev_dbg(&(pcr->pci->dev),
621 "Internal SSC clock: %dMHz (cur_clock = %d)\n",
622 clk, pcr->cur_clock);
623
624 if (clk == pcr->cur_clock)
625 return 0;
626
Wei WANGab4e8f82013-01-23 09:51:06 +0800627 if (pcr->ops->conv_clk_and_div_n)
Wei WANG678cacd2013-01-29 15:21:35 +0800628 n = (u8)pcr->ops->conv_clk_and_div_n(clk, CLK_TO_DIV_N);
Wei WANGab4e8f82013-01-23 09:51:06 +0800629 else
Wei WANG678cacd2013-01-29 15:21:35 +0800630 n = (u8)(clk - 2);
Wei WANGeebbe252013-01-29 15:21:36 +0800631 if ((clk <= 2) || (n > MAX_DIV_N_PCR))
Wei WANGada8a8a2012-10-29 13:49:33 +0800632 return -EINVAL;
633
634 mcu_cnt = (u8)(125/clk + 3);
635 if (mcu_cnt > 15)
636 mcu_cnt = 15;
637
Wei WANGeebbe252013-01-29 15:21:36 +0800638 /* Make sure that the SSC clock div_n is not less than MIN_DIV_N_PCR */
Wei WANGada8a8a2012-10-29 13:49:33 +0800639 div = CLK_DIV_1;
Wei WANGeebbe252013-01-29 15:21:36 +0800640 while ((n < MIN_DIV_N_PCR) && (div < CLK_DIV_8)) {
Wei WANGab4e8f82013-01-23 09:51:06 +0800641 if (pcr->ops->conv_clk_and_div_n) {
Wei WANG678cacd2013-01-29 15:21:35 +0800642 int dbl_clk = pcr->ops->conv_clk_and_div_n(n,
Wei WANGab4e8f82013-01-23 09:51:06 +0800643 DIV_N_TO_CLK) * 2;
Wei WANG678cacd2013-01-29 15:21:35 +0800644 n = (u8)pcr->ops->conv_clk_and_div_n(dbl_clk,
Wei WANGab4e8f82013-01-23 09:51:06 +0800645 CLK_TO_DIV_N);
646 } else {
Wei WANG678cacd2013-01-29 15:21:35 +0800647 n = (n + 2) * 2 - 2;
Wei WANGab4e8f82013-01-23 09:51:06 +0800648 }
Wei WANGada8a8a2012-10-29 13:49:33 +0800649 div++;
650 }
Wei WANG678cacd2013-01-29 15:21:35 +0800651 dev_dbg(&(pcr->pci->dev), "n = %d, div = %d\n", n, div);
Wei WANGada8a8a2012-10-29 13:49:33 +0800652
653 ssc_depth = depth[ssc_depth];
654 if (double_clk)
655 ssc_depth = double_ssc_depth(ssc_depth);
656
657 ssc_depth = revise_ssc_depth(ssc_depth, div);
658 dev_dbg(&(pcr->pci->dev), "ssc_depth = %d\n", ssc_depth);
659
660 rtsx_pci_init_cmd(pcr);
661 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_CTL,
662 CLK_LOW_FREQ, CLK_LOW_FREQ);
663 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_DIV,
664 0xFF, (div << 4) | mcu_cnt);
665 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1, SSC_RSTB, 0);
666 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL2,
667 SSC_DEPTH_MASK, ssc_depth);
Wei WANG678cacd2013-01-29 15:21:35 +0800668 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_DIV_N_0, 0xFF, n);
Wei WANGada8a8a2012-10-29 13:49:33 +0800669 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1, SSC_RSTB, SSC_RSTB);
670 if (vpclk) {
671 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD_VPCLK0_CTL,
672 PHASE_NOT_RESET, 0);
673 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD_VPCLK0_CTL,
674 PHASE_NOT_RESET, PHASE_NOT_RESET);
675 }
676
677 err = rtsx_pci_send_cmd(pcr, 2000);
678 if (err < 0)
679 return err;
680
681 /* Wait SSC clock stable */
682 udelay(10);
683 err = rtsx_pci_write_register(pcr, CLK_CTL, CLK_LOW_FREQ, 0);
684 if (err < 0)
685 return err;
686
687 pcr->cur_clock = clk;
688 return 0;
689}
690EXPORT_SYMBOL_GPL(rtsx_pci_switch_clock);
691
692int rtsx_pci_card_power_on(struct rtsx_pcr *pcr, int card)
693{
694 if (pcr->ops->card_power_on)
695 return pcr->ops->card_power_on(pcr, card);
696
697 return 0;
698}
699EXPORT_SYMBOL_GPL(rtsx_pci_card_power_on);
700
701int rtsx_pci_card_power_off(struct rtsx_pcr *pcr, int card)
702{
703 if (pcr->ops->card_power_off)
704 return pcr->ops->card_power_off(pcr, card);
705
706 return 0;
707}
708EXPORT_SYMBOL_GPL(rtsx_pci_card_power_off);
709
Wei WANGd817ac42013-01-23 09:51:04 +0800710int rtsx_pci_switch_output_voltage(struct rtsx_pcr *pcr, u8 voltage)
711{
712 if (pcr->ops->switch_output_voltage)
713 return pcr->ops->switch_output_voltage(pcr, voltage);
714
715 return 0;
716}
717EXPORT_SYMBOL_GPL(rtsx_pci_switch_output_voltage);
718
Wei WANGada8a8a2012-10-29 13:49:33 +0800719unsigned int rtsx_pci_card_exist(struct rtsx_pcr *pcr)
720{
721 unsigned int val;
722
723 val = rtsx_pci_readl(pcr, RTSX_BIPR);
724 if (pcr->ops->cd_deglitch)
725 val = pcr->ops->cd_deglitch(pcr);
726
727 return val;
728}
729EXPORT_SYMBOL_GPL(rtsx_pci_card_exist);
730
731void rtsx_pci_complete_unfinished_transfer(struct rtsx_pcr *pcr)
732{
733 struct completion finish;
734
735 pcr->finish_me = &finish;
736 init_completion(&finish);
737
738 if (pcr->done)
739 complete(pcr->done);
740
741 if (!pcr->remove_pci)
742 rtsx_pci_stop_cmd(pcr);
743
744 wait_for_completion_interruptible_timeout(&finish,
745 msecs_to_jiffies(2));
746 pcr->finish_me = NULL;
747}
748EXPORT_SYMBOL_GPL(rtsx_pci_complete_unfinished_transfer);
749
750static void rtsx_pci_card_detect(struct work_struct *work)
751{
752 struct delayed_work *dwork;
753 struct rtsx_pcr *pcr;
754 unsigned long flags;
755 unsigned int card_detect = 0;
756 u32 irq_status;
757
758 dwork = to_delayed_work(work);
759 pcr = container_of(dwork, struct rtsx_pcr, carddet_work);
760
761 dev_dbg(&(pcr->pci->dev), "--> %s\n", __func__);
762
763 spin_lock_irqsave(&pcr->lock, flags);
764
765 irq_status = rtsx_pci_readl(pcr, RTSX_BIPR);
766 dev_dbg(&(pcr->pci->dev), "irq_status: 0x%08x\n", irq_status);
767
768 if (pcr->card_inserted || pcr->card_removed) {
769 dev_dbg(&(pcr->pci->dev),
770 "card_inserted: 0x%x, card_removed: 0x%x\n",
771 pcr->card_inserted, pcr->card_removed);
772
773 if (pcr->ops->cd_deglitch)
774 pcr->card_inserted = pcr->ops->cd_deglitch(pcr);
775
776 card_detect = pcr->card_inserted | pcr->card_removed;
777 pcr->card_inserted = 0;
778 pcr->card_removed = 0;
779 }
780
781 spin_unlock_irqrestore(&pcr->lock, flags);
782
Wei WANG2d1484f2013-01-27 01:55:16 +0100783 if ((card_detect & SD_EXIST) && pcr->slots[RTSX_SD_CARD].card_event)
Wei WANGada8a8a2012-10-29 13:49:33 +0800784 pcr->slots[RTSX_SD_CARD].card_event(
785 pcr->slots[RTSX_SD_CARD].p_dev);
Wei WANG2d1484f2013-01-27 01:55:16 +0100786 if ((card_detect & MS_EXIST) && pcr->slots[RTSX_MS_CARD].card_event)
Wei WANGada8a8a2012-10-29 13:49:33 +0800787 pcr->slots[RTSX_MS_CARD].card_event(
788 pcr->slots[RTSX_MS_CARD].p_dev);
789}
790
791static irqreturn_t rtsx_pci_isr(int irq, void *dev_id)
792{
793 struct rtsx_pcr *pcr = dev_id;
794 u32 int_reg;
795
796 if (!pcr)
797 return IRQ_NONE;
798
799 spin_lock(&pcr->lock);
800
801 int_reg = rtsx_pci_readl(pcr, RTSX_BIPR);
802 /* Clear interrupt flag */
803 rtsx_pci_writel(pcr, RTSX_BIPR, int_reg);
804 if ((int_reg & pcr->bier) == 0) {
805 spin_unlock(&pcr->lock);
806 return IRQ_NONE;
807 }
808 if (int_reg == 0xFFFFFFFF) {
809 spin_unlock(&pcr->lock);
810 return IRQ_HANDLED;
811 }
812
813 int_reg &= (pcr->bier | 0x7FFFFF);
814
815 if (int_reg & SD_INT) {
816 if (int_reg & SD_EXIST) {
817 pcr->card_inserted |= SD_EXIST;
818 } else {
819 pcr->card_removed |= SD_EXIST;
820 pcr->card_inserted &= ~SD_EXIST;
821 }
822 }
823
824 if (int_reg & MS_INT) {
825 if (int_reg & MS_EXIST) {
826 pcr->card_inserted |= MS_EXIST;
827 } else {
828 pcr->card_removed |= MS_EXIST;
829 pcr->card_inserted &= ~MS_EXIST;
830 }
831 }
832
833 if (pcr->card_inserted || pcr->card_removed)
834 schedule_delayed_work(&pcr->carddet_work,
835 msecs_to_jiffies(200));
836
837 if (int_reg & (NEED_COMPLETE_INT | DELINK_INT)) {
838 if (int_reg & (TRANS_FAIL_INT | DELINK_INT)) {
839 pcr->trans_result = TRANS_RESULT_FAIL;
840 if (pcr->done)
841 complete(pcr->done);
842 } else if (int_reg & TRANS_OK_INT) {
843 pcr->trans_result = TRANS_RESULT_OK;
844 if (pcr->done)
845 complete(pcr->done);
846 }
847 }
848
849 spin_unlock(&pcr->lock);
850 return IRQ_HANDLED;
851}
852
853static int rtsx_pci_acquire_irq(struct rtsx_pcr *pcr)
854{
855 dev_info(&(pcr->pci->dev), "%s: pcr->msi_en = %d, pci->irq = %d\n",
856 __func__, pcr->msi_en, pcr->pci->irq);
857
858 if (request_irq(pcr->pci->irq, rtsx_pci_isr,
859 pcr->msi_en ? 0 : IRQF_SHARED,
860 DRV_NAME_RTSX_PCI, pcr)) {
861 dev_err(&(pcr->pci->dev),
862 "rtsx_sdmmc: unable to grab IRQ %d, disabling device\n",
863 pcr->pci->irq);
864 return -1;
865 }
866
867 pcr->irq = pcr->pci->irq;
868 pci_intx(pcr->pci, !pcr->msi_en);
869
870 return 0;
871}
872
873static void rtsx_pci_idle_work(struct work_struct *work)
874{
875 struct delayed_work *dwork = to_delayed_work(work);
876 struct rtsx_pcr *pcr = container_of(dwork, struct rtsx_pcr, idle_work);
877
878 dev_dbg(&(pcr->pci->dev), "--> %s\n", __func__);
879
880 mutex_lock(&pcr->pcr_mutex);
881
882 pcr->state = PDEV_STAT_IDLE;
883
884 if (pcr->ops->disable_auto_blink)
885 pcr->ops->disable_auto_blink(pcr);
886 if (pcr->ops->turn_off_led)
887 pcr->ops->turn_off_led(pcr);
888
889 mutex_unlock(&pcr->pcr_mutex);
890}
891
892static int rtsx_pci_init_hw(struct rtsx_pcr *pcr)
893{
894 int err;
895
896 rtsx_pci_writel(pcr, RTSX_HCBAR, pcr->host_cmds_addr);
897
898 rtsx_pci_enable_bus_int(pcr);
899
900 /* Power on SSC */
901 err = rtsx_pci_write_register(pcr, FPDCTL, SSC_POWER_DOWN, 0);
902 if (err < 0)
903 return err;
904
905 /* Wait SSC power stable */
906 udelay(200);
907
908 if (pcr->ops->optimize_phy) {
909 err = pcr->ops->optimize_phy(pcr);
910 if (err < 0)
911 return err;
912 }
913
914 rtsx_pci_init_cmd(pcr);
915
916 /* Set mcu_cnt to 7 to ensure data can be sampled properly */
917 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CLK_DIV, 0x07, 0x07);
918
919 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, HOST_SLEEP_STATE, 0x03, 0x00);
920 /* Disable card clock */
921 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CARD_CLK_EN, 0x1E, 0);
922 /* Reset ASPM state to default value */
923 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, ASPM_FORCE_CTL, 0x3F, 0);
924 /* Reset delink mode */
925 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CHANGE_LINK_STATE, 0x0A, 0);
926 /* Card driving select */
927 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SD30_DRIVE_SEL,
928 0x07, DRIVER_TYPE_D);
929 /* Enable SSC Clock */
930 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL1,
931 0xFF, SSC_8X_EN | SSC_SEL_4M);
932 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, SSC_CTL2, 0xFF, 0x12);
933 /* Disable cd_pwr_save */
934 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, CHANGE_LINK_STATE, 0x16, 0x10);
935 /* Clear Link Ready Interrupt */
936 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, IRQSTAT0,
937 LINK_RDY_INT, LINK_RDY_INT);
938 /* Enlarge the estimation window of PERST# glitch
939 * to reduce the chance of invalid card interrupt
940 */
941 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PERST_GLITCH_WIDTH, 0xFF, 0x80);
942 /* Update RC oscillator to 400k
943 * bit[0] F_HIGH: for RC oscillator, Rst_value is 1'b1
944 * 1: 2M 0: 400k
945 */
946 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, RCCTL, 0x01, 0x00);
947 /* Set interrupt write clear
948 * bit 1: U_elbi_if_rd_clr_en
949 * 1: Enable ELBI interrupt[31:22] & [7:0] flag read clear
950 * 0: ELBI interrupt flag[31:22] & [7:0] only can be write clear
951 */
952 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, NFTS_TX_CTRL, 0x02, 0);
953 /* Force CLKREQ# PIN to drive 0 to request clock */
954 rtsx_pci_add_cmd(pcr, WRITE_REG_CMD, PETXCFG, 0x08, 0x08);
955
956 err = rtsx_pci_send_cmd(pcr, 100);
957 if (err < 0)
958 return err;
959
960 /* Enable clk_request_n to enable clock power management */
961 rtsx_pci_write_config_byte(pcr, 0x81, 1);
962 /* Enter L1 when host tx idle */
963 rtsx_pci_write_config_byte(pcr, 0x70F, 0x5B);
964
965 if (pcr->ops->extra_init_hw) {
966 err = pcr->ops->extra_init_hw(pcr);
967 if (err < 0)
968 return err;
969 }
970
971 return 0;
972}
973
974static int rtsx_pci_init_chip(struct rtsx_pcr *pcr)
975{
976 int err;
977
978 spin_lock_init(&pcr->lock);
979 mutex_init(&pcr->pcr_mutex);
980
981 switch (PCI_PID(pcr)) {
982 default:
983 case 0x5209:
984 rts5209_init_params(pcr);
985 break;
986
987 case 0x5229:
988 rts5229_init_params(pcr);
989 break;
990
991 case 0x5289:
992 rtl8411_init_params(pcr);
993 break;
994 }
995
996 dev_dbg(&(pcr->pci->dev), "PID: 0x%04x, IC version: 0x%02x\n",
997 PCI_PID(pcr), pcr->ic_version);
998
999 pcr->slots = kcalloc(pcr->num_slots, sizeof(struct rtsx_slot),
1000 GFP_KERNEL);
1001 if (!pcr->slots)
1002 return -ENOMEM;
1003
1004 pcr->state = PDEV_STAT_IDLE;
1005 err = rtsx_pci_init_hw(pcr);
1006 if (err < 0) {
1007 kfree(pcr->slots);
1008 return err;
1009 }
1010
1011 return 0;
1012}
1013
Greg Kroah-Hartman612b95c2012-12-21 15:03:15 -08001014static int rtsx_pci_probe(struct pci_dev *pcidev,
1015 const struct pci_device_id *id)
Wei WANGada8a8a2012-10-29 13:49:33 +08001016{
1017 struct rtsx_pcr *pcr;
1018 struct pcr_handle *handle;
1019 u32 base, len;
1020 int ret, i;
1021
1022 dev_dbg(&(pcidev->dev),
1023 ": Realtek PCI-E Card Reader found at %s [%04x:%04x] (rev %x)\n",
1024 pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device,
1025 (int)pcidev->revision);
1026
Wei WANGf84ef042013-01-29 15:21:34 +08001027 ret = pci_set_dma_mask(pcidev, DMA_BIT_MASK(32));
1028 if (ret < 0)
1029 return ret;
1030
Wei WANGada8a8a2012-10-29 13:49:33 +08001031 ret = pci_enable_device(pcidev);
1032 if (ret)
1033 return ret;
1034
1035 ret = pci_request_regions(pcidev, DRV_NAME_RTSX_PCI);
1036 if (ret)
1037 goto disable;
1038
1039 pcr = kzalloc(sizeof(*pcr), GFP_KERNEL);
1040 if (!pcr) {
1041 ret = -ENOMEM;
1042 goto release_pci;
1043 }
1044
1045 handle = kzalloc(sizeof(*handle), GFP_KERNEL);
1046 if (!handle) {
1047 ret = -ENOMEM;
1048 goto free_pcr;
1049 }
1050 handle->pcr = pcr;
1051
1052 if (!idr_pre_get(&rtsx_pci_idr, GFP_KERNEL)) {
1053 ret = -ENOMEM;
1054 goto free_handle;
1055 }
1056
1057 spin_lock(&rtsx_pci_lock);
1058 ret = idr_get_new(&rtsx_pci_idr, pcr, &pcr->id);
1059 spin_unlock(&rtsx_pci_lock);
1060 if (ret)
1061 goto free_handle;
1062
1063 pcr->pci = pcidev;
1064 dev_set_drvdata(&pcidev->dev, handle);
1065
1066 len = pci_resource_len(pcidev, 0);
1067 base = pci_resource_start(pcidev, 0);
1068 pcr->remap_addr = ioremap_nocache(base, len);
1069 if (!pcr->remap_addr) {
1070 ret = -ENOMEM;
1071 goto free_host;
1072 }
1073
1074 pcr->rtsx_resv_buf = dma_alloc_coherent(&(pcidev->dev),
1075 RTSX_RESV_BUF_LEN, &(pcr->rtsx_resv_buf_addr),
1076 GFP_KERNEL);
1077 if (pcr->rtsx_resv_buf == NULL) {
1078 ret = -ENXIO;
1079 goto unmap;
1080 }
1081 pcr->host_cmds_ptr = pcr->rtsx_resv_buf;
1082 pcr->host_cmds_addr = pcr->rtsx_resv_buf_addr;
1083 pcr->host_sg_tbl_ptr = pcr->rtsx_resv_buf + HOST_CMDS_BUF_LEN;
1084 pcr->host_sg_tbl_addr = pcr->rtsx_resv_buf_addr + HOST_CMDS_BUF_LEN;
1085
1086 pcr->card_inserted = 0;
1087 pcr->card_removed = 0;
1088 INIT_DELAYED_WORK(&pcr->carddet_work, rtsx_pci_card_detect);
1089 INIT_DELAYED_WORK(&pcr->idle_work, rtsx_pci_idle_work);
1090
1091 pcr->msi_en = msi_en;
1092 if (pcr->msi_en) {
1093 ret = pci_enable_msi(pcidev);
1094 if (ret < 0)
1095 pcr->msi_en = false;
1096 }
1097
1098 ret = rtsx_pci_acquire_irq(pcr);
1099 if (ret < 0)
1100 goto free_dma;
1101
1102 pci_set_master(pcidev);
1103 synchronize_irq(pcr->irq);
1104
1105 ret = rtsx_pci_init_chip(pcr);
1106 if (ret < 0)
1107 goto disable_irq;
1108
1109 for (i = 0; i < ARRAY_SIZE(rtsx_pcr_cells); i++) {
1110 rtsx_pcr_cells[i].platform_data = handle;
1111 rtsx_pcr_cells[i].pdata_size = sizeof(*handle);
1112 }
1113 ret = mfd_add_devices(&pcidev->dev, pcr->id, rtsx_pcr_cells,
1114 ARRAY_SIZE(rtsx_pcr_cells), NULL, 0, NULL);
1115 if (ret < 0)
1116 goto disable_irq;
1117
1118 schedule_delayed_work(&pcr->idle_work, msecs_to_jiffies(200));
1119
1120 return 0;
1121
1122disable_irq:
1123 free_irq(pcr->irq, (void *)pcr);
1124free_dma:
1125 dma_free_coherent(&(pcr->pci->dev), RTSX_RESV_BUF_LEN,
1126 pcr->rtsx_resv_buf, pcr->rtsx_resv_buf_addr);
1127unmap:
1128 iounmap(pcr->remap_addr);
1129free_host:
1130 dev_set_drvdata(&pcidev->dev, NULL);
1131free_handle:
1132 kfree(handle);
1133free_pcr:
1134 kfree(pcr);
1135release_pci:
1136 pci_release_regions(pcidev);
1137disable:
1138 pci_disable_device(pcidev);
1139
1140 return ret;
1141}
1142
Greg Kroah-Hartman612b95c2012-12-21 15:03:15 -08001143static void rtsx_pci_remove(struct pci_dev *pcidev)
Wei WANGada8a8a2012-10-29 13:49:33 +08001144{
1145 struct pcr_handle *handle = pci_get_drvdata(pcidev);
1146 struct rtsx_pcr *pcr = handle->pcr;
1147
1148 pcr->remove_pci = true;
1149
1150 cancel_delayed_work(&pcr->carddet_work);
1151 cancel_delayed_work(&pcr->idle_work);
1152
1153 mfd_remove_devices(&pcidev->dev);
1154
1155 dma_free_coherent(&(pcr->pci->dev), RTSX_RESV_BUF_LEN,
1156 pcr->rtsx_resv_buf, pcr->rtsx_resv_buf_addr);
1157 free_irq(pcr->irq, (void *)pcr);
1158 if (pcr->msi_en)
1159 pci_disable_msi(pcr->pci);
1160 iounmap(pcr->remap_addr);
1161
1162 dev_set_drvdata(&pcidev->dev, NULL);
1163 pci_release_regions(pcidev);
1164 pci_disable_device(pcidev);
1165
1166 spin_lock(&rtsx_pci_lock);
1167 idr_remove(&rtsx_pci_idr, pcr->id);
1168 spin_unlock(&rtsx_pci_lock);
1169
1170 kfree(pcr->slots);
1171 kfree(pcr);
1172 kfree(handle);
1173
1174 dev_dbg(&(pcidev->dev),
1175 ": Realtek PCI-E Card Reader at %s [%04x:%04x] has been removed\n",
1176 pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device);
1177}
1178
1179#ifdef CONFIG_PM
1180
1181static int rtsx_pci_suspend(struct pci_dev *pcidev, pm_message_t state)
1182{
1183 struct pcr_handle *handle;
1184 struct rtsx_pcr *pcr;
1185 int ret = 0;
1186
1187 dev_dbg(&(pcidev->dev), "--> %s\n", __func__);
1188
1189 handle = pci_get_drvdata(pcidev);
1190 pcr = handle->pcr;
1191
1192 cancel_delayed_work(&pcr->carddet_work);
1193 cancel_delayed_work(&pcr->idle_work);
1194
1195 mutex_lock(&pcr->pcr_mutex);
1196
1197 if (pcr->ops->turn_off_led)
1198 pcr->ops->turn_off_led(pcr);
1199
1200 rtsx_pci_writel(pcr, RTSX_BIER, 0);
1201 pcr->bier = 0;
1202
1203 rtsx_pci_write_register(pcr, PETXCFG, 0x08, 0x08);
1204 rtsx_pci_write_register(pcr, HOST_SLEEP_STATE, 0x03, 0x02);
1205
1206 pci_save_state(pcidev);
1207 pci_enable_wake(pcidev, pci_choose_state(pcidev, state), 0);
1208 pci_disable_device(pcidev);
1209 pci_set_power_state(pcidev, pci_choose_state(pcidev, state));
1210
1211 mutex_unlock(&pcr->pcr_mutex);
1212 return ret;
1213}
1214
1215static int rtsx_pci_resume(struct pci_dev *pcidev)
1216{
1217 struct pcr_handle *handle;
1218 struct rtsx_pcr *pcr;
1219 int ret = 0;
1220
1221 dev_dbg(&(pcidev->dev), "--> %s\n", __func__);
1222
1223 handle = pci_get_drvdata(pcidev);
1224 pcr = handle->pcr;
1225
1226 mutex_lock(&pcr->pcr_mutex);
1227
1228 pci_set_power_state(pcidev, PCI_D0);
1229 pci_restore_state(pcidev);
1230 ret = pci_enable_device(pcidev);
1231 if (ret)
1232 goto out;
1233 pci_set_master(pcidev);
1234
1235 ret = rtsx_pci_write_register(pcr, HOST_SLEEP_STATE, 0x03, 0x00);
1236 if (ret)
1237 goto out;
1238
1239 ret = rtsx_pci_init_hw(pcr);
1240 if (ret)
1241 goto out;
1242
1243 schedule_delayed_work(&pcr->idle_work, msecs_to_jiffies(200));
1244
1245out:
1246 mutex_unlock(&pcr->pcr_mutex);
1247 return ret;
1248}
1249
1250#else /* CONFIG_PM */
1251
1252#define rtsx_pci_suspend NULL
1253#define rtsx_pci_resume NULL
1254
1255#endif /* CONFIG_PM */
1256
1257static struct pci_driver rtsx_pci_driver = {
1258 .name = DRV_NAME_RTSX_PCI,
1259 .id_table = rtsx_pci_ids,
1260 .probe = rtsx_pci_probe,
Greg Kroah-Hartman612b95c2012-12-21 15:03:15 -08001261 .remove = rtsx_pci_remove,
Wei WANGada8a8a2012-10-29 13:49:33 +08001262 .suspend = rtsx_pci_suspend,
1263 .resume = rtsx_pci_resume,
1264};
1265module_pci_driver(rtsx_pci_driver);
1266
1267MODULE_LICENSE("GPL");
1268MODULE_AUTHOR("Wei WANG <wei_wang@realsil.com.cn>");
1269MODULE_DESCRIPTION("Realtek PCI-E Card Reader Driver");