]> Git Repo - linux.git/commitdiff
ASoC: SOF: Intel: Check the bar size before remapping
authorZheyu Ma <[email protected]>
Sat, 9 Apr 2022 14:39:50 +0000 (22:39 +0800)
committerMark Brown <[email protected]>
Wed, 13 Apr 2022 12:47:40 +0000 (13:47 +0100)
The driver should use the pci_resource_len() to get the actual length of
pci bar, and compare it with the expect value. If the bar size is too
small (such as a broken device), the driver should return an error.

Signed-off-by: Zheyu Ma <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
sound/soc/sof/intel/pci-tng.c

index 6efef225973f613f100fdecb7d61f3734981da27..7d502cc3ca800faa0f02c1c7224d561a45882036 100644 (file)
@@ -75,7 +75,11 @@ static int tangier_pci_probe(struct snd_sof_dev *sdev)
 
        /* LPE base */
        base = pci_resource_start(pci, desc->resindex_lpe_base) - IRAM_OFFSET;
-       size = PCI_BAR_SIZE;
+       size = pci_resource_len(pci, desc->resindex_lpe_base);
+       if (size < PCI_BAR_SIZE) {
+               dev_err(sdev->dev, "error: I/O region is too small.\n");
+               return -ENODEV;
+       }
 
        dev_dbg(sdev->dev, "LPE PHY base at 0x%x size 0x%x", base, size);
        sdev->bar[DSP_BAR] = devm_ioremap(sdev->dev, base, size);
This page took 0.060731 seconds and 4 git commands to generate.