From 101bcffa4f181122120ee1d86b8711dadb30a440 Mon Sep 17 00:00:00 2001 From: mb Date: Fri, 5 Nov 2010 16:59:39 +0000 Subject: omap24xx: Add linux 2.6.37 config/patches git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23888 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../omap24xx/patches-2.6.37/810-mmc-fixes.patch | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 target/linux/omap24xx/patches-2.6.37/810-mmc-fixes.patch (limited to 'target/linux/omap24xx/patches-2.6.37/810-mmc-fixes.patch') diff --git a/target/linux/omap24xx/patches-2.6.37/810-mmc-fixes.patch b/target/linux/omap24xx/patches-2.6.37/810-mmc-fixes.patch new file mode 100644 index 0000000000..15113f59e4 --- /dev/null +++ b/target/linux/omap24xx/patches-2.6.37/810-mmc-fixes.patch @@ -0,0 +1,70 @@ +--- + drivers/mmc/core/core.c | 5 +++-- + drivers/mmc/host/omap.c | 7 +++++-- + include/linux/mmc/host.h | 2 ++ + 3 files changed, 10 insertions(+), 4 deletions(-) + +Index: linux-2.6.37-rc1/drivers/mmc/host/omap.c +=================================================================== +--- linux-2.6.37-rc1.orig/drivers/mmc/host/omap.c 2010-11-01 12:54:12.000000000 +0100 ++++ linux-2.6.37-rc1/drivers/mmc/host/omap.c 2010-11-05 17:07:25.130000416 +0100 +@@ -387,7 +387,7 @@ + + mod_timer(&host->cmd_abort_timer, jiffies + HZ/2); + +- OMAP_MMC_WRITE(host, CTO, 200); ++// OMAP_MMC_WRITE(host, CTO, 200); + OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff); + OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16); + OMAP_MMC_WRITE(host, IE, +@@ -1454,6 +1454,7 @@ + host->dma_ch = -1; + + host->irq = irq; ++ host->reg_shift = (cpu_is_omap7xx() ? 1 : 2); + host->phys_base = host->mem_res->start; + host->virt_base = ioremap(res->start, res->end - res->start + 1); + if (!host->virt_base) +@@ -1493,7 +1494,9 @@ + } + } + +- host->reg_shift = (cpu_is_omap7xx() ? 1 : 2); ++ /* Make sure the detect workqueue was run at least once. */ ++ printk(KERN_INFO "OMAP-mmc: waiting for cards...\n"); ++ mmc_flush_scheduled_work(); + + return 0; + +Index: linux-2.6.37-rc1/drivers/mmc/core/core.c +=================================================================== +--- linux-2.6.37-rc1.orig/drivers/mmc/core/core.c 2010-11-01 12:54:12.000000000 +0100 ++++ linux-2.6.37-rc1/drivers/mmc/core/core.c 2010-11-05 17:07:25.131000390 +0100 +@@ -74,12 +74,13 @@ + } + + /* +- * Internal function. Flush all scheduled work from the MMC work queue. ++ * Flush all scheduled work from the MMC work queue. + */ +-static void mmc_flush_scheduled_work(void) ++void mmc_flush_scheduled_work(void) + { + flush_workqueue(workqueue); + } ++EXPORT_SYMBOL(mmc_flush_scheduled_work); + + /** + * mmc_request_done - finish processing an MMC request +Index: linux-2.6.37-rc1/include/linux/mmc/host.h +=================================================================== +--- linux-2.6.37-rc1.orig/include/linux/mmc/host.h 2010-11-01 12:54:12.000000000 +0100 ++++ linux-2.6.37-rc1/include/linux/mmc/host.h 2010-11-05 17:07:25.131000390 +0100 +@@ -306,5 +306,7 @@ + return !(host->caps & MMC_CAP_NONREMOVABLE) && mmc_assume_removable; + } + ++void mmc_flush_scheduled_work(void); ++ + #endif + -- cgit v1.2.3