blob: 7104cb739da7eceab4af5a2bcf644c0aaa239d26 [file] [log] [blame]
Dragos Carp00b8fd22007-05-10 22:22:52 -07001/*
Grant Likely57cc0972008-05-14 16:05:29 -07002 * MPC52xx PSC in SPI mode driver.
Dragos Carp00b8fd22007-05-10 22:22:52 -07003 *
4 * Maintainer: Dragos Carp
5 *
6 * Copyright (C) 2006 TOPTICA Photonics AG.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/module.h>
15#include <linux/init.h>
Anton Vorontsov73902842009-06-17 16:26:05 -070016#include <linux/types.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070017#include <linux/errno.h>
18#include <linux/interrupt.h>
Stephen Rothwell76ef7dd2008-05-23 16:35:47 +100019#include <linux/of_platform.h>
Grant Likelyad657762009-11-04 15:23:37 -070020#include <linux/of_spi.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070021#include <linux/workqueue.h>
22#include <linux/completion.h>
23#include <linux/io.h>
24#include <linux/delay.h>
25#include <linux/spi/spi.h>
26#include <linux/fsl_devices.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Dragos Carp00b8fd22007-05-10 22:22:52 -070028
29#include <asm/mpc52xx.h>
30#include <asm/mpc52xx_psc.h>
31
32#define MCLK 20000000 /* PSC port MClk in hz */
33
34struct mpc52xx_psc_spi {
35 /* fsl_spi_platform data */
Anton Vorontsov73902842009-06-17 16:26:05 -070036 void (*cs_control)(struct spi_device *spi, bool on);
Dragos Carp00b8fd22007-05-10 22:22:52 -070037 u32 sysclk;
38
39 /* driver internal data */
40 struct mpc52xx_psc __iomem *psc;
Grant Likely4874cc12008-03-04 14:28:42 -080041 struct mpc52xx_psc_fifo __iomem *fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -070042 unsigned int irq;
43 u8 bits_per_word;
44 u8 busy;
45
46 struct workqueue_struct *workqueue;
47 struct work_struct work;
48
49 struct list_head queue;
50 spinlock_t lock;
51
52 struct completion done;
53};
54
55/* controller state */
56struct mpc52xx_psc_spi_cs {
57 int bits_per_word;
58 int speed_hz;
59};
60
61/* set clock freq, clock ramp, bits per work
62 * if t is NULL then reset the values to the default values
63 */
64static int mpc52xx_psc_spi_transfer_setup(struct spi_device *spi,
65 struct spi_transfer *t)
66{
67 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
68
69 cs->speed_hz = (t && t->speed_hz)
70 ? t->speed_hz : spi->max_speed_hz;
71 cs->bits_per_word = (t && t->bits_per_word)
72 ? t->bits_per_word : spi->bits_per_word;
73 cs->bits_per_word = ((cs->bits_per_word + 7) / 8) * 8;
74 return 0;
75}
76
77static void mpc52xx_psc_spi_activate_cs(struct spi_device *spi)
78{
79 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
80 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
81 struct mpc52xx_psc __iomem *psc = mps->psc;
82 u32 sicr;
83 u16 ccr;
84
85 sicr = in_be32(&psc->sicr);
86
87 /* Set clock phase and polarity */
88 if (spi->mode & SPI_CPHA)
89 sicr |= 0x00001000;
90 else
91 sicr &= ~0x00001000;
92 if (spi->mode & SPI_CPOL)
93 sicr |= 0x00002000;
94 else
95 sicr &= ~0x00002000;
96
97 if (spi->mode & SPI_LSB_FIRST)
98 sicr |= 0x10000000;
99 else
100 sicr &= ~0x10000000;
101 out_be32(&psc->sicr, sicr);
102
103 /* Set clock frequency and bits per word
104 * Because psc->ccr is defined as 16bit register instead of 32bit
105 * just set the lower byte of BitClkDiv
106 */
Grant Likelya897ea12008-10-08 09:02:11 -0600107 ccr = in_be16((u16 __iomem *)&psc->ccr);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700108 ccr &= 0xFF00;
109 if (cs->speed_hz)
110 ccr |= (MCLK / cs->speed_hz - 1) & 0xFF;
111 else /* by default SPI Clk 1MHz */
112 ccr |= (MCLK / 1000000 - 1) & 0xFF;
Grant Likelya897ea12008-10-08 09:02:11 -0600113 out_be16((u16 __iomem *)&psc->ccr, ccr);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700114 mps->bits_per_word = cs->bits_per_word;
115
Anton Vorontsov73902842009-06-17 16:26:05 -0700116 if (mps->cs_control)
117 mps->cs_control(spi, (spi->mode & SPI_CS_HIGH) ? 1 : 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700118}
119
120static void mpc52xx_psc_spi_deactivate_cs(struct spi_device *spi)
121{
122 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
123
Anton Vorontsov73902842009-06-17 16:26:05 -0700124 if (mps->cs_control)
125 mps->cs_control(spi, (spi->mode & SPI_CS_HIGH) ? 0 : 1);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700126}
127
128#define MPC52xx_PSC_BUFSIZE (MPC52xx_PSC_RFNUM_MASK + 1)
129/* wake up when 80% fifo full */
130#define MPC52xx_PSC_RFALARM (MPC52xx_PSC_BUFSIZE * 20 / 100)
131
132static int mpc52xx_psc_spi_transfer_rxtx(struct spi_device *spi,
133 struct spi_transfer *t)
134{
135 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
136 struct mpc52xx_psc __iomem *psc = mps->psc;
Grant Likely4874cc12008-03-04 14:28:42 -0800137 struct mpc52xx_psc_fifo __iomem *fifo = mps->fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700138 unsigned rb = 0; /* number of bytes receieved */
139 unsigned sb = 0; /* number of bytes sent */
140 unsigned char *rx_buf = (unsigned char *)t->rx_buf;
141 unsigned char *tx_buf = (unsigned char *)t->tx_buf;
142 unsigned rfalarm;
143 unsigned send_at_once = MPC52xx_PSC_BUFSIZE;
144 unsigned recv_at_once;
Stefano Babicb7d271d2008-12-01 13:13:53 -0800145 int last_block = 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700146
147 if (!t->tx_buf && !t->rx_buf && t->len)
148 return -EINVAL;
149
150 /* enable transmiter/receiver */
151 out_8(&psc->command, MPC52xx_PSC_TX_ENABLE | MPC52xx_PSC_RX_ENABLE);
152 while (rb < t->len) {
153 if (t->len - rb > MPC52xx_PSC_BUFSIZE) {
154 rfalarm = MPC52xx_PSC_RFALARM;
Stefano Babicb7d271d2008-12-01 13:13:53 -0800155 last_block = 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700156 } else {
157 send_at_once = t->len - sb;
158 rfalarm = MPC52xx_PSC_BUFSIZE - (t->len - rb);
Stefano Babicb7d271d2008-12-01 13:13:53 -0800159 last_block = 1;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700160 }
161
162 dev_dbg(&spi->dev, "send %d bytes...\n", send_at_once);
Luotao Fu9a7867e2008-07-28 15:46:32 -0700163 for (; send_at_once; sb++, send_at_once--) {
164 /* set EOF flag before the last word is sent */
Stefano Babicb7d271d2008-12-01 13:13:53 -0800165 if (send_at_once == 1 && last_block)
Luotao Fu9a7867e2008-07-28 15:46:32 -0700166 out_8(&psc->ircr2, 0x01);
167
168 if (tx_buf)
Dragos Carp00b8fd22007-05-10 22:22:52 -0700169 out_8(&psc->mpc52xx_psc_buffer_8, tx_buf[sb]);
Luotao Fu9a7867e2008-07-28 15:46:32 -0700170 else
Dragos Carp00b8fd22007-05-10 22:22:52 -0700171 out_8(&psc->mpc52xx_psc_buffer_8, 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700172 }
173
174
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200175 /* enable interrupts and wait for wake up
Dragos Carp00b8fd22007-05-10 22:22:52 -0700176 * if just one byte is expected the Rx FIFO genererates no
177 * FFULL interrupt, so activate the RxRDY interrupt
178 */
179 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
180 if (t->len - rb == 1) {
181 out_8(&psc->mode, 0);
182 } else {
183 out_8(&psc->mode, MPC52xx_PSC_MODE_FFULL);
Grant Likely4874cc12008-03-04 14:28:42 -0800184 out_be16(&fifo->rfalarm, rfalarm);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700185 }
186 out_be16(&psc->mpc52xx_psc_imr, MPC52xx_PSC_IMR_RXRDY);
187 wait_for_completion(&mps->done);
Grant Likely4874cc12008-03-04 14:28:42 -0800188 recv_at_once = in_be16(&fifo->rfnum);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700189 dev_dbg(&spi->dev, "%d bytes received\n", recv_at_once);
190
191 send_at_once = recv_at_once;
192 if (rx_buf) {
193 for (; recv_at_once; rb++, recv_at_once--)
194 rx_buf[rb] = in_8(&psc->mpc52xx_psc_buffer_8);
195 } else {
196 for (; recv_at_once; rb++, recv_at_once--)
197 in_8(&psc->mpc52xx_psc_buffer_8);
198 }
199 }
200 /* disable transmiter/receiver */
201 out_8(&psc->command, MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE);
202
203 return 0;
204}
205
206static void mpc52xx_psc_spi_work(struct work_struct *work)
207{
208 struct mpc52xx_psc_spi *mps =
209 container_of(work, struct mpc52xx_psc_spi, work);
210
211 spin_lock_irq(&mps->lock);
212 mps->busy = 1;
213 while (!list_empty(&mps->queue)) {
214 struct spi_message *m;
215 struct spi_device *spi;
216 struct spi_transfer *t = NULL;
217 unsigned cs_change;
218 int status;
219
220 m = container_of(mps->queue.next, struct spi_message, queue);
221 list_del_init(&m->queue);
222 spin_unlock_irq(&mps->lock);
223
224 spi = m->spi;
225 cs_change = 1;
226 status = 0;
227 list_for_each_entry (t, &m->transfers, transfer_list) {
228 if (t->bits_per_word || t->speed_hz) {
229 status = mpc52xx_psc_spi_transfer_setup(spi, t);
230 if (status < 0)
231 break;
232 }
233
234 if (cs_change)
235 mpc52xx_psc_spi_activate_cs(spi);
236 cs_change = t->cs_change;
237
238 status = mpc52xx_psc_spi_transfer_rxtx(spi, t);
239 if (status)
240 break;
241 m->actual_length += t->len;
242
243 if (t->delay_usecs)
244 udelay(t->delay_usecs);
245
246 if (cs_change)
247 mpc52xx_psc_spi_deactivate_cs(spi);
248 }
249
250 m->status = status;
251 m->complete(m->context);
252
253 if (status || !cs_change)
254 mpc52xx_psc_spi_deactivate_cs(spi);
255
256 mpc52xx_psc_spi_transfer_setup(spi, NULL);
257
258 spin_lock_irq(&mps->lock);
259 }
260 mps->busy = 0;
261 spin_unlock_irq(&mps->lock);
262}
263
264static int mpc52xx_psc_spi_setup(struct spi_device *spi)
265{
266 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
267 struct mpc52xx_psc_spi_cs *cs = spi->controller_state;
268 unsigned long flags;
269
270 if (spi->bits_per_word%8)
271 return -EINVAL;
272
273 if (!cs) {
274 cs = kzalloc(sizeof *cs, GFP_KERNEL);
275 if (!cs)
276 return -ENOMEM;
277 spi->controller_state = cs;
278 }
279
280 cs->bits_per_word = spi->bits_per_word;
281 cs->speed_hz = spi->max_speed_hz;
282
283 spin_lock_irqsave(&mps->lock, flags);
284 if (!mps->busy)
285 mpc52xx_psc_spi_deactivate_cs(spi);
286 spin_unlock_irqrestore(&mps->lock, flags);
287
288 return 0;
289}
290
291static int mpc52xx_psc_spi_transfer(struct spi_device *spi,
292 struct spi_message *m)
293{
294 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(spi->master);
295 unsigned long flags;
296
297 m->actual_length = 0;
298 m->status = -EINPROGRESS;
299
300 spin_lock_irqsave(&mps->lock, flags);
301 list_add_tail(&m->queue, &mps->queue);
302 queue_work(mps->workqueue, &mps->work);
303 spin_unlock_irqrestore(&mps->lock, flags);
304
305 return 0;
306}
307
308static void mpc52xx_psc_spi_cleanup(struct spi_device *spi)
309{
310 kfree(spi->controller_state);
311}
312
313static int mpc52xx_psc_spi_port_config(int psc_id, struct mpc52xx_psc_spi *mps)
314{
Dragos Carp00b8fd22007-05-10 22:22:52 -0700315 struct mpc52xx_psc __iomem *psc = mps->psc;
Grant Likely4874cc12008-03-04 14:28:42 -0800316 struct mpc52xx_psc_fifo __iomem *fifo = mps->fifo;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700317 u32 mclken_div;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000318 int ret;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700319
Dragos Carp00b8fd22007-05-10 22:22:52 -0700320 /* default sysclk is 512MHz */
Grant Likely4fb4c552008-01-24 22:25:31 -0700321 mclken_div = (mps->sysclk ? mps->sysclk : 512000000) / MCLK;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000322 ret = mpc52xx_set_psc_clkdiv(psc_id, mclken_div);
323 if (ret)
324 return ret;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700325
326 /* Reset the PSC into a known state */
327 out_8(&psc->command, MPC52xx_PSC_RST_RX);
328 out_8(&psc->command, MPC52xx_PSC_RST_TX);
329 out_8(&psc->command, MPC52xx_PSC_TX_DISABLE | MPC52xx_PSC_RX_DISABLE);
330
331 /* Disable interrupts, interrupts are based on alarm level */
332 out_be16(&psc->mpc52xx_psc_imr, 0);
333 out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
Grant Likely4874cc12008-03-04 14:28:42 -0800334 out_8(&fifo->rfcntl, 0);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700335 out_8(&psc->mode, MPC52xx_PSC_MODE_FFULL);
336
337 /* Configure 8bit codec mode as a SPI master and use EOF flags */
338 /* SICR_SIM_CODEC8|SICR_GENCLK|SICR_SPI|SICR_MSTR|SICR_USEEOF */
339 out_be32(&psc->sicr, 0x0180C800);
Grant Likelya897ea12008-10-08 09:02:11 -0600340 out_be16((u16 __iomem *)&psc->ccr, 0x070F); /* default SPI Clk 1MHz */
Dragos Carp00b8fd22007-05-10 22:22:52 -0700341
342 /* Set 2ms DTL delay */
343 out_8(&psc->ctur, 0x00);
344 out_8(&psc->ctlr, 0x84);
345
346 mps->bits_per_word = 8;
347
Wolfram Sangf856cf02009-11-02 03:53:11 +0000348 return 0;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700349}
350
351static irqreturn_t mpc52xx_psc_spi_isr(int irq, void *dev_id)
352{
353 struct mpc52xx_psc_spi *mps = (struct mpc52xx_psc_spi *)dev_id;
354 struct mpc52xx_psc __iomem *psc = mps->psc;
355
356 /* disable interrupt and wake up the work queue */
357 if (in_be16(&psc->mpc52xx_psc_isr) & MPC52xx_PSC_IMR_RXRDY) {
358 out_be16(&psc->mpc52xx_psc_imr, 0);
359 complete(&mps->done);
360 return IRQ_HANDLED;
361 }
362 return IRQ_NONE;
363}
364
365/* bus_num is used only for the case dev->platform_data == NULL */
366static int __init mpc52xx_psc_spi_do_probe(struct device *dev, u32 regaddr,
367 u32 size, unsigned int irq, s16 bus_num)
368{
369 struct fsl_spi_platform_data *pdata = dev->platform_data;
370 struct mpc52xx_psc_spi *mps;
371 struct spi_master *master;
372 int ret;
373
Dragos Carp00b8fd22007-05-10 22:22:52 -0700374 master = spi_alloc_master(dev, sizeof *mps);
375 if (master == NULL)
376 return -ENOMEM;
377
378 dev_set_drvdata(dev, master);
379 mps = spi_master_get_devdata(master);
380
David Brownelle7db06b2009-06-17 16:26:04 -0700381 /* the spi->mode bits understood by this driver: */
382 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST;
383
Dragos Carp00b8fd22007-05-10 22:22:52 -0700384 mps->irq = irq;
385 if (pdata == NULL) {
386 dev_warn(dev, "probe called without platform data, no "
Anton Vorontsov73902842009-06-17 16:26:05 -0700387 "cs_control function will be called\n");
388 mps->cs_control = NULL;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700389 mps->sysclk = 0;
390 master->bus_num = bus_num;
391 master->num_chipselect = 255;
392 } else {
Anton Vorontsov73902842009-06-17 16:26:05 -0700393 mps->cs_control = pdata->cs_control;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700394 mps->sysclk = pdata->sysclk;
395 master->bus_num = pdata->bus_num;
396 master->num_chipselect = pdata->max_chipselect;
397 }
398 master->setup = mpc52xx_psc_spi_setup;
399 master->transfer = mpc52xx_psc_spi_transfer;
400 master->cleanup = mpc52xx_psc_spi_cleanup;
401
402 mps->psc = ioremap(regaddr, size);
403 if (!mps->psc) {
404 dev_err(dev, "could not ioremap I/O port range\n");
405 ret = -EFAULT;
406 goto free_master;
407 }
Grant Likely4874cc12008-03-04 14:28:42 -0800408 /* On the 5200, fifo regs are immediately ajacent to the psc regs */
409 mps->fifo = ((void __iomem *)mps->psc) + sizeof(struct mpc52xx_psc);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700410
411 ret = request_irq(mps->irq, mpc52xx_psc_spi_isr, 0, "mpc52xx-psc-spi",
412 mps);
413 if (ret)
414 goto free_master;
415
416 ret = mpc52xx_psc_spi_port_config(master->bus_num, mps);
Wolfram Sangf856cf02009-11-02 03:53:11 +0000417 if (ret < 0) {
418 dev_err(dev, "can't configure PSC! Is it capable of SPI?\n");
Dragos Carp00b8fd22007-05-10 22:22:52 -0700419 goto free_irq;
Wolfram Sangf856cf02009-11-02 03:53:11 +0000420 }
Dragos Carp00b8fd22007-05-10 22:22:52 -0700421
422 spin_lock_init(&mps->lock);
423 init_completion(&mps->done);
424 INIT_WORK(&mps->work, mpc52xx_psc_spi_work);
425 INIT_LIST_HEAD(&mps->queue);
426
427 mps->workqueue = create_singlethread_workqueue(
Kay Sievers6c7377a2009-03-24 16:38:21 -0700428 dev_name(master->dev.parent));
Dragos Carp00b8fd22007-05-10 22:22:52 -0700429 if (mps->workqueue == NULL) {
430 ret = -EBUSY;
431 goto free_irq;
432 }
433
434 ret = spi_register_master(master);
435 if (ret < 0)
436 goto unreg_master;
437
438 return ret;
439
440unreg_master:
441 destroy_workqueue(mps->workqueue);
442free_irq:
443 free_irq(mps->irq, mps);
444free_master:
445 if (mps->psc)
446 iounmap(mps->psc);
447 spi_master_put(master);
448
449 return ret;
450}
451
452static int __exit mpc52xx_psc_spi_do_remove(struct device *dev)
453{
454 struct spi_master *master = dev_get_drvdata(dev);
455 struct mpc52xx_psc_spi *mps = spi_master_get_devdata(master);
456
457 flush_workqueue(mps->workqueue);
458 destroy_workqueue(mps->workqueue);
459 spi_unregister_master(master);
460 free_irq(mps->irq, mps);
461 if (mps->psc)
462 iounmap(mps->psc);
463
464 return 0;
465}
466
Dragos Carp00b8fd22007-05-10 22:22:52 -0700467static int __init mpc52xx_psc_spi_of_probe(struct of_device *op,
468 const struct of_device_id *match)
469{
470 const u32 *regaddr_p;
471 u64 regaddr64, size64;
472 s16 id = -1;
Grant Likelyad657762009-11-04 15:23:37 -0700473 int rc;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700474
Grant Likely61c7a082010-04-13 16:12:29 -0700475 regaddr_p = of_get_address(op->dev.of_node, 0, &size64, NULL);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700476 if (!regaddr_p) {
Wolfram Sang5cc17d72009-11-03 23:49:20 +0000477 dev_err(&op->dev, "Invalid PSC address\n");
Dragos Carp00b8fd22007-05-10 22:22:52 -0700478 return -EINVAL;
479 }
Grant Likely61c7a082010-04-13 16:12:29 -0700480 regaddr64 = of_translate_address(op->dev.of_node, regaddr_p);
Dragos Carp00b8fd22007-05-10 22:22:52 -0700481
Domen Puncer88887352007-05-23 13:57:32 -0700482 /* get PSC id (1..6, used by port_config) */
Dragos Carp00b8fd22007-05-10 22:22:52 -0700483 if (op->dev.platform_data == NULL) {
Domen Puncer88887352007-05-23 13:57:32 -0700484 const u32 *psc_nump;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700485
Grant Likely61c7a082010-04-13 16:12:29 -0700486 psc_nump = of_get_property(op->dev.of_node, "cell-index", NULL);
Domen Puncer88887352007-05-23 13:57:32 -0700487 if (!psc_nump || *psc_nump > 5) {
Wolfram Sang5cc17d72009-11-03 23:49:20 +0000488 dev_err(&op->dev, "Invalid cell-index property\n");
Domen Puncer88887352007-05-23 13:57:32 -0700489 return -EINVAL;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700490 }
Domen Puncer88887352007-05-23 13:57:32 -0700491 id = *psc_nump + 1;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700492 }
493
Grant Likelyad657762009-11-04 15:23:37 -0700494 rc = mpc52xx_psc_spi_do_probe(&op->dev, (u32)regaddr64, (u32)size64,
Grant Likely61c7a082010-04-13 16:12:29 -0700495 irq_of_parse_and_map(op->dev.of_node, 0), id);
Grant Likelyad657762009-11-04 15:23:37 -0700496 if (rc == 0)
Grant Likely61c7a082010-04-13 16:12:29 -0700497 of_register_spi_devices(dev_get_drvdata(&op->dev),
498 op->dev.of_node);
Grant Likelyad657762009-11-04 15:23:37 -0700499
500 return rc;
Dragos Carp00b8fd22007-05-10 22:22:52 -0700501}
502
503static int __exit mpc52xx_psc_spi_of_remove(struct of_device *op)
504{
505 return mpc52xx_psc_spi_do_remove(&op->dev);
506}
507
Márton Németh631e61b2010-01-20 13:49:44 -0700508static const struct of_device_id mpc52xx_psc_spi_of_match[] = {
Grant Likely66ffbe42008-01-24 22:25:31 -0700509 { .compatible = "fsl,mpc5200-psc-spi", },
510 { .compatible = "mpc5200-psc-spi", }, /* old */
511 {}
Dragos Carp00b8fd22007-05-10 22:22:52 -0700512};
513
514MODULE_DEVICE_TABLE(of, mpc52xx_psc_spi_of_match);
515
516static struct of_platform_driver mpc52xx_psc_spi_of_driver = {
Dragos Carp00b8fd22007-05-10 22:22:52 -0700517 .probe = mpc52xx_psc_spi_of_probe,
518 .remove = __exit_p(mpc52xx_psc_spi_of_remove),
519 .driver = {
520 .name = "mpc52xx-psc-spi",
521 .owner = THIS_MODULE,
Grant Likely40182942010-04-13 16:13:02 -0700522 .of_match_table = mpc52xx_psc_spi_of_match,
Dragos Carp00b8fd22007-05-10 22:22:52 -0700523 },
524};
525
526static int __init mpc52xx_psc_spi_init(void)
527{
528 return of_register_platform_driver(&mpc52xx_psc_spi_of_driver);
529}
530module_init(mpc52xx_psc_spi_init);
531
532static void __exit mpc52xx_psc_spi_exit(void)
533{
534 of_unregister_platform_driver(&mpc52xx_psc_spi_of_driver);
535}
536module_exit(mpc52xx_psc_spi_exit);
537
Dragos Carp00b8fd22007-05-10 22:22:52 -0700538MODULE_AUTHOR("Dragos Carp");
539MODULE_DESCRIPTION("MPC52xx PSC SPI Driver");
540MODULE_LICENSE("GPL");