blob: 21ef5d481faf4b5b9a3e8decf7de041e8da49cd7 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Dragos Carp00b8fd22007-05-10 22:22:52 -07002/*
Grant Likely57cc0972008-05-14 16:05:29 -07003 * MPC52xx PSC in SPI mode driver.
Dragos Carp00b8fd22007-05-10 22:22:52 -07004 *
5 * Maintainer: Dragos Carp
6 *
7 * Copyright (C) 2006 TOPTICA Photonics AG.
Dragos Carp00b8fd22007-05-10 22:22:52 -07008 */
9
10#include <linux/module.h>
Anton Vorontsov73902842009-06-17 16:26:05 -070011#include <linux/types.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070012#include <linux/errno.h>
13#include <linux/interrupt.h>
Grant Likely22ae7822010-07-29 11:49:01 -060014#include <linux/of_address.h>
Stephen Rothwell76ef7dd2008-05-23 16:35:47 +100015#include <linux/of_platform.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070016#include <linux/workqueue.h>
17#include <linux/completion.h>
18#include <linux/io.h>
19#include <linux/delay.h>
20#include <linux/spi/spi.h>
21#include <linux/fsl_devices.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070023
24#include <asm/mpc52xx.h>
25#include <asm/mpc52xx_psc.h>
26
27#define MCLK 20000000 /* PSC port MClk in hz */
28
29struct mpc52xx_psc_spi {
30 /* fsl_spi_platform data */
Anton Vorontsov73902842009-06-17 16:26:05 -070031 void (*cs_control)(struct spi_device *spi, bool on);
Dragos Carp00b8fd22007-05-10 22:22:52 -070032 u32 sysclk;
33
34 /* driver internal data */
35 struct mpc52xx_psc __iomem *psc;
Grant Likely4874cc12008-03-04 14:28:42 -080036 struct mpc52xx_psc_fifo __iomem *fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -070037 unsigned int irq;
38 u8 bits_per_word;
39 u8 busy;
40
Dragos Carp00b8fd22007-05-10 22:22:52 -070041 struct work_struct work;
42
43 struct list_head queue;
44 spinlock_t lock;
45
46 struct completion done;
47};
48
49/* controller state */
50struct mpc52xx_psc_spi_cs {
51 int bits_per_word;
52 int speed_hz;
53};
54
55/* set clock freq, clock ramp, bits per work
56 * if t is NULL then reset the values to the default values
57 */
58static int mpc52xx_psc_spi_transfer_setup(struct spi_device *spi,
59 struct spi_transfer *t)
60{
61 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
62
63 cs->speed_hz = (t && t->speed_hz)
64 ? t->speed_hz : spi->max_speed_hz;
65 cs->bits_per_word = (t && t->bits_per_word)
66 ? t->bits_per_word : spi->bits_per_word;
67 cs->bits_per_word = ((cs->bits_per_word + 7) / 8) * 8;
68 return 0;
69}
70
71static void mpc52xx_psc_spi_activate_cs(struct spi_device *spi)
72{
73 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
74 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
75 struct mpc52xx_psc __iomem *psc = mps->psc;
76 u32 sicr;
77 u16 ccr;
78
79 sicr = in_be32(&psc->sicr);
80
81 /* Set clock phase and polarity */
82 if (spi->mode & SPI_CPHA)
83 sicr |= 0x00001000;
84 else
85 sicr &= ~0x00001000;
86 if (spi->mode & SPI_CPOL)
87 sicr |= 0x00002000;
88 else
89 sicr &= ~0x00002000;
90
91 if (spi->mode & SPI_LSB_FIRST)
92 sicr |= 0x10000000;
93 else
94 sicr &= ~0x10000000;
95 out_be32(&psc->sicr, sicr);
96
97 /* Set clock frequency and bits per word
98 * Because psc->ccr is defined as 16bit register instead of 32bit
99 * just set the lower byte of BitClkDiv
100 */
Grant Likelya897ea12008-10-08 09:02:11 -0600101 ccr = in_be16((u16 __iomem *)&psc->ccr);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700102 ccr &= 0xFF00;
103 if (cs->speed_hz)
104 ccr |= (MCLK / cs->speed_hz - 1) & 0xFF;
105 else /* by default SPI Clk 1MHz */
106 ccr |= (MCLK / 1000000 - 1) & 0xFF;
Grant Likelya897ea12008-10-08 09:02:11 -0600107 out_be16((u16 __iomem *)&psc->ccr, ccr);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700108 mps->bits_per_word = cs->bits_per_word;
109
Anton Vorontsov73902842009-06-17 16:26:05 -0700110 if (mps->cs_control)
111 mps->cs_control(spi, (spi->mode & SPI_CS_HIGH) ? 1 : 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700112}
113
114static void mpc52xx_psc_spi_deactivate_cs(struct spi_device *spi)
115{
116 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
117
Anton Vorontsov73902842009-06-17 16:26:05 -0700118 if (mps->cs_control)
119 mps->cs_control(spi, (spi->mode & SPI_CS_HIGH) ? 0 : 1);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700120}
121
122#define MPC52xx_PSC_BUFSIZE (MPC52xx_PSC_RFNUM_MASK + 1)
123/* wake up when 80% fifo full */
124#define MPC52xx_PSC_RFALARM (MPC52xx_PSC_BUFSIZE * 20 / 100)
125
126static int mpc52xx_psc_spi_transfer_rxtx(struct spi_device *spi,
127 struct spi_transfer *t)
128{
129 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
130 struct mpc52xx_psc __iomem *psc = mps->psc;
Grant Likely4874cc12008-03-04 14:28:42 -0800131 struct mpc52xx_psc_fifo __iomem *fifo = mps->fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700132 unsigned rb = 0; /* number of bytes receieved */
133 unsigned sb = 0; /* number of bytes sent */
134 unsigned char *rx_buf = (unsigned char *)t->rx_buf;
135 unsigned char *tx_buf = (unsigned char *)t->tx_buf;
136 unsigned rfalarm;
137 unsigned send_at_once = MPC52xx_PSC_BUFSIZE;
138 unsigned recv_at_once;
Stefano Babicb7d271d2008-12-01 13:13:53 -0800139 int last_block = 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700140
141 if (!t->tx_buf && !t->rx_buf && t->len)
142 return -EINVAL;
143
144 /* enable transmiter/receiver */
145 out_8(&psc->command, MPC52xx_PSC_TX_ENABLE | MPC52xx_PSC_RX_ENABLE);
146 while (rb < t->len) {
147 if (t->len - rb > MPC52xx_PSC_BUFSIZE) {
148 rfalarm = MPC52xx_PSC_RFALARM;
Stefano Babicb7d271d2008-12-01 13:13:53 -0800149 last_block = 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700150 } else {
151 send_at_once = t->len - sb;
152 rfalarm = MPC52xx_PSC_BUFSIZE - (t->len - rb);
Stefano Babicb7d271d2008-12-01 13:13:53 -0800153 last_block = 1;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700154 }
155
156 dev_dbg(&spi->dev, "send %d bytes...\n", send_at_once);
Luotao Fu9a7867e2008-07-28 15:46:32 -0700157 for (; send_at_once; sb++, send_at_once--) {
158 /* set EOF flag before the last word is sent */
Stefano Babicb7d271d2008-12-01 13:13:53 -0800159 if (send_at_once == 1 && last_block)
Luotao Fu9a7867e2008-07-28 15:46:32 -0700160 out_8(&psc->ircr2, 0x01);
161
162 if (tx_buf)
Dragos Carp00b8fd22007-05-10 22:22:52 -0700163 out_8(&psc->mpc52xx_psc_buffer_8, tx_buf[sb]);
Luotao Fu9a7867e2008-07-28 15:46:32 -0700164 else
Dragos Carp00b8fd22007-05-10 22:22:52 -0700165 out_8(&psc->mpc52xx_psc_buffer_8, 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700166 }
167
168
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200169 /* enable interrupts and wait for wake up
Dragos Carp00b8fd22007-05-10 22:22:52 -0700170 * if just one byte is expected the Rx FIFO genererates no
171 * FFULL interrupt, so activate the RxRDY interrupt
172 */
173 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
174 if (t->len - rb == 1) {
175 out_8(&psc->mode, 0);
176 } else {
177 out_8(&psc->mode, MPC52xx_PSC_MODE_FFULL);
Grant Likely4874cc12008-03-04 14:28:42 -0800178 out_be16(&fifo->rfalarm, rfalarm);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700179 }
180 out_be16(&psc->mpc52xx_psc_imr, MPC52xx_PSC_IMR_RXRDY);
181 wait_for_completion(&mps->done);
Grant Likely4874cc12008-03-04 14:28:42 -0800182 recv_at_once = in_be16(&fifo->rfnum);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700183 dev_dbg(&spi->dev, "%d bytes received\n", recv_at_once);
184
185 send_at_once = recv_at_once;
186 if (rx_buf) {
187 for (; recv_at_once; rb++, recv_at_once--)
188 rx_buf[rb] = in_8(&psc->mpc52xx_psc_buffer_8);
189 } else {
190 for (; recv_at_once; rb++, recv_at_once--)
191 in_8(&psc->mpc52xx_psc_buffer_8);
192 }
193 }
194 /* disable transmiter/receiver */
195 out_8(&psc->command, MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE);
196
197 return 0;
198}
199
200static void mpc52xx_psc_spi_work(struct work_struct *work)
201{
202 struct mpc52xx_psc_spi *mps =
203 container_of(work, struct mpc52xx_psc_spi, work);
204
205 spin_lock_irq(&mps->lock);
206 mps->busy = 1;
207 while (!list_empty(&mps->queue)) {
208 struct spi_message *m;
209 struct spi_device *spi;
210 struct spi_transfer *t = NULL;
211 unsigned cs_change;
212 int status;
213
214 m = container_of(mps->queue.next, struct spi_message, queue);
215 list_del_init(&m->queue);
216 spin_unlock_irq(&mps->lock);
217
218 spi = m->spi;
219 cs_change = 1;
220 status = 0;
221 list_for_each_entry (t, &m->transfers, transfer_list) {
222 if (t->bits_per_word || t->speed_hz) {
223 status = mpc52xx_psc_spi_transfer_setup(spi, t);
224 if (status < 0)
225 break;
226 }
227
228 if (cs_change)
229 mpc52xx_psc_spi_activate_cs(spi);
230 cs_change = t->cs_change;
231
232 status = mpc52xx_psc_spi_transfer_rxtx(spi, t);
233 if (status)
234 break;
235 m->actual_length += t->len;
236
Alexandru Ardeleane74dc5c2019-09-26 13:51:37 +0300237 spi_transfer_delay_exec(t);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700238
239 if (cs_change)
240 mpc52xx_psc_spi_deactivate_cs(spi);
241 }
242
243 m->status = status;
Axel Lin0a6d3872014-04-02 22:21:04 +0800244 if (m->complete)
245 m->complete(m->context);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700246
247 if (status || !cs_change)
248 mpc52xx_psc_spi_deactivate_cs(spi);
249
250 mpc52xx_psc_spi_transfer_setup(spi, NULL);
251
252 spin_lock_irq(&mps->lock);
253 }
254 mps->busy = 0;
255 spin_unlock_irq(&mps->lock);
256}
257
258static int mpc52xx_psc_spi_setup(struct spi_device *spi)
259{
260 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
261 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
262 unsigned long flags;
263
264 if (spi->bits_per_word%8)
265 return -EINVAL;
266
267 if (!cs) {
Zhiqi Song75d4c2d2021-05-18 09:38:19 +0800268 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700269 if (!cs)
270 return -ENOMEM;
271 spi->controller_state = cs;
272 }
273
274 cs->bits_per_word = spi->bits_per_word;
275 cs->speed_hz = spi->max_speed_hz;
276
277 spin_lock_irqsave(&mps->lock, flags);
278 if (!mps->busy)
279 mpc52xx_psc_spi_deactivate_cs(spi);
280 spin_unlock_irqrestore(&mps->lock, flags);
281
282 return 0;
283}
284
285static int mpc52xx_psc_spi_transfer(struct spi_device *spi,
286 struct spi_message *m)
287{
288 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
289 unsigned long flags;
290
291 m->actual_length = 0;
292 m->status = -EINPROGRESS;
293
294 spin_lock_irqsave(&mps->lock, flags);
295 list_add_tail(&m->queue, &mps->queue);
Bhaktipriya Shridharac96b732016-07-02 14:27:06 +0530296 schedule_work(&mps->work);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700297 spin_unlock_irqrestore(&mps->lock, flags);
298
299 return 0;
300}
301
302static void mpc52xx_psc_spi_cleanup(struct spi_device *spi)
303{
304 kfree(spi->controller_state);
305}
306
307static int mpc52xx_psc_spi_port_config(int psc_id, struct mpc52xx_psc_spi *mps)
308{
Dragos Carp00b8fd22007-05-10 22:22:52 -0700309 struct mpc52xx_psc __iomem *psc = mps->psc;
Grant Likely4874cc12008-03-04 14:28:42 -0800310 struct mpc52xx_psc_fifo __iomem *fifo = mps->fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700311 u32 mclken_div;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000312 int ret;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700313
Dragos Carp00b8fd22007-05-10 22:22:52 -0700314 /* default sysclk is 512MHz */
Grant Likely4fb4c552008-01-24 22:25:31 -0700315 mclken_div = (mps->sysclk ? mps->sysclk : 512000000) / MCLK;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000316 ret = mpc52xx_set_psc_clkdiv(psc_id, mclken_div);
317 if (ret)
318 return ret;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700319
320 /* Reset the PSC into a known state */
321 out_8(&psc->command, MPC52xx_PSC_RST_RX);
322 out_8(&psc->command, MPC52xx_PSC_RST_TX);
323 out_8(&psc->command, MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE);
324
325 /* Disable interrupts, interrupts are based on alarm level */
326 out_be16(&psc->mpc52xx_psc_imr, 0);
327 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
Grant Likely4874cc12008-03-04 14:28:42 -0800328 out_8(&fifo->rfcntl, 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700329 out_8(&psc->mode, MPC52xx_PSC_MODE_FFULL);
330
331 /* Configure 8bit codec mode as a SPI master and use EOF flags */
332 /* SICR_SIM_CODEC8|SICR_GENCLK|SICR_SPI|SICR_MSTR|SICR_USEEOF */
333 out_be32(&psc->sicr, 0x0180C800);
Grant Likelya897ea12008-10-08 09:02:11 -0600334 out_be16((u16 __iomem *)&psc->ccr, 0x070F); /* default SPI Clk 1MHz */
Dragos Carp00b8fd22007-05-10 22:22:52 -0700335
336 /* Set 2ms DTL delay */
337 out_8(&psc->ctur, 0x00);
338 out_8(&psc->ctlr, 0x84);
339
340 mps->bits_per_word = 8;
341
Wolfram Sangf856cf02009-11-02 03:53:11 +0000342 return 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700343}
344
345static irqreturn_t mpc52xx_psc_spi_isr(int irq, void *dev_id)
346{
347 struct mpc52xx_psc_spi *mps = (struct mpc52xx_psc_spi *)dev_id;
348 struct mpc52xx_psc __iomem *psc = mps->psc;
349
350 /* disable interrupt and wake up the work queue */
351 if (in_be16(&psc->mpc52xx_psc_isr) & MPC52xx_PSC_IMR_RXRDY) {
352 out_be16(&psc->mpc52xx_psc_imr, 0);
353 complete(&mps->done);
354 return IRQ_HANDLED;
355 }
356 return IRQ_NONE;
357}
358
359/* bus_num is used only for the case dev->platform_data == NULL */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000360static int mpc52xx_psc_spi_do_probe(struct device *dev, u32 regaddr,
Dragos Carp00b8fd22007-05-10 22:22:52 -0700361 u32 size, unsigned int irq, s16 bus_num)
362{
Jingoo Han8074cf02013-07-30 16:58:59 +0900363 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700364 struct mpc52xx_psc_spi *mps;
365 struct spi_master *master;
366 int ret;
367
Zhiqi Song75d4c2d2021-05-18 09:38:19 +0800368 master = spi_alloc_master(dev, sizeof(*mps));
Dragos Carp00b8fd22007-05-10 22:22:52 -0700369 if (master == NULL)
370 return -ENOMEM;
371
372 dev_set_drvdata(dev, master);
373 mps = spi_master_get_devdata(master);
374
David Brownelle7db06b2009-06-17 16:26:04 -0700375 /* the spi->mode bits understood by this driver: */
376 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST;
377
Dragos Carp00b8fd22007-05-10 22:22:52 -0700378 mps->irq = irq;
379 if (pdata == NULL) {
Jarkko Nikulaf6bd03a2013-10-11 13:54:00 +0300380 dev_warn(dev,
381 "probe called without platform data, no cs_control function will be called\n");
Anton Vorontsov73902842009-06-17 16:26:05 -0700382 mps->cs_control = NULL;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700383 mps->sysclk = 0;
384 master->bus_num = bus_num;
385 master->num_chipselect = 255;
386 } else {
Anton Vorontsov73902842009-06-17 16:26:05 -0700387 mps->cs_control = pdata->cs_control;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700388 mps->sysclk = pdata->sysclk;
389 master->bus_num = pdata->bus_num;
390 master->num_chipselect = pdata->max_chipselect;
391 }
392 master->setup = mpc52xx_psc_spi_setup;
393 master->transfer = mpc52xx_psc_spi_transfer;
394 master->cleanup = mpc52xx_psc_spi_cleanup;
Anatolij Gustschin12b15e82010-07-27 22:35:58 +0200395 master->dev.of_node = dev->of_node;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700396
397 mps->psc = ioremap(regaddr, size);
398 if (!mps->psc) {
399 dev_err(dev, "could not ioremap I/O port range\n");
400 ret = -EFAULT;
401 goto free_master;
402 }
Grant Likely4874cc12008-03-04 14:28:42 -0800403 /* On the 5200, fifo regs are immediately ajacent to the psc regs */
404 mps->fifo = ((void __iomem *)mps->psc) + sizeof(struct mpc52xx_psc);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700405
406 ret = request_irq(mps->irq, mpc52xx_psc_spi_isr, 0, "mpc52xx-psc-spi",
407 mps);
408 if (ret)
409 goto free_master;
410
411 ret = mpc52xx_psc_spi_port_config(master->bus_num, mps);
Wolfram Sangf856cf02009-11-02 03:53:11 +0000412 if (ret < 0) {
413 dev_err(dev, "can't configure PSC! Is it capable of SPI?\n");
Dragos Carp00b8fd22007-05-10 22:22:52 -0700414 goto free_irq;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000415 }
Dragos Carp00b8fd22007-05-10 22:22:52 -0700416
417 spin_lock_init(&mps->lock);
418 init_completion(&mps->done);
419 INIT_WORK(&mps->work, mpc52xx_psc_spi_work);
420 INIT_LIST_HEAD(&mps->queue);
421
Dragos Carp00b8fd22007-05-10 22:22:52 -0700422 ret = spi_register_master(master);
423 if (ret < 0)
Bhaktipriya Shridharac96b732016-07-02 14:27:06 +0530424 goto free_irq;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700425
426 return ret;
427
Dragos Carp00b8fd22007-05-10 22:22:52 -0700428free_irq:
429 free_irq(mps->irq, mps);
430free_master:
431 if (mps->psc)
432 iounmap(mps->psc);
433 spi_master_put(master);
434
435 return ret;
436}
437
Grant Likelyfd4a3192012-12-07 16:57:14 +0000438static int mpc52xx_psc_spi_of_probe(struct platform_device *op)
Dragos Carp00b8fd22007-05-10 22:22:52 -0700439{
440 const u32 *regaddr_p;
441 u64 regaddr64, size64;
442 s16 id = -1;
443
Grant Likely61c7a082010-04-13 16:12:29 -0700444 regaddr_p = of_get_address(op->dev.of_node, 0, &size64, NULL);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700445 if (!regaddr_p) {
Wolfram Sang5cc17d72009-11-03 23:49:20 +0000446 dev_err(&op->dev, "Invalid PSC address\n");
Dragos Carp00b8fd22007-05-10 22:22:52 -0700447 return -EINVAL;
448 }
Grant Likely61c7a082010-04-13 16:12:29 -0700449 regaddr64 = of_translate_address(op->dev.of_node, regaddr_p);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700450
Domen Puncer88887352007-05-23 13:57:32 -0700451 /* get PSC id (1..6, used by port_config) */
Dragos Carp00b8fd22007-05-10 22:22:52 -0700452 if (op->dev.platform_data == NULL) {
Domen Puncer88887352007-05-23 13:57:32 -0700453 const u32 *psc_nump;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700454
Grant Likely61c7a082010-04-13 16:12:29 -0700455 psc_nump = of_get_property(op->dev.of_node, "cell-index", NULL);
Domen Puncer88887352007-05-23 13:57:32 -0700456 if (!psc_nump || *psc_nump > 5) {
Wolfram Sang5cc17d72009-11-03 23:49:20 +0000457 dev_err(&op->dev, "Invalid cell-index property\n");
Domen Puncer88887352007-05-23 13:57:32 -0700458 return -EINVAL;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700459 }
Domen Puncer88887352007-05-23 13:57:32 -0700460 id = *psc_nump + 1;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700461 }
462
Anatolij Gustschin12b15e82010-07-27 22:35:58 +0200463 return mpc52xx_psc_spi_do_probe(&op->dev, (u32)regaddr64, (u32)size64,
Grant Likely61c7a082010-04-13 16:12:29 -0700464 irq_of_parse_and_map(op->dev.of_node, 0), id);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700465}
466
Grant Likelyfd4a3192012-12-07 16:57:14 +0000467static int mpc52xx_psc_spi_of_remove(struct platform_device *op)
Dragos Carp00b8fd22007-05-10 22:22:52 -0700468{
Jingoo Han24b5a822013-05-23 19:20:40 +0900469 struct spi_master *master = spi_master_get(platform_get_drvdata(op));
Wolfram Sang5aa68b82010-12-17 15:44:00 +0100470 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(master);
471
Bhaktipriya Shridharac96b732016-07-02 14:27:06 +0530472 flush_work(&mps->work);
Wolfram Sang5aa68b82010-12-17 15:44:00 +0100473 spi_unregister_master(master);
474 free_irq(mps->irq, mps);
475 if (mps->psc)
476 iounmap(mps->psc);
Guenter Roeckc8c87c62012-08-18 09:29:23 -0700477 spi_master_put(master);
Wolfram Sang5aa68b82010-12-17 15:44:00 +0100478
479 return 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700480}
481
Márton Németh631e61b72010-01-20 13:49:44 -0700482static const struct of_device_id mpc52xx_psc_spi_of_match[] = {
Grant Likely66ffbe42008-01-24 22:25:31 -0700483 { .compatible = "fsl,mpc5200-psc-spi", },
484 { .compatible = "mpc5200-psc-spi", }, /* old */
485 {}
Dragos Carp00b8fd22007-05-10 22:22:52 -0700486};
487
488MODULE_DEVICE_TABLE(of, mpc52xx_psc_spi_of_match);
489
Grant Likely18d306d2011-02-22 21:02:43 -0700490static struct platform_driver mpc52xx_psc_spi_of_driver = {
Dragos Carp00b8fd22007-05-10 22:22:52 -0700491 .probe = mpc52xx_psc_spi_of_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000492 .remove = mpc52xx_psc_spi_of_remove,
Dragos Carp00b8fd22007-05-10 22:22:52 -0700493 .driver = {
494 .name = "mpc52xx-psc-spi",
Grant Likely40182942010-04-13 16:13:02 -0700495 .of_match_table = mpc52xx_psc_spi_of_match,
Dragos Carp00b8fd22007-05-10 22:22:52 -0700496 },
497};
Grant Likely940ab882011-10-05 11:29:49 -0600498module_platform_driver(mpc52xx_psc_spi_of_driver);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700499
Dragos Carp00b8fd22007-05-10 22:22:52 -0700500MODULE_AUTHOR("Dragos Carp");
501MODULE_DESCRIPTION("MPC52xx PSC SPI Driver");
502MODULE_LICENSE("GPL");