Merge branch 'fixes' into next
This commit is contained in:
commit
506f43994d
|
@ -30,7 +30,10 @@
|
||||||
#define SDHCI_ARASAN_VENDOR_REGISTER 0x78
|
#define SDHCI_ARASAN_VENDOR_REGISTER 0x78
|
||||||
|
|
||||||
#define SDHCI_ARASAN_ITAPDLY_REGISTER 0xF0F8
|
#define SDHCI_ARASAN_ITAPDLY_REGISTER 0xF0F8
|
||||||
|
#define SDHCI_ARASAN_ITAPDLY_SEL_MASK 0xFF
|
||||||
|
|
||||||
#define SDHCI_ARASAN_OTAPDLY_REGISTER 0xF0FC
|
#define SDHCI_ARASAN_OTAPDLY_REGISTER 0xF0FC
|
||||||
|
#define SDHCI_ARASAN_OTAPDLY_SEL_MASK 0x3F
|
||||||
|
|
||||||
#define SDHCI_ARASAN_CQE_BASE_ADDR 0x200
|
#define SDHCI_ARASAN_CQE_BASE_ADDR 0x200
|
||||||
#define VENDOR_ENHANCED_STROBE BIT(0)
|
#define VENDOR_ENHANCED_STROBE BIT(0)
|
||||||
|
@ -600,14 +603,8 @@ static int sdhci_zynqmp_sdcardclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
u8 tap_delay, tap_max = 0;
|
u8 tap_delay, tap_max = 0;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/*
|
/* This is applicable for SDHCI_SPEC_300 and above */
|
||||||
* This is applicable for SDHCI_SPEC_300 and above
|
if (host->version < SDHCI_SPEC_300)
|
||||||
* ZynqMP does not set phase for <=25MHz clock.
|
|
||||||
* If degrees is zero, no need to do anything.
|
|
||||||
*/
|
|
||||||
if (host->version < SDHCI_SPEC_300 ||
|
|
||||||
host->timing == MMC_TIMING_LEGACY ||
|
|
||||||
host->timing == MMC_TIMING_UHS_SDR12 || !degrees)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
switch (host->timing) {
|
switch (host->timing) {
|
||||||
|
@ -638,6 +635,9 @@ static int sdhci_zynqmp_sdcardclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
if (ret)
|
if (ret)
|
||||||
pr_err("Error setting Output Tap Delay\n");
|
pr_err("Error setting Output Tap Delay\n");
|
||||||
|
|
||||||
|
/* Release DLL Reset */
|
||||||
|
zynqmp_pm_sd_dll_reset(node_id, PM_DLL_RESET_RELEASE);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -668,16 +668,13 @@ static int sdhci_zynqmp_sampleclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
u8 tap_delay, tap_max = 0;
|
u8 tap_delay, tap_max = 0;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/*
|
/* This is applicable for SDHCI_SPEC_300 and above */
|
||||||
* This is applicable for SDHCI_SPEC_300 and above
|
if (host->version < SDHCI_SPEC_300)
|
||||||
* ZynqMP does not set phase for <=25MHz clock.
|
|
||||||
* If degrees is zero, no need to do anything.
|
|
||||||
*/
|
|
||||||
if (host->version < SDHCI_SPEC_300 ||
|
|
||||||
host->timing == MMC_TIMING_LEGACY ||
|
|
||||||
host->timing == MMC_TIMING_UHS_SDR12 || !degrees)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
/* Assert DLL Reset */
|
||||||
|
zynqmp_pm_sd_dll_reset(node_id, PM_DLL_RESET_ASSERT);
|
||||||
|
|
||||||
switch (host->timing) {
|
switch (host->timing) {
|
||||||
case MMC_TIMING_MMC_HS:
|
case MMC_TIMING_MMC_HS:
|
||||||
case MMC_TIMING_SD_HS:
|
case MMC_TIMING_SD_HS:
|
||||||
|
@ -733,14 +730,8 @@ static int sdhci_versal_sdcardclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
struct sdhci_host *host = sdhci_arasan->host;
|
struct sdhci_host *host = sdhci_arasan->host;
|
||||||
u8 tap_delay, tap_max = 0;
|
u8 tap_delay, tap_max = 0;
|
||||||
|
|
||||||
/*
|
/* This is applicable for SDHCI_SPEC_300 and above */
|
||||||
* This is applicable for SDHCI_SPEC_300 and above
|
if (host->version < SDHCI_SPEC_300)
|
||||||
* Versal does not set phase for <=25MHz clock.
|
|
||||||
* If degrees is zero, no need to do anything.
|
|
||||||
*/
|
|
||||||
if (host->version < SDHCI_SPEC_300 ||
|
|
||||||
host->timing == MMC_TIMING_LEGACY ||
|
|
||||||
host->timing == MMC_TIMING_UHS_SDR12 || !degrees)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
switch (host->timing) {
|
switch (host->timing) {
|
||||||
|
@ -773,6 +764,7 @@ static int sdhci_versal_sdcardclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
regval = sdhci_readl(host, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
regval = sdhci_readl(host, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
||||||
regval |= SDHCI_OTAPDLY_ENABLE;
|
regval |= SDHCI_OTAPDLY_ENABLE;
|
||||||
sdhci_writel(host, regval, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
sdhci_writel(host, regval, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
||||||
|
regval &= ~SDHCI_ARASAN_OTAPDLY_SEL_MASK;
|
||||||
regval |= tap_delay;
|
regval |= tap_delay;
|
||||||
sdhci_writel(host, regval, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
sdhci_writel(host, regval, SDHCI_ARASAN_OTAPDLY_REGISTER);
|
||||||
}
|
}
|
||||||
|
@ -804,14 +796,8 @@ static int sdhci_versal_sampleclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
struct sdhci_host *host = sdhci_arasan->host;
|
struct sdhci_host *host = sdhci_arasan->host;
|
||||||
u8 tap_delay, tap_max = 0;
|
u8 tap_delay, tap_max = 0;
|
||||||
|
|
||||||
/*
|
/* This is applicable for SDHCI_SPEC_300 and above */
|
||||||
* This is applicable for SDHCI_SPEC_300 and above
|
if (host->version < SDHCI_SPEC_300)
|
||||||
* Versal does not set phase for <=25MHz clock.
|
|
||||||
* If degrees is zero, no need to do anything.
|
|
||||||
*/
|
|
||||||
if (host->version < SDHCI_SPEC_300 ||
|
|
||||||
host->timing == MMC_TIMING_LEGACY ||
|
|
||||||
host->timing == MMC_TIMING_UHS_SDR12 || !degrees)
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
switch (host->timing) {
|
switch (host->timing) {
|
||||||
|
@ -846,6 +832,7 @@ static int sdhci_versal_sampleclk_set_phase(struct clk_hw *hw, int degrees)
|
||||||
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
||||||
regval |= SDHCI_ITAPDLY_ENABLE;
|
regval |= SDHCI_ITAPDLY_ENABLE;
|
||||||
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
||||||
|
regval &= ~SDHCI_ARASAN_ITAPDLY_SEL_MASK;
|
||||||
regval |= tap_delay;
|
regval |= tap_delay;
|
||||||
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
sdhci_writel(host, regval, SDHCI_ARASAN_ITAPDLY_REGISTER);
|
||||||
regval &= ~SDHCI_ITAPDLY_CHGWIN;
|
regval &= ~SDHCI_ITAPDLY_CHGWIN;
|
||||||
|
|
|
@ -665,6 +665,15 @@ static void sdhci_intel_set_power(struct sdhci_host *host, unsigned char mode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void sdhci_intel_set_uhs_signaling(struct sdhci_host *host,
|
||||||
|
unsigned int timing)
|
||||||
|
{
|
||||||
|
/* Set UHS timing to SDR25 for High Speed mode */
|
||||||
|
if (timing == MMC_TIMING_MMC_HS || timing == MMC_TIMING_SD_HS)
|
||||||
|
timing = MMC_TIMING_UHS_SDR25;
|
||||||
|
sdhci_set_uhs_signaling(host, timing);
|
||||||
|
}
|
||||||
|
|
||||||
#define INTEL_HS400_ES_REG 0x78
|
#define INTEL_HS400_ES_REG 0x78
|
||||||
#define INTEL_HS400_ES_BIT BIT(0)
|
#define INTEL_HS400_ES_BIT BIT(0)
|
||||||
|
|
||||||
|
@ -721,7 +730,7 @@ static const struct sdhci_ops sdhci_intel_byt_ops = {
|
||||||
.enable_dma = sdhci_pci_enable_dma,
|
.enable_dma = sdhci_pci_enable_dma,
|
||||||
.set_bus_width = sdhci_set_bus_width,
|
.set_bus_width = sdhci_set_bus_width,
|
||||||
.reset = sdhci_reset,
|
.reset = sdhci_reset,
|
||||||
.set_uhs_signaling = sdhci_set_uhs_signaling,
|
.set_uhs_signaling = sdhci_intel_set_uhs_signaling,
|
||||||
.hw_reset = sdhci_pci_hw_reset,
|
.hw_reset = sdhci_pci_hw_reset,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -731,7 +740,7 @@ static const struct sdhci_ops sdhci_intel_glk_ops = {
|
||||||
.enable_dma = sdhci_pci_enable_dma,
|
.enable_dma = sdhci_pci_enable_dma,
|
||||||
.set_bus_width = sdhci_set_bus_width,
|
.set_bus_width = sdhci_set_bus_width,
|
||||||
.reset = sdhci_cqhci_reset,
|
.reset = sdhci_cqhci_reset,
|
||||||
.set_uhs_signaling = sdhci_set_uhs_signaling,
|
.set_uhs_signaling = sdhci_intel_set_uhs_signaling,
|
||||||
.hw_reset = sdhci_pci_hw_reset,
|
.hw_reset = sdhci_pci_hw_reset,
|
||||||
.irq = sdhci_cqhci_irq,
|
.irq = sdhci_cqhci_irq,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue