summaryrefslogtreecommitdiff
path: root/libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-04-24 11:16:37 -0300
committerDavid P <megver83@parabola.nu>2018-04-24 11:18:15 -0300
commitcbcfbc612fa82f28ac82b97da744393789f263fe (patch)
tree6174a452b6e8b4c1eec2e9a9c339bc94bb1612fe /libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch
parent58a4cab6e3c6bc0f641c987d02633411dbbb013a (diff)
downloadabslibre-cbcfbc612fa82f28ac82b97da744393789f263fe.tar.gz
abslibre-cbcfbc612fa82f28ac82b97da744393789f263fe.tar.bz2
abslibre-cbcfbc612fa82f28ac82b97da744393789f263fe.zip
upgpkg: libre/linux-libre-hardened 4.15.18_gnu.a-1
Remove i686 and armv7h. Ref: https://lists.parabola.nu/pipermail/dev/2018-April/006638.html Also update config.x86_64 to better match linux-hardened Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch')
-rw-r--r--libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch b/libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch
deleted file mode 100644
index 842dfcd77..000000000
--- a/libre/linux-libre-hardened/0004-fix-mvsdio-eMMC-timing.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From c6275cb1cf73c56e9c2e74ae7c41abf3b70cb5ae Mon Sep 17 00:00:00 2001
-From: Kevin Mihelich <kevin@archlinuxarm.org>
-Date: Fri, 5 Sep 2014 15:43:56 -0600
-Subject: [PATCH 04/14] fix mvsdio eMMC timing
-
-These changes from Globalscale change the MMC timing to allow the eMMC versions
-of the Mirabox and SMILE Plug to work.
-
-Signed-off-by: Kevin Mihelich <kevin@archlinuxarm.org>
----
- drivers/mmc/host/mvsdio.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/drivers/mmc/host/mvsdio.c b/drivers/mmc/host/mvsdio.c
-index 210247b3d11a..1a1802dc9ef4 100644
---- a/drivers/mmc/host/mvsdio.c
-+++ b/drivers/mmc/host/mvsdio.c
-@@ -93,7 +93,7 @@ static int mvsd_setup_data(struct mvsd_host *host, struct mmc_data *data)
- tmout_index = fls(tmout - 1) - 12;
- if (tmout_index < 0)
- tmout_index = 0;
-- if (tmout_index > MVSD_HOST_CTRL_TMOUT_MAX)
-+// if (tmout_index > MVSD_HOST_CTRL_TMOUT_MAX) //by steven, try to setup the timeout to maximum value
- tmout_index = MVSD_HOST_CTRL_TMOUT_MAX;
-
- dev_dbg(host->dev, "data %s at 0x%08x: blocks=%d blksz=%d tmout=%u (%d)\n",
-@@ -614,6 +614,8 @@ static void mvsd_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
- u32 m = DIV_ROUND_UP(host->base_clock, ios->clock) - 1;
- if (m > MVSD_BASE_DIV_MAX)
- m = MVSD_BASE_DIV_MAX;
-+ if(ios->clock==50000000 ) //by steven
-+ m=1;
- mvsd_write(MVSD_CLK_DIV, m);
- host->clock = ios->clock;
- host->ns_per_clk = 1000000000 / (host->base_clock / (m+1));
---
-2.16.1
-