diff options
Diffstat (limited to 'drivers/spi/spi-omap2-mcspi.c')
| -rw-r--r-- | drivers/spi/spi-omap2-mcspi.c | 76 | 
1 files changed, 41 insertions, 35 deletions
diff --git a/drivers/spi/spi-omap2-mcspi.c b/drivers/spi/spi-omap2-mcspi.c index 3542fdc664b1..b610f522ca44 100644 --- a/drivers/spi/spi-omap2-mcspi.c +++ b/drivers/spi/spi-omap2-mcspi.c @@ -39,7 +39,6 @@  #include <linux/of.h>  #include <linux/of_device.h>  #include <linux/pinctrl/consumer.h> -#include <linux/err.h>  #include <linux/spi/spi.h> @@ -130,6 +129,7 @@ struct omap2_mcspi {  	struct omap2_mcspi_dma	*dma_channels;  	struct device		*dev;  	struct omap2_mcspi_regs ctx; +	unsigned int		pin_dir:1;  };  struct omap2_mcspi_cs { @@ -323,19 +323,11 @@ static void omap2_mcspi_tx_dma(struct spi_device *spi,  	struct omap2_mcspi	*mcspi;  	struct omap2_mcspi_dma  *mcspi_dma;  	unsigned int		count; -	u8			* rx; -	const u8		* tx; -	void __iomem		*chstat_reg; -	struct omap2_mcspi_cs	*cs = spi->controller_state;  	mcspi = spi_master_get_devdata(spi->master);  	mcspi_dma = &mcspi->dma_channels[spi->chip_select];  	count = xfer->len; -	rx = xfer->rx_buf; -	tx = xfer->tx_buf; -	chstat_reg = cs->base + OMAP2_MCSPI_CHSTAT0; -  	if (mcspi_dma->dma_tx) {  		struct dma_async_tx_descriptor *tx;  		struct scatterlist sg; @@ -359,19 +351,6 @@ static void omap2_mcspi_tx_dma(struct spi_device *spi,  	dma_async_issue_pending(mcspi_dma->dma_tx);  	omap2_mcspi_set_dma_req(spi, 0, 1); -	wait_for_completion(&mcspi_dma->dma_tx_completion); -	dma_unmap_single(mcspi->dev, xfer->tx_dma, count, -			 DMA_TO_DEVICE); - -	/* for TX_ONLY mode, be sure all words have shifted out */ -	if (rx == NULL) { -		if (mcspi_wait_for_reg_bit(chstat_reg, -					OMAP2_MCSPI_CHSTAT_TXS) < 0) -			dev_err(&spi->dev, "TXS timed out\n"); -		else if (mcspi_wait_for_reg_bit(chstat_reg, -					OMAP2_MCSPI_CHSTAT_EOT) < 0) -			dev_err(&spi->dev, "EOT timed out\n"); -	}  }  static unsigned @@ -492,6 +471,7 @@ omap2_mcspi_txrx_dma(struct spi_device *spi, struct spi_transfer *xfer)  	struct dma_slave_config	cfg;  	enum dma_slave_buswidth width;  	unsigned es; +	void __iomem		*chstat_reg;  	mcspi = spi_master_get_devdata(spi->master);  	mcspi_dma = &mcspi->dma_channels[spi->chip_select]; @@ -526,8 +506,24 @@ omap2_mcspi_txrx_dma(struct spi_device *spi, struct spi_transfer *xfer)  		omap2_mcspi_tx_dma(spi, xfer, cfg);  	if (rx != NULL) -		return omap2_mcspi_rx_dma(spi, xfer, cfg, es); - +		count = omap2_mcspi_rx_dma(spi, xfer, cfg, es); + +	if (tx != NULL) { +		chstat_reg = cs->base + OMAP2_MCSPI_CHSTAT0; +		wait_for_completion(&mcspi_dma->dma_tx_completion); +		dma_unmap_single(mcspi->dev, xfer->tx_dma, xfer->len, +				 DMA_TO_DEVICE); + +		/* for TX_ONLY mode, be sure all words have shifted out */ +		if (rx == NULL) { +			if (mcspi_wait_for_reg_bit(chstat_reg, +						OMAP2_MCSPI_CHSTAT_TXS) < 0) +				dev_err(&spi->dev, "TXS timed out\n"); +			else if (mcspi_wait_for_reg_bit(chstat_reg, +						OMAP2_MCSPI_CHSTAT_EOT) < 0) +				dev_err(&spi->dev, "EOT timed out\n"); +		} +	}  	return count;  } @@ -765,8 +761,15 @@ static int omap2_mcspi_setup_transfer(struct spi_device *spi,  	/* standard 4-wire master mode:  SCK, MOSI/out, MISO/in, nCS  	 * REVISIT: this controller could support SPI_3WIRE mode.  	 */ -	l &= ~(OMAP2_MCSPI_CHCONF_IS|OMAP2_MCSPI_CHCONF_DPE1); -	l |= OMAP2_MCSPI_CHCONF_DPE0; +	if (mcspi->pin_dir == MCSPI_PINDIR_D0_IN_D1_OUT) { +		l &= ~OMAP2_MCSPI_CHCONF_IS; +		l &= ~OMAP2_MCSPI_CHCONF_DPE1; +		l |= OMAP2_MCSPI_CHCONF_DPE0; +	} else { +		l |= OMAP2_MCSPI_CHCONF_IS; +		l |= OMAP2_MCSPI_CHCONF_DPE1; +		l &= ~OMAP2_MCSPI_CHCONF_DPE0; +	}  	/* wordlength */  	l &= ~OMAP2_MCSPI_CHCONF_WL_MASK; @@ -1085,7 +1088,7 @@ static int omap2_mcspi_transfer_one_message(struct spi_master *master,  	return 0;  } -static int __devinit omap2_mcspi_master_setup(struct omap2_mcspi *mcspi) +static int omap2_mcspi_master_setup(struct omap2_mcspi *mcspi)  {  	struct spi_master	*master = mcspi->master;  	struct omap2_mcspi_regs	*ctx = &mcspi->ctx; @@ -1138,7 +1141,7 @@ static const struct of_device_id omap_mcspi_of_match[] = {  };  MODULE_DEVICE_TABLE(of, omap_mcspi_of_match); -static int __devinit omap2_mcspi_probe(struct platform_device *pdev) +static int omap2_mcspi_probe(struct platform_device *pdev)  {  	struct spi_master	*master;  	const struct omap2_mcspi_platform_config *pdata; @@ -1167,6 +1170,11 @@ static int __devinit omap2_mcspi_probe(struct platform_device *pdev)  	master->cleanup = omap2_mcspi_cleanup;  	master->dev.of_node = node; +	dev_set_drvdata(&pdev->dev, master); + +	mcspi = spi_master_get_devdata(master); +	mcspi->master = master; +  	match = of_match_device(omap_mcspi_of_match, &pdev->dev);  	if (match) {  		u32 num_cs = 1; /* default number of chipselect */ @@ -1175,19 +1183,17 @@ static int __devinit omap2_mcspi_probe(struct platform_device *pdev)  		of_property_read_u32(node, "ti,spi-num-cs", &num_cs);  		master->num_chipselect = num_cs;  		master->bus_num = bus_num++; +		if (of_get_property(node, "ti,pindir-d0-out-d1-in", NULL)) +			mcspi->pin_dir = MCSPI_PINDIR_D0_OUT_D1_IN;  	} else {  		pdata = pdev->dev.platform_data;  		master->num_chipselect = pdata->num_cs;  		if (pdev->id != -1)  			master->bus_num = pdev->id; +		mcspi->pin_dir = pdata->pin_dir;  	}  	regs_offset = pdata->regs_offset; -	dev_set_drvdata(&pdev->dev, master); - -	mcspi = spi_master_get_devdata(master); -	mcspi->master = master; -  	r = platform_get_resource(pdev, IORESOURCE_MEM, 0);  	if (r == NULL) {  		status = -ENODEV; @@ -1272,7 +1278,7 @@ free_master:  	return status;  } -static int __devexit omap2_mcspi_remove(struct platform_device *pdev) +static int omap2_mcspi_remove(struct platform_device *pdev)  {  	struct spi_master	*master;  	struct omap2_mcspi	*mcspi; @@ -1341,7 +1347,7 @@ static struct platform_driver omap2_mcspi_driver = {  		.of_match_table = omap_mcspi_of_match,  	},  	.probe =	omap2_mcspi_probe, -	.remove =	__devexit_p(omap2_mcspi_remove), +	.remove =	omap2_mcspi_remove,  };  module_platform_driver(omap2_mcspi_driver);  |