diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2013-01-07 05:44:33 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-01-08 06:00:32 -0500 |
commit | 851bacf5902cad15f9bb789d278a1ee9608c8f25 (patch) | |
tree | 521b8652658684d9a6ff1ad5a7263d361c77114a /drivers/spi/spi-pxa2xx.c | |
parent | 0202775bc3a28f2436ea6ee13ef3eb0e8f237857 (diff) |
spi/pxa2xx: embed the ssp_device to platform data
The spi-pxa2xx-pci glue driver had to implement pxa_ssp_request()/free() in
order to support the spi-pxa2xx platform driver. Since the ACPI enabled
platforms can use the same platform driver we would need to implement
pxa_ssp_request()/free() in some central place that can be shared by the
ACPI and PCI glue code.
Instead of doing that we can make pxa_ssp_request()/free() to be available
only when CONFIG_ARCH_PXA is set. On other arches these are being stubbed
out in preference to passing the ssp_device from the platform data
directly.
We also change the SPI bus number to be taken from ssp->port_id instead of
platform device id. This way the supporting code that passes the ssp can
decide the number (or it can set it to the same as pdev->id).
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/spi/spi-pxa2xx.c')
-rw-r--r-- | drivers/spi/spi-pxa2xx.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/drivers/spi/spi-pxa2xx.c b/drivers/spi/spi-pxa2xx.c index 5c8c4f5883c4..54097ad76356 100644 --- a/drivers/spi/spi-pxa2xx.c +++ b/drivers/spi/spi-pxa2xx.c | |||
@@ -1535,11 +1535,18 @@ static int pxa2xx_spi_probe(struct platform_device *pdev) | |||
1535 | struct ssp_device *ssp; | 1535 | struct ssp_device *ssp; |
1536 | int status; | 1536 | int status; |
1537 | 1537 | ||
1538 | platform_info = dev->platform_data; | 1538 | platform_info = dev_get_platdata(dev); |
1539 | if (!platform_info) { | ||
1540 | dev_err(&pdev->dev, "missing platform data\n"); | ||
1541 | return -ENODEV; | ||
1542 | } | ||
1539 | 1543 | ||
1540 | ssp = pxa_ssp_request(pdev->id, pdev->name); | 1544 | ssp = pxa_ssp_request(pdev->id, pdev->name); |
1541 | if (ssp == NULL) { | 1545 | if (!ssp) |
1542 | dev_err(&pdev->dev, "failed to request SSP%d\n", pdev->id); | 1546 | ssp = &platform_info->ssp; |
1547 | |||
1548 | if (!ssp->mmio_base) { | ||
1549 | dev_err(&pdev->dev, "failed to get ssp\n"); | ||
1543 | return -ENODEV; | 1550 | return -ENODEV; |
1544 | } | 1551 | } |
1545 | 1552 | ||
@@ -1561,7 +1568,7 @@ static int pxa2xx_spi_probe(struct platform_device *pdev) | |||
1561 | /* the spi->mode bits understood by this driver: */ | 1568 | /* the spi->mode bits understood by this driver: */ |
1562 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH; | 1569 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH; |
1563 | 1570 | ||
1564 | master->bus_num = pdev->id; | 1571 | master->bus_num = ssp->port_id; |
1565 | master->num_chipselect = platform_info->num_chipselect; | 1572 | master->num_chipselect = platform_info->num_chipselect; |
1566 | master->dma_alignment = DMA_ALIGNMENT; | 1573 | master->dma_alignment = DMA_ALIGNMENT; |
1567 | master->cleanup = cleanup; | 1574 | master->cleanup = cleanup; |