1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright by Michał Mirosław, 2008-2009
7 #include <linux/kernel.h>
8 #include <linux/module.h>
10 #include <linux/delay.h>
11 #include "cb710-mmc.h"
13 #define CB710_MMC_REQ_TIMEOUT_MS 2000
15 static const u8 cb710_clock_divider_log2
[8] = {
16 /* 1, 2, 4, 8, 16, 32, 128, 512 */
17 0, 1, 2, 3, 4, 5, 7, 9
19 #define CB710_MAX_DIVIDER_IDX \
20 (ARRAY_SIZE(cb710_clock_divider_log2) - 1)
22 static const u8 cb710_src_freq_mhz
[16] = {
23 33, 10, 20, 25, 30, 35, 40, 45,
24 50, 55, 60, 65, 70, 75, 80, 85
27 static void cb710_mmc_select_clock_divider(struct mmc_host
*mmc
, int hz
)
29 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
30 struct pci_dev
*pdev
= cb710_slot_to_chip(slot
)->pdev
;
35 /* on CB710 in HP nx9500:
37 * indexes 1-7 work as written in the table
38 * indexes 0,8-15 give no clock output
40 pci_read_config_dword(pdev
, 0x48, &src_freq_idx
);
41 src_freq_idx
= (src_freq_idx
>> 16) & 0xF;
42 src_hz
= cb710_src_freq_mhz
[src_freq_idx
] * 1000000;
44 for (divider_idx
= 0; divider_idx
< CB710_MAX_DIVIDER_IDX
; ++divider_idx
) {
45 if (hz
>= src_hz
>> cb710_clock_divider_log2
[divider_idx
])
51 else if (divider_idx
== 0)
54 cb710_pci_update_config_reg(pdev
, 0x40, ~0xF0000000, divider_idx
<< 28);
56 dev_dbg(cb710_slot_dev(slot
),
57 "clock set to %d Hz, wanted %d Hz; src_freq_idx = %d, divider_idx = %d|%d\n",
58 src_hz
>> cb710_clock_divider_log2
[divider_idx
& 7],
59 hz
, src_freq_idx
, divider_idx
& 7, divider_idx
& 8);
62 static void __cb710_mmc_enable_irq(struct cb710_slot
*slot
,
63 unsigned short enable
, unsigned short mask
)
66 * - it gets set later if any interrupt sources are enabled */
67 mask
|= CB710_MMC_IE_IRQ_ENABLE
;
69 /* look like interrupt is fired whenever
70 * WORD[0x0C] & WORD[0x10] != 0;
71 * -> bit 15 port 0x0C seems to be global interrupt enable
74 enable
= (cb710_read_port_16(slot
, CB710_MMC_IRQ_ENABLE_PORT
)
78 enable
|= CB710_MMC_IE_IRQ_ENABLE
;
80 cb710_write_port_16(slot
, CB710_MMC_IRQ_ENABLE_PORT
, enable
);
83 static void cb710_mmc_enable_irq(struct cb710_slot
*slot
,
84 unsigned short enable
, unsigned short mask
)
86 struct cb710_mmc_reader
*reader
= mmc_priv(cb710_slot_to_mmc(slot
));
89 spin_lock_irqsave(&reader
->irq_lock
, flags
);
90 /* this is the only thing irq_lock protects */
91 __cb710_mmc_enable_irq(slot
, enable
, mask
);
92 spin_unlock_irqrestore(&reader
->irq_lock
, flags
);
95 static void cb710_mmc_reset_events(struct cb710_slot
*slot
)
97 cb710_write_port_8(slot
, CB710_MMC_STATUS0_PORT
, 0xFF);
98 cb710_write_port_8(slot
, CB710_MMC_STATUS1_PORT
, 0xFF);
99 cb710_write_port_8(slot
, CB710_MMC_STATUS2_PORT
, 0xFF);
102 static void cb710_mmc_enable_4bit_data(struct cb710_slot
*slot
, int enable
)
105 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
,
106 CB710_MMC_C1_4BIT_DATA_BUS
, 0);
108 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
,
109 0, CB710_MMC_C1_4BIT_DATA_BUS
);
112 static int cb710_check_event(struct cb710_slot
*slot
, u8 what
)
116 status
= cb710_read_port_16(slot
, CB710_MMC_STATUS_PORT
);
118 if (status
& CB710_MMC_S0_FIFO_UNDERFLOW
) {
119 /* it is just a guess, so log it */
120 dev_dbg(cb710_slot_dev(slot
),
121 "CHECK : ignoring bit 6 in status %04X\n", status
);
122 cb710_write_port_8(slot
, CB710_MMC_STATUS0_PORT
,
123 CB710_MMC_S0_FIFO_UNDERFLOW
);
124 status
&= ~CB710_MMC_S0_FIFO_UNDERFLOW
;
127 if (status
& CB710_MMC_STATUS_ERROR_EVENTS
) {
128 dev_dbg(cb710_slot_dev(slot
),
129 "CHECK : returning EIO on status %04X\n", status
);
130 cb710_write_port_8(slot
, CB710_MMC_STATUS0_PORT
, status
& 0xFF);
131 cb710_write_port_8(slot
, CB710_MMC_STATUS1_PORT
,
136 /* 'what' is a bit in MMC_STATUS1 */
137 if ((status
>> 8) & what
) {
138 cb710_write_port_8(slot
, CB710_MMC_STATUS1_PORT
, what
);
145 static int cb710_wait_for_event(struct cb710_slot
*slot
, u8 what
)
148 unsigned limit
= 2000000; /* FIXME: real timeout */
150 #ifdef CONFIG_CB710_DEBUG
152 e
= cb710_read_port_32(slot
, CB710_MMC_STATUS_PORT
);
155 while (!(err
= cb710_check_event(slot
, what
))) {
157 cb710_dump_regs(cb710_slot_to_chip(slot
),
158 CB710_DUMP_REGS_MMC
);
165 #ifdef CONFIG_CB710_DEBUG
166 x
= cb710_read_port_32(slot
, CB710_MMC_STATUS_PORT
);
168 limit
= 2000000 - limit
;
170 dev_dbg(cb710_slot_dev(slot
),
171 "WAIT10: waited %d loops, what %d, entry val %08X, exit val %08X\n",
174 return err
< 0 ? err
: 0;
178 static int cb710_wait_while_busy(struct cb710_slot
*slot
, uint8_t mask
)
180 unsigned limit
= 500000; /* FIXME: real timeout */
183 #ifdef CONFIG_CB710_DEBUG
185 e
= cb710_read_port_32(slot
, CB710_MMC_STATUS_PORT
);
188 while (cb710_read_port_8(slot
, CB710_MMC_STATUS2_PORT
) & mask
) {
190 cb710_dump_regs(cb710_slot_to_chip(slot
),
191 CB710_DUMP_REGS_MMC
);
198 #ifdef CONFIG_CB710_DEBUG
199 x
= cb710_read_port_32(slot
, CB710_MMC_STATUS_PORT
);
201 limit
= 500000 - limit
;
203 dev_dbg(cb710_slot_dev(slot
),
204 "WAIT12: waited %d loops, mask %02X, entry val %08X, exit val %08X\n",
210 static void cb710_mmc_set_transfer_size(struct cb710_slot
*slot
,
211 size_t count
, size_t blocksize
)
213 cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
214 cb710_write_port_32(slot
, CB710_MMC_TRANSFER_SIZE_PORT
,
215 ((count
- 1) << 16)|(blocksize
- 1));
217 dev_vdbg(cb710_slot_dev(slot
), "set up for %zu block%s of %zu bytes\n",
218 count
, count
== 1 ? "" : "s", blocksize
);
221 static void cb710_mmc_fifo_hack(struct cb710_slot
*slot
)
223 /* without this, received data is prepended with 8-bytes of zeroes */
227 r1
= cb710_read_port_32(slot
, CB710_MMC_DATA_PORT
);
228 r2
= cb710_read_port_32(slot
, CB710_MMC_DATA_PORT
);
229 if (cb710_read_port_8(slot
, CB710_MMC_STATUS0_PORT
)
230 & CB710_MMC_S0_FIFO_UNDERFLOW
) {
231 cb710_write_port_8(slot
, CB710_MMC_STATUS0_PORT
,
232 CB710_MMC_S0_FIFO_UNDERFLOW
);
236 dev_dbg(cb710_slot_dev(slot
),
237 "FIFO-read-hack: expected STATUS0 bit was %s\n",
238 ok
? "set." : "NOT SET!");
239 dev_dbg(cb710_slot_dev(slot
),
240 "FIFO-read-hack: dwords ignored: %08X %08X - %s\n",
241 r1
, r2
, (r1
|r2
) ? "BAD (NOT ZERO)!" : "ok");
244 static int cb710_mmc_receive_pio(struct cb710_slot
*slot
,
245 struct sg_mapping_iter
*miter
, size_t dw_count
)
247 if (!(cb710_read_port_8(slot
, CB710_MMC_STATUS2_PORT
) & CB710_MMC_S2_FIFO_READY
)) {
248 int err
= cb710_wait_for_event(slot
,
249 CB710_MMC_S1_PIO_TRANSFER_DONE
);
254 cb710_sg_dwiter_write_from_io(miter
,
255 slot
->iobase
+ CB710_MMC_DATA_PORT
, dw_count
);
260 static bool cb710_is_transfer_size_supported(struct mmc_data
*data
)
262 return !(data
->blksz
& 15 && (data
->blocks
!= 1 || data
->blksz
!= 8));
265 static int cb710_mmc_receive(struct cb710_slot
*slot
, struct mmc_data
*data
)
267 struct sg_mapping_iter miter
;
268 size_t len
, blocks
= data
->blocks
;
271 /* TODO: I don't know how/if the hardware handles non-16B-boundary blocks
272 * except single 8B block */
273 if (unlikely(data
->blksz
& 15 && (data
->blocks
!= 1 || data
->blksz
!= 8)))
276 sg_miter_start(&miter
, data
->sg
, data
->sg_len
, SG_MITER_TO_SG
);
278 cb710_modify_port_8(slot
, CB710_MMC_CONFIG2_PORT
,
279 15, CB710_MMC_C2_READ_PIO_SIZE_MASK
);
281 cb710_mmc_fifo_hack(slot
);
283 while (blocks
-- > 0) {
287 err
= cb710_mmc_receive_pio(slot
, &miter
, 4);
296 cb710_modify_port_8(slot
, CB710_MMC_CONFIG2_PORT
,
297 len
- 1, CB710_MMC_C2_READ_PIO_SIZE_MASK
);
299 len
= (len
>= 8) ? 4 : 2;
300 err
= cb710_mmc_receive_pio(slot
, &miter
, len
);
305 sg_miter_stop(&miter
);
309 static int cb710_mmc_send(struct cb710_slot
*slot
, struct mmc_data
*data
)
311 struct sg_mapping_iter miter
;
312 size_t len
, blocks
= data
->blocks
;
315 /* TODO: I don't know how/if the hardware handles multiple
316 * non-16B-boundary blocks */
317 if (unlikely(data
->blocks
> 1 && data
->blksz
& 15))
320 sg_miter_start(&miter
, data
->sg
, data
->sg_len
, SG_MITER_FROM_SG
);
322 cb710_modify_port_8(slot
, CB710_MMC_CONFIG2_PORT
,
323 0, CB710_MMC_C2_READ_PIO_SIZE_MASK
);
325 while (blocks
-- > 0) {
326 len
= (data
->blksz
+ 15) >> 4;
328 if (!(cb710_read_port_8(slot
, CB710_MMC_STATUS2_PORT
)
329 & CB710_MMC_S2_FIFO_EMPTY
)) {
330 err
= cb710_wait_for_event(slot
,
331 CB710_MMC_S1_PIO_TRANSFER_DONE
);
335 cb710_sg_dwiter_read_to_io(&miter
,
336 slot
->iobase
+ CB710_MMC_DATA_PORT
, 4);
340 sg_miter_stop(&miter
);
344 static u16
cb710_encode_cmd_flags(struct cb710_mmc_reader
*reader
,
345 struct mmc_command
*cmd
)
347 unsigned int flags
= cmd
->flags
;
350 /* Windows driver returned 0 for commands for which no response
351 * is expected. It happened that there were only two such commands
352 * used: MMC_GO_IDLE_STATE and MMC_GO_INACTIVE_STATE so it might
353 * as well be a bug in that driver.
355 * Original driver set bit 14 for MMC/SD application
356 * commands. There's no difference 'on the wire' and
357 * it apparently works without it anyway.
360 switch (flags
& MMC_CMD_MASK
) {
361 case MMC_CMD_AC
: cb_flags
= CB710_MMC_CMD_AC
; break;
362 case MMC_CMD_ADTC
: cb_flags
= CB710_MMC_CMD_ADTC
; break;
363 case MMC_CMD_BC
: cb_flags
= CB710_MMC_CMD_BC
; break;
364 case MMC_CMD_BCR
: cb_flags
= CB710_MMC_CMD_BCR
; break;
367 if (flags
& MMC_RSP_BUSY
)
368 cb_flags
|= CB710_MMC_RSP_BUSY
;
370 cb_flags
|= cmd
->opcode
<< CB710_MMC_CMD_CODE_SHIFT
;
372 if (cmd
->data
&& (cmd
->data
->flags
& MMC_DATA_READ
))
373 cb_flags
|= CB710_MMC_DATA_READ
;
375 if (flags
& MMC_RSP_PRESENT
) {
376 /* Windows driver set 01 at bits 4,3 except for
377 * MMC_SET_BLOCKLEN where it set 10. Maybe the
378 * hardware can do something special about this
379 * command? The original driver looks buggy/incomplete
380 * anyway so we ignore this for now.
382 * I assume that 00 here means no response is expected.
384 cb_flags
|= CB710_MMC_RSP_PRESENT
;
386 if (flags
& MMC_RSP_136
)
387 cb_flags
|= CB710_MMC_RSP_136
;
388 if (!(flags
& MMC_RSP_CRC
))
389 cb_flags
|= CB710_MMC_RSP_NO_CRC
;
395 static void cb710_receive_response(struct cb710_slot
*slot
,
396 struct mmc_command
*cmd
)
398 unsigned rsp_opcode
, wanted_opcode
;
400 /* Looks like final byte with CRC is always stripped (same as SDHCI) */
401 if (cmd
->flags
& MMC_RSP_136
) {
404 resp
[0] = cb710_read_port_32(slot
, CB710_MMC_RESPONSE3_PORT
);
405 resp
[1] = cb710_read_port_32(slot
, CB710_MMC_RESPONSE2_PORT
);
406 resp
[2] = cb710_read_port_32(slot
, CB710_MMC_RESPONSE1_PORT
);
407 resp
[3] = cb710_read_port_32(slot
, CB710_MMC_RESPONSE0_PORT
);
408 rsp_opcode
= resp
[0] >> 24;
410 cmd
->resp
[0] = (resp
[0] << 8)|(resp
[1] >> 24);
411 cmd
->resp
[1] = (resp
[1] << 8)|(resp
[2] >> 24);
412 cmd
->resp
[2] = (resp
[2] << 8)|(resp
[3] >> 24);
413 cmd
->resp
[3] = (resp
[3] << 8);
415 rsp_opcode
= cb710_read_port_32(slot
, CB710_MMC_RESPONSE1_PORT
) & 0x3F;
416 cmd
->resp
[0] = cb710_read_port_32(slot
, CB710_MMC_RESPONSE0_PORT
);
419 wanted_opcode
= (cmd
->flags
& MMC_RSP_OPCODE
) ? cmd
->opcode
: 0x3F;
420 if (rsp_opcode
!= wanted_opcode
)
421 cmd
->error
= -EILSEQ
;
424 static int cb710_mmc_transfer_data(struct cb710_slot
*slot
,
425 struct mmc_data
*data
)
429 if (data
->flags
& MMC_DATA_READ
)
430 error
= cb710_mmc_receive(slot
, data
);
432 error
= cb710_mmc_send(slot
, data
);
434 to
= cb710_wait_for_event(slot
, CB710_MMC_S1_DATA_TRANSFER_DONE
);
439 data
->bytes_xfered
= data
->blksz
* data
->blocks
;
443 static int cb710_mmc_command(struct mmc_host
*mmc
, struct mmc_command
*cmd
)
445 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
446 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
447 struct mmc_data
*data
= cmd
->data
;
449 u16 cb_cmd
= cb710_encode_cmd_flags(reader
, cmd
);
450 dev_dbg(cb710_slot_dev(slot
), "cmd request: 0x%04X\n", cb_cmd
);
453 if (!cb710_is_transfer_size_supported(data
)) {
454 data
->error
= -EINVAL
;
457 cb710_mmc_set_transfer_size(slot
, data
->blocks
, data
->blksz
);
460 cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
|CB710_MMC_S2_BUSY_10
);
461 cb710_write_port_16(slot
, CB710_MMC_CMD_TYPE_PORT
, cb_cmd
);
462 cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
463 cb710_write_port_32(slot
, CB710_MMC_CMD_PARAM_PORT
, cmd
->arg
);
464 cb710_mmc_reset_events(slot
);
465 cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
466 cb710_modify_port_8(slot
, CB710_MMC_CONFIG0_PORT
, 0x01, 0);
468 cmd
->error
= cb710_wait_for_event(slot
, CB710_MMC_S1_COMMAND_SENT
);
472 if (cmd
->flags
& MMC_RSP_PRESENT
) {
473 cb710_receive_response(slot
, cmd
);
479 data
->error
= cb710_mmc_transfer_data(slot
, data
);
483 static void cb710_mmc_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
485 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
486 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
488 WARN_ON(reader
->mrq
!= NULL
);
491 cb710_mmc_enable_irq(slot
, CB710_MMC_IE_TEST_MASK
, 0);
493 if (!cb710_mmc_command(mmc
, mrq
->cmd
) && mrq
->stop
)
494 cb710_mmc_command(mmc
, mrq
->stop
);
496 tasklet_schedule(&reader
->finish_req_tasklet
);
499 static int cb710_mmc_powerup(struct cb710_slot
*slot
)
501 #ifdef CONFIG_CB710_DEBUG
502 struct cb710_chip
*chip
= cb710_slot_to_chip(slot
);
506 /* a lot of magic for now */
507 dev_dbg(cb710_slot_dev(slot
), "bus powerup\n");
508 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
509 err
= cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
512 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
, 0x80, 0);
513 cb710_modify_port_8(slot
, CB710_MMC_CONFIG3_PORT
, 0x80, 0);
514 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
516 dev_dbg(cb710_slot_dev(slot
), "after delay 1\n");
517 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
518 err
= cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
521 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
, 0x09, 0);
522 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
524 dev_dbg(cb710_slot_dev(slot
), "after delay 2\n");
525 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
526 err
= cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
529 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
, 0, 0x08);
530 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
532 dev_dbg(cb710_slot_dev(slot
), "after delay 3\n");
533 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
534 cb710_modify_port_8(slot
, CB710_MMC_CONFIG0_PORT
, 0x06, 0);
535 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
, 0x70, 0);
536 cb710_modify_port_8(slot
, CB710_MMC_CONFIG2_PORT
, 0x80, 0);
537 cb710_modify_port_8(slot
, CB710_MMC_CONFIG3_PORT
, 0x03, 0);
538 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
539 err
= cb710_wait_while_busy(slot
, CB710_MMC_S2_BUSY_20
);
542 /* This port behaves weird: quick byte reads of 0x08,0x09 return
543 * 0xFF,0x00 after writing 0xFFFF to 0x08; it works correctly when
544 * read/written from userspace... What am I missing here?
545 * (it doesn't depend on write-to-read delay) */
546 cb710_write_port_16(slot
, CB710_MMC_CONFIGB_PORT
, 0xFFFF);
547 cb710_modify_port_8(slot
, CB710_MMC_CONFIG0_PORT
, 0x06, 0);
548 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
549 dev_dbg(cb710_slot_dev(slot
), "bus powerup finished\n");
551 return cb710_check_event(slot
, 0);
554 static void cb710_mmc_powerdown(struct cb710_slot
*slot
)
556 cb710_modify_port_8(slot
, CB710_MMC_CONFIG1_PORT
, 0, 0x81);
557 cb710_modify_port_8(slot
, CB710_MMC_CONFIG3_PORT
, 0, 0x80);
560 static void cb710_mmc_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
562 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
563 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
566 cb710_mmc_select_clock_divider(mmc
, ios
->clock
);
568 if (ios
->power_mode
!= reader
->last_power_mode
) {
569 switch (ios
->power_mode
) {
571 err
= cb710_mmc_powerup(slot
);
573 dev_warn(cb710_slot_dev(slot
),
574 "powerup failed (%d)- retrying\n", err
);
575 cb710_mmc_powerdown(slot
);
577 err
= cb710_mmc_powerup(slot
);
579 dev_warn(cb710_slot_dev(slot
),
580 "powerup retry failed (%d) - expect errors\n",
583 reader
->last_power_mode
= MMC_POWER_ON
;
586 cb710_mmc_powerdown(slot
);
587 reader
->last_power_mode
= MMC_POWER_OFF
;
596 cb710_mmc_enable_4bit_data(slot
, ios
->bus_width
!= MMC_BUS_WIDTH_1
);
598 cb710_mmc_enable_irq(slot
, CB710_MMC_IE_TEST_MASK
, 0);
601 static int cb710_mmc_get_ro(struct mmc_host
*mmc
)
603 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
605 return cb710_read_port_8(slot
, CB710_MMC_STATUS3_PORT
)
606 & CB710_MMC_S3_WRITE_PROTECTED
;
609 static int cb710_mmc_get_cd(struct mmc_host
*mmc
)
611 struct cb710_slot
*slot
= cb710_mmc_to_slot(mmc
);
613 return cb710_read_port_8(slot
, CB710_MMC_STATUS3_PORT
)
614 & CB710_MMC_S3_CARD_DETECTED
;
617 static int cb710_mmc_irq_handler(struct cb710_slot
*slot
)
619 struct mmc_host
*mmc
= cb710_slot_to_mmc(slot
);
620 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
621 u32 status
, config1
, config2
, irqen
;
623 status
= cb710_read_port_32(slot
, CB710_MMC_STATUS_PORT
);
624 irqen
= cb710_read_port_32(slot
, CB710_MMC_IRQ_ENABLE_PORT
);
625 config2
= cb710_read_port_32(slot
, CB710_MMC_CONFIGB_PORT
);
626 config1
= cb710_read_port_32(slot
, CB710_MMC_CONFIG_PORT
);
628 dev_dbg(cb710_slot_dev(slot
), "interrupt; status: %08X, "
629 "ie: %08X, c2: %08X, c1: %08X\n",
630 status
, irqen
, config2
, config1
);
632 if (status
& (CB710_MMC_S1_CARD_CHANGED
<< 8)) {
634 cb710_write_port_8(slot
, CB710_MMC_STATUS1_PORT
,
635 CB710_MMC_S1_CARD_CHANGED
);
636 if ((irqen
& CB710_MMC_IE_CISTATUS_MASK
)
637 == CB710_MMC_IE_CISTATUS_MASK
)
638 mmc_detect_change(mmc
, HZ
/5);
640 dev_dbg(cb710_slot_dev(slot
), "unknown interrupt (test)\n");
641 spin_lock(&reader
->irq_lock
);
642 __cb710_mmc_enable_irq(slot
, 0, CB710_MMC_IE_TEST_MASK
);
643 spin_unlock(&reader
->irq_lock
);
649 static void cb710_mmc_finish_request_tasklet(unsigned long data
)
651 struct mmc_host
*mmc
= (void *)data
;
652 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
653 struct mmc_request
*mrq
= reader
->mrq
;
656 mmc_request_done(mmc
, mrq
);
659 static const struct mmc_host_ops cb710_mmc_host
= {
660 .request
= cb710_mmc_request
,
661 .set_ios
= cb710_mmc_set_ios
,
662 .get_ro
= cb710_mmc_get_ro
,
663 .get_cd
= cb710_mmc_get_cd
,
668 static int cb710_mmc_suspend(struct platform_device
*pdev
, pm_message_t state
)
670 struct cb710_slot
*slot
= cb710_pdev_to_slot(pdev
);
672 cb710_mmc_enable_irq(slot
, 0, ~0);
676 static int cb710_mmc_resume(struct platform_device
*pdev
)
678 struct cb710_slot
*slot
= cb710_pdev_to_slot(pdev
);
680 cb710_mmc_enable_irq(slot
, 0, ~0);
684 #endif /* CONFIG_PM */
686 static int cb710_mmc_init(struct platform_device
*pdev
)
688 struct cb710_slot
*slot
= cb710_pdev_to_slot(pdev
);
689 struct cb710_chip
*chip
= cb710_slot_to_chip(slot
);
690 struct mmc_host
*mmc
;
691 struct cb710_mmc_reader
*reader
;
695 mmc
= mmc_alloc_host(sizeof(*reader
), cb710_slot_dev(slot
));
699 platform_set_drvdata(pdev
, mmc
);
701 /* harmless (maybe) magic */
702 pci_read_config_dword(chip
->pdev
, 0x48, &val
);
703 val
= cb710_src_freq_mhz
[(val
>> 16) & 0xF];
704 dev_dbg(cb710_slot_dev(slot
), "source frequency: %dMHz\n", val
);
707 mmc
->ops
= &cb710_mmc_host
;
709 mmc
->f_min
= val
>> cb710_clock_divider_log2
[CB710_MAX_DIVIDER_IDX
];
710 mmc
->ocr_avail
= MMC_VDD_32_33
|MMC_VDD_33_34
;
711 mmc
->caps
= MMC_CAP_4_BIT_DATA
;
713 * In cb710_wait_for_event() we use a fixed timeout of ~2s, hence let's
714 * inform the core about it. A future improvement should instead make
715 * use of the cmd->busy_timeout.
717 mmc
->max_busy_timeout
= CB710_MMC_REQ_TIMEOUT_MS
;
719 reader
= mmc_priv(mmc
);
721 tasklet_init(&reader
->finish_req_tasklet
,
722 cb710_mmc_finish_request_tasklet
, (unsigned long)mmc
);
723 spin_lock_init(&reader
->irq_lock
);
724 cb710_dump_regs(chip
, CB710_DUMP_REGS_MMC
);
726 cb710_mmc_enable_irq(slot
, 0, ~0);
727 cb710_set_irq_handler(slot
, cb710_mmc_irq_handler
);
729 err
= mmc_add_host(mmc
);
733 dev_dbg(cb710_slot_dev(slot
), "mmc_hostname is %s\n",
736 cb710_mmc_enable_irq(slot
, CB710_MMC_IE_CARD_INSERTION_STATUS
, 0);
741 dev_dbg(cb710_slot_dev(slot
), "mmc_add_host() failed: %d\n", err
);
743 cb710_set_irq_handler(slot
, NULL
);
748 static int cb710_mmc_exit(struct platform_device
*pdev
)
750 struct cb710_slot
*slot
= cb710_pdev_to_slot(pdev
);
751 struct mmc_host
*mmc
= cb710_slot_to_mmc(slot
);
752 struct cb710_mmc_reader
*reader
= mmc_priv(mmc
);
754 cb710_mmc_enable_irq(slot
, 0, CB710_MMC_IE_CARD_INSERTION_STATUS
);
756 mmc_remove_host(mmc
);
758 /* IRQs should be disabled now, but let's stay on the safe side */
759 cb710_mmc_enable_irq(slot
, 0, ~0);
760 cb710_set_irq_handler(slot
, NULL
);
762 /* clear config ports - just in case */
763 cb710_write_port_32(slot
, CB710_MMC_CONFIG_PORT
, 0);
764 cb710_write_port_16(slot
, CB710_MMC_CONFIGB_PORT
, 0);
766 tasklet_kill(&reader
->finish_req_tasklet
);
772 static struct platform_driver cb710_mmc_driver
= {
773 .driver
.name
= "cb710-mmc",
774 .probe
= cb710_mmc_init
,
775 .remove
= cb710_mmc_exit
,
777 .suspend
= cb710_mmc_suspend
,
778 .resume
= cb710_mmc_resume
,
782 module_platform_driver(cb710_mmc_driver
);
784 MODULE_AUTHOR("Michał Mirosław <mirq-linux@rere.qmqm.pl>");
785 MODULE_DESCRIPTION("ENE CB710 memory card reader driver - MMC/SD part");
786 MODULE_LICENSE("GPL");
787 MODULE_ALIAS("platform:cb710-mmc");