device/pci_ops: Define pci_find_capability() just once
Wrap the simple romstage implementation to be called from ramstage. Change-Id: Iadadf3d550416850d6c37233bd4eda025f4d3960 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/31755 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -49,7 +49,7 @@ int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
|
||||
if (class != PCI_EHCI_CLASSCODE)
|
||||
return -1;
|
||||
|
||||
u8 pm_cap = pci_find_capability(dev, PCI_CAP_ID_PM);
|
||||
u8 pm_cap = pci_s_find_capability(dbg_dev, PCI_CAP_ID_PM);
|
||||
if (pm_cap) {
|
||||
u16 pm_ctrl = pci_read_config16(dev, pm_cap + PCI_PM_CTRL);
|
||||
/* Set to D0 and disable PM events. */
|
||||
@@ -58,7 +58,7 @@ int ehci_debug_hw_enable(unsigned int *base, unsigned int *dbg_offset)
|
||||
pci_write_config16(dev, pm_cap + PCI_PM_CTRL, pm_ctrl);
|
||||
}
|
||||
|
||||
u8 pos = pci_find_capability(dev, PCI_CAP_ID_EHCI_DEBUG);
|
||||
u8 pos = pci_s_find_capability(dbg_dev, PCI_CAP_ID_EHCI_DEBUG);
|
||||
if (!pos)
|
||||
return -1;
|
||||
|
||||
|
Reference in New Issue
Block a user