1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/io.h>
20#include <linux/clk.h>
21#include <linux/err.h>
22#include <linux/delay.h>
23#include <linux/device.h>
24#include <linux/dmaengine.h>
25#include <linux/bitops.h>
26#include <linux/interrupt.h>
27#include <linux/module.h>
28#include <linux/platform_device.h>
29#include <linux/sched.h>
30#include <linux/scatterlist.h>
31#include <linux/spi/spi.h>
32
33#include <linux/platform_data/dma-ep93xx.h>
34#include <linux/platform_data/spi-ep93xx.h>
35
36#define SSPCR0 0x0000
37#define SSPCR0_MODE_SHIFT 6
38#define SSPCR0_SCR_SHIFT 8
39
40#define SSPCR1 0x0004
41#define SSPCR1_RIE BIT(0)
42#define SSPCR1_TIE BIT(1)
43#define SSPCR1_RORIE BIT(2)
44#define SSPCR1_LBM BIT(3)
45#define SSPCR1_SSE BIT(4)
46#define SSPCR1_MS BIT(5)
47#define SSPCR1_SOD BIT(6)
48
49#define SSPDR 0x0008
50
51#define SSPSR 0x000c
52#define SSPSR_TFE BIT(0)
53#define SSPSR_TNF BIT(1)
54#define SSPSR_RNE BIT(2)
55#define SSPSR_RFF BIT(3)
56#define SSPSR_BSY BIT(4)
57#define SSPCPSR 0x0010
58
59#define SSPIIR 0x0014
60#define SSPIIR_RIS BIT(0)
61#define SSPIIR_TIS BIT(1)
62#define SSPIIR_RORIS BIT(2)
63#define SSPICR SSPIIR
64
65
66#define SPI_TIMEOUT 5
67
68#define SPI_FIFO_SIZE 8
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91struct ep93xx_spi {
92 const struct platform_device *pdev;
93 struct clk *clk;
94 void __iomem *regs_base;
95 unsigned long sspdr_phys;
96 struct completion wait;
97 struct spi_message *current_msg;
98 size_t tx;
99 size_t rx;
100 size_t fifo_level;
101 struct dma_chan *dma_rx;
102 struct dma_chan *dma_tx;
103 struct ep93xx_dma_data dma_rx_data;
104 struct ep93xx_dma_data dma_tx_data;
105 struct sg_table rx_sgt;
106 struct sg_table tx_sgt;
107 void *zeropage;
108};
109
110
111
112
113
114
115struct ep93xx_spi_chip {
116 const struct spi_device *spi;
117 struct ep93xx_spi_chip_ops *ops;
118};
119
120
121#define bits_per_word_to_dss(bpw) ((bpw) - 1)
122
123static void ep93xx_spi_write_u8(const struct ep93xx_spi *espi,
124 u16 reg, u8 value)
125{
126 writeb(value, espi->regs_base + reg);
127}
128
129static u8 ep93xx_spi_read_u8(const struct ep93xx_spi *spi, u16 reg)
130{
131 return readb(spi->regs_base + reg);
132}
133
134static void ep93xx_spi_write_u16(const struct ep93xx_spi *espi,
135 u16 reg, u16 value)
136{
137 writew(value, espi->regs_base + reg);
138}
139
140static u16 ep93xx_spi_read_u16(const struct ep93xx_spi *spi, u16 reg)
141{
142 return readw(spi->regs_base + reg);
143}
144
145static int ep93xx_spi_enable(const struct ep93xx_spi *espi)
146{
147 u8 regval;
148 int err;
149
150 err = clk_enable(espi->clk);
151 if (err)
152 return err;
153
154 regval = ep93xx_spi_read_u8(espi, SSPCR1);
155 regval |= SSPCR1_SSE;
156 ep93xx_spi_write_u8(espi, SSPCR1, regval);
157
158 return 0;
159}
160
161static void ep93xx_spi_disable(const struct ep93xx_spi *espi)
162{
163 u8 regval;
164
165 regval = ep93xx_spi_read_u8(espi, SSPCR1);
166 regval &= ~SSPCR1_SSE;
167 ep93xx_spi_write_u8(espi, SSPCR1, regval);
168
169 clk_disable(espi->clk);
170}
171
172static void ep93xx_spi_enable_interrupts(const struct ep93xx_spi *espi)
173{
174 u8 regval;
175
176 regval = ep93xx_spi_read_u8(espi, SSPCR1);
177 regval |= (SSPCR1_RORIE | SSPCR1_TIE | SSPCR1_RIE);
178 ep93xx_spi_write_u8(espi, SSPCR1, regval);
179}
180
181static void ep93xx_spi_disable_interrupts(const struct ep93xx_spi *espi)
182{
183 u8 regval;
184
185 regval = ep93xx_spi_read_u8(espi, SSPCR1);
186 regval &= ~(SSPCR1_RORIE | SSPCR1_TIE | SSPCR1_RIE);
187 ep93xx_spi_write_u8(espi, SSPCR1, regval);
188}
189
190
191
192
193
194
195
196
197static int ep93xx_spi_calc_divisors(const struct ep93xx_spi *espi,
198 u32 rate, u8 *div_cpsr, u8 *div_scr)
199{
200 struct spi_master *master = platform_get_drvdata(espi->pdev);
201 unsigned long spi_clk_rate = clk_get_rate(espi->clk);
202 int cpsr, scr;
203
204
205
206
207
208
209 rate = clamp(rate, master->min_speed_hz, master->max_speed_hz);
210
211
212
213
214
215
216
217
218
219 for (cpsr = 2; cpsr <= 254; cpsr += 2) {
220 for (scr = 0; scr <= 255; scr++) {
221 if ((spi_clk_rate / (cpsr * (scr + 1))) <= rate) {
222 *div_scr = (u8)scr;
223 *div_cpsr = (u8)cpsr;
224 return 0;
225 }
226 }
227 }
228
229 return -EINVAL;
230}
231
232static void ep93xx_spi_cs_control(struct spi_device *spi, bool control)
233{
234 struct ep93xx_spi_chip *chip = spi_get_ctldata(spi);
235 int value = (spi->mode & SPI_CS_HIGH) ? control : !control;
236
237 if (chip->ops && chip->ops->cs_control)
238 chip->ops->cs_control(spi, value);
239}
240
241
242
243
244
245
246
247
248
249
250static int ep93xx_spi_setup(struct spi_device *spi)
251{
252 struct ep93xx_spi *espi = spi_master_get_devdata(spi->master);
253 struct ep93xx_spi_chip *chip;
254
255 chip = spi_get_ctldata(spi);
256 if (!chip) {
257 dev_dbg(&espi->pdev->dev, "initial setup for %s\n",
258 spi->modalias);
259
260 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
261 if (!chip)
262 return -ENOMEM;
263
264 chip->spi = spi;
265 chip->ops = spi->controller_data;
266
267 if (chip->ops && chip->ops->setup) {
268 int ret = chip->ops->setup(spi);
269
270 if (ret) {
271 kfree(chip);
272 return ret;
273 }
274 }
275
276 spi_set_ctldata(spi, chip);
277 }
278
279 ep93xx_spi_cs_control(spi, false);
280 return 0;
281}
282
283
284
285
286
287
288
289
290static void ep93xx_spi_cleanup(struct spi_device *spi)
291{
292 struct ep93xx_spi_chip *chip;
293
294 chip = spi_get_ctldata(spi);
295 if (chip) {
296 if (chip->ops && chip->ops->cleanup)
297 chip->ops->cleanup(spi);
298 spi_set_ctldata(spi, NULL);
299 kfree(chip);
300 }
301}
302
303
304
305
306
307
308
309
310static int ep93xx_spi_chip_setup(const struct ep93xx_spi *espi,
311 const struct ep93xx_spi_chip *chip,
312 u32 speed_hz, u8 bits_per_word)
313{
314 u8 dss = bits_per_word_to_dss(bits_per_word);
315 u8 div_cpsr = 0;
316 u8 div_scr = 0;
317 u16 cr0;
318 int err;
319
320 err = ep93xx_spi_calc_divisors(espi, speed_hz, &div_cpsr, &div_scr);
321 if (err)
322 return err;
323
324 cr0 = div_scr << SSPCR0_SCR_SHIFT;
325 cr0 |= (chip->spi->mode & (SPI_CPHA|SPI_CPOL)) << SSPCR0_MODE_SHIFT;
326 cr0 |= dss;
327
328 dev_dbg(&espi->pdev->dev, "setup: mode %d, cpsr %d, scr %d, dss %d\n",
329 chip->spi->mode, div_cpsr, div_scr, dss);
330 dev_dbg(&espi->pdev->dev, "setup: cr0 %#x\n", cr0);
331
332 ep93xx_spi_write_u8(espi, SSPCPSR, div_cpsr);
333 ep93xx_spi_write_u16(espi, SSPCR0, cr0);
334
335 return 0;
336}
337
338static void ep93xx_do_write(struct ep93xx_spi *espi, struct spi_transfer *t)
339{
340 if (t->bits_per_word > 8) {
341 u16 tx_val = 0;
342
343 if (t->tx_buf)
344 tx_val = ((u16 *)t->tx_buf)[espi->tx];
345 ep93xx_spi_write_u16(espi, SSPDR, tx_val);
346 espi->tx += sizeof(tx_val);
347 } else {
348 u8 tx_val = 0;
349
350 if (t->tx_buf)
351 tx_val = ((u8 *)t->tx_buf)[espi->tx];
352 ep93xx_spi_write_u8(espi, SSPDR, tx_val);
353 espi->tx += sizeof(tx_val);
354 }
355}
356
357static void ep93xx_do_read(struct ep93xx_spi *espi, struct spi_transfer *t)
358{
359 if (t->bits_per_word > 8) {
360 u16 rx_val;
361
362 rx_val = ep93xx_spi_read_u16(espi, SSPDR);
363 if (t->rx_buf)
364 ((u16 *)t->rx_buf)[espi->rx] = rx_val;
365 espi->rx += sizeof(rx_val);
366 } else {
367 u8 rx_val;
368
369 rx_val = ep93xx_spi_read_u8(espi, SSPDR);
370 if (t->rx_buf)
371 ((u8 *)t->rx_buf)[espi->rx] = rx_val;
372 espi->rx += sizeof(rx_val);
373 }
374}
375
376
377
378
379
380
381
382
383
384
385
386
387static int ep93xx_spi_read_write(struct ep93xx_spi *espi)
388{
389 struct spi_message *msg = espi->current_msg;
390 struct spi_transfer *t = msg->state;
391
392
393 while ((ep93xx_spi_read_u8(espi, SSPSR) & SSPSR_RNE)) {
394 ep93xx_do_read(espi, t);
395 espi->fifo_level--;
396 }
397
398
399 while (espi->fifo_level < SPI_FIFO_SIZE && espi->tx < t->len) {
400 ep93xx_do_write(espi, t);
401 espi->fifo_level++;
402 }
403
404 if (espi->rx == t->len)
405 return 0;
406
407 return -EINPROGRESS;
408}
409
410static void ep93xx_spi_pio_transfer(struct ep93xx_spi *espi)
411{
412
413
414
415
416 if (ep93xx_spi_read_write(espi)) {
417 ep93xx_spi_enable_interrupts(espi);
418 wait_for_completion(&espi->wait);
419 }
420}
421
422
423
424
425
426
427
428
429
430
431static struct dma_async_tx_descriptor *
432ep93xx_spi_dma_prepare(struct ep93xx_spi *espi, enum dma_transfer_direction dir)
433{
434 struct spi_transfer *t = espi->current_msg->state;
435 struct dma_async_tx_descriptor *txd;
436 enum dma_slave_buswidth buswidth;
437 struct dma_slave_config conf;
438 struct scatterlist *sg;
439 struct sg_table *sgt;
440 struct dma_chan *chan;
441 const void *buf, *pbuf;
442 size_t len = t->len;
443 int i, ret, nents;
444
445 if (t->bits_per_word > 8)
446 buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
447 else
448 buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
449
450 memset(&conf, 0, sizeof(conf));
451 conf.direction = dir;
452
453 if (dir == DMA_DEV_TO_MEM) {
454 chan = espi->dma_rx;
455 buf = t->rx_buf;
456 sgt = &espi->rx_sgt;
457
458 conf.src_addr = espi->sspdr_phys;
459 conf.src_addr_width = buswidth;
460 } else {
461 chan = espi->dma_tx;
462 buf = t->tx_buf;
463 sgt = &espi->tx_sgt;
464
465 conf.dst_addr = espi->sspdr_phys;
466 conf.dst_addr_width = buswidth;
467 }
468
469 ret = dmaengine_slave_config(chan, &conf);
470 if (ret)
471 return ERR_PTR(ret);
472
473
474
475
476
477
478
479
480
481
482
483 nents = DIV_ROUND_UP(len, PAGE_SIZE);
484 if (nents != sgt->nents) {
485 sg_free_table(sgt);
486
487 ret = sg_alloc_table(sgt, nents, GFP_KERNEL);
488 if (ret)
489 return ERR_PTR(ret);
490 }
491
492 pbuf = buf;
493 for_each_sg(sgt->sgl, sg, sgt->nents, i) {
494 size_t bytes = min_t(size_t, len, PAGE_SIZE);
495
496 if (buf) {
497 sg_set_page(sg, virt_to_page(pbuf), bytes,
498 offset_in_page(pbuf));
499 } else {
500 sg_set_page(sg, virt_to_page(espi->zeropage),
501 bytes, 0);
502 }
503
504 pbuf += bytes;
505 len -= bytes;
506 }
507
508 if (WARN_ON(len)) {
509 dev_warn(&espi->pdev->dev, "len = %zu expected 0!\n", len);
510 return ERR_PTR(-EINVAL);
511 }
512
513 nents = dma_map_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
514 if (!nents)
515 return ERR_PTR(-ENOMEM);
516
517 txd = dmaengine_prep_slave_sg(chan, sgt->sgl, nents, dir, DMA_CTRL_ACK);
518 if (!txd) {
519 dma_unmap_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
520 return ERR_PTR(-ENOMEM);
521 }
522 return txd;
523}
524
525
526
527
528
529
530
531
532
533static void ep93xx_spi_dma_finish(struct ep93xx_spi *espi,
534 enum dma_transfer_direction dir)
535{
536 struct dma_chan *chan;
537 struct sg_table *sgt;
538
539 if (dir == DMA_DEV_TO_MEM) {
540 chan = espi->dma_rx;
541 sgt = &espi->rx_sgt;
542 } else {
543 chan = espi->dma_tx;
544 sgt = &espi->tx_sgt;
545 }
546
547 dma_unmap_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
548}
549
550static void ep93xx_spi_dma_callback(void *callback_param)
551{
552 complete(callback_param);
553}
554
555static void ep93xx_spi_dma_transfer(struct ep93xx_spi *espi)
556{
557 struct spi_message *msg = espi->current_msg;
558 struct dma_async_tx_descriptor *rxd, *txd;
559
560 rxd = ep93xx_spi_dma_prepare(espi, DMA_DEV_TO_MEM);
561 if (IS_ERR(rxd)) {
562 dev_err(&espi->pdev->dev, "DMA RX failed: %ld\n", PTR_ERR(rxd));
563 msg->status = PTR_ERR(rxd);
564 return;
565 }
566
567 txd = ep93xx_spi_dma_prepare(espi, DMA_MEM_TO_DEV);
568 if (IS_ERR(txd)) {
569 ep93xx_spi_dma_finish(espi, DMA_DEV_TO_MEM);
570 dev_err(&espi->pdev->dev, "DMA TX failed: %ld\n", PTR_ERR(txd));
571 msg->status = PTR_ERR(txd);
572 return;
573 }
574
575
576 rxd->callback = ep93xx_spi_dma_callback;
577 rxd->callback_param = &espi->wait;
578
579
580 dmaengine_submit(rxd);
581 dmaengine_submit(txd);
582
583 dma_async_issue_pending(espi->dma_rx);
584 dma_async_issue_pending(espi->dma_tx);
585
586 wait_for_completion(&espi->wait);
587
588 ep93xx_spi_dma_finish(espi, DMA_MEM_TO_DEV);
589 ep93xx_spi_dma_finish(espi, DMA_DEV_TO_MEM);
590}
591
592
593
594
595
596
597
598
599
600
601
602static void ep93xx_spi_process_transfer(struct ep93xx_spi *espi,
603 struct spi_message *msg,
604 struct spi_transfer *t)
605{
606 struct ep93xx_spi_chip *chip = spi_get_ctldata(msg->spi);
607 int err;
608
609 msg->state = t;
610
611 err = ep93xx_spi_chip_setup(espi, chip, t->speed_hz, t->bits_per_word);
612 if (err) {
613 dev_err(&espi->pdev->dev,
614 "failed to setup chip for transfer\n");
615 msg->status = err;
616 return;
617 }
618
619 espi->rx = 0;
620 espi->tx = 0;
621
622
623
624
625
626
627 if (espi->dma_rx && t->len > SPI_FIFO_SIZE)
628 ep93xx_spi_dma_transfer(espi);
629 else
630 ep93xx_spi_pio_transfer(espi);
631
632
633
634
635
636 if (msg->status)
637 return;
638
639 msg->actual_length += t->len;
640
641
642
643
644
645 if (t->delay_usecs) {
646 set_current_state(TASK_UNINTERRUPTIBLE);
647 schedule_timeout(usecs_to_jiffies(t->delay_usecs));
648 }
649 if (t->cs_change) {
650 if (!list_is_last(&t->transfer_list, &msg->transfers)) {
651
652
653
654
655
656 ep93xx_spi_cs_control(msg->spi, false);
657 cond_resched();
658 ep93xx_spi_cs_control(msg->spi, true);
659 }
660 }
661}
662
663
664
665
666
667
668
669
670
671
672
673
674
675static void ep93xx_spi_process_message(struct ep93xx_spi *espi,
676 struct spi_message *msg)
677{
678 unsigned long timeout;
679 struct spi_transfer *t;
680 int err;
681
682
683
684
685 err = ep93xx_spi_enable(espi);
686 if (err) {
687 dev_err(&espi->pdev->dev, "failed to enable SPI controller\n");
688 msg->status = err;
689 return;
690 }
691
692
693
694
695 timeout = jiffies + msecs_to_jiffies(SPI_TIMEOUT);
696 while (ep93xx_spi_read_u16(espi, SSPSR) & SSPSR_RNE) {
697 if (time_after(jiffies, timeout)) {
698 dev_warn(&espi->pdev->dev,
699 "timeout while flushing RX FIFO\n");
700 msg->status = -ETIMEDOUT;
701 return;
702 }
703 ep93xx_spi_read_u16(espi, SSPDR);
704 }
705
706
707
708
709
710 espi->fifo_level = 0;
711
712
713
714
715 ep93xx_spi_cs_control(msg->spi, true);
716
717 list_for_each_entry(t, &msg->transfers, transfer_list) {
718 ep93xx_spi_process_transfer(espi, msg, t);
719 if (msg->status)
720 break;
721 }
722
723
724
725
726
727 ep93xx_spi_cs_control(msg->spi, false);
728 ep93xx_spi_disable(espi);
729}
730
731static int ep93xx_spi_transfer_one_message(struct spi_master *master,
732 struct spi_message *msg)
733{
734 struct ep93xx_spi *espi = spi_master_get_devdata(master);
735
736 msg->state = NULL;
737 msg->status = 0;
738 msg->actual_length = 0;
739
740 espi->current_msg = msg;
741 ep93xx_spi_process_message(espi, msg);
742 espi->current_msg = NULL;
743
744 spi_finalize_current_message(master);
745
746 return 0;
747}
748
749static irqreturn_t ep93xx_spi_interrupt(int irq, void *dev_id)
750{
751 struct ep93xx_spi *espi = dev_id;
752 u8 irq_status = ep93xx_spi_read_u8(espi, SSPIIR);
753
754
755
756
757
758 if (unlikely(irq_status & SSPIIR_RORIS)) {
759
760 ep93xx_spi_write_u8(espi, SSPICR, 0);
761 dev_warn(&espi->pdev->dev,
762 "receive overrun, aborting the message\n");
763 espi->current_msg->status = -EIO;
764 } else {
765
766
767
768
769 if (ep93xx_spi_read_write(espi)) {
770
771
772
773
774
775 return IRQ_HANDLED;
776 }
777 }
778
779
780
781
782
783
784 ep93xx_spi_disable_interrupts(espi);
785 complete(&espi->wait);
786 return IRQ_HANDLED;
787}
788
789static bool ep93xx_spi_dma_filter(struct dma_chan *chan, void *filter_param)
790{
791 if (ep93xx_dma_chan_is_m2p(chan))
792 return false;
793
794 chan->private = filter_param;
795 return true;
796}
797
798static int ep93xx_spi_setup_dma(struct ep93xx_spi *espi)
799{
800 dma_cap_mask_t mask;
801 int ret;
802
803 espi->zeropage = (void *)get_zeroed_page(GFP_KERNEL);
804 if (!espi->zeropage)
805 return -ENOMEM;
806
807 dma_cap_zero(mask);
808 dma_cap_set(DMA_SLAVE, mask);
809
810 espi->dma_rx_data.port = EP93XX_DMA_SSP;
811 espi->dma_rx_data.direction = DMA_DEV_TO_MEM;
812 espi->dma_rx_data.name = "ep93xx-spi-rx";
813
814 espi->dma_rx = dma_request_channel(mask, ep93xx_spi_dma_filter,
815 &espi->dma_rx_data);
816 if (!espi->dma_rx) {
817 ret = -ENODEV;
818 goto fail_free_page;
819 }
820
821 espi->dma_tx_data.port = EP93XX_DMA_SSP;
822 espi->dma_tx_data.direction = DMA_MEM_TO_DEV;
823 espi->dma_tx_data.name = "ep93xx-spi-tx";
824
825 espi->dma_tx = dma_request_channel(mask, ep93xx_spi_dma_filter,
826 &espi->dma_tx_data);
827 if (!espi->dma_tx) {
828 ret = -ENODEV;
829 goto fail_release_rx;
830 }
831
832 return 0;
833
834fail_release_rx:
835 dma_release_channel(espi->dma_rx);
836 espi->dma_rx = NULL;
837fail_free_page:
838 free_page((unsigned long)espi->zeropage);
839
840 return ret;
841}
842
843static void ep93xx_spi_release_dma(struct ep93xx_spi *espi)
844{
845 if (espi->dma_rx) {
846 dma_release_channel(espi->dma_rx);
847 sg_free_table(&espi->rx_sgt);
848 }
849 if (espi->dma_tx) {
850 dma_release_channel(espi->dma_tx);
851 sg_free_table(&espi->tx_sgt);
852 }
853
854 if (espi->zeropage)
855 free_page((unsigned long)espi->zeropage);
856}
857
858static int ep93xx_spi_probe(struct platform_device *pdev)
859{
860 struct spi_master *master;
861 struct ep93xx_spi_info *info;
862 struct ep93xx_spi *espi;
863 struct resource *res;
864 int irq;
865 int error;
866
867 info = dev_get_platdata(&pdev->dev);
868
869 irq = platform_get_irq(pdev, 0);
870 if (irq < 0) {
871 dev_err(&pdev->dev, "failed to get irq resources\n");
872 return -EBUSY;
873 }
874
875 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
876 if (!res) {
877 dev_err(&pdev->dev, "unable to get iomem resource\n");
878 return -ENODEV;
879 }
880
881 master = spi_alloc_master(&pdev->dev, sizeof(*espi));
882 if (!master)
883 return -ENOMEM;
884
885 master->setup = ep93xx_spi_setup;
886 master->transfer_one_message = ep93xx_spi_transfer_one_message;
887 master->cleanup = ep93xx_spi_cleanup;
888 master->bus_num = pdev->id;
889 master->num_chipselect = info->num_chipselect;
890 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
891 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16);
892
893 platform_set_drvdata(pdev, master);
894
895 espi = spi_master_get_devdata(master);
896
897 espi->clk = devm_clk_get(&pdev->dev, NULL);
898 if (IS_ERR(espi->clk)) {
899 dev_err(&pdev->dev, "unable to get spi clock\n");
900 error = PTR_ERR(espi->clk);
901 goto fail_release_master;
902 }
903
904 init_completion(&espi->wait);
905
906
907
908
909
910 master->max_speed_hz = clk_get_rate(espi->clk) / 2;
911 master->min_speed_hz = clk_get_rate(espi->clk) / (254 * 256);
912 espi->pdev = pdev;
913
914 espi->sspdr_phys = res->start + SSPDR;
915
916 espi->regs_base = devm_ioremap_resource(&pdev->dev, res);
917 if (IS_ERR(espi->regs_base)) {
918 error = PTR_ERR(espi->regs_base);
919 goto fail_release_master;
920 }
921
922 error = devm_request_irq(&pdev->dev, irq, ep93xx_spi_interrupt,
923 0, "ep93xx-spi", espi);
924 if (error) {
925 dev_err(&pdev->dev, "failed to request irq\n");
926 goto fail_release_master;
927 }
928
929 if (info->use_dma && ep93xx_spi_setup_dma(espi))
930 dev_warn(&pdev->dev, "DMA setup failed. Falling back to PIO\n");
931
932
933 ep93xx_spi_write_u8(espi, SSPCR1, 0);
934
935 error = devm_spi_register_master(&pdev->dev, master);
936 if (error) {
937 dev_err(&pdev->dev, "failed to register SPI master\n");
938 goto fail_free_dma;
939 }
940
941 dev_info(&pdev->dev, "EP93xx SPI Controller at 0x%08lx irq %d\n",
942 (unsigned long)res->start, irq);
943
944 return 0;
945
946fail_free_dma:
947 ep93xx_spi_release_dma(espi);
948fail_release_master:
949 spi_master_put(master);
950
951 return error;
952}
953
954static int ep93xx_spi_remove(struct platform_device *pdev)
955{
956 struct spi_master *master = platform_get_drvdata(pdev);
957 struct ep93xx_spi *espi = spi_master_get_devdata(master);
958
959 ep93xx_spi_release_dma(espi);
960
961 return 0;
962}
963
964static struct platform_driver ep93xx_spi_driver = {
965 .driver = {
966 .name = "ep93xx-spi",
967 },
968 .probe = ep93xx_spi_probe,
969 .remove = ep93xx_spi_remove,
970};
971module_platform_driver(ep93xx_spi_driver);
972
973MODULE_DESCRIPTION("EP93xx SPI Controller driver");
974MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
975MODULE_LICENSE("GPL");
976MODULE_ALIAS("platform:ep93xx-spi");
977