2 * spidev.c -- simple synchronous userspace interface to SPI devices
4 * Copyright (C) 2006 SWAPP
5 * Andrea Paterniani <a.paterniani@swapp-eng.it>
6 * Copyright (C) 2007 David Brownell (simplification, cleanup)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/init.h>
24 #include <linux/module.h>
25 #include <linux/ioctl.h>
27 #include <linux/device.h>
28 #include <linux/err.h>
29 #include <linux/list.h>
30 #include <linux/errno.h>
31 #include <linux/mutex.h>
32 #include <linux/slab.h>
34 #include <linux/spi/spi.h>
35 #include <linux/spi/spidev.h>
37 #include <asm/uaccess.h>
41 * This supports acccess to SPI devices using normal userspace I/O calls.
42 * Note that while traditional UNIX/POSIX I/O semantics are half duplex,
43 * and often mask message boundaries, full SPI support requires full duplex
44 * transfers. There are several kinds of of internal message boundaries to
45 * handle chipselect management and other protocol options.
47 * SPI has a character major number assigned. We allocate minor numbers
48 * dynamically using a bitmask. You must use hotplug tools, such as udev
49 * (or mdev with busybox) to create and destroy the /dev/spidevB.C device
50 * nodes, since there is no fixed association of minor numbers with any
51 * particular SPI bus or device.
53 #define SPIDEV_MAJOR 153 /* assigned */
54 #define N_SPI_MINORS 32 /* ... up to 256 */
56 static unsigned long minors
[N_SPI_MINORS
/ BITS_PER_LONG
];
59 /* Bit masks for spi_device.mode management. Note that incorrect
60 * settings for CS_HIGH and 3WIRE can cause *lots* of trouble for other
61 * devices on a shared bus: CS_HIGH, because this device will be
62 * active when it shouldn't be; 3WIRE, because when active it won't
63 * behave as it should.
65 * REVISIT should changing those two modes be privileged?
67 #define SPI_MODE_MASK (SPI_CPHA | SPI_CPOL | SPI_CS_HIGH \
68 | SPI_LSB_FIRST | SPI_3WIRE | SPI_LOOP)
73 struct spi_device
*spi
;
74 struct list_head device_entry
;
76 /* buffer is NULL unless this device is open (users > 0) */
77 struct mutex buf_lock
;
82 static LIST_HEAD(device_list
);
83 static DEFINE_MUTEX(device_list_lock
);
85 static unsigned bufsiz
= 4096;
86 module_param(bufsiz
, uint
, S_IRUGO
);
87 MODULE_PARM_DESC(bufsiz
, "data bytes in biggest supported SPI message");
89 /*-------------------------------------------------------------------------*/
92 * We can't use the standard synchronous wrappers for file I/O; we
93 * need to protect against async removal of the underlying spi_device.
95 static void spidev_complete(void *arg
)
101 spidev_sync(struct spidev_data
*spidev
, struct spi_message
*message
)
103 DECLARE_COMPLETION_ONSTACK(done
);
106 message
->complete
= spidev_complete
;
107 message
->context
= &done
;
109 spin_lock_irq(&spidev
->spi_lock
);
110 if (spidev
->spi
== NULL
)
113 status
= spi_async(spidev
->spi
, message
);
114 spin_unlock_irq(&spidev
->spi_lock
);
117 wait_for_completion(&done
);
118 status
= message
->status
;
120 status
= message
->actual_length
;
125 static inline ssize_t
126 spidev_sync_write(struct spidev_data
*spidev
, size_t len
)
128 struct spi_transfer t
= {
129 .tx_buf
= spidev
->buffer
,
132 struct spi_message m
;
134 spi_message_init(&m
);
135 spi_message_add_tail(&t
, &m
);
136 return spidev_sync(spidev
, &m
);
139 static inline ssize_t
140 spidev_sync_read(struct spidev_data
*spidev
, size_t len
)
142 struct spi_transfer t
= {
143 .rx_buf
= spidev
->buffer
,
146 struct spi_message m
;
148 spi_message_init(&m
);
149 spi_message_add_tail(&t
, &m
);
150 return spidev_sync(spidev
, &m
);
153 /*-------------------------------------------------------------------------*/
155 /* Read-only message with current device setup */
157 spidev_read(struct file
*filp
, char __user
*buf
, size_t count
, loff_t
*f_pos
)
159 struct spidev_data
*spidev
;
162 /* chipselect only toggles at start or end of operation */
166 spidev
= filp
->private_data
;
168 mutex_lock(&spidev
->buf_lock
);
169 status
= spidev_sync_read(spidev
, count
);
171 unsigned long missing
;
173 missing
= copy_to_user(buf
, spidev
->buffer
, count
);
174 if (count
&& missing
== count
)
177 status
= count
- missing
;
179 mutex_unlock(&spidev
->buf_lock
);
184 /* Write-only message with current device setup */
186 spidev_write(struct file
*filp
, const char __user
*buf
,
187 size_t count
, loff_t
*f_pos
)
189 struct spidev_data
*spidev
;
191 unsigned long missing
;
193 /* chipselect only toggles at start or end of operation */
197 spidev
= filp
->private_data
;
199 mutex_lock(&spidev
->buf_lock
);
200 missing
= copy_from_user(spidev
->buffer
, buf
, count
);
202 status
= spidev_sync_write(spidev
, count
);
207 mutex_unlock(&spidev
->buf_lock
);
212 static int spidev_message(struct spidev_data
*spidev
,
213 struct spi_ioc_transfer
*u_xfers
, unsigned n_xfers
)
215 struct spi_message msg
;
216 struct spi_transfer
*k_xfers
;
217 struct spi_transfer
*k_tmp
;
218 struct spi_ioc_transfer
*u_tmp
;
221 int status
= -EFAULT
;
223 spi_message_init(&msg
);
224 k_xfers
= kcalloc(n_xfers
, sizeof(*k_tmp
), GFP_KERNEL
);
228 /* Construct spi_message, copying any tx data to bounce buffer.
229 * We walk the array of user-provided transfers, using each one
230 * to initialize a kernel version of the same transfer.
232 mutex_lock(&spidev
->buf_lock
);
233 buf
= spidev
->buffer
;
235 for (n
= n_xfers
, k_tmp
= k_xfers
, u_tmp
= u_xfers
;
237 n
--, k_tmp
++, u_tmp
++) {
238 k_tmp
->len
= u_tmp
->len
;
241 if (total
> bufsiz
) {
248 if (!access_ok(VERIFY_WRITE
, (u8 __user
*)
249 (uintptr_t) u_tmp
->rx_buf
,
255 if (copy_from_user(buf
, (const u8 __user
*)
256 (uintptr_t) u_tmp
->tx_buf
,
262 k_tmp
->cs_change
= !!u_tmp
->cs_change
;
263 k_tmp
->bits_per_word
= u_tmp
->bits_per_word
;
264 k_tmp
->delay_usecs
= u_tmp
->delay_usecs
;
265 k_tmp
->speed_hz
= u_tmp
->speed_hz
;
268 " xfer len %zd %s%s%s%dbits %u usec %uHz\n",
270 u_tmp
->rx_buf
? "rx " : "",
271 u_tmp
->tx_buf
? "tx " : "",
272 u_tmp
->cs_change
? "cs " : "",
273 u_tmp
->bits_per_word
? : spi
->bits_per_word
,
275 u_tmp
->speed_hz
? : spi
->max_speed_hz
);
277 spi_message_add_tail(k_tmp
, &msg
);
280 status
= spidev_sync(spidev
, &msg
);
284 /* copy any rx data out of bounce buffer */
285 buf
= spidev
->buffer
;
286 for (n
= n_xfers
, u_tmp
= u_xfers
; n
; n
--, u_tmp
++) {
288 if (__copy_to_user((u8 __user
*)
289 (uintptr_t) u_tmp
->rx_buf
, buf
,
300 mutex_unlock(&spidev
->buf_lock
);
306 spidev_ioctl(struct inode
*inode
, struct file
*filp
,
307 unsigned int cmd
, unsigned long arg
)
311 struct spidev_data
*spidev
;
312 struct spi_device
*spi
;
315 struct spi_ioc_transfer
*ioc
;
317 /* Check type and command number */
318 if (_IOC_TYPE(cmd
) != SPI_IOC_MAGIC
)
321 /* Check access direction once here; don't repeat below.
322 * IOC_DIR is from the user perspective, while access_ok is
323 * from the kernel perspective; so they look reversed.
325 if (_IOC_DIR(cmd
) & _IOC_READ
)
326 err
= !access_ok(VERIFY_WRITE
,
327 (void __user
*)arg
, _IOC_SIZE(cmd
));
328 if (err
== 0 && _IOC_DIR(cmd
) & _IOC_WRITE
)
329 err
= !access_ok(VERIFY_READ
,
330 (void __user
*)arg
, _IOC_SIZE(cmd
));
334 /* guard against device removal before, or while,
335 * we issue this ioctl.
337 spidev
= filp
->private_data
;
338 spin_lock_irq(&spidev
->spi_lock
);
339 spi
= spi_dev_get(spidev
->spi
);
340 spin_unlock_irq(&spidev
->spi_lock
);
347 case SPI_IOC_RD_MODE
:
348 retval
= __put_user(spi
->mode
& SPI_MODE_MASK
,
351 case SPI_IOC_RD_LSB_FIRST
:
352 retval
= __put_user((spi
->mode
& SPI_LSB_FIRST
) ? 1 : 0,
355 case SPI_IOC_RD_BITS_PER_WORD
:
356 retval
= __put_user(spi
->bits_per_word
, (__u8 __user
*)arg
);
358 case SPI_IOC_RD_MAX_SPEED_HZ
:
359 retval
= __put_user(spi
->max_speed_hz
, (__u32 __user
*)arg
);
363 case SPI_IOC_WR_MODE
:
364 retval
= __get_user(tmp
, (u8 __user
*)arg
);
368 if (tmp
& ~SPI_MODE_MASK
) {
373 tmp
|= spi
->mode
& ~SPI_MODE_MASK
;
375 retval
= spi_setup(spi
);
379 dev_dbg(&spi
->dev
, "spi mode %02x\n", tmp
);
382 case SPI_IOC_WR_LSB_FIRST
:
383 retval
= __get_user(tmp
, (__u8 __user
*)arg
);
388 spi
->mode
|= SPI_LSB_FIRST
;
390 spi
->mode
&= ~SPI_LSB_FIRST
;
391 retval
= spi_setup(spi
);
395 dev_dbg(&spi
->dev
, "%csb first\n",
399 case SPI_IOC_WR_BITS_PER_WORD
:
400 retval
= __get_user(tmp
, (__u8 __user
*)arg
);
402 u8 save
= spi
->bits_per_word
;
404 spi
->bits_per_word
= tmp
;
405 retval
= spi_setup(spi
);
407 spi
->bits_per_word
= save
;
409 dev_dbg(&spi
->dev
, "%d bits per word\n", tmp
);
412 case SPI_IOC_WR_MAX_SPEED_HZ
:
413 retval
= __get_user(tmp
, (__u32 __user
*)arg
);
415 u32 save
= spi
->max_speed_hz
;
417 spi
->max_speed_hz
= tmp
;
418 retval
= spi_setup(spi
);
420 spi
->max_speed_hz
= save
;
422 dev_dbg(&spi
->dev
, "%d Hz (max)\n", tmp
);
427 /* segmented and/or full-duplex I/O request */
428 if (_IOC_NR(cmd
) != _IOC_NR(SPI_IOC_MESSAGE(0))
429 || _IOC_DIR(cmd
) != _IOC_WRITE
) {
434 tmp
= _IOC_SIZE(cmd
);
435 if ((tmp
% sizeof(struct spi_ioc_transfer
)) != 0) {
439 n_ioc
= tmp
/ sizeof(struct spi_ioc_transfer
);
443 /* copy into scratch area */
444 ioc
= kmalloc(tmp
, GFP_KERNEL
);
449 if (__copy_from_user(ioc
, (void __user
*)arg
, tmp
)) {
455 /* translate to spi_message, execute */
456 retval
= spidev_message(spidev
, ioc
, n_ioc
);
464 static int spidev_open(struct inode
*inode
, struct file
*filp
)
466 struct spidev_data
*spidev
;
469 mutex_lock(&device_list_lock
);
471 list_for_each_entry(spidev
, &device_list
, device_entry
) {
472 if (spidev
->devt
== inode
->i_rdev
) {
478 if (!spidev
->buffer
) {
479 spidev
->buffer
= kmalloc(bufsiz
, GFP_KERNEL
);
480 if (!spidev
->buffer
) {
481 dev_dbg(&spidev
->spi
->dev
, "open/ENOMEM\n");
487 filp
->private_data
= spidev
;
488 nonseekable_open(inode
, filp
);
491 pr_debug("spidev: nothing for minor %d\n", iminor(inode
));
493 mutex_unlock(&device_list_lock
);
497 static int spidev_release(struct inode
*inode
, struct file
*filp
)
499 struct spidev_data
*spidev
;
502 mutex_lock(&device_list_lock
);
503 spidev
= filp
->private_data
;
504 filp
->private_data
= NULL
;
508 if (!spidev
->users
) {
511 kfree(spidev
->buffer
);
512 spidev
->buffer
= NULL
;
514 /* ... after we unbound from the underlying device? */
515 spin_lock_irq(&spidev
->spi_lock
);
516 dofree
= (spidev
->spi
== NULL
);
517 spin_unlock_irq(&spidev
->spi_lock
);
522 mutex_unlock(&device_list_lock
);
527 static struct file_operations spidev_fops
= {
528 .owner
= THIS_MODULE
,
529 /* REVISIT switch to aio primitives, so that userspace
530 * gets more complete API coverage. It'll simplify things
531 * too, except for the locking.
533 .write
= spidev_write
,
535 .ioctl
= spidev_ioctl
,
537 .release
= spidev_release
,
540 /*-------------------------------------------------------------------------*/
542 /* The main reason to have this class is to make mdev/udev create the
543 * /dev/spidevB.C character device nodes exposing our userspace API.
544 * It also simplifies memory management.
547 static struct class *spidev_class
;
549 /*-------------------------------------------------------------------------*/
551 static int spidev_probe(struct spi_device
*spi
)
553 struct spidev_data
*spidev
;
557 /* Allocate driver data */
558 spidev
= kzalloc(sizeof(*spidev
), GFP_KERNEL
);
562 /* Initialize the driver data */
564 spin_lock_init(&spidev
->spi_lock
);
565 mutex_init(&spidev
->buf_lock
);
567 INIT_LIST_HEAD(&spidev
->device_entry
);
569 /* If we can allocate a minor number, hook up this device.
570 * Reusing minors is fine so long as udev or mdev is working.
572 mutex_lock(&device_list_lock
);
573 minor
= find_first_zero_bit(minors
, N_SPI_MINORS
);
574 if (minor
< N_SPI_MINORS
) {
577 spidev
->devt
= MKDEV(SPIDEV_MAJOR
, minor
);
578 dev
= device_create(spidev_class
, &spi
->dev
, spidev
->devt
,
580 spi
->master
->bus_num
, spi
->chip_select
);
581 status
= IS_ERR(dev
) ? PTR_ERR(dev
) : 0;
583 dev_dbg(&spi
->dev
, "no minor number available!\n");
587 set_bit(minor
, minors
);
588 spi_set_drvdata(spi
, spidev
);
589 list_add(&spidev
->device_entry
, &device_list
);
591 mutex_unlock(&device_list_lock
);
599 static int spidev_remove(struct spi_device
*spi
)
601 struct spidev_data
*spidev
= spi_get_drvdata(spi
);
603 /* make sure ops on existing fds can abort cleanly */
604 spin_lock_irq(&spidev
->spi_lock
);
606 spi_set_drvdata(spi
, NULL
);
607 spin_unlock_irq(&spidev
->spi_lock
);
609 /* prevent new opens */
610 mutex_lock(&device_list_lock
);
611 list_del(&spidev
->device_entry
);
612 device_destroy(spidev_class
, spidev
->devt
);
613 clear_bit(MINOR(spidev
->devt
), minors
);
614 if (spidev
->users
== 0)
616 mutex_unlock(&device_list_lock
);
621 static struct spi_driver spidev_spi
= {
624 .owner
= THIS_MODULE
,
626 .probe
= spidev_probe
,
627 .remove
= __devexit_p(spidev_remove
),
629 /* NOTE: suspend/resume methods are not necessary here.
630 * We don't do anything except pass the requests to/from
631 * the underlying controller. The refrigerator handles
632 * most issues; the controller driver handles the rest.
636 /*-------------------------------------------------------------------------*/
638 static int __init
spidev_init(void)
642 /* Claim our 256 reserved device numbers. Then register a class
643 * that will key udev/mdev to add/remove /dev nodes. Last, register
644 * the driver which manages those device numbers.
646 BUILD_BUG_ON(N_SPI_MINORS
> 256);
647 status
= register_chrdev(SPIDEV_MAJOR
, "spi", &spidev_fops
);
651 spidev_class
= class_create(THIS_MODULE
, "spidev");
652 if (IS_ERR(spidev_class
)) {
653 unregister_chrdev(SPIDEV_MAJOR
, spidev_spi
.driver
.name
);
654 return PTR_ERR(spidev_class
);
657 status
= spi_register_driver(&spidev_spi
);
659 class_destroy(spidev_class
);
660 unregister_chrdev(SPIDEV_MAJOR
, spidev_spi
.driver
.name
);
664 module_init(spidev_init
);
666 static void __exit
spidev_exit(void)
668 spi_unregister_driver(&spidev_spi
);
669 class_destroy(spidev_class
);
670 unregister_chrdev(SPIDEV_MAJOR
, spidev_spi
.driver
.name
);
672 module_exit(spidev_exit
);
674 MODULE_AUTHOR("Andrea Paterniani, <a.paterniani@swapp-eng.it>");
675 MODULE_DESCRIPTION("User mode SPI device interface");
676 MODULE_LICENSE("GPL");