blob: 276591569c8bce421f1c2c9c4b0ed94385d22f44 [file] [log] [blame]
Ben Dooks7fba5342006-05-20 15:00:18 -07001/* linux/drivers/spi/spi_s3c24xx.c
2 *
3 * Copyright (c) 2006 Ben Dooks
4 * Copyright (c) 2006 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11*/
12
Ben Dooks7fba5342006-05-20 15:00:18 -070013#include <linux/init.h>
14#include <linux/spinlock.h>
15#include <linux/workqueue.h>
16#include <linux/interrupt.h>
17#include <linux/delay.h>
18#include <linux/errno.h>
19#include <linux/err.h>
20#include <linux/clk.h>
21#include <linux/platform_device.h>
Ben Dooksee9c1fb2009-01-06 14:41:44 -080022#include <linux/gpio.h>
Ben Dooks1a0c2202009-09-22 16:46:12 -070023#include <linux/io.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070024
25#include <linux/spi/spi.h>
26#include <linux/spi/spi_bitbang.h>
27
Ben Dooks13622702008-10-30 10:14:38 +000028#include <plat/regs-spi.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/spi.h>
Ben Dooks7fba5342006-05-20 15:00:18 -070030
Ben Dooks570327d2009-09-22 16:46:14 -070031/**
32 * s3c24xx_spi_devstate - per device data
33 * @hz: Last frequency calculated for @sppre field.
34 * @mode: Last mode setting for the @spcon field.
35 * @spcon: Value to write to the SPCON register.
36 * @sppre: Value to write to the SPPRE register.
37 */
38struct s3c24xx_spi_devstate {
39 unsigned int hz;
40 unsigned int mode;
41 u8 spcon;
42 u8 sppre;
43};
44
Ben Dooks7fba5342006-05-20 15:00:18 -070045struct s3c24xx_spi {
46 /* bitbang has to be first */
47 struct spi_bitbang bitbang;
48 struct completion done;
49
50 void __iomem *regs;
51 int irq;
52 int len;
53 int count;
54
Arnaud Patard (Rtp6c912a32007-03-16 13:38:36 -080055 void (*set_cs)(struct s3c2410_spi_info *spi,
Ben Dooks8736b922007-01-26 00:56:43 -080056 int cs, int pol);
57
Ben Dooks7fba5342006-05-20 15:00:18 -070058 /* data buffers */
59 const unsigned char *tx;
60 unsigned char *rx;
61
62 struct clk *clk;
63 struct resource *ioarea;
64 struct spi_master *master;
65 struct spi_device *curdev;
66 struct device *dev;
67 struct s3c2410_spi_info *pdata;
68};
69
70#define SPCON_DEFAULT (S3C2410_SPCON_MSTR | S3C2410_SPCON_SMOD_INT)
71#define SPPIN_DEFAULT (S3C2410_SPPIN_KEEP)
72
73static inline struct s3c24xx_spi *to_hw(struct spi_device *sdev)
74{
75 return spi_master_get_devdata(sdev->master);
76}
77
Ben Dooks8736b922007-01-26 00:56:43 -080078static void s3c24xx_spi_gpiocs(struct s3c2410_spi_info *spi, int cs, int pol)
79{
Ben Dooksee9c1fb2009-01-06 14:41:44 -080080 gpio_set_value(spi->pin_cs, pol);
Ben Dooks8736b922007-01-26 00:56:43 -080081}
82
Ben Dooks7fba5342006-05-20 15:00:18 -070083static void s3c24xx_spi_chipsel(struct spi_device *spi, int value)
84{
Ben Dooks570327d2009-09-22 16:46:14 -070085 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -070086 struct s3c24xx_spi *hw = to_hw(spi);
87 unsigned int cspol = spi->mode & SPI_CS_HIGH ? 1 : 0;
Ben Dooks570327d2009-09-22 16:46:14 -070088
89 /* change the chipselect state and the state of the spi engine clock */
Ben Dooks7fba5342006-05-20 15:00:18 -070090
91 switch (value) {
92 case BITBANG_CS_INACTIVE:
Ben Dooks3d2c5b42007-04-16 22:53:22 -070093 hw->set_cs(hw->pdata, spi->chip_select, cspol^1);
Ben Dooks570327d2009-09-22 16:46:14 -070094 writeb(cs->spcon, hw->regs + S3C2410_SPCON);
Ben Dooks7fba5342006-05-20 15:00:18 -070095 break;
96
97 case BITBANG_CS_ACTIVE:
Ben Dooks570327d2009-09-22 16:46:14 -070098 writeb(cs->spcon | S3C2410_SPCON_ENSCK,
99 hw->regs + S3C2410_SPCON);
Ben Dooks3d2c5b42007-04-16 22:53:22 -0700100 hw->set_cs(hw->pdata, spi->chip_select, cspol);
Ben Dooks7fba5342006-05-20 15:00:18 -0700101 break;
Ben Dooks7fba5342006-05-20 15:00:18 -0700102 }
103}
104
Ben Dooks570327d2009-09-22 16:46:14 -0700105static int s3c24xx_spi_update_state(struct spi_device *spi,
106 struct spi_transfer *t)
Ben Dooks7fba5342006-05-20 15:00:18 -0700107{
108 struct s3c24xx_spi *hw = to_hw(spi);
Ben Dooks570327d2009-09-22 16:46:14 -0700109 struct s3c24xx_spi_devstate *cs = spi->controller_state;
Ben Dooks7fba5342006-05-20 15:00:18 -0700110 unsigned int bpw;
111 unsigned int hz;
112 unsigned int div;
Ben Dooksb8978782009-08-18 14:11:16 -0700113 unsigned long clk;
Ben Dooks7fba5342006-05-20 15:00:18 -0700114
115 bpw = t ? t->bits_per_word : spi->bits_per_word;
116 hz = t ? t->speed_hz : spi->max_speed_hz;
117
Ben Dooks19152972009-08-18 14:11:17 -0700118 if (!bpw)
119 bpw = 8;
120
121 if (!hz)
122 hz = spi->max_speed_hz;
123
Ben Dooks7fba5342006-05-20 15:00:18 -0700124 if (bpw != 8) {
125 dev_err(&spi->dev, "invalid bits-per-word (%d)\n", bpw);
126 return -EINVAL;
127 }
128
Ben Dooks570327d2009-09-22 16:46:14 -0700129 if (spi->mode != cs->mode) {
130 u8 spcon = SPCON_DEFAULT;
Ben Dooks7fba5342006-05-20 15:00:18 -0700131
Ben Dooks570327d2009-09-22 16:46:14 -0700132 if (spi->mode & SPI_CPHA)
133 spcon |= S3C2410_SPCON_CPHA_FMTB;
Ben Dooks7fba5342006-05-20 15:00:18 -0700134
Ben Dooks570327d2009-09-22 16:46:14 -0700135 if (spi->mode & SPI_CPOL)
136 spcon |= S3C2410_SPCON_CPOL_HIGH;
Ben Dooksb8978782009-08-18 14:11:16 -0700137
Ben Dooks570327d2009-09-22 16:46:14 -0700138 cs->mode = spi->mode;
139 cs->spcon = spcon;
140 }
Ben Dooksb8978782009-08-18 14:11:16 -0700141
Ben Dooks570327d2009-09-22 16:46:14 -0700142 if (cs->hz != hz) {
143 clk = clk_get_rate(hw->clk);
144 div = DIV_ROUND_UP(clk, hz * 2) - 1;
145
146 if (div > 255)
147 div = 255;
148
149 dev_dbg(&spi->dev, "pre-scaler=%d (wanted %d, got %ld)\n",
150 div, hz, clk / (2 * (div + 1)));
151
152 cs->hz = hz;
153 cs->sppre = div;
154 }
155
156 return 0;
157}
158
159static int s3c24xx_spi_setupxfer(struct spi_device *spi,
160 struct spi_transfer *t)
161{
162 struct s3c24xx_spi_devstate *cs = spi->controller_state;
163 struct s3c24xx_spi *hw = to_hw(spi);
164 int ret;
165
166 ret = s3c24xx_spi_update_state(spi, t);
167 if (!ret)
168 writeb(cs->sppre, hw->regs + S3C2410_SPPRE);
169
170 return ret;
171}
172
173static int s3c24xx_spi_setup(struct spi_device *spi)
174{
175 struct s3c24xx_spi_devstate *cs = spi->controller_state;
176 struct s3c24xx_spi *hw = to_hw(spi);
177 int ret;
178
179 /* allocate settings on the first call */
180 if (!cs) {
181 cs = kzalloc(sizeof(struct s3c24xx_spi_devstate), GFP_KERNEL);
182 if (!cs) {
183 dev_err(&spi->dev, "no memory for controller state\n");
184 return -ENOMEM;
185 }
186
187 cs->spcon = SPCON_DEFAULT;
188 cs->hz = -1;
189 spi->controller_state = cs;
190 }
191
192 /* initialise the state from the device */
193 ret = s3c24xx_spi_update_state(spi, NULL);
194 if (ret)
195 return ret;
Ben Dooks7fba5342006-05-20 15:00:18 -0700196
197 spin_lock(&hw->bitbang.lock);
198 if (!hw->bitbang.busy) {
199 hw->bitbang.chipselect(spi, BITBANG_CS_INACTIVE);
200 /* need to ndelay for 0.5 clocktick ? */
201 }
202 spin_unlock(&hw->bitbang.lock);
203
204 return 0;
205}
206
Ben Dooks570327d2009-09-22 16:46:14 -0700207static void s3c24xx_spi_cleanup(struct spi_device *spi)
Ben Dooks7fba5342006-05-20 15:00:18 -0700208{
Ben Dooks570327d2009-09-22 16:46:14 -0700209 kfree(spi->controller_state);
Ben Dooks7fba5342006-05-20 15:00:18 -0700210}
211
212static inline unsigned int hw_txbyte(struct s3c24xx_spi *hw, int count)
213{
David Brownell4b1badf2006-12-29 16:48:39 -0800214 return hw->tx ? hw->tx[count] : 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700215}
216
217static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
218{
219 struct s3c24xx_spi *hw = to_hw(spi);
220
221 dev_dbg(&spi->dev, "txrx: tx %p, rx %p, len %d\n",
222 t->tx_buf, t->rx_buf, t->len);
223
224 hw->tx = t->tx_buf;
225 hw->rx = t->rx_buf;
226 hw->len = t->len;
227 hw->count = 0;
228
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700229 init_completion(&hw->done);
230
Ben Dooks7fba5342006-05-20 15:00:18 -0700231 /* send the first byte */
232 writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
Ben Dooks4bb5eba2008-04-15 14:34:44 -0700233
Ben Dooks7fba5342006-05-20 15:00:18 -0700234 wait_for_completion(&hw->done);
235
236 return hw->count;
237}
238
David Howells7d12e782006-10-05 14:55:46 +0100239static irqreturn_t s3c24xx_spi_irq(int irq, void *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700240{
241 struct s3c24xx_spi *hw = dev;
242 unsigned int spsta = readb(hw->regs + S3C2410_SPSTA);
243 unsigned int count = hw->count;
244
245 if (spsta & S3C2410_SPSTA_DCOL) {
246 dev_dbg(hw->dev, "data-collision\n");
247 complete(&hw->done);
248 goto irq_done;
249 }
250
251 if (!(spsta & S3C2410_SPSTA_READY)) {
252 dev_dbg(hw->dev, "spi not ready for tx?\n");
253 complete(&hw->done);
254 goto irq_done;
255 }
256
257 hw->count++;
258
259 if (hw->rx)
260 hw->rx[count] = readb(hw->regs + S3C2410_SPRDAT);
261
262 count++;
263
264 if (count < hw->len)
265 writeb(hw_txbyte(hw, count), hw->regs + S3C2410_SPTDAT);
266 else
267 complete(&hw->done);
268
269 irq_done:
270 return IRQ_HANDLED;
271}
272
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700273static void s3c24xx_spi_initialsetup(struct s3c24xx_spi *hw)
274{
275 /* for the moment, permanently enable the clock */
276
277 clk_enable(hw->clk);
278
279 /* program defaults into the registers */
280
281 writeb(0xff, hw->regs + S3C2410_SPPRE);
282 writeb(SPPIN_DEFAULT, hw->regs + S3C2410_SPPIN);
283 writeb(SPCON_DEFAULT, hw->regs + S3C2410_SPCON);
Ben Dookscf46b972008-10-15 22:02:41 -0700284
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800285 if (hw->pdata) {
286 if (hw->set_cs == s3c24xx_spi_gpiocs)
287 gpio_direction_output(hw->pdata->pin_cs, 1);
288
289 if (hw->pdata->gpio_setup)
290 hw->pdata->gpio_setup(hw->pdata, 1);
291 }
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700292}
293
David Brownelld1e44d92007-10-16 01:27:46 -0700294static int __init s3c24xx_spi_probe(struct platform_device *pdev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700295{
Ben Dooks50f426b2008-04-15 14:34:45 -0700296 struct s3c2410_spi_info *pdata;
Ben Dooks7fba5342006-05-20 15:00:18 -0700297 struct s3c24xx_spi *hw;
298 struct spi_master *master;
Ben Dooks7fba5342006-05-20 15:00:18 -0700299 struct resource *res;
300 int err = 0;
Ben Dooks7fba5342006-05-20 15:00:18 -0700301
302 master = spi_alloc_master(&pdev->dev, sizeof(struct s3c24xx_spi));
303 if (master == NULL) {
304 dev_err(&pdev->dev, "No memory for spi_master\n");
305 err = -ENOMEM;
306 goto err_nomem;
307 }
308
309 hw = spi_master_get_devdata(master);
310 memset(hw, 0, sizeof(struct s3c24xx_spi));
311
312 hw->master = spi_master_get(master);
Ben Dooks50f426b2008-04-15 14:34:45 -0700313 hw->pdata = pdata = pdev->dev.platform_data;
Ben Dooks7fba5342006-05-20 15:00:18 -0700314 hw->dev = &pdev->dev;
315
Ben Dooks50f426b2008-04-15 14:34:45 -0700316 if (pdata == NULL) {
Ben Dooks7fba5342006-05-20 15:00:18 -0700317 dev_err(&pdev->dev, "No platform data supplied\n");
318 err = -ENOENT;
319 goto err_no_pdata;
320 }
321
322 platform_set_drvdata(pdev, hw);
323 init_completion(&hw->done);
324
Ben Dooksd1e77802008-04-15 14:34:46 -0700325 /* setup the master state. */
326
David Brownelle7db06b2009-06-17 16:26:04 -0700327 /* the spi->mode bits understood by this driver: */
328 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
329
Ben Dooksd1e77802008-04-15 14:34:46 -0700330 master->num_chipselect = hw->pdata->num_cs;
Ben Dookscb1d0a72008-07-28 15:46:33 -0700331 master->bus_num = pdata->bus_num;
Ben Dooksd1e77802008-04-15 14:34:46 -0700332
Ben Dooks7fba5342006-05-20 15:00:18 -0700333 /* setup the state for the bitbang driver */
334
335 hw->bitbang.master = hw->master;
336 hw->bitbang.setup_transfer = s3c24xx_spi_setupxfer;
337 hw->bitbang.chipselect = s3c24xx_spi_chipsel;
338 hw->bitbang.txrx_bufs = s3c24xx_spi_txrx;
Ben Dooks570327d2009-09-22 16:46:14 -0700339
340 hw->master->setup = s3c24xx_spi_setup;
341 hw->master->cleanup = s3c24xx_spi_cleanup;
Ben Dooks7fba5342006-05-20 15:00:18 -0700342
343 dev_dbg(hw->dev, "bitbang at %p\n", &hw->bitbang);
344
345 /* find and map our resources */
346
347 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
348 if (res == NULL) {
349 dev_err(&pdev->dev, "Cannot get IORESOURCE_MEM\n");
350 err = -ENOENT;
351 goto err_no_iores;
352 }
353
Ben Dooksb5e3afb2009-09-22 16:46:13 -0700354 hw->ioarea = request_mem_region(res->start, resource_size(res),
Ben Dooks7fba5342006-05-20 15:00:18 -0700355 pdev->name);
356
357 if (hw->ioarea == NULL) {
358 dev_err(&pdev->dev, "Cannot reserve region\n");
359 err = -ENXIO;
360 goto err_no_iores;
361 }
362
Ben Dooksb5e3afb2009-09-22 16:46:13 -0700363 hw->regs = ioremap(res->start, resource_size(res));
Ben Dooks7fba5342006-05-20 15:00:18 -0700364 if (hw->regs == NULL) {
365 dev_err(&pdev->dev, "Cannot map IO\n");
366 err = -ENXIO;
367 goto err_no_iomap;
368 }
369
370 hw->irq = platform_get_irq(pdev, 0);
371 if (hw->irq < 0) {
372 dev_err(&pdev->dev, "No IRQ specified\n");
373 err = -ENOENT;
374 goto err_no_irq;
375 }
376
377 err = request_irq(hw->irq, s3c24xx_spi_irq, 0, pdev->name, hw);
378 if (err) {
379 dev_err(&pdev->dev, "Cannot claim IRQ\n");
380 goto err_no_irq;
381 }
382
383 hw->clk = clk_get(&pdev->dev, "spi");
384 if (IS_ERR(hw->clk)) {
385 dev_err(&pdev->dev, "No clock for device\n");
386 err = PTR_ERR(hw->clk);
387 goto err_no_clk;
388 }
389
Ben Dooks7fba5342006-05-20 15:00:18 -0700390 /* setup any gpio we can */
391
Ben Dooks50f426b2008-04-15 14:34:45 -0700392 if (!pdata->set_cs) {
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800393 if (pdata->pin_cs < 0) {
394 dev_err(&pdev->dev, "No chipselect pin\n");
395 goto err_register;
396 }
Ben Dooks8736b922007-01-26 00:56:43 -0800397
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800398 err = gpio_request(pdata->pin_cs, dev_name(&pdev->dev));
399 if (err) {
400 dev_err(&pdev->dev, "Failed to get gpio for cs\n");
401 goto err_register;
402 }
403
404 hw->set_cs = s3c24xx_spi_gpiocs;
405 gpio_direction_output(pdata->pin_cs, 1);
Ben Dooks8736b922007-01-26 00:56:43 -0800406 } else
Ben Dooks50f426b2008-04-15 14:34:45 -0700407 hw->set_cs = pdata->set_cs;
Ben Dooks7fba5342006-05-20 15:00:18 -0700408
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800409 s3c24xx_spi_initialsetup(hw);
410
Ben Dooks7fba5342006-05-20 15:00:18 -0700411 /* register our spi controller */
412
413 err = spi_bitbang_start(&hw->bitbang);
414 if (err) {
415 dev_err(&pdev->dev, "Failed to register SPI master\n");
416 goto err_register;
417 }
418
Ben Dooks7fba5342006-05-20 15:00:18 -0700419 return 0;
420
421 err_register:
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800422 if (hw->set_cs == s3c24xx_spi_gpiocs)
423 gpio_free(pdata->pin_cs);
424
Ben Dooks7fba5342006-05-20 15:00:18 -0700425 clk_disable(hw->clk);
426 clk_put(hw->clk);
427
428 err_no_clk:
429 free_irq(hw->irq, hw);
430
431 err_no_irq:
432 iounmap(hw->regs);
433
434 err_no_iomap:
435 release_resource(hw->ioarea);
436 kfree(hw->ioarea);
437
438 err_no_iores:
439 err_no_pdata:
Joe Perchesa419aef2009-08-18 11:18:35 -0700440 spi_master_put(hw->master);
Ben Dooks7fba5342006-05-20 15:00:18 -0700441
442 err_nomem:
443 return err;
444}
445
David Brownelld1e44d92007-10-16 01:27:46 -0700446static int __exit s3c24xx_spi_remove(struct platform_device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700447{
448 struct s3c24xx_spi *hw = platform_get_drvdata(dev);
449
450 platform_set_drvdata(dev, NULL);
451
452 spi_unregister_master(hw->master);
453
454 clk_disable(hw->clk);
455 clk_put(hw->clk);
456
457 free_irq(hw->irq, hw);
458 iounmap(hw->regs);
459
Ben Dooksee9c1fb2009-01-06 14:41:44 -0800460 if (hw->set_cs == s3c24xx_spi_gpiocs)
461 gpio_free(hw->pdata->pin_cs);
462
Ben Dooks7fba5342006-05-20 15:00:18 -0700463 release_resource(hw->ioarea);
464 kfree(hw->ioarea);
465
466 spi_master_put(hw->master);
467 return 0;
468}
469
470
471#ifdef CONFIG_PM
472
Ben Dooks6d613202009-09-22 16:46:13 -0700473static int s3c24xx_spi_suspend(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700474{
Ben Dooks6d613202009-09-22 16:46:13 -0700475 struct s3c24xx_spi *hw = platform_get_drvdata(to_platform_device(dev));
Ben Dooks7fba5342006-05-20 15:00:18 -0700476
Ben Dookscf46b972008-10-15 22:02:41 -0700477 if (hw->pdata && hw->pdata->gpio_setup)
478 hw->pdata->gpio_setup(hw->pdata, 0);
479
Ben Dooks7fba5342006-05-20 15:00:18 -0700480 clk_disable(hw->clk);
481 return 0;
482}
483
Ben Dooks6d613202009-09-22 16:46:13 -0700484static int s3c24xx_spi_resume(struct device *dev)
Ben Dooks7fba5342006-05-20 15:00:18 -0700485{
Ben Dooks6d613202009-09-22 16:46:13 -0700486 struct s3c24xx_spi *hw = platform_get_drvdata(to_platform_device(dev));
Ben Dooks7fba5342006-05-20 15:00:18 -0700487
Ben Dooks5aa6cf32008-08-04 13:41:10 -0700488 s3c24xx_spi_initialsetup(hw);
Ben Dooks7fba5342006-05-20 15:00:18 -0700489 return 0;
490}
491
Alexey Dobriyan47145212009-12-14 18:00:08 -0800492static const struct dev_pm_ops s3c24xx_spi_pmops = {
Ben Dooks6d613202009-09-22 16:46:13 -0700493 .suspend = s3c24xx_spi_suspend,
494 .resume = s3c24xx_spi_resume,
495};
496
497#define S3C24XX_SPI_PMOPS &s3c24xx_spi_pmops
Ben Dooks7fba5342006-05-20 15:00:18 -0700498#else
Ben Dooks6d613202009-09-22 16:46:13 -0700499#define S3C24XX_SPI_PMOPS NULL
500#endif /* CONFIG_PM */
Ben Dooks7fba5342006-05-20 15:00:18 -0700501
Kay Sievers7e38c3c2008-04-10 21:29:20 -0700502MODULE_ALIAS("platform:s3c2410-spi");
Ben Dooks42cde432008-09-13 02:33:24 -0700503static struct platform_driver s3c24xx_spi_driver = {
David Brownelld1e44d92007-10-16 01:27:46 -0700504 .remove = __exit_p(s3c24xx_spi_remove),
Ben Dooks7fba5342006-05-20 15:00:18 -0700505 .driver = {
506 .name = "s3c2410-spi",
507 .owner = THIS_MODULE,
Ben Dooks6d613202009-09-22 16:46:13 -0700508 .pm = S3C24XX_SPI_PMOPS,
Ben Dooks7fba5342006-05-20 15:00:18 -0700509 },
510};
511
512static int __init s3c24xx_spi_init(void)
513{
Ben Dooks42cde432008-09-13 02:33:24 -0700514 return platform_driver_probe(&s3c24xx_spi_driver, s3c24xx_spi_probe);
Ben Dooks7fba5342006-05-20 15:00:18 -0700515}
516
517static void __exit s3c24xx_spi_exit(void)
518{
Ben Dooks42cde432008-09-13 02:33:24 -0700519 platform_driver_unregister(&s3c24xx_spi_driver);
Ben Dooks7fba5342006-05-20 15:00:18 -0700520}
521
522module_init(s3c24xx_spi_init);
523module_exit(s3c24xx_spi_exit);
524
525MODULE_DESCRIPTION("S3C24XX SPI Driver");
526MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
527MODULE_LICENSE("GPL");