Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1408551 > unrolled thread
| Started by | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| First post | 2016-05-29 09:10 +0200 |
| Last post | 2016-05-29 09:10 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH 0/3] mmc: sunxi: Fix MMC DDR modes for Allwinner A80 Chen-Yu Tsai <wens@csie.org> - 2016-05-29 09:10 +0200
[PATCH 3/3] mmc: sunxi: Re-enable eMMC HS-DDR modes on Allwinner A80 Chen-Yu Tsai <wens@csie.org> - 2016-05-29 09:10 +0200
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2016-05-29 09:10 +0200 |
| Subject | [PATCH 0/3] mmc: sunxi: Fix MMC DDR modes for Allwinner A80 |
| Message-ID | <rE31f-32L-3@gated-at.bofh.it> |
Hi everyone, This series fixes and re-enables eMMC HS-DDR support for Allwinner A80 SoC. The issue with the original code was the mmc clock timings were incorrect, and thus we had disabled HS-DDR on A80 for the previous release. Patch 1 is a fix for mmc core. Arnd's patch to remove IS_ERR_VALUE replaced it with an incorrect check on return values, thus blocking the code path for HS-DDR and higher timing modes. This patch instead checks for a positive return code, which is how mmc_select_bus_width indicates a success. Patch 2 fixes the HS-DDR clock timings for the A80. Patch 3 re-enables HS-DDR mode for the A80. Regards ChenYu Chen-Yu Tsai (3): mmc: fix mmc mode selection for HS-DDR and higher mmc: sunxi: Fix DDR MMC timings for A80 mmc: sunxi: Re-enable eMMC HS-DDR modes on Allwinner A80 drivers/mmc/core/mmc.c | 4 ++-- drivers/mmc/host/sunxi-mmc.c | 9 ++------- 2 files changed, 4 insertions(+), 9 deletions(-) -- 2.8.1
[toc] | [next] | [standalone]
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2016-05-29 09:10 +0200 |
| Subject | [PATCH 3/3] mmc: sunxi: Re-enable eMMC HS-DDR modes on Allwinner A80 |
| Message-ID | <rE31f-32L-17@gated-at.bofh.it> |
| In reply to | #1408551 |
Now the the HS-DDR mode clock timings have been corrected, we can re-enable these modes on the A80. Signed-off-by: Chen-Yu Tsai <wens@csie.org> --- drivers/mmc/host/sunxi-mmc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c index 5873dc344ab2..2ee4c21ec55e 100644 --- a/drivers/mmc/host/sunxi-mmc.c +++ b/drivers/mmc/host/sunxi-mmc.c @@ -1129,11 +1129,6 @@ static int sunxi_mmc_probe(struct platform_device *pdev) MMC_CAP_1_8V_DDR | MMC_CAP_ERASE | MMC_CAP_SDIO_IRQ; - /* TODO MMC DDR is not working on A80 */ - if (of_device_is_compatible(pdev->dev.of_node, - "allwinner,sun9i-a80-mmc")) - mmc->caps &= ~MMC_CAP_1_8V_DDR; - ret = mmc_of_parse(mmc); if (ret) goto error_free_dma; -- 2.8.1
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web