blob: 22aa41cace824c85ffd5be74f4c462f321da3114 [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;
353 struct device *dev = master->dev.parent;
354
355 if (!spi_master_get(master))
356 return NULL;
357
Jingoo Han5fe5f052013-10-14 10:31:51 +0900358 spi = kzalloc(sizeof(*spi), GFP_KERNEL);
Grant Likelydc87c982008-05-15 16:50:22 -0600359 if (!spi) {
360 dev_err(dev, "cannot alloc spi_device\n");
361 spi_master_put(master);
362 return NULL;
363 }
364
365 spi->master = master;
Laurent Pinchart178db7d2011-12-12 01:15:06 +0100366 spi->dev.parent = &master->dev;
Grant Likelydc87c982008-05-15 16:50:22 -0600367 spi->dev.bus = &spi_bus_type;
368 spi->dev.release = spidev_release;
Andreas Larsson446411e2013-02-13 14:20:25 +0100369 spi->cs_gpio = -ENOENT;
Grant Likelydc87c982008-05-15 16:50:22 -0600370 device_initialize(&spi->dev);
371 return spi;
372}
373EXPORT_SYMBOL_GPL(spi_alloc_device);
374
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200375static void spi_dev_set_name(struct spi_device *spi)
376{
377 struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
378
379 if (adev) {
380 dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
381 return;
382 }
383
384 dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->master->dev),
385 spi->chip_select);
386}
387
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200388static int spi_dev_check(struct device *dev, void *data)
389{
390 struct spi_device *spi = to_spi_device(dev);
391 struct spi_device *new_spi = data;
392
393 if (spi->master == new_spi->master &&
394 spi->chip_select == new_spi->chip_select)
395 return -EBUSY;
396 return 0;
397}
398
Grant Likelydc87c982008-05-15 16:50:22 -0600399/**
400 * spi_add_device - Add spi_device allocated with spi_alloc_device
401 * @spi: spi_device to register
402 *
403 * Companion function to spi_alloc_device. Devices allocated with
404 * spi_alloc_device can be added onto the spi bus with this function.
405 *
David Brownelle48880e2008-08-15 00:40:44 -0700406 * Returns 0 on success; negative errno on failure
Grant Likelydc87c982008-05-15 16:50:22 -0600407 */
408int spi_add_device(struct spi_device *spi)
409{
David Brownelle48880e2008-08-15 00:40:44 -0700410 static DEFINE_MUTEX(spi_add_lock);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100411 struct spi_master *master = spi->master;
412 struct device *dev = master->dev.parent;
Grant Likelydc87c982008-05-15 16:50:22 -0600413 int status;
414
415 /* Chipselects are numbered 0..max; validate. */
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100416 if (spi->chip_select >= master->num_chipselect) {
Grant Likelydc87c982008-05-15 16:50:22 -0600417 dev_err(dev, "cs%d >= max %d\n",
418 spi->chip_select,
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100419 master->num_chipselect);
Grant Likelydc87c982008-05-15 16:50:22 -0600420 return -EINVAL;
421 }
422
423 /* Set the bus ID string */
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200424 spi_dev_set_name(spi);
David Brownelle48880e2008-08-15 00:40:44 -0700425
426 /* We need to make sure there's no other device with this
427 * chipselect **BEFORE** we call setup(), else we'll trash
428 * its configuration. Lock against concurrent add() calls.
429 */
430 mutex_lock(&spi_add_lock);
431
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200432 status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
433 if (status) {
David Brownelle48880e2008-08-15 00:40:44 -0700434 dev_err(dev, "chipselect %d already in use\n",
435 spi->chip_select);
David Brownelle48880e2008-08-15 00:40:44 -0700436 goto done;
437 }
438
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100439 if (master->cs_gpios)
440 spi->cs_gpio = master->cs_gpios[spi->chip_select];
441
David Brownelle48880e2008-08-15 00:40:44 -0700442 /* Drivers may modify this initial i/o setup, but will
443 * normally rely on the device being setup. Devices
444 * using SPI_CS_HIGH can't coexist well otherwise...
445 */
David Brownell7d077192009-06-17 16:26:03 -0700446 status = spi_setup(spi);
Grant Likelydc87c982008-05-15 16:50:22 -0600447 if (status < 0) {
Linus Walleijeb288a12010-10-21 21:06:44 +0200448 dev_err(dev, "can't setup %s, status %d\n",
449 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700450 goto done;
Grant Likelydc87c982008-05-15 16:50:22 -0600451 }
452
David Brownelle48880e2008-08-15 00:40:44 -0700453 /* Device may be bound to an active driver when this returns */
Grant Likelydc87c982008-05-15 16:50:22 -0600454 status = device_add(&spi->dev);
David Brownelle48880e2008-08-15 00:40:44 -0700455 if (status < 0)
Linus Walleijeb288a12010-10-21 21:06:44 +0200456 dev_err(dev, "can't add %s, status %d\n",
457 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700458 else
Kay Sievers35f74fc2009-01-06 10:44:37 -0800459 dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
Grant Likelydc87c982008-05-15 16:50:22 -0600460
David Brownelle48880e2008-08-15 00:40:44 -0700461done:
462 mutex_unlock(&spi_add_lock);
463 return status;
Grant Likelydc87c982008-05-15 16:50:22 -0600464}
465EXPORT_SYMBOL_GPL(spi_add_device);
David Brownell8ae12a02006-01-08 13:34:19 -0800466
David Brownell33e34dc2007-05-08 00:32:21 -0700467/**
468 * spi_new_device - instantiate one new SPI device
469 * @master: Controller to which device is connected
470 * @chip: Describes the SPI device
471 * Context: can sleep
472 *
473 * On typical mainboards, this is purely internal; and it's not needed
David Brownell8ae12a02006-01-08 13:34:19 -0800474 * after board init creates the hard-wired devices. Some development
475 * platforms may not be able to use spi_register_board_info though, and
476 * this is exported so that for example a USB or parport based adapter
477 * driver could add devices (which it would learn about out-of-band).
David Brownell082c8cb2007-07-31 00:39:45 -0700478 *
479 * Returns the new device, or NULL.
David Brownell8ae12a02006-01-08 13:34:19 -0800480 */
Adrian Bunke9d5a462007-03-26 21:32:23 -0800481struct spi_device *spi_new_device(struct spi_master *master,
482 struct spi_board_info *chip)
David Brownell8ae12a02006-01-08 13:34:19 -0800483{
484 struct spi_device *proxy;
David Brownell8ae12a02006-01-08 13:34:19 -0800485 int status;
486
David Brownell082c8cb2007-07-31 00:39:45 -0700487 /* NOTE: caller did any chip->bus_num checks necessary.
488 *
489 * Also, unless we change the return value convention to use
490 * error-or-pointer (not NULL-or-pointer), troubleshootability
491 * suggests syslogged diagnostics are best here (ugh).
492 */
493
Grant Likelydc87c982008-05-15 16:50:22 -0600494 proxy = spi_alloc_device(master);
495 if (!proxy)
David Brownell8ae12a02006-01-08 13:34:19 -0800496 return NULL;
497
Grant Likely102eb972008-07-23 21:29:55 -0700498 WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
499
David Brownell8ae12a02006-01-08 13:34:19 -0800500 proxy->chip_select = chip->chip_select;
501 proxy->max_speed_hz = chip->max_speed_hz;
David Brownell980a01c2006-06-28 07:47:15 -0700502 proxy->mode = chip->mode;
David Brownell8ae12a02006-01-08 13:34:19 -0800503 proxy->irq = chip->irq;
Grant Likely102eb972008-07-23 21:29:55 -0700504 strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
David Brownell8ae12a02006-01-08 13:34:19 -0800505 proxy->dev.platform_data = (void *) chip->platform_data;
506 proxy->controller_data = chip->controller_data;
507 proxy->controller_state = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800508
Grant Likelydc87c982008-05-15 16:50:22 -0600509 status = spi_add_device(proxy);
David Brownell8ae12a02006-01-08 13:34:19 -0800510 if (status < 0) {
Grant Likelydc87c982008-05-15 16:50:22 -0600511 spi_dev_put(proxy);
512 return NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800513 }
514
David Brownell8ae12a02006-01-08 13:34:19 -0800515 return proxy;
516}
517EXPORT_SYMBOL_GPL(spi_new_device);
518
Feng Tang2b9603a2010-08-02 15:52:15 +0800519static void spi_match_master_to_boardinfo(struct spi_master *master,
520 struct spi_board_info *bi)
521{
522 struct spi_device *dev;
523
524 if (master->bus_num != bi->bus_num)
525 return;
526
527 dev = spi_new_device(master, bi);
528 if (!dev)
529 dev_err(master->dev.parent, "can't create new device for %s\n",
530 bi->modalias);
531}
532
David Brownell33e34dc2007-05-08 00:32:21 -0700533/**
534 * spi_register_board_info - register SPI devices for a given board
535 * @info: array of chip descriptors
536 * @n: how many descriptors are provided
537 * Context: can sleep
538 *
David Brownell8ae12a02006-01-08 13:34:19 -0800539 * Board-specific early init code calls this (probably during arch_initcall)
540 * with segments of the SPI device table. Any device nodes are created later,
541 * after the relevant parent SPI controller (bus_num) is defined. We keep
542 * this table of devices forever, so that reloading a controller driver will
543 * not make Linux forget about these hard-wired devices.
544 *
545 * Other code can also call this, e.g. a particular add-on board might provide
546 * SPI devices through its expansion connector, so code initializing that board
547 * would naturally declare its SPI devices.
548 *
549 * The board info passed can safely be __initdata ... but be careful of
550 * any embedded pointers (platform_data, etc), they're copied as-is.
551 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000552int spi_register_board_info(struct spi_board_info const *info, unsigned n)
David Brownell8ae12a02006-01-08 13:34:19 -0800553{
Feng Tang2b9603a2010-08-02 15:52:15 +0800554 struct boardinfo *bi;
555 int i;
David Brownell8ae12a02006-01-08 13:34:19 -0800556
Feng Tang2b9603a2010-08-02 15:52:15 +0800557 bi = kzalloc(n * sizeof(*bi), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -0800558 if (!bi)
559 return -ENOMEM;
David Brownell8ae12a02006-01-08 13:34:19 -0800560
Feng Tang2b9603a2010-08-02 15:52:15 +0800561 for (i = 0; i < n; i++, bi++, info++) {
562 struct spi_master *master;
David Brownell8ae12a02006-01-08 13:34:19 -0800563
Feng Tang2b9603a2010-08-02 15:52:15 +0800564 memcpy(&bi->board_info, info, sizeof(*info));
565 mutex_lock(&board_lock);
566 list_add_tail(&bi->list, &board_list);
567 list_for_each_entry(master, &spi_master_list, list)
568 spi_match_master_to_boardinfo(master, &bi->board_info);
569 mutex_unlock(&board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800570 }
Feng Tang2b9603a2010-08-02 15:52:15 +0800571
572 return 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800573}
574
575/*-------------------------------------------------------------------------*/
576
Mark Brownb1589352013-10-05 11:50:40 +0100577static void spi_set_cs(struct spi_device *spi, bool enable)
578{
579 if (spi->mode & SPI_CS_HIGH)
580 enable = !enable;
581
582 if (spi->cs_gpio >= 0)
583 gpio_set_value(spi->cs_gpio, !enable);
584 else if (spi->master->set_cs)
585 spi->master->set_cs(spi, !enable);
586}
587
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200588#ifdef CONFIG_HAS_DMA
Mark Brown6ad45a22014-02-02 13:47:47 +0000589static int spi_map_buf(struct spi_master *master, struct device *dev,
590 struct sg_table *sgt, void *buf, size_t len,
591 enum dma_data_direction dir)
592{
593 const bool vmalloced_buf = is_vmalloc_addr(buf);
594 const int desc_len = vmalloced_buf ? PAGE_SIZE : master->max_dma_len;
595 const int sgs = DIV_ROUND_UP(len, desc_len);
596 struct page *vm_page;
597 void *sg_buf;
598 size_t min;
599 int i, ret;
600
601 ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
602 if (ret != 0)
603 return ret;
604
605 for (i = 0; i < sgs; i++) {
606 min = min_t(size_t, len, desc_len);
607
608 if (vmalloced_buf) {
609 vm_page = vmalloc_to_page(buf);
610 if (!vm_page) {
611 sg_free_table(sgt);
612 return -ENOMEM;
613 }
614 sg_buf = page_address(vm_page) +
615 ((size_t)buf & ~PAGE_MASK);
616 } else {
617 sg_buf = buf;
618 }
619
620 sg_set_buf(&sgt->sgl[i], sg_buf, min);
621
622 buf += min;
623 len -= min;
624 }
625
626 ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
627 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
655 tx_dev = &master->dma_tx->dev->device;
656 rx_dev = &master->dma_rx->dev->device;
657
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
695 tx_dev = &master->dma_tx->dev->device;
696 rx_dev = &master->dma_rx->dev->device;
697
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
Wolfram Sang16735d02013-11-14 14:32:02 -0800792 reinit_completion(&master->xfer_completion);
Mark Brownb1589352013-10-05 11:50:40 +0100793
794 ret = master->transfer_one(master, msg->spi, xfer);
795 if (ret < 0) {
796 dev_err(&msg->spi->dev,
797 "SPI transfer failed: %d\n", ret);
798 goto out;
799 }
800
Axel Lin13a42792014-01-18 22:05:22 +0800801 if (ret > 0) {
802 ret = 0;
Mark Brown16a0ce42014-01-30 22:16:41 +0000803 ms = xfer->len * 8 * 1000 / xfer->speed_hz;
Harini Katakameee668a2014-04-11 12:06:28 +0530804 ms += ms + 100; /* some tolerance */
Mark Brown16a0ce42014-01-30 22:16:41 +0000805
806 ms = wait_for_completion_timeout(&master->xfer_completion,
807 msecs_to_jiffies(ms));
808 }
809
810 if (ms == 0) {
811 dev_err(&msg->spi->dev, "SPI transfer timed out\n");
812 msg->status = -ETIMEDOUT;
Axel Lin13a42792014-01-18 22:05:22 +0800813 }
Mark Brownb1589352013-10-05 11:50:40 +0100814
815 trace_spi_transfer_stop(msg, xfer);
816
817 if (msg->status != -EINPROGRESS)
818 goto out;
819
820 if (xfer->delay_usecs)
821 udelay(xfer->delay_usecs);
822
823 if (xfer->cs_change) {
824 if (list_is_last(&xfer->transfer_list,
825 &msg->transfers)) {
826 keep_cs = true;
827 } else {
Mark Brown0b73aa62014-03-29 23:48:07 +0000828 spi_set_cs(msg->spi, false);
829 udelay(10);
830 spi_set_cs(msg->spi, true);
Mark Brownb1589352013-10-05 11:50:40 +0100831 }
832 }
833
834 msg->actual_length += xfer->len;
835 }
836
837out:
838 if (ret != 0 || !keep_cs)
839 spi_set_cs(msg->spi, false);
840
841 if (msg->status == -EINPROGRESS)
842 msg->status = ret;
843
844 spi_finalize_current_message(master);
845
846 return ret;
847}
848
849/**
850 * spi_finalize_current_transfer - report completion of a transfer
851 *
852 * Called by SPI drivers using the core transfer_one_message()
853 * implementation to notify it that the current interrupt driven
Geert Uytterhoeven9e8f4882014-01-21 16:10:05 +0100854 * transfer has finished and the next one may be scheduled.
Mark Brownb1589352013-10-05 11:50:40 +0100855 */
856void spi_finalize_current_transfer(struct spi_master *master)
857{
858 complete(&master->xfer_completion);
859}
860EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
861
Linus Walleijffbbdd212012-02-22 10:05:38 +0100862/**
863 * spi_pump_messages - kthread work function which processes spi message queue
864 * @work: pointer to kthread work struct contained in the master struct
865 *
866 * This function checks if there is any spi message in the queue that
867 * needs processing and if so call out to the driver to initialize hardware
868 * and transfer each message.
869 *
870 */
871static void spi_pump_messages(struct kthread_work *work)
872{
873 struct spi_master *master =
874 container_of(work, struct spi_master, pump_messages);
875 unsigned long flags;
876 bool was_busy = false;
877 int ret;
878
879 /* Lock queue and check for queue work */
880 spin_lock_irqsave(&master->queue_lock, flags);
881 if (list_empty(&master->queue) || !master->running) {
Bryan Freedb0b36b82013-03-13 11:17:40 -0700882 if (!master->busy) {
883 spin_unlock_irqrestore(&master->queue_lock, flags);
884 return;
Linus Walleijffbbdd212012-02-22 10:05:38 +0100885 }
886 master->busy = false;
887 spin_unlock_irqrestore(&master->queue_lock, flags);
Mark Brown3a2eba92014-01-28 20:17:03 +0000888 kfree(master->dummy_rx);
889 master->dummy_rx = NULL;
890 kfree(master->dummy_tx);
891 master->dummy_tx = NULL;
Bryan Freedb0b36b82013-03-13 11:17:40 -0700892 if (master->unprepare_transfer_hardware &&
893 master->unprepare_transfer_hardware(master))
894 dev_err(&master->dev,
895 "failed to unprepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +0100896 if (master->auto_runtime_pm) {
897 pm_runtime_mark_last_busy(master->dev.parent);
898 pm_runtime_put_autosuspend(master->dev.parent);
899 }
Mark Brown56ec1972013-10-07 19:33:53 +0100900 trace_spi_master_idle(master);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100901 return;
902 }
903
904 /* Make sure we are not already running a message */
905 if (master->cur_msg) {
906 spin_unlock_irqrestore(&master->queue_lock, flags);
907 return;
908 }
909 /* Extract head of queue */
910 master->cur_msg =
Axel Lina89e2d22014-01-09 16:03:58 +0800911 list_first_entry(&master->queue, struct spi_message, queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100912
913 list_del_init(&master->cur_msg->queue);
914 if (master->busy)
915 was_busy = true;
916 else
917 master->busy = true;
918 spin_unlock_irqrestore(&master->queue_lock, flags);
919
Mark Brown49834de2013-07-28 14:47:02 +0100920 if (!was_busy && master->auto_runtime_pm) {
921 ret = pm_runtime_get_sync(master->dev.parent);
922 if (ret < 0) {
923 dev_err(&master->dev, "Failed to power device: %d\n",
924 ret);
925 return;
926 }
927 }
928
Mark Brown56ec1972013-10-07 19:33:53 +0100929 if (!was_busy)
930 trace_spi_master_busy(master);
931
Shubhrajyoti D7dfd2bd2012-05-10 19:20:41 +0530932 if (!was_busy && master->prepare_transfer_hardware) {
Linus Walleijffbbdd212012-02-22 10:05:38 +0100933 ret = master->prepare_transfer_hardware(master);
934 if (ret) {
935 dev_err(&master->dev,
936 "failed to prepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +0100937
938 if (master->auto_runtime_pm)
939 pm_runtime_put(master->dev.parent);
Linus Walleijffbbdd212012-02-22 10:05:38 +0100940 return;
941 }
942 }
943
Mark Brown56ec1972013-10-07 19:33:53 +0100944 trace_spi_message_start(master->cur_msg);
945
Mark Brown2841a5f2013-10-05 00:23:12 +0100946 if (master->prepare_message) {
947 ret = master->prepare_message(master, master->cur_msg);
948 if (ret) {
949 dev_err(&master->dev,
950 "failed to prepare message: %d\n", ret);
951 master->cur_msg->status = ret;
952 spi_finalize_current_message(master);
953 return;
954 }
955 master->cur_msg_prepared = true;
956 }
957
Mark Brown99adef32014-01-16 12:22:43 +0000958 ret = spi_map_msg(master, master->cur_msg);
959 if (ret) {
960 master->cur_msg->status = ret;
961 spi_finalize_current_message(master);
962 return;
963 }
964
Linus Walleijffbbdd212012-02-22 10:05:38 +0100965 ret = master->transfer_one_message(master, master->cur_msg);
966 if (ret) {
967 dev_err(&master->dev,
Geert Uytterhoeven1f802f82014-01-28 10:33:03 +0100968 "failed to transfer one message from queue\n");
Linus Walleijffbbdd212012-02-22 10:05:38 +0100969 return;
970 }
971}
972
973static int spi_init_queue(struct spi_master *master)
974{
975 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
976
977 INIT_LIST_HEAD(&master->queue);
978 spin_lock_init(&master->queue_lock);
979
980 master->running = false;
981 master->busy = false;
982
983 init_kthread_worker(&master->kworker);
984 master->kworker_task = kthread_run(kthread_worker_fn,
Kees Cookf1701682013-07-03 15:04:58 -0700985 &master->kworker, "%s",
Linus Walleijffbbdd212012-02-22 10:05:38 +0100986 dev_name(&master->dev));
987 if (IS_ERR(master->kworker_task)) {
988 dev_err(&master->dev, "failed to create message pump task\n");
989 return -ENOMEM;
990 }
991 init_kthread_work(&master->pump_messages, spi_pump_messages);
992
993 /*
994 * Master config will indicate if this controller should run the
995 * message pump with high (realtime) priority to reduce the transfer
996 * latency on the bus by minimising the delay between a transfer
997 * request and the scheduling of the message pump thread. Without this
998 * setting the message pump thread will remain at default priority.
999 */
1000 if (master->rt) {
1001 dev_info(&master->dev,
1002 "will run message pump with realtime priority\n");
1003 sched_setscheduler(master->kworker_task, SCHED_FIFO, &param);
1004 }
1005
1006 return 0;
1007}
1008
1009/**
1010 * spi_get_next_queued_message() - called by driver to check for queued
1011 * messages
1012 * @master: the master to check for queued messages
1013 *
1014 * If there are more messages in the queue, the next message is returned from
1015 * this call.
1016 */
1017struct spi_message *spi_get_next_queued_message(struct spi_master *master)
1018{
1019 struct spi_message *next;
1020 unsigned long flags;
1021
1022 /* get a pointer to the next message, if any */
1023 spin_lock_irqsave(&master->queue_lock, flags);
Axel Lin1cfd97f2014-01-02 15:16:40 +08001024 next = list_first_entry_or_null(&master->queue, struct spi_message,
1025 queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001026 spin_unlock_irqrestore(&master->queue_lock, flags);
1027
1028 return next;
1029}
1030EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1031
1032/**
1033 * spi_finalize_current_message() - the current message is complete
1034 * @master: the master to return the message to
1035 *
1036 * Called by the driver to notify the core that the message in the front of the
1037 * queue is complete and can be removed from the queue.
1038 */
1039void spi_finalize_current_message(struct spi_master *master)
1040{
1041 struct spi_message *mesg;
1042 unsigned long flags;
Mark Brown2841a5f2013-10-05 00:23:12 +01001043 int ret;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001044
1045 spin_lock_irqsave(&master->queue_lock, flags);
1046 mesg = master->cur_msg;
1047 master->cur_msg = NULL;
1048
1049 queue_kthread_work(&master->kworker, &master->pump_messages);
1050 spin_unlock_irqrestore(&master->queue_lock, flags);
1051
Mark Brown99adef32014-01-16 12:22:43 +00001052 spi_unmap_msg(master, mesg);
1053
Mark Brown2841a5f2013-10-05 00:23:12 +01001054 if (master->cur_msg_prepared && master->unprepare_message) {
1055 ret = master->unprepare_message(master, mesg);
1056 if (ret) {
1057 dev_err(&master->dev,
1058 "failed to unprepare message: %d\n", ret);
1059 }
1060 }
1061 master->cur_msg_prepared = false;
1062
Linus Walleijffbbdd212012-02-22 10:05:38 +01001063 mesg->state = NULL;
1064 if (mesg->complete)
1065 mesg->complete(mesg->context);
Mark Brown56ec1972013-10-07 19:33:53 +01001066
1067 trace_spi_message_done(mesg);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001068}
1069EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1070
1071static int spi_start_queue(struct spi_master *master)
1072{
1073 unsigned long flags;
1074
1075 spin_lock_irqsave(&master->queue_lock, flags);
1076
1077 if (master->running || master->busy) {
1078 spin_unlock_irqrestore(&master->queue_lock, flags);
1079 return -EBUSY;
1080 }
1081
1082 master->running = true;
1083 master->cur_msg = NULL;
1084 spin_unlock_irqrestore(&master->queue_lock, flags);
1085
1086 queue_kthread_work(&master->kworker, &master->pump_messages);
1087
1088 return 0;
1089}
1090
1091static int spi_stop_queue(struct spi_master *master)
1092{
1093 unsigned long flags;
1094 unsigned limit = 500;
1095 int ret = 0;
1096
1097 spin_lock_irqsave(&master->queue_lock, flags);
1098
1099 /*
1100 * This is a bit lame, but is optimized for the common execution path.
1101 * A wait_queue on the master->busy could be used, but then the common
1102 * execution path (pump_messages) would be required to call wake_up or
1103 * friends on every SPI message. Do this instead.
1104 */
1105 while ((!list_empty(&master->queue) || master->busy) && limit--) {
1106 spin_unlock_irqrestore(&master->queue_lock, flags);
Axel Linf97b26b2014-02-21 09:15:18 +08001107 usleep_range(10000, 11000);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001108 spin_lock_irqsave(&master->queue_lock, flags);
1109 }
1110
1111 if (!list_empty(&master->queue) || master->busy)
1112 ret = -EBUSY;
1113 else
1114 master->running = false;
1115
1116 spin_unlock_irqrestore(&master->queue_lock, flags);
1117
1118 if (ret) {
1119 dev_warn(&master->dev,
1120 "could not stop message queue\n");
1121 return ret;
1122 }
1123 return ret;
1124}
1125
1126static int spi_destroy_queue(struct spi_master *master)
1127{
1128 int ret;
1129
1130 ret = spi_stop_queue(master);
1131
1132 /*
1133 * flush_kthread_worker will block until all work is done.
1134 * If the reason that stop_queue timed out is that the work will never
1135 * finish, then it does no good to call flush/stop thread, so
1136 * return anyway.
1137 */
1138 if (ret) {
1139 dev_err(&master->dev, "problem destroying queue\n");
1140 return ret;
1141 }
1142
1143 flush_kthread_worker(&master->kworker);
1144 kthread_stop(master->kworker_task);
1145
1146 return 0;
1147}
1148
1149/**
1150 * spi_queued_transfer - transfer function for queued transfers
1151 * @spi: spi device which is requesting transfer
1152 * @msg: spi message which is to handled is queued to driver queue
1153 */
1154static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
1155{
1156 struct spi_master *master = spi->master;
1157 unsigned long flags;
1158
1159 spin_lock_irqsave(&master->queue_lock, flags);
1160
1161 if (!master->running) {
1162 spin_unlock_irqrestore(&master->queue_lock, flags);
1163 return -ESHUTDOWN;
1164 }
1165 msg->actual_length = 0;
1166 msg->status = -EINPROGRESS;
1167
1168 list_add_tail(&msg->queue, &master->queue);
Axel Lin96b3eac2013-08-22 23:41:34 +08001169 if (!master->busy)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001170 queue_kthread_work(&master->kworker, &master->pump_messages);
1171
1172 spin_unlock_irqrestore(&master->queue_lock, flags);
1173 return 0;
1174}
1175
1176static int spi_master_initialize_queue(struct spi_master *master)
1177{
1178 int ret;
1179
Linus Walleijffbbdd212012-02-22 10:05:38 +01001180 master->transfer = spi_queued_transfer;
Mark Brownb1589352013-10-05 11:50:40 +01001181 if (!master->transfer_one_message)
1182 master->transfer_one_message = spi_transfer_one_message;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001183
1184 /* Initialize and start queue */
1185 ret = spi_init_queue(master);
1186 if (ret) {
1187 dev_err(&master->dev, "problem initializing queue\n");
1188 goto err_init_queue;
1189 }
Mark Brownc3676d52014-05-01 10:47:52 -07001190 master->queued = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001191 ret = spi_start_queue(master);
1192 if (ret) {
1193 dev_err(&master->dev, "problem starting queue\n");
1194 goto err_start_queue;
1195 }
1196
1197 return 0;
1198
1199err_start_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001200 spi_destroy_queue(master);
Mark Brownc3676d52014-05-01 10:47:52 -07001201err_init_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001202 return ret;
1203}
1204
1205/*-------------------------------------------------------------------------*/
1206
Andreas Larsson7cb94362012-12-04 15:09:38 +01001207#if defined(CONFIG_OF)
Grant Likelyd57a4282012-04-07 14:16:53 -06001208/**
1209 * of_register_spi_devices() - Register child devices onto the SPI bus
1210 * @master: Pointer to spi_master device
1211 *
1212 * Registers an spi_device for each child node of master node which has a 'reg'
1213 * property.
1214 */
1215static void of_register_spi_devices(struct spi_master *master)
1216{
1217 struct spi_device *spi;
1218 struct device_node *nc;
Grant Likelyd57a4282012-04-07 14:16:53 -06001219 int rc;
Trent Piepho89da4292013-09-27 05:37:25 -07001220 u32 value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001221
1222 if (!master->dev.of_node)
1223 return;
1224
Alexander Sverdlinf3b61592012-11-29 08:59:29 +01001225 for_each_available_child_of_node(master->dev.of_node, nc) {
Grant Likelyd57a4282012-04-07 14:16:53 -06001226 /* Alloc an spi_device */
1227 spi = spi_alloc_device(master);
1228 if (!spi) {
1229 dev_err(&master->dev, "spi_device alloc error for %s\n",
1230 nc->full_name);
1231 spi_dev_put(spi);
1232 continue;
1233 }
1234
1235 /* Select device driver */
1236 if (of_modalias_node(nc, spi->modalias,
1237 sizeof(spi->modalias)) < 0) {
1238 dev_err(&master->dev, "cannot find modalias for %s\n",
1239 nc->full_name);
1240 spi_dev_put(spi);
1241 continue;
1242 }
1243
1244 /* Device address */
Trent Piepho89da4292013-09-27 05:37:25 -07001245 rc = of_property_read_u32(nc, "reg", &value);
1246 if (rc) {
1247 dev_err(&master->dev, "%s has no valid 'reg' property (%d)\n",
1248 nc->full_name, rc);
Grant Likelyd57a4282012-04-07 14:16:53 -06001249 spi_dev_put(spi);
1250 continue;
1251 }
Trent Piepho89da4292013-09-27 05:37:25 -07001252 spi->chip_select = value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001253
1254 /* Mode (clock phase/polarity/etc.) */
1255 if (of_find_property(nc, "spi-cpha", NULL))
1256 spi->mode |= SPI_CPHA;
1257 if (of_find_property(nc, "spi-cpol", NULL))
1258 spi->mode |= SPI_CPOL;
1259 if (of_find_property(nc, "spi-cs-high", NULL))
1260 spi->mode |= SPI_CS_HIGH;
Lars-Peter Clausenc20151d2012-12-06 16:55:33 +01001261 if (of_find_property(nc, "spi-3wire", NULL))
1262 spi->mode |= SPI_3WIRE;
Zhao Qiangcd6339e2014-04-01 17:10:50 +08001263 if (of_find_property(nc, "spi-lsb-first", NULL))
1264 spi->mode |= SPI_LSB_FIRST;
Grant Likelyd57a4282012-04-07 14:16:53 -06001265
wangyuhangf477b7f2013-08-11 18:15:17 +08001266 /* Device DUAL/QUAD mode */
Trent Piepho89da4292013-09-27 05:37:25 -07001267 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
1268 switch (value) {
1269 case 1:
Mark Browna822e992013-08-30 23:19:40 +01001270 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001271 case 2:
Mark Browna822e992013-08-30 23:19:40 +01001272 spi->mode |= SPI_TX_DUAL;
1273 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001274 case 4:
Mark Browna822e992013-08-30 23:19:40 +01001275 spi->mode |= SPI_TX_QUAD;
1276 break;
1277 default:
Geert Uytterhoeven80874d82014-05-26 14:05:25 +02001278 dev_warn(&master->dev,
1279 "spi-tx-bus-width %d not supported\n",
1280 value);
1281 break;
Mark Browna822e992013-08-30 23:19:40 +01001282 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001283 }
1284
Trent Piepho89da4292013-09-27 05:37:25 -07001285 if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
1286 switch (value) {
1287 case 1:
Mark Browna822e992013-08-30 23:19:40 +01001288 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001289 case 2:
Mark Browna822e992013-08-30 23:19:40 +01001290 spi->mode |= SPI_RX_DUAL;
1291 break;
Trent Piepho89da4292013-09-27 05:37:25 -07001292 case 4:
Mark Browna822e992013-08-30 23:19:40 +01001293 spi->mode |= SPI_RX_QUAD;
1294 break;
1295 default:
Geert Uytterhoeven80874d82014-05-26 14:05:25 +02001296 dev_warn(&master->dev,
1297 "spi-rx-bus-width %d not supported\n",
1298 value);
1299 break;
Mark Browna822e992013-08-30 23:19:40 +01001300 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001301 }
1302
Grant Likelyd57a4282012-04-07 14:16:53 -06001303 /* Device speed */
Trent Piepho89da4292013-09-27 05:37:25 -07001304 rc = of_property_read_u32(nc, "spi-max-frequency", &value);
1305 if (rc) {
1306 dev_err(&master->dev, "%s has no valid 'spi-max-frequency' property (%d)\n",
1307 nc->full_name, rc);
Grant Likelyd57a4282012-04-07 14:16:53 -06001308 spi_dev_put(spi);
1309 continue;
1310 }
Trent Piepho89da4292013-09-27 05:37:25 -07001311 spi->max_speed_hz = value;
Grant Likelyd57a4282012-04-07 14:16:53 -06001312
1313 /* IRQ */
1314 spi->irq = irq_of_parse_and_map(nc, 0);
1315
1316 /* Store a pointer to the node in the device structure */
1317 of_node_get(nc);
1318 spi->dev.of_node = nc;
1319
1320 /* Register the new device */
Mathias Krause70fac172013-08-31 20:24:14 +02001321 request_module("%s%s", SPI_MODULE_PREFIX, spi->modalias);
Grant Likelyd57a4282012-04-07 14:16:53 -06001322 rc = spi_add_device(spi);
1323 if (rc) {
1324 dev_err(&master->dev, "spi_device register error %s\n",
1325 nc->full_name);
1326 spi_dev_put(spi);
1327 }
1328
1329 }
1330}
1331#else
1332static void of_register_spi_devices(struct spi_master *master) { }
1333#endif
1334
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001335#ifdef CONFIG_ACPI
1336static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
1337{
1338 struct spi_device *spi = data;
1339
1340 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1341 struct acpi_resource_spi_serialbus *sb;
1342
1343 sb = &ares->data.spi_serial_bus;
1344 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
1345 spi->chip_select = sb->device_selection;
1346 spi->max_speed_hz = sb->connection_speed;
1347
1348 if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
1349 spi->mode |= SPI_CPHA;
1350 if (sb->clock_polarity == ACPI_SPI_START_HIGH)
1351 spi->mode |= SPI_CPOL;
1352 if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
1353 spi->mode |= SPI_CS_HIGH;
1354 }
1355 } else if (spi->irq < 0) {
1356 struct resource r;
1357
1358 if (acpi_dev_resource_interrupt(ares, 0, &r))
1359 spi->irq = r.start;
1360 }
1361
1362 /* Always tell the ACPI core to skip this resource */
1363 return 1;
1364}
1365
1366static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
1367 void *data, void **return_value)
1368{
1369 struct spi_master *master = data;
1370 struct list_head resource_list;
1371 struct acpi_device *adev;
1372 struct spi_device *spi;
1373 int ret;
1374
1375 if (acpi_bus_get_device(handle, &adev))
1376 return AE_OK;
1377 if (acpi_bus_get_status(adev) || !adev->status.present)
1378 return AE_OK;
1379
1380 spi = spi_alloc_device(master);
1381 if (!spi) {
1382 dev_err(&master->dev, "failed to allocate SPI device for %s\n",
1383 dev_name(&adev->dev));
1384 return AE_NO_MEMORY;
1385 }
1386
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001387 ACPI_COMPANION_SET(&spi->dev, adev);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001388 spi->irq = -1;
1389
1390 INIT_LIST_HEAD(&resource_list);
1391 ret = acpi_dev_get_resources(adev, &resource_list,
1392 acpi_spi_add_resource, spi);
1393 acpi_dev_free_resource_list(&resource_list);
1394
1395 if (ret < 0 || !spi->max_speed_hz) {
1396 spi_dev_put(spi);
1397 return AE_OK;
1398 }
1399
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001400 adev->power.flags.ignore_parent = true;
Jarkko Nikulacf9eb392013-10-10 17:19:17 +03001401 strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias));
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001402 if (spi_add_device(spi)) {
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001403 adev->power.flags.ignore_parent = false;
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001404 dev_err(&master->dev, "failed to add SPI device %s from ACPI\n",
1405 dev_name(&adev->dev));
1406 spi_dev_put(spi);
1407 }
1408
1409 return AE_OK;
1410}
1411
1412static void acpi_register_spi_devices(struct spi_master *master)
1413{
1414 acpi_status status;
1415 acpi_handle handle;
1416
Rafael J. Wysocki29896172013-04-01 00:21:08 +00001417 handle = ACPI_HANDLE(master->dev.parent);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001418 if (!handle)
1419 return;
1420
1421 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1422 acpi_spi_add_device, NULL,
1423 master, NULL);
1424 if (ACPI_FAILURE(status))
1425 dev_warn(&master->dev, "failed to enumerate SPI slaves\n");
1426}
1427#else
1428static inline void acpi_register_spi_devices(struct spi_master *master) {}
1429#endif /* CONFIG_ACPI */
1430
Tony Jones49dce682007-10-16 01:27:48 -07001431static void spi_master_release(struct device *dev)
David Brownell8ae12a02006-01-08 13:34:19 -08001432{
1433 struct spi_master *master;
1434
Tony Jones49dce682007-10-16 01:27:48 -07001435 master = container_of(dev, struct spi_master, dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001436 kfree(master);
1437}
1438
1439static struct class spi_master_class = {
1440 .name = "spi_master",
1441 .owner = THIS_MODULE,
Tony Jones49dce682007-10-16 01:27:48 -07001442 .dev_release = spi_master_release,
David Brownell8ae12a02006-01-08 13:34:19 -08001443};
1444
1445
Linus Walleijffbbdd212012-02-22 10:05:38 +01001446
David Brownell8ae12a02006-01-08 13:34:19 -08001447/**
1448 * spi_alloc_master - allocate SPI master controller
1449 * @dev: the controller, possibly using the platform_bus
David Brownell33e34dc2007-05-08 00:32:21 -07001450 * @size: how much zeroed driver-private data to allocate; the pointer to this
Tony Jones49dce682007-10-16 01:27:48 -07001451 * memory is in the driver_data field of the returned device,
David Brownell0c868462006-01-08 13:34:25 -08001452 * accessible with spi_master_get_devdata().
David Brownell33e34dc2007-05-08 00:32:21 -07001453 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001454 *
1455 * This call is used only by SPI master controller drivers, which are the
1456 * only ones directly touching chip registers. It's how they allocate
dmitry pervushinba1a0512006-05-20 15:00:14 -07001457 * an spi_master structure, prior to calling spi_register_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001458 *
1459 * This must be called from context that can sleep. It returns the SPI
1460 * master structure on success, else NULL.
1461 *
1462 * The caller is responsible for assigning the bus number and initializing
dmitry pervushinba1a0512006-05-20 15:00:14 -07001463 * the master's methods before calling spi_register_master(); and (after errors
Uwe Kleine-Königeb4af0f2012-02-23 10:40:14 +01001464 * adding the device) calling spi_master_put() and kfree() to prevent a memory
1465 * leak.
David Brownell8ae12a02006-01-08 13:34:19 -08001466 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001467struct spi_master *spi_alloc_master(struct device *dev, unsigned size)
David Brownell8ae12a02006-01-08 13:34:19 -08001468{
1469 struct spi_master *master;
1470
David Brownell0c868462006-01-08 13:34:25 -08001471 if (!dev)
1472 return NULL;
1473
Jingoo Han5fe5f052013-10-14 10:31:51 +09001474 master = kzalloc(size + sizeof(*master), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -08001475 if (!master)
1476 return NULL;
1477
Tony Jones49dce682007-10-16 01:27:48 -07001478 device_initialize(&master->dev);
Grant Likely1e8a52e2012-05-19 23:42:08 -06001479 master->bus_num = -1;
1480 master->num_chipselect = 1;
Tony Jones49dce682007-10-16 01:27:48 -07001481 master->dev.class = &spi_master_class;
1482 master->dev.parent = get_device(dev);
David Brownell0c868462006-01-08 13:34:25 -08001483 spi_master_set_devdata(master, &master[1]);
David Brownell8ae12a02006-01-08 13:34:19 -08001484
1485 return master;
1486}
1487EXPORT_SYMBOL_GPL(spi_alloc_master);
1488
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001489#ifdef CONFIG_OF
1490static int of_spi_register_master(struct spi_master *master)
1491{
Grant Likelye80beb22013-02-12 17:48:37 +00001492 int nb, i, *cs;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001493 struct device_node *np = master->dev.of_node;
1494
1495 if (!np)
1496 return 0;
1497
1498 nb = of_gpio_named_count(np, "cs-gpios");
Jingoo Han5fe5f052013-10-14 10:31:51 +09001499 master->num_chipselect = max_t(int, nb, master->num_chipselect);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001500
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001501 /* Return error only for an incorrectly formed cs-gpios property */
1502 if (nb == 0 || nb == -ENOENT)
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001503 return 0;
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001504 else if (nb < 0)
1505 return nb;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001506
1507 cs = devm_kzalloc(&master->dev,
1508 sizeof(int) * master->num_chipselect,
1509 GFP_KERNEL);
1510 master->cs_gpios = cs;
1511
1512 if (!master->cs_gpios)
1513 return -ENOMEM;
1514
Andreas Larsson0da83bb2013-01-29 15:53:40 +01001515 for (i = 0; i < master->num_chipselect; i++)
Andreas Larsson446411e2013-02-13 14:20:25 +01001516 cs[i] = -ENOENT;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001517
1518 for (i = 0; i < nb; i++)
1519 cs[i] = of_get_named_gpio(np, "cs-gpios", i);
1520
1521 return 0;
1522}
1523#else
1524static int of_spi_register_master(struct spi_master *master)
1525{
1526 return 0;
1527}
1528#endif
1529
David Brownell8ae12a02006-01-08 13:34:19 -08001530/**
1531 * spi_register_master - register SPI master controller
1532 * @master: initialized master, originally from spi_alloc_master()
David Brownell33e34dc2007-05-08 00:32:21 -07001533 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001534 *
1535 * SPI master controllers connect to their drivers using some non-SPI bus,
1536 * such as the platform bus. The final stage of probe() in that code
1537 * includes calling spi_register_master() to hook up to this SPI bus glue.
1538 *
1539 * SPI controllers use board specific (often SOC specific) bus numbers,
1540 * and board-specific addressing for SPI devices combines those numbers
1541 * with chip select numbers. Since SPI does not directly support dynamic
1542 * device identification, boards need configuration tables telling which
1543 * chip is at which address.
1544 *
1545 * This must be called from context that can sleep. It returns zero on
1546 * success, else a negative error code (dropping the master's refcount).
David Brownell0c868462006-01-08 13:34:25 -08001547 * After a successful return, the caller is responsible for calling
1548 * spi_unregister_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001549 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001550int spi_register_master(struct spi_master *master)
David Brownell8ae12a02006-01-08 13:34:19 -08001551{
David Brownelle44a45a2007-06-03 13:50:40 -07001552 static atomic_t dyn_bus_id = ATOMIC_INIT((1<<15) - 1);
Tony Jones49dce682007-10-16 01:27:48 -07001553 struct device *dev = master->dev.parent;
Feng Tang2b9603a2010-08-02 15:52:15 +08001554 struct boardinfo *bi;
David Brownell8ae12a02006-01-08 13:34:19 -08001555 int status = -ENODEV;
1556 int dynamic = 0;
1557
David Brownell0c868462006-01-08 13:34:25 -08001558 if (!dev)
1559 return -ENODEV;
1560
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001561 status = of_spi_register_master(master);
1562 if (status)
1563 return status;
1564
David Brownell082c8cb2007-07-31 00:39:45 -07001565 /* even if it's just one always-selected device, there must
1566 * be at least one chipselect
1567 */
1568 if (master->num_chipselect == 0)
1569 return -EINVAL;
1570
Grant Likelybb297852012-12-21 19:32:09 +00001571 if ((master->bus_num < 0) && master->dev.of_node)
1572 master->bus_num = of_alias_get_id(master->dev.of_node, "spi");
1573
David Brownell8ae12a02006-01-08 13:34:19 -08001574 /* convention: dynamically assigned bus IDs count down from the max */
David Brownella020ed72006-04-03 15:49:04 -07001575 if (master->bus_num < 0) {
David Brownell082c8cb2007-07-31 00:39:45 -07001576 /* FIXME switch to an IDR based scheme, something like
1577 * I2C now uses, so we can't run out of "dynamic" IDs
1578 */
David Brownell8ae12a02006-01-08 13:34:19 -08001579 master->bus_num = atomic_dec_return(&dyn_bus_id);
David Brownellb8852442006-01-08 13:34:23 -08001580 dynamic = 1;
David Brownell8ae12a02006-01-08 13:34:19 -08001581 }
1582
Ernst Schwabcf32b712010-06-28 17:49:29 -07001583 spin_lock_init(&master->bus_lock_spinlock);
1584 mutex_init(&master->bus_lock_mutex);
1585 master->bus_lock_flag = 0;
Mark Brownb1589352013-10-05 11:50:40 +01001586 init_completion(&master->xfer_completion);
Mark Brown6ad45a22014-02-02 13:47:47 +00001587 if (!master->max_dma_len)
1588 master->max_dma_len = INT_MAX;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001589
David Brownell8ae12a02006-01-08 13:34:19 -08001590 /* register the device, then userspace will see it.
1591 * registration fails if the bus ID is in use.
1592 */
Kay Sievers35f74fc2009-01-06 10:44:37 -08001593 dev_set_name(&master->dev, "spi%u", master->bus_num);
Tony Jones49dce682007-10-16 01:27:48 -07001594 status = device_add(&master->dev);
David Brownellb8852442006-01-08 13:34:23 -08001595 if (status < 0)
David Brownell8ae12a02006-01-08 13:34:19 -08001596 goto done;
Kay Sievers35f74fc2009-01-06 10:44:37 -08001597 dev_dbg(dev, "registered master %s%s\n", dev_name(&master->dev),
David Brownell8ae12a02006-01-08 13:34:19 -08001598 dynamic ? " (dynamic)" : "");
1599
Linus Walleijffbbdd212012-02-22 10:05:38 +01001600 /* If we're using a queued driver, start the queue */
1601 if (master->transfer)
1602 dev_info(dev, "master is unqueued, this is deprecated\n");
1603 else {
1604 status = spi_master_initialize_queue(master);
1605 if (status) {
Axel Line93b0722013-08-31 20:25:52 +08001606 device_del(&master->dev);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001607 goto done;
1608 }
1609 }
1610
Feng Tang2b9603a2010-08-02 15:52:15 +08001611 mutex_lock(&board_lock);
1612 list_add_tail(&master->list, &spi_master_list);
1613 list_for_each_entry(bi, &board_list, list)
1614 spi_match_master_to_boardinfo(master, &bi->board_info);
1615 mutex_unlock(&board_lock);
1616
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001617 /* Register devices from the device tree and ACPI */
Anatolij Gustschin12b15e82010-07-27 22:35:58 +02001618 of_register_spi_devices(master);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001619 acpi_register_spi_devices(master);
David Brownell8ae12a02006-01-08 13:34:19 -08001620done:
1621 return status;
1622}
1623EXPORT_SYMBOL_GPL(spi_register_master);
1624
Mark Brown666d5b42013-08-31 18:50:52 +01001625static void devm_spi_unregister(struct device *dev, void *res)
1626{
1627 spi_unregister_master(*(struct spi_master **)res);
1628}
1629
1630/**
1631 * dev_spi_register_master - register managed SPI master controller
1632 * @dev: device managing SPI master
1633 * @master: initialized master, originally from spi_alloc_master()
1634 * Context: can sleep
1635 *
1636 * Register a SPI device as with spi_register_master() which will
1637 * automatically be unregister
1638 */
1639int devm_spi_register_master(struct device *dev, struct spi_master *master)
1640{
1641 struct spi_master **ptr;
1642 int ret;
1643
1644 ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL);
1645 if (!ptr)
1646 return -ENOMEM;
1647
1648 ret = spi_register_master(master);
Stephen Warren4b928942013-11-21 16:11:15 -07001649 if (!ret) {
Mark Brown666d5b42013-08-31 18:50:52 +01001650 *ptr = master;
1651 devres_add(dev, ptr);
1652 } else {
1653 devres_free(ptr);
1654 }
1655
1656 return ret;
1657}
1658EXPORT_SYMBOL_GPL(devm_spi_register_master);
1659
David Lamparter34860082010-08-30 23:54:17 +02001660static int __unregister(struct device *dev, void *null)
David Brownell8ae12a02006-01-08 13:34:19 -08001661{
David Lamparter34860082010-08-30 23:54:17 +02001662 spi_unregister_device(to_spi_device(dev));
David Brownell8ae12a02006-01-08 13:34:19 -08001663 return 0;
1664}
1665
1666/**
1667 * spi_unregister_master - unregister SPI master controller
1668 * @master: the master being unregistered
David Brownell33e34dc2007-05-08 00:32:21 -07001669 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001670 *
1671 * This call is used only by SPI master controller drivers, which are the
1672 * only ones directly touching chip registers.
1673 *
1674 * This must be called from context that can sleep.
1675 */
1676void spi_unregister_master(struct spi_master *master)
1677{
Jeff Garzik89fc9a12006-12-06 20:35:35 -08001678 int dummy;
1679
Linus Walleijffbbdd212012-02-22 10:05:38 +01001680 if (master->queued) {
1681 if (spi_destroy_queue(master))
1682 dev_err(&master->dev, "queue remove failed\n");
1683 }
1684
Feng Tang2b9603a2010-08-02 15:52:15 +08001685 mutex_lock(&board_lock);
1686 list_del(&master->list);
1687 mutex_unlock(&board_lock);
1688
Sebastian Andrzej Siewior97dbf372010-12-21 17:24:31 -08001689 dummy = device_for_each_child(&master->dev, NULL, __unregister);
Tony Jones49dce682007-10-16 01:27:48 -07001690 device_unregister(&master->dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001691}
1692EXPORT_SYMBOL_GPL(spi_unregister_master);
1693
Linus Walleijffbbdd212012-02-22 10:05:38 +01001694int spi_master_suspend(struct spi_master *master)
1695{
1696 int ret;
1697
1698 /* Basically no-ops for non-queued masters */
1699 if (!master->queued)
1700 return 0;
1701
1702 ret = spi_stop_queue(master);
1703 if (ret)
1704 dev_err(&master->dev, "queue stop failed\n");
1705
1706 return ret;
1707}
1708EXPORT_SYMBOL_GPL(spi_master_suspend);
1709
1710int spi_master_resume(struct spi_master *master)
1711{
1712 int ret;
1713
1714 if (!master->queued)
1715 return 0;
1716
1717 ret = spi_start_queue(master);
1718 if (ret)
1719 dev_err(&master->dev, "queue restart failed\n");
1720
1721 return ret;
1722}
1723EXPORT_SYMBOL_GPL(spi_master_resume);
1724
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001725static int __spi_master_match(struct device *dev, const void *data)
Dave Young5ed2c832008-01-22 15:14:18 +08001726{
1727 struct spi_master *m;
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001728 const u16 *bus_num = data;
Dave Young5ed2c832008-01-22 15:14:18 +08001729
1730 m = container_of(dev, struct spi_master, dev);
1731 return m->bus_num == *bus_num;
1732}
1733
David Brownell8ae12a02006-01-08 13:34:19 -08001734/**
1735 * spi_busnum_to_master - look up master associated with bus_num
1736 * @bus_num: the master's bus number
David Brownell33e34dc2007-05-08 00:32:21 -07001737 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001738 *
1739 * This call may be used with devices that are registered after
1740 * arch init time. It returns a refcounted pointer to the relevant
1741 * spi_master (which the caller must release), or NULL if there is
1742 * no such master registered.
1743 */
1744struct spi_master *spi_busnum_to_master(u16 bus_num)
1745{
Tony Jones49dce682007-10-16 01:27:48 -07001746 struct device *dev;
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001747 struct spi_master *master = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -08001748
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001749 dev = class_find_device(&spi_master_class, NULL, &bus_num,
Dave Young5ed2c832008-01-22 15:14:18 +08001750 __spi_master_match);
1751 if (dev)
1752 master = container_of(dev, struct spi_master, dev);
1753 /* reference got in class_find_device */
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001754 return master;
David Brownell8ae12a02006-01-08 13:34:19 -08001755}
1756EXPORT_SYMBOL_GPL(spi_busnum_to_master);
1757
1758
1759/*-------------------------------------------------------------------------*/
1760
David Brownell7d077192009-06-17 16:26:03 -07001761/* Core methods for SPI master protocol drivers. Some of the
1762 * other core methods are currently defined as inline functions.
1763 */
1764
1765/**
1766 * spi_setup - setup SPI mode and clock rate
1767 * @spi: the device whose settings are being modified
1768 * Context: can sleep, and no requests are queued to the device
1769 *
1770 * SPI protocol drivers may need to update the transfer mode if the
1771 * device doesn't work with its default. They may likewise need
1772 * to update clock rates or word sizes from initial values. This function
1773 * changes those settings, and must be called from a context that can sleep.
1774 * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
1775 * effect the next time the device is selected and data is transferred to
1776 * or from it. When this function returns, the spi device is deselected.
1777 *
1778 * Note that this call will fail if the protocol driver specifies an option
1779 * that the underlying controller or its driver does not support. For
1780 * example, not all hardware supports wire transfers using nine bit words,
1781 * LSB-first wire encoding, or active-high chipselects.
1782 */
1783int spi_setup(struct spi_device *spi)
1784{
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02001785 unsigned bad_bits, ugly_bits;
Laxman Dewangancaae0702012-11-09 14:35:22 +05301786 int status = 0;
David Brownell7d077192009-06-17 16:26:03 -07001787
wangyuhangf477b7f2013-08-11 18:15:17 +08001788 /* check mode to prevent that DUAL and QUAD set at the same time
1789 */
1790 if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) ||
1791 ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) {
1792 dev_err(&spi->dev,
1793 "setup: can not select dual and quad at the same time\n");
1794 return -EINVAL;
1795 }
1796 /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
1797 */
1798 if ((spi->mode & SPI_3WIRE) && (spi->mode &
1799 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)))
1800 return -EINVAL;
David Brownelle7db06b2009-06-17 16:26:04 -07001801 /* help drivers fail *cleanly* when they need options
1802 * that aren't supported with their current master
1803 */
1804 bad_bits = spi->mode & ~spi->master->mode_bits;
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02001805 ugly_bits = bad_bits &
1806 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD);
1807 if (ugly_bits) {
1808 dev_warn(&spi->dev,
1809 "setup: ignoring unsupported mode bits %x\n",
1810 ugly_bits);
1811 spi->mode &= ~ugly_bits;
1812 bad_bits &= ~ugly_bits;
1813 }
David Brownelle7db06b2009-06-17 16:26:04 -07001814 if (bad_bits) {
Linus Walleijeb288a12010-10-21 21:06:44 +02001815 dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
David Brownelle7db06b2009-06-17 16:26:04 -07001816 bad_bits);
1817 return -EINVAL;
1818 }
1819
David Brownell7d077192009-06-17 16:26:03 -07001820 if (!spi->bits_per_word)
1821 spi->bits_per_word = 8;
1822
Axel Lin052eb2d42014-02-10 00:08:05 +08001823 if (!spi->max_speed_hz)
1824 spi->max_speed_hz = spi->master->max_speed_hz;
1825
Laxman Dewangancaae0702012-11-09 14:35:22 +05301826 if (spi->master->setup)
1827 status = spi->master->setup(spi);
David Brownell7d077192009-06-17 16:26:03 -07001828
Jingoo Han5fe5f052013-10-14 10:31:51 +09001829 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 -07001830 (int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
1831 (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
1832 (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
1833 (spi->mode & SPI_3WIRE) ? "3wire, " : "",
1834 (spi->mode & SPI_LOOP) ? "loopback, " : "",
1835 spi->bits_per_word, spi->max_speed_hz,
1836 status);
1837
1838 return status;
1839}
1840EXPORT_SYMBOL_GPL(spi_setup);
1841
Mark Brown90808732013-11-13 23:44:15 +00001842static int __spi_validate(struct spi_device *spi, struct spi_message *message)
Ernst Schwabcf32b712010-06-28 17:49:29 -07001843{
1844 struct spi_master *master = spi->master;
Laxman Dewangane6811d12012-11-09 14:36:45 +05301845 struct spi_transfer *xfer;
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09001846 int w_size;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001847
Mark Brown24a00132013-07-10 15:05:40 +01001848 if (list_empty(&message->transfers))
1849 return -EINVAL;
Mark Brown24a00132013-07-10 15:05:40 +01001850
Ernst Schwabcf32b712010-06-28 17:49:29 -07001851 /* Half-duplex links include original MicroWire, and ones with
1852 * only one data pin like SPI_3WIRE (switches direction) or where
1853 * either MOSI or MISO is missing. They can also be caused by
1854 * software limitations.
1855 */
1856 if ((master->flags & SPI_MASTER_HALF_DUPLEX)
1857 || (spi->mode & SPI_3WIRE)) {
Ernst Schwabcf32b712010-06-28 17:49:29 -07001858 unsigned flags = master->flags;
1859
1860 list_for_each_entry(xfer, &message->transfers, transfer_list) {
1861 if (xfer->rx_buf && xfer->tx_buf)
1862 return -EINVAL;
1863 if ((flags & SPI_MASTER_NO_TX) && xfer->tx_buf)
1864 return -EINVAL;
1865 if ((flags & SPI_MASTER_NO_RX) && xfer->rx_buf)
1866 return -EINVAL;
1867 }
1868 }
1869
Laxman Dewangane6811d12012-11-09 14:36:45 +05301870 /**
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05301871 * Set transfer bits_per_word and max speed as spi device default if
1872 * it is not set for this transfer.
wangyuhangf477b7f2013-08-11 18:15:17 +08001873 * Set transfer tx_nbits and rx_nbits as single transfer default
1874 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
Laxman Dewangane6811d12012-11-09 14:36:45 +05301875 */
1876 list_for_each_entry(xfer, &message->transfers, transfer_list) {
Sourav Poddar078726c2013-07-18 15:31:25 +05301877 message->frame_length += xfer->len;
Laxman Dewangane6811d12012-11-09 14:36:45 +05301878 if (!xfer->bits_per_word)
1879 xfer->bits_per_word = spi->bits_per_word;
Axel Lina6f87fa2014-03-17 10:08:12 +08001880
1881 if (!xfer->speed_hz)
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05301882 xfer->speed_hz = spi->max_speed_hz;
Axel Lina6f87fa2014-03-17 10:08:12 +08001883
1884 if (master->max_speed_hz &&
1885 xfer->speed_hz > master->max_speed_hz)
1886 xfer->speed_hz = master->max_speed_hz;
Gabor Juhos56ede942013-08-14 10:25:28 +02001887
Stephen Warren543bb252013-03-26 20:37:57 -06001888 if (master->bits_per_word_mask) {
1889 /* Only 32 bits fit in the mask */
1890 if (xfer->bits_per_word > 32)
1891 return -EINVAL;
1892 if (!(master->bits_per_word_mask &
1893 BIT(xfer->bits_per_word - 1)))
1894 return -EINVAL;
1895 }
Mark Browna2fd4f92013-07-10 14:57:26 +01001896
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001897 /*
1898 * SPI transfer length should be multiple of SPI word size
1899 * where SPI word size should be power-of-two multiple
1900 */
1901 if (xfer->bits_per_word <= 8)
1902 w_size = 1;
1903 else if (xfer->bits_per_word <= 16)
1904 w_size = 2;
1905 else
1906 w_size = 4;
1907
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001908 /* No partial transfers accepted */
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09001909 if (xfer->len % w_size)
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02001910 return -EINVAL;
1911
Mark Browna2fd4f92013-07-10 14:57:26 +01001912 if (xfer->speed_hz && master->min_speed_hz &&
1913 xfer->speed_hz < master->min_speed_hz)
1914 return -EINVAL;
wangyuhangf477b7f2013-08-11 18:15:17 +08001915
1916 if (xfer->tx_buf && !xfer->tx_nbits)
1917 xfer->tx_nbits = SPI_NBITS_SINGLE;
1918 if (xfer->rx_buf && !xfer->rx_nbits)
1919 xfer->rx_nbits = SPI_NBITS_SINGLE;
1920 /* check transfer tx/rx_nbits:
Geert Uytterhoeven1afd9982014-01-12 14:00:29 +01001921 * 1. check the value matches one of single, dual and quad
1922 * 2. check tx/rx_nbits match the mode in spi_device
wangyuhangf477b7f2013-08-11 18:15:17 +08001923 */
Sourav Poddardb90a442013-08-22 21:20:48 +05301924 if (xfer->tx_buf) {
1925 if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
1926 xfer->tx_nbits != SPI_NBITS_DUAL &&
1927 xfer->tx_nbits != SPI_NBITS_QUAD)
1928 return -EINVAL;
1929 if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
1930 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
1931 return -EINVAL;
1932 if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
1933 !(spi->mode & SPI_TX_QUAD))
1934 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05301935 }
wangyuhangf477b7f2013-08-11 18:15:17 +08001936 /* check transfer rx_nbits */
Sourav Poddardb90a442013-08-22 21:20:48 +05301937 if (xfer->rx_buf) {
1938 if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
1939 xfer->rx_nbits != SPI_NBITS_DUAL &&
1940 xfer->rx_nbits != SPI_NBITS_QUAD)
1941 return -EINVAL;
1942 if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
1943 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
1944 return -EINVAL;
1945 if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
1946 !(spi->mode & SPI_RX_QUAD))
1947 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05301948 }
Laxman Dewangane6811d12012-11-09 14:36:45 +05301949 }
1950
Ernst Schwabcf32b712010-06-28 17:49:29 -07001951 message->status = -EINPROGRESS;
Mark Brown90808732013-11-13 23:44:15 +00001952
1953 return 0;
1954}
1955
1956static int __spi_async(struct spi_device *spi, struct spi_message *message)
1957{
1958 struct spi_master *master = spi->master;
1959
1960 message->spi = spi;
1961
1962 trace_spi_message_submit(message);
1963
Ernst Schwabcf32b712010-06-28 17:49:29 -07001964 return master->transfer(spi, message);
1965}
1966
David Brownell568d0692009-09-22 16:46:18 -07001967/**
1968 * spi_async - asynchronous SPI transfer
1969 * @spi: device with which data will be exchanged
1970 * @message: describes the data transfers, including completion callback
1971 * Context: any (irqs may be blocked, etc)
1972 *
1973 * This call may be used in_irq and other contexts which can't sleep,
1974 * as well as from task contexts which can sleep.
1975 *
1976 * The completion callback is invoked in a context which can't sleep.
1977 * Before that invocation, the value of message->status is undefined.
1978 * When the callback is issued, message->status holds either zero (to
1979 * indicate complete success) or a negative error code. After that
1980 * callback returns, the driver which issued the transfer request may
1981 * deallocate the associated memory; it's no longer in use by any SPI
1982 * core or controller driver code.
1983 *
1984 * Note that although all messages to a spi_device are handled in
1985 * FIFO order, messages may go to different devices in other orders.
1986 * Some device might be higher priority, or have various "hard" access
1987 * time requirements, for example.
1988 *
1989 * On detection of any fault during the transfer, processing of
1990 * the entire message is aborted, and the device is deselected.
1991 * Until returning from the associated message completion callback,
1992 * no other spi_message queued to that device will be processed.
1993 * (This rule applies equally to all the synchronous transfer calls,
1994 * which are wrappers around this core asynchronous primitive.)
1995 */
1996int spi_async(struct spi_device *spi, struct spi_message *message)
1997{
1998 struct spi_master *master = spi->master;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001999 int ret;
2000 unsigned long flags;
David Brownell568d0692009-09-22 16:46:18 -07002001
Mark Brown90808732013-11-13 23:44:15 +00002002 ret = __spi_validate(spi, message);
2003 if (ret != 0)
2004 return ret;
2005
Ernst Schwabcf32b712010-06-28 17:49:29 -07002006 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
David Brownell568d0692009-09-22 16:46:18 -07002007
Ernst Schwabcf32b712010-06-28 17:49:29 -07002008 if (master->bus_lock_flag)
2009 ret = -EBUSY;
2010 else
2011 ret = __spi_async(spi, message);
David Brownell568d0692009-09-22 16:46:18 -07002012
Ernst Schwabcf32b712010-06-28 17:49:29 -07002013 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2014
2015 return ret;
David Brownell568d0692009-09-22 16:46:18 -07002016}
2017EXPORT_SYMBOL_GPL(spi_async);
2018
Ernst Schwabcf32b712010-06-28 17:49:29 -07002019/**
2020 * spi_async_locked - version of spi_async with exclusive bus usage
2021 * @spi: device with which data will be exchanged
2022 * @message: describes the data transfers, including completion callback
2023 * Context: any (irqs may be blocked, etc)
2024 *
2025 * This call may be used in_irq and other contexts which can't sleep,
2026 * as well as from task contexts which can sleep.
2027 *
2028 * The completion callback is invoked in a context which can't sleep.
2029 * Before that invocation, the value of message->status is undefined.
2030 * When the callback is issued, message->status holds either zero (to
2031 * indicate complete success) or a negative error code. After that
2032 * callback returns, the driver which issued the transfer request may
2033 * deallocate the associated memory; it's no longer in use by any SPI
2034 * core or controller driver code.
2035 *
2036 * Note that although all messages to a spi_device are handled in
2037 * FIFO order, messages may go to different devices in other orders.
2038 * Some device might be higher priority, or have various "hard" access
2039 * time requirements, for example.
2040 *
2041 * On detection of any fault during the transfer, processing of
2042 * the entire message is aborted, and the device is deselected.
2043 * Until returning from the associated message completion callback,
2044 * no other spi_message queued to that device will be processed.
2045 * (This rule applies equally to all the synchronous transfer calls,
2046 * which are wrappers around this core asynchronous primitive.)
2047 */
2048int spi_async_locked(struct spi_device *spi, struct spi_message *message)
2049{
2050 struct spi_master *master = spi->master;
2051 int ret;
2052 unsigned long flags;
2053
Mark Brown90808732013-11-13 23:44:15 +00002054 ret = __spi_validate(spi, message);
2055 if (ret != 0)
2056 return ret;
2057
Ernst Schwabcf32b712010-06-28 17:49:29 -07002058 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2059
2060 ret = __spi_async(spi, message);
2061
2062 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2063
2064 return ret;
2065
2066}
2067EXPORT_SYMBOL_GPL(spi_async_locked);
2068
David Brownell7d077192009-06-17 16:26:03 -07002069
2070/*-------------------------------------------------------------------------*/
2071
2072/* Utility methods for SPI master protocol drivers, layered on
2073 * top of the core. Some other utility methods are defined as
2074 * inline functions.
2075 */
2076
Andrew Morton5d870c82006-01-11 11:23:49 -08002077static void spi_complete(void *arg)
2078{
2079 complete(arg);
2080}
2081
Ernst Schwabcf32b712010-06-28 17:49:29 -07002082static int __spi_sync(struct spi_device *spi, struct spi_message *message,
2083 int bus_locked)
2084{
2085 DECLARE_COMPLETION_ONSTACK(done);
2086 int status;
2087 struct spi_master *master = spi->master;
2088
2089 message->complete = spi_complete;
2090 message->context = &done;
2091
2092 if (!bus_locked)
2093 mutex_lock(&master->bus_lock_mutex);
2094
2095 status = spi_async_locked(spi, message);
2096
2097 if (!bus_locked)
2098 mutex_unlock(&master->bus_lock_mutex);
2099
2100 if (status == 0) {
2101 wait_for_completion(&done);
2102 status = message->status;
2103 }
2104 message->context = NULL;
2105 return status;
2106}
2107
David Brownell8ae12a02006-01-08 13:34:19 -08002108/**
2109 * spi_sync - blocking/synchronous SPI data transfers
2110 * @spi: device with which data will be exchanged
2111 * @message: describes the data transfers
David Brownell33e34dc2007-05-08 00:32:21 -07002112 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002113 *
2114 * This call may only be used from a context that may sleep. The sleep
2115 * is non-interruptible, and has no timeout. Low-overhead controller
2116 * drivers may DMA directly into and out of the message buffers.
2117 *
2118 * Note that the SPI device's chip select is active during the message,
2119 * and then is normally disabled between messages. Drivers for some
2120 * frequently-used devices may want to minimize costs of selecting a chip,
2121 * by leaving it selected in anticipation that the next message will go
2122 * to the same chip. (That may increase power usage.)
2123 *
David Brownell0c868462006-01-08 13:34:25 -08002124 * Also, the caller is guaranteeing that the memory associated with the
2125 * message will not be freed before this call returns.
2126 *
Marc Pignat9b938b72007-12-04 23:45:10 -08002127 * It returns zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002128 */
2129int spi_sync(struct spi_device *spi, struct spi_message *message)
2130{
Ernst Schwabcf32b712010-06-28 17:49:29 -07002131 return __spi_sync(spi, message, 0);
David Brownell8ae12a02006-01-08 13:34:19 -08002132}
2133EXPORT_SYMBOL_GPL(spi_sync);
2134
Ernst Schwabcf32b712010-06-28 17:49:29 -07002135/**
2136 * spi_sync_locked - version of spi_sync with exclusive bus usage
2137 * @spi: device with which data will be exchanged
2138 * @message: describes the data transfers
2139 * Context: can sleep
2140 *
2141 * This call may only be used from a context that may sleep. The sleep
2142 * is non-interruptible, and has no timeout. Low-overhead controller
2143 * drivers may DMA directly into and out of the message buffers.
2144 *
2145 * This call should be used by drivers that require exclusive access to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002146 * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
Ernst Schwabcf32b712010-06-28 17:49:29 -07002147 * be released by a spi_bus_unlock call when the exclusive access is over.
2148 *
2149 * It returns zero on success, else a negative error code.
2150 */
2151int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
2152{
2153 return __spi_sync(spi, message, 1);
2154}
2155EXPORT_SYMBOL_GPL(spi_sync_locked);
2156
2157/**
2158 * spi_bus_lock - obtain a lock for exclusive SPI bus usage
2159 * @master: SPI bus master that should be locked for exclusive bus access
2160 * Context: can sleep
2161 *
2162 * This call may only be used from a context that may sleep. The sleep
2163 * is non-interruptible, and has no timeout.
2164 *
2165 * This call should be used by drivers that require exclusive access to the
2166 * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
2167 * exclusive access is over. Data transfer must be done by spi_sync_locked
2168 * and spi_async_locked calls when the SPI bus lock is held.
2169 *
2170 * It returns zero on success, else a negative error code.
2171 */
2172int spi_bus_lock(struct spi_master *master)
2173{
2174 unsigned long flags;
2175
2176 mutex_lock(&master->bus_lock_mutex);
2177
2178 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2179 master->bus_lock_flag = 1;
2180 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2181
2182 /* mutex remains locked until spi_bus_unlock is called */
2183
2184 return 0;
2185}
2186EXPORT_SYMBOL_GPL(spi_bus_lock);
2187
2188/**
2189 * spi_bus_unlock - release the lock for exclusive SPI bus usage
2190 * @master: SPI bus master that was locked for exclusive bus access
2191 * Context: can sleep
2192 *
2193 * This call may only be used from a context that may sleep. The sleep
2194 * is non-interruptible, and has no timeout.
2195 *
2196 * This call releases an SPI bus lock previously obtained by an spi_bus_lock
2197 * call.
2198 *
2199 * It returns zero on success, else a negative error code.
2200 */
2201int spi_bus_unlock(struct spi_master *master)
2202{
2203 master->bus_lock_flag = 0;
2204
2205 mutex_unlock(&master->bus_lock_mutex);
2206
2207 return 0;
2208}
2209EXPORT_SYMBOL_GPL(spi_bus_unlock);
2210
David Brownella9948b62006-04-02 10:37:40 -08002211/* portable code must never pass more than 32 bytes */
Jingoo Han5fe5f052013-10-14 10:31:51 +09002212#define SPI_BUFSIZ max(32, SMP_CACHE_BYTES)
David Brownell8ae12a02006-01-08 13:34:19 -08002213
2214static u8 *buf;
2215
2216/**
2217 * spi_write_then_read - SPI synchronous write followed by read
2218 * @spi: device with which data will be exchanged
2219 * @txbuf: data to be written (need not be dma-safe)
2220 * @n_tx: size of txbuf, in bytes
Jiri Pirko27570492009-06-17 16:26:06 -07002221 * @rxbuf: buffer into which data will be read (need not be dma-safe)
2222 * @n_rx: size of rxbuf, in bytes
David Brownell33e34dc2007-05-08 00:32:21 -07002223 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002224 *
2225 * This performs a half duplex MicroWire style transaction with the
2226 * device, sending txbuf and then reading rxbuf. The return value
2227 * is zero for success, else a negative errno status code.
David Brownellb8852442006-01-08 13:34:23 -08002228 * This call may only be used from a context that may sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08002229 *
David Brownell0c868462006-01-08 13:34:25 -08002230 * Parameters to this routine are always copied using a small buffer;
David Brownell33e34dc2007-05-08 00:32:21 -07002231 * portable code should never use this for more than 32 bytes.
2232 * Performance-sensitive or bulk transfer code should instead use
David Brownell0c868462006-01-08 13:34:25 -08002233 * spi_{async,sync}() calls with dma-safe buffers.
David Brownell8ae12a02006-01-08 13:34:19 -08002234 */
2235int spi_write_then_read(struct spi_device *spi,
Mark Brown0c4a1592011-05-11 00:09:30 +02002236 const void *txbuf, unsigned n_tx,
2237 void *rxbuf, unsigned n_rx)
David Brownell8ae12a02006-01-08 13:34:19 -08002238{
David Brownell068f4072007-12-04 23:45:09 -08002239 static DEFINE_MUTEX(lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002240
2241 int status;
2242 struct spi_message message;
David Brownellbdff5492009-04-13 14:39:57 -07002243 struct spi_transfer x[2];
David Brownell8ae12a02006-01-08 13:34:19 -08002244 u8 *local_buf;
2245
Mark Brownb3a223e2012-12-02 12:54:25 +09002246 /* Use preallocated DMA-safe buffer if we can. We can't avoid
2247 * copying here, (as a pure convenience thing), but we can
2248 * keep heap costs out of the hot path unless someone else is
2249 * using the pre-allocated buffer or the transfer is too large.
David Brownell8ae12a02006-01-08 13:34:19 -08002250 */
Mark Brownb3a223e2012-12-02 12:54:25 +09002251 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
Mark Brown2cd94c82013-01-27 14:35:04 +08002252 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
2253 GFP_KERNEL | GFP_DMA);
Mark Brownb3a223e2012-12-02 12:54:25 +09002254 if (!local_buf)
2255 return -ENOMEM;
2256 } else {
2257 local_buf = buf;
2258 }
David Brownell8ae12a02006-01-08 13:34:19 -08002259
Vitaly Wool8275c642006-01-08 13:34:28 -08002260 spi_message_init(&message);
Jingoo Han5fe5f052013-10-14 10:31:51 +09002261 memset(x, 0, sizeof(x));
David Brownellbdff5492009-04-13 14:39:57 -07002262 if (n_tx) {
2263 x[0].len = n_tx;
2264 spi_message_add_tail(&x[0], &message);
2265 }
2266 if (n_rx) {
2267 x[1].len = n_rx;
2268 spi_message_add_tail(&x[1], &message);
2269 }
Vitaly Wool8275c642006-01-08 13:34:28 -08002270
David Brownell8ae12a02006-01-08 13:34:19 -08002271 memcpy(local_buf, txbuf, n_tx);
David Brownellbdff5492009-04-13 14:39:57 -07002272 x[0].tx_buf = local_buf;
2273 x[1].rx_buf = local_buf + n_tx;
David Brownell8ae12a02006-01-08 13:34:19 -08002274
2275 /* do the i/o */
David Brownell8ae12a02006-01-08 13:34:19 -08002276 status = spi_sync(spi, &message);
Marc Pignat9b938b72007-12-04 23:45:10 -08002277 if (status == 0)
David Brownellbdff5492009-04-13 14:39:57 -07002278 memcpy(rxbuf, x[1].rx_buf, n_rx);
David Brownell8ae12a02006-01-08 13:34:19 -08002279
David Brownellbdff5492009-04-13 14:39:57 -07002280 if (x[0].tx_buf == buf)
David Brownell068f4072007-12-04 23:45:09 -08002281 mutex_unlock(&lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002282 else
2283 kfree(local_buf);
2284
2285 return status;
2286}
2287EXPORT_SYMBOL_GPL(spi_write_then_read);
2288
2289/*-------------------------------------------------------------------------*/
2290
2291static int __init spi_init(void)
2292{
David Brownellb8852442006-01-08 13:34:23 -08002293 int status;
David Brownell8ae12a02006-01-08 13:34:19 -08002294
Christoph Lametere94b1762006-12-06 20:33:17 -08002295 buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
David Brownellb8852442006-01-08 13:34:23 -08002296 if (!buf) {
2297 status = -ENOMEM;
2298 goto err0;
2299 }
2300
2301 status = bus_register(&spi_bus_type);
2302 if (status < 0)
2303 goto err1;
2304
2305 status = class_register(&spi_master_class);
2306 if (status < 0)
2307 goto err2;
David Brownell8ae12a02006-01-08 13:34:19 -08002308 return 0;
David Brownellb8852442006-01-08 13:34:23 -08002309
2310err2:
2311 bus_unregister(&spi_bus_type);
2312err1:
2313 kfree(buf);
2314 buf = NULL;
2315err0:
2316 return status;
David Brownell8ae12a02006-01-08 13:34:19 -08002317}
David Brownellb8852442006-01-08 13:34:23 -08002318
David Brownell8ae12a02006-01-08 13:34:19 -08002319/* board_info is normally registered in arch_initcall(),
2320 * but even essential drivers wait till later
David Brownellb8852442006-01-08 13:34:23 -08002321 *
2322 * REVISIT only boardinfo really needs static linking. the rest (device and
2323 * driver registration) _could_ be dynamically linked (modular) ... costs
2324 * include needing to have boardinfo data structures be much more public.
David Brownell8ae12a02006-01-08 13:34:19 -08002325 */
David Brownell673c0c02008-10-15 22:02:46 -07002326postcore_initcall(spi_init);
David Brownell8ae12a02006-01-08 13:34:19 -08002327