* [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus
@ 2016-12-01 20:33 Daniel Drake
2016-12-02 13:41 ` Adrian Hunter
2016-12-05 13:18 ` Ulf Hansson
0 siblings, 2 replies; 3+ messages in thread
From: Daniel Drake @ 2016-12-01 20:33 UTC (permalink / raw)
To: adrian.hunter, ulf.hansson; +Cc: linux-mmc, linux
Add an entry for the SDIO bus in the ECS EF20 cherry trail laptop:
Device (SDHB) {
Name (_ADR, 0x00110000)
Name (_HID, "80860F14" /* Intel Baytrail SDIO/MMC Host Controller */)
Name (_CID, "PNP0D40" /* SDA Standard Compliant SD Host Controller */)
Name (_DDN, "Intel(R) SDIO Controller - 80862295")
Name (_UID, 0x02)
Name (_HRV, One)
A SDHB device with the same _HID and _UID can also be found on other
cherry trail products like Chuwi Hi10.
Signed-off-by: Daniel Drake <drake@endlessm.com>
---
drivers/mmc/host/sdhci-acpi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c
index 81d4dc0..160f695 100644
--- a/drivers/mmc/host/sdhci-acpi.c
+++ b/drivers/mmc/host/sdhci-acpi.c
@@ -328,6 +328,7 @@ static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
{ "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
{ "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
{ "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
+ { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
{ "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
{ "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
{ "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
--
2.9.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus
2016-12-01 20:33 [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus Daniel Drake
@ 2016-12-02 13:41 ` Adrian Hunter
2016-12-05 13:18 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Adrian Hunter @ 2016-12-02 13:41 UTC (permalink / raw)
To: Daniel Drake, ulf.hansson; +Cc: linux-mmc, linux
On 01/12/16 22:33, Daniel Drake wrote:
> Add an entry for the SDIO bus in the ECS EF20 cherry trail laptop:
>
> Device (SDHB) {
> Name (_ADR, 0x00110000)
> Name (_HID, "80860F14" /* Intel Baytrail SDIO/MMC Host Controller */)
> Name (_CID, "PNP0D40" /* SDA Standard Compliant SD Host Controller */)
> Name (_DDN, "Intel(R) SDIO Controller - 80862295")
> Name (_UID, 0x02)
> Name (_HRV, One)
>
> A SDHB device with the same _HID and _UID can also be found on other
> cherry trail products like Chuwi Hi10.
>
> Signed-off-by: Daniel Drake <drake@endlessm.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
> drivers/mmc/host/sdhci-acpi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c
> index 81d4dc0..160f695 100644
> --- a/drivers/mmc/host/sdhci-acpi.c
> +++ b/drivers/mmc/host/sdhci-acpi.c
> @@ -328,6 +328,7 @@ static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
> { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
> { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
> { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
> + { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
> { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
> { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
> { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus
2016-12-01 20:33 [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus Daniel Drake
2016-12-02 13:41 ` Adrian Hunter
@ 2016-12-05 13:18 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2016-12-05 13:18 UTC (permalink / raw)
To: Daniel Drake; +Cc: Adrian Hunter, linux-mmc@vger.kernel.org, linux
On 1 December 2016 at 21:33, Daniel Drake <drake@endlessm.com> wrote:
> Add an entry for the SDIO bus in the ECS EF20 cherry trail laptop:
>
> Device (SDHB) {
> Name (_ADR, 0x00110000)
> Name (_HID, "80860F14" /* Intel Baytrail SDIO/MMC Host Controller */)
> Name (_CID, "PNP0D40" /* SDA Standard Compliant SD Host Controller */)
> Name (_DDN, "Intel(R) SDIO Controller - 80862295")
> Name (_UID, 0x02)
> Name (_HRV, One)
>
> A SDHB device with the same _HID and _UID can also be found on other
> cherry trail products like Chuwi Hi10.
>
> Signed-off-by: Daniel Drake <drake@endlessm.com>
Thanks, applied for next!
Kind regards
Uffe
> ---
> drivers/mmc/host/sdhci-acpi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c
> index 81d4dc0..160f695 100644
> --- a/drivers/mmc/host/sdhci-acpi.c
> +++ b/drivers/mmc/host/sdhci-acpi.c
> @@ -328,6 +328,7 @@ static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
> { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
> { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
> { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
> + { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
> { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
> { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
> { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
> --
> 2.9.3
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-12-05 13:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-01 20:33 [PATCH] mmc: sdhci-acpi: support 80860F14 UID 2 SDIO bus Daniel Drake
2016-12-02 13:41 ` Adrian Hunter
2016-12-05 13:18 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox