|
@@ -118,7 +118,7 @@ static void tifm_sd_read_fifo(struct tifm_sd *host, struct page *pg,
|
|
|
unsigned char *buf;
|
|
|
unsigned int pos = 0, val;
|
|
|
|
|
|
- buf = kmap_atomic(pg, KM_BIO_DST_IRQ) + off;
|
|
|
+ buf = kmap_atomic(pg) + off;
|
|
|
if (host->cmd_flags & DATA_CARRY) {
|
|
|
buf[pos++] = host->bounce_buf_data[0];
|
|
|
host->cmd_flags &= ~DATA_CARRY;
|
|
@@ -134,7 +134,7 @@ static void tifm_sd_read_fifo(struct tifm_sd *host, struct page *pg,
|
|
|
}
|
|
|
buf[pos++] = (val >> 8) & 0xff;
|
|
|
}
|
|
|
- kunmap_atomic(buf - off, KM_BIO_DST_IRQ);
|
|
|
+ kunmap_atomic(buf - off);
|
|
|
}
|
|
|
|
|
|
static void tifm_sd_write_fifo(struct tifm_sd *host, struct page *pg,
|
|
@@ -144,7 +144,7 @@ static void tifm_sd_write_fifo(struct tifm_sd *host, struct page *pg,
|
|
|
unsigned char *buf;
|
|
|
unsigned int pos = 0, val;
|
|
|
|
|
|
- buf = kmap_atomic(pg, KM_BIO_SRC_IRQ) + off;
|
|
|
+ buf = kmap_atomic(pg) + off;
|
|
|
if (host->cmd_flags & DATA_CARRY) {
|
|
|
val = host->bounce_buf_data[0] | ((buf[pos++] << 8) & 0xff00);
|
|
|
writel(val, sock->addr + SOCK_MMCSD_DATA);
|
|
@@ -161,7 +161,7 @@ static void tifm_sd_write_fifo(struct tifm_sd *host, struct page *pg,
|
|
|
val |= (buf[pos++] << 8) & 0xff00;
|
|
|
writel(val, sock->addr + SOCK_MMCSD_DATA);
|
|
|
}
|
|
|
- kunmap_atomic(buf - off, KM_BIO_SRC_IRQ);
|
|
|
+ kunmap_atomic(buf - off);
|
|
|
}
|
|
|
|
|
|
static void tifm_sd_transfer_data(struct tifm_sd *host)
|
|
@@ -212,13 +212,13 @@ static void tifm_sd_copy_page(struct page *dst, unsigned int dst_off,
|
|
|
struct page *src, unsigned int src_off,
|
|
|
unsigned int count)
|
|
|
{
|
|
|
- unsigned char *src_buf = kmap_atomic(src, KM_BIO_SRC_IRQ) + src_off;
|
|
|
- unsigned char *dst_buf = kmap_atomic(dst, KM_BIO_DST_IRQ) + dst_off;
|
|
|
+ unsigned char *src_buf = kmap_atomic(src) + src_off;
|
|
|
+ unsigned char *dst_buf = kmap_atomic(dst) + dst_off;
|
|
|
|
|
|
memcpy(dst_buf, src_buf, count);
|
|
|
|
|
|
- kunmap_atomic(dst_buf - dst_off, KM_BIO_DST_IRQ);
|
|
|
- kunmap_atomic(src_buf - src_off, KM_BIO_SRC_IRQ);
|
|
|
+ kunmap_atomic(dst_buf - dst_off);
|
|
|
+ kunmap_atomic(src_buf - src_off);
|
|
|
}
|
|
|
|
|
|
static void tifm_sd_bounce_block(struct tifm_sd *host, struct mmc_data *r_data)
|