soc/intel/common: Fix ACPI device name for USB4 DMA device
The USB4 host interface (DMA) devices need to use SA_DEVFN_* instead of SA_DEV_* when determining the ACPI name. The matching names are removed from the SOC-level ACPI name handler since they are provided by this driver now. TEST=boot on volteer and ensure TDM0 device is in the SSDT. Signed-off-by: Duncan Laurie <dlaurie@google.com> Change-Id: If778bda82b80593452a590962dbffef6eff6484a Reviewed-on: https://review.coreboot.org/c/coreboot/+/46543 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
bf69622256
commit
fcbf18c5df
|
@ -15,9 +15,9 @@
|
||||||
static const char *tbt_dma_acpi_name(const struct device *dev)
|
static const char *tbt_dma_acpi_name(const struct device *dev)
|
||||||
{
|
{
|
||||||
switch (dev->path.pci.devfn) {
|
switch (dev->path.pci.devfn) {
|
||||||
case SA_DEV_TCSS_DMA0:
|
case SA_DEVFN_TCSS_DMA0:
|
||||||
return "TDM0";
|
return "TDM0";
|
||||||
case SA_DEV_TCSS_DMA1:
|
case SA_DEVFN_TCSS_DMA1:
|
||||||
return "TDM1";
|
return "TDM1";
|
||||||
default:
|
default:
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
@ -68,8 +68,6 @@ const char *soc_acpi_name(const struct device *dev)
|
||||||
case SA_DEVFN_ROOT: return "MCHC";
|
case SA_DEVFN_ROOT: return "MCHC";
|
||||||
case SA_DEVFN_TCSS_XHCI: return "TXHC";
|
case SA_DEVFN_TCSS_XHCI: return "TXHC";
|
||||||
case SA_DEVFN_TCSS_XDCI: return "TXDC";
|
case SA_DEVFN_TCSS_XDCI: return "TXDC";
|
||||||
case SA_DEVFN_TCSS_DMA0: return "TDM0";
|
|
||||||
case SA_DEVFN_TCSS_DMA1: return "TDM1";
|
|
||||||
case SA_DEVFN_TBT0: return "TRP0";
|
case SA_DEVFN_TBT0: return "TRP0";
|
||||||
case SA_DEVFN_TBT1: return "TRP1";
|
case SA_DEVFN_TBT1: return "TRP1";
|
||||||
case SA_DEVFN_TBT2: return "TRP2";
|
case SA_DEVFN_TBT2: return "TRP2";
|
||||||
|
|
Loading…
Reference in New Issue