blob: 4ce8773fa3b875c23881e57b5518d4ce798f194f [file] [log] [blame]
Alex Dubov60fdd932008-03-10 11:43:43 -07001/*
2 * jmb38x_ms.c - JMicron jmb38x MemoryStick card reader
3 *
4 * Copyright (C) 2008 Alex Dubov <oakad@yahoo.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/spinlock.h>
13#include <linux/interrupt.h>
14#include <linux/pci.h>
Andrew Mortond3597ea2008-03-19 17:01:03 -070015#include <linux/dma-mapping.h>
Alex Dubov60fdd932008-03-10 11:43:43 -070016#include <linux/delay.h>
17#include <linux/highmem.h>
18#include <linux/memstick.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Alex Dubov60fdd932008-03-10 11:43:43 -070020
21#define DRIVER_NAME "jmb38x_ms"
22
23static int no_dma;
24module_param(no_dma, bool, 0644);
25
26enum {
27 DMA_ADDRESS = 0x00,
28 BLOCK = 0x04,
29 DMA_CONTROL = 0x08,
30 TPC_P0 = 0x0c,
31 TPC_P1 = 0x10,
32 TPC = 0x14,
33 HOST_CONTROL = 0x18,
34 DATA = 0x1c,
35 STATUS = 0x20,
36 INT_STATUS = 0x24,
37 INT_STATUS_ENABLE = 0x28,
38 INT_SIGNAL_ENABLE = 0x2c,
39 TIMER = 0x30,
40 TIMER_CONTROL = 0x34,
41 PAD_OUTPUT_ENABLE = 0x38,
42 PAD_PU_PD = 0x3c,
43 CLOCK_DELAY = 0x40,
44 ADMA_ADDRESS = 0x44,
45 CLOCK_CONTROL = 0x48,
46 LED_CONTROL = 0x4c,
47 VERSION = 0x50
48};
49
50struct jmb38x_ms_host {
51 struct jmb38x_ms *chip;
52 void __iomem *addr;
53 spinlock_t lock;
Alex Dubovf1d82692008-07-25 19:45:02 -070054 struct tasklet_struct notify;
Alex Dubov60fdd932008-03-10 11:43:43 -070055 int id;
Greg Kroah-Hartmanb98cb4b2008-05-02 06:02:41 +020056 char host_id[32];
Alex Dubov60fdd932008-03-10 11:43:43 -070057 int irq;
58 unsigned int block_pos;
59 unsigned long timeout_jiffies;
60 struct timer_list timer;
61 struct memstick_request *req;
Alex Dubov60fdd932008-03-10 11:43:43 -070062 unsigned char cmd_flags;
63 unsigned char io_pos;
Takashi Iwai23c59472011-01-12 17:01:01 -080064 unsigned char ifmode;
Alex Dubov60fdd932008-03-10 11:43:43 -070065 unsigned int io_word[2];
66};
67
68struct jmb38x_ms {
69 struct pci_dev *pdev;
70 int host_cnt;
71 struct memstick_host *hosts[];
72};
73
74#define BLOCK_COUNT_MASK 0xffff0000
75#define BLOCK_SIZE_MASK 0x00000fff
76
77#define DMA_CONTROL_ENABLE 0x00000001
78
79#define TPC_DATA_SEL 0x00008000
80#define TPC_DIR 0x00004000
81#define TPC_WAIT_INT 0x00002000
82#define TPC_GET_INT 0x00000800
83#define TPC_CODE_SZ_MASK 0x00000700
84#define TPC_DATA_SZ_MASK 0x00000007
85
Alex Dubov8e82f8c2008-09-13 02:33:26 -070086#define HOST_CONTROL_TDELAY_EN 0x00040000
87#define HOST_CONTROL_HW_OC_P 0x00010000
Alex Dubov60fdd932008-03-10 11:43:43 -070088#define HOST_CONTROL_RESET_REQ 0x00008000
89#define HOST_CONTROL_REI 0x00004000
90#define HOST_CONTROL_LED 0x00000400
91#define HOST_CONTROL_FAST_CLK 0x00000200
92#define HOST_CONTROL_RESET 0x00000100
93#define HOST_CONTROL_POWER_EN 0x00000080
94#define HOST_CONTROL_CLOCK_EN 0x00000040
Alex Dubov8e82f8c2008-09-13 02:33:26 -070095#define HOST_CONTROL_REO 0x00000008
Alex Dubov60fdd932008-03-10 11:43:43 -070096#define HOST_CONTROL_IF_SHIFT 4
97
98#define HOST_CONTROL_IF_SERIAL 0x0
99#define HOST_CONTROL_IF_PAR4 0x1
100#define HOST_CONTROL_IF_PAR8 0x3
101
Alex Dubovead70772008-03-19 17:01:06 -0700102#define STATUS_BUSY 0x00080000
103#define STATUS_MS_DAT7 0x00040000
104#define STATUS_MS_DAT6 0x00020000
105#define STATUS_MS_DAT5 0x00010000
106#define STATUS_MS_DAT4 0x00008000
107#define STATUS_MS_DAT3 0x00004000
108#define STATUS_MS_DAT2 0x00002000
109#define STATUS_MS_DAT1 0x00001000
110#define STATUS_MS_DAT0 0x00000800
Alex Dubov60fdd932008-03-10 11:43:43 -0700111#define STATUS_HAS_MEDIA 0x00000400
112#define STATUS_FIFO_EMPTY 0x00000200
113#define STATUS_FIFO_FULL 0x00000100
Alex Dubovead70772008-03-19 17:01:06 -0700114#define STATUS_MS_CED 0x00000080
115#define STATUS_MS_ERR 0x00000040
116#define STATUS_MS_BRQ 0x00000020
117#define STATUS_MS_CNK 0x00000001
Alex Dubov60fdd932008-03-10 11:43:43 -0700118
119#define INT_STATUS_TPC_ERR 0x00080000
120#define INT_STATUS_CRC_ERR 0x00040000
121#define INT_STATUS_TIMER_TO 0x00020000
122#define INT_STATUS_HSK_TO 0x00010000
123#define INT_STATUS_ANY_ERR 0x00008000
124#define INT_STATUS_FIFO_WRDY 0x00000080
125#define INT_STATUS_FIFO_RRDY 0x00000040
126#define INT_STATUS_MEDIA_OUT 0x00000010
127#define INT_STATUS_MEDIA_IN 0x00000008
128#define INT_STATUS_DMA_BOUNDARY 0x00000004
129#define INT_STATUS_EOTRAN 0x00000002
130#define INT_STATUS_EOTPC 0x00000001
131
132#define INT_STATUS_ALL 0x000f801f
133
134#define PAD_OUTPUT_ENABLE_MS 0x0F3F
135
136#define PAD_PU_PD_OFF 0x7FFF0000
137#define PAD_PU_PD_ON_MS_SOCK0 0x5f8f0000
138#define PAD_PU_PD_ON_MS_SOCK1 0x0f0f0000
139
Takashi Iwai23c59472011-01-12 17:01:01 -0800140#define CLOCK_CONTROL_BY_MMIO 0x00000008
Alex Dubovcf821e82008-03-19 17:01:08 -0700141#define CLOCK_CONTROL_40MHZ 0x00000001
Takashi Iwai23c59472011-01-12 17:01:01 -0800142#define CLOCK_CONTROL_50MHZ 0x00000002
143#define CLOCK_CONTROL_60MHZ 0x00000010
144#define CLOCK_CONTROL_62_5MHZ 0x00000004
Alex Dubovcf821e82008-03-19 17:01:08 -0700145#define CLOCK_CONTROL_OFF 0x00000000
146
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700147#define PCI_CTL_CLOCK_DLY_ADDR 0x000000b0
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700148
Alex Dubov60fdd932008-03-10 11:43:43 -0700149enum {
150 CMD_READY = 0x01,
151 FIFO_READY = 0x02,
152 REG_DATA = 0x04,
Alex Dubovead70772008-03-19 17:01:06 -0700153 DMA_DATA = 0x08
Alex Dubov60fdd932008-03-10 11:43:43 -0700154};
155
156static unsigned int jmb38x_ms_read_data(struct jmb38x_ms_host *host,
157 unsigned char *buf, unsigned int length)
158{
159 unsigned int off = 0;
160
161 while (host->io_pos && length) {
162 buf[off++] = host->io_word[0] & 0xff;
163 host->io_word[0] >>= 8;
164 length--;
165 host->io_pos--;
166 }
167
168 if (!length)
169 return off;
170
171 while (!(STATUS_FIFO_EMPTY & readl(host->addr + STATUS))) {
172 if (length < 4)
173 break;
174 *(unsigned int *)(buf + off) = __raw_readl(host->addr + DATA);
175 length -= 4;
176 off += 4;
177 }
178
179 if (length
180 && !(STATUS_FIFO_EMPTY & readl(host->addr + STATUS))) {
181 host->io_word[0] = readl(host->addr + DATA);
182 for (host->io_pos = 4; host->io_pos; --host->io_pos) {
183 buf[off++] = host->io_word[0] & 0xff;
184 host->io_word[0] >>= 8;
185 length--;
186 if (!length)
187 break;
188 }
189 }
190
191 return off;
192}
193
194static unsigned int jmb38x_ms_read_reg_data(struct jmb38x_ms_host *host,
195 unsigned char *buf,
196 unsigned int length)
197{
198 unsigned int off = 0;
199
200 while (host->io_pos > 4 && length) {
201 buf[off++] = host->io_word[0] & 0xff;
202 host->io_word[0] >>= 8;
203 length--;
204 host->io_pos--;
205 }
206
207 if (!length)
208 return off;
209
210 while (host->io_pos && length) {
211 buf[off++] = host->io_word[1] & 0xff;
212 host->io_word[1] >>= 8;
213 length--;
214 host->io_pos--;
215 }
216
217 return off;
218}
219
220static unsigned int jmb38x_ms_write_data(struct jmb38x_ms_host *host,
221 unsigned char *buf,
222 unsigned int length)
223{
224 unsigned int off = 0;
225
226 if (host->io_pos) {
227 while (host->io_pos < 4 && length) {
228 host->io_word[0] |= buf[off++] << (host->io_pos * 8);
229 host->io_pos++;
230 length--;
231 }
232 }
233
234 if (host->io_pos == 4
235 && !(STATUS_FIFO_FULL & readl(host->addr + STATUS))) {
236 writel(host->io_word[0], host->addr + DATA);
237 host->io_pos = 0;
238 host->io_word[0] = 0;
239 } else if (host->io_pos) {
240 return off;
241 }
242
243 if (!length)
244 return off;
245
246 while (!(STATUS_FIFO_FULL & readl(host->addr + STATUS))) {
247 if (length < 4)
248 break;
249
250 __raw_writel(*(unsigned int *)(buf + off),
251 host->addr + DATA);
252 length -= 4;
253 off += 4;
254 }
255
256 switch (length) {
257 case 3:
258 host->io_word[0] |= buf[off + 2] << 16;
259 host->io_pos++;
260 case 2:
261 host->io_word[0] |= buf[off + 1] << 8;
262 host->io_pos++;
263 case 1:
264 host->io_word[0] |= buf[off];
265 host->io_pos++;
266 }
267
268 off += host->io_pos;
269
270 return off;
271}
272
273static unsigned int jmb38x_ms_write_reg_data(struct jmb38x_ms_host *host,
274 unsigned char *buf,
275 unsigned int length)
276{
277 unsigned int off = 0;
278
279 while (host->io_pos < 4 && length) {
280 host->io_word[0] &= ~(0xff << (host->io_pos * 8));
281 host->io_word[0] |= buf[off++] << (host->io_pos * 8);
282 host->io_pos++;
283 length--;
284 }
285
286 if (!length)
287 return off;
288
289 while (host->io_pos < 8 && length) {
290 host->io_word[1] &= ~(0xff << (host->io_pos * 8));
291 host->io_word[1] |= buf[off++] << (host->io_pos * 8);
292 host->io_pos++;
293 length--;
294 }
295
296 return off;
297}
298
299static int jmb38x_ms_transfer_data(struct jmb38x_ms_host *host)
300{
301 unsigned int length;
302 unsigned int off;
Andrew Morton81950962008-03-19 17:01:04 -0700303 unsigned int t_size, p_cnt;
Alex Dubov60fdd932008-03-10 11:43:43 -0700304 unsigned char *buf;
305 struct page *pg;
306 unsigned long flags = 0;
307
308 if (host->req->long_data) {
309 length = host->req->sg.length - host->block_pos;
310 off = host->req->sg.offset + host->block_pos;
311 } else {
312 length = host->req->data_len - host->block_pos;
313 off = 0;
314 }
315
316 while (length) {
Andrew Morton81950962008-03-19 17:01:04 -0700317 unsigned int uninitialized_var(p_off);
318
Alex Dubov60fdd932008-03-10 11:43:43 -0700319 if (host->req->long_data) {
320 pg = nth_page(sg_page(&host->req->sg),
321 off >> PAGE_SHIFT);
322 p_off = offset_in_page(off);
323 p_cnt = PAGE_SIZE - p_off;
324 p_cnt = min(p_cnt, length);
325
326 local_irq_save(flags);
327 buf = kmap_atomic(pg, KM_BIO_SRC_IRQ) + p_off;
328 } else {
329 buf = host->req->data + host->block_pos;
330 p_cnt = host->req->data_len - host->block_pos;
331 }
332
333 if (host->req->data_dir == WRITE)
334 t_size = !(host->cmd_flags & REG_DATA)
335 ? jmb38x_ms_write_data(host, buf, p_cnt)
336 : jmb38x_ms_write_reg_data(host, buf, p_cnt);
337 else
338 t_size = !(host->cmd_flags & REG_DATA)
339 ? jmb38x_ms_read_data(host, buf, p_cnt)
340 : jmb38x_ms_read_reg_data(host, buf, p_cnt);
341
342 if (host->req->long_data) {
343 kunmap_atomic(buf - p_off, KM_BIO_SRC_IRQ);
344 local_irq_restore(flags);
345 }
346
347 if (!t_size)
348 break;
349 host->block_pos += t_size;
350 length -= t_size;
351 off += t_size;
352 }
353
354 if (!length && host->req->data_dir == WRITE) {
355 if (host->cmd_flags & REG_DATA) {
356 writel(host->io_word[0], host->addr + TPC_P0);
357 writel(host->io_word[1], host->addr + TPC_P1);
358 } else if (host->io_pos) {
359 writel(host->io_word[0], host->addr + DATA);
360 }
361 }
362
363 return length;
364}
365
366static int jmb38x_ms_issue_cmd(struct memstick_host *msh)
367{
368 struct jmb38x_ms_host *host = memstick_priv(msh);
369 unsigned char *data;
370 unsigned int data_len, cmd, t_val;
371
372 if (!(STATUS_HAS_MEDIA & readl(host->addr + STATUS))) {
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100373 dev_dbg(&msh->dev, "no media status\n");
Alex Dubov60fdd932008-03-10 11:43:43 -0700374 host->req->error = -ETIME;
375 return host->req->error;
376 }
377
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700378 dev_dbg(&msh->dev, "control %08x\n", readl(host->addr + HOST_CONTROL));
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100379 dev_dbg(&msh->dev, "status %08x\n", readl(host->addr + INT_STATUS));
380 dev_dbg(&msh->dev, "hstatus %08x\n", readl(host->addr + STATUS));
Alex Dubov60fdd932008-03-10 11:43:43 -0700381
382 host->cmd_flags = 0;
383 host->block_pos = 0;
384 host->io_pos = 0;
385 host->io_word[0] = 0;
386 host->io_word[1] = 0;
387
388 cmd = host->req->tpc << 16;
389 cmd |= TPC_DATA_SEL;
390
391 if (host->req->data_dir == READ)
392 cmd |= TPC_DIR;
Takashi Iwai23c59472011-01-12 17:01:01 -0800393
394 if (host->req->need_card_int) {
395 if (host->ifmode == MEMSTICK_SERIAL)
396 cmd |= TPC_GET_INT;
397 else
398 cmd |= TPC_WAIT_INT;
399 }
Alex Dubov60fdd932008-03-10 11:43:43 -0700400
401 data = host->req->data;
402
Alex Dubovead70772008-03-19 17:01:06 -0700403 if (!no_dma)
404 host->cmd_flags |= DMA_DATA;
Alex Dubov60fdd932008-03-10 11:43:43 -0700405
406 if (host->req->long_data) {
407 data_len = host->req->sg.length;
408 } else {
409 data_len = host->req->data_len;
Alex Dubovead70772008-03-19 17:01:06 -0700410 host->cmd_flags &= ~DMA_DATA;
Alex Dubov60fdd932008-03-10 11:43:43 -0700411 }
412
413 if (data_len <= 8) {
414 cmd &= ~(TPC_DATA_SEL | 0xf);
415 host->cmd_flags |= REG_DATA;
416 cmd |= data_len & 0xf;
Alex Dubovead70772008-03-19 17:01:06 -0700417 host->cmd_flags &= ~DMA_DATA;
Alex Dubov60fdd932008-03-10 11:43:43 -0700418 }
419
Alex Dubovead70772008-03-19 17:01:06 -0700420 if (host->cmd_flags & DMA_DATA) {
Alex Dubov60fdd932008-03-10 11:43:43 -0700421 if (1 != pci_map_sg(host->chip->pdev, &host->req->sg, 1,
422 host->req->data_dir == READ
423 ? PCI_DMA_FROMDEVICE
424 : PCI_DMA_TODEVICE)) {
425 host->req->error = -ENOMEM;
426 return host->req->error;
427 }
428 data_len = sg_dma_len(&host->req->sg);
429 writel(sg_dma_address(&host->req->sg),
430 host->addr + DMA_ADDRESS);
431 writel(((1 << 16) & BLOCK_COUNT_MASK)
432 | (data_len & BLOCK_SIZE_MASK),
433 host->addr + BLOCK);
434 writel(DMA_CONTROL_ENABLE, host->addr + DMA_CONTROL);
435 } else if (!(host->cmd_flags & REG_DATA)) {
436 writel(((1 << 16) & BLOCK_COUNT_MASK)
437 | (data_len & BLOCK_SIZE_MASK),
438 host->addr + BLOCK);
439 t_val = readl(host->addr + INT_STATUS_ENABLE);
440 t_val |= host->req->data_dir == READ
441 ? INT_STATUS_FIFO_RRDY
442 : INT_STATUS_FIFO_WRDY;
443
444 writel(t_val, host->addr + INT_STATUS_ENABLE);
445 writel(t_val, host->addr + INT_SIGNAL_ENABLE);
446 } else {
447 cmd &= ~(TPC_DATA_SEL | 0xf);
448 host->cmd_flags |= REG_DATA;
449 cmd |= data_len & 0xf;
450
451 if (host->req->data_dir == WRITE) {
452 jmb38x_ms_transfer_data(host);
453 writel(host->io_word[0], host->addr + TPC_P0);
454 writel(host->io_word[1], host->addr + TPC_P1);
455 }
456 }
457
458 mod_timer(&host->timer, jiffies + host->timeout_jiffies);
459 writel(HOST_CONTROL_LED | readl(host->addr + HOST_CONTROL),
460 host->addr + HOST_CONTROL);
461 host->req->error = 0;
462
463 writel(cmd, host->addr + TPC);
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100464 dev_dbg(&msh->dev, "executing TPC %08x, len %x\n", cmd, data_len);
Alex Dubov60fdd932008-03-10 11:43:43 -0700465
466 return 0;
467}
468
469static void jmb38x_ms_complete_cmd(struct memstick_host *msh, int last)
470{
471 struct jmb38x_ms_host *host = memstick_priv(msh);
472 unsigned int t_val = 0;
473 int rc;
474
475 del_timer(&host->timer);
476
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100477 dev_dbg(&msh->dev, "c control %08x\n",
Alex Dubov60fdd932008-03-10 11:43:43 -0700478 readl(host->addr + HOST_CONTROL));
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100479 dev_dbg(&msh->dev, "c status %08x\n",
Alex Dubov60fdd932008-03-10 11:43:43 -0700480 readl(host->addr + INT_STATUS));
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100481 dev_dbg(&msh->dev, "c hstatus %08x\n", readl(host->addr + STATUS));
Alex Dubov60fdd932008-03-10 11:43:43 -0700482
Alex Dubovead70772008-03-19 17:01:06 -0700483 host->req->int_reg = readl(host->addr + STATUS) & 0xff;
Alex Dubov60fdd932008-03-10 11:43:43 -0700484
Alex Dubovead70772008-03-19 17:01:06 -0700485 writel(0, host->addr + BLOCK);
486 writel(0, host->addr + DMA_CONTROL);
487
488 if (host->cmd_flags & DMA_DATA) {
Alex Dubov60fdd932008-03-10 11:43:43 -0700489 pci_unmap_sg(host->chip->pdev, &host->req->sg, 1,
490 host->req->data_dir == READ
491 ? PCI_DMA_FROMDEVICE : PCI_DMA_TODEVICE);
492 } else {
493 t_val = readl(host->addr + INT_STATUS_ENABLE);
494 if (host->req->data_dir == READ)
495 t_val &= ~INT_STATUS_FIFO_RRDY;
496 else
497 t_val &= ~INT_STATUS_FIFO_WRDY;
498
499 writel(t_val, host->addr + INT_STATUS_ENABLE);
500 writel(t_val, host->addr + INT_SIGNAL_ENABLE);
501 }
502
503 writel((~HOST_CONTROL_LED) & readl(host->addr + HOST_CONTROL),
504 host->addr + HOST_CONTROL);
505
506 if (!last) {
507 do {
508 rc = memstick_next_req(msh, &host->req);
509 } while (!rc && jmb38x_ms_issue_cmd(msh));
510 } else {
511 do {
512 rc = memstick_next_req(msh, &host->req);
513 if (!rc)
514 host->req->error = -ETIME;
515 } while (!rc);
516 }
517}
518
519static irqreturn_t jmb38x_ms_isr(int irq, void *dev_id)
520{
521 struct memstick_host *msh = dev_id;
522 struct jmb38x_ms_host *host = memstick_priv(msh);
523 unsigned int irq_status;
524
525 spin_lock(&host->lock);
526 irq_status = readl(host->addr + INT_STATUS);
527 dev_dbg(&host->chip->pdev->dev, "irq_status = %08x\n", irq_status);
528 if (irq_status == 0 || irq_status == (~0)) {
529 spin_unlock(&host->lock);
530 return IRQ_NONE;
531 }
532
533 if (host->req) {
534 if (irq_status & INT_STATUS_ANY_ERR) {
535 if (irq_status & INT_STATUS_CRC_ERR)
536 host->req->error = -EILSEQ;
Takashi Iwai23c59472011-01-12 17:01:01 -0800537 else if (irq_status & INT_STATUS_TPC_ERR) {
538 dev_dbg(&host->chip->pdev->dev, "TPC_ERR\n");
539 jmb38x_ms_complete_cmd(msh, 0);
540 } else
Alex Dubov60fdd932008-03-10 11:43:43 -0700541 host->req->error = -ETIME;
542 } else {
Alex Dubovead70772008-03-19 17:01:06 -0700543 if (host->cmd_flags & DMA_DATA) {
Alex Dubov60fdd932008-03-10 11:43:43 -0700544 if (irq_status & INT_STATUS_EOTRAN)
545 host->cmd_flags |= FIFO_READY;
546 } else {
547 if (irq_status & (INT_STATUS_FIFO_RRDY
548 | INT_STATUS_FIFO_WRDY))
549 jmb38x_ms_transfer_data(host);
550
551 if (irq_status & INT_STATUS_EOTRAN) {
552 jmb38x_ms_transfer_data(host);
553 host->cmd_flags |= FIFO_READY;
554 }
555 }
556
557 if (irq_status & INT_STATUS_EOTPC) {
558 host->cmd_flags |= CMD_READY;
559 if (host->cmd_flags & REG_DATA) {
560 if (host->req->data_dir == READ) {
561 host->io_word[0]
562 = readl(host->addr
563 + TPC_P0);
564 host->io_word[1]
565 = readl(host->addr
566 + TPC_P1);
567 host->io_pos = 8;
568
569 jmb38x_ms_transfer_data(host);
570 }
571 host->cmd_flags |= FIFO_READY;
572 }
573 }
574 }
575 }
576
577 if (irq_status & (INT_STATUS_MEDIA_IN | INT_STATUS_MEDIA_OUT)) {
578 dev_dbg(&host->chip->pdev->dev, "media changed\n");
579 memstick_detect_change(msh);
580 }
581
582 writel(irq_status, host->addr + INT_STATUS);
583
584 if (host->req
585 && (((host->cmd_flags & CMD_READY)
586 && (host->cmd_flags & FIFO_READY))
587 || host->req->error))
588 jmb38x_ms_complete_cmd(msh, 0);
589
590 spin_unlock(&host->lock);
591 return IRQ_HANDLED;
592}
593
594static void jmb38x_ms_abort(unsigned long data)
595{
596 struct memstick_host *msh = (struct memstick_host *)data;
597 struct jmb38x_ms_host *host = memstick_priv(msh);
598 unsigned long flags;
599
600 dev_dbg(&host->chip->pdev->dev, "abort\n");
601 spin_lock_irqsave(&host->lock, flags);
602 if (host->req) {
603 host->req->error = -ETIME;
604 jmb38x_ms_complete_cmd(msh, 0);
605 }
606 spin_unlock_irqrestore(&host->lock, flags);
607}
608
Alex Dubovf1d82692008-07-25 19:45:02 -0700609static void jmb38x_ms_req_tasklet(unsigned long data)
Alex Dubov60fdd932008-03-10 11:43:43 -0700610{
Alex Dubovf1d82692008-07-25 19:45:02 -0700611 struct memstick_host *msh = (struct memstick_host *)data;
Alex Dubov60fdd932008-03-10 11:43:43 -0700612 struct jmb38x_ms_host *host = memstick_priv(msh);
613 unsigned long flags;
614 int rc;
615
616 spin_lock_irqsave(&host->lock, flags);
Alex Dubovf1d82692008-07-25 19:45:02 -0700617 if (!host->req) {
618 do {
619 rc = memstick_next_req(msh, &host->req);
620 dev_dbg(&host->chip->pdev->dev, "tasklet req %d\n", rc);
621 } while (!rc && jmb38x_ms_issue_cmd(msh));
Alex Dubov60fdd932008-03-10 11:43:43 -0700622 }
Alex Dubov60fdd932008-03-10 11:43:43 -0700623 spin_unlock_irqrestore(&host->lock, flags);
624}
625
Alex Dubovf1d82692008-07-25 19:45:02 -0700626static void jmb38x_ms_dummy_submit(struct memstick_host *msh)
627{
628 return;
629}
630
631static void jmb38x_ms_submit_req(struct memstick_host *msh)
632{
633 struct jmb38x_ms_host *host = memstick_priv(msh);
634
635 tasklet_schedule(&host->notify);
636}
637
Alex Dubovb7789992008-07-25 19:45:00 -0700638static int jmb38x_ms_reset(struct jmb38x_ms_host *host)
Alex Dubov60fdd932008-03-10 11:43:43 -0700639{
Alex Dubovb7789992008-07-25 19:45:00 -0700640 int cnt;
Alex Dubov60fdd932008-03-10 11:43:43 -0700641
Alex Dubovb7789992008-07-25 19:45:00 -0700642 writel(HOST_CONTROL_RESET_REQ | HOST_CONTROL_CLOCK_EN
643 | readl(host->addr + HOST_CONTROL),
644 host->addr + HOST_CONTROL);
645 mmiowb();
Alex Dubov60fdd932008-03-10 11:43:43 -0700646
Alex Dubovb7789992008-07-25 19:45:00 -0700647 for (cnt = 0; cnt < 20; ++cnt) {
648 if (!(HOST_CONTROL_RESET_REQ
649 & readl(host->addr + HOST_CONTROL)))
650 goto reset_next;
651
Alex Dubovcf821e82008-03-19 17:01:08 -0700652 ndelay(20);
Alex Dubov60fdd932008-03-10 11:43:43 -0700653 }
Alex Dubovb7789992008-07-25 19:45:00 -0700654 dev_dbg(&host->chip->pdev->dev, "reset_req timeout\n");
Alex Dubov60fdd932008-03-10 11:43:43 -0700655
Alex Dubovb7789992008-07-25 19:45:00 -0700656reset_next:
657 writel(HOST_CONTROL_RESET | HOST_CONTROL_CLOCK_EN
658 | readl(host->addr + HOST_CONTROL),
659 host->addr + HOST_CONTROL);
660 mmiowb();
661
662 for (cnt = 0; cnt < 20; ++cnt) {
663 if (!(HOST_CONTROL_RESET
664 & readl(host->addr + HOST_CONTROL)))
665 goto reset_ok;
666
667 ndelay(20);
668 }
669 dev_dbg(&host->chip->pdev->dev, "reset timeout\n");
670 return -EIO;
671
672reset_ok:
Alex Dubovcf821e82008-03-19 17:01:08 -0700673 mmiowb();
Alex Dubov60fdd932008-03-10 11:43:43 -0700674 writel(INT_STATUS_ALL, host->addr + INT_SIGNAL_ENABLE);
Alex Dubovcf821e82008-03-19 17:01:08 -0700675 writel(INT_STATUS_ALL, host->addr + INT_STATUS_ENABLE);
Alex Dubovb7789992008-07-25 19:45:00 -0700676 return 0;
Alex Dubov60fdd932008-03-10 11:43:43 -0700677}
678
Alex Dubovb7789992008-07-25 19:45:00 -0700679static int jmb38x_ms_set_param(struct memstick_host *msh,
680 enum memstick_param param,
681 int value)
Alex Dubov60fdd932008-03-10 11:43:43 -0700682{
683 struct jmb38x_ms_host *host = memstick_priv(msh);
Alex Dubovcf821e82008-03-19 17:01:08 -0700684 unsigned int host_ctl = readl(host->addr + HOST_CONTROL);
Takashi Iwai23c59472011-01-12 17:01:01 -0800685 unsigned int clock_ctl = CLOCK_CONTROL_BY_MMIO, clock_delay = 0;
Alex Dubovb7789992008-07-25 19:45:00 -0700686 int rc = 0;
Alex Dubov60fdd932008-03-10 11:43:43 -0700687
688 switch (param) {
689 case MEMSTICK_POWER:
690 if (value == MEMSTICK_POWER_ON) {
Alex Dubovb7789992008-07-25 19:45:00 -0700691 rc = jmb38x_ms_reset(host);
692 if (rc)
693 return rc;
694
695 host_ctl = 7;
696 host_ctl |= HOST_CONTROL_POWER_EN
Takashi Iwai23c59472011-01-12 17:01:01 -0800697 | HOST_CONTROL_CLOCK_EN;
Alex Dubovb7789992008-07-25 19:45:00 -0700698 writel(host_ctl, host->addr + HOST_CONTROL);
Alex Dubov60fdd932008-03-10 11:43:43 -0700699
700 writel(host->id ? PAD_PU_PD_ON_MS_SOCK1
Alex Dubovcf821e82008-03-19 17:01:08 -0700701 : PAD_PU_PD_ON_MS_SOCK0,
Alex Dubov60fdd932008-03-10 11:43:43 -0700702 host->addr + PAD_PU_PD);
703
704 writel(PAD_OUTPUT_ENABLE_MS,
705 host->addr + PAD_OUTPUT_ENABLE);
706
Alex Dubovb7789992008-07-25 19:45:00 -0700707 msleep(10);
Alex Dubov60fdd932008-03-10 11:43:43 -0700708 dev_dbg(&host->chip->pdev->dev, "power on\n");
709 } else if (value == MEMSTICK_POWER_OFF) {
Alex Dubovcf821e82008-03-19 17:01:08 -0700710 host_ctl &= ~(HOST_CONTROL_POWER_EN
711 | HOST_CONTROL_CLOCK_EN);
712 writel(host_ctl, host->addr + HOST_CONTROL);
Alex Dubov60fdd932008-03-10 11:43:43 -0700713 writel(0, host->addr + PAD_OUTPUT_ENABLE);
714 writel(PAD_PU_PD_OFF, host->addr + PAD_PU_PD);
715 dev_dbg(&host->chip->pdev->dev, "power off\n");
Alex Dubovb7789992008-07-25 19:45:00 -0700716 } else
717 return -EINVAL;
Alex Dubov60fdd932008-03-10 11:43:43 -0700718 break;
719 case MEMSTICK_INTERFACE:
Takashi Iwai23c59472011-01-12 17:01:01 -0800720 dev_dbg(&host->chip->pdev->dev,
721 "Set Host Interface Mode to %d\n", value);
722 host_ctl &= ~(HOST_CONTROL_FAST_CLK | HOST_CONTROL_REI |
723 HOST_CONTROL_REO);
724 host_ctl |= HOST_CONTROL_TDELAY_EN | HOST_CONTROL_HW_OC_P;
Alex Dubov60fdd932008-03-10 11:43:43 -0700725 host_ctl &= ~(3 << HOST_CONTROL_IF_SHIFT);
Alex Dubov60fdd932008-03-10 11:43:43 -0700726
727 if (value == MEMSTICK_SERIAL) {
Alex Dubov60fdd932008-03-10 11:43:43 -0700728 host_ctl |= HOST_CONTROL_IF_SERIAL
729 << HOST_CONTROL_IF_SHIFT;
730 host_ctl |= HOST_CONTROL_REI;
Takashi Iwai23c59472011-01-12 17:01:01 -0800731 clock_ctl |= CLOCK_CONTROL_40MHZ;
732 clock_delay = 0;
Alex Dubov60fdd932008-03-10 11:43:43 -0700733 } else if (value == MEMSTICK_PAR4) {
Takashi Iwai23c59472011-01-12 17:01:01 -0800734 host_ctl |= HOST_CONTROL_FAST_CLK;
Alex Dubov60fdd932008-03-10 11:43:43 -0700735 host_ctl |= HOST_CONTROL_IF_PAR4
736 << HOST_CONTROL_IF_SHIFT;
Takashi Iwai23c59472011-01-12 17:01:01 -0800737 host_ctl |= HOST_CONTROL_REO;
738 clock_ctl |= CLOCK_CONTROL_40MHZ;
739 clock_delay = 4;
Alex Dubov60fdd932008-03-10 11:43:43 -0700740 } else if (value == MEMSTICK_PAR8) {
741 host_ctl |= HOST_CONTROL_FAST_CLK;
742 host_ctl |= HOST_CONTROL_IF_PAR8
743 << HOST_CONTROL_IF_SHIFT;
Takashi Iwai23c59472011-01-12 17:01:01 -0800744 clock_ctl |= CLOCK_CONTROL_50MHZ;
745 clock_delay = 0;
Alex Dubovb7789992008-07-25 19:45:00 -0700746 } else
747 return -EINVAL;
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700748
Alex Dubov60fdd932008-03-10 11:43:43 -0700749 writel(host_ctl, host->addr + HOST_CONTROL);
Takashi Iwai23c59472011-01-12 17:01:01 -0800750 writel(CLOCK_CONTROL_OFF, host->addr + CLOCK_CONTROL);
Alex Dubovcf821e82008-03-19 17:01:08 -0700751 writel(clock_ctl, host->addr + CLOCK_CONTROL);
Takashi Iwai23c59472011-01-12 17:01:01 -0800752 pci_write_config_byte(host->chip->pdev,
753 PCI_CTL_CLOCK_DLY_ADDR + 1,
754 clock_delay);
755 host->ifmode = value;
Alex Dubov60fdd932008-03-10 11:43:43 -0700756 break;
757 };
Alex Dubovb7789992008-07-25 19:45:00 -0700758 return 0;
Alex Dubov60fdd932008-03-10 11:43:43 -0700759}
760
Takashi Iwai68860b92011-01-12 17:01:02 -0800761#define PCI_PMOS0_CONTROL 0xae
762#define PMOS0_ENABLE 0x01
763#define PMOS0_OVERCURRENT_LEVEL_2_4V 0x06
764#define PMOS0_EN_OVERCURRENT_DEBOUNCE 0x40
765#define PMOS0_SW_LED_POLARITY_ENABLE 0x80
766#define PMOS0_ACTIVE_BITS (PMOS0_ENABLE | PMOS0_EN_OVERCURRENT_DEBOUNCE | \
767 PMOS0_OVERCURRENT_LEVEL_2_4V)
768#define PCI_CLOCK_CTL 0xb9
769
770static int jmb38x_ms_pmos(struct pci_dev *pdev, int flag)
771{
772 unsigned char val;
773
774 pci_read_config_byte(pdev, PCI_PMOS0_CONTROL, &val);
775 if (flag)
776 val |= PMOS0_ACTIVE_BITS;
777 else
778 val &= ~PMOS0_ACTIVE_BITS;
779 pci_write_config_byte(pdev, PCI_PMOS0_CONTROL, val);
780 dev_dbg(&pdev->dev, "JMB38x: set PMOS0 val 0x%x\n", val);
781
782 pci_read_config_byte(pdev, PCI_CLOCK_CTL, &val);
783 pci_write_config_byte(pdev, PCI_CLOCK_CTL, val & ~0x0f);
784 pci_write_config_byte(pdev, PCI_CLOCK_CTL, val | 0x01);
785 dev_dbg(&pdev->dev, "Clock Control by PCI config is disabled!\n");
786
787 return 0;
788}
789
Alex Dubov60fdd932008-03-10 11:43:43 -0700790#ifdef CONFIG_PM
791
792static int jmb38x_ms_suspend(struct pci_dev *dev, pm_message_t state)
793{
794 struct jmb38x_ms *jm = pci_get_drvdata(dev);
795 int cnt;
796
797 for (cnt = 0; cnt < jm->host_cnt; ++cnt) {
798 if (!jm->hosts[cnt])
799 break;
800 memstick_suspend_host(jm->hosts[cnt]);
801 }
802
803 pci_save_state(dev);
804 pci_enable_wake(dev, pci_choose_state(dev, state), 0);
805 pci_disable_device(dev);
806 pci_set_power_state(dev, pci_choose_state(dev, state));
807 return 0;
808}
809
810static int jmb38x_ms_resume(struct pci_dev *dev)
811{
812 struct jmb38x_ms *jm = pci_get_drvdata(dev);
813 int rc;
814
815 pci_set_power_state(dev, PCI_D0);
816 pci_restore_state(dev);
817 rc = pci_enable_device(dev);
818 if (rc)
819 return rc;
820 pci_set_master(dev);
821
Takashi Iwai68860b92011-01-12 17:01:02 -0800822 jmb38x_ms_pmos(dev, 1);
Alex Dubov60fdd932008-03-10 11:43:43 -0700823
824 for (rc = 0; rc < jm->host_cnt; ++rc) {
825 if (!jm->hosts[rc])
826 break;
827 memstick_resume_host(jm->hosts[rc]);
828 memstick_detect_change(jm->hosts[rc]);
829 }
830
831 return 0;
832}
833
834#else
835
836#define jmb38x_ms_suspend NULL
837#define jmb38x_ms_resume NULL
838
839#endif /* CONFIG_PM */
840
841static int jmb38x_ms_count_slots(struct pci_dev *pdev)
842{
843 int cnt, rc = 0;
844
845 for (cnt = 0; cnt < PCI_ROM_RESOURCE; ++cnt) {
846 if (!(IORESOURCE_MEM & pci_resource_flags(pdev, cnt)))
847 break;
848
849 if (256 != pci_resource_len(pdev, cnt))
850 break;
851
852 ++rc;
853 }
854 return rc;
855}
856
857static struct memstick_host *jmb38x_ms_alloc_host(struct jmb38x_ms *jm, int cnt)
858{
859 struct memstick_host *msh;
860 struct jmb38x_ms_host *host;
861
862 msh = memstick_alloc_host(sizeof(struct jmb38x_ms_host),
863 &jm->pdev->dev);
864 if (!msh)
865 return NULL;
866
867 host = memstick_priv(msh);
868 host->chip = jm;
869 host->addr = ioremap(pci_resource_start(jm->pdev, cnt),
870 pci_resource_len(jm->pdev, cnt));
871 if (!host->addr)
872 goto err_out_free;
873
874 spin_lock_init(&host->lock);
875 host->id = cnt;
Greg Kroah-Hartmanb98cb4b2008-05-02 06:02:41 +0200876 snprintf(host->host_id, sizeof(host->host_id), DRIVER_NAME ":slot%d",
Alex Dubov60fdd932008-03-10 11:43:43 -0700877 host->id);
878 host->irq = jm->pdev->irq;
Alex Dubovead70772008-03-19 17:01:06 -0700879 host->timeout_jiffies = msecs_to_jiffies(1000);
Alex Dubovf1d82692008-07-25 19:45:02 -0700880
881 tasklet_init(&host->notify, jmb38x_ms_req_tasklet, (unsigned long)msh);
882 msh->request = jmb38x_ms_submit_req;
Alex Dubov60fdd932008-03-10 11:43:43 -0700883 msh->set_param = jmb38x_ms_set_param;
Alex Dubovead70772008-03-19 17:01:06 -0700884
Alex Dubov60fdd932008-03-10 11:43:43 -0700885 msh->caps = MEMSTICK_CAP_PAR4 | MEMSTICK_CAP_PAR8;
886
887 setup_timer(&host->timer, jmb38x_ms_abort, (unsigned long)msh);
888
889 if (!request_irq(host->irq, jmb38x_ms_isr, IRQF_SHARED, host->host_id,
890 msh))
891 return msh;
892
893 iounmap(host->addr);
894err_out_free:
895 kfree(msh);
896 return NULL;
897}
898
899static void jmb38x_ms_free_host(struct memstick_host *msh)
900{
901 struct jmb38x_ms_host *host = memstick_priv(msh);
902
903 free_irq(host->irq, msh);
904 iounmap(host->addr);
905 memstick_free_host(msh);
906}
907
908static int jmb38x_ms_probe(struct pci_dev *pdev,
909 const struct pci_device_id *dev_id)
910{
911 struct jmb38x_ms *jm;
912 int pci_dev_busy = 0;
913 int rc, cnt;
914
Yang Hongyang284901a2009-04-06 19:01:15 -0700915 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Alex Dubov60fdd932008-03-10 11:43:43 -0700916 if (rc)
917 return rc;
918
919 rc = pci_enable_device(pdev);
920 if (rc)
921 return rc;
922
923 pci_set_master(pdev);
924
925 rc = pci_request_regions(pdev, DRIVER_NAME);
926 if (rc) {
927 pci_dev_busy = 1;
928 goto err_out;
929 }
930
Takashi Iwai68860b92011-01-12 17:01:02 -0800931 jmb38x_ms_pmos(pdev, 1);
Alex Dubov60fdd932008-03-10 11:43:43 -0700932
933 cnt = jmb38x_ms_count_slots(pdev);
934 if (!cnt) {
935 rc = -ENODEV;
936 pci_dev_busy = 1;
937 goto err_out;
938 }
939
940 jm = kzalloc(sizeof(struct jmb38x_ms)
941 + cnt * sizeof(struct memstick_host *), GFP_KERNEL);
942 if (!jm) {
943 rc = -ENOMEM;
944 goto err_out_int;
945 }
946
947 jm->pdev = pdev;
948 jm->host_cnt = cnt;
949 pci_set_drvdata(pdev, jm);
950
951 for (cnt = 0; cnt < jm->host_cnt; ++cnt) {
952 jm->hosts[cnt] = jmb38x_ms_alloc_host(jm, cnt);
953 if (!jm->hosts[cnt])
954 break;
955
956 rc = memstick_add_host(jm->hosts[cnt]);
957
958 if (rc) {
959 jmb38x_ms_free_host(jm->hosts[cnt]);
960 jm->hosts[cnt] = NULL;
961 break;
962 }
963 }
964
965 if (cnt)
966 return 0;
967
968 rc = -ENODEV;
969
970 pci_set_drvdata(pdev, NULL);
971 kfree(jm);
972err_out_int:
973 pci_release_regions(pdev);
974err_out:
975 if (!pci_dev_busy)
976 pci_disable_device(pdev);
977 return rc;
978}
979
980static void jmb38x_ms_remove(struct pci_dev *dev)
981{
982 struct jmb38x_ms *jm = pci_get_drvdata(dev);
983 struct jmb38x_ms_host *host;
984 int cnt;
985 unsigned long flags;
986
987 for (cnt = 0; cnt < jm->host_cnt; ++cnt) {
988 if (!jm->hosts[cnt])
989 break;
990
991 host = memstick_priv(jm->hosts[cnt]);
992
Alex Dubovf1d82692008-07-25 19:45:02 -0700993 jm->hosts[cnt]->request = jmb38x_ms_dummy_submit;
994 tasklet_kill(&host->notify);
Alex Dubov60fdd932008-03-10 11:43:43 -0700995 writel(0, host->addr + INT_SIGNAL_ENABLE);
996 writel(0, host->addr + INT_STATUS_ENABLE);
997 mmiowb();
998 dev_dbg(&jm->pdev->dev, "interrupts off\n");
999 spin_lock_irqsave(&host->lock, flags);
1000 if (host->req) {
1001 host->req->error = -ETIME;
1002 jmb38x_ms_complete_cmd(jm->hosts[cnt], 1);
1003 }
1004 spin_unlock_irqrestore(&host->lock, flags);
1005
1006 memstick_remove_host(jm->hosts[cnt]);
1007 dev_dbg(&jm->pdev->dev, "host removed\n");
1008
1009 jmb38x_ms_free_host(jm->hosts[cnt]);
1010 }
1011
Takashi Iwai68860b92011-01-12 17:01:02 -08001012 jmb38x_ms_pmos(dev, 0);
1013
Alex Dubov60fdd932008-03-10 11:43:43 -07001014 pci_set_drvdata(dev, NULL);
1015 pci_release_regions(dev);
1016 pci_disable_device(dev);
1017 kfree(jm);
1018}
1019
1020static struct pci_device_id jmb38x_ms_id_tbl [] = {
1021 { PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_MS, PCI_ANY_ID,
1022 PCI_ANY_ID, 0, 0, 0 },
1023 { }
1024};
1025
1026static struct pci_driver jmb38x_ms_driver = {
1027 .name = DRIVER_NAME,
1028 .id_table = jmb38x_ms_id_tbl,
1029 .probe = jmb38x_ms_probe,
1030 .remove = jmb38x_ms_remove,
1031 .suspend = jmb38x_ms_suspend,
1032 .resume = jmb38x_ms_resume
1033};
1034
1035static int __init jmb38x_ms_init(void)
1036{
1037 return pci_register_driver(&jmb38x_ms_driver);
1038}
1039
1040static void __exit jmb38x_ms_exit(void)
1041{
1042 pci_unregister_driver(&jmb38x_ms_driver);
1043}
1044
1045MODULE_AUTHOR("Alex Dubov");
1046MODULE_DESCRIPTION("JMicron jmb38x MemoryStick driver");
1047MODULE_LICENSE("GPL");
1048MODULE_DEVICE_TABLE(pci, jmb38x_ms_id_tbl);
1049
1050module_init(jmb38x_ms_init);
1051module_exit(jmb38x_ms_exit);