blob: 0edccc82ece5afa8e66d58720623affff39c356c [file] [log] [blame]
David Brownell8ae12a02006-01-08 13:34:19 -08001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * SPI init/core code
David Brownell8ae12a02006-01-08 13:34:19 -08003 *
4 * Copyright (C) 2005 David Brownell
Grant Likelyd57a4282012-04-07 14:16:53 -06005 * Copyright (C) 2008 Secret Lab Technologies Ltd.
David Brownell8ae12a02006-01-08 13:34:19 -08006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
David Brownell8ae12a02006-01-08 13:34:19 -080022#include <linux/kernel.h>
Grant Likelyd57a4282012-04-07 14:16:53 -060023#include <linux/kmod.h>
David Brownell8ae12a02006-01-08 13:34:19 -080024#include <linux/device.h>
25#include <linux/init.h>
26#include <linux/cache.h>
Mark Brown99adef32014-01-16 12:22:43 +000027#include <linux/dma-mapping.h>
28#include <linux/dmaengine.h>
Matthias Kaehlcke94040822007-07-17 04:04:16 -070029#include <linux/mutex.h>
Sinan Akman2b7a32f2010-10-02 21:28:29 -060030#include <linux/of_device.h>
Grant Likelyd57a4282012-04-07 14:16:53 -060031#include <linux/of_irq.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020032#include <linux/clk/clk-conf.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Anton Vorontsove0626e32009-09-22 16:46:08 -070034#include <linux/mod_devicetable.h>
David Brownell8ae12a02006-01-08 13:34:19 -080035#include <linux/spi/spi.h>
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +010036#include <linux/of_gpio.h>
Mark Brown3ae22e82010-12-25 15:32:27 +010037#include <linux/pm_runtime.h>
Paul Gortmaker025ed132011-07-10 12:57:55 -040038#include <linux/export.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060039#include <linux/sched/rt.h>
Linus Walleijffbbdd212012-02-22 10:05:38 +010040#include <linux/delay.h>
41#include <linux/kthread.h>
Mika Westerberg64bee4d2012-11-30 12:37:53 +010042#include <linux/ioport.h>
43#include <linux/acpi.h>
David Brownell8ae12a02006-01-08 13:34:19 -080044
Mark Brown56ec1972013-10-07 19:33:53 +010045#define CREATE_TRACE_POINTS
46#include <trace/events/spi.h>
47
David Brownell8ae12a02006-01-08 13:34:19 -080048static void spidev_release(struct device *dev)
49{
Hans-Peter Nilsson0ffa0282007-02-12 00:52:45 -080050 struct spi_device *spi = to_spi_device(dev);
David Brownell8ae12a02006-01-08 13:34:19 -080051
52 /* spi masters may cleanup for released devices */
53 if (spi->master->cleanup)
54 spi->master->cleanup(spi);
55
David Brownell0c868462006-01-08 13:34:25 -080056 spi_master_put(spi->master);
Roman Tereshonkov07a389f2010-04-12 09:56:35 +000057 kfree(spi);
David Brownell8ae12a02006-01-08 13:34:19 -080058}
59
60static ssize_t
61modalias_show(struct device *dev, struct device_attribute *a, char *buf)
62{
63 const struct spi_device *spi = to_spi_device(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +080064 int len;
65
66 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
67 if (len != -ENODEV)
68 return len;
David Brownell8ae12a02006-01-08 13:34:19 -080069
Grant Likelyd8e328b2012-05-20 00:08:13 -060070 return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias);
David Brownell8ae12a02006-01-08 13:34:19 -080071}
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -070072static DEVICE_ATTR_RO(modalias);
David Brownell8ae12a02006-01-08 13:34:19 -080073
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -070074static struct attribute *spi_dev_attrs[] = {
75 &dev_attr_modalias.attr,
76 NULL,
David Brownell8ae12a02006-01-08 13:34:19 -080077};
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -070078ATTRIBUTE_GROUPS(spi_dev);
David Brownell8ae12a02006-01-08 13:34:19 -080079
80/* modalias support makes "modprobe $MODALIAS" new-style hotplug work,
81 * and the sysfs version makes coldplug work too.
82 */
83
Anton Vorontsov75368bf2009-09-22 16:46:04 -070084static const struct spi_device_id *spi_match_id(const struct spi_device_id *id,
85 const struct spi_device *sdev)
86{
87 while (id->name[0]) {
88 if (!strcmp(sdev->modalias, id->name))
89 return id;
90 id++;
91 }
92 return NULL;
93}
94
95const struct spi_device_id *spi_get_device_id(const struct spi_device *sdev)
96{
97 const struct spi_driver *sdrv = to_spi_driver(sdev->dev.driver);
98
99 return spi_match_id(sdrv->id_table, sdev);
100}
101EXPORT_SYMBOL_GPL(spi_get_device_id);
102
David Brownell8ae12a02006-01-08 13:34:19 -0800103static int spi_match_device(struct device *dev, struct device_driver *drv)
104{
105 const struct spi_device *spi = to_spi_device(dev);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700106 const struct spi_driver *sdrv = to_spi_driver(drv);
107
Sinan Akman2b7a32f2010-10-02 21:28:29 -0600108 /* Attempt an OF style match */
109 if (of_driver_match_device(dev, drv))
110 return 1;
111
Mika Westerberg64bee4d2012-11-30 12:37:53 +0100112 /* Then try ACPI */
113 if (acpi_driver_match_device(dev, drv))
114 return 1;
115
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700116 if (sdrv->id_table)
117 return !!spi_match_id(sdrv->id_table, spi);
David Brownell8ae12a02006-01-08 13:34:19 -0800118
Kay Sievers35f74fc2009-01-06 10:44:37 -0800119 return strcmp(spi->modalias, drv->name) == 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800120}
121
Kay Sievers7eff2e72007-08-14 15:15:12 +0200122static int spi_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell8ae12a02006-01-08 13:34:19 -0800123{
124 const struct spi_device *spi = to_spi_device(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800125 int rc;
126
127 rc = acpi_device_uevent_modalias(dev, env);
128 if (rc != -ENODEV)
129 return rc;
David Brownell8ae12a02006-01-08 13:34:19 -0800130
Anton Vorontsove0626e32009-09-22 16:46:08 -0700131 add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias);
David Brownell8ae12a02006-01-08 13:34:19 -0800132 return 0;
133}
134
Mark Brown3ae22e82010-12-25 15:32:27 +0100135#ifdef CONFIG_PM_SLEEP
136static int spi_legacy_suspend(struct device *dev, pm_message_t message)
David Brownell8ae12a02006-01-08 13:34:19 -0800137{
David Brownell3c724262008-02-06 01:38:10 -0800138 int value = 0;
David Brownellb8852442006-01-08 13:34:23 -0800139 struct spi_driver *drv = to_spi_driver(dev->driver);
David Brownell8ae12a02006-01-08 13:34:19 -0800140
David Brownell8ae12a02006-01-08 13:34:19 -0800141 /* suspend will stop irqs and dma; no more i/o */
David Brownell3c724262008-02-06 01:38:10 -0800142 if (drv) {
143 if (drv->suspend)
144 value = drv->suspend(to_spi_device(dev), message);
145 else
146 dev_dbg(dev, "... can't suspend\n");
147 }
David Brownell8ae12a02006-01-08 13:34:19 -0800148 return value;
149}
150
Mark Brown3ae22e82010-12-25 15:32:27 +0100151static int spi_legacy_resume(struct device *dev)
David Brownell8ae12a02006-01-08 13:34:19 -0800152{
David Brownell3c724262008-02-06 01:38:10 -0800153 int value = 0;
David Brownellb8852442006-01-08 13:34:23 -0800154 struct spi_driver *drv = to_spi_driver(dev->driver);
David Brownell8ae12a02006-01-08 13:34:19 -0800155
David Brownell8ae12a02006-01-08 13:34:19 -0800156 /* resume may restart the i/o queue */
David Brownell3c724262008-02-06 01:38:10 -0800157 if (drv) {
158 if (drv->resume)
159 value = drv->resume(to_spi_device(dev));
160 else
161 dev_dbg(dev, "... can't resume\n");
162 }
David Brownell8ae12a02006-01-08 13:34:19 -0800163 return value;
164}
165
Mark Brown3ae22e82010-12-25 15:32:27 +0100166static int spi_pm_suspend(struct device *dev)
167{
168 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
169
170 if (pm)
171 return pm_generic_suspend(dev);
172 else
173 return spi_legacy_suspend(dev, PMSG_SUSPEND);
174}
175
176static int spi_pm_resume(struct device *dev)
177{
178 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
179
180 if (pm)
181 return pm_generic_resume(dev);
182 else
183 return spi_legacy_resume(dev);
184}
185
186static int spi_pm_freeze(struct device *dev)
187{
188 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
189
190 if (pm)
191 return pm_generic_freeze(dev);
192 else
193 return spi_legacy_suspend(dev, PMSG_FREEZE);
194}
195
196static int spi_pm_thaw(struct device *dev)
197{
198 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
199
200 if (pm)
201 return pm_generic_thaw(dev);
202 else
203 return spi_legacy_resume(dev);
204}
205
206static int spi_pm_poweroff(struct device *dev)
207{
208 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
209
210 if (pm)
211 return pm_generic_poweroff(dev);
212 else
213 return spi_legacy_suspend(dev, PMSG_HIBERNATE);
214}
215
216static int spi_pm_restore(struct device *dev)
217{
218 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
219
220 if (pm)
221 return pm_generic_restore(dev);
222 else
223 return spi_legacy_resume(dev);
224}
David Brownell8ae12a02006-01-08 13:34:19 -0800225#else
Mark Brown3ae22e82010-12-25 15:32:27 +0100226#define spi_pm_suspend NULL
227#define spi_pm_resume NULL
228#define spi_pm_freeze NULL
229#define spi_pm_thaw NULL
230#define spi_pm_poweroff NULL
231#define spi_pm_restore NULL
David Brownell8ae12a02006-01-08 13:34:19 -0800232#endif
233
Mark Brown3ae22e82010-12-25 15:32:27 +0100234static const struct dev_pm_ops spi_pm = {
235 .suspend = spi_pm_suspend,
236 .resume = spi_pm_resume,
237 .freeze = spi_pm_freeze,
238 .thaw = spi_pm_thaw,
239 .poweroff = spi_pm_poweroff,
240 .restore = spi_pm_restore,
241 SET_RUNTIME_PM_OPS(
242 pm_generic_runtime_suspend,
243 pm_generic_runtime_resume,
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +0200244 NULL
Mark Brown3ae22e82010-12-25 15:32:27 +0100245 )
246};
247
David Brownell8ae12a02006-01-08 13:34:19 -0800248struct bus_type spi_bus_type = {
249 .name = "spi",
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -0700250 .dev_groups = spi_dev_groups,
David Brownell8ae12a02006-01-08 13:34:19 -0800251 .match = spi_match_device,
252 .uevent = spi_uevent,
Mark Brown3ae22e82010-12-25 15:32:27 +0100253 .pm = &spi_pm,
David Brownell8ae12a02006-01-08 13:34:19 -0800254};
255EXPORT_SYMBOL_GPL(spi_bus_type);
256
David Brownellb8852442006-01-08 13:34:23 -0800257
258static int spi_drv_probe(struct device *dev)
259{
260 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300261 int ret;
David Brownellb8852442006-01-08 13:34:23 -0800262
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200263 ret = of_clk_set_defaults(dev->of_node, false);
264 if (ret)
265 return ret;
266
Jean Delvareaec35f42014-02-13 15:28:41 +0100267 acpi_dev_pm_attach(dev, true);
268 ret = sdrv->probe(to_spi_device(dev));
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300269 if (ret)
Jean Delvareaec35f42014-02-13 15:28:41 +0100270 acpi_dev_pm_detach(dev, true);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300271
272 return ret;
David Brownellb8852442006-01-08 13:34:23 -0800273}
274
275static int spi_drv_remove(struct device *dev)
276{
277 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300278 int ret;
David Brownellb8852442006-01-08 13:34:23 -0800279
Jean Delvareaec35f42014-02-13 15:28:41 +0100280 ret = sdrv->remove(to_spi_device(dev));
281 acpi_dev_pm_detach(dev, true);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300282
283 return ret;
David Brownellb8852442006-01-08 13:34:23 -0800284}
285
286static void spi_drv_shutdown(struct device *dev)
287{
288 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
289
290 sdrv->shutdown(to_spi_device(dev));
291}
292
David Brownell33e34dc2007-05-08 00:32:21 -0700293/**
294 * spi_register_driver - register a SPI driver
295 * @sdrv: the driver to register
296 * Context: can sleep
297 */
David Brownellb8852442006-01-08 13:34:23 -0800298int spi_register_driver(struct spi_driver *sdrv)
299{
300 sdrv->driver.bus = &spi_bus_type;
301 if (sdrv->probe)
302 sdrv->driver.probe = spi_drv_probe;
303 if (sdrv->remove)
304 sdrv->driver.remove = spi_drv_remove;
305 if (sdrv->shutdown)
306 sdrv->driver.shutdown = spi_drv_shutdown;
307 return driver_register(&sdrv->driver);
308}
309EXPORT_SYMBOL_GPL(spi_register_driver);
310
David Brownell8ae12a02006-01-08 13:34:19 -0800311/*-------------------------------------------------------------------------*/
312
313/* SPI devices should normally not be created by SPI device drivers; that
314 * would make them board-specific. Similarly with SPI master drivers.
315 * Device registration normally goes into like arch/.../mach.../board-YYY.c
316 * with other readonly (flashable) information about mainboard devices.
317 */
318
319struct boardinfo {
320 struct list_head list;
Feng Tang2b9603a2010-08-02 15:52:15 +0800321 struct spi_board_info board_info;
David Brownell8ae12a02006-01-08 13:34:19 -0800322};
323
324static LIST_HEAD(board_list);
Feng Tang2b9603a2010-08-02 15:52:15 +0800325static LIST_HEAD(spi_master_list);
326
327/*
328 * Used to protect add/del opertion for board_info list and
329 * spi_master list, and their matching process
330 */
Matthias Kaehlcke94040822007-07-17 04:04:16 -0700331static DEFINE_MUTEX(board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800332
Grant Likelydc87c982008-05-15 16:50:22 -0600333/**
334 * spi_alloc_device - Allocate a new SPI device
335 * @master: Controller to which device is connected
336 * Context: can sleep
337 *
338 * Allows a driver to allocate and initialize a spi_device without
339 * registering it immediately. This allows a driver to directly
340 * fill the spi_device with device parameters before calling
341 * spi_add_device() on it.
342 *
343 * Caller is responsible to call spi_add_device() on the returned
344 * spi_device structure to add it to the SPI master. If the caller
345 * needs to discard the spi_device without adding it, then it should
346 * call spi_dev_put() on it.
347 *
348 * Returns a pointer to the new device, or NULL.
349 */
350struct spi_device *spi_alloc_device(struct spi_master *master)
351{
352 struct spi_device *spi;
Grant Likelydc87c982008-05-15 16:50:22 -0600353
354 if (!spi_master_get(master))
355 return NULL;
356
Jingoo Han5fe5f052013-10-14 10:31:51 +0900357 spi = kzalloc(sizeof(*spi), GFP_KERNEL);
Grant Likelydc87c982008-05-15 16:50:22 -0600358 if (!spi) {
Grant Likelydc87c982008-05-15 16:50:22 -0600359 spi_master_put(master);
360 return NULL;
361 }
362
363 spi->master = master;
Laurent Pinchart178db7d2011-12-12 01:15:06 +0100364 spi->dev.parent = &master->dev;
Grant Likelydc87c982008-05-15 16:50:22 -0600365 spi->dev.bus = &spi_bus_type;
366 spi->dev.release = spidev_release;
Andreas Larsson446411e2013-02-13 14:20:25 +0100367 spi->cs_gpio = -ENOENT;
Grant Likelydc87c982008-05-15 16:50:22 -0600368 device_initialize(&spi->dev);
369 return spi;
370}
371EXPORT_SYMBOL_GPL(spi_alloc_device);
372
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200373static void spi_dev_set_name(struct spi_device *spi)
374{
375 struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
376
377 if (adev) {
378 dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
379 return;
380 }
381
382 dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->master->dev),
383 spi->chip_select);
384}
385
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200386static int spi_dev_check(struct device *dev, void *data)
387{
388 struct spi_device *spi = to_spi_device(dev);
389 struct spi_device *new_spi = data;
390
391 if (spi->master == new_spi->master &&
392 spi->chip_select == new_spi->chip_select)
393 return -EBUSY;
394 return 0;
395}
396
Grant Likelydc87c982008-05-15 16:50:22 -0600397/**
398 * spi_add_device - Add spi_device allocated with spi_alloc_device
399 * @spi: spi_device to register
400 *
401 * Companion function to spi_alloc_device. Devices allocated with
402 * spi_alloc_device can be added onto the spi bus with this function.
403 *
David Brownelle48880e2008-08-15 00:40:44 -0700404 * Returns 0 on success; negative errno on failure
Grant Likelydc87c982008-05-15 16:50:22 -0600405 */
406int spi_add_device(struct spi_device *spi)
407{
David Brownelle48880e2008-08-15 00:40:44 -0700408 static DEFINE_MUTEX(spi_add_lock);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100409 struct spi_master *master = spi->master;
410 struct device *dev = master->dev.parent;
Grant Likelydc87c982008-05-15 16:50:22 -0600411 int status;
412
413 /* Chipselects are numbered 0..max; validate. */
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100414 if (spi->chip_select >= master->num_chipselect) {
Grant Likelydc87c982008-05-15 16:50:22 -0600415 dev_err(dev, "cs%d >= max %d\n",
416 spi->chip_select,
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100417 master->num_chipselect);
Grant Likelydc87c982008-05-15 16:50:22 -0600418 return -EINVAL;
419 }
420
421 /* Set the bus ID string */
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200422 spi_dev_set_name(spi);
David Brownelle48880e2008-08-15 00:40:44 -0700423
424 /* We need to make sure there's no other device with this
425 * chipselect **BEFORE** we call setup(), else we'll trash
426 * its configuration. Lock against concurrent add() calls.
427 */
428 mutex_lock(&spi_add_lock);
429
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200430 status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
431 if (status) {
David Brownelle48880e2008-08-15 00:40:44 -0700432 dev_err(dev, "chipselect %d already in use\n",
433 spi->chip_select);
David Brownelle48880e2008-08-15 00:40:44 -0700434 goto done;
435 }
436
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100437 if (master->cs_gpios)
438 spi->cs_gpio = master->cs_gpios[spi->chip_select];
439
David Brownelle48880e2008-08-15 00:40:44 -0700440 /* Drivers may modify this initial i/o setup, but will
441 * normally rely on the device being setup. Devices
442 * using SPI_CS_HIGH can't coexist well otherwise...
443 */
David Brownell7d077192009-06-17 16:26:03 -0700444 status = spi_setup(spi);
Grant Likelydc87c982008-05-15 16:50:22 -0600445 if (status < 0) {
Linus Walleijeb288a12010-10-21 21:06:44 +0200446 dev_err(dev, "can't setup %s, status %d\n",
447 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700448 goto done;
Grant Likelydc87c982008-05-15 16:50:22 -0600449 }
450
David Brownelle48880e2008-08-15 00:40:44 -0700451 /* Device may be bound to an active driver when this returns */
Grant Likelydc87c982008-05-15 16:50:22 -0600452 status = device_add(&spi->dev);
David Brownelle48880e2008-08-15 00:40:44 -0700453 if (status < 0)
Linus Walleijeb288a12010-10-21 21:06:44 +0200454 dev_err(dev, "can't add %s, status %d\n",
455 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700456 else
Kay Sievers35f74fc2009-01-06 10:44:37 -0800457 dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
Grant Likelydc87c982008-05-15 16:50:22 -0600458
David Brownelle48880e2008-08-15 00:40:44 -0700459done:
460 mutex_unlock(&spi_add_lock);
461 return status;
Grant Likelydc87c982008-05-15 16:50:22 -0600462}
463EXPORT_SYMBOL_GPL(spi_add_device);
David Brownell8ae12a02006-01-08 13:34:19 -0800464
David Brownell33e34dc2007-05-08 00:32:21 -0700465/**
466 * spi_new_device - instantiate one new SPI device
467 * @master: Controller to which device is connected
468 * @chip: Describes the SPI device
469 * Context: can sleep
470 *
471 * On typical mainboards, this is purely internal; and it's not needed
David Brownell8ae12a02006-01-08 13:34:19 -0800472 * after board init creates the hard-wired devices. Some development
473 * platforms may not be able to use spi_register_board_info though, and
474 * this is exported so that for example a USB or parport based adapter
475 * driver could add devices (which it would learn about out-of-band).
David Brownell082c8cb2007-07-31 00:39:45 -0700476 *
477 * Returns the new device, or NULL.
David Brownell8ae12a02006-01-08 13:34:19 -0800478 */
Adrian Bunke9d5a462007-03-26 21:32:23 -0800479struct spi_device *spi_new_device(struct spi_master *master,
480 struct spi_board_info *chip)
David Brownell8ae12a02006-01-08 13:34:19 -0800481{
482 struct spi_device *proxy;
David Brownell8ae12a02006-01-08 13:34:19 -0800483 int status;
484
David Brownell082c8cb2007-07-31 00:39:45 -0700485 /* NOTE: caller did any chip->bus_num checks necessary.
486 *
487 * Also, unless we change the return value convention to use
488 * error-or-pointer (not NULL-or-pointer), troubleshootability
489 * suggests syslogged diagnostics are best here (ugh).
490 */
491
Grant Likelydc87c982008-05-15 16:50:22 -0600492 proxy = spi_alloc_device(master);
493 if (!proxy)
David Brownell8ae12a02006-01-08 13:34:19 -0800494 return NULL;
495
Grant Likely102eb972008-07-23 21:29:55 -0700496 WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
497
David Brownell8ae12a02006-01-08 13:34:19 -0800498 proxy->chip_select = chip->chip_select;
499 proxy->max_speed_hz = chip->max_speed_hz;
David Brownell980a01c2006-06-28 07:47:15 -0700500 proxy->mode = chip->mode;
David Brownell8ae12a02006-01-08 13:34:19 -0800501 proxy->irq = chip->irq;
Grant Likely102eb972008-07-23 21:29:55 -0700502 strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
David Brownell8ae12a02006-01-08 13:34:19 -0800503 proxy->dev.platform_data = (void *) chip->platform_data;
504 proxy->controller_data = chip->controller_data;
505 proxy->controller_state = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800506
Grant Likelydc87c982008-05-15 16:50:22 -0600507 status = spi_add_device(proxy);
David Brownell8ae12a02006-01-08 13:34:19 -0800508 if (status < 0) {
Grant Likelydc87c982008-05-15 16:50:22 -0600509 spi_dev_put(proxy);
510 return NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800511 }
512
David Brownell8ae12a02006-01-08 13:34:19 -0800513 return proxy;
514}
515EXPORT_SYMBOL_GPL(spi_new_device);
516
Feng Tang2b9603a2010-08-02 15:52:15 +0800517static void spi_match_master_to_boardinfo(struct spi_master *master,
518 struct spi_board_info *bi)
519{
520 struct spi_device *dev;
521
522 if (master->bus_num != bi->bus_num)
523 return;
524
525 dev = spi_new_device(master, bi);
526 if (!dev)
527 dev_err(master->dev.parent, "can't create new device for %s\n",
528 bi->modalias);
529}
530
David Brownell33e34dc2007-05-08 00:32:21 -0700531/**
532 * spi_register_board_info - register SPI devices for a given board
533 * @info: array of chip descriptors
534 * @n: how many descriptors are provided
535 * Context: can sleep
536 *
David Brownell8ae12a02006-01-08 13:34:19 -0800537 * Board-specific early init code calls this (probably during arch_initcall)
538 * with segments of the SPI device table. Any device nodes are created later,
539 * after the relevant parent SPI controller (bus_num) is defined. We keep
540 * this table of devices forever, so that reloading a controller driver will
541 * not make Linux forget about these hard-wired devices.
542 *
543 * Other code can also call this, e.g. a particular add-on board might provide
544 * SPI devices through its expansion connector, so code initializing that board
545 * would naturally declare its SPI devices.
546 *
547 * The board info passed can safely be __initdata ... but be careful of
548 * any embedded pointers (platform_data, etc), they're copied as-is.
549 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000550int spi_register_board_info(struct spi_board_info const *info, unsigned n)
David Brownell8ae12a02006-01-08 13:34:19 -0800551{
Feng Tang2b9603a2010-08-02 15:52:15 +0800552 struct boardinfo *bi;
553 int i;
David Brownell8ae12a02006-01-08 13:34:19 -0800554
Feng Tang2b9603a2010-08-02 15:52:15 +0800555 bi = kzalloc(n * sizeof(*bi), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -0800556 if (!bi)
557 return -ENOMEM;
David Brownell8ae12a02006-01-08 13:34:19 -0800558
Feng Tang2b9603a2010-08-02 15:52:15 +0800559 for (i = 0; i < n; i++, bi++, info++) {
560 struct spi_master *master;
David Brownell8ae12a02006-01-08 13:34:19 -0800561
Feng Tang2b9603a2010-08-02 15:52:15 +0800562 memcpy(&bi->board_info, info, sizeof(*info));
563 mutex_lock(&board_lock);
564 list_add_tail(&bi->list, &board_list);
565 list_for_each_entry(master, &spi_master_list, list)
566 spi_match_master_to_boardinfo(master, &bi->board_info);
567 mutex_unlock(&board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800568 }
Feng Tang2b9603a2010-08-02 15:52:15 +0800569
570 return 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800571}
572
573/*-------------------------------------------------------------------------*/
574
Mark Brownb1589352013-10-05 11:50:40 +0100575static void spi_set_cs(struct spi_device *spi, bool enable)
576{
577 if (spi->mode & SPI_CS_HIGH)
578 enable = !enable;
579
580 if (spi->cs_gpio >= 0)
581 gpio_set_value(spi->cs_gpio, !enable);
582 else if (spi->master->set_cs)
583 spi->master->set_cs(spi, !enable);
584}
585
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200586#ifdef CONFIG_HAS_DMA
Mark Brown6ad45a22014-02-02 13:47:47 +0000587static int spi_map_buf(struct spi_master *master, struct device *dev,
588 struct sg_table *sgt, void *buf, size_t len,
589 enum dma_data_direction dir)
590{
591 const bool vmalloced_buf = is_vmalloc_addr(buf);
592 const int desc_len = vmalloced_buf ? PAGE_SIZE : master->max_dma_len;
593 const int sgs = DIV_ROUND_UP(len, desc_len);
594 struct page *vm_page;
595 void *sg_buf;
596 size_t min;
597 int i, ret;
598
599 ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
600 if (ret != 0)
601 return ret;
602
603 for (i = 0; i < sgs; i++) {
604 min = min_t(size_t, len, desc_len);
605
606 if (vmalloced_buf) {
607 vm_page = vmalloc_to_page(buf);
608 if (!vm_page) {
609 sg_free_table(sgt);
610 return -ENOMEM;
611 }
612 sg_buf = page_address(vm_page) +
613 ((size_t)buf & ~PAGE_MASK);
614 } else {
615 sg_buf = buf;
616 }
617
618 sg_set_buf(&sgt->sgl[i], sg_buf, min);
619
620 buf += min;
621 len -= min;
622 }
623
624 ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
Geert Uytterhoeven89e4b662014-07-10 15:29:32 +0200625 if (!ret)
626 ret = -ENOMEM;
Mark Brown6ad45a22014-02-02 13:47:47 +0000627 if (ret < 0) {
628 sg_free_table(sgt);
629 return ret;
630 }
631
632 sgt->nents = ret;
633
634 return 0;
635}
636
637static void spi_unmap_buf(struct spi_master *master, struct device *dev,
638 struct sg_table *sgt, enum dma_data_direction dir)
639{
640 if (sgt->orig_nents) {
641 dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
642 sg_free_table(sgt);
643 }
644}
645
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200646static int __spi_map_msg(struct spi_master *master, struct spi_message *msg)
Mark Brown99adef32014-01-16 12:22:43 +0000647{
Mark Brown99adef32014-01-16 12:22:43 +0000648 struct device *tx_dev, *rx_dev;
649 struct spi_transfer *xfer;
Mark Brown6ad45a22014-02-02 13:47:47 +0000650 int ret;
Mark Brown3a2eba92014-01-28 20:17:03 +0000651
Mark Brown6ad45a22014-02-02 13:47:47 +0000652 if (!master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000653 return 0;
654
Geert Uytterhoeven3fc25422014-07-10 15:29:33 +0200655 tx_dev = master->dma_tx->device->dev;
656 rx_dev = master->dma_rx->device->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000657
658 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
659 if (!master->can_dma(master, msg->spi, xfer))
660 continue;
661
662 if (xfer->tx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000663 ret = spi_map_buf(master, tx_dev, &xfer->tx_sg,
664 (void *)xfer->tx_buf, xfer->len,
665 DMA_TO_DEVICE);
666 if (ret != 0)
667 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000668 }
669
670 if (xfer->rx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000671 ret = spi_map_buf(master, rx_dev, &xfer->rx_sg,
672 xfer->rx_buf, xfer->len,
673 DMA_FROM_DEVICE);
674 if (ret != 0) {
675 spi_unmap_buf(master, tx_dev, &xfer->tx_sg,
676 DMA_TO_DEVICE);
677 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000678 }
679 }
680 }
681
682 master->cur_msg_mapped = true;
683
684 return 0;
685}
686
687static int spi_unmap_msg(struct spi_master *master, struct spi_message *msg)
688{
689 struct spi_transfer *xfer;
690 struct device *tx_dev, *rx_dev;
691
Mark Brown6ad45a22014-02-02 13:47:47 +0000692 if (!master->cur_msg_mapped || !master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000693 return 0;
694
Geert Uytterhoeven3fc25422014-07-10 15:29:33 +0200695 tx_dev = master->dma_tx->device->dev;
696 rx_dev = master->dma_rx->device->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000697
698 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
699 if (!master->can_dma(master, msg->spi, xfer))
700 continue;
701
Mark Brown6ad45a22014-02-02 13:47:47 +0000702 spi_unmap_buf(master, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE);
703 spi_unmap_buf(master, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE);
Mark Brown99adef32014-01-16 12:22:43 +0000704 }
705
706 return 0;
707}
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200708#else /* !CONFIG_HAS_DMA */
709static inline int __spi_map_msg(struct spi_master *master,
710 struct spi_message *msg)
711{
712 return 0;
713}
714
715static inline int spi_unmap_msg(struct spi_master *master,
716 struct spi_message *msg)
717{
718 return 0;
719}
720#endif /* !CONFIG_HAS_DMA */
721
722static int spi_map_msg(struct spi_master *master, struct spi_message *msg)
723{
724 struct spi_transfer *xfer;
725 void *tmp;
726 unsigned int max_tx, max_rx;
727
728 if (master->flags & (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX)) {
729 max_tx = 0;
730 max_rx = 0;
731
732 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
733 if ((master->flags & SPI_MASTER_MUST_TX) &&
734 !xfer->tx_buf)
735 max_tx = max(xfer->len, max_tx);
736 if ((master->flags & SPI_MASTER_MUST_RX) &&
737 !xfer->rx_buf)
738 max_rx = max(xfer->len, max_rx);
739 }
740
741 if (max_tx) {
742 tmp = krealloc(master->dummy_tx, max_tx,
743 GFP_KERNEL | GFP_DMA);
744 if (!tmp)
745 return -ENOMEM;
746 master->dummy_tx = tmp;
747 memset(tmp, 0, max_tx);
748 }
749
750 if (max_rx) {
751 tmp = krealloc(master->dummy_rx, max_rx,
752 GFP_KERNEL | GFP_DMA);
753 if (!tmp)
754 return -ENOMEM;
755 master->dummy_rx = tmp;
756 }
757
758 if (max_tx || max_rx) {
759 list_for_each_entry(xfer, &msg->transfers,
760 transfer_list) {
761 if (!xfer->tx_buf)
762 xfer->tx_buf = master->dummy_tx;
763 if (!xfer->rx_buf)
764 xfer->rx_buf = master->dummy_rx;
765 }
766 }
767 }
768
769 return __spi_map_msg(master, msg);
770}
Mark Brown99adef32014-01-16 12:22:43 +0000771
Mark Brownb1589352013-10-05 11:50:40 +0100772/*
773 * spi_transfer_one_message - Default implementation of transfer_one_message()
774 *
775 * This is a standard implementation of transfer_one_message() for
776 * drivers which impelment a transfer_one() operation. It provides
777 * standard handling of delays and chip select management.
778 */
779static int spi_transfer_one_message(struct spi_master *master,
780 struct spi_message *msg)
781{
782 struct spi_transfer *xfer;
Mark Brownb1589352013-10-05 11:50:40 +0100783 bool keep_cs = false;
784 int ret = 0;
Mark Brown16a0ce42014-01-30 22:16:41 +0000785 int ms = 1;
Mark Brownb1589352013-10-05 11:50:40 +0100786
787 spi_set_cs(msg->spi, true);
788
789 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
790 trace_spi_transfer_start(msg, xfer);
791
Mark Brown38ec10f2014-08-16 16:27:41 +0100792 if (xfer->tx_buf || xfer->rx_buf) {
793 reinit_completion(&master->xfer_completion);
Mark Brownb1589352013-10-05 11:50:40 +0100794
Mark Brown38ec10f2014-08-16 16:27:41 +0100795 ret = master->transfer_one(master, msg->spi, xfer);
796 if (ret < 0) {
797 dev_err(&msg->spi->dev,
798 "SPI transfer failed: %d\n", ret);
799 goto out;
800 }
Mark Brownb1589352013-10-05 11:50:40 +0100801
Mark Brown38ec10f2014-08-16 16:27:41 +0100802 if (ret > 0) {
803 ret = 0;
804 ms = xfer->len * 8 * 1000 / xfer->speed_hz;
805 ms += ms + 100; /* some tolerance */
Mark Brown16a0ce42014-01-30 22:16:41 +0000806
Mark Brown38ec10f2014-08-16 16:27:41 +0100807 ms = wait_for_completion_timeout(&master->xfer_completion,
808 msecs_to_jiffies(ms));
809 }
Mark Brown16a0ce42014-01-30 22:16:41 +0000810
Mark Brown38ec10f2014-08-16 16:27:41 +0100811 if (ms == 0) {
812 dev_err(&msg->spi->dev,
813 "SPI transfer timed out\n");
814 msg->status = -ETIMEDOUT;
815 }
816 } else {
817 if (xfer->len)
818 dev_err(&msg->spi->dev,
819 "Bufferless transfer has length %u\n",
820 xfer->len);
Axel Lin13a42792014-01-18 22:05:22 +0800821 }
Mark Brownb1589352013-10-05 11:50:40 +0100822
823 trace_spi_transfer_stop(msg, xfer);
824
825 if (msg->status != -EINPROGRESS)
826 goto out;
827
828 if (xfer->delay_usecs)
829 udelay(xfer->delay_usecs);
830
831 if (xfer->cs_change) {
832 if (list_is_last(&xfer->transfer_list,
833 &msg->transfers)) {
834 keep_cs = true;
835 } else {
Mark Brown0b73aa62014-03-29 23:48:07 +0000836 spi_set_cs(msg->spi, false);
837 udelay(10);
838 spi_set_cs(msg->spi, true);
Mark Brownb1589352013-10-05 11:50:40 +0100839 }
840 }
841
842 msg->actual_length += xfer->len;
843 }
844
845out:
846 if (ret != 0 || !keep_cs)
847 spi_set_cs(msg->spi, false);
848
849 if (msg->status == -EINPROGRESS)
850 msg->status = ret;
851
852 spi_finalize_current_message(master);
853
854 return ret;
855}
856
857/**
858 * spi_finalize_current_transfer - report completion of a transfer
859 *
860 * Called by SPI drivers using the core transfer_one_message()
861 * implementation to notify it that the current interrupt driven
Geert Uytterhoeven9e8f4882014-01-21 16:10:05 +0100862 * transfer has finished and the next one may be scheduled.
Mark Brownb1589352013-10-05 11:50:40 +0100863 */
864void spi_finalize_current_transfer(struct spi_master *master)
865{
866 complete(&master->xfer_completion);
867}
868EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
869
Linus Walleijffbbdd212012-02-22 10:05:38 +0100870/**
871 * spi_pump_messages - kthread work function which processes spi message queue
872 * @work: pointer to kthread work struct contained in the master struct
873 *
874 * This function checks if there is any spi message in the queue that
875 * needs processing and if so call out to the driver to initialize hardware
876 * and transfer each message.
877 *
878 */
879static void spi_pump_messages(struct kthread_work *work)
880{
881 struct spi_master *master =
882 container_of(work, struct spi_master, pump_messages);
883 unsigned long flags;
884 bool was_busy = false;
885 int ret;
886
887 /* Lock queue and check for queue work */
888 spin_lock_irqsave(&master->queue_lock, flags);
889 if (list_empty(&master->queue) || !master->running) {
Bryan Freedb0b36b82013-03-13 11:17:40 -0700890 if (!master->busy) {
891 spin_unlock_irqrestore(&master->queue_lock, flags);
892 return;
Linus Walleijffbbdd212012-02-22 10:05:38 +0100893 }
894 master->busy = false;
895 spin_unlock_irqrestore(&master->queue_lock, flags);
Mark Brown3a2eba92014-01-28 20:17:03 +0000896 kfree(master->dummy_rx);
897 master->dummy_rx = NULL;
898 kfree(master->dummy_tx);
899 master->dummy_tx = NULL;
Bryan Freedb0b36b82013-03-13 11:17:40 -0700900 if (master->unprepare_transfer_hardware &&
901 master->unprepare_transfer_hardware(master))
902 dev_err(&master->dev,
903 "failed to unprepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +0100904 if (master->auto_runtime_pm) {
905 pm_runtime_mark_last_busy(master->dev.parent);
906 pm_runtime_put_autosuspend(master->dev.parent);
907 }
Mark Brown56ec1972013-10-07 19:33:53 +0100908 trace_spi_master_idle(master);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100909 return;
910 }
911
912 /* Make sure we are not already running a message */
913 if (master->cur_msg) {
914 spin_unlock_irqrestore(&master->queue_lock, flags);
915 return;
916 }
917 /* Extract head of queue */
918 master->cur_msg =
Axel Lina89e2d22014-01-09 16:03:58 +0800919 list_first_entry(&master->queue, struct spi_message, queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100920
921 list_del_init(&master->cur_msg->queue);
922 if (master->busy)
923 was_busy = true;
924 else
925 master->busy = true;
926 spin_unlock_irqrestore(&master->queue_lock, flags);
927
Mark Brown49834de2013-07-28 14:47:02 +0100928 if (!was_busy && master->auto_runtime_pm) {
929 ret = pm_runtime_get_sync(master->dev.parent);
930 if (ret < 0) {
931 dev_err(&master->dev, "Failed to power device: %d\n",
932 ret);
933 return;
934 }
935 }
936
Mark Brown56ec1972013-10-07 19:33:53 +0100937 if (!was_busy)
938 trace_spi_master_busy(master);
939
Shubhrajyoti D7dfd2bd2012-05-10 19:20:41 +0530940 if (!was_busy && master->prepare_transfer_hardware) {
Linus Walleijffbbdd212012-02-22 10:05:38 +0100941 ret = master->prepare_transfer_hardware(master);
942 if (ret) {
943 dev_err(&master->dev,
944 "failed to prepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +0100945
946 if (master->auto_runtime_pm)
947 pm_runtime_put(master->dev.parent);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100948 return;
949 }
950 }
951
Mark Brown56ec1972013-10-07 19:33:53 +0100952 trace_spi_message_start(master->cur_msg);
953
Mark Brown2841a5f2013-10-05 00:23:12 +0100954 if (master->prepare_message) {
955 ret = master->prepare_message(master, master->cur_msg);
956 if (ret) {
957 dev_err(&master->dev,
958 "failed to prepare message: %d\n", ret);
959 master->cur_msg->status = ret;
960 spi_finalize_current_message(master);
961 return;
962 }
963 master->cur_msg_prepared = true;
964 }
965
Mark Brown99adef32014-01-16 12:22:43 +0000966 ret = spi_map_msg(master, master->cur_msg);
967 if (ret) {
968 master->cur_msg->status = ret;
969 spi_finalize_current_message(master);
970 return;
971 }
972
Linus Walleijffbbdd212012-02-22 10:05:38 +0100973 ret = master->transfer_one_message(master, master->cur_msg);
974 if (ret) {
975 dev_err(&master->dev,
Geert Uytterhoeven1f802f82014-01-28 10:33:03 +0100976 "failed to transfer one message from queue\n");
Linus Walleijffbbdd212012-02-22 10:05:38 +0100977 return;
978 }
979}
980
981static int spi_init_queue(struct spi_master *master)
982{
983 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
984
985 INIT_LIST_HEAD(&master->queue);
986 spin_lock_init(&master->queue_lock);
987
988 master->running = false;
989 master->busy = false;
990
991 init_kthread_worker(&master->kworker);
992 master->kworker_task = kthread_run(kthread_worker_fn,
Kees Cookf1701682013-07-03 15:04:58 -0700993 &master->kworker, "%s",
Linus Walleijffbbdd212012-02-22 10:05:38 +0100994 dev_name(&master->dev));
995 if (IS_ERR(master->kworker_task)) {
996 dev_err(&master->dev, "failed to create message pump task\n");
997 return -ENOMEM;
998 }
999 init_kthread_work(&master->pump_messages, spi_pump_messages);
1000
1001 /*
1002 * Master config will indicate if this controller should run the
1003 * message pump with high (realtime) priority to reduce the transfer
1004 * latency on the bus by minimising the delay between a transfer
1005 * request and the scheduling of the message pump thread. Without this
1006 * setting the message pump thread will remain at default priority.
1007 */
1008 if (master->rt) {
1009 dev_info(&master->dev,
1010 "will run message pump with realtime priority\n");
1011 sched_setscheduler(master->kworker_task, SCHED_FIFO, &param);
1012 }
1013
1014 return 0;
1015}
1016
1017/**
1018 * spi_get_next_queued_message() - called by driver to check for queued
1019 * messages
1020 * @master: the master to check for queued messages
1021 *
1022 * If there are more messages in the queue, the next message is returned from
1023 * this call.
1024 */
1025struct spi_message *spi_get_next_queued_message(struct spi_master *master)
1026{
1027 struct spi_message *next;
1028 unsigned long flags;
1029
1030 /* get a pointer to the next message, if any */
1031 spin_lock_irqsave(&master->queue_lock, flags);
Axel Lin1cfd97f2014-01-02 15:16:40 +08001032 next = list_first_entry_or_null(&master->queue, struct spi_message,
1033 queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001034 spin_unlock_irqrestore(&master->queue_lock, flags);
1035
1036 return next;
1037}
1038EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1039
1040/**
1041 * spi_finalize_current_message() - the current message is complete
1042 * @master: the master to return the message to
1043 *
1044 * Called by the driver to notify the core that the message in the front of the
1045 * queue is complete and can be removed from the queue.
1046 */
1047void spi_finalize_current_message(struct spi_master *master)
1048{
1049 struct spi_message *mesg;
1050 unsigned long flags;
Mark Brown2841a5f2013-10-05 00:23:12 +01001051 int ret;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001052
1053 spin_lock_irqsave(&master->queue_lock, flags);
1054 mesg = master->cur_msg;
1055 master->cur_msg = NULL;
1056
1057 queue_kthread_work(&master->kworker, &master->pump_messages);
1058 spin_unlock_irqrestore(&master->queue_lock, flags);
1059
Mark Brown99adef32014-01-16 12:22:43 +00001060 spi_unmap_msg(master, mesg);
1061
Mark Brown2841a5f2013-10-05 00:23:12 +01001062 if (master->cur_msg_prepared && master->unprepare_message) {
1063 ret = master->unprepare_message(master, mesg);
1064 if (ret) {
1065 dev_err(&master->dev,
1066 "failed to unprepare message: %d\n", ret);
1067 }
1068 }
1069 master->cur_msg_prepared = false;
1070
Linus Walleijffbbdd212012-02-22 10:05:38 +01001071 mesg->state = NULL;
1072 if (mesg->complete)
1073 mesg->complete(mesg->context);
Mark Brown56ec1972013-10-07 19:33:53 +01001074
1075 trace_spi_message_done(mesg);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001076}
1077EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1078
1079static int spi_start_queue(struct spi_master *master)
1080{
1081 unsigned long flags;
1082
1083 spin_lock_irqsave(&master->queue_lock, flags);
1084
1085 if (master->running || master->busy) {
1086 spin_unlock_irqrestore(&master->queue_lock, flags);
1087 return -EBUSY;
1088 }
1089
1090 master->running = true;
1091 master->cur_msg = NULL;
1092 spin_unlock_irqrestore(&master->queue_lock, flags);
1093
1094 queue_kthread_work(&master->kworker, &master->pump_messages);
1095
1096 return 0;
1097}
1098
1099static int spi_stop_queue(struct spi_master *master)
1100{
1101 unsigned long flags;
1102 unsigned limit = 500;
1103 int ret = 0;
1104
1105 spin_lock_irqsave(&master->queue_lock, flags);
1106
1107 /*
1108 * This is a bit lame, but is optimized for the common execution path.
1109 * A wait_queue on the master->busy could be used, but then the common
1110 * execution path (pump_messages) would be required to call wake_up or
1111 * friends on every SPI message. Do this instead.
1112 */
1113 while ((!list_empty(&master->queue) || master->busy) && limit--) {
1114 spin_unlock_irqrestore(&master->queue_lock, flags);
Axel Linf97b26b2014-02-21 09:15:18 +08001115 usleep_range(10000, 11000);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001116 spin_lock_irqsave(&master->queue_lock, flags);
1117 }
1118
1119 if (!list_empty(&master->queue) || master->busy)
1120 ret = -EBUSY;
1121 else
1122 master->running = false;
1123
1124 spin_unlock_irqrestore(&master->queue_lock, flags);
1125
1126 if (ret) {
1127 dev_warn(&master->dev,
1128 "could not stop message queue\n");
1129 return ret;
1130 }
1131 return ret;
1132}
1133
1134static int spi_destroy_queue(struct spi_master *master)
1135{
1136 int ret;
1137
1138 ret = spi_stop_queue(master);
1139
1140 /*
1141 * flush_kthread_worker will block until all work is done.
1142 * If the reason that stop_queue timed out is that the work will never
1143 * finish, then it does no good to call flush/stop thread, so
1144 * return anyway.
1145 */
1146 if (ret) {
1147 dev_err(&master->dev, "problem destroying queue\n");
1148 return ret;
1149 }
1150
1151 flush_kthread_worker(&master->kworker);
1152 kthread_stop(master->kworker_task);
1153
1154 return 0;
1155}
1156
1157/**
1158 * spi_queued_transfer - transfer function for queued transfers
1159 * @spi: spi device which is requesting transfer
1160 * @msg: spi message which is to handled is queued to driver queue
1161 */
1162static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
1163{
1164 struct spi_master *master = spi->master;
1165 unsigned long flags;
1166
1167 spin_lock_irqsave(&master->queue_lock, flags);
1168
1169 if (!master->running) {
1170 spin_unlock_irqrestore(&master->queue_lock, flags);
1171 return -ESHUTDOWN;
1172 }
1173 msg->actual_length = 0;
1174 msg->status = -EINPROGRESS;
1175
1176 list_add_tail(&msg->queue, &master->queue);
Axel Lin96b3eac2013-08-22 23:41:34 +08001177 if (!master->busy)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001178 queue_kthread_work(&master->kworker, &master->pump_messages);
1179
1180 spin_unlock_irqrestore(&master->queue_lock, flags);
1181 return 0;
1182}
1183
1184static int spi_master_initialize_queue(struct spi_master *master)
1185{
1186 int ret;
1187
Linus Walleijffbbdd212012-02-22 10:05:38 +01001188 master->transfer = spi_queued_transfer;
Mark Brownb1589352013-10-05 11:50:40 +01001189 if (!master->transfer_one_message)
1190 master->transfer_one_message = spi_transfer_one_message;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001191
1192 /* Initialize and start queue */
1193 ret = spi_init_queue(master);
1194 if (ret) {
1195 dev_err(&master->dev, "problem initializing queue\n");
1196 goto err_init_queue;
1197 }
Mark Brownc3676d52014-05-01 10:47:52 -07001198 master->queued = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001199 ret = spi_start_queue(master);
1200 if (ret) {
1201 dev_err(&master->dev, "problem starting queue\n");
1202 goto err_start_queue;
1203 }
1204
1205 return 0;
1206
1207err_start_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001208 spi_destroy_queue(master);
Mark Brownc3676d52014-05-01 10:47:52 -07001209err_init_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001210 return ret;
1211}
1212
1213/*-------------------------------------------------------------------------*/
1214
Andreas Larsson7cb94362012-12-04 15:09:38 +01001215#if defined(CONFIG_OF)
Grant Likelyd57a4282012-04-07 14:16:53 -06001216/**
1217 * of_register_spi_devices() - Register child devices onto the SPI bus
1218 * @master: Pointer to spi_master device
1219 *
1220 * Registers an spi_device for each child node of master node which has a 'reg'
1221 * property.
1222 */
1223static void of_register_spi_devices(struct spi_master *master)
1224{
1225 struct spi_device *spi;
1226 struct device_node *nc;
Grant Likelyd57a4282012-04-07 14:16:53 -06001227 int rc;
Trent Piepho89da4292013-09-27 05:37:25 -07001228 u32 value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001229
1230 if (!master->dev.of_node)
1231 return;
1232
Alexander Sverdlinf3b61592012-11-29 08:59:29 +01001233 for_each_available_child_of_node(master->dev.of_node, nc) {
Grant Likelyd57a4282012-04-07 14:16:53 -06001234 /* Alloc an spi_device */
1235 spi = spi_alloc_device(master);
1236 if (!spi) {
1237 dev_err(&master->dev, "spi_device alloc error for %s\n",
1238 nc->full_name);
1239 spi_dev_put(spi);
1240 continue;
1241 }
1242
1243 /* Select device driver */
1244 if (of_modalias_node(nc, spi->modalias,
1245 sizeof(spi->modalias)) < 0) {
1246 dev_err(&master->dev, "cannot find modalias for %s\n",
1247 nc->full_name);
1248 spi_dev_put(spi);
1249 continue;
1250 }
1251
1252 /* Device address */
Trent Piepho89da4292013-09-27 05:37:25 -07001253 rc = of_property_read_u32(nc, "reg", &value);
1254 if (rc) {
1255 dev_err(&master->dev, "%s has no valid 'reg' property (%d)\n",
1256 nc->full_name, rc);
Grant Likelyd57a4282012-04-07 14:16:53 -06001257 spi_dev_put(spi);
1258 continue;
1259 }
Trent Piepho89da4292013-09-27 05:37:25 -07001260 spi->chip_select = value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001261
1262 /* Mode (clock phase/polarity/etc.) */
1263 if (of_find_property(nc, "spi-cpha", NULL))
1264 spi->mode |= SPI_CPHA;
1265 if (of_find_property(nc, "spi-cpol", NULL))
1266 spi->mode |= SPI_CPOL;
1267 if (of_find_property(nc, "spi-cs-high", NULL))
1268 spi->mode |= SPI_CS_HIGH;
Lars-Peter Clausenc20151d2012-12-06 16:55:33 +01001269 if (of_find_property(nc, "spi-3wire", NULL))
1270 spi->mode |= SPI_3WIRE;
Zhao Qiangcd6339e2014-04-01 17:10:50 +08001271 if (of_find_property(nc, "spi-lsb-first", NULL))
1272 spi->mode |= SPI_LSB_FIRST;
Grant Likelyd57a4282012-04-07 14:16:53 -06001273
wangyuhangf477b7f2013-08-11 18:15:17 +08001274 /* Device DUAL/QUAD mode */
Trent Piepho89da4292013-09-27 05:37:25 -07001275 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
1276 switch (value) {
1277 case 1:
Mark Browna822e992013-08-30 23:19:40 +01001278 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001279 case 2:
Mark Browna822e992013-08-30 23:19:40 +01001280 spi->mode |= SPI_TX_DUAL;
1281 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001282 case 4:
Mark Browna822e992013-08-30 23:19:40 +01001283 spi->mode |= SPI_TX_QUAD;
1284 break;
1285 default:
Geert Uytterhoeven80874d82014-05-26 14:05:25 +02001286 dev_warn(&master->dev,
1287 "spi-tx-bus-width %d not supported\n",
1288 value);
1289 break;
Mark Browna822e992013-08-30 23:19:40 +01001290 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001291 }
1292
Trent Piepho89da4292013-09-27 05:37:25 -07001293 if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
1294 switch (value) {
1295 case 1:
Mark Browna822e992013-08-30 23:19:40 +01001296 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001297 case 2:
Mark Browna822e992013-08-30 23:19:40 +01001298 spi->mode |= SPI_RX_DUAL;
1299 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001300 case 4:
Mark Browna822e992013-08-30 23:19:40 +01001301 spi->mode |= SPI_RX_QUAD;
1302 break;
1303 default:
Geert Uytterhoeven80874d82014-05-26 14:05:25 +02001304 dev_warn(&master->dev,
1305 "spi-rx-bus-width %d not supported\n",
1306 value);
1307 break;
Mark Browna822e992013-08-30 23:19:40 +01001308 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001309 }
1310
Grant Likelyd57a4282012-04-07 14:16:53 -06001311 /* Device speed */
Trent Piepho89da4292013-09-27 05:37:25 -07001312 rc = of_property_read_u32(nc, "spi-max-frequency", &value);
1313 if (rc) {
1314 dev_err(&master->dev, "%s has no valid 'spi-max-frequency' property (%d)\n",
1315 nc->full_name, rc);
Grant Likelyd57a4282012-04-07 14:16:53 -06001316 spi_dev_put(spi);
1317 continue;
1318 }
Trent Piepho89da4292013-09-27 05:37:25 -07001319 spi->max_speed_hz = value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001320
1321 /* IRQ */
1322 spi->irq = irq_of_parse_and_map(nc, 0);
1323
1324 /* Store a pointer to the node in the device structure */
1325 of_node_get(nc);
1326 spi->dev.of_node = nc;
1327
1328 /* Register the new device */
Mathias Krause70fac172013-08-31 20:24:14 +02001329 request_module("%s%s", SPI_MODULE_PREFIX, spi->modalias);
Grant Likelyd57a4282012-04-07 14:16:53 -06001330 rc = spi_add_device(spi);
1331 if (rc) {
1332 dev_err(&master->dev, "spi_device register error %s\n",
1333 nc->full_name);
1334 spi_dev_put(spi);
1335 }
1336
1337 }
1338}
1339#else
1340static void of_register_spi_devices(struct spi_master *master) { }
1341#endif
1342
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001343#ifdef CONFIG_ACPI
1344static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
1345{
1346 struct spi_device *spi = data;
1347
1348 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1349 struct acpi_resource_spi_serialbus *sb;
1350
1351 sb = &ares->data.spi_serial_bus;
1352 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
1353 spi->chip_select = sb->device_selection;
1354 spi->max_speed_hz = sb->connection_speed;
1355
1356 if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
1357 spi->mode |= SPI_CPHA;
1358 if (sb->clock_polarity == ACPI_SPI_START_HIGH)
1359 spi->mode |= SPI_CPOL;
1360 if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
1361 spi->mode |= SPI_CS_HIGH;
1362 }
1363 } else if (spi->irq < 0) {
1364 struct resource r;
1365
1366 if (acpi_dev_resource_interrupt(ares, 0, &r))
1367 spi->irq = r.start;
1368 }
1369
1370 /* Always tell the ACPI core to skip this resource */
1371 return 1;
1372}
1373
1374static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
1375 void *data, void **return_value)
1376{
1377 struct spi_master *master = data;
1378 struct list_head resource_list;
1379 struct acpi_device *adev;
1380 struct spi_device *spi;
1381 int ret;
1382
1383 if (acpi_bus_get_device(handle, &adev))
1384 return AE_OK;
1385 if (acpi_bus_get_status(adev) || !adev->status.present)
1386 return AE_OK;
1387
1388 spi = spi_alloc_device(master);
1389 if (!spi) {
1390 dev_err(&master->dev, "failed to allocate SPI device for %s\n",
1391 dev_name(&adev->dev));
1392 return AE_NO_MEMORY;
1393 }
1394
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001395 ACPI_COMPANION_SET(&spi->dev, adev);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001396 spi->irq = -1;
1397
1398 INIT_LIST_HEAD(&resource_list);
1399 ret = acpi_dev_get_resources(adev, &resource_list,
1400 acpi_spi_add_resource, spi);
1401 acpi_dev_free_resource_list(&resource_list);
1402
1403 if (ret < 0 || !spi->max_speed_hz) {
1404 spi_dev_put(spi);
1405 return AE_OK;
1406 }
1407
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001408 adev->power.flags.ignore_parent = true;
Jarkko Nikulacf9eb392013-10-10 17:19:17 +03001409 strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias));
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001410 if (spi_add_device(spi)) {
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001411 adev->power.flags.ignore_parent = false;
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001412 dev_err(&master->dev, "failed to add SPI device %s from ACPI\n",
1413 dev_name(&adev->dev));
1414 spi_dev_put(spi);
1415 }
1416
1417 return AE_OK;
1418}
1419
1420static void acpi_register_spi_devices(struct spi_master *master)
1421{
1422 acpi_status status;
1423 acpi_handle handle;
1424
Rafael J. Wysocki29896172013-04-01 00:21:08 +00001425 handle = ACPI_HANDLE(master->dev.parent);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001426 if (!handle)
1427 return;
1428
1429 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1430 acpi_spi_add_device, NULL,
1431 master, NULL);
1432 if (ACPI_FAILURE(status))
1433 dev_warn(&master->dev, "failed to enumerate SPI slaves\n");
1434}
1435#else
1436static inline void acpi_register_spi_devices(struct spi_master *master) {}
1437#endif /* CONFIG_ACPI */
1438
Tony Jones49dce682007-10-16 01:27:48 -07001439static void spi_master_release(struct device *dev)
David Brownell8ae12a02006-01-08 13:34:19 -08001440{
1441 struct spi_master *master;
1442
Tony Jones49dce682007-10-16 01:27:48 -07001443 master = container_of(dev, struct spi_master, dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001444 kfree(master);
1445}
1446
1447static struct class spi_master_class = {
1448 .name = "spi_master",
1449 .owner = THIS_MODULE,
Tony Jones49dce682007-10-16 01:27:48 -07001450 .dev_release = spi_master_release,
David Brownell8ae12a02006-01-08 13:34:19 -08001451};
1452
1453
Linus Walleijffbbdd212012-02-22 10:05:38 +01001454
David Brownell8ae12a02006-01-08 13:34:19 -08001455/**
1456 * spi_alloc_master - allocate SPI master controller
1457 * @dev: the controller, possibly using the platform_bus
David Brownell33e34dc2007-05-08 00:32:21 -07001458 * @size: how much zeroed driver-private data to allocate; the pointer to this
Tony Jones49dce682007-10-16 01:27:48 -07001459 * memory is in the driver_data field of the returned device,
David Brownell0c868462006-01-08 13:34:25 -08001460 * accessible with spi_master_get_devdata().
David Brownell33e34dc2007-05-08 00:32:21 -07001461 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001462 *
1463 * This call is used only by SPI master controller drivers, which are the
1464 * only ones directly touching chip registers. It's how they allocate
dmitry pervushinba1a0512006-05-20 15:00:14 -07001465 * an spi_master structure, prior to calling spi_register_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001466 *
1467 * This must be called from context that can sleep. It returns the SPI
1468 * master structure on success, else NULL.
1469 *
1470 * The caller is responsible for assigning the bus number and initializing
dmitry pervushinba1a0512006-05-20 15:00:14 -07001471 * the master's methods before calling spi_register_master(); and (after errors
Uwe Kleine-Königeb4af0f2012-02-23 10:40:14 +01001472 * adding the device) calling spi_master_put() and kfree() to prevent a memory
1473 * leak.
David Brownell8ae12a02006-01-08 13:34:19 -08001474 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001475struct spi_master *spi_alloc_master(struct device *dev, unsigned size)
David Brownell8ae12a02006-01-08 13:34:19 -08001476{
1477 struct spi_master *master;
1478
David Brownell0c868462006-01-08 13:34:25 -08001479 if (!dev)
1480 return NULL;
1481
Jingoo Han5fe5f052013-10-14 10:31:51 +09001482 master = kzalloc(size + sizeof(*master), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -08001483 if (!master)
1484 return NULL;
1485
Tony Jones49dce682007-10-16 01:27:48 -07001486 device_initialize(&master->dev);
Grant Likely1e8a52e2012-05-19 23:42:08 -06001487 master->bus_num = -1;
1488 master->num_chipselect = 1;
Tony Jones49dce682007-10-16 01:27:48 -07001489 master->dev.class = &spi_master_class;
1490 master->dev.parent = get_device(dev);
David Brownell0c868462006-01-08 13:34:25 -08001491 spi_master_set_devdata(master, &master[1]);
David Brownell8ae12a02006-01-08 13:34:19 -08001492
1493 return master;
1494}
1495EXPORT_SYMBOL_GPL(spi_alloc_master);
1496
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001497#ifdef CONFIG_OF
1498static int of_spi_register_master(struct spi_master *master)
1499{
Grant Likelye80beb22013-02-12 17:48:37 +00001500 int nb, i, *cs;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001501 struct device_node *np = master->dev.of_node;
1502
1503 if (!np)
1504 return 0;
1505
1506 nb = of_gpio_named_count(np, "cs-gpios");
Jingoo Han5fe5f052013-10-14 10:31:51 +09001507 master->num_chipselect = max_t(int, nb, master->num_chipselect);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001508
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001509 /* Return error only for an incorrectly formed cs-gpios property */
1510 if (nb == 0 || nb == -ENOENT)
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001511 return 0;
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001512 else if (nb < 0)
1513 return nb;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001514
1515 cs = devm_kzalloc(&master->dev,
1516 sizeof(int) * master->num_chipselect,
1517 GFP_KERNEL);
1518 master->cs_gpios = cs;
1519
1520 if (!master->cs_gpios)
1521 return -ENOMEM;
1522
Andreas Larsson0da83bb2013-01-29 15:53:40 +01001523 for (i = 0; i < master->num_chipselect; i++)
Andreas Larsson446411e2013-02-13 14:20:25 +01001524 cs[i] = -ENOENT;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001525
1526 for (i = 0; i < nb; i++)
1527 cs[i] = of_get_named_gpio(np, "cs-gpios", i);
1528
1529 return 0;
1530}
1531#else
1532static int of_spi_register_master(struct spi_master *master)
1533{
1534 return 0;
1535}
1536#endif
1537
David Brownell8ae12a02006-01-08 13:34:19 -08001538/**
1539 * spi_register_master - register SPI master controller
1540 * @master: initialized master, originally from spi_alloc_master()
David Brownell33e34dc2007-05-08 00:32:21 -07001541 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001542 *
1543 * SPI master controllers connect to their drivers using some non-SPI bus,
1544 * such as the platform bus. The final stage of probe() in that code
1545 * includes calling spi_register_master() to hook up to this SPI bus glue.
1546 *
1547 * SPI controllers use board specific (often SOC specific) bus numbers,
1548 * and board-specific addressing for SPI devices combines those numbers
1549 * with chip select numbers. Since SPI does not directly support dynamic
1550 * device identification, boards need configuration tables telling which
1551 * chip is at which address.
1552 *
1553 * This must be called from context that can sleep. It returns zero on
1554 * success, else a negative error code (dropping the master's refcount).
David Brownell0c868462006-01-08 13:34:25 -08001555 * After a successful return, the caller is responsible for calling
1556 * spi_unregister_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001557 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001558int spi_register_master(struct spi_master *master)
David Brownell8ae12a02006-01-08 13:34:19 -08001559{
David Brownelle44a45a2007-06-03 13:50:40 -07001560 static atomic_t dyn_bus_id = ATOMIC_INIT((1<<15) - 1);
Tony Jones49dce682007-10-16 01:27:48 -07001561 struct device *dev = master->dev.parent;
Feng Tang2b9603a2010-08-02 15:52:15 +08001562 struct boardinfo *bi;
David Brownell8ae12a02006-01-08 13:34:19 -08001563 int status = -ENODEV;
1564 int dynamic = 0;
1565
David Brownell0c868462006-01-08 13:34:25 -08001566 if (!dev)
1567 return -ENODEV;
1568
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001569 status = of_spi_register_master(master);
1570 if (status)
1571 return status;
1572
David Brownell082c8cb2007-07-31 00:39:45 -07001573 /* even if it's just one always-selected device, there must
1574 * be at least one chipselect
1575 */
1576 if (master->num_chipselect == 0)
1577 return -EINVAL;
1578
Grant Likelybb297852012-12-21 19:32:09 +00001579 if ((master->bus_num < 0) && master->dev.of_node)
1580 master->bus_num = of_alias_get_id(master->dev.of_node, "spi");
1581
David Brownell8ae12a02006-01-08 13:34:19 -08001582 /* convention: dynamically assigned bus IDs count down from the max */
David Brownella020ed72006-04-03 15:49:04 -07001583 if (master->bus_num < 0) {
David Brownell082c8cb2007-07-31 00:39:45 -07001584 /* FIXME switch to an IDR based scheme, something like
1585 * I2C now uses, so we can't run out of "dynamic" IDs
1586 */
David Brownell8ae12a02006-01-08 13:34:19 -08001587 master->bus_num = atomic_dec_return(&dyn_bus_id);
David Brownellb8852442006-01-08 13:34:23 -08001588 dynamic = 1;
David Brownell8ae12a02006-01-08 13:34:19 -08001589 }
1590
Ernst Schwabcf32b712010-06-28 17:49:29 -07001591 spin_lock_init(&master->bus_lock_spinlock);
1592 mutex_init(&master->bus_lock_mutex);
1593 master->bus_lock_flag = 0;
Mark Brownb1589352013-10-05 11:50:40 +01001594 init_completion(&master->xfer_completion);
Mark Brown6ad45a22014-02-02 13:47:47 +00001595 if (!master->max_dma_len)
1596 master->max_dma_len = INT_MAX;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001597
David Brownell8ae12a02006-01-08 13:34:19 -08001598 /* register the device, then userspace will see it.
1599 * registration fails if the bus ID is in use.
1600 */
Kay Sievers35f74fc2009-01-06 10:44:37 -08001601 dev_set_name(&master->dev, "spi%u", master->bus_num);
Tony Jones49dce682007-10-16 01:27:48 -07001602 status = device_add(&master->dev);
David Brownellb8852442006-01-08 13:34:23 -08001603 if (status < 0)
David Brownell8ae12a02006-01-08 13:34:19 -08001604 goto done;
Kay Sievers35f74fc2009-01-06 10:44:37 -08001605 dev_dbg(dev, "registered master %s%s\n", dev_name(&master->dev),
David Brownell8ae12a02006-01-08 13:34:19 -08001606 dynamic ? " (dynamic)" : "");
1607
Linus Walleijffbbdd212012-02-22 10:05:38 +01001608 /* If we're using a queued driver, start the queue */
1609 if (master->transfer)
1610 dev_info(dev, "master is unqueued, this is deprecated\n");
1611 else {
1612 status = spi_master_initialize_queue(master);
1613 if (status) {
Axel Line93b0722013-08-31 20:25:52 +08001614 device_del(&master->dev);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001615 goto done;
1616 }
1617 }
1618
Feng Tang2b9603a2010-08-02 15:52:15 +08001619 mutex_lock(&board_lock);
1620 list_add_tail(&master->list, &spi_master_list);
1621 list_for_each_entry(bi, &board_list, list)
1622 spi_match_master_to_boardinfo(master, &bi->board_info);
1623 mutex_unlock(&board_lock);
1624
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001625 /* Register devices from the device tree and ACPI */
Anatolij Gustschin12b15e82010-07-27 22:35:58 +02001626 of_register_spi_devices(master);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001627 acpi_register_spi_devices(master);
David Brownell8ae12a02006-01-08 13:34:19 -08001628done:
1629 return status;
1630}
1631EXPORT_SYMBOL_GPL(spi_register_master);
1632
Mark Brown666d5b42013-08-31 18:50:52 +01001633static void devm_spi_unregister(struct device *dev, void *res)
1634{
1635 spi_unregister_master(*(struct spi_master **)res);
1636}
1637
1638/**
1639 * dev_spi_register_master - register managed SPI master controller
1640 * @dev: device managing SPI master
1641 * @master: initialized master, originally from spi_alloc_master()
1642 * Context: can sleep
1643 *
1644 * Register a SPI device as with spi_register_master() which will
1645 * automatically be unregister
1646 */
1647int devm_spi_register_master(struct device *dev, struct spi_master *master)
1648{
1649 struct spi_master **ptr;
1650 int ret;
1651
1652 ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL);
1653 if (!ptr)
1654 return -ENOMEM;
1655
1656 ret = spi_register_master(master);
Stephen Warren4b928942013-11-21 16:11:15 -07001657 if (!ret) {
Mark Brown666d5b42013-08-31 18:50:52 +01001658 *ptr = master;
1659 devres_add(dev, ptr);
1660 } else {
1661 devres_free(ptr);
1662 }
1663
1664 return ret;
1665}
1666EXPORT_SYMBOL_GPL(devm_spi_register_master);
1667
David Lamparter34860082010-08-30 23:54:17 +02001668static int __unregister(struct device *dev, void *null)
David Brownell8ae12a02006-01-08 13:34:19 -08001669{
David Lamparter34860082010-08-30 23:54:17 +02001670 spi_unregister_device(to_spi_device(dev));
David Brownell8ae12a02006-01-08 13:34:19 -08001671 return 0;
1672}
1673
1674/**
1675 * spi_unregister_master - unregister SPI master controller
1676 * @master: the master being unregistered
David Brownell33e34dc2007-05-08 00:32:21 -07001677 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001678 *
1679 * This call is used only by SPI master controller drivers, which are the
1680 * only ones directly touching chip registers.
1681 *
1682 * This must be called from context that can sleep.
1683 */
1684void spi_unregister_master(struct spi_master *master)
1685{
Jeff Garzik89fc9a12006-12-06 20:35:35 -08001686 int dummy;
1687
Linus Walleijffbbdd212012-02-22 10:05:38 +01001688 if (master->queued) {
1689 if (spi_destroy_queue(master))
1690 dev_err(&master->dev, "queue remove failed\n");
1691 }
1692
Feng Tang2b9603a2010-08-02 15:52:15 +08001693 mutex_lock(&board_lock);
1694 list_del(&master->list);
1695 mutex_unlock(&board_lock);
1696
Sebastian Andrzej Siewior97dbf372010-12-21 17:24:31 -08001697 dummy = device_for_each_child(&master->dev, NULL, __unregister);
Tony Jones49dce682007-10-16 01:27:48 -07001698 device_unregister(&master->dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001699}
1700EXPORT_SYMBOL_GPL(spi_unregister_master);
1701
Linus Walleijffbbdd212012-02-22 10:05:38 +01001702int spi_master_suspend(struct spi_master *master)
1703{
1704 int ret;
1705
1706 /* Basically no-ops for non-queued masters */
1707 if (!master->queued)
1708 return 0;
1709
1710 ret = spi_stop_queue(master);
1711 if (ret)
1712 dev_err(&master->dev, "queue stop failed\n");
1713
1714 return ret;
1715}
1716EXPORT_SYMBOL_GPL(spi_master_suspend);
1717
1718int spi_master_resume(struct spi_master *master)
1719{
1720 int ret;
1721
1722 if (!master->queued)
1723 return 0;
1724
1725 ret = spi_start_queue(master);
1726 if (ret)
1727 dev_err(&master->dev, "queue restart failed\n");
1728
1729 return ret;
1730}
1731EXPORT_SYMBOL_GPL(spi_master_resume);
1732
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001733static int __spi_master_match(struct device *dev, const void *data)
Dave Young5ed2c832008-01-22 15:14:18 +08001734{
1735 struct spi_master *m;
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001736 const u16 *bus_num = data;
Dave Young5ed2c832008-01-22 15:14:18 +08001737
1738 m = container_of(dev, struct spi_master, dev);
1739 return m->bus_num == *bus_num;
1740}
1741
David Brownell8ae12a02006-01-08 13:34:19 -08001742/**
1743 * spi_busnum_to_master - look up master associated with bus_num
1744 * @bus_num: the master's bus number
David Brownell33e34dc2007-05-08 00:32:21 -07001745 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001746 *
1747 * This call may be used with devices that are registered after
1748 * arch init time. It returns a refcounted pointer to the relevant
1749 * spi_master (which the caller must release), or NULL if there is
1750 * no such master registered.
1751 */
1752struct spi_master *spi_busnum_to_master(u16 bus_num)
1753{
Tony Jones49dce682007-10-16 01:27:48 -07001754 struct device *dev;
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001755 struct spi_master *master = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -08001756
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001757 dev = class_find_device(&spi_master_class, NULL, &bus_num,
Dave Young5ed2c832008-01-22 15:14:18 +08001758 __spi_master_match);
1759 if (dev)
1760 master = container_of(dev, struct spi_master, dev);
1761 /* reference got in class_find_device */
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001762 return master;
David Brownell8ae12a02006-01-08 13:34:19 -08001763}
1764EXPORT_SYMBOL_GPL(spi_busnum_to_master);
1765
1766
1767/*-------------------------------------------------------------------------*/
1768
David Brownell7d077192009-06-17 16:26:03 -07001769/* Core methods for SPI master protocol drivers. Some of the
1770 * other core methods are currently defined as inline functions.
1771 */
1772
1773/**
1774 * spi_setup - setup SPI mode and clock rate
1775 * @spi: the device whose settings are being modified
1776 * Context: can sleep, and no requests are queued to the device
1777 *
1778 * SPI protocol drivers may need to update the transfer mode if the
1779 * device doesn't work with its default. They may likewise need
1780 * to update clock rates or word sizes from initial values. This function
1781 * changes those settings, and must be called from a context that can sleep.
1782 * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
1783 * effect the next time the device is selected and data is transferred to
1784 * or from it. When this function returns, the spi device is deselected.
1785 *
1786 * Note that this call will fail if the protocol driver specifies an option
1787 * that the underlying controller or its driver does not support. For
1788 * example, not all hardware supports wire transfers using nine bit words,
1789 * LSB-first wire encoding, or active-high chipselects.
1790 */
1791int spi_setup(struct spi_device *spi)
1792{
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02001793 unsigned bad_bits, ugly_bits;
Laxman Dewangancaae0702012-11-09 14:35:22 +05301794 int status = 0;
David Brownell7d077192009-06-17 16:26:03 -07001795
wangyuhangf477b7f2013-08-11 18:15:17 +08001796 /* check mode to prevent that DUAL and QUAD set at the same time
1797 */
1798 if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) ||
1799 ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) {
1800 dev_err(&spi->dev,
1801 "setup: can not select dual and quad at the same time\n");
1802 return -EINVAL;
1803 }
1804 /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
1805 */
1806 if ((spi->mode & SPI_3WIRE) && (spi->mode &
1807 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)))
1808 return -EINVAL;
David Brownelle7db06b2009-06-17 16:26:04 -07001809 /* help drivers fail *cleanly* when they need options
1810 * that aren't supported with their current master
1811 */
1812 bad_bits = spi->mode & ~spi->master->mode_bits;
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02001813 ugly_bits = bad_bits &
1814 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD);
1815 if (ugly_bits) {
1816 dev_warn(&spi->dev,
1817 "setup: ignoring unsupported mode bits %x\n",
1818 ugly_bits);
1819 spi->mode &= ~ugly_bits;
1820 bad_bits &= ~ugly_bits;
1821 }
David Brownelle7db06b2009-06-17 16:26:04 -07001822 if (bad_bits) {
Linus Walleijeb288a12010-10-21 21:06:44 +02001823 dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
David Brownelle7db06b2009-06-17 16:26:04 -07001824 bad_bits);
1825 return -EINVAL;
1826 }
1827
David Brownell7d077192009-06-17 16:26:03 -07001828 if (!spi->bits_per_word)
1829 spi->bits_per_word = 8;
1830
Axel Lin052eb2d42014-02-10 00:08:05 +08001831 if (!spi->max_speed_hz)
1832 spi->max_speed_hz = spi->master->max_speed_hz;
1833
Laxman Dewangancaae0702012-11-09 14:35:22 +05301834 if (spi->master->setup)
1835 status = spi->master->setup(spi);
David Brownell7d077192009-06-17 16:26:03 -07001836
Jingoo Han5fe5f052013-10-14 10:31:51 +09001837 dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n",
David Brownell7d077192009-06-17 16:26:03 -07001838 (int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
1839 (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
1840 (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
1841 (spi->mode & SPI_3WIRE) ? "3wire, " : "",
1842 (spi->mode & SPI_LOOP) ? "loopback, " : "",
1843 spi->bits_per_word, spi->max_speed_hz,
1844 status);
1845
1846 return status;
1847}
1848EXPORT_SYMBOL_GPL(spi_setup);
1849
Mark Brown90808732013-11-13 23:44:15 +00001850static int __spi_validate(struct spi_device *spi, struct spi_message *message)
Ernst Schwabcf32b712010-06-28 17:49:29 -07001851{
1852 struct spi_master *master = spi->master;
Laxman Dewangane6811d12012-11-09 14:36:45 +05301853 struct spi_transfer *xfer;
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09001854 int w_size;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001855
Mark Brown24a00132013-07-10 15:05:40 +01001856 if (list_empty(&message->transfers))
1857 return -EINVAL;
Mark Brown24a00132013-07-10 15:05:40 +01001858
Ernst Schwabcf32b712010-06-28 17:49:29 -07001859 /* Half-duplex links include original MicroWire, and ones with
1860 * only one data pin like SPI_3WIRE (switches direction) or where
1861 * either MOSI or MISO is missing. They can also be caused by
1862 * software limitations.
1863 */
1864 if ((master->flags & SPI_MASTER_HALF_DUPLEX)
1865 || (spi->mode & SPI_3WIRE)) {
Ernst Schwabcf32b712010-06-28 17:49:29 -07001866 unsigned flags = master->flags;
1867
1868 list_for_each_entry(xfer, &message->transfers, transfer_list) {
1869 if (xfer->rx_buf && xfer->tx_buf)
1870 return -EINVAL;
1871 if ((flags & SPI_MASTER_NO_TX) && xfer->tx_buf)
1872 return -EINVAL;
1873 if ((flags & SPI_MASTER_NO_RX) && xfer->rx_buf)
1874 return -EINVAL;
1875 }
1876 }
1877
Laxman Dewangane6811d12012-11-09 14:36:45 +05301878 /**
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05301879 * Set transfer bits_per_word and max speed as spi device default if
1880 * it is not set for this transfer.
wangyuhangf477b7f2013-08-11 18:15:17 +08001881 * Set transfer tx_nbits and rx_nbits as single transfer default
1882 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
Laxman Dewangane6811d12012-11-09 14:36:45 +05301883 */
1884 list_for_each_entry(xfer, &message->transfers, transfer_list) {
Sourav Poddar078726c2013-07-18 15:31:25 +05301885 message->frame_length += xfer->len;
Laxman Dewangane6811d12012-11-09 14:36:45 +05301886 if (!xfer->bits_per_word)
1887 xfer->bits_per_word = spi->bits_per_word;
Axel Lina6f87fa2014-03-17 10:08:12 +08001888
1889 if (!xfer->speed_hz)
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05301890 xfer->speed_hz = spi->max_speed_hz;
Axel Lina6f87fa2014-03-17 10:08:12 +08001891
1892 if (master->max_speed_hz &&
1893 xfer->speed_hz > master->max_speed_hz)
1894 xfer->speed_hz = master->max_speed_hz;
Gabor Juhos56ede942013-08-14 10:25:28 +02001895
Stephen Warren543bb252013-03-26 20:37:57 -06001896 if (master->bits_per_word_mask) {
1897 /* Only 32 bits fit in the mask */
1898 if (xfer->bits_per_word > 32)
1899 return -EINVAL;
1900 if (!(master->bits_per_word_mask &
1901 BIT(xfer->bits_per_word - 1)))
1902 return -EINVAL;
1903 }
Mark Browna2fd4f92013-07-10 14:57:26 +01001904
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001905 /*
1906 * SPI transfer length should be multiple of SPI word size
1907 * where SPI word size should be power-of-two multiple
1908 */
1909 if (xfer->bits_per_word <= 8)
1910 w_size = 1;
1911 else if (xfer->bits_per_word <= 16)
1912 w_size = 2;
1913 else
1914 w_size = 4;
1915
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001916 /* No partial transfers accepted */
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09001917 if (xfer->len % w_size)
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001918 return -EINVAL;
1919
Mark Browna2fd4f92013-07-10 14:57:26 +01001920 if (xfer->speed_hz && master->min_speed_hz &&
1921 xfer->speed_hz < master->min_speed_hz)
1922 return -EINVAL;
wangyuhangf477b7f2013-08-11 18:15:17 +08001923
1924 if (xfer->tx_buf && !xfer->tx_nbits)
1925 xfer->tx_nbits = SPI_NBITS_SINGLE;
1926 if (xfer->rx_buf && !xfer->rx_nbits)
1927 xfer->rx_nbits = SPI_NBITS_SINGLE;
1928 /* check transfer tx/rx_nbits:
Geert Uytterhoeven1afd9982014-01-12 14:00:29 +01001929 * 1. check the value matches one of single, dual and quad
1930 * 2. check tx/rx_nbits match the mode in spi_device
wangyuhangf477b7f2013-08-11 18:15:17 +08001931 */
Sourav Poddardb90a442013-08-22 21:20:48 +05301932 if (xfer->tx_buf) {
1933 if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
1934 xfer->tx_nbits != SPI_NBITS_DUAL &&
1935 xfer->tx_nbits != SPI_NBITS_QUAD)
1936 return -EINVAL;
1937 if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
1938 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
1939 return -EINVAL;
1940 if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
1941 !(spi->mode & SPI_TX_QUAD))
1942 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05301943 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001944 /* check transfer rx_nbits */
Sourav Poddardb90a442013-08-22 21:20:48 +05301945 if (xfer->rx_buf) {
1946 if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
1947 xfer->rx_nbits != SPI_NBITS_DUAL &&
1948 xfer->rx_nbits != SPI_NBITS_QUAD)
1949 return -EINVAL;
1950 if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
1951 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
1952 return -EINVAL;
1953 if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
1954 !(spi->mode & SPI_RX_QUAD))
1955 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05301956 }
Laxman Dewangane6811d12012-11-09 14:36:45 +05301957 }
1958
Ernst Schwabcf32b712010-06-28 17:49:29 -07001959 message->status = -EINPROGRESS;
Mark Brown90808732013-11-13 23:44:15 +00001960
1961 return 0;
1962}
1963
1964static int __spi_async(struct spi_device *spi, struct spi_message *message)
1965{
1966 struct spi_master *master = spi->master;
1967
1968 message->spi = spi;
1969
1970 trace_spi_message_submit(message);
1971
Ernst Schwabcf32b712010-06-28 17:49:29 -07001972 return master->transfer(spi, message);
1973}
1974
David Brownell568d0692009-09-22 16:46:18 -07001975/**
1976 * spi_async - asynchronous SPI transfer
1977 * @spi: device with which data will be exchanged
1978 * @message: describes the data transfers, including completion callback
1979 * Context: any (irqs may be blocked, etc)
1980 *
1981 * This call may be used in_irq and other contexts which can't sleep,
1982 * as well as from task contexts which can sleep.
1983 *
1984 * The completion callback is invoked in a context which can't sleep.
1985 * Before that invocation, the value of message->status is undefined.
1986 * When the callback is issued, message->status holds either zero (to
1987 * indicate complete success) or a negative error code. After that
1988 * callback returns, the driver which issued the transfer request may
1989 * deallocate the associated memory; it's no longer in use by any SPI
1990 * core or controller driver code.
1991 *
1992 * Note that although all messages to a spi_device are handled in
1993 * FIFO order, messages may go to different devices in other orders.
1994 * Some device might be higher priority, or have various "hard" access
1995 * time requirements, for example.
1996 *
1997 * On detection of any fault during the transfer, processing of
1998 * the entire message is aborted, and the device is deselected.
1999 * Until returning from the associated message completion callback,
2000 * no other spi_message queued to that device will be processed.
2001 * (This rule applies equally to all the synchronous transfer calls,
2002 * which are wrappers around this core asynchronous primitive.)
2003 */
2004int spi_async(struct spi_device *spi, struct spi_message *message)
2005{
2006 struct spi_master *master = spi->master;
Ernst Schwabcf32b712010-06-28 17:49:29 -07002007 int ret;
2008 unsigned long flags;
David Brownell568d0692009-09-22 16:46:18 -07002009
Mark Brown90808732013-11-13 23:44:15 +00002010 ret = __spi_validate(spi, message);
2011 if (ret != 0)
2012 return ret;
2013
Ernst Schwabcf32b712010-06-28 17:49:29 -07002014 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
David Brownell568d0692009-09-22 16:46:18 -07002015
Ernst Schwabcf32b712010-06-28 17:49:29 -07002016 if (master->bus_lock_flag)
2017 ret = -EBUSY;
2018 else
2019 ret = __spi_async(spi, message);
David Brownell568d0692009-09-22 16:46:18 -07002020
Ernst Schwabcf32b712010-06-28 17:49:29 -07002021 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2022
2023 return ret;
David Brownell568d0692009-09-22 16:46:18 -07002024}
2025EXPORT_SYMBOL_GPL(spi_async);
2026
Ernst Schwabcf32b712010-06-28 17:49:29 -07002027/**
2028 * spi_async_locked - version of spi_async with exclusive bus usage
2029 * @spi: device with which data will be exchanged
2030 * @message: describes the data transfers, including completion callback
2031 * Context: any (irqs may be blocked, etc)
2032 *
2033 * This call may be used in_irq and other contexts which can't sleep,
2034 * as well as from task contexts which can sleep.
2035 *
2036 * The completion callback is invoked in a context which can't sleep.
2037 * Before that invocation, the value of message->status is undefined.
2038 * When the callback is issued, message->status holds either zero (to
2039 * indicate complete success) or a negative error code. After that
2040 * callback returns, the driver which issued the transfer request may
2041 * deallocate the associated memory; it's no longer in use by any SPI
2042 * core or controller driver code.
2043 *
2044 * Note that although all messages to a spi_device are handled in
2045 * FIFO order, messages may go to different devices in other orders.
2046 * Some device might be higher priority, or have various "hard" access
2047 * time requirements, for example.
2048 *
2049 * On detection of any fault during the transfer, processing of
2050 * the entire message is aborted, and the device is deselected.
2051 * Until returning from the associated message completion callback,
2052 * no other spi_message queued to that device will be processed.
2053 * (This rule applies equally to all the synchronous transfer calls,
2054 * which are wrappers around this core asynchronous primitive.)
2055 */
2056int spi_async_locked(struct spi_device *spi, struct spi_message *message)
2057{
2058 struct spi_master *master = spi->master;
2059 int ret;
2060 unsigned long flags;
2061
Mark Brown90808732013-11-13 23:44:15 +00002062 ret = __spi_validate(spi, message);
2063 if (ret != 0)
2064 return ret;
2065
Ernst Schwabcf32b712010-06-28 17:49:29 -07002066 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2067
2068 ret = __spi_async(spi, message);
2069
2070 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2071
2072 return ret;
2073
2074}
2075EXPORT_SYMBOL_GPL(spi_async_locked);
2076
David Brownell7d077192009-06-17 16:26:03 -07002077
2078/*-------------------------------------------------------------------------*/
2079
2080/* Utility methods for SPI master protocol drivers, layered on
2081 * top of the core. Some other utility methods are defined as
2082 * inline functions.
2083 */
2084
Andrew Morton5d870c82006-01-11 11:23:49 -08002085static void spi_complete(void *arg)
2086{
2087 complete(arg);
2088}
2089
Ernst Schwabcf32b712010-06-28 17:49:29 -07002090static int __spi_sync(struct spi_device *spi, struct spi_message *message,
2091 int bus_locked)
2092{
2093 DECLARE_COMPLETION_ONSTACK(done);
2094 int status;
2095 struct spi_master *master = spi->master;
2096
2097 message->complete = spi_complete;
2098 message->context = &done;
2099
2100 if (!bus_locked)
2101 mutex_lock(&master->bus_lock_mutex);
2102
2103 status = spi_async_locked(spi, message);
2104
2105 if (!bus_locked)
2106 mutex_unlock(&master->bus_lock_mutex);
2107
2108 if (status == 0) {
2109 wait_for_completion(&done);
2110 status = message->status;
2111 }
2112 message->context = NULL;
2113 return status;
2114}
2115
David Brownell8ae12a02006-01-08 13:34:19 -08002116/**
2117 * spi_sync - blocking/synchronous SPI data transfers
2118 * @spi: device with which data will be exchanged
2119 * @message: describes the data transfers
David Brownell33e34dc2007-05-08 00:32:21 -07002120 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002121 *
2122 * This call may only be used from a context that may sleep. The sleep
2123 * is non-interruptible, and has no timeout. Low-overhead controller
2124 * drivers may DMA directly into and out of the message buffers.
2125 *
2126 * Note that the SPI device's chip select is active during the message,
2127 * and then is normally disabled between messages. Drivers for some
2128 * frequently-used devices may want to minimize costs of selecting a chip,
2129 * by leaving it selected in anticipation that the next message will go
2130 * to the same chip. (That may increase power usage.)
2131 *
David Brownell0c868462006-01-08 13:34:25 -08002132 * Also, the caller is guaranteeing that the memory associated with the
2133 * message will not be freed before this call returns.
2134 *
Marc Pignat9b938b72007-12-04 23:45:10 -08002135 * It returns zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002136 */
2137int spi_sync(struct spi_device *spi, struct spi_message *message)
2138{
Ernst Schwabcf32b712010-06-28 17:49:29 -07002139 return __spi_sync(spi, message, 0);
David Brownell8ae12a02006-01-08 13:34:19 -08002140}
2141EXPORT_SYMBOL_GPL(spi_sync);
2142
Ernst Schwabcf32b712010-06-28 17:49:29 -07002143/**
2144 * spi_sync_locked - version of spi_sync with exclusive bus usage
2145 * @spi: device with which data will be exchanged
2146 * @message: describes the data transfers
2147 * Context: can sleep
2148 *
2149 * This call may only be used from a context that may sleep. The sleep
2150 * is non-interruptible, and has no timeout. Low-overhead controller
2151 * drivers may DMA directly into and out of the message buffers.
2152 *
2153 * This call should be used by drivers that require exclusive access to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002154 * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
Ernst Schwabcf32b712010-06-28 17:49:29 -07002155 * be released by a spi_bus_unlock call when the exclusive access is over.
2156 *
2157 * It returns zero on success, else a negative error code.
2158 */
2159int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
2160{
2161 return __spi_sync(spi, message, 1);
2162}
2163EXPORT_SYMBOL_GPL(spi_sync_locked);
2164
2165/**
2166 * spi_bus_lock - obtain a lock for exclusive SPI bus usage
2167 * @master: SPI bus master that should be locked for exclusive bus access
2168 * Context: can sleep
2169 *
2170 * This call may only be used from a context that may sleep. The sleep
2171 * is non-interruptible, and has no timeout.
2172 *
2173 * This call should be used by drivers that require exclusive access to the
2174 * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
2175 * exclusive access is over. Data transfer must be done by spi_sync_locked
2176 * and spi_async_locked calls when the SPI bus lock is held.
2177 *
2178 * It returns zero on success, else a negative error code.
2179 */
2180int spi_bus_lock(struct spi_master *master)
2181{
2182 unsigned long flags;
2183
2184 mutex_lock(&master->bus_lock_mutex);
2185
2186 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2187 master->bus_lock_flag = 1;
2188 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2189
2190 /* mutex remains locked until spi_bus_unlock is called */
2191
2192 return 0;
2193}
2194EXPORT_SYMBOL_GPL(spi_bus_lock);
2195
2196/**
2197 * spi_bus_unlock - release the lock for exclusive SPI bus usage
2198 * @master: SPI bus master that was locked for exclusive bus access
2199 * Context: can sleep
2200 *
2201 * This call may only be used from a context that may sleep. The sleep
2202 * is non-interruptible, and has no timeout.
2203 *
2204 * This call releases an SPI bus lock previously obtained by an spi_bus_lock
2205 * call.
2206 *
2207 * It returns zero on success, else a negative error code.
2208 */
2209int spi_bus_unlock(struct spi_master *master)
2210{
2211 master->bus_lock_flag = 0;
2212
2213 mutex_unlock(&master->bus_lock_mutex);
2214
2215 return 0;
2216}
2217EXPORT_SYMBOL_GPL(spi_bus_unlock);
2218
David Brownella9948b62006-04-02 10:37:40 -08002219/* portable code must never pass more than 32 bytes */
Jingoo Han5fe5f052013-10-14 10:31:51 +09002220#define SPI_BUFSIZ max(32, SMP_CACHE_BYTES)
David Brownell8ae12a02006-01-08 13:34:19 -08002221
2222static u8 *buf;
2223
2224/**
2225 * spi_write_then_read - SPI synchronous write followed by read
2226 * @spi: device with which data will be exchanged
2227 * @txbuf: data to be written (need not be dma-safe)
2228 * @n_tx: size of txbuf, in bytes
Jiri Pirko27570492009-06-17 16:26:06 -07002229 * @rxbuf: buffer into which data will be read (need not be dma-safe)
2230 * @n_rx: size of rxbuf, in bytes
David Brownell33e34dc2007-05-08 00:32:21 -07002231 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002232 *
2233 * This performs a half duplex MicroWire style transaction with the
2234 * device, sending txbuf and then reading rxbuf. The return value
2235 * is zero for success, else a negative errno status code.
David Brownellb8852442006-01-08 13:34:23 -08002236 * This call may only be used from a context that may sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08002237 *
David Brownell0c868462006-01-08 13:34:25 -08002238 * Parameters to this routine are always copied using a small buffer;
David Brownell33e34dc2007-05-08 00:32:21 -07002239 * portable code should never use this for more than 32 bytes.
2240 * Performance-sensitive or bulk transfer code should instead use
David Brownell0c868462006-01-08 13:34:25 -08002241 * spi_{async,sync}() calls with dma-safe buffers.
David Brownell8ae12a02006-01-08 13:34:19 -08002242 */
2243int spi_write_then_read(struct spi_device *spi,
Mark Brown0c4a1592011-05-11 00:09:30 +02002244 const void *txbuf, unsigned n_tx,
2245 void *rxbuf, unsigned n_rx)
David Brownell8ae12a02006-01-08 13:34:19 -08002246{
David Brownell068f4072007-12-04 23:45:09 -08002247 static DEFINE_MUTEX(lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002248
2249 int status;
2250 struct spi_message message;
David Brownellbdff5492009-04-13 14:39:57 -07002251 struct spi_transfer x[2];
David Brownell8ae12a02006-01-08 13:34:19 -08002252 u8 *local_buf;
2253
Mark Brownb3a223e2012-12-02 12:54:25 +09002254 /* Use preallocated DMA-safe buffer if we can. We can't avoid
2255 * copying here, (as a pure convenience thing), but we can
2256 * keep heap costs out of the hot path unless someone else is
2257 * using the pre-allocated buffer or the transfer is too large.
David Brownell8ae12a02006-01-08 13:34:19 -08002258 */
Mark Brownb3a223e2012-12-02 12:54:25 +09002259 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
Mark Brown2cd94c82013-01-27 14:35:04 +08002260 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
2261 GFP_KERNEL | GFP_DMA);
Mark Brownb3a223e2012-12-02 12:54:25 +09002262 if (!local_buf)
2263 return -ENOMEM;
2264 } else {
2265 local_buf = buf;
2266 }
David Brownell8ae12a02006-01-08 13:34:19 -08002267
Vitaly Wool8275c642006-01-08 13:34:28 -08002268 spi_message_init(&message);
Jingoo Han5fe5f052013-10-14 10:31:51 +09002269 memset(x, 0, sizeof(x));
David Brownellbdff5492009-04-13 14:39:57 -07002270 if (n_tx) {
2271 x[0].len = n_tx;
2272 spi_message_add_tail(&x[0], &message);
2273 }
2274 if (n_rx) {
2275 x[1].len = n_rx;
2276 spi_message_add_tail(&x[1], &message);
2277 }
Vitaly Wool8275c642006-01-08 13:34:28 -08002278
David Brownell8ae12a02006-01-08 13:34:19 -08002279 memcpy(local_buf, txbuf, n_tx);
David Brownellbdff5492009-04-13 14:39:57 -07002280 x[0].tx_buf = local_buf;
2281 x[1].rx_buf = local_buf + n_tx;
David Brownell8ae12a02006-01-08 13:34:19 -08002282
2283 /* do the i/o */
David Brownell8ae12a02006-01-08 13:34:19 -08002284 status = spi_sync(spi, &message);
Marc Pignat9b938b72007-12-04 23:45:10 -08002285 if (status == 0)
David Brownellbdff5492009-04-13 14:39:57 -07002286 memcpy(rxbuf, x[1].rx_buf, n_rx);
David Brownell8ae12a02006-01-08 13:34:19 -08002287
David Brownellbdff5492009-04-13 14:39:57 -07002288 if (x[0].tx_buf == buf)
David Brownell068f4072007-12-04 23:45:09 -08002289 mutex_unlock(&lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002290 else
2291 kfree(local_buf);
2292
2293 return status;
2294}
2295EXPORT_SYMBOL_GPL(spi_write_then_read);
2296
2297/*-------------------------------------------------------------------------*/
2298
2299static int __init spi_init(void)
2300{
David Brownellb8852442006-01-08 13:34:23 -08002301 int status;
David Brownell8ae12a02006-01-08 13:34:19 -08002302
Christoph Lametere94b1762006-12-06 20:33:17 -08002303 buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
David Brownellb8852442006-01-08 13:34:23 -08002304 if (!buf) {
2305 status = -ENOMEM;
2306 goto err0;
2307 }
2308
2309 status = bus_register(&spi_bus_type);
2310 if (status < 0)
2311 goto err1;
2312
2313 status = class_register(&spi_master_class);
2314 if (status < 0)
2315 goto err2;
David Brownell8ae12a02006-01-08 13:34:19 -08002316 return 0;
David Brownellb8852442006-01-08 13:34:23 -08002317
2318err2:
2319 bus_unregister(&spi_bus_type);
2320err1:
2321 kfree(buf);
2322 buf = NULL;
2323err0:
2324 return status;
David Brownell8ae12a02006-01-08 13:34:19 -08002325}
David Brownellb8852442006-01-08 13:34:23 -08002326
David Brownell8ae12a02006-01-08 13:34:19 -08002327/* board_info is normally registered in arch_initcall(),
2328 * but even essential drivers wait till later
David Brownellb8852442006-01-08 13:34:23 -08002329 *
2330 * REVISIT only boardinfo really needs static linking. the rest (device and
2331 * driver registration) _could_ be dynamically linked (modular) ... costs
2332 * include needing to have boardinfo data structures be much more public.
David Brownell8ae12a02006-01-08 13:34:19 -08002333 */
David Brownell673c0c02008-10-15 22:02:46 -07002334postcore_initcall(spi_init);
David Brownell8ae12a02006-01-08 13:34:19 -08002335