Skip to content

Commit

Permalink
au1xmmc: enable 4 bit transfer mode
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
  • Loading branch information
Manuel Lauss authored and Pierre Ossman committed Jul 15, 2008
1 parent c4223c2 commit 281dd23
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions drivers/mmc/host/au1xmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,13 @@ static inline void IRQ_OFF(struct au1xmmc_host *host, u32 mask)

static inline void SEND_STOP(struct au1xmmc_host *host)
{

/* We know the value of CONFIG2, so avoid a read we don't need */
u32 mask = SD_CONFIG2_EN;
u32 config2;

WARN_ON(host->status != HOST_S_DATA);
host->status = HOST_S_STOP;

au_writel(mask | SD_CONFIG2_DF, HOST_CONFIG2(host));
config2 = au_readl(HOST_CONFIG2(host));
au_writel(config2 | SD_CONFIG2_DF, HOST_CONFIG2(host));
au_sync();

/* Send the stop commmand */
Expand Down Expand Up @@ -697,6 +696,7 @@ static void au1xmmc_reset_controller(struct au1xmmc_host *host)
static void au1xmmc_set_ios(struct mmc_host* mmc, struct mmc_ios* ios)
{
struct au1xmmc_host *host = mmc_priv(mmc);
u32 config2;

if (ios->power_mode == MMC_POWER_OFF)
au1xmmc_set_power(host, 0);
Expand All @@ -708,6 +708,18 @@ static void au1xmmc_set_ios(struct mmc_host* mmc, struct mmc_ios* ios)
au1xmmc_set_clock(host, ios->clock);
host->clock = ios->clock;
}

config2 = au_readl(HOST_CONFIG2(host));
switch (ios->bus_width) {
case MMC_BUS_WIDTH_4:
config2 |= SD_CONFIG2_WB;
break;
case MMC_BUS_WIDTH_1:
config2 &= ~SD_CONFIG2_WB;
break;
}
au_writel(config2, HOST_CONFIG2(host));
au_sync();
}

#define STATUS_TIMEOUT (SD_STATUS_RAT | SD_STATUS_DT)
Expand Down Expand Up @@ -952,7 +964,7 @@ static int __devinit au1xmmc_probe(struct platform_device *pdev)
mmc->max_blk_count = 512;

mmc->ocr_avail = AU1XMMC_OCR;
mmc->caps = 0;
mmc->caps = MMC_CAP_4_BIT_DATA;

host->status = HOST_S_IDLE;

Expand Down

0 comments on commit 281dd23

Please sign in to comment.