diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2015-10-21 04:15:46 -0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-10-26 11:00:20 -0400 |
commit | e839b134761444e5988d5eee1ef54a0ff2327344 (patch) | |
tree | 804a6a437f11fb5773aa19c3f13e7e6dd0552c85 /drivers/mmc | |
parent | 4fd4c0655b82b0f81841b915ef1e70e2141d4a38 (diff) |
mmc: sdhci-acpi: Add more ACPI HIDs for Intel controllers
Add ACPI HIDs for Intel host controllers including one
supporting HS400.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-acpi.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c index 78aa16aed07b..f6047fc94062 100644 --- a/drivers/mmc/host/sdhci-acpi.c +++ b/drivers/mmc/host/sdhci-acpi.c | |||
@@ -207,7 +207,9 @@ static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = { | |||
207 | .caps2 = MMC_CAP2_HC_ERASE_SZ, | 207 | .caps2 = MMC_CAP2_HC_ERASE_SZ, |
208 | .flags = SDHCI_ACPI_RUNTIME_PM, | 208 | .flags = SDHCI_ACPI_RUNTIME_PM, |
209 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC, | 209 | .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC, |
210 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN | SDHCI_QUIRK2_STOP_WITH_TC, | 210 | .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN | |
211 | SDHCI_QUIRK2_STOP_WITH_TC | | ||
212 | SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400, | ||
211 | .probe_slot = sdhci_acpi_emmc_probe_slot, | 213 | .probe_slot = sdhci_acpi_emmc_probe_slot, |
212 | }; | 214 | }; |
213 | 215 | ||
@@ -239,6 +241,9 @@ struct sdhci_acpi_uid_slot { | |||
239 | }; | 241 | }; |
240 | 242 | ||
241 | static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = { | 243 | static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = { |
244 | { "80865ACA", NULL, &sdhci_acpi_slot_int_sd }, | ||
245 | { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc }, | ||
246 | { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio }, | ||
242 | { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc }, | 247 | { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc }, |
243 | { "80860F14" , "3" , &sdhci_acpi_slot_int_sd }, | 248 | { "80860F14" , "3" , &sdhci_acpi_slot_int_sd }, |
244 | { "80860F16" , NULL, &sdhci_acpi_slot_int_sd }, | 249 | { "80860F16" , NULL, &sdhci_acpi_slot_int_sd }, |
@@ -253,6 +258,9 @@ static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = { | |||
253 | }; | 258 | }; |
254 | 259 | ||
255 | static const struct acpi_device_id sdhci_acpi_ids[] = { | 260 | static const struct acpi_device_id sdhci_acpi_ids[] = { |
261 | { "80865ACA" }, | ||
262 | { "80865ACC" }, | ||
263 | { "80865AD0" }, | ||
256 | { "80860F14" }, | 264 | { "80860F14" }, |
257 | { "80860F16" }, | 265 | { "80860F16" }, |
258 | { "INT33BB" }, | 266 | { "INT33BB" }, |