diff options
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/Kconfig | 3 | ||||
-rw-r--r-- | drivers/spi/omap2_mcspi.c | 4 | ||||
-rw-r--r-- | drivers/spi/omap_uwire.c | 10 | ||||
-rw-r--r-- | drivers/spi/pxa2xx_spi.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi_mpc8xxx.c | 618 | ||||
-rw-r--r-- | drivers/spi/spi_s3c24xx.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi_stmp.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi_txx9.c | 13 | ||||
-rw-r--r-- | drivers/spi/spidev.c | 5 |
9 files changed, 554 insertions, 105 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index c712f53cd5c9..f55eb0107336 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig | |||
@@ -155,9 +155,6 @@ config SPI_MPC8xxx | |||
155 | This enables using the Freescale MPC8xxx SPI controllers in master | 155 | This enables using the Freescale MPC8xxx SPI controllers in master |
156 | mode. | 156 | mode. |
157 | 157 | ||
158 | This driver uses a simple set of shift registers for data (opposed | ||
159 | to the CPM based descriptor model). | ||
160 | |||
161 | config SPI_OMAP_UWIRE | 158 | config SPI_OMAP_UWIRE |
162 | tristate "OMAP1 MicroWire" | 159 | tristate "OMAP1 MicroWire" |
163 | depends on ARCH_OMAP1 | 160 | depends on ARCH_OMAP1 |
diff --git a/drivers/spi/omap2_mcspi.c b/drivers/spi/omap2_mcspi.c index ba1a872b221e..bf5f95a19413 100644 --- a/drivers/spi/omap2_mcspi.c +++ b/drivers/spi/omap2_mcspi.c | |||
@@ -35,8 +35,8 @@ | |||
35 | 35 | ||
36 | #include <linux/spi/spi.h> | 36 | #include <linux/spi/spi.h> |
37 | 37 | ||
38 | #include <mach/dma.h> | 38 | #include <plat/dma.h> |
39 | #include <mach/clock.h> | 39 | #include <plat/clock.h> |
40 | 40 | ||
41 | 41 | ||
42 | #define OMAP2_MCSPI_MAX_FREQ 48000000 | 42 | #define OMAP2_MCSPI_MAX_FREQ 48000000 |
diff --git a/drivers/spi/omap_uwire.c b/drivers/spi/omap_uwire.c index e75ba9b28898..6c3a8557db27 100644 --- a/drivers/spi/omap_uwire.c +++ b/drivers/spi/omap_uwire.c | |||
@@ -51,8 +51,8 @@ | |||
51 | #include <asm/io.h> | 51 | #include <asm/io.h> |
52 | #include <asm/mach-types.h> | 52 | #include <asm/mach-types.h> |
53 | 53 | ||
54 | #include <mach/mux.h> | 54 | #include <plat/mux.h> |
55 | #include <mach/omap730.h> /* OMAP730_IO_CONF registers */ | 55 | #include <plat/omap7xx.h> /* OMAP7XX_IO_CONF registers */ |
56 | 56 | ||
57 | 57 | ||
58 | /* FIXME address is now a platform device resource, | 58 | /* FIXME address is now a platform device resource, |
@@ -504,7 +504,7 @@ static int __init uwire_probe(struct platform_device *pdev) | |||
504 | } | 504 | } |
505 | clk_enable(uwire->ck); | 505 | clk_enable(uwire->ck); |
506 | 506 | ||
507 | if (cpu_is_omap730()) | 507 | if (cpu_is_omap7xx()) |
508 | uwire_idx_shift = 1; | 508 | uwire_idx_shift = 1; |
509 | else | 509 | else |
510 | uwire_idx_shift = 2; | 510 | uwire_idx_shift = 2; |
@@ -573,8 +573,8 @@ static int __init omap_uwire_init(void) | |||
573 | } | 573 | } |
574 | if (machine_is_omap_perseus2()) { | 574 | if (machine_is_omap_perseus2()) { |
575 | /* configure pins: MPU_UW_nSCS1, MPU_UW_SDO, MPU_UW_SCLK */ | 575 | /* configure pins: MPU_UW_nSCS1, MPU_UW_SDO, MPU_UW_SCLK */ |
576 | int val = omap_readl(OMAP730_IO_CONF_9) & ~0x00EEE000; | 576 | int val = omap_readl(OMAP7XX_IO_CONF_9) & ~0x00EEE000; |
577 | omap_writel(val | 0x00AAA000, OMAP730_IO_CONF_9); | 577 | omap_writel(val | 0x00AAA000, OMAP7XX_IO_CONF_9); |
578 | } | 578 | } |
579 | 579 | ||
580 | return platform_driver_probe(&uwire_driver, uwire_probe); | 580 | return platform_driver_probe(&uwire_driver, uwire_probe); |
diff --git a/drivers/spi/pxa2xx_spi.c b/drivers/spi/pxa2xx_spi.c index c8c2b693ffac..c2f707e5ce74 100644 --- a/drivers/spi/pxa2xx_spi.c +++ b/drivers/spi/pxa2xx_spi.c | |||
@@ -1709,7 +1709,7 @@ static int pxa2xx_spi_resume(struct device *dev) | |||
1709 | return 0; | 1709 | return 0; |
1710 | } | 1710 | } |
1711 | 1711 | ||
1712 | static struct dev_pm_ops pxa2xx_spi_pm_ops = { | 1712 | static const struct dev_pm_ops pxa2xx_spi_pm_ops = { |
1713 | .suspend = pxa2xx_spi_suspend, | 1713 | .suspend = pxa2xx_spi_suspend, |
1714 | .resume = pxa2xx_spi_resume, | 1714 | .resume = pxa2xx_spi_resume, |
1715 | }; | 1715 | }; |
diff --git a/drivers/spi/spi_mpc8xxx.c b/drivers/spi/spi_mpc8xxx.c index 797226cb7ef1..1fb2a6ea328c 100644 --- a/drivers/spi/spi_mpc8xxx.c +++ b/drivers/spi/spi_mpc8xxx.c | |||
@@ -5,6 +5,10 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 2006 Polycom, Inc. | 6 | * Copyright (C) 2006 Polycom, Inc. |
7 | * | 7 | * |
8 | * CPM SPI and QE buffer descriptors mode support: | ||
9 | * Copyright (c) 2009 MontaVista Software, Inc. | ||
10 | * Author: Anton Vorontsov <avorontsov@ru.mvista.com> | ||
11 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | 12 | * This program is free software; you can redistribute it and/or modify it |
9 | * under the terms of the GNU General Public License as published by the | 13 | * under the terms of the GNU General Public License as published by the |
10 | * Free Software Foundation; either version 2 of the License, or (at your | 14 | * Free Software Foundation; either version 2 of the License, or (at your |
@@ -27,6 +31,9 @@ | |||
27 | #include <linux/spi/spi_bitbang.h> | 31 | #include <linux/spi/spi_bitbang.h> |
28 | #include <linux/platform_device.h> | 32 | #include <linux/platform_device.h> |
29 | #include <linux/fsl_devices.h> | 33 | #include <linux/fsl_devices.h> |
34 | #include <linux/dma-mapping.h> | ||
35 | #include <linux/mm.h> | ||
36 | #include <linux/mutex.h> | ||
30 | #include <linux/of.h> | 37 | #include <linux/of.h> |
31 | #include <linux/of_platform.h> | 38 | #include <linux/of_platform.h> |
32 | #include <linux/gpio.h> | 39 | #include <linux/gpio.h> |
@@ -34,8 +41,19 @@ | |||
34 | #include <linux/of_spi.h> | 41 | #include <linux/of_spi.h> |
35 | 42 | ||
36 | #include <sysdev/fsl_soc.h> | 43 | #include <sysdev/fsl_soc.h> |
44 | #include <asm/cpm.h> | ||
45 | #include <asm/qe.h> | ||
37 | #include <asm/irq.h> | 46 | #include <asm/irq.h> |
38 | 47 | ||
48 | /* CPM1 and CPM2 are mutually exclusive. */ | ||
49 | #ifdef CONFIG_CPM1 | ||
50 | #include <asm/cpm1.h> | ||
51 | #define CPM_SPI_CMD mk_cr_cmd(CPM_CR_CH_SPI, 0) | ||
52 | #else | ||
53 | #include <asm/cpm2.h> | ||
54 | #define CPM_SPI_CMD mk_cr_cmd(CPM_CR_SPI_PAGE, CPM_CR_SPI_SBLOCK, 0, 0) | ||
55 | #endif | ||
56 | |||
39 | /* SPI Controller registers */ | 57 | /* SPI Controller registers */ |
40 | struct mpc8xxx_spi_reg { | 58 | struct mpc8xxx_spi_reg { |
41 | u8 res1[0x20]; | 59 | u8 res1[0x20]; |
@@ -47,6 +65,28 @@ struct mpc8xxx_spi_reg { | |||
47 | __be32 receive; | 65 | __be32 receive; |
48 | }; | 66 | }; |
49 | 67 | ||
68 | /* SPI Parameter RAM */ | ||
69 | struct spi_pram { | ||
70 | __be16 rbase; /* Rx Buffer descriptor base address */ | ||
71 | __be16 tbase; /* Tx Buffer descriptor base address */ | ||
72 | u8 rfcr; /* Rx function code */ | ||
73 | u8 tfcr; /* Tx function code */ | ||
74 | __be16 mrblr; /* Max receive buffer length */ | ||
75 | __be32 rstate; /* Internal */ | ||
76 | __be32 rdp; /* Internal */ | ||
77 | __be16 rbptr; /* Internal */ | ||
78 | __be16 rbc; /* Internal */ | ||
79 | __be32 rxtmp; /* Internal */ | ||
80 | __be32 tstate; /* Internal */ | ||
81 | __be32 tdp; /* Internal */ | ||
82 | __be16 tbptr; /* Internal */ | ||
83 | __be16 tbc; /* Internal */ | ||
84 | __be32 txtmp; /* Internal */ | ||
85 | __be32 res; /* Tx temp. */ | ||
86 | __be16 rpbase; /* Relocation pointer (CPM1 only) */ | ||
87 | __be16 res1; /* Reserved */ | ||
88 | }; | ||
89 | |||
50 | /* SPI Controller mode register definitions */ | 90 | /* SPI Controller mode register definitions */ |
51 | #define SPMODE_LOOP (1 << 30) | 91 | #define SPMODE_LOOP (1 << 30) |
52 | #define SPMODE_CI_INACTIVEHIGH (1 << 29) | 92 | #define SPMODE_CI_INACTIVEHIGH (1 << 29) |
@@ -75,14 +115,40 @@ struct mpc8xxx_spi_reg { | |||
75 | #define SPIM_NE 0x00000200 /* Not empty */ | 115 | #define SPIM_NE 0x00000200 /* Not empty */ |
76 | #define SPIM_NF 0x00000100 /* Not full */ | 116 | #define SPIM_NF 0x00000100 /* Not full */ |
77 | 117 | ||
118 | #define SPIE_TXB 0x00000200 /* Last char is written to tx fifo */ | ||
119 | #define SPIE_RXB 0x00000100 /* Last char is written to rx buf */ | ||
120 | |||
121 | /* SPCOM register values */ | ||
122 | #define SPCOM_STR (1 << 23) /* Start transmit */ | ||
123 | |||
124 | #define SPI_PRAM_SIZE 0x100 | ||
125 | #define SPI_MRBLR ((unsigned int)PAGE_SIZE) | ||
126 | |||
78 | /* SPI Controller driver's private data. */ | 127 | /* SPI Controller driver's private data. */ |
79 | struct mpc8xxx_spi { | 128 | struct mpc8xxx_spi { |
129 | struct device *dev; | ||
80 | struct mpc8xxx_spi_reg __iomem *base; | 130 | struct mpc8xxx_spi_reg __iomem *base; |
81 | 131 | ||
82 | /* rx & tx bufs from the spi_transfer */ | 132 | /* rx & tx bufs from the spi_transfer */ |
83 | const void *tx; | 133 | const void *tx; |
84 | void *rx; | 134 | void *rx; |
85 | 135 | ||
136 | int subblock; | ||
137 | struct spi_pram __iomem *pram; | ||
138 | struct cpm_buf_desc __iomem *tx_bd; | ||
139 | struct cpm_buf_desc __iomem *rx_bd; | ||
140 | |||
141 | struct spi_transfer *xfer_in_progress; | ||
142 | |||
143 | /* dma addresses for CPM transfers */ | ||
144 | dma_addr_t tx_dma; | ||
145 | dma_addr_t rx_dma; | ||
146 | bool map_tx_dma; | ||
147 | bool map_rx_dma; | ||
148 | |||
149 | dma_addr_t dma_dummy_tx; | ||
150 | dma_addr_t dma_dummy_rx; | ||
151 | |||
86 | /* functions to deal with different sized buffers */ | 152 | /* functions to deal with different sized buffers */ |
87 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); | 153 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); |
88 | u32(*get_tx) (struct mpc8xxx_spi *); | 154 | u32(*get_tx) (struct mpc8xxx_spi *); |
@@ -96,7 +162,7 @@ struct mpc8xxx_spi { | |||
96 | u32 rx_shift; /* RX data reg shift when in qe mode */ | 162 | u32 rx_shift; /* RX data reg shift when in qe mode */ |
97 | u32 tx_shift; /* TX data reg shift when in qe mode */ | 163 | u32 tx_shift; /* TX data reg shift when in qe mode */ |
98 | 164 | ||
99 | bool qe_mode; | 165 | unsigned int flags; |
100 | 166 | ||
101 | struct workqueue_struct *workqueue; | 167 | struct workqueue_struct *workqueue; |
102 | struct work_struct work; | 168 | struct work_struct work; |
@@ -107,6 +173,10 @@ struct mpc8xxx_spi { | |||
107 | struct completion done; | 173 | struct completion done; |
108 | }; | 174 | }; |
109 | 175 | ||
176 | static void *mpc8xxx_dummy_rx; | ||
177 | static DEFINE_MUTEX(mpc8xxx_dummy_rx_lock); | ||
178 | static int mpc8xxx_dummy_rx_refcnt; | ||
179 | |||
110 | struct spi_mpc8xxx_cs { | 180 | struct spi_mpc8xxx_cs { |
111 | /* functions to deal with different sized buffers */ | 181 | /* functions to deal with different sized buffers */ |
112 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); | 182 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); |
@@ -155,6 +225,42 @@ MPC83XX_SPI_TX_BUF(u8) | |||
155 | MPC83XX_SPI_TX_BUF(u16) | 225 | MPC83XX_SPI_TX_BUF(u16) |
156 | MPC83XX_SPI_TX_BUF(u32) | 226 | MPC83XX_SPI_TX_BUF(u32) |
157 | 227 | ||
228 | static void mpc8xxx_spi_change_mode(struct spi_device *spi) | ||
229 | { | ||
230 | struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master); | ||
231 | struct spi_mpc8xxx_cs *cs = spi->controller_state; | ||
232 | __be32 __iomem *mode = &mspi->base->mode; | ||
233 | unsigned long flags; | ||
234 | |||
235 | if (cs->hw_mode == mpc8xxx_spi_read_reg(mode)) | ||
236 | return; | ||
237 | |||
238 | /* Turn off IRQs locally to minimize time that SPI is disabled. */ | ||
239 | local_irq_save(flags); | ||
240 | |||
241 | /* Turn off SPI unit prior changing mode */ | ||
242 | mpc8xxx_spi_write_reg(mode, cs->hw_mode & ~SPMODE_ENABLE); | ||
243 | mpc8xxx_spi_write_reg(mode, cs->hw_mode); | ||
244 | |||
245 | /* When in CPM mode, we need to reinit tx and rx. */ | ||
246 | if (mspi->flags & SPI_CPM_MODE) { | ||
247 | if (mspi->flags & SPI_QE) { | ||
248 | qe_issue_cmd(QE_INIT_TX_RX, mspi->subblock, | ||
249 | QE_CR_PROTOCOL_UNSPECIFIED, 0); | ||
250 | } else { | ||
251 | cpm_command(CPM_SPI_CMD, CPM_CR_INIT_TRX); | ||
252 | if (mspi->flags & SPI_CPM1) { | ||
253 | out_be16(&mspi->pram->rbptr, | ||
254 | in_be16(&mspi->pram->rbase)); | ||
255 | out_be16(&mspi->pram->tbptr, | ||
256 | in_be16(&mspi->pram->tbase)); | ||
257 | } | ||
258 | } | ||
259 | } | ||
260 | |||
261 | local_irq_restore(flags); | ||
262 | } | ||
263 | |||
158 | static void mpc8xxx_spi_chipselect(struct spi_device *spi, int value) | 264 | static void mpc8xxx_spi_chipselect(struct spi_device *spi, int value) |
159 | { | 265 | { |
160 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); | 266 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); |
@@ -168,27 +274,13 @@ static void mpc8xxx_spi_chipselect(struct spi_device *spi, int value) | |||
168 | } | 274 | } |
169 | 275 | ||
170 | if (value == BITBANG_CS_ACTIVE) { | 276 | if (value == BITBANG_CS_ACTIVE) { |
171 | u32 regval = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode); | ||
172 | |||
173 | mpc8xxx_spi->rx_shift = cs->rx_shift; | 277 | mpc8xxx_spi->rx_shift = cs->rx_shift; |
174 | mpc8xxx_spi->tx_shift = cs->tx_shift; | 278 | mpc8xxx_spi->tx_shift = cs->tx_shift; |
175 | mpc8xxx_spi->get_rx = cs->get_rx; | 279 | mpc8xxx_spi->get_rx = cs->get_rx; |
176 | mpc8xxx_spi->get_tx = cs->get_tx; | 280 | mpc8xxx_spi->get_tx = cs->get_tx; |
177 | 281 | ||
178 | if (cs->hw_mode != regval) { | 282 | mpc8xxx_spi_change_mode(spi); |
179 | unsigned long flags; | 283 | |
180 | __be32 __iomem *mode = &mpc8xxx_spi->base->mode; | ||
181 | |||
182 | regval = cs->hw_mode; | ||
183 | /* Turn off IRQs locally to minimize time that | ||
184 | * SPI is disabled | ||
185 | */ | ||
186 | local_irq_save(flags); | ||
187 | /* Turn off SPI unit prior changing mode */ | ||
188 | mpc8xxx_spi_write_reg(mode, regval & ~SPMODE_ENABLE); | ||
189 | mpc8xxx_spi_write_reg(mode, regval); | ||
190 | local_irq_restore(flags); | ||
191 | } | ||
192 | if (pdata->cs_control) | 284 | if (pdata->cs_control) |
193 | pdata->cs_control(spi, pol); | 285 | pdata->cs_control(spi, pol); |
194 | } | 286 | } |
@@ -198,7 +290,6 @@ static | |||
198 | int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) | 290 | int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) |
199 | { | 291 | { |
200 | struct mpc8xxx_spi *mpc8xxx_spi; | 292 | struct mpc8xxx_spi *mpc8xxx_spi; |
201 | u32 regval; | ||
202 | u8 bits_per_word, pm; | 293 | u8 bits_per_word, pm; |
203 | u32 hz; | 294 | u32 hz; |
204 | struct spi_mpc8xxx_cs *cs = spi->controller_state; | 295 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
@@ -230,14 +321,14 @@ int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) | |||
230 | if (bits_per_word <= 8) { | 321 | if (bits_per_word <= 8) { |
231 | cs->get_rx = mpc8xxx_spi_rx_buf_u8; | 322 | cs->get_rx = mpc8xxx_spi_rx_buf_u8; |
232 | cs->get_tx = mpc8xxx_spi_tx_buf_u8; | 323 | cs->get_tx = mpc8xxx_spi_tx_buf_u8; |
233 | if (mpc8xxx_spi->qe_mode) { | 324 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) { |
234 | cs->rx_shift = 16; | 325 | cs->rx_shift = 16; |
235 | cs->tx_shift = 24; | 326 | cs->tx_shift = 24; |
236 | } | 327 | } |
237 | } else if (bits_per_word <= 16) { | 328 | } else if (bits_per_word <= 16) { |
238 | cs->get_rx = mpc8xxx_spi_rx_buf_u16; | 329 | cs->get_rx = mpc8xxx_spi_rx_buf_u16; |
239 | cs->get_tx = mpc8xxx_spi_tx_buf_u16; | 330 | cs->get_tx = mpc8xxx_spi_tx_buf_u16; |
240 | if (mpc8xxx_spi->qe_mode) { | 331 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) { |
241 | cs->rx_shift = 16; | 332 | cs->rx_shift = 16; |
242 | cs->tx_shift = 16; | 333 | cs->tx_shift = 16; |
243 | } | 334 | } |
@@ -247,7 +338,8 @@ int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) | |||
247 | } else | 338 | } else |
248 | return -EINVAL; | 339 | return -EINVAL; |
249 | 340 | ||
250 | if (mpc8xxx_spi->qe_mode && spi->mode & SPI_LSB_FIRST) { | 341 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE && |
342 | spi->mode & SPI_LSB_FIRST) { | ||
251 | cs->tx_shift = 0; | 343 | cs->tx_shift = 0; |
252 | if (bits_per_word <= 8) | 344 | if (bits_per_word <= 8) |
253 | cs->rx_shift = 8; | 345 | cs->rx_shift = 8; |
@@ -286,37 +378,138 @@ int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) | |||
286 | pm--; | 378 | pm--; |
287 | 379 | ||
288 | cs->hw_mode |= SPMODE_PM(pm); | 380 | cs->hw_mode |= SPMODE_PM(pm); |
289 | regval = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode); | 381 | |
290 | if (cs->hw_mode != regval) { | 382 | mpc8xxx_spi_change_mode(spi); |
291 | unsigned long flags; | 383 | return 0; |
292 | __be32 __iomem *mode = &mpc8xxx_spi->base->mode; | 384 | } |
293 | 385 | ||
294 | regval = cs->hw_mode; | 386 | static void mpc8xxx_spi_cpm_bufs_start(struct mpc8xxx_spi *mspi) |
295 | /* Turn off IRQs locally to minimize time | 387 | { |
296 | * that SPI is disabled | 388 | struct cpm_buf_desc __iomem *tx_bd = mspi->tx_bd; |
297 | */ | 389 | struct cpm_buf_desc __iomem *rx_bd = mspi->rx_bd; |
298 | local_irq_save(flags); | 390 | unsigned int xfer_len = min(mspi->count, SPI_MRBLR); |
299 | /* Turn off SPI unit prior changing mode */ | 391 | unsigned int xfer_ofs; |
300 | mpc8xxx_spi_write_reg(mode, regval & ~SPMODE_ENABLE); | 392 | |
301 | mpc8xxx_spi_write_reg(mode, regval); | 393 | xfer_ofs = mspi->xfer_in_progress->len - mspi->count; |
302 | local_irq_restore(flags); | 394 | |
395 | out_be32(&rx_bd->cbd_bufaddr, mspi->rx_dma + xfer_ofs); | ||
396 | out_be16(&rx_bd->cbd_datlen, 0); | ||
397 | out_be16(&rx_bd->cbd_sc, BD_SC_EMPTY | BD_SC_INTRPT | BD_SC_WRAP); | ||
398 | |||
399 | out_be32(&tx_bd->cbd_bufaddr, mspi->tx_dma + xfer_ofs); | ||
400 | out_be16(&tx_bd->cbd_datlen, xfer_len); | ||
401 | out_be16(&tx_bd->cbd_sc, BD_SC_READY | BD_SC_INTRPT | BD_SC_WRAP | | ||
402 | BD_SC_LAST); | ||
403 | |||
404 | /* start transfer */ | ||
405 | mpc8xxx_spi_write_reg(&mspi->base->command, SPCOM_STR); | ||
406 | } | ||
407 | |||
408 | static int mpc8xxx_spi_cpm_bufs(struct mpc8xxx_spi *mspi, | ||
409 | struct spi_transfer *t, bool is_dma_mapped) | ||
410 | { | ||
411 | struct device *dev = mspi->dev; | ||
412 | |||
413 | if (is_dma_mapped) { | ||
414 | mspi->map_tx_dma = 0; | ||
415 | mspi->map_rx_dma = 0; | ||
416 | } else { | ||
417 | mspi->map_tx_dma = 1; | ||
418 | mspi->map_rx_dma = 1; | ||
419 | } | ||
420 | |||
421 | if (!t->tx_buf) { | ||
422 | mspi->tx_dma = mspi->dma_dummy_tx; | ||
423 | mspi->map_tx_dma = 0; | ||
424 | } | ||
425 | |||
426 | if (!t->rx_buf) { | ||
427 | mspi->rx_dma = mspi->dma_dummy_rx; | ||
428 | mspi->map_rx_dma = 0; | ||
303 | } | 429 | } |
430 | |||
431 | if (mspi->map_tx_dma) { | ||
432 | void *nonconst_tx = (void *)mspi->tx; /* shut up gcc */ | ||
433 | |||
434 | mspi->tx_dma = dma_map_single(dev, nonconst_tx, t->len, | ||
435 | DMA_TO_DEVICE); | ||
436 | if (dma_mapping_error(dev, mspi->tx_dma)) { | ||
437 | dev_err(dev, "unable to map tx dma\n"); | ||
438 | return -ENOMEM; | ||
439 | } | ||
440 | } else { | ||
441 | mspi->tx_dma = t->tx_dma; | ||
442 | } | ||
443 | |||
444 | if (mspi->map_rx_dma) { | ||
445 | mspi->rx_dma = dma_map_single(dev, mspi->rx, t->len, | ||
446 | DMA_FROM_DEVICE); | ||
447 | if (dma_mapping_error(dev, mspi->rx_dma)) { | ||
448 | dev_err(dev, "unable to map rx dma\n"); | ||
449 | goto err_rx_dma; | ||
450 | } | ||
451 | } else { | ||
452 | mspi->rx_dma = t->rx_dma; | ||
453 | } | ||
454 | |||
455 | /* enable rx ints */ | ||
456 | mpc8xxx_spi_write_reg(&mspi->base->mask, SPIE_RXB); | ||
457 | |||
458 | mspi->xfer_in_progress = t; | ||
459 | mspi->count = t->len; | ||
460 | |||
461 | /* start CPM transfers */ | ||
462 | mpc8xxx_spi_cpm_bufs_start(mspi); | ||
463 | |||
304 | return 0; | 464 | return 0; |
465 | |||
466 | err_rx_dma: | ||
467 | if (mspi->map_tx_dma) | ||
468 | dma_unmap_single(dev, mspi->tx_dma, t->len, DMA_TO_DEVICE); | ||
469 | return -ENOMEM; | ||
305 | } | 470 | } |
306 | 471 | ||
307 | static int mpc8xxx_spi_bufs(struct spi_device *spi, struct spi_transfer *t) | 472 | static void mpc8xxx_spi_cpm_bufs_complete(struct mpc8xxx_spi *mspi) |
308 | { | 473 | { |
309 | struct mpc8xxx_spi *mpc8xxx_spi; | 474 | struct device *dev = mspi->dev; |
310 | u32 word, len, bits_per_word; | 475 | struct spi_transfer *t = mspi->xfer_in_progress; |
476 | |||
477 | if (mspi->map_tx_dma) | ||
478 | dma_unmap_single(dev, mspi->tx_dma, t->len, DMA_TO_DEVICE); | ||
479 | if (mspi->map_tx_dma) | ||
480 | dma_unmap_single(dev, mspi->rx_dma, t->len, DMA_FROM_DEVICE); | ||
481 | mspi->xfer_in_progress = NULL; | ||
482 | } | ||
311 | 483 | ||
312 | mpc8xxx_spi = spi_master_get_devdata(spi->master); | 484 | static int mpc8xxx_spi_cpu_bufs(struct mpc8xxx_spi *mspi, |
485 | struct spi_transfer *t, unsigned int len) | ||
486 | { | ||
487 | u32 word; | ||
488 | |||
489 | mspi->count = len; | ||
490 | |||
491 | /* enable rx ints */ | ||
492 | mpc8xxx_spi_write_reg(&mspi->base->mask, SPIM_NE); | ||
493 | |||
494 | /* transmit word */ | ||
495 | word = mspi->get_tx(mspi); | ||
496 | mpc8xxx_spi_write_reg(&mspi->base->transmit, word); | ||
497 | |||
498 | return 0; | ||
499 | } | ||
500 | |||
501 | static int mpc8xxx_spi_bufs(struct spi_device *spi, struct spi_transfer *t, | ||
502 | bool is_dma_mapped) | ||
503 | { | ||
504 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); | ||
505 | unsigned int len = t->len; | ||
506 | u8 bits_per_word; | ||
507 | int ret; | ||
313 | 508 | ||
314 | mpc8xxx_spi->tx = t->tx_buf; | ||
315 | mpc8xxx_spi->rx = t->rx_buf; | ||
316 | bits_per_word = spi->bits_per_word; | 509 | bits_per_word = spi->bits_per_word; |
317 | if (t->bits_per_word) | 510 | if (t->bits_per_word) |
318 | bits_per_word = t->bits_per_word; | 511 | bits_per_word = t->bits_per_word; |
319 | len = t->len; | 512 | |
320 | if (bits_per_word > 8) { | 513 | if (bits_per_word > 8) { |
321 | /* invalid length? */ | 514 | /* invalid length? */ |
322 | if (len & 1) | 515 | if (len & 1) |
@@ -329,22 +522,27 @@ static int mpc8xxx_spi_bufs(struct spi_device *spi, struct spi_transfer *t) | |||
329 | return -EINVAL; | 522 | return -EINVAL; |
330 | len /= 2; | 523 | len /= 2; |
331 | } | 524 | } |
332 | mpc8xxx_spi->count = len; | ||
333 | 525 | ||
334 | INIT_COMPLETION(mpc8xxx_spi->done); | 526 | mpc8xxx_spi->tx = t->tx_buf; |
527 | mpc8xxx_spi->rx = t->rx_buf; | ||
335 | 528 | ||
336 | /* enable rx ints */ | 529 | INIT_COMPLETION(mpc8xxx_spi->done); |
337 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, SPIM_NE); | ||
338 | 530 | ||
339 | /* transmit word */ | 531 | if (mpc8xxx_spi->flags & SPI_CPM_MODE) |
340 | word = mpc8xxx_spi->get_tx(mpc8xxx_spi); | 532 | ret = mpc8xxx_spi_cpm_bufs(mpc8xxx_spi, t, is_dma_mapped); |
341 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word); | 533 | else |
534 | ret = mpc8xxx_spi_cpu_bufs(mpc8xxx_spi, t, len); | ||
535 | if (ret) | ||
536 | return ret; | ||
342 | 537 | ||
343 | wait_for_completion(&mpc8xxx_spi->done); | 538 | wait_for_completion(&mpc8xxx_spi->done); |
344 | 539 | ||
345 | /* disable rx ints */ | 540 | /* disable rx ints */ |
346 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0); | 541 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0); |
347 | 542 | ||
543 | if (mpc8xxx_spi->flags & SPI_CPM_MODE) | ||
544 | mpc8xxx_spi_cpm_bufs_complete(mpc8xxx_spi); | ||
545 | |||
348 | return mpc8xxx_spi->count; | 546 | return mpc8xxx_spi->count; |
349 | } | 547 | } |
350 | 548 | ||
@@ -375,7 +573,7 @@ static void mpc8xxx_spi_do_one_msg(struct spi_message *m) | |||
375 | } | 573 | } |
376 | cs_change = t->cs_change; | 574 | cs_change = t->cs_change; |
377 | if (t->len) | 575 | if (t->len) |
378 | status = mpc8xxx_spi_bufs(spi, t); | 576 | status = mpc8xxx_spi_bufs(spi, t, m->is_dma_mapped); |
379 | if (status) { | 577 | if (status) { |
380 | status = -EMSGSIZE; | 578 | status = -EMSGSIZE; |
381 | break; | 579 | break; |
@@ -464,45 +662,80 @@ static int mpc8xxx_spi_setup(struct spi_device *spi) | |||
464 | return 0; | 662 | return 0; |
465 | } | 663 | } |
466 | 664 | ||
467 | static irqreturn_t mpc8xxx_spi_irq(s32 irq, void *context_data) | 665 | static void mpc8xxx_spi_cpm_irq(struct mpc8xxx_spi *mspi, u32 events) |
468 | { | 666 | { |
469 | struct mpc8xxx_spi *mpc8xxx_spi = context_data; | 667 | u16 len; |
470 | u32 event; | ||
471 | irqreturn_t ret = IRQ_NONE; | ||
472 | 668 | ||
473 | /* Get interrupt events(tx/rx) */ | 669 | dev_dbg(mspi->dev, "%s: bd datlen %d, count %d\n", __func__, |
474 | event = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event); | 670 | in_be16(&mspi->rx_bd->cbd_datlen), mspi->count); |
475 | 671 | ||
476 | /* We need handle RX first */ | 672 | len = in_be16(&mspi->rx_bd->cbd_datlen); |
477 | if (event & SPIE_NE) { | 673 | if (len > mspi->count) { |
478 | u32 rx_data = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->receive); | 674 | WARN_ON(1); |
675 | len = mspi->count; | ||
676 | } | ||
479 | 677 | ||
480 | if (mpc8xxx_spi->rx) | 678 | /* Clear the events */ |
481 | mpc8xxx_spi->get_rx(rx_data, mpc8xxx_spi); | 679 | mpc8xxx_spi_write_reg(&mspi->base->event, events); |
482 | 680 | ||
483 | ret = IRQ_HANDLED; | 681 | mspi->count -= len; |
682 | if (mspi->count) | ||
683 | mpc8xxx_spi_cpm_bufs_start(mspi); | ||
684 | else | ||
685 | complete(&mspi->done); | ||
686 | } | ||
687 | |||
688 | static void mpc8xxx_spi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events) | ||
689 | { | ||
690 | /* We need handle RX first */ | ||
691 | if (events & SPIE_NE) { | ||
692 | u32 rx_data = mpc8xxx_spi_read_reg(&mspi->base->receive); | ||
693 | |||
694 | if (mspi->rx) | ||
695 | mspi->get_rx(rx_data, mspi); | ||
484 | } | 696 | } |
485 | 697 | ||
486 | if ((event & SPIE_NF) == 0) | 698 | if ((events & SPIE_NF) == 0) |
487 | /* spin until TX is done */ | 699 | /* spin until TX is done */ |
488 | while (((event = | 700 | while (((events = |
489 | mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event)) & | 701 | mpc8xxx_spi_read_reg(&mspi->base->event)) & |
490 | SPIE_NF) == 0) | 702 | SPIE_NF) == 0) |
491 | cpu_relax(); | 703 | cpu_relax(); |
492 | 704 | ||
493 | mpc8xxx_spi->count -= 1; | 705 | /* Clear the events */ |
494 | if (mpc8xxx_spi->count) { | 706 | mpc8xxx_spi_write_reg(&mspi->base->event, events); |
495 | u32 word = mpc8xxx_spi->get_tx(mpc8xxx_spi); | 707 | |
496 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word); | 708 | mspi->count -= 1; |
709 | if (mspi->count) { | ||
710 | u32 word = mspi->get_tx(mspi); | ||
711 | |||
712 | mpc8xxx_spi_write_reg(&mspi->base->transmit, word); | ||
497 | } else { | 713 | } else { |
498 | complete(&mpc8xxx_spi->done); | 714 | complete(&mspi->done); |
499 | } | 715 | } |
716 | } | ||
500 | 717 | ||
501 | /* Clear the events */ | 718 | static irqreturn_t mpc8xxx_spi_irq(s32 irq, void *context_data) |
502 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->event, event); | 719 | { |
720 | struct mpc8xxx_spi *mspi = context_data; | ||
721 | irqreturn_t ret = IRQ_NONE; | ||
722 | u32 events; | ||
723 | |||
724 | /* Get interrupt events(tx/rx) */ | ||
725 | events = mpc8xxx_spi_read_reg(&mspi->base->event); | ||
726 | if (events) | ||
727 | ret = IRQ_HANDLED; | ||
728 | |||
729 | dev_dbg(mspi->dev, "%s: events %x\n", __func__, events); | ||
730 | |||
731 | if (mspi->flags & SPI_CPM_MODE) | ||
732 | mpc8xxx_spi_cpm_irq(mspi, events); | ||
733 | else | ||
734 | mpc8xxx_spi_cpu_irq(mspi, events); | ||
503 | 735 | ||
504 | return ret; | 736 | return ret; |
505 | } | 737 | } |
738 | |||
506 | static int mpc8xxx_spi_transfer(struct spi_device *spi, | 739 | static int mpc8xxx_spi_transfer(struct spi_device *spi, |
507 | struct spi_message *m) | 740 | struct spi_message *m) |
508 | { | 741 | { |
@@ -526,6 +759,215 @@ static void mpc8xxx_spi_cleanup(struct spi_device *spi) | |||
526 | kfree(spi->controller_state); | 759 | kfree(spi->controller_state); |
527 | } | 760 | } |
528 | 761 | ||
762 | static void *mpc8xxx_spi_alloc_dummy_rx(void) | ||
763 | { | ||
764 | mutex_lock(&mpc8xxx_dummy_rx_lock); | ||
765 | |||
766 | if (!mpc8xxx_dummy_rx) | ||
767 | mpc8xxx_dummy_rx = kmalloc(SPI_MRBLR, GFP_KERNEL); | ||
768 | if (mpc8xxx_dummy_rx) | ||
769 | mpc8xxx_dummy_rx_refcnt++; | ||
770 | |||
771 | mutex_unlock(&mpc8xxx_dummy_rx_lock); | ||
772 | |||
773 | return mpc8xxx_dummy_rx; | ||
774 | } | ||
775 | |||
776 | static void mpc8xxx_spi_free_dummy_rx(void) | ||
777 | { | ||
778 | mutex_lock(&mpc8xxx_dummy_rx_lock); | ||
779 | |||
780 | switch (mpc8xxx_dummy_rx_refcnt) { | ||
781 | case 0: | ||
782 | WARN_ON(1); | ||
783 | break; | ||
784 | case 1: | ||
785 | kfree(mpc8xxx_dummy_rx); | ||
786 | mpc8xxx_dummy_rx = NULL; | ||
787 | /* fall through */ | ||
788 | default: | ||
789 | mpc8xxx_dummy_rx_refcnt--; | ||
790 | break; | ||
791 | } | ||
792 | |||
793 | mutex_unlock(&mpc8xxx_dummy_rx_lock); | ||
794 | } | ||
795 | |||
796 | static unsigned long mpc8xxx_spi_cpm_get_pram(struct mpc8xxx_spi *mspi) | ||
797 | { | ||
798 | struct device *dev = mspi->dev; | ||
799 | struct device_node *np = dev_archdata_get_node(&dev->archdata); | ||
800 | const u32 *iprop; | ||
801 | int size; | ||
802 | unsigned long spi_base_ofs; | ||
803 | unsigned long pram_ofs = -ENOMEM; | ||
804 | |||
805 | /* Can't use of_address_to_resource(), QE muram isn't at 0. */ | ||
806 | iprop = of_get_property(np, "reg", &size); | ||
807 | |||
808 | /* QE with a fixed pram location? */ | ||
809 | if (mspi->flags & SPI_QE && iprop && size == sizeof(*iprop) * 4) | ||
810 | return cpm_muram_alloc_fixed(iprop[2], SPI_PRAM_SIZE); | ||
811 | |||
812 | /* QE but with a dynamic pram location? */ | ||
813 | if (mspi->flags & SPI_QE) { | ||
814 | pram_ofs = cpm_muram_alloc(SPI_PRAM_SIZE, 64); | ||
815 | qe_issue_cmd(QE_ASSIGN_PAGE_TO_DEVICE, mspi->subblock, | ||
816 | QE_CR_PROTOCOL_UNSPECIFIED, pram_ofs); | ||
817 | return pram_ofs; | ||
818 | } | ||
819 | |||
820 | /* CPM1 and CPM2 pram must be at a fixed addr. */ | ||
821 | if (!iprop || size != sizeof(*iprop) * 4) | ||
822 | return -ENOMEM; | ||
823 | |||
824 | spi_base_ofs = cpm_muram_alloc_fixed(iprop[2], 2); | ||
825 | if (IS_ERR_VALUE(spi_base_ofs)) | ||
826 | return -ENOMEM; | ||
827 | |||
828 | if (mspi->flags & SPI_CPM2) { | ||
829 | pram_ofs = cpm_muram_alloc(SPI_PRAM_SIZE, 64); | ||
830 | if (!IS_ERR_VALUE(pram_ofs)) { | ||
831 | u16 __iomem *spi_base = cpm_muram_addr(spi_base_ofs); | ||
832 | |||
833 | out_be16(spi_base, pram_ofs); | ||
834 | } | ||
835 | } else { | ||
836 | struct spi_pram __iomem *pram = cpm_muram_addr(spi_base_ofs); | ||
837 | u16 rpbase = in_be16(&pram->rpbase); | ||
838 | |||
839 | /* Microcode relocation patch applied? */ | ||
840 | if (rpbase) | ||
841 | pram_ofs = rpbase; | ||
842 | else | ||
843 | return spi_base_ofs; | ||
844 | } | ||
845 | |||
846 | cpm_muram_free(spi_base_ofs); | ||
847 | return pram_ofs; | ||
848 | } | ||
849 | |||
850 | static int mpc8xxx_spi_cpm_init(struct mpc8xxx_spi *mspi) | ||
851 | { | ||
852 | struct device *dev = mspi->dev; | ||
853 | struct device_node *np = dev_archdata_get_node(&dev->archdata); | ||
854 | const u32 *iprop; | ||
855 | int size; | ||
856 | unsigned long pram_ofs; | ||
857 | unsigned long bds_ofs; | ||
858 | |||
859 | if (!(mspi->flags & SPI_CPM_MODE)) | ||
860 | return 0; | ||
861 | |||
862 | if (!mpc8xxx_spi_alloc_dummy_rx()) | ||
863 | return -ENOMEM; | ||
864 | |||
865 | if (mspi->flags & SPI_QE) { | ||
866 | iprop = of_get_property(np, "cell-index", &size); | ||
867 | if (iprop && size == sizeof(*iprop)) | ||
868 | mspi->subblock = *iprop; | ||
869 | |||
870 | switch (mspi->subblock) { | ||
871 | default: | ||
872 | dev_warn(dev, "cell-index unspecified, assuming SPI1"); | ||
873 | /* fall through */ | ||
874 | case 0: | ||
875 | mspi->subblock = QE_CR_SUBBLOCK_SPI1; | ||
876 | break; | ||
877 | case 1: | ||
878 | mspi->subblock = QE_CR_SUBBLOCK_SPI2; | ||
879 | break; | ||
880 | } | ||
881 | } | ||
882 | |||
883 | pram_ofs = mpc8xxx_spi_cpm_get_pram(mspi); | ||
884 | if (IS_ERR_VALUE(pram_ofs)) { | ||
885 | dev_err(dev, "can't allocate spi parameter ram\n"); | ||
886 | goto err_pram; | ||
887 | } | ||
888 | |||
889 | bds_ofs = cpm_muram_alloc(sizeof(*mspi->tx_bd) + | ||
890 | sizeof(*mspi->rx_bd), 8); | ||
891 | if (IS_ERR_VALUE(bds_ofs)) { | ||
892 | dev_err(dev, "can't allocate bds\n"); | ||
893 | goto err_bds; | ||
894 | } | ||
895 | |||
896 | mspi->dma_dummy_tx = dma_map_single(dev, empty_zero_page, PAGE_SIZE, | ||
897 | DMA_TO_DEVICE); | ||
898 | if (dma_mapping_error(dev, mspi->dma_dummy_tx)) { | ||
899 | dev_err(dev, "unable to map dummy tx buffer\n"); | ||
900 | goto err_dummy_tx; | ||
901 | } | ||
902 | |||
903 | mspi->dma_dummy_rx = dma_map_single(dev, mpc8xxx_dummy_rx, SPI_MRBLR, | ||
904 | DMA_FROM_DEVICE); | ||
905 | if (dma_mapping_error(dev, mspi->dma_dummy_rx)) { | ||
906 | dev_err(dev, "unable to map dummy rx buffer\n"); | ||
907 | goto err_dummy_rx; | ||
908 | } | ||
909 | |||
910 | mspi->pram = cpm_muram_addr(pram_ofs); | ||
911 | |||
912 | mspi->tx_bd = cpm_muram_addr(bds_ofs); | ||
913 | mspi->rx_bd = cpm_muram_addr(bds_ofs + sizeof(*mspi->tx_bd)); | ||
914 | |||
915 | /* Initialize parameter ram. */ | ||
916 | out_be16(&mspi->pram->tbase, cpm_muram_offset(mspi->tx_bd)); | ||
917 | out_be16(&mspi->pram->rbase, cpm_muram_offset(mspi->rx_bd)); | ||
918 | out_8(&mspi->pram->tfcr, CPMFCR_EB | CPMFCR_GBL); | ||
919 | out_8(&mspi->pram->rfcr, CPMFCR_EB | CPMFCR_GBL); | ||
920 | out_be16(&mspi->pram->mrblr, SPI_MRBLR); | ||
921 | out_be32(&mspi->pram->rstate, 0); | ||
922 | out_be32(&mspi->pram->rdp, 0); | ||
923 | out_be16(&mspi->pram->rbptr, 0); | ||
924 | out_be16(&mspi->pram->rbc, 0); | ||
925 | out_be32(&mspi->pram->rxtmp, 0); | ||
926 | out_be32(&mspi->pram->tstate, 0); | ||
927 | out_be32(&mspi->pram->tdp, 0); | ||
928 | out_be16(&mspi->pram->tbptr, 0); | ||
929 | out_be16(&mspi->pram->tbc, 0); | ||
930 | out_be32(&mspi->pram->txtmp, 0); | ||
931 | |||
932 | return 0; | ||
933 | |||
934 | err_dummy_rx: | ||
935 | dma_unmap_single(dev, mspi->dma_dummy_tx, PAGE_SIZE, DMA_TO_DEVICE); | ||
936 | err_dummy_tx: | ||
937 | cpm_muram_free(bds_ofs); | ||
938 | err_bds: | ||
939 | cpm_muram_free(pram_ofs); | ||
940 | err_pram: | ||
941 | mpc8xxx_spi_free_dummy_rx(); | ||
942 | return -ENOMEM; | ||
943 | } | ||
944 | |||
945 | static void mpc8xxx_spi_cpm_free(struct mpc8xxx_spi *mspi) | ||
946 | { | ||
947 | struct device *dev = mspi->dev; | ||
948 | |||
949 | dma_unmap_single(dev, mspi->dma_dummy_rx, SPI_MRBLR, DMA_FROM_DEVICE); | ||
950 | dma_unmap_single(dev, mspi->dma_dummy_tx, PAGE_SIZE, DMA_TO_DEVICE); | ||
951 | cpm_muram_free(cpm_muram_offset(mspi->tx_bd)); | ||
952 | cpm_muram_free(cpm_muram_offset(mspi->pram)); | ||
953 | mpc8xxx_spi_free_dummy_rx(); | ||
954 | } | ||
955 | |||
956 | static const char *mpc8xxx_spi_strmode(unsigned int flags) | ||
957 | { | ||
958 | if (flags & SPI_QE_CPU_MODE) { | ||
959 | return "QE CPU"; | ||
960 | } else if (flags & SPI_CPM_MODE) { | ||
961 | if (flags & SPI_QE) | ||
962 | return "QE"; | ||
963 | else if (flags & SPI_CPM2) | ||
964 | return "CPM2"; | ||
965 | else | ||
966 | return "CPM1"; | ||
967 | } | ||
968 | return "CPU"; | ||
969 | } | ||
970 | |||
529 | static struct spi_master * __devinit | 971 | static struct spi_master * __devinit |
530 | mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) | 972 | mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) |
531 | { | 973 | { |
@@ -552,14 +994,19 @@ mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) | |||
552 | master->cleanup = mpc8xxx_spi_cleanup; | 994 | master->cleanup = mpc8xxx_spi_cleanup; |
553 | 995 | ||
554 | mpc8xxx_spi = spi_master_get_devdata(master); | 996 | mpc8xxx_spi = spi_master_get_devdata(master); |
555 | mpc8xxx_spi->qe_mode = pdata->qe_mode; | 997 | mpc8xxx_spi->dev = dev; |
556 | mpc8xxx_spi->get_rx = mpc8xxx_spi_rx_buf_u8; | 998 | mpc8xxx_spi->get_rx = mpc8xxx_spi_rx_buf_u8; |
557 | mpc8xxx_spi->get_tx = mpc8xxx_spi_tx_buf_u8; | 999 | mpc8xxx_spi->get_tx = mpc8xxx_spi_tx_buf_u8; |
1000 | mpc8xxx_spi->flags = pdata->flags; | ||
558 | mpc8xxx_spi->spibrg = pdata->sysclk; | 1001 | mpc8xxx_spi->spibrg = pdata->sysclk; |
559 | 1002 | ||
1003 | ret = mpc8xxx_spi_cpm_init(mpc8xxx_spi); | ||
1004 | if (ret) | ||
1005 | goto err_cpm_init; | ||
1006 | |||
560 | mpc8xxx_spi->rx_shift = 0; | 1007 | mpc8xxx_spi->rx_shift = 0; |
561 | mpc8xxx_spi->tx_shift = 0; | 1008 | mpc8xxx_spi->tx_shift = 0; |
562 | if (mpc8xxx_spi->qe_mode) { | 1009 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) { |
563 | mpc8xxx_spi->rx_shift = 16; | 1010 | mpc8xxx_spi->rx_shift = 16; |
564 | mpc8xxx_spi->tx_shift = 24; | 1011 | mpc8xxx_spi->tx_shift = 24; |
565 | } | 1012 | } |
@@ -569,7 +1016,7 @@ mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) | |||
569 | mpc8xxx_spi->base = ioremap(mem->start, resource_size(mem)); | 1016 | mpc8xxx_spi->base = ioremap(mem->start, resource_size(mem)); |
570 | if (mpc8xxx_spi->base == NULL) { | 1017 | if (mpc8xxx_spi->base == NULL) { |
571 | ret = -ENOMEM; | 1018 | ret = -ENOMEM; |
572 | goto put_master; | 1019 | goto err_ioremap; |
573 | } | 1020 | } |
574 | 1021 | ||
575 | mpc8xxx_spi->irq = irq; | 1022 | mpc8xxx_spi->irq = irq; |
@@ -592,7 +1039,7 @@ mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) | |||
592 | 1039 | ||
593 | /* Enable SPI interface */ | 1040 | /* Enable SPI interface */ |
594 | regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE; | 1041 | regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE; |
595 | if (pdata->qe_mode) | 1042 | if (mpc8xxx_spi->flags & SPI_QE_CPU_MODE) |
596 | regval |= SPMODE_OP; | 1043 | regval |= SPMODE_OP; |
597 | 1044 | ||
598 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, regval); | 1045 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, regval); |
@@ -612,9 +1059,8 @@ mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) | |||
612 | if (ret < 0) | 1059 | if (ret < 0) |
613 | goto unreg_master; | 1060 | goto unreg_master; |
614 | 1061 | ||
615 | printk(KERN_INFO | 1062 | dev_info(dev, "at 0x%p (irq = %d), %s mode\n", mpc8xxx_spi->base, |
616 | "%s: MPC8xxx SPI Controller driver at 0x%p (irq = %d)\n", | 1063 | mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags)); |
617 | dev_name(dev), mpc8xxx_spi->base, mpc8xxx_spi->irq); | ||
618 | 1064 | ||
619 | return master; | 1065 | return master; |
620 | 1066 | ||
@@ -624,7 +1070,9 @@ free_irq: | |||
624 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); | 1070 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); |
625 | unmap_io: | 1071 | unmap_io: |
626 | iounmap(mpc8xxx_spi->base); | 1072 | iounmap(mpc8xxx_spi->base); |
627 | put_master: | 1073 | err_ioremap: |
1074 | mpc8xxx_spi_cpm_free(mpc8xxx_spi); | ||
1075 | err_cpm_init: | ||
628 | spi_master_put(master); | 1076 | spi_master_put(master); |
629 | err: | 1077 | err: |
630 | return ERR_PTR(ret); | 1078 | return ERR_PTR(ret); |
@@ -644,6 +1092,7 @@ static int __devexit mpc8xxx_spi_remove(struct device *dev) | |||
644 | 1092 | ||
645 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); | 1093 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); |
646 | iounmap(mpc8xxx_spi->base); | 1094 | iounmap(mpc8xxx_spi->base); |
1095 | mpc8xxx_spi_cpm_free(mpc8xxx_spi); | ||
647 | 1096 | ||
648 | return 0; | 1097 | return 0; |
649 | } | 1098 | } |
@@ -709,6 +1158,7 @@ static int of_mpc8xxx_spi_get_chipselects(struct device *dev) | |||
709 | gpio = of_get_gpio_flags(np, i, &flags); | 1158 | gpio = of_get_gpio_flags(np, i, &flags); |
710 | if (!gpio_is_valid(gpio)) { | 1159 | if (!gpio_is_valid(gpio)) { |
711 | dev_err(dev, "invalid gpio #%d: %d\n", i, gpio); | 1160 | dev_err(dev, "invalid gpio #%d: %d\n", i, gpio); |
1161 | ret = gpio; | ||
712 | goto err_loop; | 1162 | goto err_loop; |
713 | } | 1163 | } |
714 | 1164 | ||
@@ -804,7 +1254,13 @@ static int __devinit of_mpc8xxx_spi_probe(struct of_device *ofdev, | |||
804 | 1254 | ||
805 | prop = of_get_property(np, "mode", NULL); | 1255 | prop = of_get_property(np, "mode", NULL); |
806 | if (prop && !strcmp(prop, "cpu-qe")) | 1256 | if (prop && !strcmp(prop, "cpu-qe")) |
807 | pdata->qe_mode = 1; | 1257 | pdata->flags = SPI_QE_CPU_MODE; |
1258 | else if (prop && !strcmp(prop, "qe")) | ||
1259 | pdata->flags = SPI_CPM_MODE | SPI_QE; | ||
1260 | else if (of_device_is_compatible(np, "fsl,cpm2-spi")) | ||
1261 | pdata->flags = SPI_CPM_MODE | SPI_CPM2; | ||
1262 | else if (of_device_is_compatible(np, "fsl,cpm1-spi")) | ||
1263 | pdata->flags = SPI_CPM_MODE | SPI_CPM1; | ||
808 | 1264 | ||
809 | ret = of_mpc8xxx_spi_get_chipselects(dev); | 1265 | ret = of_mpc8xxx_spi_get_chipselects(dev); |
810 | if (ret) | 1266 | if (ret) |
diff --git a/drivers/spi/spi_s3c24xx.c b/drivers/spi/spi_s3c24xx.c index 4b0d25b497ac..c010733877ae 100644 --- a/drivers/spi/spi_s3c24xx.c +++ b/drivers/spi/spi_s3c24xx.c | |||
@@ -707,7 +707,7 @@ static int s3c24xx_spi_resume(struct device *dev) | |||
707 | return 0; | 707 | return 0; |
708 | } | 708 | } |
709 | 709 | ||
710 | static struct dev_pm_ops s3c24xx_spi_pmops = { | 710 | static const struct dev_pm_ops s3c24xx_spi_pmops = { |
711 | .suspend = s3c24xx_spi_suspend, | 711 | .suspend = s3c24xx_spi_suspend, |
712 | .resume = s3c24xx_spi_resume, | 712 | .resume = s3c24xx_spi_resume, |
713 | }; | 713 | }; |
diff --git a/drivers/spi/spi_stmp.c b/drivers/spi/spi_stmp.c index d871dc23909c..2552bb364005 100644 --- a/drivers/spi/spi_stmp.c +++ b/drivers/spi/spi_stmp.c | |||
@@ -242,7 +242,7 @@ static int stmp_spi_txrx_dma(struct stmp_spi *ss, int cs, | |||
242 | wait_for_completion(&ss->done); | 242 | wait_for_completion(&ss->done); |
243 | 243 | ||
244 | if (!busy_wait(readl(ss->regs + HW_SSP_CTRL0) & BM_SSP_CTRL0_RUN)) | 244 | if (!busy_wait(readl(ss->regs + HW_SSP_CTRL0) & BM_SSP_CTRL0_RUN)) |
245 | status = ETIMEDOUT; | 245 | status = -ETIMEDOUT; |
246 | 246 | ||
247 | if (!dma_buf) | 247 | if (!dma_buf) |
248 | dma_unmap_single(ss->master_dev, spi_buf_dma, len, dir); | 248 | dma_unmap_single(ss->master_dev, spi_buf_dma, len, dir); |
diff --git a/drivers/spi/spi_txx9.c b/drivers/spi/spi_txx9.c index c166eb5ad3c5..dfa024b633e1 100644 --- a/drivers/spi/spi_txx9.c +++ b/drivers/spi/spi_txx9.c | |||
@@ -29,6 +29,8 @@ | |||
29 | 29 | ||
30 | 30 | ||
31 | #define SPI_FIFO_SIZE 4 | 31 | #define SPI_FIFO_SIZE 4 |
32 | #define SPI_MAX_DIVIDER 0xff /* Max. value for SPCR1.SER */ | ||
33 | #define SPI_MIN_DIVIDER 1 /* Min. value for SPCR1.SER */ | ||
32 | 34 | ||
33 | #define TXx9_SPMCR 0x00 | 35 | #define TXx9_SPMCR 0x00 |
34 | #define TXx9_SPCR0 0x04 | 36 | #define TXx9_SPCR0 0x04 |
@@ -193,11 +195,8 @@ static void txx9spi_work_one(struct txx9spi *c, struct spi_message *m) | |||
193 | 195 | ||
194 | if (prev_speed_hz != speed_hz | 196 | if (prev_speed_hz != speed_hz |
195 | || prev_bits_per_word != bits_per_word) { | 197 | || prev_bits_per_word != bits_per_word) { |
196 | u32 n = (c->baseclk + speed_hz - 1) / speed_hz; | 198 | int n = DIV_ROUND_UP(c->baseclk, speed_hz) - 1; |
197 | if (n < 1) | 199 | n = clamp(n, SPI_MIN_DIVIDER, SPI_MAX_DIVIDER); |
198 | n = 1; | ||
199 | else if (n > 0xff) | ||
200 | n = 0xff; | ||
201 | /* enter config mode */ | 200 | /* enter config mode */ |
202 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, | 201 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, |
203 | TXx9_SPMCR); | 202 | TXx9_SPMCR); |
@@ -370,8 +369,8 @@ static int __init txx9spi_probe(struct platform_device *dev) | |||
370 | goto exit; | 369 | goto exit; |
371 | } | 370 | } |
372 | c->baseclk = clk_get_rate(c->clk); | 371 | c->baseclk = clk_get_rate(c->clk); |
373 | c->min_speed_hz = (c->baseclk + 0xff - 1) / 0xff; | 372 | c->min_speed_hz = DIV_ROUND_UP(c->baseclk, SPI_MAX_DIVIDER + 1); |
374 | c->max_speed_hz = c->baseclk; | 373 | c->max_speed_hz = c->baseclk / (SPI_MIN_DIVIDER + 1); |
375 | 374 | ||
376 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); | 375 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); |
377 | if (!res) | 376 | if (!res) |
diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index f4a7a287b7f1..ea1bec3c9a13 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c | |||
@@ -30,7 +30,6 @@ | |||
30 | #include <linux/errno.h> | 30 | #include <linux/errno.h> |
31 | #include <linux/mutex.h> | 31 | #include <linux/mutex.h> |
32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
33 | #include <linux/smp_lock.h> | ||
34 | 33 | ||
35 | #include <linux/spi/spi.h> | 34 | #include <linux/spi/spi.h> |
36 | #include <linux/spi/spidev.h> | 35 | #include <linux/spi/spidev.h> |
@@ -42,7 +41,7 @@ | |||
42 | * This supports acccess to SPI devices using normal userspace I/O calls. | 41 | * This supports acccess to SPI devices using normal userspace I/O calls. |
43 | * Note that while traditional UNIX/POSIX I/O semantics are half duplex, | 42 | * Note that while traditional UNIX/POSIX I/O semantics are half duplex, |
44 | * and often mask message boundaries, full SPI support requires full duplex | 43 | * and often mask message boundaries, full SPI support requires full duplex |
45 | * transfers. There are several kinds of of internal message boundaries to | 44 | * transfers. There are several kinds of internal message boundaries to |
46 | * handle chipselect management and other protocol options. | 45 | * handle chipselect management and other protocol options. |
47 | * | 46 | * |
48 | * SPI has a character major number assigned. We allocate minor numbers | 47 | * SPI has a character major number assigned. We allocate minor numbers |
@@ -477,7 +476,6 @@ static int spidev_open(struct inode *inode, struct file *filp) | |||
477 | struct spidev_data *spidev; | 476 | struct spidev_data *spidev; |
478 | int status = -ENXIO; | 477 | int status = -ENXIO; |
479 | 478 | ||
480 | lock_kernel(); | ||
481 | mutex_lock(&device_list_lock); | 479 | mutex_lock(&device_list_lock); |
482 | 480 | ||
483 | list_for_each_entry(spidev, &device_list, device_entry) { | 481 | list_for_each_entry(spidev, &device_list, device_entry) { |
@@ -503,7 +501,6 @@ static int spidev_open(struct inode *inode, struct file *filp) | |||
503 | pr_debug("spidev: nothing for minor %d\n", iminor(inode)); | 501 | pr_debug("spidev: nothing for minor %d\n", iminor(inode)); |
504 | 502 | ||
505 | mutex_unlock(&device_list_lock); | 503 | mutex_unlock(&device_list_lock); |
506 | unlock_kernel(); | ||
507 | return status; | 504 | return status; |
508 | } | 505 | } |
509 | 506 | ||