sb/intel: Replace bad uses of `find_resource`
The `find_resource` function will never return null (will die instead). In cases where the existing code already accounts for null pointers, it is better to use `probe_resource` instead, which returns a null pointer instead of dying. Change-Id: I13c7ebeba2e5a896d46231b5e176e5470da97343 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/58905 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
parent
5065ad1f69
commit
f32ae10f0d
|
@ -158,7 +158,7 @@ static void azalia_init(struct device *dev)
|
|||
u32 codec_mask;
|
||||
u32 reg32;
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -336,7 +336,7 @@ int intel_mei_setup(struct device *dev)
|
|||
struct mei_csr host;
|
||||
|
||||
/* Find the MMIO base for the ME interface */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res || res->base == 0 || res->size == 0) {
|
||||
printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
|
||||
return -1;
|
||||
|
|
|
@ -19,7 +19,7 @@ static void pch_smbus_init(struct device *dev)
|
|||
pci_and_config16(dev, 0x80, ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)));
|
||||
|
||||
/* Set Receive Slave Address */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
if (res)
|
||||
smbus_set_slave_addr(res->base, SMBUS_SLAVE_ADDR);
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ static void usb_ehci_init(struct device *dev)
|
|||
/* Enable writes to protected registers. */
|
||||
pci_write_config8(dev, 0x80, access_cntl | 1);
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (res) {
|
||||
/* Number of ports and companion controllers. */
|
||||
reg32 = read32((void *)(uintptr_t)(res->base + 4));
|
||||
|
|
|
@ -186,7 +186,7 @@ static void azalia_init(struct device *dev)
|
|||
// Docking not supported
|
||||
pci_and_config8(dev, 0x4d, (u8)~(1 << 7)); // Docking Status
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -130,7 +130,7 @@ static void sata_init(struct device *dev)
|
|||
/* Interrupt Pin is set by D31IP.PIP */
|
||||
pci_write_config8(dev, INTR_LN, 0x0a);
|
||||
|
||||
struct resource *ahci_res = find_resource(dev, PCI_BASE_ADDRESS_5);
|
||||
struct resource *ahci_res = probe_resource(dev, PCI_BASE_ADDRESS_5);
|
||||
if (ahci_res != NULL)
|
||||
/* write AHCI GHC_PI register */
|
||||
write32(res2mmio(ahci_res, 0xc, 0), config->sata_ports_implemented);
|
||||
|
|
|
@ -179,7 +179,7 @@ static void azalia_init(struct device *dev)
|
|||
/* Lock some R/WO bits by writing their current value. */
|
||||
pci_update_config32(dev, 0x74, ~0, 0);
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -179,7 +179,7 @@ static void azalia_init(struct device *dev)
|
|||
/* Lock some R/WO bits by writing their current value. */
|
||||
pci_update_config32(dev, 0x74, ~0, 0);
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -158,7 +158,7 @@ static void azalia_init(struct device *dev)
|
|||
u32 reg32;
|
||||
|
||||
/* Find base address */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -395,7 +395,7 @@ static int intel_mei_setup(struct device *dev)
|
|||
u16 reg16;
|
||||
|
||||
/* Find the MMIO base for the ME interface */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res || res->base == 0 || res->size == 0) {
|
||||
printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
|
||||
return -1;
|
||||
|
|
|
@ -19,7 +19,7 @@ static void pch_smbus_init(struct device *dev)
|
|||
pci_and_config16(dev, 0x80, ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)));
|
||||
|
||||
/* Set Receive Slave Address */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
if (res)
|
||||
smbus_set_slave_addr(res->base, SMBUS_SLAVE_ADDR);
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ static void thermal_init(struct device *dev)
|
|||
u8 *base;
|
||||
printk(BIOS_DEBUG, "Thermal init start.\n");
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ static void usb_ehci_init(struct device *dev)
|
|||
/* Enable writes to protected registers. */
|
||||
pci_write_config8(dev, 0x80, access_cntl | 1);
|
||||
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (res) {
|
||||
/* Number of ports and companion controllers. */
|
||||
reg32 = read32((u32 *)(uintptr_t)(res->base + 4));
|
||||
|
|
|
@ -101,7 +101,7 @@ static void azalia_init(struct device *dev)
|
|||
u32 codec_mask;
|
||||
|
||||
/* Find base address */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res)
|
||||
return;
|
||||
|
||||
|
|
|
@ -670,7 +670,7 @@ static int intel_mei_setup(struct device *dev)
|
|||
struct mei_csr host;
|
||||
|
||||
/* Find the MMIO base for the ME interface */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!res || res->base == 0 || res->size == 0) {
|
||||
printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
|
||||
return -1;
|
||||
|
|
|
@ -166,10 +166,10 @@ static void serialio_init(struct device *dev)
|
|||
pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
|
||||
|
||||
/* Find BAR0 and BAR1 */
|
||||
bar0 = find_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
bar0 = probe_resource(dev, PCI_BASE_ADDRESS_0);
|
||||
if (!bar0)
|
||||
return;
|
||||
bar1 = find_resource(dev, PCI_BASE_ADDRESS_1);
|
||||
bar1 = probe_resource(dev, PCI_BASE_ADDRESS_1);
|
||||
if (!bar1)
|
||||
return;
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ static void pch_smbus_init(struct device *dev)
|
|||
pci_and_config16(dev, 0x80, ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)));
|
||||
|
||||
/* Set Receive Slave Address */
|
||||
res = find_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
res = probe_resource(dev, PCI_BASE_ADDRESS_4);
|
||||
if (res)
|
||||
smbus_set_slave_addr(res->base, SMBUS_SLAVE_ADDR);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue