summaryrefslogtreecommitdiff
path: root/kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-04-27 18:24:44 -0400
committerDavid P <megver83@parabola.nu>2020-04-27 18:28:38 -0400
commita5dea4f2300de846d3d9967ffdfd3b3bea4e8d70 (patch)
tree8fdf7e40b41e26cf8a1249fd3d384ae2bfac6823 /kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch
parent940cbcb215b3a06b0f6a85c0700d6d642d1bebc8 (diff)
downloadabslibre-a5dea4f2300de846d3d9967ffdfd3b3bea4e8d70.tar.gz
abslibre-a5dea4f2300de846d3d9967ffdfd3b3bea4e8d70.tar.bz2
abslibre-a5dea4f2300de846d3d9967ffdfd3b3bea4e8d70.zip
rmpkg: kernels/linux-libre-xtreme
Reason: Linux-libre{-hardened} enables all LSM by default in i686 and x86_64 since a long time. Although it kinda made sense because it had AppArmor enabled by default, it's not worth to maintain it since anyone can enable it by passing a kernel parameter, as explained in the AppArmor page in ArchWiki. This isn't the case for armv7h, but will see if users want AppArmor for ARM in the future. Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch')
-rw-r--r--kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch b/kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch
deleted file mode 100644
index 81f90ebd9..000000000
--- a/kernels/linux-libre-xtreme/0004-fix-mvsdio-eMMC-timing.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From c49db8d7558931cf54a5e3ed4565ecbfda2a989a 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/10] 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 74a0a7fbbf7f..92eadb116762 100644
---- a/drivers/mmc/host/mvsdio.c
-+++ b/drivers/mmc/host/mvsdio.c
-@@ -90,7 +90,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",
-@@ -613,6 +613,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.25.0
-