]> www.infradead.org Git - nvme.git/commitdiff
spi: pxa2xx: Reorganize the SSP type retrieval
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 30 May 2024 15:09:58 +0000 (18:09 +0300)
committerMark Brown <broonie@kernel.org>
Mon, 3 Jun 2024 14:59:56 +0000 (15:59 +0100)
The old Intel platforms, such as Intel Braswell, also provide
the property of SSP type. Reorganize the pxa2xx_spi_init_pdata()
to take that into account.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://msgid.link/r/20240530151117.1130792-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-pxa2xx.c

index 820a3702447a8587c32c2917bee929c20c4453bb..f4dc113768cd5441b5416c947b2bb629859250b6 100644 (file)
@@ -1331,19 +1331,21 @@ pxa2xx_spi_init_pdata(struct platform_device *pdev)
        struct pxa2xx_spi_controller *pdata;
        struct device *dev = &pdev->dev;
        struct device *parent = dev->parent;
+       const void *match = device_get_match_data(dev);
        enum pxa_ssp_type type = SSP_UNDEFINED;
-       struct ssp_device *ssp = NULL;
-       const void *match;
+       struct ssp_device *ssp;
        bool is_lpss_priv;
        u32 num_cs = 1;
        int status;
 
-       is_lpss_priv = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lpss_priv");
-
-       match = device_get_match_data(dev);
-       if (match)
-               type = (uintptr_t)match;
-       else if (is_lpss_priv) {
+       ssp = pxa2xx_spi_ssp_request(pdev);
+       if (IS_ERR(ssp))
+               return ERR_CAST(ssp);
+       if (ssp) {
+               type = ssp->type;
+       } else if (match) {
+               type = (enum pxa_ssp_type)(uintptr_t)match;
+       } else {
                u32 value;
 
                status = device_property_read_u32(dev, "intel,spi-pxa2xx-type", &value);
@@ -1351,12 +1353,6 @@ pxa2xx_spi_init_pdata(struct platform_device *pdev)
                        return ERR_PTR(status);
 
                type = (enum pxa_ssp_type)value;
-       } else {
-               ssp = pxa2xx_spi_ssp_request(pdev);
-               if (IS_ERR(ssp))
-                       return ERR_CAST(ssp);
-               if (ssp)
-                       type = ssp->type;
        }
 
        /* Validate the SSP type correctness */
@@ -1368,6 +1364,7 @@ pxa2xx_spi_init_pdata(struct platform_device *pdev)
                return ERR_PTR(-ENOMEM);
 
        /* Platforms with iDMA 64-bit */
+       is_lpss_priv = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lpss_priv");
        if (is_lpss_priv) {
                pdata->tx_param = parent;
                pdata->rx_param = parent;