blob: 6941e04afb8c4526e329a8096601d0e8098f9721 [file] [log] [blame]
Andrea Paterniani814a8d52007-05-08 00:32:15 -07001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * Simple synchronous userspace interface to SPI devices
Andrea Paterniani814a8d52007-05-08 00:32:15 -07003 *
4 * Copyright (C) 2006 SWAPP
5 * Andrea Paterniani <a.paterniani@swapp-eng.it>
6 * Copyright (C) 2007 David Brownell (simplification, cleanup)
7 *
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.
12 *
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.
17 *
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.
21 */
22
23#include <linux/init.h>
24#include <linux/module.h>
25#include <linux/ioctl.h>
26#include <linux/fs.h>
27#include <linux/device.h>
David Brownellb2c8dad2008-06-05 22:45:50 -070028#include <linux/err.h>
Andrea Paterniani814a8d52007-05-08 00:32:15 -070029#include <linux/list.h>
30#include <linux/errno.h>
31#include <linux/mutex.h>
32#include <linux/slab.h>
Bernhard Walle7d48ec32011-02-03 09:37:18 +010033#include <linux/compat.h>
Maxime Ripard880cfd42012-10-31 11:30:08 +010034#include <linux/of.h>
35#include <linux/of_device.h>
Andrea Paterniani814a8d52007-05-08 00:32:15 -070036
37#include <linux/spi/spi.h>
38#include <linux/spi/spidev.h>
39
Jingoo Han95c63cf2013-10-14 10:36:54 +090040#include <linux/uaccess.h>
Andrea Paterniani814a8d52007-05-08 00:32:15 -070041
42
43/*
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040044 * This supports access to SPI devices using normal userspace I/O calls.
Andrea Paterniani814a8d52007-05-08 00:32:15 -070045 * Note that while traditional UNIX/POSIX I/O semantics are half duplex,
46 * and often mask message boundaries, full SPI support requires full duplex
Thadeu Lima de Souza Cascardo137f1182009-10-22 17:34:29 -020047 * transfers. There are several kinds of internal message boundaries to
Andrea Paterniani814a8d52007-05-08 00:32:15 -070048 * handle chipselect management and other protocol options.
49 *
50 * SPI has a character major number assigned. We allocate minor numbers
51 * dynamically using a bitmask. You must use hotplug tools, such as udev
52 * (or mdev with busybox) to create and destroy the /dev/spidevB.C device
53 * nodes, since there is no fixed association of minor numbers with any
54 * particular SPI bus or device.
55 */
56#define SPIDEV_MAJOR 153 /* assigned */
57#define N_SPI_MINORS 32 /* ... up to 256 */
58
Thadeu Lima de Souza Cascardo8ae1c922009-12-14 14:20:23 -080059static DECLARE_BITMAP(minors, N_SPI_MINORS);
Andrea Paterniani814a8d52007-05-08 00:32:15 -070060
61
Anton Vorontsov6f166e32007-07-31 00:38:43 -070062/* Bit masks for spi_device.mode management. Note that incorrect
David Brownellb55f6272009-06-30 11:41:26 -070063 * settings for some settings can cause *lots* of trouble for other
64 * devices on a shared bus:
Anton Vorontsov6f166e32007-07-31 00:38:43 -070065 *
David Brownellb55f6272009-06-30 11:41:26 -070066 * - CS_HIGH ... this device will be active when it shouldn't be
67 * - 3WIRE ... when active, it won't behave as it should
68 * - NO_CS ... there will be no explicit message boundaries; this
69 * is completely incompatible with the shared bus model
70 * - READY ... transfers may proceed when they shouldn't.
71 *
72 * REVISIT should changing those flags be privileged?
Anton Vorontsov6f166e32007-07-31 00:38:43 -070073 */
74#define SPI_MODE_MASK (SPI_CPHA | SPI_CPOL | SPI_CS_HIGH \
David Brownellb55f6272009-06-30 11:41:26 -070075 | SPI_LSB_FIRST | SPI_3WIRE | SPI_LOOP \
Geert Uytterhoevendc64d392014-02-25 11:40:17 +010076 | SPI_NO_CS | SPI_READY | SPI_TX_DUAL \
77 | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)
Andrea Paterniani814a8d52007-05-08 00:32:15 -070078
79struct spidev_data {
David Brownellb2c8dad2008-06-05 22:45:50 -070080 dev_t devt;
David Brownell25d5cb42008-05-23 13:05:03 -070081 spinlock_t spi_lock;
Andrea Paterniani814a8d52007-05-08 00:32:15 -070082 struct spi_device *spi;
83 struct list_head device_entry;
84
Ray Jui865f6d12014-10-09 11:19:25 -070085 /* TX/RX buffers are NULL unless this device is open (users > 0) */
Andrea Paterniani814a8d52007-05-08 00:32:15 -070086 struct mutex buf_lock;
87 unsigned users;
Ray Jui865f6d12014-10-09 11:19:25 -070088 u8 *tx_buffer;
89 u8 *rx_buffer;
Mark Brown91690512014-11-08 10:28:10 +000090 u32 speed_hz;
Andrea Paterniani814a8d52007-05-08 00:32:15 -070091};
92
93static LIST_HEAD(device_list);
94static DEFINE_MUTEX(device_list_lock);
95
96static unsigned bufsiz = 4096;
97module_param(bufsiz, uint, S_IRUGO);
98MODULE_PARM_DESC(bufsiz, "data bytes in biggest supported SPI message");
99
100/*-------------------------------------------------------------------------*/
101
David Brownell25d5cb42008-05-23 13:05:03 -0700102/*
103 * We can't use the standard synchronous wrappers for file I/O; we
104 * need to protect against async removal of the underlying spi_device.
105 */
106static void spidev_complete(void *arg)
107{
108 complete(arg);
109}
110
111static ssize_t
112spidev_sync(struct spidev_data *spidev, struct spi_message *message)
113{
114 DECLARE_COMPLETION_ONSTACK(done);
115 int status;
116
117 message->complete = spidev_complete;
118 message->context = &done;
119
120 spin_lock_irq(&spidev->spi_lock);
121 if (spidev->spi == NULL)
122 status = -ESHUTDOWN;
123 else
124 status = spi_async(spidev->spi, message);
125 spin_unlock_irq(&spidev->spi_lock);
126
127 if (status == 0) {
128 wait_for_completion(&done);
129 status = message->status;
130 if (status == 0)
131 status = message->actual_length;
132 }
133 return status;
134}
135
136static inline ssize_t
137spidev_sync_write(struct spidev_data *spidev, size_t len)
138{
139 struct spi_transfer t = {
Ray Jui865f6d12014-10-09 11:19:25 -0700140 .tx_buf = spidev->tx_buffer,
David Brownell25d5cb42008-05-23 13:05:03 -0700141 .len = len,
Mark Brown91690512014-11-08 10:28:10 +0000142 .speed_hz = spidev->speed_hz,
David Brownell25d5cb42008-05-23 13:05:03 -0700143 };
144 struct spi_message m;
145
146 spi_message_init(&m);
147 spi_message_add_tail(&t, &m);
148 return spidev_sync(spidev, &m);
149}
150
151static inline ssize_t
152spidev_sync_read(struct spidev_data *spidev, size_t len)
153{
154 struct spi_transfer t = {
Ray Jui865f6d12014-10-09 11:19:25 -0700155 .rx_buf = spidev->rx_buffer,
David Brownell25d5cb42008-05-23 13:05:03 -0700156 .len = len,
Mark Brown91690512014-11-08 10:28:10 +0000157 .speed_hz = spidev->speed_hz,
David Brownell25d5cb42008-05-23 13:05:03 -0700158 };
159 struct spi_message m;
160
161 spi_message_init(&m);
162 spi_message_add_tail(&t, &m);
163 return spidev_sync(spidev, &m);
164}
165
166/*-------------------------------------------------------------------------*/
167
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700168/* Read-only message with current device setup */
169static ssize_t
170spidev_read(struct file *filp, char __user *buf, size_t count, loff_t *f_pos)
171{
172 struct spidev_data *spidev;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700173 ssize_t status = 0;
174
175 /* chipselect only toggles at start or end of operation */
176 if (count > bufsiz)
177 return -EMSGSIZE;
178
179 spidev = filp->private_data;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700180
181 mutex_lock(&spidev->buf_lock);
David Brownell25d5cb42008-05-23 13:05:03 -0700182 status = spidev_sync_read(spidev, count);
Sebastian Siewior4b1295b2008-07-04 09:59:56 -0700183 if (status > 0) {
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700184 unsigned long missing;
185
Ray Jui865f6d12014-10-09 11:19:25 -0700186 missing = copy_to_user(buf, spidev->rx_buffer, status);
Sebastian Siewior4b1295b2008-07-04 09:59:56 -0700187 if (missing == status)
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700188 status = -EFAULT;
189 else
Sebastian Siewior4b1295b2008-07-04 09:59:56 -0700190 status = status - missing;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700191 }
192 mutex_unlock(&spidev->buf_lock);
193
194 return status;
195}
196
197/* Write-only message with current device setup */
198static ssize_t
199spidev_write(struct file *filp, const char __user *buf,
200 size_t count, loff_t *f_pos)
201{
202 struct spidev_data *spidev;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700203 ssize_t status = 0;
204 unsigned long missing;
205
206 /* chipselect only toggles at start or end of operation */
207 if (count > bufsiz)
208 return -EMSGSIZE;
209
210 spidev = filp->private_data;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700211
212 mutex_lock(&spidev->buf_lock);
Ray Jui865f6d12014-10-09 11:19:25 -0700213 missing = copy_from_user(spidev->tx_buffer, buf, count);
Jingoo Han95c63cf2013-10-14 10:36:54 +0900214 if (missing == 0)
David Brownell25d5cb42008-05-23 13:05:03 -0700215 status = spidev_sync_write(spidev, count);
Jingoo Han95c63cf2013-10-14 10:36:54 +0900216 else
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700217 status = -EFAULT;
218 mutex_unlock(&spidev->buf_lock);
219
220 return status;
221}
222
223static int spidev_message(struct spidev_data *spidev,
224 struct spi_ioc_transfer *u_xfers, unsigned n_xfers)
225{
226 struct spi_message msg;
227 struct spi_transfer *k_xfers;
228 struct spi_transfer *k_tmp;
229 struct spi_ioc_transfer *u_tmp;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700230 unsigned n, total;
Ray Jui865f6d12014-10-09 11:19:25 -0700231 u8 *tx_buf, *rx_buf;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700232 int status = -EFAULT;
233
234 spi_message_init(&msg);
235 k_xfers = kcalloc(n_xfers, sizeof(*k_tmp), GFP_KERNEL);
236 if (k_xfers == NULL)
237 return -ENOMEM;
238
239 /* Construct spi_message, copying any tx data to bounce buffer.
240 * We walk the array of user-provided transfers, using each one
241 * to initialize a kernel version of the same transfer.
242 */
Ray Jui865f6d12014-10-09 11:19:25 -0700243 tx_buf = spidev->tx_buffer;
244 rx_buf = spidev->rx_buffer;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700245 total = 0;
246 for (n = n_xfers, k_tmp = k_xfers, u_tmp = u_xfers;
247 n;
248 n--, k_tmp++, u_tmp++) {
249 k_tmp->len = u_tmp->len;
250
Domen Puncerda90fa82007-05-23 13:57:39 -0700251 total += k_tmp->len;
252 if (total > bufsiz) {
253 status = -EMSGSIZE;
254 goto done;
255 }
256
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700257 if (u_tmp->rx_buf) {
Ray Jui865f6d12014-10-09 11:19:25 -0700258 k_tmp->rx_buf = rx_buf;
David Brownell96ddbf52007-08-10 13:01:09 -0700259 if (!access_ok(VERIFY_WRITE, (u8 __user *)
Al Viro142956a2007-10-29 05:11:28 +0000260 (uintptr_t) u_tmp->rx_buf,
David Brownell96ddbf52007-08-10 13:01:09 -0700261 u_tmp->len))
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700262 goto done;
263 }
264 if (u_tmp->tx_buf) {
Ray Jui865f6d12014-10-09 11:19:25 -0700265 k_tmp->tx_buf = tx_buf;
266 if (copy_from_user(tx_buf, (const u8 __user *)
Al Viro142956a2007-10-29 05:11:28 +0000267 (uintptr_t) u_tmp->tx_buf,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700268 u_tmp->len))
269 goto done;
270 }
Ray Jui865f6d12014-10-09 11:19:25 -0700271 tx_buf += k_tmp->len;
272 rx_buf += k_tmp->len;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700273
274 k_tmp->cs_change = !!u_tmp->cs_change;
Geert Uytterhoevendc64d392014-02-25 11:40:17 +0100275 k_tmp->tx_nbits = u_tmp->tx_nbits;
276 k_tmp->rx_nbits = u_tmp->rx_nbits;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700277 k_tmp->bits_per_word = u_tmp->bits_per_word;
278 k_tmp->delay_usecs = u_tmp->delay_usecs;
279 k_tmp->speed_hz = u_tmp->speed_hz;
Mark Brown91690512014-11-08 10:28:10 +0000280 if (!k_tmp->speed_hz)
281 k_tmp->speed_hz = spidev->speed_hz;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700282#ifdef VERBOSE
Florian Fainelli41df70d2009-12-07 14:28:43 +0000283 dev_dbg(&spidev->spi->dev,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700284 " xfer len %zd %s%s%s%dbits %u usec %uHz\n",
285 u_tmp->len,
286 u_tmp->rx_buf ? "rx " : "",
287 u_tmp->tx_buf ? "tx " : "",
288 u_tmp->cs_change ? "cs " : "",
Florian Fainelli41df70d2009-12-07 14:28:43 +0000289 u_tmp->bits_per_word ? : spidev->spi->bits_per_word,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700290 u_tmp->delay_usecs,
Florian Fainelli41df70d2009-12-07 14:28:43 +0000291 u_tmp->speed_hz ? : spidev->spi->max_speed_hz);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700292#endif
293 spi_message_add_tail(k_tmp, &msg);
294 }
295
David Brownell25d5cb42008-05-23 13:05:03 -0700296 status = spidev_sync(spidev, &msg);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700297 if (status < 0)
298 goto done;
299
300 /* copy any rx data out of bounce buffer */
Ray Jui865f6d12014-10-09 11:19:25 -0700301 rx_buf = spidev->rx_buffer;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700302 for (n = n_xfers, u_tmp = u_xfers; n; n--, u_tmp++) {
303 if (u_tmp->rx_buf) {
David Brownell4917d922007-07-17 04:04:04 -0700304 if (__copy_to_user((u8 __user *)
Ray Jui865f6d12014-10-09 11:19:25 -0700305 (uintptr_t) u_tmp->rx_buf, rx_buf,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700306 u_tmp->len)) {
307 status = -EFAULT;
308 goto done;
309 }
310 }
Ray Jui865f6d12014-10-09 11:19:25 -0700311 rx_buf += u_tmp->len;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700312 }
313 status = total;
314
315done:
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700316 kfree(k_xfers);
317 return status;
318}
319
Alan Cox4ef754b2008-07-23 21:29:55 -0700320static long
321spidev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700322{
323 int err = 0;
324 int retval = 0;
325 struct spidev_data *spidev;
326 struct spi_device *spi;
327 u32 tmp;
328 unsigned n_ioc;
329 struct spi_ioc_transfer *ioc;
330
331 /* Check type and command number */
332 if (_IOC_TYPE(cmd) != SPI_IOC_MAGIC)
333 return -ENOTTY;
334
335 /* Check access direction once here; don't repeat below.
336 * IOC_DIR is from the user perspective, while access_ok is
337 * from the kernel perspective; so they look reversed.
338 */
339 if (_IOC_DIR(cmd) & _IOC_READ)
340 err = !access_ok(VERIFY_WRITE,
341 (void __user *)arg, _IOC_SIZE(cmd));
342 if (err == 0 && _IOC_DIR(cmd) & _IOC_WRITE)
343 err = !access_ok(VERIFY_READ,
344 (void __user *)arg, _IOC_SIZE(cmd));
345 if (err)
346 return -EFAULT;
347
David Brownell25d5cb42008-05-23 13:05:03 -0700348 /* guard against device removal before, or while,
349 * we issue this ioctl.
350 */
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700351 spidev = filp->private_data;
David Brownell25d5cb42008-05-23 13:05:03 -0700352 spin_lock_irq(&spidev->spi_lock);
353 spi = spi_dev_get(spidev->spi);
354 spin_unlock_irq(&spidev->spi_lock);
355
356 if (spi == NULL)
357 return -ESHUTDOWN;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700358
Alan Cox4ef754b2008-07-23 21:29:55 -0700359 /* use the buffer lock here for triple duty:
360 * - prevent I/O (from us) so calling spi_setup() is safe;
361 * - prevent concurrent SPI_IOC_WR_* from morphing
362 * data fields while SPI_IOC_RD_* reads them;
363 * - SPI_IOC_MESSAGE needs the buffer locked "normally".
364 */
365 mutex_lock(&spidev->buf_lock);
366
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700367 switch (cmd) {
368 /* read requests */
369 case SPI_IOC_RD_MODE:
370 retval = __put_user(spi->mode & SPI_MODE_MASK,
371 (__u8 __user *)arg);
372 break;
Geert Uytterhoevendc64d392014-02-25 11:40:17 +0100373 case SPI_IOC_RD_MODE32:
374 retval = __put_user(spi->mode & SPI_MODE_MASK,
375 (__u32 __user *)arg);
376 break;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700377 case SPI_IOC_RD_LSB_FIRST:
378 retval = __put_user((spi->mode & SPI_LSB_FIRST) ? 1 : 0,
379 (__u8 __user *)arg);
380 break;
381 case SPI_IOC_RD_BITS_PER_WORD:
382 retval = __put_user(spi->bits_per_word, (__u8 __user *)arg);
383 break;
384 case SPI_IOC_RD_MAX_SPEED_HZ:
Mark Brown91690512014-11-08 10:28:10 +0000385 retval = __put_user(spidev->speed_hz, (__u32 __user *)arg);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700386 break;
387
388 /* write requests */
389 case SPI_IOC_WR_MODE:
Geert Uytterhoevendc64d392014-02-25 11:40:17 +0100390 case SPI_IOC_WR_MODE32:
391 if (cmd == SPI_IOC_WR_MODE)
392 retval = __get_user(tmp, (u8 __user *)arg);
393 else
394 retval = __get_user(tmp, (u32 __user *)arg);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700395 if (retval == 0) {
Geert Uytterhoevene6456182014-02-25 11:40:16 +0100396 u32 save = spi->mode;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700397
398 if (tmp & ~SPI_MODE_MASK) {
399 retval = -EINVAL;
400 break;
401 }
402
403 tmp |= spi->mode & ~SPI_MODE_MASK;
Geert Uytterhoevendc64d392014-02-25 11:40:17 +0100404 spi->mode = (u16)tmp;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700405 retval = spi_setup(spi);
406 if (retval < 0)
407 spi->mode = save;
408 else
Geert Uytterhoevendc64d392014-02-25 11:40:17 +0100409 dev_dbg(&spi->dev, "spi mode %x\n", tmp);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700410 }
411 break;
412 case SPI_IOC_WR_LSB_FIRST:
413 retval = __get_user(tmp, (__u8 __user *)arg);
414 if (retval == 0) {
Geert Uytterhoevene6456182014-02-25 11:40:16 +0100415 u32 save = spi->mode;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700416
417 if (tmp)
418 spi->mode |= SPI_LSB_FIRST;
419 else
420 spi->mode &= ~SPI_LSB_FIRST;
421 retval = spi_setup(spi);
422 if (retval < 0)
423 spi->mode = save;
424 else
425 dev_dbg(&spi->dev, "%csb first\n",
426 tmp ? 'l' : 'm');
427 }
428 break;
429 case SPI_IOC_WR_BITS_PER_WORD:
430 retval = __get_user(tmp, (__u8 __user *)arg);
431 if (retval == 0) {
432 u8 save = spi->bits_per_word;
433
434 spi->bits_per_word = tmp;
435 retval = spi_setup(spi);
436 if (retval < 0)
437 spi->bits_per_word = save;
438 else
439 dev_dbg(&spi->dev, "%d bits per word\n", tmp);
440 }
441 break;
442 case SPI_IOC_WR_MAX_SPEED_HZ:
443 retval = __get_user(tmp, (__u32 __user *)arg);
444 if (retval == 0) {
445 u32 save = spi->max_speed_hz;
446
447 spi->max_speed_hz = tmp;
448 retval = spi_setup(spi);
Mark Brown91690512014-11-08 10:28:10 +0000449 if (retval >= 0)
450 spidev->speed_hz = tmp;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700451 else
452 dev_dbg(&spi->dev, "%d Hz (max)\n", tmp);
Mark Brown91690512014-11-08 10:28:10 +0000453 spi->max_speed_hz = save;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700454 }
455 break;
456
457 default:
458 /* segmented and/or full-duplex I/O request */
459 if (_IOC_NR(cmd) != _IOC_NR(SPI_IOC_MESSAGE(0))
David Brownell25d5cb42008-05-23 13:05:03 -0700460 || _IOC_DIR(cmd) != _IOC_WRITE) {
461 retval = -ENOTTY;
462 break;
463 }
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700464
465 tmp = _IOC_SIZE(cmd);
466 if ((tmp % sizeof(struct spi_ioc_transfer)) != 0) {
467 retval = -EINVAL;
468 break;
469 }
470 n_ioc = tmp / sizeof(struct spi_ioc_transfer);
471 if (n_ioc == 0)
472 break;
473
474 /* copy into scratch area */
475 ioc = kmalloc(tmp, GFP_KERNEL);
476 if (!ioc) {
477 retval = -ENOMEM;
478 break;
479 }
480 if (__copy_from_user(ioc, (void __user *)arg, tmp)) {
Florin Malita9bea3f22007-05-23 13:57:45 -0700481 kfree(ioc);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700482 retval = -EFAULT;
483 break;
484 }
485
486 /* translate to spi_message, execute */
487 retval = spidev_message(spidev, ioc, n_ioc);
488 kfree(ioc);
489 break;
490 }
Alan Cox4ef754b2008-07-23 21:29:55 -0700491
492 mutex_unlock(&spidev->buf_lock);
David Brownell25d5cb42008-05-23 13:05:03 -0700493 spi_dev_put(spi);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700494 return retval;
495}
496
Bernhard Walle7d48ec32011-02-03 09:37:18 +0100497#ifdef CONFIG_COMPAT
498static long
499spidev_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
500{
501 return spidev_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
502}
503#else
504#define spidev_compat_ioctl NULL
505#endif /* CONFIG_COMPAT */
506
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700507static int spidev_open(struct inode *inode, struct file *filp)
508{
509 struct spidev_data *spidev;
510 int status = -ENXIO;
511
512 mutex_lock(&device_list_lock);
513
514 list_for_each_entry(spidev, &device_list, device_entry) {
David Brownellb2c8dad2008-06-05 22:45:50 -0700515 if (spidev->devt == inode->i_rdev) {
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700516 status = 0;
517 break;
518 }
519 }
Ray Jui865f6d12014-10-09 11:19:25 -0700520
521 if (status) {
522 pr_debug("spidev: nothing for minor %d\n", iminor(inode));
523 goto err_find_dev;
524 }
525
526 if (!spidev->tx_buffer) {
527 spidev->tx_buffer = kmalloc(bufsiz, GFP_KERNEL);
528 if (!spidev->tx_buffer) {
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700529 dev_dbg(&spidev->spi->dev, "open/ENOMEM\n");
530 status = -ENOMEM;
Ray Jui865f6d12014-10-09 11:19:25 -0700531 goto err_find_dev;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700532 }
533 }
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700534
Ray Jui865f6d12014-10-09 11:19:25 -0700535 if (!spidev->rx_buffer) {
536 spidev->rx_buffer = kmalloc(bufsiz, GFP_KERNEL);
537 if (!spidev->rx_buffer) {
538 dev_dbg(&spidev->spi->dev, "open/ENOMEM\n");
539 status = -ENOMEM;
540 goto err_alloc_rx_buf;
541 }
542 }
543
544 spidev->users++;
545 filp->private_data = spidev;
546 nonseekable_open(inode, filp);
547
548 mutex_unlock(&device_list_lock);
549 return 0;
550
551err_alloc_rx_buf:
552 kfree(spidev->tx_buffer);
553 spidev->tx_buffer = NULL;
554err_find_dev:
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700555 mutex_unlock(&device_list_lock);
556 return status;
557}
558
559static int spidev_release(struct inode *inode, struct file *filp)
560{
561 struct spidev_data *spidev;
562 int status = 0;
563
564 mutex_lock(&device_list_lock);
565 spidev = filp->private_data;
566 filp->private_data = NULL;
David Brownellb2c8dad2008-06-05 22:45:50 -0700567
568 /* last close? */
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700569 spidev->users--;
570 if (!spidev->users) {
David Brownellb2c8dad2008-06-05 22:45:50 -0700571 int dofree;
572
Ray Jui865f6d12014-10-09 11:19:25 -0700573 kfree(spidev->tx_buffer);
574 spidev->tx_buffer = NULL;
575
576 kfree(spidev->rx_buffer);
577 spidev->rx_buffer = NULL;
David Brownellb2c8dad2008-06-05 22:45:50 -0700578
Mark Brown91690512014-11-08 10:28:10 +0000579 spidev->speed_hz = spidev->spi->max_speed_hz;
580
David Brownellb2c8dad2008-06-05 22:45:50 -0700581 /* ... after we unbound from the underlying device? */
582 spin_lock_irq(&spidev->spi_lock);
583 dofree = (spidev->spi == NULL);
584 spin_unlock_irq(&spidev->spi_lock);
585
586 if (dofree)
587 kfree(spidev);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700588 }
589 mutex_unlock(&device_list_lock);
590
591 return status;
592}
593
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700594static const struct file_operations spidev_fops = {
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700595 .owner = THIS_MODULE,
596 /* REVISIT switch to aio primitives, so that userspace
597 * gets more complete API coverage. It'll simplify things
598 * too, except for the locking.
599 */
600 .write = spidev_write,
601 .read = spidev_read,
Alan Cox4ef754b2008-07-23 21:29:55 -0700602 .unlocked_ioctl = spidev_ioctl,
Bernhard Walle7d48ec32011-02-03 09:37:18 +0100603 .compat_ioctl = spidev_compat_ioctl,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700604 .open = spidev_open,
605 .release = spidev_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200606 .llseek = no_llseek,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700607};
608
609/*-------------------------------------------------------------------------*/
610
611/* The main reason to have this class is to make mdev/udev create the
612 * /dev/spidevB.C character device nodes exposing our userspace API.
613 * It also simplifies memory management.
614 */
615
David Brownellb2c8dad2008-06-05 22:45:50 -0700616static struct class *spidev_class;
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700617
618/*-------------------------------------------------------------------------*/
619
Grant Likelyfd4a3192012-12-07 16:57:14 +0000620static int spidev_probe(struct spi_device *spi)
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700621{
622 struct spidev_data *spidev;
623 int status;
624 unsigned long minor;
625
626 /* Allocate driver data */
627 spidev = kzalloc(sizeof(*spidev), GFP_KERNEL);
628 if (!spidev)
629 return -ENOMEM;
630
631 /* Initialize the driver data */
632 spidev->spi = spi;
David Brownell25d5cb42008-05-23 13:05:03 -0700633 spin_lock_init(&spidev->spi_lock);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700634 mutex_init(&spidev->buf_lock);
635
636 INIT_LIST_HEAD(&spidev->device_entry);
637
638 /* If we can allocate a minor number, hook up this device.
639 * Reusing minors is fine so long as udev or mdev is working.
640 */
641 mutex_lock(&device_list_lock);
Domen Puncer0a4dd772007-05-15 23:57:05 -0700642 minor = find_first_zero_bit(minors, N_SPI_MINORS);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700643 if (minor < N_SPI_MINORS) {
David Brownellb2c8dad2008-06-05 22:45:50 -0700644 struct device *dev;
645
646 spidev->devt = MKDEV(SPIDEV_MAJOR, minor);
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700647 dev = device_create(spidev_class, &spi->dev, spidev->devt,
648 spidev, "spidev%d.%d",
649 spi->master->bus_num, spi->chip_select);
Rusty Russell8c6ffba2013-07-15 11:20:32 +0930650 status = PTR_ERR_OR_ZERO(dev);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700651 } else {
652 dev_dbg(&spi->dev, "no minor number available!\n");
653 status = -ENODEV;
654 }
655 if (status == 0) {
656 set_bit(minor, minors);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700657 list_add(&spidev->device_entry, &device_list);
658 }
659 mutex_unlock(&device_list_lock);
660
Mark Brown91690512014-11-08 10:28:10 +0000661 spidev->speed_hz = spi->max_speed_hz;
662
Wolfgang Ockeraaacf4b2008-12-01 13:13:52 -0800663 if (status == 0)
664 spi_set_drvdata(spi, spidev);
665 else
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700666 kfree(spidev);
667
668 return status;
669}
670
Grant Likelyfd4a3192012-12-07 16:57:14 +0000671static int spidev_remove(struct spi_device *spi)
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700672{
David Brownellb2c8dad2008-06-05 22:45:50 -0700673 struct spidev_data *spidev = spi_get_drvdata(spi);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700674
David Brownell25d5cb42008-05-23 13:05:03 -0700675 /* make sure ops on existing fds can abort cleanly */
676 spin_lock_irq(&spidev->spi_lock);
677 spidev->spi = NULL;
678 spin_unlock_irq(&spidev->spi_lock);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700679
David Brownell25d5cb42008-05-23 13:05:03 -0700680 /* prevent new opens */
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700681 mutex_lock(&device_list_lock);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700682 list_del(&spidev->device_entry);
David Brownellb2c8dad2008-06-05 22:45:50 -0700683 device_destroy(spidev_class, spidev->devt);
684 clear_bit(MINOR(spidev->devt), minors);
685 if (spidev->users == 0)
686 kfree(spidev);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700687 mutex_unlock(&device_list_lock);
688
689 return 0;
690}
691
Maxime Ripard880cfd42012-10-31 11:30:08 +0100692static const struct of_device_id spidev_dt_ids[] = {
Maxime Ripard8fad8052012-10-31 11:30:09 +0100693 { .compatible = "rohm,dh2228fv" },
Maxime Ripard880cfd42012-10-31 11:30:08 +0100694 {},
695};
696
697MODULE_DEVICE_TABLE(of, spidev_dt_ids);
698
Mike Frysingerdb389b62009-12-14 14:20:22 -0800699static struct spi_driver spidev_spi_driver = {
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700700 .driver = {
701 .name = "spidev",
702 .owner = THIS_MODULE,
Maxime Ripard880cfd42012-10-31 11:30:08 +0100703 .of_match_table = of_match_ptr(spidev_dt_ids),
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700704 },
705 .probe = spidev_probe,
Grant Likelyfd4a3192012-12-07 16:57:14 +0000706 .remove = spidev_remove,
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700707
708 /* NOTE: suspend/resume methods are not necessary here.
709 * We don't do anything except pass the requests to/from
710 * the underlying controller. The refrigerator handles
711 * most issues; the controller driver handles the rest.
712 */
713};
714
715/*-------------------------------------------------------------------------*/
716
717static int __init spidev_init(void)
718{
719 int status;
720
721 /* Claim our 256 reserved device numbers. Then register a class
722 * that will key udev/mdev to add/remove /dev nodes. Last, register
723 * the driver which manages those device numbers.
724 */
725 BUILD_BUG_ON(N_SPI_MINORS > 256);
726 status = register_chrdev(SPIDEV_MAJOR, "spi", &spidev_fops);
727 if (status < 0)
728 return status;
729
David Brownellb2c8dad2008-06-05 22:45:50 -0700730 spidev_class = class_create(THIS_MODULE, "spidev");
731 if (IS_ERR(spidev_class)) {
Mike Frysingerdb389b62009-12-14 14:20:22 -0800732 unregister_chrdev(SPIDEV_MAJOR, spidev_spi_driver.driver.name);
David Brownellb2c8dad2008-06-05 22:45:50 -0700733 return PTR_ERR(spidev_class);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700734 }
735
Mike Frysingerdb389b62009-12-14 14:20:22 -0800736 status = spi_register_driver(&spidev_spi_driver);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700737 if (status < 0) {
David Brownellb2c8dad2008-06-05 22:45:50 -0700738 class_destroy(spidev_class);
Mike Frysingerdb389b62009-12-14 14:20:22 -0800739 unregister_chrdev(SPIDEV_MAJOR, spidev_spi_driver.driver.name);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700740 }
741 return status;
742}
743module_init(spidev_init);
744
745static void __exit spidev_exit(void)
746{
Mike Frysingerdb389b62009-12-14 14:20:22 -0800747 spi_unregister_driver(&spidev_spi_driver);
David Brownellb2c8dad2008-06-05 22:45:50 -0700748 class_destroy(spidev_class);
Mike Frysingerdb389b62009-12-14 14:20:22 -0800749 unregister_chrdev(SPIDEV_MAJOR, spidev_spi_driver.driver.name);
Andrea Paterniani814a8d52007-05-08 00:32:15 -0700750}
751module_exit(spidev_exit);
752
753MODULE_AUTHOR("Andrea Paterniani, <a.paterniani@swapp-eng.it>");
754MODULE_DESCRIPTION("User mode SPI device interface");
755MODULE_LICENSE("GPL");
Anton Vorontsove0626e32009-09-22 16:46:08 -0700756MODULE_ALIAS("spi:spidev");