blob: 2c52c2e185c7ef717c7ad55526698546fa5cf3d7 [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 };
151 int temp, i = 0, j = 0;
152
153 temp = clkrate / 2 / speed_hz;
154
155 for (i = 0; i < ARRAY_SIZE(pbr_tbl); i++)
156 for (j = 0; j < ARRAY_SIZE(brs); j++) {
157 if (pbr_tbl[i] * brs[j] >= temp) {
158 *pbr = i;
159 *br = j;
160 return;
161 }
162 }
163
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +0200164 pr_warn("Can not find valid baud rate,speed_hz is %d,clkrate is %ld\
Chao Fu349ad662013-08-16 11:08:55 +0800165 ,we use the max prescaler value.\n", speed_hz, clkrate);
166 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
167 *br = ARRAY_SIZE(brs) - 1;
168}
169
170static int dspi_transfer_write(struct fsl_dspi *dspi)
171{
172 int tx_count = 0;
173 int tx_word;
174 u16 d16;
175 u8 d8;
176 u32 dspi_pushr = 0;
177 int first = 1;
178
179 tx_word = is_double_byte_mode(dspi);
180
181 /* If we are in word mode, but only have a single byte to transfer
182 * then switch to byte mode temporarily. Will switch back at the
183 * end of the transfer.
184 */
185 if (tx_word && (dspi->len == 1)) {
186 dspi->dataflags |= TRAN_STATE_WORD_ODD_NUM;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800187 regmap_update_bits(dspi->regmap, SPI_CTAR(dspi->cs),
188 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(8));
Chao Fu349ad662013-08-16 11:08:55 +0800189 tx_word = 0;
190 }
191
192 while (dspi->len && (tx_count < DSPI_FIFO_SIZE)) {
193 if (tx_word) {
194 if (dspi->len == 1)
195 break;
196
197 if (!(dspi->dataflags & TRAN_STATE_TX_VOID)) {
198 d16 = *(u16 *)dspi->tx;
199 dspi->tx += 2;
200 } else {
201 d16 = dspi->void_write_data;
202 }
203
204 dspi_pushr = SPI_PUSHR_TXDATA(d16) |
205 SPI_PUSHR_PCS(dspi->cs) |
206 SPI_PUSHR_CTAS(dspi->cs) |
207 SPI_PUSHR_CONT;
208
209 dspi->len -= 2;
210 } else {
211 if (!(dspi->dataflags & TRAN_STATE_TX_VOID)) {
212
213 d8 = *(u8 *)dspi->tx;
214 dspi->tx++;
215 } else {
216 d8 = (u8)dspi->void_write_data;
217 }
218
219 dspi_pushr = SPI_PUSHR_TXDATA(d8) |
220 SPI_PUSHR_PCS(dspi->cs) |
221 SPI_PUSHR_CTAS(dspi->cs) |
222 SPI_PUSHR_CONT;
223
224 dspi->len--;
225 }
226
227 if (dspi->len == 0 || tx_count == DSPI_FIFO_SIZE - 1) {
228 /* last transfer in the transfer */
229 dspi_pushr |= SPI_PUSHR_EOQ;
Chao Fu9298bc72015-01-27 16:27:22 +0530230 if ((dspi->cs_change) && (!dspi->len))
231 dspi_pushr &= ~SPI_PUSHR_CONT;
Chao Fu349ad662013-08-16 11:08:55 +0800232 } else if (tx_word && (dspi->len == 1))
233 dspi_pushr |= SPI_PUSHR_EOQ;
234
235 if (first) {
236 first = 0;
237 dspi_pushr |= SPI_PUSHR_CTCNT; /* clear counter */
238 }
239
Chao Fu1acbdeb2014-02-12 15:29:05 +0800240 regmap_write(dspi->regmap, SPI_PUSHR, dspi_pushr);
241
Chao Fu349ad662013-08-16 11:08:55 +0800242 tx_count++;
243 }
244
245 return tx_count * (tx_word + 1);
246}
247
248static int dspi_transfer_read(struct fsl_dspi *dspi)
249{
250 int rx_count = 0;
251 int rx_word = is_double_byte_mode(dspi);
252 u16 d;
Chao Fu9298bc72015-01-27 16:27:22 +0530253
Chao Fu349ad662013-08-16 11:08:55 +0800254 while ((dspi->rx < dspi->rx_end)
255 && (rx_count < DSPI_FIFO_SIZE)) {
256 if (rx_word) {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800257 unsigned int val;
258
Chao Fu349ad662013-08-16 11:08:55 +0800259 if ((dspi->rx_end - dspi->rx) == 1)
260 break;
261
Chao Fu1acbdeb2014-02-12 15:29:05 +0800262 regmap_read(dspi->regmap, SPI_POPR, &val);
263 d = SPI_POPR_RXDATA(val);
Chao Fu349ad662013-08-16 11:08:55 +0800264
265 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
266 *(u16 *)dspi->rx = d;
267 dspi->rx += 2;
268
269 } else {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800270 unsigned int val;
271
272 regmap_read(dspi->regmap, SPI_POPR, &val);
273 d = SPI_POPR_RXDATA(val);
Chao Fu349ad662013-08-16 11:08:55 +0800274 if (!(dspi->dataflags & TRAN_STATE_RX_VOID))
275 *(u8 *)dspi->rx = d;
276 dspi->rx++;
277 }
278 rx_count++;
279 }
280
281 return rx_count;
282}
283
Chao Fu9298bc72015-01-27 16:27:22 +0530284static int dspi_transfer_one_message(struct spi_master *master,
285 struct spi_message *message)
Chao Fu349ad662013-08-16 11:08:55 +0800286{
Chao Fu9298bc72015-01-27 16:27:22 +0530287 struct fsl_dspi *dspi = spi_master_get_devdata(master);
288 struct spi_device *spi = message->spi;
289 struct spi_transfer *transfer;
290 int status = 0;
291 message->actual_length = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800292
Chao Fu9298bc72015-01-27 16:27:22 +0530293 list_for_each_entry(transfer, &message->transfers, transfer_list) {
294 dspi->cur_transfer = transfer;
295 dspi->cur_msg = message;
296 dspi->cur_chip = spi_get_ctldata(spi);
297 dspi->cs = spi->chip_select;
298 if (dspi->cur_transfer->transfer_list.next
299 == &dspi->cur_msg->transfers)
300 transfer->cs_change = 1;
301 dspi->cs_change = transfer->cs_change;
302 dspi->void_write_data = dspi->cur_chip->void_write_data;
Chao Fu349ad662013-08-16 11:08:55 +0800303
Chao Fu9298bc72015-01-27 16:27:22 +0530304 dspi->dataflags = 0;
305 dspi->tx = (void *)transfer->tx_buf;
306 dspi->tx_end = dspi->tx + transfer->len;
307 dspi->rx = transfer->rx_buf;
308 dspi->rx_end = dspi->rx + transfer->len;
309 dspi->len = transfer->len;
Chao Fu349ad662013-08-16 11:08:55 +0800310
Chao Fu9298bc72015-01-27 16:27:22 +0530311 if (!dspi->rx)
312 dspi->dataflags |= TRAN_STATE_RX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800313
Chao Fu9298bc72015-01-27 16:27:22 +0530314 if (!dspi->tx)
315 dspi->dataflags |= TRAN_STATE_TX_VOID;
Chao Fu349ad662013-08-16 11:08:55 +0800316
Chao Fu9298bc72015-01-27 16:27:22 +0530317 regmap_write(dspi->regmap, SPI_MCR, dspi->cur_chip->mcr_val);
318 regmap_update_bits(dspi->regmap, SPI_MCR,
319 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF,
320 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800321 regmap_write(dspi->regmap, SPI_CTAR(dspi->cs),
322 dspi->cur_chip->ctar_val);
Chao Fu9298bc72015-01-27 16:27:22 +0530323 if (transfer->speed_hz)
324 regmap_write(dspi->regmap, SPI_CTAR(dspi->cs),
325 dspi->cur_chip->ctar_val);
Chao Fu349ad662013-08-16 11:08:55 +0800326
Chao Fu9298bc72015-01-27 16:27:22 +0530327 regmap_write(dspi->regmap, SPI_RSER, SPI_RSER_EOQFE);
328 message->actual_length += dspi_transfer_write(dspi);
Chao Fu349ad662013-08-16 11:08:55 +0800329
Chao Fu9298bc72015-01-27 16:27:22 +0530330 if (wait_event_interruptible(dspi->waitq, dspi->waitflags))
331 dev_err(&dspi->pdev->dev, "wait transfer complete fail!\n");
332 dspi->waitflags = 0;
Chao Fu349ad662013-08-16 11:08:55 +0800333
Chao Fu9298bc72015-01-27 16:27:22 +0530334 if (transfer->delay_usecs)
335 udelay(transfer->delay_usecs);
Chao Fu349ad662013-08-16 11:08:55 +0800336 }
337
Chao Fu9298bc72015-01-27 16:27:22 +0530338 message->status = status;
339 spi_finalize_current_message(master);
340
341 return status;
Chao Fu349ad662013-08-16 11:08:55 +0800342}
343
Chao Fu9298bc72015-01-27 16:27:22 +0530344static int dspi_setup(struct spi_device *spi)
Chao Fu349ad662013-08-16 11:08:55 +0800345{
346 struct chip_data *chip;
347 struct fsl_dspi *dspi = spi_master_get_devdata(spi->master);
348 unsigned char br = 0, pbr = 0, fmsz = 0;
349
350 /* Only alloc on first setup */
351 chip = spi_get_ctldata(spi);
352 if (chip == NULL) {
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530353 chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
Chao Fu349ad662013-08-16 11:08:55 +0800354 if (!chip)
355 return -ENOMEM;
356 }
357
358 chip->mcr_val = SPI_MCR_MASTER | SPI_MCR_PCSIS |
359 SPI_MCR_CLR_TXF | SPI_MCR_CLR_RXF;
360 if ((spi->bits_per_word >= 4) && (spi->bits_per_word <= 16)) {
361 fmsz = spi->bits_per_word - 1;
362 } else {
363 pr_err("Invalid wordsize\n");
Chao Fu349ad662013-08-16 11:08:55 +0800364 return -ENODEV;
365 }
366
367 chip->void_write_data = 0;
368
369 hz_to_spi_baud(&pbr, &br,
370 spi->max_speed_hz, clk_get_rate(dspi->clk));
371
372 chip->ctar_val = SPI_CTAR_FMSZ(fmsz)
373 | SPI_CTAR_CPOL(spi->mode & SPI_CPOL ? 1 : 0)
374 | SPI_CTAR_CPHA(spi->mode & SPI_CPHA ? 1 : 0)
375 | SPI_CTAR_LSBFE(spi->mode & SPI_LSB_FIRST ? 1 : 0)
376 | SPI_CTAR_PBR(pbr)
377 | SPI_CTAR_BR(br);
378
379 spi_set_ctldata(spi, chip);
380
381 return 0;
382}
383
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530384static void dspi_cleanup(struct spi_device *spi)
385{
386 struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
387
388 dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
389 spi->master->bus_num, spi->chip_select);
390
391 kfree(chip);
392}
393
Chao Fu349ad662013-08-16 11:08:55 +0800394static irqreturn_t dspi_interrupt(int irq, void *dev_id)
395{
396 struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
397
Chao Fu9298bc72015-01-27 16:27:22 +0530398 struct spi_message *msg = dspi->cur_msg;
Chao Fu349ad662013-08-16 11:08:55 +0800399
Chao Fu9298bc72015-01-27 16:27:22 +0530400 regmap_write(dspi->regmap, SPI_SR, SPI_SR_EOQF);
Chao Fu349ad662013-08-16 11:08:55 +0800401 dspi_transfer_read(dspi);
402
403 if (!dspi->len) {
404 if (dspi->dataflags & TRAN_STATE_WORD_ODD_NUM)
Chao Fu1acbdeb2014-02-12 15:29:05 +0800405 regmap_update_bits(dspi->regmap, SPI_CTAR(dspi->cs),
Chao Fu9298bc72015-01-27 16:27:22 +0530406 SPI_FRAME_BITS_MASK, SPI_FRAME_BITS(16));
Chao Fu1acbdeb2014-02-12 15:29:05 +0800407
Chao Fu349ad662013-08-16 11:08:55 +0800408 dspi->waitflags = 1;
409 wake_up_interruptible(&dspi->waitq);
Chao Fu9298bc72015-01-27 16:27:22 +0530410 } else
411 msg->actual_length += dspi_transfer_write(dspi);
Chao Fu349ad662013-08-16 11:08:55 +0800412
413 return IRQ_HANDLED;
414}
415
Jingoo Han790d1902014-05-07 16:45:41 +0900416static const struct of_device_id fsl_dspi_dt_ids[] = {
Chao Fu349ad662013-08-16 11:08:55 +0800417 { .compatible = "fsl,vf610-dspi", .data = NULL, },
418 { /* sentinel */ }
419};
420MODULE_DEVICE_TABLE(of, fsl_dspi_dt_ids);
421
422#ifdef CONFIG_PM_SLEEP
423static int dspi_suspend(struct device *dev)
424{
425 struct spi_master *master = dev_get_drvdata(dev);
426 struct fsl_dspi *dspi = spi_master_get_devdata(master);
427
428 spi_master_suspend(master);
429 clk_disable_unprepare(dspi->clk);
430
431 return 0;
432}
433
434static int dspi_resume(struct device *dev)
435{
Chao Fu349ad662013-08-16 11:08:55 +0800436 struct spi_master *master = dev_get_drvdata(dev);
437 struct fsl_dspi *dspi = spi_master_get_devdata(master);
438
439 clk_prepare_enable(dspi->clk);
440 spi_master_resume(master);
441
442 return 0;
443}
444#endif /* CONFIG_PM_SLEEP */
445
Jingoo Hanba811ad2014-02-26 10:30:14 +0900446static SIMPLE_DEV_PM_OPS(dspi_pm, dspi_suspend, dspi_resume);
Chao Fu349ad662013-08-16 11:08:55 +0800447
Xiubo Li409851c2014-10-09 11:27:45 +0800448static const struct regmap_config dspi_regmap_config = {
Chao Fu1acbdeb2014-02-12 15:29:05 +0800449 .reg_bits = 32,
450 .val_bits = 32,
451 .reg_stride = 4,
452 .max_register = 0x88,
Chao Fu349ad662013-08-16 11:08:55 +0800453};
454
455static int dspi_probe(struct platform_device *pdev)
456{
457 struct device_node *np = pdev->dev.of_node;
458 struct spi_master *master;
459 struct fsl_dspi *dspi;
460 struct resource *res;
Chao Fu1acbdeb2014-02-12 15:29:05 +0800461 void __iomem *base;
Chao Fu349ad662013-08-16 11:08:55 +0800462 int ret = 0, cs_num, bus_num;
463
464 master = spi_alloc_master(&pdev->dev, sizeof(struct fsl_dspi));
465 if (!master)
466 return -ENOMEM;
467
468 dspi = spi_master_get_devdata(master);
469 dspi->pdev = pdev;
Chao Fu9298bc72015-01-27 16:27:22 +0530470 dspi->master = master;
471
472 master->transfer = NULL;
473 master->setup = dspi_setup;
474 master->transfer_one_message = dspi_transfer_one_message;
475 master->dev.of_node = pdev->dev.of_node;
Chao Fu349ad662013-08-16 11:08:55 +0800476
Bhuvanchandra DV973fbce2015-01-27 16:27:20 +0530477 master->cleanup = dspi_cleanup;
Chao Fu349ad662013-08-16 11:08:55 +0800478 master->mode_bits = SPI_CPOL | SPI_CPHA;
479 master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
480 SPI_BPW_MASK(16);
481
482 ret = of_property_read_u32(np, "spi-num-chipselects", &cs_num);
483 if (ret < 0) {
484 dev_err(&pdev->dev, "can't get spi-num-chipselects\n");
485 goto out_master_put;
486 }
487 master->num_chipselect = cs_num;
488
489 ret = of_property_read_u32(np, "bus-num", &bus_num);
490 if (ret < 0) {
491 dev_err(&pdev->dev, "can't get bus-num\n");
492 goto out_master_put;
493 }
494 master->bus_num = bus_num;
495
496 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Chao Fu1acbdeb2014-02-12 15:29:05 +0800497 base = devm_ioremap_resource(&pdev->dev, res);
498 if (IS_ERR(base)) {
499 ret = PTR_ERR(base);
Chao Fu349ad662013-08-16 11:08:55 +0800500 goto out_master_put;
501 }
502
Chao Fu1acbdeb2014-02-12 15:29:05 +0800503 dspi->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "dspi", base,
504 &dspi_regmap_config);
505 if (IS_ERR(dspi->regmap)) {
506 dev_err(&pdev->dev, "failed to init regmap: %ld\n",
507 PTR_ERR(dspi->regmap));
508 return PTR_ERR(dspi->regmap);
509 }
510
Chao Fu349ad662013-08-16 11:08:55 +0800511 dspi->irq = platform_get_irq(pdev, 0);
512 if (dspi->irq < 0) {
513 dev_err(&pdev->dev, "can't get platform irq\n");
514 ret = dspi->irq;
515 goto out_master_put;
516 }
517
518 ret = devm_request_irq(&pdev->dev, dspi->irq, dspi_interrupt, 0,
519 pdev->name, dspi);
520 if (ret < 0) {
521 dev_err(&pdev->dev, "Unable to attach DSPI interrupt\n");
522 goto out_master_put;
523 }
524
525 dspi->clk = devm_clk_get(&pdev->dev, "dspi");
526 if (IS_ERR(dspi->clk)) {
527 ret = PTR_ERR(dspi->clk);
528 dev_err(&pdev->dev, "unable to get clock\n");
529 goto out_master_put;
530 }
531 clk_prepare_enable(dspi->clk);
532
533 init_waitqueue_head(&dspi->waitq);
Axel Lin017145f2014-02-14 12:49:12 +0800534 platform_set_drvdata(pdev, master);
Chao Fu349ad662013-08-16 11:08:55 +0800535
Chao Fu9298bc72015-01-27 16:27:22 +0530536 ret = spi_register_master(master);
Chao Fu349ad662013-08-16 11:08:55 +0800537 if (ret != 0) {
538 dev_err(&pdev->dev, "Problem registering DSPI master\n");
539 goto out_clk_put;
540 }
541
Chao Fu349ad662013-08-16 11:08:55 +0800542 return ret;
543
544out_clk_put:
545 clk_disable_unprepare(dspi->clk);
546out_master_put:
547 spi_master_put(master);
Chao Fu349ad662013-08-16 11:08:55 +0800548
549 return ret;
550}
551
552static int dspi_remove(struct platform_device *pdev)
553{
Axel Lin017145f2014-02-14 12:49:12 +0800554 struct spi_master *master = platform_get_drvdata(pdev);
555 struct fsl_dspi *dspi = spi_master_get_devdata(master);
Chao Fu349ad662013-08-16 11:08:55 +0800556
557 /* Disconnect from the SPI framework */
Wei Yongjun05209f42013-10-12 15:15:31 +0800558 clk_disable_unprepare(dspi->clk);
Chao Fu9298bc72015-01-27 16:27:22 +0530559 spi_unregister_master(dspi->master);
560 spi_master_put(dspi->master);
Chao Fu349ad662013-08-16 11:08:55 +0800561
562 return 0;
563}
564
565static struct platform_driver fsl_dspi_driver = {
566 .driver.name = DRIVER_NAME,
567 .driver.of_match_table = fsl_dspi_dt_ids,
568 .driver.owner = THIS_MODULE,
569 .driver.pm = &dspi_pm,
570 .probe = dspi_probe,
571 .remove = dspi_remove,
572};
573module_platform_driver(fsl_dspi_driver);
574
575MODULE_DESCRIPTION("Freescale DSPI Controller Driver");
Uwe Kleine-Königb444d1d2013-09-10 10:46:33 +0200576MODULE_LICENSE("GPL");
Chao Fu349ad662013-08-16 11:08:55 +0800577MODULE_ALIAS("platform:" DRIVER_NAME);