2 * Copyright (C) 2009 Samsung Electronics Ltd.
3 * Jaswinder Singh <jassi.brar@samsung.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/workqueue.h>
23 #include <linux/interrupt.h>
24 #include <linux/delay.h>
25 #include <linux/clk.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/dmaengine.h>
28 #include <linux/platform_device.h>
29 #include <linux/pm_runtime.h>
30 #include <linux/spi/spi.h>
31 #include <linux/gpio.h>
33 #include <linux/of_gpio.h>
35 #include <linux/platform_data/spi-s3c64xx.h>
41 #define MAX_SPI_PORTS 3
42 #define S3C64XX_SPI_QUIRK_POLL (1 << 0)
44 /* Registers and bit-fields */
46 #define S3C64XX_SPI_CH_CFG 0x00
47 #define S3C64XX_SPI_CLK_CFG 0x04
48 #define S3C64XX_SPI_MODE_CFG 0x08
49 #define S3C64XX_SPI_SLAVE_SEL 0x0C
50 #define S3C64XX_SPI_INT_EN 0x10
51 #define S3C64XX_SPI_STATUS 0x14
52 #define S3C64XX_SPI_TX_DATA 0x18
53 #define S3C64XX_SPI_RX_DATA 0x1C
54 #define S3C64XX_SPI_PACKET_CNT 0x20
55 #define S3C64XX_SPI_PENDING_CLR 0x24
56 #define S3C64XX_SPI_SWAP_CFG 0x28
57 #define S3C64XX_SPI_FB_CLK 0x2C
59 #define S3C64XX_SPI_CH_HS_EN (1<<6) /* High Speed Enable */
60 #define S3C64XX_SPI_CH_SW_RST (1<<5)
61 #define S3C64XX_SPI_CH_SLAVE (1<<4)
62 #define S3C64XX_SPI_CPOL_L (1<<3)
63 #define S3C64XX_SPI_CPHA_B (1<<2)
64 #define S3C64XX_SPI_CH_RXCH_ON (1<<1)
65 #define S3C64XX_SPI_CH_TXCH_ON (1<<0)
67 #define S3C64XX_SPI_CLKSEL_SRCMSK (3<<9)
68 #define S3C64XX_SPI_CLKSEL_SRCSHFT 9
69 #define S3C64XX_SPI_ENCLK_ENABLE (1<<8)
70 #define S3C64XX_SPI_PSR_MASK 0xff
72 #define S3C64XX_SPI_MODE_CH_TSZ_BYTE (0<<29)
73 #define S3C64XX_SPI_MODE_CH_TSZ_HALFWORD (1<<29)
74 #define S3C64XX_SPI_MODE_CH_TSZ_WORD (2<<29)
75 #define S3C64XX_SPI_MODE_CH_TSZ_MASK (3<<29)
76 #define S3C64XX_SPI_MODE_BUS_TSZ_BYTE (0<<17)
77 #define S3C64XX_SPI_MODE_BUS_TSZ_HALFWORD (1<<17)
78 #define S3C64XX_SPI_MODE_BUS_TSZ_WORD (2<<17)
79 #define S3C64XX_SPI_MODE_BUS_TSZ_MASK (3<<17)
80 #define S3C64XX_SPI_MODE_RXDMA_ON (1<<2)
81 #define S3C64XX_SPI_MODE_TXDMA_ON (1<<1)
82 #define S3C64XX_SPI_MODE_4BURST (1<<0)
84 #define S3C64XX_SPI_SLAVE_AUTO (1<<1)
85 #define S3C64XX_SPI_SLAVE_SIG_INACT (1<<0)
87 #define S3C64XX_SPI_INT_TRAILING_EN (1<<6)
88 #define S3C64XX_SPI_INT_RX_OVERRUN_EN (1<<5)
89 #define S3C64XX_SPI_INT_RX_UNDERRUN_EN (1<<4)
90 #define S3C64XX_SPI_INT_TX_OVERRUN_EN (1<<3)
91 #define S3C64XX_SPI_INT_TX_UNDERRUN_EN (1<<2)
92 #define S3C64XX_SPI_INT_RX_FIFORDY_EN (1<<1)
93 #define S3C64XX_SPI_INT_TX_FIFORDY_EN (1<<0)
95 #define S3C64XX_SPI_ST_RX_OVERRUN_ERR (1<<5)
96 #define S3C64XX_SPI_ST_RX_UNDERRUN_ERR (1<<4)
97 #define S3C64XX_SPI_ST_TX_OVERRUN_ERR (1<<3)
98 #define S3C64XX_SPI_ST_TX_UNDERRUN_ERR (1<<2)
99 #define S3C64XX_SPI_ST_RX_FIFORDY (1<<1)
100 #define S3C64XX_SPI_ST_TX_FIFORDY (1<<0)
102 #define S3C64XX_SPI_PACKET_CNT_EN (1<<16)
104 #define S3C64XX_SPI_PND_TX_UNDERRUN_CLR (1<<4)
105 #define S3C64XX_SPI_PND_TX_OVERRUN_CLR (1<<3)
106 #define S3C64XX_SPI_PND_RX_UNDERRUN_CLR (1<<2)
107 #define S3C64XX_SPI_PND_RX_OVERRUN_CLR (1<<1)
108 #define S3C64XX_SPI_PND_TRAILING_CLR (1<<0)
110 #define S3C64XX_SPI_SWAP_RX_HALF_WORD (1<<7)
111 #define S3C64XX_SPI_SWAP_RX_BYTE (1<<6)
112 #define S3C64XX_SPI_SWAP_RX_BIT (1<<5)
113 #define S3C64XX_SPI_SWAP_RX_EN (1<<4)
114 #define S3C64XX_SPI_SWAP_TX_HALF_WORD (1<<3)
115 #define S3C64XX_SPI_SWAP_TX_BYTE (1<<2)
116 #define S3C64XX_SPI_SWAP_TX_BIT (1<<1)
117 #define S3C64XX_SPI_SWAP_TX_EN (1<<0)
119 #define S3C64XX_SPI_FBCLK_MSK (3<<0)
121 #define FIFO_LVL_MASK(i) ((i)->port_conf->fifo_lvl_mask[i->port_id])
122 #define S3C64XX_SPI_ST_TX_DONE(v, i) (((v) & \
123 (1 << (i)->port_conf->tx_st_done)) ? 1 : 0)
124 #define TX_FIFO_LVL(v, i) (((v) >> 6) & FIFO_LVL_MASK(i))
125 #define RX_FIFO_LVL(v, i) (((v) >> (i)->port_conf->rx_lvl_offset) & \
128 #define S3C64XX_SPI_MAX_TRAILCNT 0x3ff
129 #define S3C64XX_SPI_TRAILCNT_OFF 19
131 #define S3C64XX_SPI_TRAILCNT S3C64XX_SPI_MAX_TRAILCNT
133 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
134 #define is_polling(x) (x->port_conf->quirks & S3C64XX_SPI_QUIRK_POLL)
136 #define RXBUSY (1<<2)
137 #define TXBUSY (1<<3)
139 struct s3c64xx_spi_dma_data
{
141 enum dma_transfer_direction direction
;
146 * struct s3c64xx_spi_info - SPI Controller hardware info
147 * @fifo_lvl_mask: Bit-mask for {TX|RX}_FIFO_LVL bits in SPI_STATUS register.
148 * @rx_lvl_offset: Bit offset of RX_FIFO_LVL bits in SPI_STATUS regiter.
149 * @tx_st_done: Bit offset of TX_DONE bit in SPI_STATUS regiter.
150 * @high_speed: True, if the controller supports HIGH_SPEED_EN bit.
151 * @clk_from_cmu: True, if the controller does not include a clock mux and
154 * The Samsung s3c64xx SPI controller are used on various Samsung SoC's but
155 * differ in some aspects such as the size of the fifo and spi bus clock
156 * setup. Such differences are specified to the driver using this structure
157 * which is provided as driver data to the driver.
159 struct s3c64xx_spi_port_config
{
160 int fifo_lvl_mask
[MAX_SPI_PORTS
];
169 * struct s3c64xx_spi_driver_data - Runtime info holder for SPI driver.
170 * @clk: Pointer to the spi clock.
171 * @src_clk: Pointer to the clock used to generate SPI signals.
172 * @master: Pointer to the SPI Protocol master.
173 * @cntrlr_info: Platform specific data for the controller this driver manages.
174 * @tgl_spi: Pointer to the last CS left untoggled by the cs_change hint.
175 * @lock: Controller specific lock.
176 * @state: Set of FLAGS to indicate status.
177 * @rx_dmach: Controller's DMA channel for Rx.
178 * @tx_dmach: Controller's DMA channel for Tx.
179 * @sfr_start: BUS address of SPI controller regs.
180 * @regs: Pointer to ioremap'ed controller registers.
182 * @xfer_completion: To indicate completion of xfer task.
183 * @cur_mode: Stores the active configuration of the controller.
184 * @cur_bpw: Stores the active bits per word settings.
185 * @cur_speed: Stores the active xfer clock speed.
187 struct s3c64xx_spi_driver_data
{
191 struct platform_device
*pdev
;
192 struct spi_master
*master
;
193 struct s3c64xx_spi_info
*cntrlr_info
;
194 struct spi_device
*tgl_spi
;
196 unsigned long sfr_start
;
197 struct completion xfer_completion
;
199 unsigned cur_mode
, cur_bpw
;
201 struct s3c64xx_spi_dma_data rx_dma
;
202 struct s3c64xx_spi_dma_data tx_dma
;
203 #ifdef CONFIG_S3C_DMA
204 struct samsung_dma_ops
*ops
;
206 struct s3c64xx_spi_port_config
*port_conf
;
207 unsigned int port_id
;
208 unsigned long gpios
[4];
212 static void flush_fifo(struct s3c64xx_spi_driver_data
*sdd
)
214 void __iomem
*regs
= sdd
->regs
;
218 writel(0, regs
+ S3C64XX_SPI_PACKET_CNT
);
220 val
= readl(regs
+ S3C64XX_SPI_CH_CFG
);
221 val
&= ~(S3C64XX_SPI_CH_RXCH_ON
| S3C64XX_SPI_CH_TXCH_ON
);
222 writel(val
, regs
+ S3C64XX_SPI_CH_CFG
);
224 val
= readl(regs
+ S3C64XX_SPI_CH_CFG
);
225 val
|= S3C64XX_SPI_CH_SW_RST
;
226 val
&= ~S3C64XX_SPI_CH_HS_EN
;
227 writel(val
, regs
+ S3C64XX_SPI_CH_CFG
);
230 loops
= msecs_to_loops(1);
232 val
= readl(regs
+ S3C64XX_SPI_STATUS
);
233 } while (TX_FIFO_LVL(val
, sdd
) && loops
--);
236 dev_warn(&sdd
->pdev
->dev
, "Timed out flushing TX FIFO\n");
239 loops
= msecs_to_loops(1);
241 val
= readl(regs
+ S3C64XX_SPI_STATUS
);
242 if (RX_FIFO_LVL(val
, sdd
))
243 readl(regs
+ S3C64XX_SPI_RX_DATA
);
249 dev_warn(&sdd
->pdev
->dev
, "Timed out flushing RX FIFO\n");
251 val
= readl(regs
+ S3C64XX_SPI_CH_CFG
);
252 val
&= ~S3C64XX_SPI_CH_SW_RST
;
253 writel(val
, regs
+ S3C64XX_SPI_CH_CFG
);
255 val
= readl(regs
+ S3C64XX_SPI_MODE_CFG
);
256 val
&= ~(S3C64XX_SPI_MODE_TXDMA_ON
| S3C64XX_SPI_MODE_RXDMA_ON
);
257 writel(val
, regs
+ S3C64XX_SPI_MODE_CFG
);
260 static void s3c64xx_spi_dmacb(void *data
)
262 struct s3c64xx_spi_driver_data
*sdd
;
263 struct s3c64xx_spi_dma_data
*dma
= data
;
266 if (dma
->direction
== DMA_DEV_TO_MEM
)
267 sdd
= container_of(data
,
268 struct s3c64xx_spi_driver_data
, rx_dma
);
270 sdd
= container_of(data
,
271 struct s3c64xx_spi_driver_data
, tx_dma
);
273 spin_lock_irqsave(&sdd
->lock
, flags
);
275 if (dma
->direction
== DMA_DEV_TO_MEM
) {
276 sdd
->state
&= ~RXBUSY
;
277 if (!(sdd
->state
& TXBUSY
))
278 complete(&sdd
->xfer_completion
);
280 sdd
->state
&= ~TXBUSY
;
281 if (!(sdd
->state
& RXBUSY
))
282 complete(&sdd
->xfer_completion
);
285 spin_unlock_irqrestore(&sdd
->lock
, flags
);
288 #ifdef CONFIG_S3C_DMA
289 /* FIXME: remove this section once arch/arm/mach-s3c64xx uses dmaengine */
291 static struct s3c2410_dma_client s3c64xx_spi_dma_client
= {
292 .name
= "samsung-spi-dma",
295 static void prepare_dma(struct s3c64xx_spi_dma_data
*dma
,
296 unsigned len
, dma_addr_t buf
)
298 struct s3c64xx_spi_driver_data
*sdd
;
299 struct samsung_dma_prep info
;
300 struct samsung_dma_config config
;
302 if (dma
->direction
== DMA_DEV_TO_MEM
) {
303 sdd
= container_of((void *)dma
,
304 struct s3c64xx_spi_driver_data
, rx_dma
);
305 config
.direction
= sdd
->rx_dma
.direction
;
306 config
.fifo
= sdd
->sfr_start
+ S3C64XX_SPI_RX_DATA
;
307 config
.width
= sdd
->cur_bpw
/ 8;
308 sdd
->ops
->config((enum dma_ch
)sdd
->rx_dma
.ch
, &config
);
310 sdd
= container_of((void *)dma
,
311 struct s3c64xx_spi_driver_data
, tx_dma
);
312 config
.direction
= sdd
->tx_dma
.direction
;
313 config
.fifo
= sdd
->sfr_start
+ S3C64XX_SPI_TX_DATA
;
314 config
.width
= sdd
->cur_bpw
/ 8;
315 sdd
->ops
->config((enum dma_ch
)sdd
->tx_dma
.ch
, &config
);
318 info
.cap
= DMA_SLAVE
;
320 info
.fp
= s3c64xx_spi_dmacb
;
322 info
.direction
= dma
->direction
;
325 sdd
->ops
->prepare((enum dma_ch
)dma
->ch
, &info
);
326 sdd
->ops
->trigger((enum dma_ch
)dma
->ch
);
329 static int acquire_dma(struct s3c64xx_spi_driver_data
*sdd
)
331 struct samsung_dma_req req
;
332 struct device
*dev
= &sdd
->pdev
->dev
;
334 sdd
->ops
= samsung_dma_get_ops();
337 req
.client
= &s3c64xx_spi_dma_client
;
339 sdd
->rx_dma
.ch
= (struct dma_chan
*)(unsigned long)sdd
->ops
->request(
340 sdd
->rx_dma
.dmach
, &req
, dev
, "rx");
341 sdd
->tx_dma
.ch
= (struct dma_chan
*)(unsigned long)sdd
->ops
->request(
342 sdd
->tx_dma
.dmach
, &req
, dev
, "tx");
347 static int s3c64xx_spi_prepare_transfer(struct spi_master
*spi
)
349 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(spi
);
352 * If DMA resource was not available during
353 * probe, no need to continue with dma requests
354 * else Acquire DMA channels
356 while (!is_polling(sdd
) && !acquire_dma(sdd
))
357 usleep_range(10000, 11000);
362 static int s3c64xx_spi_unprepare_transfer(struct spi_master
*spi
)
364 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(spi
);
366 /* Free DMA channels */
367 if (!is_polling(sdd
)) {
368 sdd
->ops
->release((enum dma_ch
)sdd
->rx_dma
.ch
,
369 &s3c64xx_spi_dma_client
);
370 sdd
->ops
->release((enum dma_ch
)sdd
->tx_dma
.ch
,
371 &s3c64xx_spi_dma_client
);
377 static void s3c64xx_spi_dma_stop(struct s3c64xx_spi_driver_data
*sdd
,
378 struct s3c64xx_spi_dma_data
*dma
)
380 sdd
->ops
->stop((enum dma_ch
)dma
->ch
);
384 static void prepare_dma(struct s3c64xx_spi_dma_data
*dma
,
385 unsigned len
, dma_addr_t buf
)
387 struct s3c64xx_spi_driver_data
*sdd
;
388 struct dma_slave_config config
;
389 struct dma_async_tx_descriptor
*desc
;
391 memset(&config
, 0, sizeof(config
));
393 if (dma
->direction
== DMA_DEV_TO_MEM
) {
394 sdd
= container_of((void *)dma
,
395 struct s3c64xx_spi_driver_data
, rx_dma
);
396 config
.direction
= dma
->direction
;
397 config
.src_addr
= sdd
->sfr_start
+ S3C64XX_SPI_RX_DATA
;
398 config
.src_addr_width
= sdd
->cur_bpw
/ 8;
399 config
.src_maxburst
= 1;
400 dmaengine_slave_config(dma
->ch
, &config
);
402 sdd
= container_of((void *)dma
,
403 struct s3c64xx_spi_driver_data
, tx_dma
);
404 config
.direction
= dma
->direction
;
405 config
.dst_addr
= sdd
->sfr_start
+ S3C64XX_SPI_TX_DATA
;
406 config
.dst_addr_width
= sdd
->cur_bpw
/ 8;
407 config
.dst_maxburst
= 1;
408 dmaengine_slave_config(dma
->ch
, &config
);
411 desc
= dmaengine_prep_slave_single(dma
->ch
, buf
, len
,
412 dma
->direction
, DMA_PREP_INTERRUPT
);
414 desc
->callback
= s3c64xx_spi_dmacb
;
415 desc
->callback_param
= dma
;
417 dmaengine_submit(desc
);
418 dma_async_issue_pending(dma
->ch
);
421 static int s3c64xx_spi_prepare_transfer(struct spi_master
*spi
)
423 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(spi
);
424 dma_filter_fn filter
= sdd
->cntrlr_info
->filter
;
425 struct device
*dev
= &sdd
->pdev
->dev
;
429 if (!is_polling(sdd
)) {
431 dma_cap_set(DMA_SLAVE
, mask
);
433 /* Acquire DMA channels */
434 sdd
->rx_dma
.ch
= dma_request_slave_channel_compat(mask
, filter
,
435 (void *)sdd
->rx_dma
.dmach
, dev
, "rx");
436 if (!sdd
->rx_dma
.ch
) {
437 dev_err(dev
, "Failed to get RX DMA channel\n");
442 sdd
->tx_dma
.ch
= dma_request_slave_channel_compat(mask
, filter
,
443 (void *)sdd
->tx_dma
.dmach
, dev
, "tx");
444 if (!sdd
->tx_dma
.ch
) {
445 dev_err(dev
, "Failed to get TX DMA channel\n");
451 ret
= pm_runtime_get_sync(&sdd
->pdev
->dev
);
453 dev_err(dev
, "Failed to enable device: %d\n", ret
);
460 dma_release_channel(sdd
->tx_dma
.ch
);
462 dma_release_channel(sdd
->rx_dma
.ch
);
467 static int s3c64xx_spi_unprepare_transfer(struct spi_master
*spi
)
469 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(spi
);
471 /* Free DMA channels */
472 if (!is_polling(sdd
)) {
473 dma_release_channel(sdd
->rx_dma
.ch
);
474 dma_release_channel(sdd
->tx_dma
.ch
);
477 pm_runtime_put(&sdd
->pdev
->dev
);
481 static void s3c64xx_spi_dma_stop(struct s3c64xx_spi_driver_data
*sdd
,
482 struct s3c64xx_spi_dma_data
*dma
)
484 dmaengine_terminate_all(dma
->ch
);
488 static void enable_datapath(struct s3c64xx_spi_driver_data
*sdd
,
489 struct spi_device
*spi
,
490 struct spi_transfer
*xfer
, int dma_mode
)
492 void __iomem
*regs
= sdd
->regs
;
495 modecfg
= readl(regs
+ S3C64XX_SPI_MODE_CFG
);
496 modecfg
&= ~(S3C64XX_SPI_MODE_TXDMA_ON
| S3C64XX_SPI_MODE_RXDMA_ON
);
498 chcfg
= readl(regs
+ S3C64XX_SPI_CH_CFG
);
499 chcfg
&= ~S3C64XX_SPI_CH_TXCH_ON
;
502 chcfg
&= ~S3C64XX_SPI_CH_RXCH_ON
;
504 /* Always shift in data in FIFO, even if xfer is Tx only,
505 * this helps setting PCKT_CNT value for generating clocks
508 chcfg
|= S3C64XX_SPI_CH_RXCH_ON
;
509 writel(((xfer
->len
* 8 / sdd
->cur_bpw
) & 0xffff)
510 | S3C64XX_SPI_PACKET_CNT_EN
,
511 regs
+ S3C64XX_SPI_PACKET_CNT
);
514 if (xfer
->tx_buf
!= NULL
) {
515 sdd
->state
|= TXBUSY
;
516 chcfg
|= S3C64XX_SPI_CH_TXCH_ON
;
518 modecfg
|= S3C64XX_SPI_MODE_TXDMA_ON
;
519 prepare_dma(&sdd
->tx_dma
, xfer
->len
, xfer
->tx_dma
);
521 switch (sdd
->cur_bpw
) {
523 iowrite32_rep(regs
+ S3C64XX_SPI_TX_DATA
,
524 xfer
->tx_buf
, xfer
->len
/ 4);
527 iowrite16_rep(regs
+ S3C64XX_SPI_TX_DATA
,
528 xfer
->tx_buf
, xfer
->len
/ 2);
531 iowrite8_rep(regs
+ S3C64XX_SPI_TX_DATA
,
532 xfer
->tx_buf
, xfer
->len
);
538 if (xfer
->rx_buf
!= NULL
) {
539 sdd
->state
|= RXBUSY
;
541 if (sdd
->port_conf
->high_speed
&& sdd
->cur_speed
>= 30000000UL
542 && !(sdd
->cur_mode
& SPI_CPHA
))
543 chcfg
|= S3C64XX_SPI_CH_HS_EN
;
546 modecfg
|= S3C64XX_SPI_MODE_RXDMA_ON
;
547 chcfg
|= S3C64XX_SPI_CH_RXCH_ON
;
548 writel(((xfer
->len
* 8 / sdd
->cur_bpw
) & 0xffff)
549 | S3C64XX_SPI_PACKET_CNT_EN
,
550 regs
+ S3C64XX_SPI_PACKET_CNT
);
551 prepare_dma(&sdd
->rx_dma
, xfer
->len
, xfer
->rx_dma
);
555 writel(modecfg
, regs
+ S3C64XX_SPI_MODE_CFG
);
556 writel(chcfg
, regs
+ S3C64XX_SPI_CH_CFG
);
559 static inline void enable_cs(struct s3c64xx_spi_driver_data
*sdd
,
560 struct spi_device
*spi
)
562 struct s3c64xx_spi_csinfo
*cs
;
564 if (sdd
->tgl_spi
!= NULL
) { /* If last device toggled after mssg */
565 if (sdd
->tgl_spi
!= spi
) { /* if last mssg on diff device */
566 /* Deselect the last toggled device */
567 cs
= sdd
->tgl_spi
->controller_data
;
569 gpio_set_value(cs
->line
,
570 spi
->mode
& SPI_CS_HIGH
? 0 : 1);
575 cs
= spi
->controller_data
;
577 gpio_set_value(cs
->line
, spi
->mode
& SPI_CS_HIGH
? 1 : 0);
579 /* Start the signals */
580 writel(0, sdd
->regs
+ S3C64XX_SPI_SLAVE_SEL
);
583 static u32
s3c64xx_spi_wait_for_timeout(struct s3c64xx_spi_driver_data
*sdd
,
586 void __iomem
*regs
= sdd
->regs
;
587 unsigned long val
= 1;
590 /* max fifo depth available */
591 u32 max_fifo
= (FIFO_LVL_MASK(sdd
) >> 1) + 1;
594 val
= msecs_to_loops(timeout_ms
);
597 status
= readl(regs
+ S3C64XX_SPI_STATUS
);
598 } while (RX_FIFO_LVL(status
, sdd
) < max_fifo
&& --val
);
600 /* return the actual received data length */
601 return RX_FIFO_LVL(status
, sdd
);
604 static int wait_for_xfer(struct s3c64xx_spi_driver_data
*sdd
,
605 struct spi_transfer
*xfer
, int dma_mode
)
607 void __iomem
*regs
= sdd
->regs
;
611 /* millisecs to xfer 'len' bytes @ 'cur_speed' */
612 ms
= xfer
->len
* 8 * 1000 / sdd
->cur_speed
;
613 ms
+= 10; /* some tolerance */
616 val
= msecs_to_jiffies(ms
) + 10;
617 val
= wait_for_completion_timeout(&sdd
->xfer_completion
, val
);
620 val
= msecs_to_loops(ms
);
622 status
= readl(regs
+ S3C64XX_SPI_STATUS
);
623 } while (RX_FIFO_LVL(status
, sdd
) < xfer
->len
&& --val
);
630 * If the previous xfer was completed within timeout, then
631 * proceed further else return -EIO.
632 * DmaTx returns after simply writing data in the FIFO,
633 * w/o waiting for real transmission on the bus to finish.
634 * DmaRx returns only after Dma read data from FIFO which
635 * needs bus transmission to finish, so we don't worry if
636 * Xfer involved Rx(with or without Tx).
638 if (val
&& !xfer
->rx_buf
) {
639 val
= msecs_to_loops(10);
640 status
= readl(regs
+ S3C64XX_SPI_STATUS
);
641 while ((TX_FIFO_LVL(status
, sdd
)
642 || !S3C64XX_SPI_ST_TX_DONE(status
, sdd
))
645 status
= readl(regs
+ S3C64XX_SPI_STATUS
);
650 /* If timed out while checking rx/tx status return error */
658 /* If it was only Tx */
660 sdd
->state
&= ~TXBUSY
;
665 * If the receive length is bigger than the controller fifo
666 * size, calculate the loops and read the fifo as many times.
667 * loops = length / max fifo size (calculated by using the
669 * For any size less than the fifo size the below code is
670 * executed atleast once.
672 loops
= xfer
->len
/ ((FIFO_LVL_MASK(sdd
) >> 1) + 1);
675 /* wait for data to be received in the fifo */
676 cpy_len
= s3c64xx_spi_wait_for_timeout(sdd
,
679 switch (sdd
->cur_bpw
) {
681 ioread32_rep(regs
+ S3C64XX_SPI_RX_DATA
,
685 ioread16_rep(regs
+ S3C64XX_SPI_RX_DATA
,
689 ioread8_rep(regs
+ S3C64XX_SPI_RX_DATA
,
696 sdd
->state
&= ~RXBUSY
;
702 static inline void disable_cs(struct s3c64xx_spi_driver_data
*sdd
,
703 struct spi_device
*spi
)
705 struct s3c64xx_spi_csinfo
*cs
= spi
->controller_data
;
707 if (sdd
->tgl_spi
== spi
)
711 gpio_set_value(cs
->line
, spi
->mode
& SPI_CS_HIGH
? 0 : 1);
713 /* Quiese the signals */
714 writel(S3C64XX_SPI_SLAVE_SIG_INACT
, sdd
->regs
+ S3C64XX_SPI_SLAVE_SEL
);
717 static void s3c64xx_spi_config(struct s3c64xx_spi_driver_data
*sdd
)
719 void __iomem
*regs
= sdd
->regs
;
723 if (sdd
->port_conf
->clk_from_cmu
) {
724 clk_disable_unprepare(sdd
->src_clk
);
726 val
= readl(regs
+ S3C64XX_SPI_CLK_CFG
);
727 val
&= ~S3C64XX_SPI_ENCLK_ENABLE
;
728 writel(val
, regs
+ S3C64XX_SPI_CLK_CFG
);
731 /* Set Polarity and Phase */
732 val
= readl(regs
+ S3C64XX_SPI_CH_CFG
);
733 val
&= ~(S3C64XX_SPI_CH_SLAVE
|
737 if (sdd
->cur_mode
& SPI_CPOL
)
738 val
|= S3C64XX_SPI_CPOL_L
;
740 if (sdd
->cur_mode
& SPI_CPHA
)
741 val
|= S3C64XX_SPI_CPHA_B
;
743 writel(val
, regs
+ S3C64XX_SPI_CH_CFG
);
745 /* Set Channel & DMA Mode */
746 val
= readl(regs
+ S3C64XX_SPI_MODE_CFG
);
747 val
&= ~(S3C64XX_SPI_MODE_BUS_TSZ_MASK
748 | S3C64XX_SPI_MODE_CH_TSZ_MASK
);
750 switch (sdd
->cur_bpw
) {
752 val
|= S3C64XX_SPI_MODE_BUS_TSZ_WORD
;
753 val
|= S3C64XX_SPI_MODE_CH_TSZ_WORD
;
756 val
|= S3C64XX_SPI_MODE_BUS_TSZ_HALFWORD
;
757 val
|= S3C64XX_SPI_MODE_CH_TSZ_HALFWORD
;
760 val
|= S3C64XX_SPI_MODE_BUS_TSZ_BYTE
;
761 val
|= S3C64XX_SPI_MODE_CH_TSZ_BYTE
;
765 writel(val
, regs
+ S3C64XX_SPI_MODE_CFG
);
767 if (sdd
->port_conf
->clk_from_cmu
) {
768 /* Configure Clock */
769 /* There is half-multiplier before the SPI */
770 clk_set_rate(sdd
->src_clk
, sdd
->cur_speed
* 2);
772 clk_prepare_enable(sdd
->src_clk
);
774 /* Configure Clock */
775 val
= readl(regs
+ S3C64XX_SPI_CLK_CFG
);
776 val
&= ~S3C64XX_SPI_PSR_MASK
;
777 val
|= ((clk_get_rate(sdd
->src_clk
) / sdd
->cur_speed
/ 2 - 1)
778 & S3C64XX_SPI_PSR_MASK
);
779 writel(val
, regs
+ S3C64XX_SPI_CLK_CFG
);
782 val
= readl(regs
+ S3C64XX_SPI_CLK_CFG
);
783 val
|= S3C64XX_SPI_ENCLK_ENABLE
;
784 writel(val
, regs
+ S3C64XX_SPI_CLK_CFG
);
788 #define XFER_DMAADDR_INVALID DMA_BIT_MASK(32)
790 static int s3c64xx_spi_map_mssg(struct s3c64xx_spi_driver_data
*sdd
,
791 struct spi_message
*msg
)
793 struct device
*dev
= &sdd
->pdev
->dev
;
794 struct spi_transfer
*xfer
;
796 if (is_polling(sdd
) || msg
->is_dma_mapped
)
799 /* First mark all xfer unmapped */
800 list_for_each_entry(xfer
, &msg
->transfers
, transfer_list
) {
801 xfer
->rx_dma
= XFER_DMAADDR_INVALID
;
802 xfer
->tx_dma
= XFER_DMAADDR_INVALID
;
805 /* Map until end or first fail */
806 list_for_each_entry(xfer
, &msg
->transfers
, transfer_list
) {
808 if (xfer
->len
<= ((FIFO_LVL_MASK(sdd
) >> 1) + 1))
811 if (xfer
->tx_buf
!= NULL
) {
812 xfer
->tx_dma
= dma_map_single(dev
,
813 (void *)xfer
->tx_buf
, xfer
->len
,
815 if (dma_mapping_error(dev
, xfer
->tx_dma
)) {
816 dev_err(dev
, "dma_map_single Tx failed\n");
817 xfer
->tx_dma
= XFER_DMAADDR_INVALID
;
822 if (xfer
->rx_buf
!= NULL
) {
823 xfer
->rx_dma
= dma_map_single(dev
, xfer
->rx_buf
,
824 xfer
->len
, DMA_FROM_DEVICE
);
825 if (dma_mapping_error(dev
, xfer
->rx_dma
)) {
826 dev_err(dev
, "dma_map_single Rx failed\n");
827 dma_unmap_single(dev
, xfer
->tx_dma
,
828 xfer
->len
, DMA_TO_DEVICE
);
829 xfer
->tx_dma
= XFER_DMAADDR_INVALID
;
830 xfer
->rx_dma
= XFER_DMAADDR_INVALID
;
839 static void s3c64xx_spi_unmap_mssg(struct s3c64xx_spi_driver_data
*sdd
,
840 struct spi_message
*msg
)
842 struct device
*dev
= &sdd
->pdev
->dev
;
843 struct spi_transfer
*xfer
;
845 if (is_polling(sdd
) || msg
->is_dma_mapped
)
848 list_for_each_entry(xfer
, &msg
->transfers
, transfer_list
) {
850 if (xfer
->len
<= ((FIFO_LVL_MASK(sdd
) >> 1) + 1))
853 if (xfer
->rx_buf
!= NULL
854 && xfer
->rx_dma
!= XFER_DMAADDR_INVALID
)
855 dma_unmap_single(dev
, xfer
->rx_dma
,
856 xfer
->len
, DMA_FROM_DEVICE
);
858 if (xfer
->tx_buf
!= NULL
859 && xfer
->tx_dma
!= XFER_DMAADDR_INVALID
)
860 dma_unmap_single(dev
, xfer
->tx_dma
,
861 xfer
->len
, DMA_TO_DEVICE
);
865 static int s3c64xx_spi_transfer_one_message(struct spi_master
*master
,
866 struct spi_message
*msg
)
868 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
869 struct spi_device
*spi
= msg
->spi
;
870 struct s3c64xx_spi_csinfo
*cs
= spi
->controller_data
;
871 struct spi_transfer
*xfer
;
872 int status
= 0, cs_toggle
= 0;
876 /* If Master's(controller) state differs from that needed by Slave */
877 if (sdd
->cur_speed
!= spi
->max_speed_hz
878 || sdd
->cur_mode
!= spi
->mode
879 || sdd
->cur_bpw
!= spi
->bits_per_word
) {
880 sdd
->cur_bpw
= spi
->bits_per_word
;
881 sdd
->cur_speed
= spi
->max_speed_hz
;
882 sdd
->cur_mode
= spi
->mode
;
883 s3c64xx_spi_config(sdd
);
886 /* Map all the transfers if needed */
887 if (s3c64xx_spi_map_mssg(sdd
, msg
)) {
889 "Xfer: Unable to map message buffers!\n");
894 /* Configure feedback delay */
895 writel(cs
->fb_delay
& 0x3, sdd
->regs
+ S3C64XX_SPI_FB_CLK
);
897 list_for_each_entry(xfer
, &msg
->transfers
, transfer_list
) {
902 INIT_COMPLETION(sdd
->xfer_completion
);
904 /* Only BPW and Speed may change across transfers */
905 bpw
= xfer
->bits_per_word
;
906 speed
= xfer
->speed_hz
? : spi
->max_speed_hz
;
908 if (xfer
->len
% (bpw
/ 8)) {
910 "Xfer length(%u) not a multiple of word size(%u)\n",
916 if (bpw
!= sdd
->cur_bpw
|| speed
!= sdd
->cur_speed
) {
918 sdd
->cur_speed
= speed
;
919 s3c64xx_spi_config(sdd
);
922 /* Polling method for xfers not bigger than FIFO capacity */
924 if (!is_polling(sdd
) &&
925 (sdd
->rx_dma
.ch
&& sdd
->tx_dma
.ch
&&
926 (xfer
->len
> ((FIFO_LVL_MASK(sdd
) >> 1) + 1))))
929 spin_lock_irqsave(&sdd
->lock
, flags
);
931 /* Pending only which is to be done */
932 sdd
->state
&= ~RXBUSY
;
933 sdd
->state
&= ~TXBUSY
;
935 enable_datapath(sdd
, spi
, xfer
, use_dma
);
940 spin_unlock_irqrestore(&sdd
->lock
, flags
);
942 status
= wait_for_xfer(sdd
, xfer
, use_dma
);
945 dev_err(&spi
->dev
, "I/O Error: rx-%d tx-%d res:rx-%c tx-%c len-%d\n",
946 xfer
->rx_buf
? 1 : 0, xfer
->tx_buf
? 1 : 0,
947 (sdd
->state
& RXBUSY
) ? 'f' : 'p',
948 (sdd
->state
& TXBUSY
) ? 'f' : 'p',
952 if (xfer
->tx_buf
!= NULL
953 && (sdd
->state
& TXBUSY
))
954 s3c64xx_spi_dma_stop(sdd
, &sdd
->tx_dma
);
955 if (xfer
->rx_buf
!= NULL
956 && (sdd
->state
& RXBUSY
))
957 s3c64xx_spi_dma_stop(sdd
, &sdd
->rx_dma
);
963 if (xfer
->delay_usecs
)
964 udelay(xfer
->delay_usecs
);
966 if (xfer
->cs_change
) {
967 /* Hint that the next mssg is gonna be
968 for the same device */
969 if (list_is_last(&xfer
->transfer_list
,
974 msg
->actual_length
+= xfer
->len
;
980 if (!cs_toggle
|| status
)
981 disable_cs(sdd
, spi
);
985 s3c64xx_spi_unmap_mssg(sdd
, msg
);
987 msg
->status
= status
;
989 spi_finalize_current_message(master
);
994 static struct s3c64xx_spi_csinfo
*s3c64xx_get_slave_ctrldata(
995 struct spi_device
*spi
)
997 struct s3c64xx_spi_csinfo
*cs
;
998 struct device_node
*slave_np
, *data_np
= NULL
;
999 struct s3c64xx_spi_driver_data
*sdd
;
1002 sdd
= spi_master_get_devdata(spi
->master
);
1003 slave_np
= spi
->dev
.of_node
;
1005 dev_err(&spi
->dev
, "device node not found\n");
1006 return ERR_PTR(-EINVAL
);
1009 data_np
= of_get_child_by_name(slave_np
, "controller-data");
1011 dev_err(&spi
->dev
, "child node 'controller-data' not found\n");
1012 return ERR_PTR(-EINVAL
);
1015 cs
= kzalloc(sizeof(*cs
), GFP_KERNEL
);
1017 dev_err(&spi
->dev
, "could not allocate memory for controller data\n");
1018 of_node_put(data_np
);
1019 return ERR_PTR(-ENOMEM
);
1022 /* The CS line is asserted/deasserted by the gpio pin */
1024 cs
->line
= of_get_named_gpio(data_np
, "cs-gpio", 0);
1026 if (!gpio_is_valid(cs
->line
)) {
1027 dev_err(&spi
->dev
, "chip select gpio is not specified or invalid\n");
1029 of_node_put(data_np
);
1030 return ERR_PTR(-EINVAL
);
1033 of_property_read_u32(data_np
, "samsung,spi-feedback-delay", &fb_delay
);
1034 cs
->fb_delay
= fb_delay
;
1035 of_node_put(data_np
);
1040 * Here we only check the validity of requested configuration
1041 * and save the configuration in a local data-structure.
1042 * The controller is actually configured only just before we
1043 * get a message to transfer.
1045 static int s3c64xx_spi_setup(struct spi_device
*spi
)
1047 struct s3c64xx_spi_csinfo
*cs
= spi
->controller_data
;
1048 struct s3c64xx_spi_driver_data
*sdd
;
1049 struct s3c64xx_spi_info
*sci
;
1052 sdd
= spi_master_get_devdata(spi
->master
);
1053 if (!cs
&& spi
->dev
.of_node
) {
1054 cs
= s3c64xx_get_slave_ctrldata(spi
);
1055 spi
->controller_data
= cs
;
1058 if (IS_ERR_OR_NULL(cs
)) {
1059 dev_err(&spi
->dev
, "No CS for SPI(%d)\n", spi
->chip_select
);
1063 if (!spi_get_ctldata(spi
)) {
1064 /* Request gpio only if cs line is asserted by gpio pins */
1066 err
= gpio_request_one(cs
->line
, GPIOF_OUT_INIT_HIGH
,
1067 dev_name(&spi
->dev
));
1070 "Failed to get /CS gpio [%d]: %d\n",
1076 spi_set_ctldata(spi
, cs
);
1079 sci
= sdd
->cntrlr_info
;
1081 pm_runtime_get_sync(&sdd
->pdev
->dev
);
1083 /* Check if we can provide the requested rate */
1084 if (!sdd
->port_conf
->clk_from_cmu
) {
1088 speed
= clk_get_rate(sdd
->src_clk
) / 2 / (0 + 1);
1090 if (spi
->max_speed_hz
> speed
)
1091 spi
->max_speed_hz
= speed
;
1093 psr
= clk_get_rate(sdd
->src_clk
) / 2 / spi
->max_speed_hz
- 1;
1094 psr
&= S3C64XX_SPI_PSR_MASK
;
1095 if (psr
== S3C64XX_SPI_PSR_MASK
)
1098 speed
= clk_get_rate(sdd
->src_clk
) / 2 / (psr
+ 1);
1099 if (spi
->max_speed_hz
< speed
) {
1100 if (psr
+1 < S3C64XX_SPI_PSR_MASK
) {
1108 speed
= clk_get_rate(sdd
->src_clk
) / 2 / (psr
+ 1);
1109 if (spi
->max_speed_hz
>= speed
) {
1110 spi
->max_speed_hz
= speed
;
1112 dev_err(&spi
->dev
, "Can't set %dHz transfer speed\n",
1119 pm_runtime_put(&sdd
->pdev
->dev
);
1120 disable_cs(sdd
, spi
);
1124 /* setup() returns with device de-selected */
1125 disable_cs(sdd
, spi
);
1127 gpio_free(cs
->line
);
1128 spi_set_ctldata(spi
, NULL
);
1131 if (spi
->dev
.of_node
)
1137 static void s3c64xx_spi_cleanup(struct spi_device
*spi
)
1139 struct s3c64xx_spi_csinfo
*cs
= spi_get_ctldata(spi
);
1140 struct s3c64xx_spi_driver_data
*sdd
;
1142 sdd
= spi_master_get_devdata(spi
->master
);
1143 if (cs
&& sdd
->cs_gpio
) {
1144 gpio_free(cs
->line
);
1145 if (spi
->dev
.of_node
)
1148 spi_set_ctldata(spi
, NULL
);
1151 static irqreturn_t
s3c64xx_spi_irq(int irq
, void *data
)
1153 struct s3c64xx_spi_driver_data
*sdd
= data
;
1154 struct spi_master
*spi
= sdd
->master
;
1155 unsigned int val
, clr
= 0;
1157 val
= readl(sdd
->regs
+ S3C64XX_SPI_STATUS
);
1159 if (val
& S3C64XX_SPI_ST_RX_OVERRUN_ERR
) {
1160 clr
= S3C64XX_SPI_PND_RX_OVERRUN_CLR
;
1161 dev_err(&spi
->dev
, "RX overrun\n");
1163 if (val
& S3C64XX_SPI_ST_RX_UNDERRUN_ERR
) {
1164 clr
|= S3C64XX_SPI_PND_RX_UNDERRUN_CLR
;
1165 dev_err(&spi
->dev
, "RX underrun\n");
1167 if (val
& S3C64XX_SPI_ST_TX_OVERRUN_ERR
) {
1168 clr
|= S3C64XX_SPI_PND_TX_OVERRUN_CLR
;
1169 dev_err(&spi
->dev
, "TX overrun\n");
1171 if (val
& S3C64XX_SPI_ST_TX_UNDERRUN_ERR
) {
1172 clr
|= S3C64XX_SPI_PND_TX_UNDERRUN_CLR
;
1173 dev_err(&spi
->dev
, "TX underrun\n");
1176 /* Clear the pending irq by setting and then clearing it */
1177 writel(clr
, sdd
->regs
+ S3C64XX_SPI_PENDING_CLR
);
1178 writel(0, sdd
->regs
+ S3C64XX_SPI_PENDING_CLR
);
1183 static void s3c64xx_spi_hwinit(struct s3c64xx_spi_driver_data
*sdd
, int channel
)
1185 struct s3c64xx_spi_info
*sci
= sdd
->cntrlr_info
;
1186 void __iomem
*regs
= sdd
->regs
;
1191 writel(S3C64XX_SPI_SLAVE_SIG_INACT
, sdd
->regs
+ S3C64XX_SPI_SLAVE_SEL
);
1193 /* Disable Interrupts - we use Polling if not DMA mode */
1194 writel(0, regs
+ S3C64XX_SPI_INT_EN
);
1196 if (!sdd
->port_conf
->clk_from_cmu
)
1197 writel(sci
->src_clk_nr
<< S3C64XX_SPI_CLKSEL_SRCSHFT
,
1198 regs
+ S3C64XX_SPI_CLK_CFG
);
1199 writel(0, regs
+ S3C64XX_SPI_MODE_CFG
);
1200 writel(0, regs
+ S3C64XX_SPI_PACKET_CNT
);
1202 /* Clear any irq pending bits, should set and clear the bits */
1203 val
= S3C64XX_SPI_PND_RX_OVERRUN_CLR
|
1204 S3C64XX_SPI_PND_RX_UNDERRUN_CLR
|
1205 S3C64XX_SPI_PND_TX_OVERRUN_CLR
|
1206 S3C64XX_SPI_PND_TX_UNDERRUN_CLR
;
1207 writel(val
, regs
+ S3C64XX_SPI_PENDING_CLR
);
1208 writel(0, regs
+ S3C64XX_SPI_PENDING_CLR
);
1210 writel(0, regs
+ S3C64XX_SPI_SWAP_CFG
);
1212 val
= readl(regs
+ S3C64XX_SPI_MODE_CFG
);
1213 val
&= ~S3C64XX_SPI_MODE_4BURST
;
1214 val
&= ~(S3C64XX_SPI_MAX_TRAILCNT
<< S3C64XX_SPI_TRAILCNT_OFF
);
1215 val
|= (S3C64XX_SPI_TRAILCNT
<< S3C64XX_SPI_TRAILCNT_OFF
);
1216 writel(val
, regs
+ S3C64XX_SPI_MODE_CFG
);
1222 static struct s3c64xx_spi_info
*s3c64xx_spi_parse_dt(struct device
*dev
)
1224 struct s3c64xx_spi_info
*sci
;
1227 sci
= devm_kzalloc(dev
, sizeof(*sci
), GFP_KERNEL
);
1229 dev_err(dev
, "memory allocation for spi_info failed\n");
1230 return ERR_PTR(-ENOMEM
);
1233 if (of_property_read_u32(dev
->of_node
, "samsung,spi-src-clk", &temp
)) {
1234 dev_warn(dev
, "spi bus clock parent not specified, using clock at index 0 as parent\n");
1235 sci
->src_clk_nr
= 0;
1237 sci
->src_clk_nr
= temp
;
1240 if (of_property_read_u32(dev
->of_node
, "num-cs", &temp
)) {
1241 dev_warn(dev
, "number of chip select lines not specified, assuming 1 chip select line\n");
1250 static struct s3c64xx_spi_info
*s3c64xx_spi_parse_dt(struct device
*dev
)
1252 return dev_get_platdata(dev
);
1256 static const struct of_device_id s3c64xx_spi_dt_match
[];
1258 static inline struct s3c64xx_spi_port_config
*s3c64xx_spi_get_port_config(
1259 struct platform_device
*pdev
)
1262 if (pdev
->dev
.of_node
) {
1263 const struct of_device_id
*match
;
1264 match
= of_match_node(s3c64xx_spi_dt_match
, pdev
->dev
.of_node
);
1265 return (struct s3c64xx_spi_port_config
*)match
->data
;
1268 return (struct s3c64xx_spi_port_config
*)
1269 platform_get_device_id(pdev
)->driver_data
;
1272 static int s3c64xx_spi_probe(struct platform_device
*pdev
)
1274 struct resource
*mem_res
;
1275 struct resource
*res
;
1276 struct s3c64xx_spi_driver_data
*sdd
;
1277 struct s3c64xx_spi_info
*sci
= dev_get_platdata(&pdev
->dev
);
1278 struct spi_master
*master
;
1282 if (!sci
&& pdev
->dev
.of_node
) {
1283 sci
= s3c64xx_spi_parse_dt(&pdev
->dev
);
1285 return PTR_ERR(sci
);
1289 dev_err(&pdev
->dev
, "platform_data missing!\n");
1293 mem_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1294 if (mem_res
== NULL
) {
1295 dev_err(&pdev
->dev
, "Unable to get SPI MEM resource\n");
1299 irq
= platform_get_irq(pdev
, 0);
1301 dev_warn(&pdev
->dev
, "Failed to get IRQ: %d\n", irq
);
1305 master
= spi_alloc_master(&pdev
->dev
,
1306 sizeof(struct s3c64xx_spi_driver_data
));
1307 if (master
== NULL
) {
1308 dev_err(&pdev
->dev
, "Unable to allocate SPI Master\n");
1312 platform_set_drvdata(pdev
, master
);
1314 sdd
= spi_master_get_devdata(master
);
1315 sdd
->port_conf
= s3c64xx_spi_get_port_config(pdev
);
1316 sdd
->master
= master
;
1317 sdd
->cntrlr_info
= sci
;
1319 sdd
->sfr_start
= mem_res
->start
;
1320 sdd
->cs_gpio
= true;
1321 if (pdev
->dev
.of_node
) {
1322 if (!of_find_property(pdev
->dev
.of_node
, "cs-gpio", NULL
))
1323 sdd
->cs_gpio
= false;
1325 ret
= of_alias_get_id(pdev
->dev
.of_node
, "spi");
1327 dev_err(&pdev
->dev
, "failed to get alias id, errno %d\n",
1333 sdd
->port_id
= pdev
->id
;
1338 if (!sdd
->pdev
->dev
.of_node
) {
1339 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
1341 dev_warn(&pdev
->dev
, "Unable to get SPI tx dma resource. Switching to poll mode\n");
1342 sdd
->port_conf
->quirks
= S3C64XX_SPI_QUIRK_POLL
;
1344 sdd
->tx_dma
.dmach
= res
->start
;
1346 res
= platform_get_resource(pdev
, IORESOURCE_DMA
, 1);
1348 dev_warn(&pdev
->dev
, "Unable to get SPI rx dma resource. Switching to poll mode\n");
1349 sdd
->port_conf
->quirks
= S3C64XX_SPI_QUIRK_POLL
;
1351 sdd
->rx_dma
.dmach
= res
->start
;
1354 sdd
->tx_dma
.direction
= DMA_MEM_TO_DEV
;
1355 sdd
->rx_dma
.direction
= DMA_DEV_TO_MEM
;
1357 master
->dev
.of_node
= pdev
->dev
.of_node
;
1358 master
->bus_num
= sdd
->port_id
;
1359 master
->setup
= s3c64xx_spi_setup
;
1360 master
->cleanup
= s3c64xx_spi_cleanup
;
1361 master
->prepare_transfer_hardware
= s3c64xx_spi_prepare_transfer
;
1362 master
->transfer_one_message
= s3c64xx_spi_transfer_one_message
;
1363 master
->unprepare_transfer_hardware
= s3c64xx_spi_unprepare_transfer
;
1364 master
->num_chipselect
= sci
->num_cs
;
1365 master
->dma_alignment
= 8;
1366 master
->bits_per_word_mask
= SPI_BPW_MASK(32) | SPI_BPW_MASK(16) |
1368 /* the spi->mode bits understood by this driver: */
1369 master
->mode_bits
= SPI_CPOL
| SPI_CPHA
| SPI_CS_HIGH
;
1370 master
->auto_runtime_pm
= true;
1372 sdd
->regs
= devm_ioremap_resource(&pdev
->dev
, mem_res
);
1373 if (IS_ERR(sdd
->regs
)) {
1374 ret
= PTR_ERR(sdd
->regs
);
1378 if (sci
->cfg_gpio
&& sci
->cfg_gpio()) {
1379 dev_err(&pdev
->dev
, "Unable to config gpio\n");
1385 sdd
->clk
= devm_clk_get(&pdev
->dev
, "spi");
1386 if (IS_ERR(sdd
->clk
)) {
1387 dev_err(&pdev
->dev
, "Unable to acquire clock 'spi'\n");
1388 ret
= PTR_ERR(sdd
->clk
);
1392 if (clk_prepare_enable(sdd
->clk
)) {
1393 dev_err(&pdev
->dev
, "Couldn't enable clock 'spi'\n");
1398 sprintf(clk_name
, "spi_busclk%d", sci
->src_clk_nr
);
1399 sdd
->src_clk
= devm_clk_get(&pdev
->dev
, clk_name
);
1400 if (IS_ERR(sdd
->src_clk
)) {
1402 "Unable to acquire clock '%s'\n", clk_name
);
1403 ret
= PTR_ERR(sdd
->src_clk
);
1407 if (clk_prepare_enable(sdd
->src_clk
)) {
1408 dev_err(&pdev
->dev
, "Couldn't enable clock '%s'\n", clk_name
);
1413 /* Setup Deufult Mode */
1414 s3c64xx_spi_hwinit(sdd
, sdd
->port_id
);
1416 spin_lock_init(&sdd
->lock
);
1417 init_completion(&sdd
->xfer_completion
);
1419 ret
= devm_request_irq(&pdev
->dev
, irq
, s3c64xx_spi_irq
, 0,
1420 "spi-s3c64xx", sdd
);
1422 dev_err(&pdev
->dev
, "Failed to request IRQ %d: %d\n",
1427 writel(S3C64XX_SPI_INT_RX_OVERRUN_EN
| S3C64XX_SPI_INT_RX_UNDERRUN_EN
|
1428 S3C64XX_SPI_INT_TX_OVERRUN_EN
| S3C64XX_SPI_INT_TX_UNDERRUN_EN
,
1429 sdd
->regs
+ S3C64XX_SPI_INT_EN
);
1431 pm_runtime_enable(&pdev
->dev
);
1433 if (spi_register_master(master
)) {
1434 dev_err(&pdev
->dev
, "cannot register SPI master\n");
1439 dev_dbg(&pdev
->dev
, "Samsung SoC SPI Driver loaded for Bus SPI-%d with %d Slaves attached\n",
1440 sdd
->port_id
, master
->num_chipselect
);
1441 dev_dbg(&pdev
->dev
, "\tIOmem=[%pR]\tDMA=[Rx-%d, Tx-%d]\n",
1443 sdd
->rx_dma
.dmach
, sdd
->tx_dma
.dmach
);
1448 clk_disable_unprepare(sdd
->src_clk
);
1450 clk_disable_unprepare(sdd
->clk
);
1452 spi_master_put(master
);
1457 static int s3c64xx_spi_remove(struct platform_device
*pdev
)
1459 struct spi_master
*master
= spi_master_get(platform_get_drvdata(pdev
));
1460 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
1462 pm_runtime_disable(&pdev
->dev
);
1464 spi_unregister_master(master
);
1466 writel(0, sdd
->regs
+ S3C64XX_SPI_INT_EN
);
1468 clk_disable_unprepare(sdd
->src_clk
);
1470 clk_disable_unprepare(sdd
->clk
);
1472 spi_master_put(master
);
1477 #ifdef CONFIG_PM_SLEEP
1478 static int s3c64xx_spi_suspend(struct device
*dev
)
1480 struct spi_master
*master
= dev_get_drvdata(dev
);
1481 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
1483 spi_master_suspend(master
);
1485 /* Disable the clock */
1486 clk_disable_unprepare(sdd
->src_clk
);
1487 clk_disable_unprepare(sdd
->clk
);
1489 sdd
->cur_speed
= 0; /* Output Clock is stopped */
1494 static int s3c64xx_spi_resume(struct device
*dev
)
1496 struct spi_master
*master
= dev_get_drvdata(dev
);
1497 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
1498 struct s3c64xx_spi_info
*sci
= sdd
->cntrlr_info
;
1503 /* Enable the clock */
1504 clk_prepare_enable(sdd
->src_clk
);
1505 clk_prepare_enable(sdd
->clk
);
1507 s3c64xx_spi_hwinit(sdd
, sdd
->port_id
);
1509 spi_master_resume(master
);
1513 #endif /* CONFIG_PM_SLEEP */
1515 #ifdef CONFIG_PM_RUNTIME
1516 static int s3c64xx_spi_runtime_suspend(struct device
*dev
)
1518 struct spi_master
*master
= dev_get_drvdata(dev
);
1519 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
1521 clk_disable_unprepare(sdd
->clk
);
1522 clk_disable_unprepare(sdd
->src_clk
);
1527 static int s3c64xx_spi_runtime_resume(struct device
*dev
)
1529 struct spi_master
*master
= dev_get_drvdata(dev
);
1530 struct s3c64xx_spi_driver_data
*sdd
= spi_master_get_devdata(master
);
1532 clk_prepare_enable(sdd
->src_clk
);
1533 clk_prepare_enable(sdd
->clk
);
1537 #endif /* CONFIG_PM_RUNTIME */
1539 static const struct dev_pm_ops s3c64xx_spi_pm
= {
1540 SET_SYSTEM_SLEEP_PM_OPS(s3c64xx_spi_suspend
, s3c64xx_spi_resume
)
1541 SET_RUNTIME_PM_OPS(s3c64xx_spi_runtime_suspend
,
1542 s3c64xx_spi_runtime_resume
, NULL
)
1545 static struct s3c64xx_spi_port_config s3c2443_spi_port_config
= {
1546 .fifo_lvl_mask
= { 0x7f },
1547 .rx_lvl_offset
= 13,
1552 static struct s3c64xx_spi_port_config s3c6410_spi_port_config
= {
1553 .fifo_lvl_mask
= { 0x7f, 0x7F },
1554 .rx_lvl_offset
= 13,
1558 static struct s3c64xx_spi_port_config s5p64x0_spi_port_config
= {
1559 .fifo_lvl_mask
= { 0x1ff, 0x7F },
1560 .rx_lvl_offset
= 15,
1564 static struct s3c64xx_spi_port_config s5pc100_spi_port_config
= {
1565 .fifo_lvl_mask
= { 0x7f, 0x7F },
1566 .rx_lvl_offset
= 13,
1571 static struct s3c64xx_spi_port_config s5pv210_spi_port_config
= {
1572 .fifo_lvl_mask
= { 0x1ff, 0x7F },
1573 .rx_lvl_offset
= 15,
1578 static struct s3c64xx_spi_port_config exynos4_spi_port_config
= {
1579 .fifo_lvl_mask
= { 0x1ff, 0x7F, 0x7F },
1580 .rx_lvl_offset
= 15,
1583 .clk_from_cmu
= true,
1586 static struct s3c64xx_spi_port_config exynos5440_spi_port_config
= {
1587 .fifo_lvl_mask
= { 0x1ff },
1588 .rx_lvl_offset
= 15,
1591 .clk_from_cmu
= true,
1592 .quirks
= S3C64XX_SPI_QUIRK_POLL
,
1595 static struct platform_device_id s3c64xx_spi_driver_ids
[] = {
1597 .name
= "s3c2443-spi",
1598 .driver_data
= (kernel_ulong_t
)&s3c2443_spi_port_config
,
1600 .name
= "s3c6410-spi",
1601 .driver_data
= (kernel_ulong_t
)&s3c6410_spi_port_config
,
1603 .name
= "s5p64x0-spi",
1604 .driver_data
= (kernel_ulong_t
)&s5p64x0_spi_port_config
,
1606 .name
= "s5pc100-spi",
1607 .driver_data
= (kernel_ulong_t
)&s5pc100_spi_port_config
,
1609 .name
= "s5pv210-spi",
1610 .driver_data
= (kernel_ulong_t
)&s5pv210_spi_port_config
,
1612 .name
= "exynos4210-spi",
1613 .driver_data
= (kernel_ulong_t
)&exynos4_spi_port_config
,
1618 static const struct of_device_id s3c64xx_spi_dt_match
[] = {
1619 { .compatible
= "samsung,exynos4210-spi",
1620 .data
= (void *)&exynos4_spi_port_config
,
1622 { .compatible
= "samsung,exynos5440-spi",
1623 .data
= (void *)&exynos5440_spi_port_config
,
1627 MODULE_DEVICE_TABLE(of
, s3c64xx_spi_dt_match
);
1629 static struct platform_driver s3c64xx_spi_driver
= {
1631 .name
= "s3c64xx-spi",
1632 .owner
= THIS_MODULE
,
1633 .pm
= &s3c64xx_spi_pm
,
1634 .of_match_table
= of_match_ptr(s3c64xx_spi_dt_match
),
1636 .remove
= s3c64xx_spi_remove
,
1637 .id_table
= s3c64xx_spi_driver_ids
,
1639 MODULE_ALIAS("platform:s3c64xx-spi");
1641 static int __init
s3c64xx_spi_init(void)
1643 return platform_driver_probe(&s3c64xx_spi_driver
, s3c64xx_spi_probe
);
1645 subsys_initcall(s3c64xx_spi_init
);
1647 static void __exit
s3c64xx_spi_exit(void)
1649 platform_driver_unregister(&s3c64xx_spi_driver
);
1651 module_exit(s3c64xx_spi_exit
);
1653 MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>");
1654 MODULE_DESCRIPTION("S3C64XX SPI Controller Driver");
1655 MODULE_LICENSE("GPL");