From 5dddfdcab842d62248a939cd037d8444d6da5c4b Mon Sep 17 00:00:00 2001 From: Venkat Gopalakrishnan Date: Tue, 12 Feb 2013 16:13:05 -0800 Subject: include: mmc: Export sanitized mmc headers Export sanitized mmc.h and core.h for userspace. Change-Id: I3a6eadde2023d974b0ce260a77082b01d8ba0b5d Signed-off-by: Venkat Gopalakrishnan [subhashj@codeaurora.org: fixed trivial merge conflicts] Signed-off-by: Subhash Jadavani --- include/uapi/linux/mmc/Kbuild | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/uapi/linux') diff --git a/include/uapi/linux/mmc/Kbuild b/include/uapi/linux/mmc/Kbuild index b250482ea78a..ce4e88593605 100644 --- a/include/uapi/linux/mmc/Kbuild +++ b/include/uapi/linux/mmc/Kbuild @@ -1,4 +1,6 @@ # UAPI Header export list header-y += core.h +header-y += core.h header-y += ioctl.h header-y += mmc.h +header-y += mmc.h -- cgit v1.2.3 From 2e35d277288ce9c3c5ff70b4b975b82c64d75349 Mon Sep 17 00:00:00 2001 From: Ritesh Harjani Date: Fri, 14 Nov 2014 11:06:40 +0530 Subject: mmc: sdhci: Dont enable CDR for tuning commands Currently we enable CDR for every read command including for tuning procedure which is not correct (as CDR if enabled might correct the phase during tuning and we wont be able to detect the correct phase during tuning). So, disable CDR for read tuning commands. CRs-fixed: 759398 Change-Id: I051b6e3b204dde22cdc973759c3e32d0a81c369a Signed-off-by: Ritesh Harjani Signed-off-by: Pavan Anamula --- include/uapi/linux/mmc/mmc.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/uapi/linux') diff --git a/include/uapi/linux/mmc/mmc.h b/include/uapi/linux/mmc/mmc.h index f75ae945c0c5..dd9f3a644169 100644 --- a/include/uapi/linux/mmc/mmc.h +++ b/include/uapi/linux/mmc/mmc.h @@ -29,6 +29,7 @@ #define MMC_READ_MULTIPLE_BLOCK 18 /* adtc [31:0] data addr R1 */ #define MMC_SEND_TUNING_BLOCK 19 /* adtc R1 */ #define MMC_SEND_TUNING_BLOCK_HS200 21 /* adtc R1 */ +#define MMC_SEND_TUNING_BLOCK_HS400 MMC_SEND_TUNING_BLOCK_HS200 #define MMC_TUNING_BLK_PATTERN_4BIT_SIZE 64 #define MMC_TUNING_BLK_PATTERN_8BIT_SIZE 128 -- cgit v1.2.3