* [PATCH 0/9] au1xmmc updates #3
@ 2008-05-19 8:03 Manuel Lauss
2008-05-19 8:04 ` [PATCH 1/9] Alchemy: export get_au1x00_speed for modules Manuel Lauss
` (9 more replies)
0 siblings, 10 replies; 29+ messages in thread
From: Manuel Lauss @ 2008-05-19 8:03 UTC (permalink / raw)
To: linux-mips, linux-kernel, drzeus, sshtylyov
Hello,
The following set of patches remove demoboard-specific code from the
au1xmmc.c driver and adds new features.
My main motivation was to let boards implement other carddetect schemes,
since on one of my boards the driver-implemented poll timer doesn't work
for some unknown reason. But this board does have a dedicated carddetect
IRQ and card-present/card-readonly indicators which are incompatible with
the Db1200 implementation.
I also took the opportunity to clean up the drivers probe() and irq()
handlers to make it a "proper" platform device (patches #3 and #4)
and add a few other features.
Patch #1 is required to get the driver to build as a module.
Patch #2 is required to be able to load/unload the driver > 16 times.
Patches #5 and #6 implement new features.
Patch #7 does a little codingstyle cleanup, no functional changes.
Patch #8 adds an optimization to the request callback.
Patch #9 adds back pb1200 MMC activity LED support (patch #3 removes it).
patches #3-#9 are intended to be applied on top of each other, against
current mainline git (2.6.23-rc3).
Changes since V2:
- address almost all Sergei Shtylyov's comments:
pb1200/db1200 mmc device registration moved back to original location,
remove the au1xmmc.h header as part of codingstyle cleanup
other nits.
- 2 more patches (#8, #9)
Changes since V1:
- fix a bug in patch #6: SDIO irq should be checked for independently
from other irq events.
- more trivial cleanups
Db1200 users, please test! I verified the poll timer works on one of
older boards, however since I don't have Db1200 and Pb1200 boards I'm
not sure whether the driver still works with both SD controllers enabled!
Thanks!
Manuel Lauss
^ permalink raw reply [flat|nested] 29+ messages in thread* [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss @ 2008-05-19 8:04 ` Manuel Lauss 2008-05-19 9:35 ` Sergei Shtylyov 2008-05-19 8:04 ` [PATCH 2/9] Alchemy: dbdma: add API to delete custom DDMA device ids Manuel Lauss ` (8 subsequent siblings) 9 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:04 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-05-19 8:04 ` [PATCH 1/9] Alchemy: export get_au1x00_speed for modules Manuel Lauss @ 2008-05-19 9:35 ` Sergei Shtylyov 2008-05-19 9:49 ` Manuel Lauss 0 siblings, 1 reply; 29+ messages in thread From: Sergei Shtylyov @ 2008-05-19 9:35 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, drzeus Hello. Manuel Lauss wrote: > From 8492076e98c7fd47c9dee53984dbd9568ace357d Mon Sep 17 00:00:00 2001 > From: Manuel Lauss <mlau@msc-ge.com> > Date: Wed, 7 May 2008 13:42:55 +0200 > Subject: [PATCH] Alchemy: export get_au1x00_speed for modules > > au1xmmc.c driver depends on it, so export it for modules. > > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > I thought that has been merged. WBR, Sergei ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-05-19 9:35 ` Sergei Shtylyov @ 2008-05-19 9:49 ` Manuel Lauss 2008-06-05 21:03 ` Pierre Ossman 0 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 9:49 UTC (permalink / raw) To: Sergei Shtylyov; +Cc: linux-mips, linux-kernel, drzeus Hi Sergei, >> From 8492076e98c7fd47c9dee53984dbd9568ace357d Mon Sep 17 00:00:00 2001 >> From: Manuel Lauss <mlau@msc-ge.com> >> Date: Wed, 7 May 2008 13:42:55 +0200 >> Subject: [PATCH] Alchemy: export get_au1x00_speed for modules >> >> au1xmmc.c driver depends on it, so export it for modules. >> >> Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> >> > > I thought that has been merged. Yes, Ralf merged it into linux-mips repo, but it is not yet in mainline and the rest of the patches are against linus' git. Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-05-19 9:49 ` Manuel Lauss @ 2008-06-05 21:03 ` Pierre Ossman 2008-06-06 7:16 ` Manuel Lauss 0 siblings, 1 reply; 29+ messages in thread From: Pierre Ossman @ 2008-06-05 21:03 UTC (permalink / raw) To: Manuel Lauss, ralf; +Cc: Sergei Shtylyov, linux-mips, linux-kernel [-- Attachment #1: Type: text/plain, Size: 820 bytes --] On Mon, 19 May 2008 11:49:53 +0200 Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > Hi Sergei, > > >> From 8492076e98c7fd47c9dee53984dbd9568ace357d Mon Sep 17 00:00:00 2001 > >> From: Manuel Lauss <mlau@msc-ge.com> > >> Date: Wed, 7 May 2008 13:42:55 +0200 > >> Subject: [PATCH] Alchemy: export get_au1x00_speed for modules > >> > >> au1xmmc.c driver depends on it, so export it for modules. > >> > >> Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > >> > > > > I thought that has been merged. > > Yes, Ralf merged it into linux-mips repo, but it is not yet in > mainline and the rest of the patches are against linus' git. > So who should push this to Linus? If this set is the only patches depending on it, it would be easiest if I carry it in my tree. Rgds Pierre [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-06-05 21:03 ` Pierre Ossman @ 2008-06-06 7:16 ` Manuel Lauss 2008-06-06 11:45 ` Sergei Shtylyov 0 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-06-06 7:16 UTC (permalink / raw) To: Pierre Ossman; +Cc: ralf, Sergei Shtylyov, linux-mips, linux-kernel Hi Folks, On Thu, Jun 05, 2008 at 11:03:11PM +0200, Pierre Ossman wrote: > On Mon, 19 May 2008 11:49:53 +0200 > Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > > > Hi Sergei, > > > > >> From 8492076e98c7fd47c9dee53984dbd9568ace357d Mon Sep 17 00:00:00 2001 > > >> From: Manuel Lauss <mlau@msc-ge.com> > > >> Date: Wed, 7 May 2008 13:42:55 +0200 > > >> Subject: [PATCH] Alchemy: export get_au1x00_speed for modules > > >> > > >> au1xmmc.c driver depends on it, so export it for modules. > > >> > > >> Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > > >> > > > > > > I thought that has been merged. > > > > Yes, Ralf merged it into linux-mips repo, but it is not yet in > > mainline and the rest of the patches are against linus' git. > > > > So who should push this to Linus? If this set is the only patches > depending on it, it would be easiest if I carry it in my tree. I'd prefer if you (Pierre) carried them all since they all depend on each other (kind of, anyway). And it seems Ralf has gone silent anyway :) Thank you! Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 1/9] Alchemy: export get_au1x00_speed for modules 2008-06-06 7:16 ` Manuel Lauss @ 2008-06-06 11:45 ` Sergei Shtylyov 0 siblings, 0 replies; 29+ messages in thread From: Sergei Shtylyov @ 2008-06-06 11:45 UTC (permalink / raw) To: Manuel Lauss; +Cc: Pierre Ossman, ralf, linux-mips, linux-kernel Hello. Manuel Lauss wrote: >>>>> From 8492076e98c7fd47c9dee53984dbd9568ace357d Mon Sep 17 00:00:00 2001 >>>>> From: Manuel Lauss <mlau@msc-ge.com> >>>>> Date: Wed, 7 May 2008 13:42:55 +0200 >>>>> Subject: [PATCH] Alchemy: export get_au1x00_speed for modules >>>>> >>>>> au1xmmc.c driver depends on it, so export it for modules. >>>>> >>>>> Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> >>>>> >>>>> >>>> I thought that has been merged. >>>> >>> Yes, Ralf merged it into linux-mips repo, but it is not yet in >>> mainline and the rest of the patches are against linus' git. >>> >>> >> So who should push this to Linus? If this set is the only patches >> depending on it, it would be easiest if I carry it in my tree. >> > > I'd prefer if you (Pierre) carried them all since they all depend on > each other (kind of, anyway). And it seems Ralf has gone silent anyway :) > Ralf has pushed this patch to Linus, and it has gone into the Linus' tree today. > Thank you! > Manuel Lauss > WBR, Sergei ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 2/9] Alchemy: dbdma: add API to delete custom DDMA device ids. 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss 2008-05-19 8:04 ` [PATCH 1/9] Alchemy: export get_au1x00_speed for modules Manuel Lauss @ 2008-05-19 8:04 ` Manuel Lauss 2008-05-19 8:05 ` [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file Manuel Lauss ` (7 subsequent siblings) 9 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:04 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss 2008-05-19 8:04 ` [PATCH 1/9] Alchemy: export get_au1x00_speed for modules Manuel Lauss 2008-05-19 8:04 ` [PATCH 2/9] Alchemy: dbdma: add API to delete custom DDMA device ids Manuel Lauss @ 2008-05-19 8:05 ` Manuel Lauss 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 8:06 ` [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards Manuel Lauss ` (6 subsequent siblings) 9 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:05 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file 2008-05-19 8:05 ` [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file Manuel Lauss @ 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 10:07 ` Manuel Lauss 0 siblings, 2 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:17 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov Theres a tiny bug in the previous patch, please use this one here. Thanks! --- From 20a9a4d454e6e381f632dfadf713b515f30045b1 Mon Sep 17 00:00:00 2001 From: Manuel Lauss <mlau@msc-ge.com> Date: Wed, 7 May 2008 14:57:01 +0200 Subject: [PATCH] au1xmmc: remove pb1200 board-specific code from driver file Content-Length: 20730 Lines: 758 Remove the DB1200 board-specific functions (card present, read-only, activity LED methods) and instead add platform data which is passed to the driver. This also allows for platforms to implement other carddetect schemes (e.g. dedicated irq) without having to pollute the driver code. The poll timer (used for pb1200) is kept for compatibility. With the board-specific stuff gone, the drivers probe code can be cleaned up considerably: this patch also rewrites the probe and remove functions and removes a few unused variables. Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> --- drivers/mmc/host/au1xmmc.c | 508 +++++++++++++++++------------ drivers/mmc/host/au1xmmc.h | 9 +- include/asm-mips/mach-au1x00/au1100_mmc.h | 15 +- 3 files changed, 304 insertions(+), 228 deletions(-) diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c index cc5f7bc..9036677 100644 --- a/drivers/mmc/host/au1xmmc.c +++ b/drivers/mmc/host/au1xmmc.c @@ -54,6 +54,7 @@ #define DRIVER_NAME "au1xxx-mmc" /* Set this to enable special debugging macros */ +/* #define DEBUG */ #ifdef DEBUG #define DBG(fmt, idx, args...) printk("au1xx(%d): DEBUG: " fmt, idx, ##args) @@ -61,32 +62,6 @@ #define DBG(fmt, idx, args...) #endif -const struct { - u32 iobase; - u32 tx_devid, rx_devid; - u16 bcsrpwr; - u16 bcsrstatus; - u16 wpstatus; -} au1xmmc_card_table[] = { - { SD0_BASE, DSCR_CMD0_SDMS_TX0, DSCR_CMD0_SDMS_RX0, - BCSR_BOARD_SD0PWR, BCSR_INT_SD0INSERT, BCSR_STATUS_SD0WP }, -#ifndef CONFIG_MIPS_DB1200 - { SD1_BASE, DSCR_CMD0_SDMS_TX1, DSCR_CMD0_SDMS_RX1, - BCSR_BOARD_DS1PWR, BCSR_INT_SD1INSERT, BCSR_STATUS_SD1WP } -#endif -}; - -#define AU1XMMC_CONTROLLER_COUNT (ARRAY_SIZE(au1xmmc_card_table)) - -/* This array stores pointers for the hosts (used by the IRQ handler) */ -struct au1xmmc_host *au1xmmc_hosts[AU1XMMC_CONTROLLER_COUNT]; -static int dma = 1; - -#ifdef MODULE -module_param(dma, bool, 0); -MODULE_PARM_DESC(dma, "Use DMA engine for data transfers (0 = disabled)"); -#endif - static inline void IRQ_ON(struct au1xmmc_host *host, u32 mask) { u32 val = au_readl(HOST_CONFIG(host)); @@ -135,26 +110,33 @@ static inline void SEND_STOP(struct au1xmmc_host *host) static void au1xmmc_set_power(struct au1xmmc_host *host, int state) { - - u32 val = au1xmmc_card_table[host->id].bcsrpwr; - - bcsr->board &= ~val; - if (state) bcsr->board |= val; - - au_sync_delay(1); + if (host->platdata && host->platdata->set_power) + host->platdata->set_power(host->mmc, state); } -static inline int au1xmmc_card_inserted(struct au1xmmc_host *host) +static int au1xmmc_card_inserted(struct au1xmmc_host *host) { - return (bcsr->sig_status & au1xmmc_card_table[host->id].bcsrstatus) - ? 1 : 0; + int ret; + + if (host->platdata && host->platdata->card_inserted) + ret = host->platdata->card_inserted(host->mmc); + else + ret = 1; /* assume there is a card */ + + return ret; } static int au1xmmc_card_readonly(struct mmc_host *mmc) { struct au1xmmc_host *host = mmc_priv(mmc); - return (bcsr->status & au1xmmc_card_table[host->id].wpstatus) - ? 1 : 0; + int ret; + + if (host->platdata && host->platdata->card_readonly) + ret = host->platdata->card_readonly(mmc); + else + ret = 1; /* assume card is read-only */ + + return ret; } static void au1xmmc_finish_request(struct au1xmmc_host *host) @@ -174,8 +156,6 @@ static void au1xmmc_finish_request(struct au1xmmc_host *host) host->status = HOST_S_IDLE; - bcsr->disk_leds |= (1 << 8); - mmc_request_done(host->mmc, mrq); } @@ -420,18 +400,18 @@ static void au1xmmc_receive_pio(struct au1xmmc_host *host) break; if (status & SD_STATUS_RC) { - DBG("RX CRC Error [%d + %d].\n", host->id, + DBG("RX CRC Error [%d + %d].\n", host->pdev->id, host->pio.len, count); break; } if (status & SD_STATUS_RO) { - DBG("RX Overrun [%d + %d]\n", host->id, + DBG("RX Overrun [%d + %d]\n", host->pdev->id, host->pio.len, count); break; } else if (status & SD_STATUS_RU) { - DBG("RX Underrun [%d + %d]\n", host->id, + DBG("RX Underrun [%d + %d]\n", host->pdev->id, host->pio.len, count); break; } @@ -571,12 +551,8 @@ static void au1xmmc_set_clock(struct au1xmmc_host *host, int rate) static int au1xmmc_prepare_data(struct au1xmmc_host *host, struct mmc_data *data) { - int datalen = data->blocks * data->blksz; - if (dma != 0) - host->flags |= HOST_F_DMA; - if (data->flags & MMC_DATA_READ) host->flags |= HOST_F_RECV; else @@ -663,8 +639,6 @@ static void au1xmmc_request(struct mmc_host* mmc, struct mmc_request* mrq) host->mrq = mrq; host->status = HOST_S_CMD; - bcsr->disk_leds &= ~(1 << 8); - if (mrq->data) { FLUSH_FIFO(host); flags = mrq->data->flags; @@ -749,245 +723,339 @@ static void au1xmmc_dma_callback(int irq, void *dev_id) static irqreturn_t au1xmmc_irq(int irq, void *dev_id) { - + struct au1xmmc_host *host = dev_id; u32 status; - int i, ret = 0; - disable_irq(AU1100_SD_IRQ); + status = au_readl(HOST_STATUS(host)); - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct au1xmmc_host * host = au1xmmc_hosts[i]; - u32 handled = 1; + if (!(status & SD_STATUS_I)) + return IRQ_NONE; /* not ours */ - status = au_readl(HOST_STATUS(host)); - - if (host->mrq && (status & STATUS_TIMEOUT)) { - if (status & SD_STATUS_RAT) - host->mrq->cmd->error = -ETIMEDOUT; + if (host->mrq && (status & STATUS_TIMEOUT)) { + if (status & SD_STATUS_RAT) + host->mrq->cmd->error = -ETIMEDOUT; + else if (status & SD_STATUS_DT) + host->mrq->data->error = -ETIMEDOUT; - else if (status & SD_STATUS_DT) - host->mrq->data->error = -ETIMEDOUT; + /* In PIO mode, interrupts might still be enabled */ + IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH); - /* In PIO mode, interrupts might still be enabled */ - IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH); - - //IRQ_OFF(host, SD_CONFIG_TH|SD_CONFIG_RA|SD_CONFIG_RF); - tasklet_schedule(&host->finish_task); - } + /* IRQ_OFF(host, SD_CONFIG_TH|SD_CONFIG_RA|SD_CONFIG_RF); */ + tasklet_schedule(&host->finish_task); + } #if 0 - else if (status & SD_STATUS_DD) { - - /* Sometimes we get a DD before a NE in PIO mode */ - - if (!(host->flags & HOST_F_DMA) && - (status & SD_STATUS_NE)) - au1xmmc_receive_pio(host); - else { - au1xmmc_data_complete(host, status); - //tasklet_schedule(&host->data_task); - } + else if (status & SD_STATUS_DD) { + /* Sometimes we get a DD before a NE in PIO mode */ + if (!(host->flags & HOST_F_DMA) && (status & SD_STATUS_NE)) + au1xmmc_receive_pio(host); + else { + au1xmmc_data_complete(host, status); + /* tasklet_schedule(&host->data_task); */ } + } #endif - else if (status & (SD_STATUS_CR)) { - if (host->status == HOST_S_CMD) - au1xmmc_cmd_complete(host,status); - } - else if (!(host->flags & HOST_F_DMA)) { - if ((host->flags & HOST_F_XMIT) && - (status & STATUS_DATA_OUT)) - au1xmmc_send_pio(host); - else if ((host->flags & HOST_F_RECV) && - (status & STATUS_DATA_IN)) - au1xmmc_receive_pio(host); - } - else if (status & 0x203FBC70) { - DBG("Unhandled status %8.8x\n", host->id, status); - handled = 0; - } + else if (status & SD_STATUS_CR) { + if (host->status == HOST_S_CMD) + au1xmmc_cmd_complete(host, status); + + } else if (!(host->flags & HOST_F_DMA)) { + if ((host->flags & HOST_F_XMIT) && (status & STATUS_DATA_OUT)) + au1xmmc_send_pio(host); + else if ((host->flags & HOST_F_RECV) && (status & STATUS_DATA_IN)) + au1xmmc_receive_pio(host); + + } else if (status & 0x203F3C70) { + DBG("Unhandled status %8.8x\n", host->pdev->id, + status); + } - au_writel(status, HOST_STATUS(host)); - au_sync(); + au_writel(status, HOST_STATUS(host)); + au_sync(); - ret |= handled; + return IRQ_HANDLED; +} + +#ifdef CONFIG_SOC_AU1200 +/* 8bit memory DMA device */ +static dbdev_tab_t au1xmmc_mem_dbdev = { + .dev_id = DSCR_CMD0_ALWAYS, + .dev_flags = DEV_FLAGS_ANYUSE, + .dev_tsize = 0, + .dev_devwidth = 8, + .dev_physaddr = 0x00000000, + .dev_intlevel = 0, + .dev_intpolarity = 0, +}; +static int memid; + +static int au1xmmc_dbdma_init(struct au1xmmc_host *host) +{ + struct resource *res; + int txid, rxid; + + res = platform_get_resource(host->pdev, IORESOURCE_DMA, 0); + if (!res) + return -ENODEV; + txid = res->start; + + res = platform_get_resource(host->pdev, IORESOURCE_DMA, 1); + if (!res) + return -ENODEV; + rxid = res->start; + + if (!memid) + return -ENODEV; + + host->tx_chan = au1xxx_dbdma_chan_alloc(memid, txid, + au1xmmc_dma_callback, (void *)host); + if (!host->tx_chan) { + dev_err(&host->pdev->dev, "cannot allocate TX DMA\n"); + return -ENODEV; } - enable_irq(AU1100_SD_IRQ); - return ret; + host->rx_chan = au1xxx_dbdma_chan_alloc(rxid, memid, + au1xmmc_dma_callback, (void *)host); + if (!host->rx_chan) { + dev_err(&host->pdev->dev, "cannot allocate RX DMA\n"); + au1xxx_dbdma_chan_free(host->tx_chan); + return -ENODEV; + } + + au1xxx_dbdma_set_devwidth(host->tx_chan, 8); + au1xxx_dbdma_set_devwidth(host->rx_chan, 8); + + au1xxx_dbdma_ring_alloc(host->tx_chan, AU1XMMC_DESCRIPTOR_COUNT); + au1xxx_dbdma_ring_alloc(host->rx_chan, AU1XMMC_DESCRIPTOR_COUNT); + + /* DBDMA is good to go */ + host->flags |= HOST_F_DMA; + + return 0; } -static void au1xmmc_poll_event(unsigned long arg) +static void au1xmmc_dbdma_shutdown(struct au1xmmc_host *host) { - struct au1xmmc_host *host = (struct au1xmmc_host *) arg; + if (host->flags & HOST_F_DMA) { + host->flags &= ~HOST_F_DMA; + au1xxx_dbdma_chan_free(host->tx_chan); + au1xxx_dbdma_chan_free(host->rx_chan); + } +} +#endif +static const struct mmc_host_ops au1xmmc_ops = { + .request = au1xmmc_request, + .set_ios = au1xmmc_set_ios, + .get_ro = au1xmmc_card_readonly, +}; + +static void au1xmmc_poll_event(unsigned long arg) +{ + struct au1xmmc_host *host = (struct au1xmmc_host *)arg; int card = au1xmmc_card_inserted(host); - int controller = (host->flags & HOST_F_ACTIVE) ? 1 : 0; + int controller = (host->flags & HOST_F_ACTIVE) ? 1 : 0; if (card != controller) { host->flags &= ~HOST_F_ACTIVE; - if (card) host->flags |= HOST_F_ACTIVE; + if (card) + host->flags |= HOST_F_ACTIVE; mmc_detect_change(host->mmc, 0); } +#ifdef DEBUG if (host->mrq != NULL) { u32 status = au_readl(HOST_STATUS(host)); - DBG("PENDING - %8.8x\n", host->id, status); + DBG("PENDING - %8.8x\n", host->pdev->id, status); } - +#endif mod_timer(&host->timer, jiffies + AU1XMMC_DETECT_TIMEOUT); } -static dbdev_tab_t au1xmmc_mem_dbdev = -{ - DSCR_CMD0_ALWAYS, DEV_FLAGS_ANYUSE, 0, 8, 0x00000000, 0, 0 -}; - -static void au1xmmc_init_dma(struct au1xmmc_host *host) +static void au1xmmc_init_cd_poll_timer(struct au1xmmc_host *host) { - - u32 rxchan, txchan; - - int txid = au1xmmc_card_table[host->id].tx_devid; - int rxid = au1xmmc_card_table[host->id].rx_devid; - - /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride - of 8 bits. And since devices are shared, we need to create - our own to avoid freaking out other devices - */ - - int memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev); - - txchan = au1xxx_dbdma_chan_alloc(memid, txid, - au1xmmc_dma_callback, (void *) host); - - rxchan = au1xxx_dbdma_chan_alloc(rxid, memid, - au1xmmc_dma_callback, (void *) host); - - au1xxx_dbdma_set_devwidth(txchan, 8); - au1xxx_dbdma_set_devwidth(rxchan, 8); - - au1xxx_dbdma_ring_alloc(txchan, AU1XMMC_DESCRIPTOR_COUNT); - au1xxx_dbdma_ring_alloc(rxchan, AU1XMMC_DESCRIPTOR_COUNT); - - host->tx_chan = txchan; - host->rx_chan = rxchan; + init_timer(&host->timer); + host->timer.function = au1xmmc_poll_event; + host->timer.data = (unsigned long)host; + host->timer.expires = jiffies + AU1XMMC_DETECT_TIMEOUT; } -static const struct mmc_host_ops au1xmmc_ops = { - .request = au1xmmc_request, - .set_ios = au1xmmc_set_ios, - .get_ro = au1xmmc_card_readonly, -}; - static int __devinit au1xmmc_probe(struct platform_device *pdev) { + struct mmc_host *mmc; + struct au1xmmc_host *host; + struct resource *r; + int ret; + + mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev); + if (!mmc) { + dev_err(&pdev->dev, "no memory for mmc host\n"); + ret = -ENOMEM; + goto out0; + } - int i, ret = 0; - - /* THe interrupt is shared among all controllers */ - ret = request_irq(AU1100_SD_IRQ, au1xmmc_irq, IRQF_DISABLED, "MMC", 0); + host = mmc_priv(mmc); + host->mmc = mmc; + host->platdata = pdev->dev.platform_data; + host->pdev = pdev; - if (ret) { - printk(DRIVER_NAME "ERROR: Couldn't get int %d: %d\n", - AU1100_SD_IRQ, ret); - return -ENXIO; + ret = -ENODEV; + r = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!r) { + dev_err(&pdev->dev, "no mmio defined\n"); + goto out1; } - disable_irq(AU1100_SD_IRQ); + host->ioarea = request_mem_region(r->start, r->end - r->start + 1, + pdev->name); + if (!host->ioarea) { + dev_err(&pdev->dev, "mmio already used\n"); + goto out1; + } - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct mmc_host *mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev); - struct au1xmmc_host *host = 0; + host->iobase = (unsigned long)ioremap(r->start, r->end - r->start + 1); + if (!host->iobase) { + dev_err(&pdev->dev, "cannot remap mmio\n"); + goto out2; + } - if (!mmc) { - printk(DRIVER_NAME "ERROR: no mem for host %d\n", i); - au1xmmc_hosts[i] = 0; - continue; - } + r = platform_get_resource(pdev, IORESOURCE_IRQ, 0); + if (!r) { + dev_err(&pdev->dev, "no IRQ defined\n"); + goto out3; + } - mmc->ops = &au1xmmc_ops; + host->irq = r->start; + /* IRQ is shared among both SD controllers */ + ret = request_irq(host->irq, au1xmmc_irq, IRQF_SHARED, + DRIVER_NAME, host); + if (ret) { + dev_err(&pdev->dev, "cannot grab IRQ\n"); + goto out3; + } - mmc->f_min = 450000; - mmc->f_max = 24000000; + mmc->ops = &au1xmmc_ops; - mmc->max_seg_size = AU1XMMC_DESCRIPTOR_SIZE; - mmc->max_phys_segs = AU1XMMC_DESCRIPTOR_COUNT; + mmc->f_min = 450000; + mmc->f_max = 24000000; - mmc->max_blk_size = 2048; - mmc->max_blk_count = 512; + mmc->max_seg_size = AU1XMMC_DESCRIPTOR_SIZE; + mmc->max_phys_segs = AU1XMMC_DESCRIPTOR_COUNT; - mmc->ocr_avail = AU1XMMC_OCR; + mmc->max_blk_size = 2048; + mmc->max_blk_count = 512; - host = mmc_priv(mmc); - host->mmc = mmc; + mmc->ocr_avail = AU1XMMC_OCR; + mmc->caps = 0; - host->id = i; - host->iobase = au1xmmc_card_table[host->id].iobase; - host->clock = 0; - host->power_mode = MMC_POWER_OFF; + host->status = HOST_S_IDLE; - host->flags = au1xmmc_card_inserted(host) ? HOST_F_ACTIVE : 0; - host->status = HOST_S_IDLE; + /* board-specific carddetect setup, if any */ + if (host->platdata && host->platdata->cd_setup) { + ret = host->platdata->cd_setup(mmc, 1); + if (ret) { + dev_err(&pdev->dev, "board CD setup failed\n"); + goto out4; + } + } else { + /* poll the board-specific is-card-in-socket-? method */ + au1xmmc_init_cd_poll_timer(host); + } - init_timer(&host->timer); + tasklet_init(&host->data_task, au1xmmc_tasklet_data, + (unsigned long)host); - host->timer.function = au1xmmc_poll_event; - host->timer.data = (unsigned long) host; - host->timer.expires = jiffies + AU1XMMC_DETECT_TIMEOUT; + tasklet_init(&host->finish_task, au1xmmc_tasklet_finish, + (unsigned long)host); - tasklet_init(&host->data_task, au1xmmc_tasklet_data, - (unsigned long) host); +#ifdef CONFIG_SOC_AU1200 + ret = au1xmmc_dbdma_init(host); + if (ret) + printk(KERN_INFO DRIVER_NAME ": DBDMA init failed; using PIO\n"); +#endif - tasklet_init(&host->finish_task, au1xmmc_tasklet_finish, - (unsigned long) host); + au1xmmc_reset_controller(host); - spin_lock_init(&host->lock); + ret = mmc_add_host(mmc); + if (ret) { + dev_err(&pdev->dev, "cannot add mmc host\n"); + goto out5; + } - if (dma != 0) - au1xmmc_init_dma(host); + platform_set_drvdata(pdev, mmc); - au1xmmc_reset_controller(host); + /* start the carddetect poll timer */ + if (!(host->platdata && host->platdata->cd_setup)) + add_timer(&host->timer); - mmc_add_host(mmc); - au1xmmc_hosts[i] = host; + printk(KERN_INFO DRIVER_NAME ": MMC Controller %d set up at %8.8X" + " (mode=%s)\n", pdev->id, host->iobase, + host->flags & HOST_F_DMA ? "dma" : "pio"); - add_timer(&host->timer); + return 0; /* all ok */ - printk(KERN_INFO DRIVER_NAME ": MMC Controller %d set up at %8.8X (mode=%s)\n", - host->id, host->iobase, dma ? "dma" : "pio"); - } +out5: + au_writel(0, HOST_ENABLE(host)); + au_writel(0, HOST_CONFIG(host)); + au_writel(0, HOST_CONFIG2(host)); + au_sync(); - enable_irq(AU1100_SD_IRQ); +#ifdef CONFIG_SOC_AU1200 + au1xmmc_dbdma_shutdown(host); +#endif - return 0; + tasklet_kill(&host->data_task); + tasklet_kill(&host->finish_task); + + if (host->platdata && host->platdata->cd_setup) + host->platdata->cd_setup(mmc, 0); +out4: + free_irq(host->irq, host); +out3: + iounmap((void *)host->iobase); +out2: + release_resource(host->ioarea); + kfree(host->ioarea); +out1: + mmc_free_host(mmc); +out0: + return ret; } static int __devexit au1xmmc_remove(struct platform_device *pdev) { + struct mmc_host *mmc = platform_get_drvdata(pdev); + struct au1xmmc_host *host; + + if (mmc) { + host = mmc_priv(mmc); - int i; + mmc_remove_host(mmc); - disable_irq(AU1100_SD_IRQ); + if (host->platdata && host->platdata->cd_setup) + host->platdata->cd_setup(mmc, 0); + else + del_timer_sync(&host->timer); - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct au1xmmc_host *host = au1xmmc_hosts[i]; - if (!host) continue; + au_writel(0, HOST_ENABLE(host)); + au_writel(0, HOST_CONFIG(host)); + au_writel(0, HOST_CONFIG2(host)); + au_sync(); tasklet_kill(&host->data_task); tasklet_kill(&host->finish_task); - del_timer_sync(&host->timer); +#ifdef CONFIG_SOC_AU1200 + au1xmmc_dbdma_shutdown(host); +#endif au1xmmc_set_power(host, 0); - mmc_remove_host(host->mmc); - - au1xxx_dbdma_chan_free(host->tx_chan); - au1xxx_dbdma_chan_free(host->rx_chan); + free_irq(host->irq, host); + iounmap((void *)host->iobase); + release_resource(host->ioarea); + kfree(host->ioarea); - au_writel(0x0, HOST_ENABLE(host)); - au_sync(); + mmc_free_host(mmc); } - - free_irq(AU1100_SD_IRQ, 0); return 0; } @@ -1004,21 +1072,31 @@ static struct platform_driver au1xmmc_driver = { static int __init au1xmmc_init(void) { +#ifdef CONFIG_SOC_AU1200 + /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride + * of 8 bits. And since devices are shared, we need to create + * our own to avoid freaking out other devices. + */ + memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev); + if (!memid) + printk(KERN_ERR "au1xmmc: cannot add memory dbdma dev\n"); +#endif return platform_driver_register(&au1xmmc_driver); } static void __exit au1xmmc_exit(void) { +#ifdef CONFIG_SOC_AU1200 + if (memid) + au1xxx_ddma_del_device(memid); +#endif platform_driver_unregister(&au1xmmc_driver); } module_init(au1xmmc_init); module_exit(au1xmmc_exit); -#ifdef MODULE MODULE_AUTHOR("Advanced Micro Devices, Inc"); MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX"); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:au1xxx-mmc"); -#endif - diff --git a/drivers/mmc/host/au1xmmc.h b/drivers/mmc/host/au1xmmc.h index 341cbdf..3b40065 100644 --- a/drivers/mmc/host/au1xmmc.h +++ b/drivers/mmc/host/au1xmmc.h @@ -49,8 +49,6 @@ struct au1xmmc_host { struct mmc_host *mmc; struct mmc_request *mrq; - u32 id; - u32 flags; u32 iobase; u32 clock; @@ -73,11 +71,14 @@ struct au1xmmc_host { u32 tx_chan; u32 rx_chan; + int irq; + struct timer_list timer; struct tasklet_struct finish_task; struct tasklet_struct data_task; - - spinlock_t lock; + struct au1xmmc_platform_data *platdata; + struct platform_device *pdev; + struct resource *ioarea; }; /* Status flags used by the host structure */ diff --git a/include/asm-mips/mach-au1x00/au1100_mmc.h b/include/asm-mips/mach-au1x00/au1100_mmc.h index 9e0028f..c79dec1 100644 --- a/include/asm-mips/mach-au1x00/au1100_mmc.h +++ b/include/asm-mips/mach-au1x00/au1100_mmc.h @@ -38,15 +38,12 @@ #ifndef __ASM_AU1100_MMC_H #define __ASM_AU1100_MMC_H - -#define NUM_AU1100_MMC_CONTROLLERS 2 - -#if defined(CONFIG_SOC_AU1100) -#define AU1100_SD_IRQ AU1100_SD_INT -#elif defined(CONFIG_SOC_AU1200) -#define AU1100_SD_IRQ AU1200_SD_INT -#endif - +struct au1xmmc_platform_data { + int(*cd_setup)(void *mmc_host, int on); + int(*card_inserted)(void *mmc_host); + int(*card_readonly)(void *mmc_host); + void(*set_power)(void *mmc_host, int state); +}; #define SD0_BASE 0xB0600000 #define SD1_BASE 0xB0680000 -- 1.5.5.1 ^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file 2008-05-19 8:17 ` Manuel Lauss @ 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 10:07 ` Manuel Lauss 1 sibling, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:17 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov Theres a tiny bug in the previous patch, please use this one here. Thanks! --- ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 8:17 ` Manuel Lauss @ 2008-05-19 10:07 ` Manuel Lauss 2008-05-19 10:07 ` Manuel Lauss 1 sibling, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 10:07 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov On Mon, May 19, 2008 at 10:17:00AM +0200, Manuel Lauss wrote: > Theres a tiny bug in the previous patch, please use this one here. I found yet another bug which resulted in DMA being turned off after the very first request finished. Fixed version below. Thanks, Manuel Lauss --- From 40d40bf91d449e14cb998de0e2f2c4c947b46206 Mon Sep 17 00:00:00 2001 From: Manuel Lauss <mlau@msc-ge.com> Date: Wed, 7 May 2008 14:57:01 +0200 Subject: [PATCH] au1xmmc: remove pb1200 board-specific code from driver file Content-Length: 21115 Lines: 770 Remove the DB1200 board-specific functions (card present, read-only, activity LED methods) and instead add platform data which is passed to the driver. This also allows for platforms to implement other carddetect schemes (e.g. dedicated irq) without having to pollute the driver code. The poll timer (used for pb1200) is kept for compatibility. With the board-specific stuff gone, the drivers probe code can be cleaned up considerably: this patch also rewrites the probe and remove functions and removes a few unused variables. Update #1: fixed "CONFIG_SOC_Au1200" typo. Update #2: fixed bug which turned off DMA after very first request finished. Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> --- drivers/mmc/host/au1xmmc.c | 510 +++++++++++++++++------------ drivers/mmc/host/au1xmmc.h | 9 +- include/asm-mips/mach-au1x00/au1100_mmc.h | 15 +- 3 files changed, 305 insertions(+), 229 deletions(-) diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c index cc5f7bc..144b1d7 100644 --- a/drivers/mmc/host/au1xmmc.c +++ b/drivers/mmc/host/au1xmmc.c @@ -54,6 +54,7 @@ #define DRIVER_NAME "au1xxx-mmc" /* Set this to enable special debugging macros */ +/* #define DEBUG */ #ifdef DEBUG #define DBG(fmt, idx, args...) printk("au1xx(%d): DEBUG: " fmt, idx, ##args) @@ -61,32 +62,6 @@ #define DBG(fmt, idx, args...) #endif -const struct { - u32 iobase; - u32 tx_devid, rx_devid; - u16 bcsrpwr; - u16 bcsrstatus; - u16 wpstatus; -} au1xmmc_card_table[] = { - { SD0_BASE, DSCR_CMD0_SDMS_TX0, DSCR_CMD0_SDMS_RX0, - BCSR_BOARD_SD0PWR, BCSR_INT_SD0INSERT, BCSR_STATUS_SD0WP }, -#ifndef CONFIG_MIPS_DB1200 - { SD1_BASE, DSCR_CMD0_SDMS_TX1, DSCR_CMD0_SDMS_RX1, - BCSR_BOARD_DS1PWR, BCSR_INT_SD1INSERT, BCSR_STATUS_SD1WP } -#endif -}; - -#define AU1XMMC_CONTROLLER_COUNT (ARRAY_SIZE(au1xmmc_card_table)) - -/* This array stores pointers for the hosts (used by the IRQ handler) */ -struct au1xmmc_host *au1xmmc_hosts[AU1XMMC_CONTROLLER_COUNT]; -static int dma = 1; - -#ifdef MODULE -module_param(dma, bool, 0); -MODULE_PARM_DESC(dma, "Use DMA engine for data transfers (0 = disabled)"); -#endif - static inline void IRQ_ON(struct au1xmmc_host *host, u32 mask) { u32 val = au_readl(HOST_CONFIG(host)); @@ -135,26 +110,33 @@ static inline void SEND_STOP(struct au1xmmc_host *host) static void au1xmmc_set_power(struct au1xmmc_host *host, int state) { - - u32 val = au1xmmc_card_table[host->id].bcsrpwr; - - bcsr->board &= ~val; - if (state) bcsr->board |= val; - - au_sync_delay(1); + if (host->platdata && host->platdata->set_power) + host->platdata->set_power(host->mmc, state); } -static inline int au1xmmc_card_inserted(struct au1xmmc_host *host) +static int au1xmmc_card_inserted(struct au1xmmc_host *host) { - return (bcsr->sig_status & au1xmmc_card_table[host->id].bcsrstatus) - ? 1 : 0; + int ret; + + if (host->platdata && host->platdata->card_inserted) + ret = host->platdata->card_inserted(host->mmc); + else + ret = 1; /* assume there is a card */ + + return ret; } static int au1xmmc_card_readonly(struct mmc_host *mmc) { struct au1xmmc_host *host = mmc_priv(mmc); - return (bcsr->status & au1xmmc_card_table[host->id].wpstatus) - ? 1 : 0; + int ret; + + if (host->platdata && host->platdata->card_readonly) + ret = host->platdata->card_readonly(mmc); + else + ret = 1; /* assume card is read-only */ + + return ret; } static void au1xmmc_finish_request(struct au1xmmc_host *host) @@ -163,7 +145,7 @@ static void au1xmmc_finish_request(struct au1xmmc_host *host) struct mmc_request *mrq = host->mrq; host->mrq = NULL; - host->flags &= HOST_F_ACTIVE; + host->flags &= HOST_F_ACTIVE | HOST_F_DMA; host->dma.len = 0; host->dma.dir = 0; @@ -174,8 +156,6 @@ static void au1xmmc_finish_request(struct au1xmmc_host *host) host->status = HOST_S_IDLE; - bcsr->disk_leds |= (1 << 8); - mmc_request_done(host->mmc, mrq); } @@ -420,18 +400,18 @@ static void au1xmmc_receive_pio(struct au1xmmc_host *host) break; if (status & SD_STATUS_RC) { - DBG("RX CRC Error [%d + %d].\n", host->id, + DBG("RX CRC Error [%d + %d].\n", host->pdev->id, host->pio.len, count); break; } if (status & SD_STATUS_RO) { - DBG("RX Overrun [%d + %d]\n", host->id, + DBG("RX Overrun [%d + %d]\n", host->pdev->id, host->pio.len, count); break; } else if (status & SD_STATUS_RU) { - DBG("RX Underrun [%d + %d]\n", host->id, + DBG("RX Underrun [%d + %d]\n", host->pdev->id, host->pio.len, count); break; } @@ -571,12 +551,8 @@ static void au1xmmc_set_clock(struct au1xmmc_host *host, int rate) static int au1xmmc_prepare_data(struct au1xmmc_host *host, struct mmc_data *data) { - int datalen = data->blocks * data->blksz; - if (dma != 0) - host->flags |= HOST_F_DMA; - if (data->flags & MMC_DATA_READ) host->flags |= HOST_F_RECV; else @@ -663,8 +639,6 @@ static void au1xmmc_request(struct mmc_host* mmc, struct mmc_request* mrq) host->mrq = mrq; host->status = HOST_S_CMD; - bcsr->disk_leds &= ~(1 << 8); - if (mrq->data) { FLUSH_FIFO(host); flags = mrq->data->flags; @@ -749,245 +723,339 @@ static void au1xmmc_dma_callback(int irq, void *dev_id) static irqreturn_t au1xmmc_irq(int irq, void *dev_id) { - + struct au1xmmc_host *host = dev_id; u32 status; - int i, ret = 0; - disable_irq(AU1100_SD_IRQ); + status = au_readl(HOST_STATUS(host)); - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct au1xmmc_host * host = au1xmmc_hosts[i]; - u32 handled = 1; + if (!(status & SD_STATUS_I)) + return IRQ_NONE; /* not ours */ - status = au_readl(HOST_STATUS(host)); - - if (host->mrq && (status & STATUS_TIMEOUT)) { - if (status & SD_STATUS_RAT) - host->mrq->cmd->error = -ETIMEDOUT; + if (host->mrq && (status & STATUS_TIMEOUT)) { + if (status & SD_STATUS_RAT) + host->mrq->cmd->error = -ETIMEDOUT; + else if (status & SD_STATUS_DT) + host->mrq->data->error = -ETIMEDOUT; - else if (status & SD_STATUS_DT) - host->mrq->data->error = -ETIMEDOUT; + /* In PIO mode, interrupts might still be enabled */ + IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH); - /* In PIO mode, interrupts might still be enabled */ - IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH); - - //IRQ_OFF(host, SD_CONFIG_TH|SD_CONFIG_RA|SD_CONFIG_RF); - tasklet_schedule(&host->finish_task); - } + /* IRQ_OFF(host, SD_CONFIG_TH|SD_CONFIG_RA|SD_CONFIG_RF); */ + tasklet_schedule(&host->finish_task); + } #if 0 - else if (status & SD_STATUS_DD) { - - /* Sometimes we get a DD before a NE in PIO mode */ - - if (!(host->flags & HOST_F_DMA) && - (status & SD_STATUS_NE)) - au1xmmc_receive_pio(host); - else { - au1xmmc_data_complete(host, status); - //tasklet_schedule(&host->data_task); - } + else if (status & SD_STATUS_DD) { + /* Sometimes we get a DD before a NE in PIO mode */ + if (!(host->flags & HOST_F_DMA) && (status & SD_STATUS_NE)) + au1xmmc_receive_pio(host); + else { + au1xmmc_data_complete(host, status); + /* tasklet_schedule(&host->data_task); */ } + } #endif - else if (status & (SD_STATUS_CR)) { - if (host->status == HOST_S_CMD) - au1xmmc_cmd_complete(host,status); - } - else if (!(host->flags & HOST_F_DMA)) { - if ((host->flags & HOST_F_XMIT) && - (status & STATUS_DATA_OUT)) - au1xmmc_send_pio(host); - else if ((host->flags & HOST_F_RECV) && - (status & STATUS_DATA_IN)) - au1xmmc_receive_pio(host); - } - else if (status & 0x203FBC70) { - DBG("Unhandled status %8.8x\n", host->id, status); - handled = 0; - } + else if (status & SD_STATUS_CR) { + if (host->status == HOST_S_CMD) + au1xmmc_cmd_complete(host, status); + + } else if (!(host->flags & HOST_F_DMA)) { + if ((host->flags & HOST_F_XMIT) && (status & STATUS_DATA_OUT)) + au1xmmc_send_pio(host); + else if ((host->flags & HOST_F_RECV) && (status & STATUS_DATA_IN)) + au1xmmc_receive_pio(host); + + } else if (status & 0x203F3C70) { + DBG("Unhandled status %8.8x\n", host->pdev->id, + status); + } - au_writel(status, HOST_STATUS(host)); - au_sync(); + au_writel(status, HOST_STATUS(host)); + au_sync(); - ret |= handled; + return IRQ_HANDLED; +} + +#ifdef CONFIG_SOC_AU1200 +/* 8bit memory DMA device */ +static dbdev_tab_t au1xmmc_mem_dbdev = { + .dev_id = DSCR_CMD0_ALWAYS, + .dev_flags = DEV_FLAGS_ANYUSE, + .dev_tsize = 0, + .dev_devwidth = 8, + .dev_physaddr = 0x00000000, + .dev_intlevel = 0, + .dev_intpolarity = 0, +}; +static int memid; + +static int au1xmmc_dbdma_init(struct au1xmmc_host *host) +{ + struct resource *res; + int txid, rxid; + + res = platform_get_resource(host->pdev, IORESOURCE_DMA, 0); + if (!res) + return -ENODEV; + txid = res->start; + + res = platform_get_resource(host->pdev, IORESOURCE_DMA, 1); + if (!res) + return -ENODEV; + rxid = res->start; + + if (!memid) + return -ENODEV; + + host->tx_chan = au1xxx_dbdma_chan_alloc(memid, txid, + au1xmmc_dma_callback, (void *)host); + if (!host->tx_chan) { + dev_err(&host->pdev->dev, "cannot allocate TX DMA\n"); + return -ENODEV; } - enable_irq(AU1100_SD_IRQ); - return ret; + host->rx_chan = au1xxx_dbdma_chan_alloc(rxid, memid, + au1xmmc_dma_callback, (void *)host); + if (!host->rx_chan) { + dev_err(&host->pdev->dev, "cannot allocate RX DMA\n"); + au1xxx_dbdma_chan_free(host->tx_chan); + return -ENODEV; + } + + au1xxx_dbdma_set_devwidth(host->tx_chan, 8); + au1xxx_dbdma_set_devwidth(host->rx_chan, 8); + + au1xxx_dbdma_ring_alloc(host->tx_chan, AU1XMMC_DESCRIPTOR_COUNT); + au1xxx_dbdma_ring_alloc(host->rx_chan, AU1XMMC_DESCRIPTOR_COUNT); + + /* DBDMA is good to go */ + host->flags |= HOST_F_DMA; + + return 0; } -static void au1xmmc_poll_event(unsigned long arg) +static void au1xmmc_dbdma_shutdown(struct au1xmmc_host *host) { - struct au1xmmc_host *host = (struct au1xmmc_host *) arg; + if (host->flags & HOST_F_DMA) { + host->flags &= ~HOST_F_DMA; + au1xxx_dbdma_chan_free(host->tx_chan); + au1xxx_dbdma_chan_free(host->rx_chan); + } +} +#endif +static const struct mmc_host_ops au1xmmc_ops = { + .request = au1xmmc_request, + .set_ios = au1xmmc_set_ios, + .get_ro = au1xmmc_card_readonly, +}; + +static void au1xmmc_poll_event(unsigned long arg) +{ + struct au1xmmc_host *host = (struct au1xmmc_host *)arg; int card = au1xmmc_card_inserted(host); - int controller = (host->flags & HOST_F_ACTIVE) ? 1 : 0; + int controller = (host->flags & HOST_F_ACTIVE) ? 1 : 0; if (card != controller) { host->flags &= ~HOST_F_ACTIVE; - if (card) host->flags |= HOST_F_ACTIVE; + if (card) + host->flags |= HOST_F_ACTIVE; mmc_detect_change(host->mmc, 0); } +#ifdef DEBUG if (host->mrq != NULL) { u32 status = au_readl(HOST_STATUS(host)); - DBG("PENDING - %8.8x\n", host->id, status); + DBG("PENDING - %8.8x\n", host->pdev->id, status); } - +#endif mod_timer(&host->timer, jiffies + AU1XMMC_DETECT_TIMEOUT); } -static dbdev_tab_t au1xmmc_mem_dbdev = -{ - DSCR_CMD0_ALWAYS, DEV_FLAGS_ANYUSE, 0, 8, 0x00000000, 0, 0 -}; - -static void au1xmmc_init_dma(struct au1xmmc_host *host) +static void au1xmmc_init_cd_poll_timer(struct au1xmmc_host *host) { - - u32 rxchan, txchan; - - int txid = au1xmmc_card_table[host->id].tx_devid; - int rxid = au1xmmc_card_table[host->id].rx_devid; - - /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride - of 8 bits. And since devices are shared, we need to create - our own to avoid freaking out other devices - */ - - int memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev); - - txchan = au1xxx_dbdma_chan_alloc(memid, txid, - au1xmmc_dma_callback, (void *) host); - - rxchan = au1xxx_dbdma_chan_alloc(rxid, memid, - au1xmmc_dma_callback, (void *) host); - - au1xxx_dbdma_set_devwidth(txchan, 8); - au1xxx_dbdma_set_devwidth(rxchan, 8); - - au1xxx_dbdma_ring_alloc(txchan, AU1XMMC_DESCRIPTOR_COUNT); - au1xxx_dbdma_ring_alloc(rxchan, AU1XMMC_DESCRIPTOR_COUNT); - - host->tx_chan = txchan; - host->rx_chan = rxchan; + init_timer(&host->timer); + host->timer.function = au1xmmc_poll_event; + host->timer.data = (unsigned long)host; + host->timer.expires = jiffies + AU1XMMC_DETECT_TIMEOUT; } -static const struct mmc_host_ops au1xmmc_ops = { - .request = au1xmmc_request, - .set_ios = au1xmmc_set_ios, - .get_ro = au1xmmc_card_readonly, -}; - static int __devinit au1xmmc_probe(struct platform_device *pdev) { + struct mmc_host *mmc; + struct au1xmmc_host *host; + struct resource *r; + int ret; + + mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev); + if (!mmc) { + dev_err(&pdev->dev, "no memory for mmc host\n"); + ret = -ENOMEM; + goto out0; + } - int i, ret = 0; - - /* THe interrupt is shared among all controllers */ - ret = request_irq(AU1100_SD_IRQ, au1xmmc_irq, IRQF_DISABLED, "MMC", 0); + host = mmc_priv(mmc); + host->mmc = mmc; + host->platdata = pdev->dev.platform_data; + host->pdev = pdev; - if (ret) { - printk(DRIVER_NAME "ERROR: Couldn't get int %d: %d\n", - AU1100_SD_IRQ, ret); - return -ENXIO; + ret = -ENODEV; + r = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!r) { + dev_err(&pdev->dev, "no mmio defined\n"); + goto out1; } - disable_irq(AU1100_SD_IRQ); + host->ioarea = request_mem_region(r->start, r->end - r->start + 1, + pdev->name); + if (!host->ioarea) { + dev_err(&pdev->dev, "mmio already used\n"); + goto out1; + } - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct mmc_host *mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev); - struct au1xmmc_host *host = 0; + host->iobase = (unsigned long)ioremap(r->start, r->end - r->start + 1); + if (!host->iobase) { + dev_err(&pdev->dev, "cannot remap mmio\n"); + goto out2; + } - if (!mmc) { - printk(DRIVER_NAME "ERROR: no mem for host %d\n", i); - au1xmmc_hosts[i] = 0; - continue; - } + r = platform_get_resource(pdev, IORESOURCE_IRQ, 0); + if (!r) { + dev_err(&pdev->dev, "no IRQ defined\n"); + goto out3; + } - mmc->ops = &au1xmmc_ops; + host->irq = r->start; + /* IRQ is shared among both SD controllers */ + ret = request_irq(host->irq, au1xmmc_irq, IRQF_SHARED, + DRIVER_NAME, host); + if (ret) { + dev_err(&pdev->dev, "cannot grab IRQ\n"); + goto out3; + } - mmc->f_min = 450000; - mmc->f_max = 24000000; + mmc->ops = &au1xmmc_ops; - mmc->max_seg_size = AU1XMMC_DESCRIPTOR_SIZE; - mmc->max_phys_segs = AU1XMMC_DESCRIPTOR_COUNT; + mmc->f_min = 450000; + mmc->f_max = 24000000; - mmc->max_blk_size = 2048; - mmc->max_blk_count = 512; + mmc->max_seg_size = AU1XMMC_DESCRIPTOR_SIZE; + mmc->max_phys_segs = AU1XMMC_DESCRIPTOR_COUNT; - mmc->ocr_avail = AU1XMMC_OCR; + mmc->max_blk_size = 2048; + mmc->max_blk_count = 512; - host = mmc_priv(mmc); - host->mmc = mmc; + mmc->ocr_avail = AU1XMMC_OCR; + mmc->caps = 0; - host->id = i; - host->iobase = au1xmmc_card_table[host->id].iobase; - host->clock = 0; - host->power_mode = MMC_POWER_OFF; + host->status = HOST_S_IDLE; - host->flags = au1xmmc_card_inserted(host) ? HOST_F_ACTIVE : 0; - host->status = HOST_S_IDLE; + /* board-specific carddetect setup, if any */ + if (host->platdata && host->platdata->cd_setup) { + ret = host->platdata->cd_setup(mmc, 1); + if (ret) { + dev_err(&pdev->dev, "board CD setup failed\n"); + goto out4; + } + } else { + /* poll the board-specific is-card-in-socket-? method */ + au1xmmc_init_cd_poll_timer(host); + } - init_timer(&host->timer); + tasklet_init(&host->data_task, au1xmmc_tasklet_data, + (unsigned long)host); - host->timer.function = au1xmmc_poll_event; - host->timer.data = (unsigned long) host; - host->timer.expires = jiffies + AU1XMMC_DETECT_TIMEOUT; + tasklet_init(&host->finish_task, au1xmmc_tasklet_finish, + (unsigned long)host); - tasklet_init(&host->data_task, au1xmmc_tasklet_data, - (unsigned long) host); +#ifdef CONFIG_SOC_AU1200 + ret = au1xmmc_dbdma_init(host); + if (ret) + printk(KERN_INFO DRIVER_NAME ": DBDMA init failed; using PIO\n"); +#endif - tasklet_init(&host->finish_task, au1xmmc_tasklet_finish, - (unsigned long) host); + au1xmmc_reset_controller(host); - spin_lock_init(&host->lock); + ret = mmc_add_host(mmc); + if (ret) { + dev_err(&pdev->dev, "cannot add mmc host\n"); + goto out5; + } - if (dma != 0) - au1xmmc_init_dma(host); + platform_set_drvdata(pdev, mmc); - au1xmmc_reset_controller(host); + /* start the carddetect poll timer */ + if (!(host->platdata && host->platdata->cd_setup)) + add_timer(&host->timer); - mmc_add_host(mmc); - au1xmmc_hosts[i] = host; + printk(KERN_INFO DRIVER_NAME ": MMC Controller %d set up at %8.8X" + " (mode=%s)\n", pdev->id, host->iobase, + host->flags & HOST_F_DMA ? "dma" : "pio"); - add_timer(&host->timer); + return 0; /* all ok */ - printk(KERN_INFO DRIVER_NAME ": MMC Controller %d set up at %8.8X (mode=%s)\n", - host->id, host->iobase, dma ? "dma" : "pio"); - } +out5: + au_writel(0, HOST_ENABLE(host)); + au_writel(0, HOST_CONFIG(host)); + au_writel(0, HOST_CONFIG2(host)); + au_sync(); - enable_irq(AU1100_SD_IRQ); +#ifdef CONFIG_SOC_AU1200 + au1xmmc_dbdma_shutdown(host); +#endif - return 0; + tasklet_kill(&host->data_task); + tasklet_kill(&host->finish_task); + + if (host->platdata && host->platdata->cd_setup) + host->platdata->cd_setup(mmc, 0); +out4: + free_irq(host->irq, host); +out3: + iounmap((void *)host->iobase); +out2: + release_resource(host->ioarea); + kfree(host->ioarea); +out1: + mmc_free_host(mmc); +out0: + return ret; } static int __devexit au1xmmc_remove(struct platform_device *pdev) { + struct mmc_host *mmc = platform_get_drvdata(pdev); + struct au1xmmc_host *host; + + if (mmc) { + host = mmc_priv(mmc); - int i; + mmc_remove_host(mmc); - disable_irq(AU1100_SD_IRQ); + if (host->platdata && host->platdata->cd_setup) + host->platdata->cd_setup(mmc, 0); + else + del_timer_sync(&host->timer); - for(i = 0; i < AU1XMMC_CONTROLLER_COUNT; i++) { - struct au1xmmc_host *host = au1xmmc_hosts[i]; - if (!host) continue; + au_writel(0, HOST_ENABLE(host)); + au_writel(0, HOST_CONFIG(host)); + au_writel(0, HOST_CONFIG2(host)); + au_sync(); tasklet_kill(&host->data_task); tasklet_kill(&host->finish_task); - del_timer_sync(&host->timer); +#ifdef CONFIG_SOC_AU1200 + au1xmmc_dbdma_shutdown(host); +#endif au1xmmc_set_power(host, 0); - mmc_remove_host(host->mmc); - - au1xxx_dbdma_chan_free(host->tx_chan); - au1xxx_dbdma_chan_free(host->rx_chan); + free_irq(host->irq, host); + iounmap((void *)host->iobase); + release_resource(host->ioarea); + kfree(host->ioarea); - au_writel(0x0, HOST_ENABLE(host)); - au_sync(); + mmc_free_host(mmc); } - - free_irq(AU1100_SD_IRQ, 0); return 0; } @@ -1004,21 +1072,31 @@ static struct platform_driver au1xmmc_driver = { static int __init au1xmmc_init(void) { +#ifdef CONFIG_SOC_AU1200 + /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride + * of 8 bits. And since devices are shared, we need to create + * our own to avoid freaking out other devices. + */ + memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev); + if (!memid) + printk(KERN_ERR "au1xmmc: cannot add memory dbdma dev\n"); +#endif return platform_driver_register(&au1xmmc_driver); } static void __exit au1xmmc_exit(void) { +#ifdef CONFIG_SOC_AU1200 + if (memid) + au1xxx_ddma_del_device(memid); +#endif platform_driver_unregister(&au1xmmc_driver); } module_init(au1xmmc_init); module_exit(au1xmmc_exit); -#ifdef MODULE MODULE_AUTHOR("Advanced Micro Devices, Inc"); MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX"); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:au1xxx-mmc"); -#endif - diff --git a/drivers/mmc/host/au1xmmc.h b/drivers/mmc/host/au1xmmc.h index 341cbdf..3b40065 100644 --- a/drivers/mmc/host/au1xmmc.h +++ b/drivers/mmc/host/au1xmmc.h @@ -49,8 +49,6 @@ struct au1xmmc_host { struct mmc_host *mmc; struct mmc_request *mrq; - u32 id; - u32 flags; u32 iobase; u32 clock; @@ -73,11 +71,14 @@ struct au1xmmc_host { u32 tx_chan; u32 rx_chan; + int irq; + struct timer_list timer; struct tasklet_struct finish_task; struct tasklet_struct data_task; - - spinlock_t lock; + struct au1xmmc_platform_data *platdata; + struct platform_device *pdev; + struct resource *ioarea; }; /* Status flags used by the host structure */ diff --git a/include/asm-mips/mach-au1x00/au1100_mmc.h b/include/asm-mips/mach-au1x00/au1100_mmc.h index 9e0028f..c79dec1 100644 --- a/include/asm-mips/mach-au1x00/au1100_mmc.h +++ b/include/asm-mips/mach-au1x00/au1100_mmc.h @@ -38,15 +38,12 @@ #ifndef __ASM_AU1100_MMC_H #define __ASM_AU1100_MMC_H - -#define NUM_AU1100_MMC_CONTROLLERS 2 - -#if defined(CONFIG_SOC_AU1100) -#define AU1100_SD_IRQ AU1100_SD_INT -#elif defined(CONFIG_SOC_AU1200) -#define AU1100_SD_IRQ AU1200_SD_INT -#endif - +struct au1xmmc_platform_data { + int(*cd_setup)(void *mmc_host, int on); + int(*card_inserted)(void *mmc_host); + int(*card_readonly)(void *mmc_host); + void(*set_power)(void *mmc_host, int state); +}; #define SD0_BASE 0xB0600000 #define SD1_BASE 0xB0680000 -- 1.5.5.1 ^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file 2008-05-19 10:07 ` Manuel Lauss @ 2008-05-19 10:07 ` Manuel Lauss 0 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 10:07 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov On Mon, May 19, 2008 at 10:17:00AM +0200, Manuel Lauss wrote: > Theres a tiny bug in the previous patch, please use this one here. I found yet another bug which resulted in DMA being turned off after the very first request finished. Fixed version below. Thanks, Manuel Lauss --- ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (2 preceding siblings ...) 2008-05-19 8:05 ` [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file Manuel Lauss @ 2008-05-19 8:06 ` Manuel Lauss 2008-05-21 12:32 ` Sergei Shtylyov 2008-05-19 8:06 ` [PATCH 5/9] au1xmmc: enable 4 bit transfer mode Manuel Lauss ` (5 subsequent siblings) 9 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:06 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards 2008-05-19 8:06 ` [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards Manuel Lauss @ 2008-05-21 12:32 ` Sergei Shtylyov 2008-05-21 13:10 ` Manuel Lauss 0 siblings, 1 reply; 29+ messages in thread From: Sergei Shtylyov @ 2008-05-21 12:32 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, drzeus Hello. Manuel Lauss wrote: > Add au1xmmc platform data for PB1200/DB1200 boards, and wire up > the 2 SD controllers for them. > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> OK, this definitely looks better (and shorter :-). > diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c > index 8cae775..6225e95 100644 > --- a/arch/mips/au1000/common/platform.c > +++ b/arch/mips/au1000/common/platform.c [...] > @@ -248,15 +232,70 @@ static struct platform_device au1200_lcd_device = { > > static u64 au1xxx_mmc_dmamask = ~(u32)0; > > -static struct platform_device au1xxx_mmc_device = { > +extern struct au1xmmc_platform_data au1xmmc_platdata[2]; > + > +static struct resource au1200_mmc0_resources[] = { > + [0] = { > + .start = SD0_PHYS_ADDR, > + .end = SD0_PHYS_ADDR + 0x7ffff, > + .flags = IORESOURCE_MEM, > + }, > + [1] = { > + .start = AU1200_SD_INT, > + .flags = IORESOURCE_IRQ, > + }, > + [2] = { > + .start = DSCR_CMD0_SDMS_TX0, > + .flags = IORESOURCE_DMA, > + }, > + [3] = { > + .start = DSCR_CMD0_SDMS_RX0, > + .flags = IORESOURCE_DMA, > + } > +}; > + > +static struct resource au1200_mmc1_resources[] = { > + [0] = { > + .start = SD1_PHYS_ADDR, > + .end = SD1_PHYS_ADDR + 0x7ffff, > + .flags = IORESOURCE_MEM, > + }, > + [1] = { > + .start = AU1200_SD_INT, > + .flags = IORESOURCE_IRQ, > + }, > + [2] = { > + .start = DSCR_CMD0_SDMS_TX1, > + .flags = IORESOURCE_DMA, > + }, > + [3] = { > + .start = DSCR_CMD0_SDMS_RX1, > + .flags = IORESOURCE_DMA, > + } > +}; > + Shouldn't the IRQ/DMA resources also have their 'end' field set? [...] > diff --git a/arch/mips/au1000/pb1200/platform.c b/arch/mips/au1000/pb1200/platform.c > index 5930110..f329a38 100644 > --- a/arch/mips/au1000/pb1200/platform.c > +++ b/arch/mips/au1000/pb1200/platform.c > @@ -22,6 +22,66 @@ > #include <linux/platform_device.h> > > #include <asm/mach-au1x00/au1xxx.h> > +#include <asm/mach-au1x00/au1100_mmc.h> > + > +static void pb1200mmc0_set_power(void *mmc_host, int state) > +{ > + if (state) > + bcsr->board |= BCSR_BOARD_SD0PWR; > + else > + bcsr->board &= ~BCSR_BOARD_SD0PWR; > + > + au_sync_delay(1); > +} > + > +static int pb1200mmc0_card_readonly(void *mmc_host) > +{ > + return (bcsr->status & BCSR_STATUS_SD0WP) ? 1 : 0; > +} > + > +static int pb1200mmc0_card_inserted(void *mmc_host) > +{ > + return (bcsr->sig_status & BCSR_INT_SD0INSERT) ? 1 : 0; > +} > + > +#ifndef CONFIG_MIPS_DB1200 > +static void pb1200mmc1_set_power(void *mmc_host, int state) > +{ > + if (state) > + bcsr->board |= BCSR_BOARD_SD1PWR; > + else > + bcsr->board &= ~BCSR_BOARD_SD1PWR; > + > + au_sync_delay(1); > +} > + > +static int pb1200mmc1_card_readonly(void *mmc_host) > +{ > + return (bcsr->status & BCSR_STATUS_SD1WP) ? 1 : 0; > +} > + > +static int pb1200mmc1_card_inserted(void *mmc_host) > +{ > + return (bcsr->sig_status & BCSR_INT_SD1INSERT) ? 1 : 0; > +} > +#endif These 2 separate versions could be converted into single one by using the data arrays holding info BCSR bits -- something like the MMC driver has currently. > + > +const struct au1xmmc_platform_data au1xmmc_platdata[2] = { > + [0] = { > + .set_power = pb1200mmc0_set_power, > + .card_inserted = pb1200mmc0_card_inserted, > + .card_readonly = pb1200mmc0_card_readonly, > + .cd_setup = NULL, /* use poll-timer in driver */ > + }, > +#ifndef CONFIG_MIPS_DB1200 > + [1] = { > + .set_power = pb1200mmc1_set_power, > + .card_inserted = pb1200mmc1_card_inserted, > + .card_readonly = pb1200mmc1_card_readonly, > + .cd_setup = NULL, /* use poll-timer in driver */ > + }, > +#endif > +}; You don't have to explicitly set 'cd_setup' to NULL... PS: BTW, I've noticed that include/asm-mips/mach-db1x00/db1x00.h defines macros mmc_card_insterted() and mmc_power_on() which no code seems to be using (might have been intended for use by the MMC driver but why no such macros in other board headers?). Care to remove those while you're working on MMC? WBR, Sergei ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards 2008-05-21 12:32 ` Sergei Shtylyov @ 2008-05-21 13:10 ` Manuel Lauss 0 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-21 13:10 UTC (permalink / raw) To: Sergei Shtylyov; +Cc: linux-mips, linux-kernel, drzeus Hi Sergei, > Manuel Lauss wrote: > >> Add au1xmmc platform data for PB1200/DB1200 boards, and wire up >> the 2 SD controllers for them. > >> Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > > OK, this definitely looks better (and shorter :-). Thanks ;-) >> +static struct resource au1200_mmc0_resources[] = { >> + [0] = { >> + .start = SD0_PHYS_ADDR, >> + .end = SD0_PHYS_ADDR + 0x7ffff, >> + .flags = IORESOURCE_MEM, >> + }, >> + [1] = { >> + .start = AU1200_SD_INT, >> + .flags = IORESOURCE_IRQ, >> + }, >> + [2] = { >> + .start = DSCR_CMD0_SDMS_TX0, >> + .flags = IORESOURCE_DMA, >> + }, >> + [3] = { >> + .start = DSCR_CMD0_SDMS_RX0, >> + .flags = IORESOURCE_DMA, >> + } >> +}; >> + >> +static struct resource au1200_mmc1_resources[] = { >> + [0] = { >> + .start = SD1_PHYS_ADDR, >> + .end = SD1_PHYS_ADDR + 0x7ffff, >> + .flags = IORESOURCE_MEM, >> + }, >> + [1] = { >> + .start = AU1200_SD_INT, >> + .flags = IORESOURCE_IRQ, >> + }, >> + [2] = { >> + .start = DSCR_CMD0_SDMS_TX1, >> + .flags = IORESOURCE_DMA, >> + }, >> + [3] = { >> + .start = DSCR_CMD0_SDMS_RX1, >> + .flags = IORESOURCE_DMA, >> + } >> +}; >> + > > Shouldn't the IRQ/DMA resources also have their 'end' field set? Not sure, but I'll add them too. >> +static void pb1200mmc0_set_power(void *mmc_host, int state) >> +{ >> + if (state) >> + bcsr->board |= BCSR_BOARD_SD0PWR; >> + else >> + bcsr->board &= ~BCSR_BOARD_SD0PWR; >> + >> + au_sync_delay(1); >> +} >> + >> +static int pb1200mmc0_card_readonly(void *mmc_host) >> +{ >> + return (bcsr->status & BCSR_STATUS_SD0WP) ? 1 : 0; >> +} >> + >> +static int pb1200mmc0_card_inserted(void *mmc_host) >> +{ >> + return (bcsr->sig_status & BCSR_INT_SD0INSERT) ? 1 : 0; >> +} >> + >> +#ifndef CONFIG_MIPS_DB1200 >> +static void pb1200mmc1_set_power(void *mmc_host, int state) >> +{ >> + if (state) >> + bcsr->board |= BCSR_BOARD_SD1PWR; >> + else >> + bcsr->board &= ~BCSR_BOARD_SD1PWR; >> + >> + au_sync_delay(1); >> +} >> + >> +static int pb1200mmc1_card_readonly(void *mmc_host) >> +{ >> + return (bcsr->status & BCSR_STATUS_SD1WP) ? 1 : 0; >> +} >> + >> +static int pb1200mmc1_card_inserted(void *mmc_host) >> +{ >> + return (bcsr->sig_status & BCSR_INT_SD1INSERT) ? 1 : 0; >> +} >> +#endif > > These 2 separate versions could be converted into single one by using > the data arrays holding info BCSR bits -- something like the MMC driver has > currently. Well, that's what my initial submission did, but it required access to the mmc drivers host structure (moved from au1xmmc.h to au1100_mmc.h) to determine which controller wants the attention, and you weren't fond of that. >> + >> +const struct au1xmmc_platform_data au1xmmc_platdata[2] = { >> + [0] = { >> + .set_power = pb1200mmc0_set_power, >> + .card_inserted = pb1200mmc0_card_inserted, >> + .card_readonly = pb1200mmc0_card_readonly, >> + .cd_setup = NULL, /* use poll-timer in driver */ >> + }, >> +#ifndef CONFIG_MIPS_DB1200 >> + [1] = { >> + .set_power = pb1200mmc1_set_power, >> + .card_inserted = pb1200mmc1_card_inserted, >> + .card_readonly = pb1200mmc1_card_readonly, >> + .cd_setup = NULL, /* use poll-timer in driver */ >> + }, >> +#endif >> +}; > > You don't have to explicitly set 'cd_setup' to NULL... The comment explains what setting to NULL does, so I'd like to keep it (for people implementing this for other boards and wondering what to do with thse members...) > PS: BTW, I've noticed that include/asm-mips/mach-db1x00/db1x00.h defines > macros mmc_card_insterted() and mmc_power_on() which no code seems to be > using (might have been intended for use by the MMC driver but why no such > macros in other board headers?). Care to remove those while you're working > on MMC? Sure, I'll add another patch to the pile. Thank you! Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 5/9] au1xmmc: enable 4 bit transfer mode 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (3 preceding siblings ...) 2008-05-19 8:06 ` [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards Manuel Lauss @ 2008-05-19 8:06 ` Manuel Lauss 2008-05-19 8:06 ` [PATCH 6/9] au1xmmc: SDIO IRQ support Manuel Lauss ` (4 subsequent siblings) 9 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:06 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 6/9] au1xmmc: SDIO IRQ support 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (4 preceding siblings ...) 2008-05-19 8:06 ` [PATCH 5/9] au1xmmc: enable 4 bit transfer mode Manuel Lauss @ 2008-05-19 8:06 ` Manuel Lauss 2008-05-19 8:07 ` [PATCH 7/9] au1xmmc: codingstyle tidying Manuel Lauss ` (3 subsequent siblings) 9 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:06 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 7/9] au1xmmc: codingstyle tidying 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (5 preceding siblings ...) 2008-05-19 8:06 ` [PATCH 6/9] au1xmmc: SDIO IRQ support Manuel Lauss @ 2008-05-19 8:07 ` Manuel Lauss 2008-05-19 8:08 ` [PATCH 8/9] au1xmmc: abort requests early if no card is present Manuel Lauss ` (2 subsequent siblings) 9 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:07 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 8/9] au1xmmc: abort requests early if no card is present 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (6 preceding siblings ...) 2008-05-19 8:07 ` [PATCH 7/9] au1xmmc: codingstyle tidying Manuel Lauss @ 2008-05-19 8:08 ` Manuel Lauss 2008-06-05 21:05 ` Pierre Ossman 2008-05-19 8:08 ` [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support Manuel Lauss 2008-06-05 21:09 ` [PATCH 0/9] au1xmmc updates #3 Pierre Ossman 9 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:08 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 8/9] au1xmmc: abort requests early if no card is present 2008-05-19 8:08 ` [PATCH 8/9] au1xmmc: abort requests early if no card is present Manuel Lauss @ 2008-06-05 21:05 ` Pierre Ossman 2008-06-06 7:17 ` Manuel Lauss 0 siblings, 1 reply; 29+ messages in thread From: Pierre Ossman @ 2008-06-05 21:05 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, sshtylyov [-- Attachment #1: Type: text/plain, Size: 1240 bytes --] On Mon, 19 May 2008 10:08:04 +0200 Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > From ec41439903048bf98e301dbd03426c63156ebc0e Mon Sep 17 00:00:00 2001 > From: Manuel Lauss <mlau@msc-ge.com> > Date: Sun, 18 May 2008 15:52:43 +0200 > Subject: [PATCH] au1xmmc: abort requests early if no card is present > > Don't process a request if no card is present. > > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > --- > drivers/mmc/host/au1xmmc.c | 7 +++++++ > 1 files changed, 7 insertions(+), 0 deletions(-) > > diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c > index be09a14..0b30582 100644 > --- a/drivers/mmc/host/au1xmmc.c > +++ b/drivers/mmc/host/au1xmmc.c > @@ -689,6 +689,13 @@ static void au1xmmc_request(struct mmc_host *mmc, struct mmc_request *mrq) > host->mrq = mrq; > host->status = HOST_S_CMD; > > + /* fail request immediately if no card is present */ > + if (0 == au1xmmc_card_inserted(host)) { > + mrq->cmd->error = -ETIMEDOUT; > + au1xmmc_finish_request(host); > + return; > + } > + > if (mrq->data) { > FLUSH_FIFO(host); > ret = au1xmmc_prepare_data(host, mrq->data); You should use -ENOMEDIUM for this case. Rgds Pierre [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 8/9] au1xmmc: abort requests early if no card is present 2008-06-05 21:05 ` Pierre Ossman @ 2008-06-06 7:17 ` Manuel Lauss 0 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-06-06 7:17 UTC (permalink / raw) To: Pierre Ossman; +Cc: linux-mips, linux-kernel, sshtylyov Hi Pierre, On Thu, Jun 05, 2008 at 11:05:52PM +0200, Pierre Ossman wrote: > On Mon, 19 May 2008 10:08:04 +0200 > Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > > > From ec41439903048bf98e301dbd03426c63156ebc0e Mon Sep 17 00:00:00 2001 > > From: Manuel Lauss <mlau@msc-ge.com> > > Date: Sun, 18 May 2008 15:52:43 +0200 > > Subject: [PATCH] au1xmmc: abort requests early if no card is present > > > > Don't process a request if no card is present. > > > > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > > --- > > drivers/mmc/host/au1xmmc.c | 7 +++++++ > > 1 files changed, 7 insertions(+), 0 deletions(-) > > > > diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c > > index be09a14..0b30582 100644 > > --- a/drivers/mmc/host/au1xmmc.c > > +++ b/drivers/mmc/host/au1xmmc.c > > @@ -689,6 +689,13 @@ static void au1xmmc_request(struct mmc_host *mmc, struct mmc_request *mrq) > > host->mrq = mrq; > > host->status = HOST_S_CMD; > > > > + /* fail request immediately if no card is present */ > > + if (0 == au1xmmc_card_inserted(host)) { > > + mrq->cmd->error = -ETIMEDOUT; > > + au1xmmc_finish_request(host); > > + return; > > + } > > + > > if (mrq->data) { > > FLUSH_FIFO(host); > > ret = au1xmmc_prepare_data(host, mrq->data); > > You should use -ENOMEDIUM for this case. Didn't know it existed, consider it changed. Thanks! Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (7 preceding siblings ...) 2008-05-19 8:08 ` [PATCH 8/9] au1xmmc: abort requests early if no card is present Manuel Lauss @ 2008-05-19 8:08 ` Manuel Lauss 2008-05-19 13:27 ` Sergei Shtylyov 2008-06-05 21:08 ` Pierre Ossman 2008-06-05 21:09 ` [PATCH 0/9] au1xmmc updates #3 Pierre Ossman 9 siblings, 2 replies; 29+ messages in thread From: Manuel Lauss @ 2008-05-19 8:08 UTC (permalink / raw) To: linux-mips, linux-kernel, drzeus, sshtylyov ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support 2008-05-19 8:08 ` [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support Manuel Lauss @ 2008-05-19 13:27 ` Sergei Shtylyov 2008-06-05 21:08 ` Pierre Ossman 1 sibling, 0 replies; 29+ messages in thread From: Sergei Shtylyov @ 2008-05-19 13:27 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, drzeus Hello. Manuel Lauss wrote: > Add back PB1200/DB1200 MMC activity LED support just the way > it was done in the original driver source. > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> For the reason of "bisectability" you'd better merge this with patch 3. WBR, Sergei ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support 2008-05-19 8:08 ` [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support Manuel Lauss 2008-05-19 13:27 ` Sergei Shtylyov @ 2008-06-05 21:08 ` Pierre Ossman 2008-06-06 7:45 ` Manuel Lauss 1 sibling, 1 reply; 29+ messages in thread From: Pierre Ossman @ 2008-06-05 21:08 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, sshtylyov [-- Attachment #1: Type: text/plain, Size: 659 bytes --] On Mon, 19 May 2008 10:08:37 +0200 Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > From 5747bd6933bb212ab83044fa79adf185d248513f Mon Sep 17 00:00:00 2001 > From: Manuel Lauss <mlau@msc-ge.com> > Date: Sun, 18 May 2008 16:05:56 +0200 > Subject: [PATCH] au1xmmc: Add back PB1200/DB1200 MMC activity LED support. > > Add back PB1200/DB1200 MMC activity LED support just the way > it was done in the original driver source. > > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> You might want to consider using the LED subsystem now that the MMC core exports a trigger. Look at my next tree for how sdhci uses it. Rgds Pierre [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support 2008-06-05 21:08 ` Pierre Ossman @ 2008-06-06 7:45 ` Manuel Lauss 0 siblings, 0 replies; 29+ messages in thread From: Manuel Lauss @ 2008-06-06 7:45 UTC (permalink / raw) To: Pierre Ossman; +Cc: linux-mips, linux-kernel, sshtylyov Hi Pierre, On Thu, Jun 05, 2008 at 11:08:03PM +0200, Pierre Ossman wrote: > On Mon, 19 May 2008 10:08:37 +0200 > Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > > > From 5747bd6933bb212ab83044fa79adf185d248513f Mon Sep 17 00:00:00 2001 > > From: Manuel Lauss <mlau@msc-ge.com> > > Date: Sun, 18 May 2008 16:05:56 +0200 > > Subject: [PATCH] au1xmmc: Add back PB1200/DB1200 MMC activity LED support. > > > > Add back PB1200/DB1200 MMC activity LED support just the way > > it was done in the original driver source. > > > > Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> > > You might want to consider using the LED subsystem now that the MMC > core exports a trigger. Look at my next tree for how sdhci uses it. I tried that originally. The LED subsystem seems quite complex for something as simple as turning on a bit in a register. I don't have a DB1200 to test so I went the safe route and added a simple callback to toggle the LED bit in the DB1200 FPGA. I'll try to come up with something over the weekend and then resend the whole series. Thanks! Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 0/9] au1xmmc updates #3 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss ` (8 preceding siblings ...) 2008-05-19 8:08 ` [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support Manuel Lauss @ 2008-06-05 21:09 ` Pierre Ossman 2008-06-06 7:18 ` Manuel Lauss 9 siblings, 1 reply; 29+ messages in thread From: Pierre Ossman @ 2008-06-05 21:09 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, sshtylyov [-- Attachment #1: Type: text/plain, Size: 286 bytes --] On Mon, 19 May 2008 10:03:39 +0200 Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > Hello, > > The following set of patches remove demoboard-specific code from the > au1xmmc.c driver and adds new features. > The role of maintainer is vacant if you want it. *nudge* ;) [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 0/9] au1xmmc updates #3 2008-06-05 21:09 ` [PATCH 0/9] au1xmmc updates #3 Pierre Ossman @ 2008-06-06 7:18 ` Manuel Lauss 2008-06-06 10:11 ` Pierre Ossman 0 siblings, 1 reply; 29+ messages in thread From: Manuel Lauss @ 2008-06-06 7:18 UTC (permalink / raw) To: Pierre Ossman; +Cc: linux-mips, linux-kernel, sshtylyov Hi Pierre, On Thu, Jun 05, 2008 at 11:09:23PM +0200, Pierre Ossman wrote: > On Mon, 19 May 2008 10:03:39 +0200 > Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > > > Hello, > > > > The following set of patches remove demoboard-specific code from the > > au1xmmc.c driver and adds new features. > > > > The role of maintainer is vacant if you want it. *nudge* ;) I'll do it as long as I have hardware or you find someone better. Thanks! Manuel Lauss ^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: [PATCH 0/9] au1xmmc updates #3 2008-06-06 7:18 ` Manuel Lauss @ 2008-06-06 10:11 ` Pierre Ossman 0 siblings, 0 replies; 29+ messages in thread From: Pierre Ossman @ 2008-06-06 10:11 UTC (permalink / raw) To: Manuel Lauss; +Cc: linux-mips, linux-kernel, sshtylyov [-- Attachment #1: Type: text/plain, Size: 339 bytes --] On Fri, 6 Jun 2008 09:18:31 +0200 Manuel Lauss <mano@roarinelk.homelinux.net> wrote: > > > > The role of maintainer is vacant if you want it. *nudge* ;) > > > I'll do it as long as I have hardware or you find someone better. > Great. Please include a patch for the MAINTAINERS file in your next set then. Rgds Pierre [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 197 bytes --] ^ permalink raw reply [flat|nested] 29+ messages in thread
end of thread, other threads:[~2008-06-06 11:45 UTC | newest] Thread overview: 29+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-05-19 8:03 [PATCH 0/9] au1xmmc updates #3 Manuel Lauss 2008-05-19 8:04 ` [PATCH 1/9] Alchemy: export get_au1x00_speed for modules Manuel Lauss 2008-05-19 9:35 ` Sergei Shtylyov 2008-05-19 9:49 ` Manuel Lauss 2008-06-05 21:03 ` Pierre Ossman 2008-06-06 7:16 ` Manuel Lauss 2008-06-06 11:45 ` Sergei Shtylyov 2008-05-19 8:04 ` [PATCH 2/9] Alchemy: dbdma: add API to delete custom DDMA device ids Manuel Lauss 2008-05-19 8:05 ` [PATCH 3/9] au1xmmc: remove pb1200 board-specific code from driver file Manuel Lauss 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 8:17 ` Manuel Lauss 2008-05-19 10:07 ` Manuel Lauss 2008-05-19 10:07 ` Manuel Lauss 2008-05-19 8:06 ` [PATCH 4/9] Alchemy: register mmc platform device for db1200/pb1200 boards Manuel Lauss 2008-05-21 12:32 ` Sergei Shtylyov 2008-05-21 13:10 ` Manuel Lauss 2008-05-19 8:06 ` [PATCH 5/9] au1xmmc: enable 4 bit transfer mode Manuel Lauss 2008-05-19 8:06 ` [PATCH 6/9] au1xmmc: SDIO IRQ support Manuel Lauss 2008-05-19 8:07 ` [PATCH 7/9] au1xmmc: codingstyle tidying Manuel Lauss 2008-05-19 8:08 ` [PATCH 8/9] au1xmmc: abort requests early if no card is present Manuel Lauss 2008-06-05 21:05 ` Pierre Ossman 2008-06-06 7:17 ` Manuel Lauss 2008-05-19 8:08 ` [PATCH 9/9] au1xmmc: Add back PB1200/DB1200 MMC activity LED support Manuel Lauss 2008-05-19 13:27 ` Sergei Shtylyov 2008-06-05 21:08 ` Pierre Ossman 2008-06-06 7:45 ` Manuel Lauss 2008-06-05 21:09 ` [PATCH 0/9] au1xmmc updates #3 Pierre Ossman 2008-06-06 7:18 ` Manuel Lauss 2008-06-06 10:11 ` Pierre Ossman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox