soc/intel/apollolake: Use devfn_disable() function
Use devfn_disable() for disabling a PCI device rather than using `dev->enabled = 0`. Also, use is_devfn_enabled() to get the device current state prior updating the FSP-S UPD for XDCI. TEST=FSP-S disabled XDCI when `xdci_can_enable` returns 0 and XDCI is disabled at PCI enumeration `PCI: 00:15.1: enabled 0`. Change-Id: I449beae59d2f578c027d8110c03fa79f516c3fe9 Signed-off-by: Subrata Banik <subrata.banik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55666 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
232222727d
commit
d6d87767cb
|
@ -681,10 +681,9 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *silupd)
|
||||||
apl_fsp_silicon_init_params_cb(cfg, silconfig);
|
apl_fsp_silicon_init_params_cb(cfg, silconfig);
|
||||||
|
|
||||||
/* Enable xDCI controller if enabled in devicetree and allowed */
|
/* Enable xDCI controller if enabled in devicetree and allowed */
|
||||||
dev = pcidev_path_on_root(PCH_DEVFN_XDCI);
|
|
||||||
if (!xdci_can_enable())
|
if (!xdci_can_enable())
|
||||||
dev->enabled = 0;
|
devfn_disable(pci_root_bus(), PCH_DEVFN_XDCI);
|
||||||
silconfig->UsbOtg = dev->enabled;
|
silconfig->UsbOtg = is_devfn_enabled(PCH_DEVFN_XDCI);
|
||||||
|
|
||||||
silconfig->VmxEnable = CONFIG(ENABLE_VMX);
|
silconfig->VmxEnable = CONFIG(ENABLE_VMX);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue