Lines Matching refs:host

175 static inline int is_imx31_mmc(struct mxcmci_host *host)  in is_imx31_mmc()  argument
177 return host->devtype == IMX31_MMC; in is_imx31_mmc()
180 static inline int is_mpc512x_mmc(struct mxcmci_host *host) in is_mpc512x_mmc() argument
182 return host->devtype == MPC512X_MMC; in is_mpc512x_mmc()
185 static inline u32 mxcmci_readl(struct mxcmci_host *host, int reg) in mxcmci_readl() argument
188 return ioread32be(host->base + reg); in mxcmci_readl()
190 return readl(host->base + reg); in mxcmci_readl()
193 static inline void mxcmci_writel(struct mxcmci_host *host, u32 val, int reg) in mxcmci_writel() argument
196 iowrite32be(val, host->base + reg); in mxcmci_writel()
198 writel(val, host->base + reg); in mxcmci_writel()
201 static inline u16 mxcmci_readw(struct mxcmci_host *host, int reg) in mxcmci_readw() argument
204 return ioread32be(host->base + reg); in mxcmci_readw()
206 return readw(host->base + reg); in mxcmci_readw()
209 static inline void mxcmci_writew(struct mxcmci_host *host, u16 val, int reg) in mxcmci_writew() argument
212 iowrite32be(val, host->base + reg); in mxcmci_writew()
214 writew(val, host->base + reg); in mxcmci_writew()
217 static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios);
219 static void mxcmci_set_power(struct mxcmci_host *host, unsigned int vdd) in mxcmci_set_power() argument
221 if (!IS_ERR(host->mmc->supply.vmmc)) { in mxcmci_set_power()
222 if (host->power_mode == MMC_POWER_UP) in mxcmci_set_power()
223 mmc_regulator_set_ocr(host->mmc, in mxcmci_set_power()
224 host->mmc->supply.vmmc, vdd); in mxcmci_set_power()
225 else if (host->power_mode == MMC_POWER_OFF) in mxcmci_set_power()
226 mmc_regulator_set_ocr(host->mmc, in mxcmci_set_power()
227 host->mmc->supply.vmmc, 0); in mxcmci_set_power()
230 if (host->pdata && host->pdata->setpower) in mxcmci_set_power()
231 host->pdata->setpower(mmc_dev(host->mmc), vdd); in mxcmci_set_power()
234 static inline int mxcmci_use_dma(struct mxcmci_host *host) in mxcmci_use_dma() argument
236 return host->do_dma; in mxcmci_use_dma()
239 static void mxcmci_softreset(struct mxcmci_host *host) in mxcmci_softreset() argument
243 dev_dbg(mmc_dev(host->mmc), "mxcmci_softreset\n"); in mxcmci_softreset()
246 mxcmci_writew(host, STR_STP_CLK_RESET, MMC_REG_STR_STP_CLK); in mxcmci_softreset()
247 mxcmci_writew(host, STR_STP_CLK_RESET | STR_STP_CLK_START_CLK, in mxcmci_softreset()
251 mxcmci_writew(host, STR_STP_CLK_START_CLK, MMC_REG_STR_STP_CLK); in mxcmci_softreset()
253 mxcmci_writew(host, 0xff, MMC_REG_RES_TO); in mxcmci_softreset()
279 static int mxcmci_setup_data(struct mxcmci_host *host, struct mmc_data *data) in mxcmci_setup_data() argument
288 host->data = data; in mxcmci_setup_data()
291 mxcmci_writew(host, nob, MMC_REG_NOB); in mxcmci_setup_data()
292 mxcmci_writew(host, blksz, MMC_REG_BLK_LEN); in mxcmci_setup_data()
293 host->datasize = datasize; in mxcmci_setup_data()
295 if (!mxcmci_use_dma(host)) in mxcmci_setup_data()
300 host->do_dma = 0; in mxcmci_setup_data()
306 host->dma_dir = DMA_FROM_DEVICE; in mxcmci_setup_data()
309 host->dma_dir = DMA_TO_DEVICE; in mxcmci_setup_data()
315 nents = dma_map_sg(host->dma->device->dev, data->sg, in mxcmci_setup_data()
316 data->sg_len, host->dma_dir); in mxcmci_setup_data()
320 host->desc = dmaengine_prep_slave_sg(host->dma, in mxcmci_setup_data()
324 if (!host->desc) { in mxcmci_setup_data()
325 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len, in mxcmci_setup_data()
326 host->dma_dir); in mxcmci_setup_data()
327 host->do_dma = 0; in mxcmci_setup_data()
332 dmaengine_submit(host->desc); in mxcmci_setup_data()
333 dma_async_issue_pending(host->dma); in mxcmci_setup_data()
335 mod_timer(&host->watchdog, jiffies + msecs_to_jiffies(MXCMCI_TIMEOUT_MS)); in mxcmci_setup_data()
340 static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat);
341 static void mxcmci_data_done(struct mxcmci_host *host, unsigned int stat);
345 struct mxcmci_host *host = data; in mxcmci_dma_callback() local
348 del_timer(&host->watchdog); in mxcmci_dma_callback()
350 stat = mxcmci_readl(host, MMC_REG_STATUS); in mxcmci_dma_callback()
352 dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat); in mxcmci_dma_callback()
354 mxcmci_data_done(host, stat); in mxcmci_dma_callback()
357 static int mxcmci_start_cmd(struct mxcmci_host *host, struct mmc_command *cmd, in mxcmci_start_cmd() argument
360 u32 int_cntr = host->default_irq_mask; in mxcmci_start_cmd()
363 WARN_ON(host->cmd != NULL); in mxcmci_start_cmd()
364 host->cmd = cmd; in mxcmci_start_cmd()
380 dev_err(mmc_dev(host->mmc), "unhandled response type 0x%x\n", in mxcmci_start_cmd()
388 if (mxcmci_use_dma(host)) { in mxcmci_start_cmd()
389 if (host->dma_dir == DMA_FROM_DEVICE) { in mxcmci_start_cmd()
390 host->desc->callback = mxcmci_dma_callback; in mxcmci_start_cmd()
391 host->desc->callback_param = host; in mxcmci_start_cmd()
397 spin_lock_irqsave(&host->lock, flags); in mxcmci_start_cmd()
398 if (host->use_sdio) in mxcmci_start_cmd()
400 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR); in mxcmci_start_cmd()
401 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_start_cmd()
403 mxcmci_writew(host, cmd->opcode, MMC_REG_CMD); in mxcmci_start_cmd()
404 mxcmci_writel(host, cmd->arg, MMC_REG_ARG); in mxcmci_start_cmd()
405 mxcmci_writew(host, cmdat, MMC_REG_CMD_DAT_CONT); in mxcmci_start_cmd()
410 static void mxcmci_finish_request(struct mxcmci_host *host, in mxcmci_finish_request() argument
413 u32 int_cntr = host->default_irq_mask; in mxcmci_finish_request()
416 spin_lock_irqsave(&host->lock, flags); in mxcmci_finish_request()
417 if (host->use_sdio) in mxcmci_finish_request()
419 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR); in mxcmci_finish_request()
420 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_finish_request()
422 host->req = NULL; in mxcmci_finish_request()
423 host->cmd = NULL; in mxcmci_finish_request()
424 host->data = NULL; in mxcmci_finish_request()
426 mmc_request_done(host->mmc, req); in mxcmci_finish_request()
429 static int mxcmci_finish_data(struct mxcmci_host *host, unsigned int stat) in mxcmci_finish_data() argument
431 struct mmc_data *data = host->data; in mxcmci_finish_data()
434 if (mxcmci_use_dma(host)) { in mxcmci_finish_data()
435 dma_unmap_sg(host->dma->device->dev, data->sg, data->sg_len, in mxcmci_finish_data()
436 host->dma_dir); in mxcmci_finish_data()
441 dev_dbg(mmc_dev(host->mmc), "request failed. status: 0x%08x\n", in mxcmci_finish_data()
444 dev_err(mmc_dev(host->mmc), "%s: -EILSEQ\n", __func__); in mxcmci_finish_data()
449 dev_err(mmc_dev(host->mmc), in mxcmci_finish_data()
453 dev_err(mmc_dev(host->mmc), in mxcmci_finish_data()
458 dev_err(mmc_dev(host->mmc), in mxcmci_finish_data()
462 dev_err(mmc_dev(host->mmc), "%s: -EIO\n", __func__); in mxcmci_finish_data()
466 data->bytes_xfered = host->datasize; in mxcmci_finish_data()
471 host->data = NULL; in mxcmci_finish_data()
476 static void mxcmci_read_response(struct mxcmci_host *host, unsigned int stat) in mxcmci_read_response() argument
478 struct mmc_command *cmd = host->cmd; in mxcmci_read_response()
486 dev_dbg(mmc_dev(host->mmc), "CMD TIMEOUT\n"); in mxcmci_read_response()
489 dev_dbg(mmc_dev(host->mmc), "cmd crc error\n"); in mxcmci_read_response()
496 a = mxcmci_readw(host, MMC_REG_RES_FIFO); in mxcmci_read_response()
497 b = mxcmci_readw(host, MMC_REG_RES_FIFO); in mxcmci_read_response()
501 a = mxcmci_readw(host, MMC_REG_RES_FIFO); in mxcmci_read_response()
502 b = mxcmci_readw(host, MMC_REG_RES_FIFO); in mxcmci_read_response()
503 c = mxcmci_readw(host, MMC_REG_RES_FIFO); in mxcmci_read_response()
509 static int mxcmci_poll_status(struct mxcmci_host *host, u32 mask) in mxcmci_poll_status() argument
515 stat = mxcmci_readl(host, MMC_REG_STATUS); in mxcmci_poll_status()
519 mxcmci_softreset(host); in mxcmci_poll_status()
520 mxcmci_set_clk_rate(host, host->clock); in mxcmci_poll_status()
529 static int mxcmci_pull(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_pull() argument
535 stat = mxcmci_poll_status(host, in mxcmci_pull()
539 *buf++ = cpu_to_le32(mxcmci_readl(host, MMC_REG_BUFFER_ACCESS)); in mxcmci_pull()
547 stat = mxcmci_poll_status(host, in mxcmci_pull()
551 tmp = cpu_to_le32(mxcmci_readl(host, MMC_REG_BUFFER_ACCESS)); in mxcmci_pull()
558 static int mxcmci_push(struct mxcmci_host *host, void *_buf, int bytes) in mxcmci_push() argument
564 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY); in mxcmci_push()
567 mxcmci_writel(host, cpu_to_le32(*buf++), MMC_REG_BUFFER_ACCESS); in mxcmci_push()
575 stat = mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY); in mxcmci_push()
580 mxcmci_writel(host, cpu_to_le32(tmp), MMC_REG_BUFFER_ACCESS); in mxcmci_push()
583 return mxcmci_poll_status(host, STATUS_BUF_WRITE_RDY); in mxcmci_push()
586 static int mxcmci_transfer_data(struct mxcmci_host *host) in mxcmci_transfer_data() argument
588 struct mmc_data *data = host->req->data; in mxcmci_transfer_data()
592 host->data = data; in mxcmci_transfer_data()
593 host->datasize = 0; in mxcmci_transfer_data()
597 stat = mxcmci_pull(host, sg_virt(sg), sg->length); in mxcmci_transfer_data()
600 host->datasize += sg->length; in mxcmci_transfer_data()
604 stat = mxcmci_push(host, sg_virt(sg), sg->length); in mxcmci_transfer_data()
607 host->datasize += sg->length; in mxcmci_transfer_data()
609 stat = mxcmci_poll_status(host, STATUS_WRITE_OP_DONE); in mxcmci_transfer_data()
618 struct mxcmci_host *host = container_of(work, struct mxcmci_host, in mxcmci_datawork() local
620 int datastat = mxcmci_transfer_data(host); in mxcmci_datawork()
622 mxcmci_writel(host, STATUS_READ_OP_DONE | STATUS_WRITE_OP_DONE, in mxcmci_datawork()
624 mxcmci_finish_data(host, datastat); in mxcmci_datawork()
626 if (host->req->stop) { in mxcmci_datawork()
627 if (mxcmci_start_cmd(host, host->req->stop, 0)) { in mxcmci_datawork()
628 mxcmci_finish_request(host, host->req); in mxcmci_datawork()
632 mxcmci_finish_request(host, host->req); in mxcmci_datawork()
636 static void mxcmci_data_done(struct mxcmci_host *host, unsigned int stat) in mxcmci_data_done() argument
642 spin_lock_irqsave(&host->lock, flags); in mxcmci_data_done()
644 if (!host->data) { in mxcmci_data_done()
645 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_data_done()
649 if (!host->req) { in mxcmci_data_done()
650 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_data_done()
654 req = host->req; in mxcmci_data_done()
656 host->req = NULL; /* we will handle finish req below */ in mxcmci_data_done()
658 data_error = mxcmci_finish_data(host, stat); in mxcmci_data_done()
660 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_data_done()
665 mxcmci_read_response(host, stat); in mxcmci_data_done()
666 host->cmd = NULL; in mxcmci_data_done()
669 if (mxcmci_start_cmd(host, req->stop, 0)) { in mxcmci_data_done()
670 mxcmci_finish_request(host, req); in mxcmci_data_done()
674 mxcmci_finish_request(host, req); in mxcmci_data_done()
678 static void mxcmci_cmd_done(struct mxcmci_host *host, unsigned int stat) in mxcmci_cmd_done() argument
680 mxcmci_read_response(host, stat); in mxcmci_cmd_done()
681 host->cmd = NULL; in mxcmci_cmd_done()
683 if (!host->data && host->req) { in mxcmci_cmd_done()
684 mxcmci_finish_request(host, host->req); in mxcmci_cmd_done()
692 if (!mxcmci_use_dma(host) && host->data) in mxcmci_cmd_done()
693 schedule_work(&host->datawork); in mxcmci_cmd_done()
699 struct mxcmci_host *host = devid; in mxcmci_irq() local
703 stat = mxcmci_readl(host, MMC_REG_STATUS); in mxcmci_irq()
704 mxcmci_writel(host, in mxcmci_irq()
709 dev_dbg(mmc_dev(host->mmc), "%s: 0x%08x\n", __func__, stat); in mxcmci_irq()
711 spin_lock(&host->lock); in mxcmci_irq()
712 sdio_irq = (stat & STATUS_SDIO_INT_ACTIVE) && host->use_sdio; in mxcmci_irq()
713 spin_unlock(&host->lock); in mxcmci_irq()
715 if (mxcmci_use_dma(host) && (stat & (STATUS_WRITE_OP_DONE))) in mxcmci_irq()
716 mxcmci_writel(host, STATUS_WRITE_OP_DONE, MMC_REG_STATUS); in mxcmci_irq()
719 mxcmci_writel(host, STATUS_SDIO_INT_ACTIVE, MMC_REG_STATUS); in mxcmci_irq()
720 mmc_signal_sdio_irq(host->mmc); in mxcmci_irq()
724 mxcmci_cmd_done(host, stat); in mxcmci_irq()
726 if (mxcmci_use_dma(host) && (stat & STATUS_WRITE_OP_DONE)) { in mxcmci_irq()
727 del_timer(&host->watchdog); in mxcmci_irq()
728 mxcmci_data_done(host, stat); in mxcmci_irq()
731 if (host->default_irq_mask && in mxcmci_irq()
733 mmc_detect_change(host->mmc, msecs_to_jiffies(200)); in mxcmci_irq()
740 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_request() local
741 unsigned int cmdat = host->cmdat; in mxcmci_request()
744 WARN_ON(host->req != NULL); in mxcmci_request()
746 host->req = req; in mxcmci_request()
747 host->cmdat &= ~CMD_DAT_CONT_INIT; in mxcmci_request()
749 if (host->dma) in mxcmci_request()
750 host->do_dma = 1; in mxcmci_request()
753 error = mxcmci_setup_data(host, req->data); in mxcmci_request()
766 error = mxcmci_start_cmd(host, req->cmd, cmdat); in mxcmci_request()
770 mxcmci_finish_request(host, req); in mxcmci_request()
773 static void mxcmci_set_clk_rate(struct mxcmci_host *host, unsigned int clk_ios) in mxcmci_set_clk_rate() argument
777 unsigned int clk_in = clk_get_rate(host->clk_per); in mxcmci_set_clk_rate()
800 mxcmci_writew(host, (prescaler << 4) | divider, MMC_REG_CLK_RATE); in mxcmci_set_clk_rate()
802 dev_dbg(mmc_dev(host->mmc), "scaler: %d divider: %d in: %d out: %d\n", in mxcmci_set_clk_rate()
808 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_setup_dma() local
809 struct dma_slave_config *config = &host->dma_slave_config; in mxcmci_setup_dma()
811 config->dst_addr = host->phys_base + MMC_REG_BUFFER_ACCESS; in mxcmci_setup_dma()
812 config->src_addr = host->phys_base + MMC_REG_BUFFER_ACCESS; in mxcmci_setup_dma()
815 config->dst_maxburst = host->burstlen; in mxcmci_setup_dma()
816 config->src_maxburst = host->burstlen; in mxcmci_setup_dma()
819 return dmaengine_slave_config(host->dma, config); in mxcmci_setup_dma()
824 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_set_ios() local
836 if (mxcmci_use_dma(host) && burstlen != host->burstlen) { in mxcmci_set_ios()
837 host->burstlen = burstlen; in mxcmci_set_ios()
840 dev_err(mmc_dev(host->mmc), in mxcmci_set_ios()
842 dma_release_channel(host->dma); in mxcmci_set_ios()
843 host->do_dma = 0; in mxcmci_set_ios()
844 host->dma = NULL; in mxcmci_set_ios()
849 host->cmdat |= CMD_DAT_CONT_BUS_WIDTH_4; in mxcmci_set_ios()
851 host->cmdat &= ~CMD_DAT_CONT_BUS_WIDTH_4; in mxcmci_set_ios()
853 if (host->power_mode != ios->power_mode) { in mxcmci_set_ios()
854 host->power_mode = ios->power_mode; in mxcmci_set_ios()
855 mxcmci_set_power(host, ios->vdd); in mxcmci_set_ios()
858 host->cmdat |= CMD_DAT_CONT_INIT; in mxcmci_set_ios()
862 mxcmci_set_clk_rate(host, ios->clock); in mxcmci_set_ios()
863 mxcmci_writew(host, STR_STP_CLK_START_CLK, MMC_REG_STR_STP_CLK); in mxcmci_set_ios()
865 mxcmci_writew(host, STR_STP_CLK_STOP_CLK, MMC_REG_STR_STP_CLK); in mxcmci_set_ios()
868 host->clock = ios->clock; in mxcmci_set_ios()
883 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_get_ro() local
885 if (host->pdata && host->pdata->get_ro) in mxcmci_get_ro()
886 return !!host->pdata->get_ro(mmc_dev(mmc)); in mxcmci_get_ro()
897 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_enable_sdio_irq() local
901 spin_lock_irqsave(&host->lock, flags); in mxcmci_enable_sdio_irq()
902 host->use_sdio = enable; in mxcmci_enable_sdio_irq()
903 int_cntr = mxcmci_readl(host, MMC_REG_INT_CNTR); in mxcmci_enable_sdio_irq()
910 mxcmci_writel(host, int_cntr, MMC_REG_INT_CNTR); in mxcmci_enable_sdio_irq()
911 spin_unlock_irqrestore(&host->lock, flags); in mxcmci_enable_sdio_irq()
914 static void mxcmci_init_card(struct mmc_host *host, struct mmc_card *card) in mxcmci_init_card() argument
916 struct mxcmci_host *mxcmci = mmc_priv(host); in mxcmci_init_card()
926 host->caps &= ~MMC_CAP_4_BIT_DATA; in mxcmci_init_card()
928 host->caps |= MMC_CAP_4_BIT_DATA; in mxcmci_init_card()
933 struct mxcmci_host *host = param; in filter() local
938 chan->private = &host->dma_data; in filter()
945 struct mxcmci_host *host = from_timer(host, t, watchdog); in mxcmci_watchdog() local
946 struct mmc_request *req = host->req; in mxcmci_watchdog()
947 unsigned int stat = mxcmci_readl(host, MMC_REG_STATUS); in mxcmci_watchdog()
949 if (host->dma_dir == DMA_FROM_DEVICE) { in mxcmci_watchdog()
950 dmaengine_terminate_all(host->dma); in mxcmci_watchdog()
951 dev_err(mmc_dev(host->mmc), in mxcmci_watchdog()
955 dev_err(mmc_dev(host->mmc), in mxcmci_watchdog()
958 mxcmci_softreset(host); in mxcmci_watchdog()
963 if (host->data) in mxcmci_watchdog()
964 host->data->error = -ETIMEDOUT; in mxcmci_watchdog()
965 host->req = NULL; in mxcmci_watchdog()
966 host->cmd = NULL; in mxcmci_watchdog()
967 host->data = NULL; in mxcmci_watchdog()
968 mmc_request_done(host->mmc, req); in mxcmci_watchdog()
982 struct mxcmci_host *host; in mxcmci_probe() local
995 mmc = mmc_alloc_host(sizeof(*host), &pdev->dev); in mxcmci_probe()
999 host = mmc_priv(mmc); in mxcmci_probe()
1001 host->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res); in mxcmci_probe()
1002 if (IS_ERR(host->base)) { in mxcmci_probe()
1003 ret = PTR_ERR(host->base); in mxcmci_probe()
1007 host->phys_base = res->start; in mxcmci_probe()
1026 host->devtype = (uintptr_t)of_device_get_match_data(&pdev->dev); in mxcmci_probe()
1029 if (!is_mpc512x_mmc(host)) in mxcmci_probe()
1032 host->mmc = mmc; in mxcmci_probe()
1033 host->pdata = pdata; in mxcmci_probe()
1034 spin_lock_init(&host->lock); in mxcmci_probe()
1054 host->default_irq_mask = in mxcmci_probe()
1057 host->default_irq_mask = 0; in mxcmci_probe()
1059 host->clk_ipg = devm_clk_get(&pdev->dev, "ipg"); in mxcmci_probe()
1060 if (IS_ERR(host->clk_ipg)) { in mxcmci_probe()
1061 ret = PTR_ERR(host->clk_ipg); in mxcmci_probe()
1065 host->clk_per = devm_clk_get(&pdev->dev, "per"); in mxcmci_probe()
1066 if (IS_ERR(host->clk_per)) { in mxcmci_probe()
1067 ret = PTR_ERR(host->clk_per); in mxcmci_probe()
1071 ret = clk_prepare_enable(host->clk_per); in mxcmci_probe()
1075 ret = clk_prepare_enable(host->clk_ipg); in mxcmci_probe()
1079 mxcmci_softreset(host); in mxcmci_probe()
1081 host->rev_no = mxcmci_readw(host, MMC_REG_REV_NO); in mxcmci_probe()
1082 if (host->rev_no != 0x400) { in mxcmci_probe()
1084 dev_err(mmc_dev(host->mmc), "wrong rev.no. 0x%08x. aborting.\n", in mxcmci_probe()
1085 host->rev_no); in mxcmci_probe()
1089 mmc->f_min = clk_get_rate(host->clk_per) >> 16; in mxcmci_probe()
1090 mmc->f_max = clk_get_rate(host->clk_per) >> 1; in mxcmci_probe()
1093 mxcmci_writew(host, 0x2db4, MMC_REG_READ_TO); in mxcmci_probe()
1095 mxcmci_writel(host, host->default_irq_mask, MMC_REG_INT_CNTR); in mxcmci_probe()
1097 if (!host->pdata) { in mxcmci_probe()
1098 host->dma = dma_request_chan(&pdev->dev, "rx-tx"); in mxcmci_probe()
1099 if (IS_ERR(host->dma)) { in mxcmci_probe()
1100 if (PTR_ERR(host->dma) == -EPROBE_DEFER) { in mxcmci_probe()
1106 host->dma = NULL; in mxcmci_probe()
1111 host->dmareq = res->start; in mxcmci_probe()
1112 host->dma_data.peripheral_type = IMX_DMATYPE_SDHC; in mxcmci_probe()
1113 host->dma_data.priority = DMA_PRIO_LOW; in mxcmci_probe()
1114 host->dma_data.dma_request = host->dmareq; in mxcmci_probe()
1117 host->dma = dma_request_channel(mask, filter, host); in mxcmci_probe()
1120 if (host->dma) in mxcmci_probe()
1122 host->dma->device->dev); in mxcmci_probe()
1124 dev_info(mmc_dev(host->mmc), "dma not available. Using PIO\n"); in mxcmci_probe()
1126 INIT_WORK(&host->datawork, mxcmci_datawork); in mxcmci_probe()
1129 dev_name(&pdev->dev), host); in mxcmci_probe()
1135 if (host->pdata && host->pdata->init) { in mxcmci_probe()
1136 ret = host->pdata->init(&pdev->dev, mxcmci_detect_irq, in mxcmci_probe()
1137 host->mmc); in mxcmci_probe()
1142 timer_setup(&host->watchdog, mxcmci_watchdog, 0); in mxcmci_probe()
1151 if (host->dma) in mxcmci_probe()
1152 dma_release_channel(host->dma); in mxcmci_probe()
1155 clk_disable_unprepare(host->clk_ipg); in mxcmci_probe()
1157 clk_disable_unprepare(host->clk_per); in mxcmci_probe()
1168 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_remove() local
1172 if (host->pdata && host->pdata->exit) in mxcmci_remove()
1173 host->pdata->exit(&pdev->dev, mmc); in mxcmci_remove()
1175 if (host->dma) in mxcmci_remove()
1176 dma_release_channel(host->dma); in mxcmci_remove()
1178 clk_disable_unprepare(host->clk_per); in mxcmci_remove()
1179 clk_disable_unprepare(host->clk_ipg); in mxcmci_remove()
1187 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_suspend() local
1189 clk_disable_unprepare(host->clk_per); in mxcmci_suspend()
1190 clk_disable_unprepare(host->clk_ipg); in mxcmci_suspend()
1197 struct mxcmci_host *host = mmc_priv(mmc); in mxcmci_resume() local
1200 ret = clk_prepare_enable(host->clk_per); in mxcmci_resume()
1204 ret = clk_prepare_enable(host->clk_ipg); in mxcmci_resume()
1206 clk_disable_unprepare(host->clk_per); in mxcmci_resume()