blob: 96cac87c9f85f964d53e183e27f27a4f07470184 [file] [log] [blame]
Chao Fu349ad662013-08-16 11:08:55 +08001/*
2 * drivers/spi/spi-fsl-dspi.c
3 *
4 * Copyright 2013 Freescale Semiconductor, Inc.
5 *
6 * Freescale DSPI driver
7 * This file contains a driver for the Freescale DSPI
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 */
15
Xiubo Lia3108362014-09-29 10:57:06 +080016#include <linux/clk.h>
17#include <linux/delay.h>
18#include <linux/err.h>
19#include <linux/errno.h>
20#include <linux/interrupt.h>
21#include <linux/io.h>
Chao Fu349ad662013-08-16 11:08:55 +080022#include <linux/kernel.h>
23#include <linux/module.h>
Chao Fu349ad662013-08-16 11:08:55 +080024#include <linux/of.h>
25#include <linux/of_device.h>
Xiubo Lia3108362014-09-29 10:57:06 +080026#include <linux/platform_device.h>
27#include <linux/pm_runtime.h>
28#include <linux/regmap.h>
29#include <linux/sched.h>
30#include <linux/spi/spi.h>
31#include <linux/spi/spi_bitbang.h>
Chao Fu349ad662013-08-16 11:08:55 +080032
33#define DRIVER_NAME "fsl-dspi"
34
35#define TRAN_STATE_RX_VOID 0x01
36#define TRAN_STATE_TX_VOID 0x02
37#define TRAN_STATE_WORD_ODD_NUM 0x04
38
39#define DSPI_FIFO_SIZE 4
40
41#define SPI_MCR 0x00
42#define SPI_MCR_MASTER (1 << 31)
43#define SPI_MCR_PCSIS (0x3F << 16)
44#define SPI_MCR_CLR_TXF (1 << 11)
45#define SPI_MCR_CLR_RXF (1 << 10)
46
47#define SPI_TCR 0x08
48
Alexander Stein5cc7b042014-11-04 09:20:18 +010049#define SPI_CTAR(x) (0x0c + (((x) & 0x3) * 4))
Chao Fu349ad662013-08-16 11:08:55 +080050#define SPI_CTAR_FMSZ(x) (((x) & 0x0000000f) << 27)
51#define SPI_CTAR_CPOL(x) ((x) << 26)
52#define SPI_CTAR_CPHA(x) ((x) << 25)
53#define SPI_CTAR_LSBFE(x) ((x) << 24)
54#define SPI_CTAR_PCSSCR(x) (((x) & 0x00000003) << 22)
55#define SPI_CTAR_PASC(x) (((x) & 0x00000003) << 20)
56#define SPI_CTAR_PDT(x) (((x) & 0x00000003) << 18)
57#define SPI_CTAR_PBR(x) (((x) & 0x00000003) << 16)
58#define SPI_CTAR_CSSCK(x) (((x) & 0x0000000f) << 12)
59#define SPI_CTAR_ASC(x) (((x) & 0x0000000f) << 8)
60#define SPI_CTAR_DT(x) (((x) & 0x0000000f) << 4)
61#define SPI_CTAR_BR(x) ((x) & 0x0000000f)
62
63#define SPI_CTAR0_SLAVE 0x0c
64
65#define SPI_SR 0x2c
66#define SPI_SR_EOQF 0x10000000
67
68#define SPI_RSER 0x30
69#define SPI_RSER_EOQFE 0x10000000
70
71#define SPI_PUSHR 0x34
72#define SPI_PUSHR_CONT (1 << 31)
Alexander Stein5cc7b042014-11-04 09:20:18 +010073#define SPI_PUSHR_CTAS(x) (((x) & 0x00000003) << 28)
Chao Fu349ad662013-08-16 11:08:55 +080074#define SPI_PUSHR_EOQ (1 << 27)
75#define SPI_PUSHR_CTCNT (1 << 26)
76#define SPI_PUSHR_PCS(x) (((1 << x) & 0x0000003f) << 16)
77#define SPI_PUSHR_TXDATA(x) ((x) & 0x0000ffff)
78
79#define SPI_PUSHR_SLAVE 0x34
80
81#define SPI_POPR 0x38
82#define SPI_POPR_RXDATA(x) ((x) & 0x0000ffff)
83
84#define SPI_TXFR0 0x3c
85#define SPI_TXFR1 0x40
86#define SPI_TXFR2 0x44
87#define SPI_TXFR3 0x48
88#define SPI_RXFR0 0x7c
89#define SPI_RXFR1 0x80
90#define SPI_RXFR2 0x84
91#define SPI_RXFR3 0x88
92
93#define SPI_FRAME_BITS(bits) SPI_CTAR_FMSZ((bits) - 1)
94#define SPI_FRAME_BITS_MASK SPI_CTAR_FMSZ(0xf)
95#define SPI_FRAME_BITS_16 SPI_CTAR_FMSZ(0xf)
96#define SPI_FRAME_BITS_8 SPI_CTAR_FMSZ(0x7)
97
98#define SPI_CS_INIT 0x01
99#define SPI_CS_ASSERT 0x02
100#define SPI_CS_DROP 0x04
101
102struct chip_data {
103 u32 mcr_val;
104 u32 ctar_val;
105 u16 void_write_data;
106};
107
108struct fsl_dspi {
Chao Fu9298bc72015-01-27 16:27:22 +0530109 struct spi_master *master;
Chao Fu349ad662013-08-16 11:08:55 +0800110 struct platform_device *pdev;
111
Chao Fu1acbdeb2014-02-12 15:29:05 +0800112 struct regmap *regmap;
Chao Fu349ad662013-08-16 11:08:55 +0800113 int irq;
Chao Fu88386e82014-02-12 15:29:06 +0800114 struct clk *clk;
Chao Fu349ad662013-08-16 11:08:55 +0800115
Chao Fu88386e82014-02-12 15:29:06 +0800116 struct spi_transfer *cur_transfer;
Chao Fu9298bc72015-01-27 16:27:22 +0530117 struct spi_message *cur_msg;
Chao Fu349ad662013-08-16 11:08:55 +0800118 struct chip_data *cur_chip;
119 size_t len;
120 void *tx;
121 void *tx_end;
122 void *rx;
123 void *rx_end;
124 char dataflags;
125 u8 cs;
126 u16 void_write_data;
Chao Fu9298bc72015-01-27 16:27:22 +0530127 u32 cs_change;
Chao Fu349ad662013-08-16 11:08:55 +0800128
Chao Fu88386e82014-02-12 15:29:06 +0800129 wait_queue_head_t waitq;
130 u32 waitflags;
Chao Fu349ad662013-08-16 11:08:55 +0800131};
132
133static inline int is_double_byte_mode(struct fsl_dspi *dspi)
134{
Chao Fu1acbdeb2014-02-12 15:29:05 +0800135 unsigned int val;
Chao Fu349ad662013-08-16 11:08:55 +0800136
Chao Fu1acbdeb2014-02-12 15:29:05 +0800137 regmap_read(dspi->regmap, SPI_CTAR(dspi->cs), &val);
Chao Fu349ad662013-08-16 11:08:55 +0800138
Chao Fu1acbdeb2014-02-12 15:29:05 +0800139 return ((val & SPI_FRAME_BITS_MASK) == SPI_FRAME_BITS(8)) ? 0 : 1;
Chao Fu349ad662013-08-16 11:08:55 +0800140}
141
142static void hz_to_spi_baud(char *pbr, char *br, int speed_hz,
143 unsigned long clkrate)
144{
145 /* Valid baud rate pre-scaler values */
146 int pbr_tbl[4] = {2, 3, 5, 7};
147 int brs[16] = { 2, 4, 6, 8,
148 16, 32, 64, 128,
149 256, 512, 1024, 2048,
150 4096, 8192, 16384, 32768 };
Aaron Brice6fd63082015-03-30 10:49:15 -0700151 int scale_needed, scale, minscale = INT_MAX;
152 int i, j;
Chao Fu349ad662013-08-16 11:08:55 +0800153
Aaron Brice6fd63082015-03-30 10:49:15 -0700154 scale_needed = clkrate / speed_hz;
Chao Fu349ad662013-08-16 11:08:55 +0800155
Aaron Brice6fd63082015-03-30 10:49:15 -0700156 for (i = 0; i < ARRAY_SIZE(brs); i++)
157 for (j = 0; j < ARRAY_SIZE(pbr_tbl); j++) {
158 scale = brs[i] * pbr_tbl[j];
159 if (scale >= scale_needed) {
160 if (scale < minscale) {
161 minscale = scale;
162 *br = i;
163 *pbr = j;
164 }
165 break;
Chao Fu349ad662013-08-16 11:08:55 +0800166 }
167 }
168
Aaron Brice6fd63082015-03-30 10:49:15 -0700169 if (minscale == INT_MAX) {
170 pr_warn("Can not find valid baud rate,speed_hz is %d,clkrate is %ld, we use the max prescaler value.\n",
171 speed_hz, clkrate);
172 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
173 *br = ARRAY_SIZE(brs) - 1;
174 }
Chao Fu349ad662013-08-16 11:08:55 +0800175}
176
177static int dspi_transfer_write(struct fsl_dspi *dspi)
178{
179 int tx_count = 0;
180 int tx_word;
181 u16 d16;
182 u8 d8;
183 u32 dspi_pushr = 0;
184 int first = 1;
185
186 tx_word = is_double_byte_mode(dspi);
187
188 /* If we are in word mode, but only have a single byte to transfer
189 * then switch to byte mode temporarily. Will switch back at the
190 * end of the transfer.
191 */
192 if (tx_word && (dspi->len == 1)) {
193 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800194 regmap_update_bits(dspi->regmap, SPI_CTAR(dspi->cs),
195 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
Chao Fu349ad662013-08-16 11:08:55 +0800196 tx_word = 0;
197 }
198
199 while (dspi->len && (tx_count < DSPI_FIFO_SIZE)) {
200 if (tx_word) {
201 if (dspi->len == 1)
202 break;
203
204 if (!(dspi->dataflags & TRAN_STATE_TX_VOID)) {
205 d16 = *(u16 *)dspi->tx;
206 dspi->tx += 2;
207 } else {
208 d16 = dspi->void_write_data;
209 }
210
211 dspi_pushr = SPI_PUSHR_TXDATA(d16) |
212 SPI_PUSHR_PCS(dspi->cs) |
213 SPI_PUSHR_CTAS(dspi->cs) |
214 SPI_PUSHR_CONT;
215
216 dspi->len -= 2;
217 } else {
218 if (!(dspi->dataflags & TRAN_STATE_TX_VOID)) {
219
220 d8 = *(u8 *)dspi->tx;
221 dspi->tx++;
222 } else {
223 d8 = (u8)dspi->void_write_data;
224 }
225
226 dspi_pushr = SPI_PUSHR_TXDATA(d8) |
227 SPI_PUSHR_PCS(dspi->cs) |
228 SPI_PUSHR_CTAS(dspi->cs) |
229 SPI_PUSHR_CONT;
230
231 dspi->len--;
232 }
233
234 if (dspi->len == 0 || tx_count == DSPI_FIFO_SIZE - 1) {
235 /* last transfer in the transfer */
236 dspi_pushr |= SPI_PUSHR_EOQ;
Chao Fu9298bc72015-01-27 16:27:22 +0530237 if ((dspi->cs_change) && (!dspi->len))
238 dspi_pushr &= ~SPI_PUSHR_CONT;
Chao Fu349ad662013-08-16 11:08:55 +0800239 } else if (tx_word && (dspi->len == 1))
240 dspi_pushr |= SPI_PUSHR_EOQ;
241
242 if (first) {
243 first = 0;
244 dspi_pushr |= SPI_PUSHR_CTCNT; /* clear counter */
245 }
246
Chao Fu1acbdeb2014-02-12 15:29:05 +0800247 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
248
Chao Fu349ad662013-08-16 11:08:55 +0800249 tx_count++;
250 }
251
252 return tx_count * (tx_word + 1);
253}
254
255static int dspi_transfer_read(struct fsl_dspi *dspi)
256{
257 int rx_count = 0;
258 int rx_word = is_double_byte_mode(dspi);
259 u16 d;
Chao Fu9298bc72015-01-27 16:27:22 +0530260
Chao Fu349ad662013-08-16 11:08:55 +0800261 while ((dspi->rx < dspi->rx_end)
262 && (rx_count < DSPI_FIFO_SIZE)) {
263 if (rx_word) {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800264 unsigned int val;
265
Chao Fu349ad662013-08-16 11:08:55 +0800266 if ((dspi->rx_end - dspi->rx) == 1)
267 break;
268
Chao Fu1acbdeb2014-02-12 15:29:05 +0800269 regmap_read(dspi->regmap, SPI_POPR, &val);
270 d = SPI_POPR_RXDATA(val);
Chao Fu349ad662013-08-16 11:08:55 +0800271
272 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
273 *(u16 *)dspi->rx = d;
274 dspi->rx += 2;
275
276 } else {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800277 unsigned int val;
278
279 regmap_read(dspi->regmap, SPI_POPR, &val);
280 d = SPI_POPR_RXDATA(val);
Chao Fu349ad662013-08-16 11:08:55 +0800281 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
282 *(u8 *)dspi->rx = d;
283 dspi->rx++;
284 }
285 rx_count++;
286 }
287
288 return rx_count;
289}
290
Chao Fu9298bc72015-01-27 16:27:22 +0530291static int dspi_transfer_one_message(struct spi_master *master,
292 struct spi_message *message)
Chao Fu349ad662013-08-16 11:08:55 +0800293{
Chao Fu9298bc72015-01-27 16:27:22 +0530294 struct fsl_dspi *dspi = spi_master_get_devdata(master);
295 struct spi_device *spi = message->spi;
296 struct spi_transfer *transfer;
297 int status = 0;
298 message->actual_length = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800299
Chao Fu9298bc72015-01-27 16:27:22 +0530300 list_for_each_entry(transfer, &message->transfers, transfer_list) {
301 dspi->cur_transfer = transfer;
302 dspi->cur_msg = message;
303 dspi->cur_chip = spi_get_ctldata(spi);
304 dspi->cs = spi->chip_select;
305 if (dspi->cur_transfer->transfer_list.next
306 == &dspi->cur_msg->transfers)
307 transfer->cs_change = 1;
308 dspi->cs_change = transfer->cs_change;
309 dspi->void_write_data = dspi->cur_chip->void_write_data;
Chao Fu349ad662013-08-16 11:08:55 +0800310
Chao Fu9298bc72015-01-27 16:27:22 +0530311 dspi->dataflags = 0;
312 dspi->tx = (void *)transfer->tx_buf;
313 dspi->tx_end = dspi->tx + transfer->len;
314 dspi->rx = transfer->rx_buf;
315 dspi->rx_end = dspi->rx + transfer->len;
316 dspi->len = transfer->len;
Chao Fu349ad662013-08-16 11:08:55 +0800317
Chao Fu9298bc72015-01-27 16:27:22 +0530318 if (!dspi->rx)
319 dspi->dataflags |= TRAN_STATE_RX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800320
Chao Fu9298bc72015-01-27 16:27:22 +0530321 if (!dspi->tx)
322 dspi->dataflags |= TRAN_STATE_TX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800323
Chao Fu9298bc72015-01-27 16:27:22 +0530324 regmap_write(dspi->regmap, SPI_MCR, dspi->cur_chip->mcr_val);
325 regmap_update_bits(dspi->regmap, SPI_MCR,
326 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF,
327 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800328 regmap_write(dspi->regmap, SPI_CTAR(dspi->cs),
329 dspi->cur_chip->ctar_val);
Chao Fu9298bc72015-01-27 16:27:22 +0530330 if (transfer->speed_hz)
331 regmap_write(dspi->regmap, SPI_CTAR(dspi->cs),
332 dspi->cur_chip->ctar_val);
Chao Fu349ad662013-08-16 11:08:55 +0800333
Chao Fu9298bc72015-01-27 16:27:22 +0530334 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_EOQFE);
335 message->actual_length += dspi_transfer_write(dspi);
Chao Fu349ad662013-08-16 11:08:55 +0800336
Chao Fu9298bc72015-01-27 16:27:22 +0530337 if (wait_event_interruptible(dspi->waitq, dspi->waitflags))
338 dev_err(&dspi->pdev->dev, "wait transfer complete fail!\n");
339 dspi->waitflags = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800340
Chao Fu9298bc72015-01-27 16:27:22 +0530341 if (transfer->delay_usecs)
342 udelay(transfer->delay_usecs);
Chao Fu349ad662013-08-16 11:08:55 +0800343 }
344
Chao Fu9298bc72015-01-27 16:27:22 +0530345 message->status = status;
346 spi_finalize_current_message(master);
347
348 return status;
Chao Fu349ad662013-08-16 11:08:55 +0800349}
350
Chao Fu9298bc72015-01-27 16:27:22 +0530351static int dspi_setup(struct spi_device *spi)
Chao Fu349ad662013-08-16 11:08:55 +0800352{
353 struct chip_data *chip;
354 struct fsl_dspi *dspi = spi_master_get_devdata(spi->master);
355 unsigned char br = 0, pbr = 0, fmsz = 0;
356
Bhuvanchandra DVceadfd82015-01-31 22:03:25 +0530357 if ((spi->bits_per_word >= 4) && (spi->bits_per_word <= 16)) {
358 fmsz = spi->bits_per_word - 1;
359 } else {
360 pr_err("Invalid wordsize\n");
361 return -ENODEV;
362 }
363
Chao Fu349ad662013-08-16 11:08:55 +0800364 /* Only alloc on first setup */
365 chip = spi_get_ctldata(spi);
366 if (chip == NULL) {
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530367 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Chao Fu349ad662013-08-16 11:08:55 +0800368 if (!chip)
369 return -ENOMEM;
370 }
371
372 chip->mcr_val = SPI_MCR_MASTER | SPI_MCR_PCSIS |
373 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF;
Chao Fu349ad662013-08-16 11:08:55 +0800374
375 chip->void_write_data = 0;
376
377 hz_to_spi_baud(&pbr, &br,
378 spi->max_speed_hz, clk_get_rate(dspi->clk));
379
380 chip->ctar_val = SPI_CTAR_FMSZ(fmsz)
381 | SPI_CTAR_CPOL(spi->mode & SPI_CPOL ? 1 : 0)
382 | SPI_CTAR_CPHA(spi->mode & SPI_CPHA ? 1 : 0)
383 | SPI_CTAR_LSBFE(spi->mode & SPI_LSB_FIRST ? 1 : 0)
384 | SPI_CTAR_PBR(pbr)
385 | SPI_CTAR_BR(br);
386
387 spi_set_ctldata(spi, chip);
388
389 return 0;
390}
391
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530392static void dspi_cleanup(struct spi_device *spi)
393{
394 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
395
396 dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
397 spi->master->bus_num, spi->chip_select);
398
399 kfree(chip);
400}
401
Chao Fu349ad662013-08-16 11:08:55 +0800402static irqreturn_t dspi_interrupt(int irq, void *dev_id)
403{
404 struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
405
Chao Fu9298bc72015-01-27 16:27:22 +0530406 struct spi_message *msg = dspi->cur_msg;
Chao Fu349ad662013-08-16 11:08:55 +0800407
Chao Fu9298bc72015-01-27 16:27:22 +0530408 regmap_write(dspi->regmap, SPI_SR, SPI_SR_EOQF);
Chao Fu349ad662013-08-16 11:08:55 +0800409 dspi_transfer_read(dspi);
410
411 if (!dspi->len) {
412 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM)
Chao Fu1acbdeb2014-02-12 15:29:05 +0800413 regmap_update_bits(dspi->regmap, SPI_CTAR(dspi->cs),
Chao Fu9298bc72015-01-27 16:27:22 +0530414 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(16));
Chao Fu1acbdeb2014-02-12 15:29:05 +0800415
Chao Fu349ad662013-08-16 11:08:55 +0800416 dspi->waitflags = 1;
417 wake_up_interruptible(&dspi->waitq);
Chao Fu9298bc72015-01-27 16:27:22 +0530418 } else
419 msg->actual_length += dspi_transfer_write(dspi);
Chao Fu349ad662013-08-16 11:08:55 +0800420
421 return IRQ_HANDLED;
422}
423
Jingoo Han790d1902014-05-07 16:45:41 +0900424static const struct of_device_id fsl_dspi_dt_ids[] = {
Chao Fu349ad662013-08-16 11:08:55 +0800425 { .compatible = "fsl,vf610-dspi", .data = NULL, },
426 { /* sentinel */ }
427};
428MODULE_DEVICE_TABLE(of, fsl_dspi_dt_ids);
429
430#ifdef CONFIG_PM_SLEEP
431static int dspi_suspend(struct device *dev)
432{
433 struct spi_master *master = dev_get_drvdata(dev);
434 struct fsl_dspi *dspi = spi_master_get_devdata(master);
435
436 spi_master_suspend(master);
437 clk_disable_unprepare(dspi->clk);
438
439 return 0;
440}
441
442static int dspi_resume(struct device *dev)
443{
Chao Fu349ad662013-08-16 11:08:55 +0800444 struct spi_master *master = dev_get_drvdata(dev);
445 struct fsl_dspi *dspi = spi_master_get_devdata(master);
446
447 clk_prepare_enable(dspi->clk);
448 spi_master_resume(master);
449
450 return 0;
451}
452#endif /* CONFIG_PM_SLEEP */
453
Jingoo Hanba811ad2014-02-26 10:30:14 +0900454static SIMPLE_DEV_PM_OPS(dspi_pm, dspi_suspend, dspi_resume);
Chao Fu349ad662013-08-16 11:08:55 +0800455
Xiubo Li409851c2014-10-09 11:27:45 +0800456static const struct regmap_config dspi_regmap_config = {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800457 .reg_bits = 32,
458 .val_bits = 32,
459 .reg_stride = 4,
460 .max_register = 0x88,
Chao Fu349ad662013-08-16 11:08:55 +0800461};
462
463static int dspi_probe(struct platform_device *pdev)
464{
465 struct device_node *np = pdev->dev.of_node;
466 struct spi_master *master;
467 struct fsl_dspi *dspi;
468 struct resource *res;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800469 void __iomem *base;
Chao Fu349ad662013-08-16 11:08:55 +0800470 int ret = 0, cs_num, bus_num;
471
472 master = spi_alloc_master(&pdev->dev, sizeof(struct fsl_dspi));
473 if (!master)
474 return -ENOMEM;
475
476 dspi = spi_master_get_devdata(master);
477 dspi->pdev = pdev;
Chao Fu9298bc72015-01-27 16:27:22 +0530478 dspi->master = master;
479
480 master->transfer = NULL;
481 master->setup = dspi_setup;
482 master->transfer_one_message = dspi_transfer_one_message;
483 master->dev.of_node = pdev->dev.of_node;
Chao Fu349ad662013-08-16 11:08:55 +0800484
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530485 master->cleanup = dspi_cleanup;
Chao Fu349ad662013-08-16 11:08:55 +0800486 master->mode_bits = SPI_CPOL | SPI_CPHA;
487 master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
488 SPI_BPW_MASK(16);
489
490 ret = of_property_read_u32(np, "spi-num-chipselects", &cs_num);
491 if (ret < 0) {
492 dev_err(&pdev->dev, "can't get spi-num-chipselects\n");
493 goto out_master_put;
494 }
495 master->num_chipselect = cs_num;
496
497 ret = of_property_read_u32(np, "bus-num", &bus_num);
498 if (ret < 0) {
499 dev_err(&pdev->dev, "can't get bus-num\n");
500 goto out_master_put;
501 }
502 master->bus_num = bus_num;
503
504 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800505 base = devm_ioremap_resource(&pdev->dev, res);
506 if (IS_ERR(base)) {
507 ret = PTR_ERR(base);
Chao Fu349ad662013-08-16 11:08:55 +0800508 goto out_master_put;
509 }
510
Chao Fu1acbdeb2014-02-12 15:29:05 +0800511 dspi->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "dspi", base,
512 &dspi_regmap_config);
513 if (IS_ERR(dspi->regmap)) {
514 dev_err(&pdev->dev, "failed to init regmap: %ld\n",
515 PTR_ERR(dspi->regmap));
516 return PTR_ERR(dspi->regmap);
517 }
518
Chao Fu349ad662013-08-16 11:08:55 +0800519 dspi->irq = platform_get_irq(pdev, 0);
520 if (dspi->irq < 0) {
521 dev_err(&pdev->dev, "can't get platform irq\n");
522 ret = dspi->irq;
523 goto out_master_put;
524 }
525
526 ret = devm_request_irq(&pdev->dev, dspi->irq, dspi_interrupt, 0,
527 pdev->name, dspi);
528 if (ret < 0) {
529 dev_err(&pdev->dev, "Unable to attach DSPI interrupt\n");
530 goto out_master_put;
531 }
532
533 dspi->clk = devm_clk_get(&pdev->dev, "dspi");
534 if (IS_ERR(dspi->clk)) {
535 ret = PTR_ERR(dspi->clk);
536 dev_err(&pdev->dev, "unable to get clock\n");
537 goto out_master_put;
538 }
539 clk_prepare_enable(dspi->clk);
540
541 init_waitqueue_head(&dspi->waitq);
Axel Lin017145f2014-02-14 12:49:12 +0800542 platform_set_drvdata(pdev, master);
Chao Fu349ad662013-08-16 11:08:55 +0800543
Chao Fu9298bc72015-01-27 16:27:22 +0530544 ret = spi_register_master(master);
Chao Fu349ad662013-08-16 11:08:55 +0800545 if (ret != 0) {
546 dev_err(&pdev->dev, "Problem registering DSPI master\n");
547 goto out_clk_put;
548 }
549
Chao Fu349ad662013-08-16 11:08:55 +0800550 return ret;
551
552out_clk_put:
553 clk_disable_unprepare(dspi->clk);
554out_master_put:
555 spi_master_put(master);
Chao Fu349ad662013-08-16 11:08:55 +0800556
557 return ret;
558}
559
560static int dspi_remove(struct platform_device *pdev)
561{
Axel Lin017145f2014-02-14 12:49:12 +0800562 struct spi_master *master = platform_get_drvdata(pdev);
563 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Chao Fu349ad662013-08-16 11:08:55 +0800564
565 /* Disconnect from the SPI framework */
Wei Yongjun05209f42013-10-12 15:15:31 +0800566 clk_disable_unprepare(dspi->clk);
Chao Fu9298bc72015-01-27 16:27:22 +0530567 spi_unregister_master(dspi->master);
568 spi_master_put(dspi->master);
Chao Fu349ad662013-08-16 11:08:55 +0800569
570 return 0;
571}
572
573static struct platform_driver fsl_dspi_driver = {
574 .driver.name = DRIVER_NAME,
575 .driver.of_match_table = fsl_dspi_dt_ids,
576 .driver.owner = THIS_MODULE,
577 .driver.pm = &dspi_pm,
578 .probe = dspi_probe,
579 .remove = dspi_remove,
580};
581module_platform_driver(fsl_dspi_driver);
582
583MODULE_DESCRIPTION("Freescale DSPI Controller Driver");
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +0200584MODULE_LICENSE("GPL");
Chao Fu349ad662013-08-16 11:08:55 +0800585MODULE_ALIAS("platform:" DRIVER_NAME);