]> Git Repo - J-linux.git/commitdiff
PCI: spear13xx: Avoid invalid address space conversions
authorBjorn Helgaas <[email protected]>
Thu, 23 Dec 2021 21:37:49 +0000 (15:37 -0600)
committerBjorn Helgaas <[email protected]>
Mon, 3 Jan 2022 21:05:28 +0000 (15:05 -0600)
The sparse checker complains about converting pointers between address
spaces.  We correctly stored an __iomem pointer in struct spear13xx_pcie,
but discarded the __iomem when extracting app_base, causing one warning.
Then we passed the non-__iomem pointer to writel(), which expects an
__iomem pointer, causing another warning.

Add the appropriate annotations.

The sparse warnings look like this:

  $ make C=2 drivers/pci/controller/
  drivers/pci/controller/dwc/pcie-spear13xx.c:72:54: warning: incorrect type in initializer (different address spaces)
  drivers/pci/controller/dwc/pcie-spear13xx.c:72:54:    expected struct pcie_app_reg *app_reg
  drivers/pci/controller/dwc/pcie-spear13xx.c:72:54:    got void [noderef] __iomem *app_base
  drivers/pci/controller/dwc/pcie-spear13xx.c:78:26: warning: incorrect type in argument 2 (different address spaces)
  drivers/pci/controller/dwc/pcie-spear13xx.c:78:26:    expected void volatile [noderef] __iomem *addr
  drivers/pci/controller/dwc/pcie-spear13xx.c:78:26:    got unsigned int *

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Helgaas <[email protected]>
Cc: Pratyush Anand <[email protected]>
drivers/pci/controller/dwc/pcie-spear13xx.c

index 1a9e353bef554f6beadd6fe74c5c18f654081b5b..1569e82b5568b86a6782228bd07a27d7baf61fa0 100644 (file)
@@ -69,7 +69,7 @@ struct pcie_app_reg {
 static int spear13xx_pcie_start_link(struct dw_pcie *pci)
 {
        struct spear13xx_pcie *spear13xx_pcie = to_spear13xx_pcie(pci);
-       struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
+       struct pcie_app_reg __iomem *app_reg = spear13xx_pcie->app_base;
 
        /* enable ltssm */
        writel(DEVICE_TYPE_RC | (1 << MISCTRL_EN_ID)
@@ -83,7 +83,7 @@ static int spear13xx_pcie_start_link(struct dw_pcie *pci)
 static irqreturn_t spear13xx_pcie_irq_handler(int irq, void *arg)
 {
        struct spear13xx_pcie *spear13xx_pcie = arg;
-       struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
+       struct pcie_app_reg __iomem *app_reg = spear13xx_pcie->app_base;
        struct dw_pcie *pci = spear13xx_pcie->pci;
        struct pcie_port *pp = &pci->pp;
        unsigned int status;
@@ -102,7 +102,7 @@ static irqreturn_t spear13xx_pcie_irq_handler(int irq, void *arg)
 
 static void spear13xx_pcie_enable_interrupts(struct spear13xx_pcie *spear13xx_pcie)
 {
-       struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
+       struct pcie_app_reg __iomem *app_reg = spear13xx_pcie->app_base;
 
        /* Enable MSI interrupt */
        if (IS_ENABLED(CONFIG_PCI_MSI))
@@ -113,7 +113,7 @@ static void spear13xx_pcie_enable_interrupts(struct spear13xx_pcie *spear13xx_pc
 static int spear13xx_pcie_link_up(struct dw_pcie *pci)
 {
        struct spear13xx_pcie *spear13xx_pcie = to_spear13xx_pcie(pci);
-       struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
+       struct pcie_app_reg __iomem *app_reg = spear13xx_pcie->app_base;
 
        if (readl(&app_reg->app_status_1) & XMLH_LINK_UP)
                return 1;
This page took 0.053341 seconds and 4 git commands to generate.