blob: 70828521e6bb66c17758437fd98f13660ca0ab74 [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.
David Brownell8ae12a02006-01-08 13:34:19 -080016 */
17
David Brownell8ae12a02006-01-08 13:34:19 -080018#include <linux/kernel.h>
19#include <linux/device.h>
20#include <linux/init.h>
21#include <linux/cache.h>
Mark Brown99adef32014-01-16 12:22:43 +000022#include <linux/dma-mapping.h>
23#include <linux/dmaengine.h>
Matthias Kaehlcke94040822007-07-17 04:04:16 -070024#include <linux/mutex.h>
Sinan Akman2b7a32f2010-10-02 21:28:29 -060025#include <linux/of_device.h>
Grant Likelyd57a4282012-04-07 14:16:53 -060026#include <linux/of_irq.h>
Sylwester Nawrocki86be4082014-06-18 17:29:32 +020027#include <linux/clk/clk-conf.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Anton Vorontsove0626e32009-09-22 16:46:08 -070029#include <linux/mod_devicetable.h>
David Brownell8ae12a02006-01-08 13:34:19 -080030#include <linux/spi/spi.h>
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +010031#include <linux/of_gpio.h>
Mark Brown3ae22e82010-12-25 15:32:27 +010032#include <linux/pm_runtime.h>
Ulf Hanssonf48c7672014-09-29 13:58:47 +020033#include <linux/pm_domain.h>
Paul Gortmaker025ed132011-07-10 12:57:55 -040034#include <linux/export.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060035#include <linux/sched/rt.h>
Linus Walleijffbbdd212012-02-22 10:05:38 +010036#include <linux/delay.h>
37#include <linux/kthread.h>
Mika Westerberg64bee4d2012-11-30 12:37:53 +010038#include <linux/ioport.h>
39#include <linux/acpi.h>
David Brownell8ae12a02006-01-08 13:34:19 -080040
Mark Brown56ec1972013-10-07 19:33:53 +010041#define CREATE_TRACE_POINTS
42#include <trace/events/spi.h>
43
David Brownell8ae12a02006-01-08 13:34:19 -080044static void spidev_release(struct device *dev)
45{
Hans-Peter Nilsson0ffa0282007-02-12 00:52:45 -080046 struct spi_device *spi = to_spi_device(dev);
David Brownell8ae12a02006-01-08 13:34:19 -080047
48 /* spi masters may cleanup for released devices */
49 if (spi->master->cleanup)
50 spi->master->cleanup(spi);
51
David Brownell0c868462006-01-08 13:34:25 -080052 spi_master_put(spi->master);
Roman Tereshonkov07a389f2010-04-12 09:56:35 +000053 kfree(spi);
David Brownell8ae12a02006-01-08 13:34:19 -080054}
55
56static ssize_t
57modalias_show(struct device *dev, struct device_attribute *a, char *buf)
58{
59 const struct spi_device *spi = to_spi_device(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +080060 int len;
61
62 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
63 if (len != -ENODEV)
64 return len;
David Brownell8ae12a02006-01-08 13:34:19 -080065
Grant Likelyd8e328b2012-05-20 00:08:13 -060066 return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias);
David Brownell8ae12a02006-01-08 13:34:19 -080067}
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -070068static DEVICE_ATTR_RO(modalias);
David Brownell8ae12a02006-01-08 13:34:19 -080069
Martin Sperleca2ebc2015-06-22 13:00:36 +000070#define SPI_STATISTICS_ATTRS(field, file) \
71static ssize_t spi_master_##field##_show(struct device *dev, \
72 struct device_attribute *attr, \
73 char *buf) \
74{ \
75 struct spi_master *master = container_of(dev, \
76 struct spi_master, dev); \
77 return spi_statistics_##field##_show(&master->statistics, buf); \
78} \
79static struct device_attribute dev_attr_spi_master_##field = { \
80 .attr = { .name = file, .mode = S_IRUGO }, \
81 .show = spi_master_##field##_show, \
82}; \
83static ssize_t spi_device_##field##_show(struct device *dev, \
84 struct device_attribute *attr, \
85 char *buf) \
86{ \
Geliang Tangd1eba932015-12-23 00:18:41 +080087 struct spi_device *spi = to_spi_device(dev); \
Martin Sperleca2ebc2015-06-22 13:00:36 +000088 return spi_statistics_##field##_show(&spi->statistics, buf); \
89} \
90static struct device_attribute dev_attr_spi_device_##field = { \
91 .attr = { .name = file, .mode = S_IRUGO }, \
92 .show = spi_device_##field##_show, \
93}
94
95#define SPI_STATISTICS_SHOW_NAME(name, file, field, format_string) \
96static ssize_t spi_statistics_##name##_show(struct spi_statistics *stat, \
97 char *buf) \
98{ \
99 unsigned long flags; \
100 ssize_t len; \
101 spin_lock_irqsave(&stat->lock, flags); \
102 len = sprintf(buf, format_string, stat->field); \
103 spin_unlock_irqrestore(&stat->lock, flags); \
104 return len; \
105} \
106SPI_STATISTICS_ATTRS(name, file)
107
108#define SPI_STATISTICS_SHOW(field, format_string) \
109 SPI_STATISTICS_SHOW_NAME(field, __stringify(field), \
110 field, format_string)
111
112SPI_STATISTICS_SHOW(messages, "%lu");
113SPI_STATISTICS_SHOW(transfers, "%lu");
114SPI_STATISTICS_SHOW(errors, "%lu");
115SPI_STATISTICS_SHOW(timedout, "%lu");
116
117SPI_STATISTICS_SHOW(spi_sync, "%lu");
118SPI_STATISTICS_SHOW(spi_sync_immediate, "%lu");
119SPI_STATISTICS_SHOW(spi_async, "%lu");
120
121SPI_STATISTICS_SHOW(bytes, "%llu");
122SPI_STATISTICS_SHOW(bytes_rx, "%llu");
123SPI_STATISTICS_SHOW(bytes_tx, "%llu");
124
Martin Sperl6b7bc062015-06-22 13:02:04 +0000125#define SPI_STATISTICS_TRANSFER_BYTES_HISTO(index, number) \
126 SPI_STATISTICS_SHOW_NAME(transfer_bytes_histo##index, \
127 "transfer_bytes_histo_" number, \
128 transfer_bytes_histo[index], "%lu")
129SPI_STATISTICS_TRANSFER_BYTES_HISTO(0, "0-1");
130SPI_STATISTICS_TRANSFER_BYTES_HISTO(1, "2-3");
131SPI_STATISTICS_TRANSFER_BYTES_HISTO(2, "4-7");
132SPI_STATISTICS_TRANSFER_BYTES_HISTO(3, "8-15");
133SPI_STATISTICS_TRANSFER_BYTES_HISTO(4, "16-31");
134SPI_STATISTICS_TRANSFER_BYTES_HISTO(5, "32-63");
135SPI_STATISTICS_TRANSFER_BYTES_HISTO(6, "64-127");
136SPI_STATISTICS_TRANSFER_BYTES_HISTO(7, "128-255");
137SPI_STATISTICS_TRANSFER_BYTES_HISTO(8, "256-511");
138SPI_STATISTICS_TRANSFER_BYTES_HISTO(9, "512-1023");
139SPI_STATISTICS_TRANSFER_BYTES_HISTO(10, "1024-2047");
140SPI_STATISTICS_TRANSFER_BYTES_HISTO(11, "2048-4095");
141SPI_STATISTICS_TRANSFER_BYTES_HISTO(12, "4096-8191");
142SPI_STATISTICS_TRANSFER_BYTES_HISTO(13, "8192-16383");
143SPI_STATISTICS_TRANSFER_BYTES_HISTO(14, "16384-32767");
144SPI_STATISTICS_TRANSFER_BYTES_HISTO(15, "32768-65535");
145SPI_STATISTICS_TRANSFER_BYTES_HISTO(16, "65536+");
146
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -0700147static struct attribute *spi_dev_attrs[] = {
148 &dev_attr_modalias.attr,
149 NULL,
David Brownell8ae12a02006-01-08 13:34:19 -0800150};
Martin Sperleca2ebc2015-06-22 13:00:36 +0000151
152static const struct attribute_group spi_dev_group = {
153 .attrs = spi_dev_attrs,
154};
155
156static struct attribute *spi_device_statistics_attrs[] = {
157 &dev_attr_spi_device_messages.attr,
158 &dev_attr_spi_device_transfers.attr,
159 &dev_attr_spi_device_errors.attr,
160 &dev_attr_spi_device_timedout.attr,
161 &dev_attr_spi_device_spi_sync.attr,
162 &dev_attr_spi_device_spi_sync_immediate.attr,
163 &dev_attr_spi_device_spi_async.attr,
164 &dev_attr_spi_device_bytes.attr,
165 &dev_attr_spi_device_bytes_rx.attr,
166 &dev_attr_spi_device_bytes_tx.attr,
Martin Sperl6b7bc062015-06-22 13:02:04 +0000167 &dev_attr_spi_device_transfer_bytes_histo0.attr,
168 &dev_attr_spi_device_transfer_bytes_histo1.attr,
169 &dev_attr_spi_device_transfer_bytes_histo2.attr,
170 &dev_attr_spi_device_transfer_bytes_histo3.attr,
171 &dev_attr_spi_device_transfer_bytes_histo4.attr,
172 &dev_attr_spi_device_transfer_bytes_histo5.attr,
173 &dev_attr_spi_device_transfer_bytes_histo6.attr,
174 &dev_attr_spi_device_transfer_bytes_histo7.attr,
175 &dev_attr_spi_device_transfer_bytes_histo8.attr,
176 &dev_attr_spi_device_transfer_bytes_histo9.attr,
177 &dev_attr_spi_device_transfer_bytes_histo10.attr,
178 &dev_attr_spi_device_transfer_bytes_histo11.attr,
179 &dev_attr_spi_device_transfer_bytes_histo12.attr,
180 &dev_attr_spi_device_transfer_bytes_histo13.attr,
181 &dev_attr_spi_device_transfer_bytes_histo14.attr,
182 &dev_attr_spi_device_transfer_bytes_histo15.attr,
183 &dev_attr_spi_device_transfer_bytes_histo16.attr,
Martin Sperleca2ebc2015-06-22 13:00:36 +0000184 NULL,
185};
186
187static const struct attribute_group spi_device_statistics_group = {
188 .name = "statistics",
189 .attrs = spi_device_statistics_attrs,
190};
191
192static const struct attribute_group *spi_dev_groups[] = {
193 &spi_dev_group,
194 &spi_device_statistics_group,
195 NULL,
196};
197
198static struct attribute *spi_master_statistics_attrs[] = {
199 &dev_attr_spi_master_messages.attr,
200 &dev_attr_spi_master_transfers.attr,
201 &dev_attr_spi_master_errors.attr,
202 &dev_attr_spi_master_timedout.attr,
203 &dev_attr_spi_master_spi_sync.attr,
204 &dev_attr_spi_master_spi_sync_immediate.attr,
205 &dev_attr_spi_master_spi_async.attr,
206 &dev_attr_spi_master_bytes.attr,
207 &dev_attr_spi_master_bytes_rx.attr,
208 &dev_attr_spi_master_bytes_tx.attr,
Martin Sperl6b7bc062015-06-22 13:02:04 +0000209 &dev_attr_spi_master_transfer_bytes_histo0.attr,
210 &dev_attr_spi_master_transfer_bytes_histo1.attr,
211 &dev_attr_spi_master_transfer_bytes_histo2.attr,
212 &dev_attr_spi_master_transfer_bytes_histo3.attr,
213 &dev_attr_spi_master_transfer_bytes_histo4.attr,
214 &dev_attr_spi_master_transfer_bytes_histo5.attr,
215 &dev_attr_spi_master_transfer_bytes_histo6.attr,
216 &dev_attr_spi_master_transfer_bytes_histo7.attr,
217 &dev_attr_spi_master_transfer_bytes_histo8.attr,
218 &dev_attr_spi_master_transfer_bytes_histo9.attr,
219 &dev_attr_spi_master_transfer_bytes_histo10.attr,
220 &dev_attr_spi_master_transfer_bytes_histo11.attr,
221 &dev_attr_spi_master_transfer_bytes_histo12.attr,
222 &dev_attr_spi_master_transfer_bytes_histo13.attr,
223 &dev_attr_spi_master_transfer_bytes_histo14.attr,
224 &dev_attr_spi_master_transfer_bytes_histo15.attr,
225 &dev_attr_spi_master_transfer_bytes_histo16.attr,
Martin Sperleca2ebc2015-06-22 13:00:36 +0000226 NULL,
227};
228
229static const struct attribute_group spi_master_statistics_group = {
230 .name = "statistics",
231 .attrs = spi_master_statistics_attrs,
232};
233
234static const struct attribute_group *spi_master_groups[] = {
235 &spi_master_statistics_group,
236 NULL,
237};
238
239void spi_statistics_add_transfer_stats(struct spi_statistics *stats,
240 struct spi_transfer *xfer,
241 struct spi_master *master)
242{
243 unsigned long flags;
Martin Sperl6b7bc062015-06-22 13:02:04 +0000244 int l2len = min(fls(xfer->len), SPI_STATISTICS_HISTO_SIZE) - 1;
245
246 if (l2len < 0)
247 l2len = 0;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000248
249 spin_lock_irqsave(&stats->lock, flags);
250
251 stats->transfers++;
Martin Sperl6b7bc062015-06-22 13:02:04 +0000252 stats->transfer_bytes_histo[l2len]++;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000253
254 stats->bytes += xfer->len;
255 if ((xfer->tx_buf) &&
256 (xfer->tx_buf != master->dummy_tx))
257 stats->bytes_tx += xfer->len;
258 if ((xfer->rx_buf) &&
259 (xfer->rx_buf != master->dummy_rx))
260 stats->bytes_rx += xfer->len;
261
262 spin_unlock_irqrestore(&stats->lock, flags);
263}
264EXPORT_SYMBOL_GPL(spi_statistics_add_transfer_stats);
David Brownell8ae12a02006-01-08 13:34:19 -0800265
266/* modalias support makes "modprobe $MODALIAS" new-style hotplug work,
267 * and the sysfs version makes coldplug work too.
268 */
269
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700270static const struct spi_device_id *spi_match_id(const struct spi_device_id *id,
271 const struct spi_device *sdev)
272{
273 while (id->name[0]) {
274 if (!strcmp(sdev->modalias, id->name))
275 return id;
276 id++;
277 }
278 return NULL;
279}
280
281const struct spi_device_id *spi_get_device_id(const struct spi_device *sdev)
282{
283 const struct spi_driver *sdrv = to_spi_driver(sdev->dev.driver);
284
285 return spi_match_id(sdrv->id_table, sdev);
286}
287EXPORT_SYMBOL_GPL(spi_get_device_id);
288
David Brownell8ae12a02006-01-08 13:34:19 -0800289static int spi_match_device(struct device *dev, struct device_driver *drv)
290{
291 const struct spi_device *spi = to_spi_device(dev);
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700292 const struct spi_driver *sdrv = to_spi_driver(drv);
293
Sinan Akman2b7a32f2010-10-02 21:28:29 -0600294 /* Attempt an OF style match */
295 if (of_driver_match_device(dev, drv))
296 return 1;
297
Mika Westerberg64bee4d2012-11-30 12:37:53 +0100298 /* Then try ACPI */
299 if (acpi_driver_match_device(dev, drv))
300 return 1;
301
Anton Vorontsov75368bf2009-09-22 16:46:04 -0700302 if (sdrv->id_table)
303 return !!spi_match_id(sdrv->id_table, spi);
David Brownell8ae12a02006-01-08 13:34:19 -0800304
Kay Sievers35f74fc2009-01-06 10:44:37 -0800305 return strcmp(spi->modalias, drv->name) == 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800306}
307
Kay Sievers7eff2e72007-08-14 15:15:12 +0200308static int spi_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownell8ae12a02006-01-08 13:34:19 -0800309{
310 const struct spi_device *spi = to_spi_device(dev);
Zhang Rui8c4ff6d2014-01-14 16:46:37 +0800311 int rc;
312
313 rc = acpi_device_uevent_modalias(dev, env);
314 if (rc != -ENODEV)
315 return rc;
David Brownell8ae12a02006-01-08 13:34:19 -0800316
Anton Vorontsove0626e32009-09-22 16:46:08 -0700317 add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias);
David Brownell8ae12a02006-01-08 13:34:19 -0800318 return 0;
319}
320
David Brownell8ae12a02006-01-08 13:34:19 -0800321struct bus_type spi_bus_type = {
322 .name = "spi",
Greg Kroah-Hartmanaa7da562013-10-07 18:27:38 -0700323 .dev_groups = spi_dev_groups,
David Brownell8ae12a02006-01-08 13:34:19 -0800324 .match = spi_match_device,
325 .uevent = spi_uevent,
David Brownell8ae12a02006-01-08 13:34:19 -0800326};
327EXPORT_SYMBOL_GPL(spi_bus_type);
328
David Brownellb8852442006-01-08 13:34:23 -0800329
330static int spi_drv_probe(struct device *dev)
331{
332 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
Jon Hunter44af7922015-10-09 15:45:55 +0100333 struct spi_device *spi = to_spi_device(dev);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300334 int ret;
David Brownellb8852442006-01-08 13:34:23 -0800335
Sylwester Nawrocki86be4082014-06-18 17:29:32 +0200336 ret = of_clk_set_defaults(dev->of_node, false);
337 if (ret)
338 return ret;
339
Jon Hunter44af7922015-10-09 15:45:55 +0100340 if (dev->of_node) {
341 spi->irq = of_irq_get(dev->of_node, 0);
342 if (spi->irq == -EPROBE_DEFER)
343 return -EPROBE_DEFER;
344 if (spi->irq < 0)
345 spi->irq = 0;
346 }
347
Ulf Hansson676e7c22014-09-19 20:27:41 +0200348 ret = dev_pm_domain_attach(dev, true);
349 if (ret != -EPROBE_DEFER) {
Jon Hunter44af7922015-10-09 15:45:55 +0100350 ret = sdrv->probe(spi);
Ulf Hansson676e7c22014-09-19 20:27:41 +0200351 if (ret)
352 dev_pm_domain_detach(dev, true);
353 }
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300354
355 return ret;
David Brownellb8852442006-01-08 13:34:23 -0800356}
357
358static int spi_drv_remove(struct device *dev)
359{
360 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300361 int ret;
David Brownellb8852442006-01-08 13:34:23 -0800362
Jean Delvareaec35f42014-02-13 15:28:41 +0100363 ret = sdrv->remove(to_spi_device(dev));
Ulf Hansson676e7c22014-09-19 20:27:41 +0200364 dev_pm_domain_detach(dev, true);
Mika Westerberg33cf00e2013-10-10 13:28:48 +0300365
366 return ret;
David Brownellb8852442006-01-08 13:34:23 -0800367}
368
369static void spi_drv_shutdown(struct device *dev)
370{
371 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
372
373 sdrv->shutdown(to_spi_device(dev));
374}
375
David Brownell33e34dc2007-05-08 00:32:21 -0700376/**
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500377 * __spi_register_driver - register a SPI driver
David Brownell33e34dc2007-05-08 00:32:21 -0700378 * @sdrv: the driver to register
379 * Context: can sleep
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200380 *
381 * Return: zero on success, else a negative error code.
David Brownell33e34dc2007-05-08 00:32:21 -0700382 */
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500383int __spi_register_driver(struct module *owner, struct spi_driver *sdrv)
David Brownellb8852442006-01-08 13:34:23 -0800384{
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500385 sdrv->driver.owner = owner;
David Brownellb8852442006-01-08 13:34:23 -0800386 sdrv->driver.bus = &spi_bus_type;
387 if (sdrv->probe)
388 sdrv->driver.probe = spi_drv_probe;
389 if (sdrv->remove)
390 sdrv->driver.remove = spi_drv_remove;
391 if (sdrv->shutdown)
392 sdrv->driver.shutdown = spi_drv_shutdown;
393 return driver_register(&sdrv->driver);
394}
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500395EXPORT_SYMBOL_GPL(__spi_register_driver);
David Brownellb8852442006-01-08 13:34:23 -0800396
David Brownell8ae12a02006-01-08 13:34:19 -0800397/*-------------------------------------------------------------------------*/
398
399/* SPI devices should normally not be created by SPI device drivers; that
400 * would make them board-specific. Similarly with SPI master drivers.
401 * Device registration normally goes into like arch/.../mach.../board-YYY.c
402 * with other readonly (flashable) information about mainboard devices.
403 */
404
405struct boardinfo {
406 struct list_head list;
Feng Tang2b9603a2010-08-02 15:52:15 +0800407 struct spi_board_info board_info;
David Brownell8ae12a02006-01-08 13:34:19 -0800408};
409
410static LIST_HEAD(board_list);
Feng Tang2b9603a2010-08-02 15:52:15 +0800411static LIST_HEAD(spi_master_list);
412
413/*
414 * Used to protect add/del opertion for board_info list and
415 * spi_master list, and their matching process
416 */
Matthias Kaehlcke94040822007-07-17 04:04:16 -0700417static DEFINE_MUTEX(board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800418
Grant Likelydc87c982008-05-15 16:50:22 -0600419/**
420 * spi_alloc_device - Allocate a new SPI device
421 * @master: Controller to which device is connected
422 * Context: can sleep
423 *
424 * Allows a driver to allocate and initialize a spi_device without
425 * registering it immediately. This allows a driver to directly
426 * fill the spi_device with device parameters before calling
427 * spi_add_device() on it.
428 *
429 * Caller is responsible to call spi_add_device() on the returned
430 * spi_device structure to add it to the SPI master. If the caller
431 * needs to discard the spi_device without adding it, then it should
432 * call spi_dev_put() on it.
433 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200434 * Return: a pointer to the new device, or NULL.
Grant Likelydc87c982008-05-15 16:50:22 -0600435 */
436struct spi_device *spi_alloc_device(struct spi_master *master)
437{
438 struct spi_device *spi;
Grant Likelydc87c982008-05-15 16:50:22 -0600439
440 if (!spi_master_get(master))
441 return NULL;
442
Jingoo Han5fe5f052013-10-14 10:31:51 +0900443 spi = kzalloc(sizeof(*spi), GFP_KERNEL);
Grant Likelydc87c982008-05-15 16:50:22 -0600444 if (!spi) {
Grant Likelydc87c982008-05-15 16:50:22 -0600445 spi_master_put(master);
446 return NULL;
447 }
448
449 spi->master = master;
Laurent Pinchart178db7d2011-12-12 01:15:06 +0100450 spi->dev.parent = &master->dev;
Grant Likelydc87c982008-05-15 16:50:22 -0600451 spi->dev.bus = &spi_bus_type;
452 spi->dev.release = spidev_release;
Andreas Larsson446411e2013-02-13 14:20:25 +0100453 spi->cs_gpio = -ENOENT;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000454
455 spin_lock_init(&spi->statistics.lock);
456
Grant Likelydc87c982008-05-15 16:50:22 -0600457 device_initialize(&spi->dev);
458 return spi;
459}
460EXPORT_SYMBOL_GPL(spi_alloc_device);
461
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200462static void spi_dev_set_name(struct spi_device *spi)
463{
464 struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
465
466 if (adev) {
467 dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
468 return;
469 }
470
471 dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->master->dev),
472 spi->chip_select);
473}
474
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200475static int spi_dev_check(struct device *dev, void *data)
476{
477 struct spi_device *spi = to_spi_device(dev);
478 struct spi_device *new_spi = data;
479
480 if (spi->master == new_spi->master &&
481 spi->chip_select == new_spi->chip_select)
482 return -EBUSY;
483 return 0;
484}
485
Grant Likelydc87c982008-05-15 16:50:22 -0600486/**
487 * spi_add_device - Add spi_device allocated with spi_alloc_device
488 * @spi: spi_device to register
489 *
490 * Companion function to spi_alloc_device. Devices allocated with
491 * spi_alloc_device can be added onto the spi bus with this function.
492 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200493 * Return: 0 on success; negative errno on failure
Grant Likelydc87c982008-05-15 16:50:22 -0600494 */
495int spi_add_device(struct spi_device *spi)
496{
David Brownelle48880e2008-08-15 00:40:44 -0700497 static DEFINE_MUTEX(spi_add_lock);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100498 struct spi_master *master = spi->master;
499 struct device *dev = master->dev.parent;
Grant Likelydc87c982008-05-15 16:50:22 -0600500 int status;
501
502 /* Chipselects are numbered 0..max; validate. */
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100503 if (spi->chip_select >= master->num_chipselect) {
Grant Likelydc87c982008-05-15 16:50:22 -0600504 dev_err(dev, "cs%d >= max %d\n",
505 spi->chip_select,
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100506 master->num_chipselect);
Grant Likelydc87c982008-05-15 16:50:22 -0600507 return -EINVAL;
508 }
509
510 /* Set the bus ID string */
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200511 spi_dev_set_name(spi);
David Brownelle48880e2008-08-15 00:40:44 -0700512
513 /* We need to make sure there's no other device with this
514 * chipselect **BEFORE** we call setup(), else we'll trash
515 * its configuration. Lock against concurrent add() calls.
516 */
517 mutex_lock(&spi_add_lock);
518
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200519 status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
520 if (status) {
David Brownelle48880e2008-08-15 00:40:44 -0700521 dev_err(dev, "chipselect %d already in use\n",
522 spi->chip_select);
David Brownelle48880e2008-08-15 00:40:44 -0700523 goto done;
524 }
525
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100526 if (master->cs_gpios)
527 spi->cs_gpio = master->cs_gpios[spi->chip_select];
528
David Brownelle48880e2008-08-15 00:40:44 -0700529 /* Drivers may modify this initial i/o setup, but will
530 * normally rely on the device being setup. Devices
531 * using SPI_CS_HIGH can't coexist well otherwise...
532 */
David Brownell7d077192009-06-17 16:26:03 -0700533 status = spi_setup(spi);
Grant Likelydc87c982008-05-15 16:50:22 -0600534 if (status < 0) {
Linus Walleijeb288a12010-10-21 21:06:44 +0200535 dev_err(dev, "can't setup %s, status %d\n",
536 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700537 goto done;
Grant Likelydc87c982008-05-15 16:50:22 -0600538 }
539
David Brownelle48880e2008-08-15 00:40:44 -0700540 /* Device may be bound to an active driver when this returns */
Grant Likelydc87c982008-05-15 16:50:22 -0600541 status = device_add(&spi->dev);
David Brownelle48880e2008-08-15 00:40:44 -0700542 if (status < 0)
Linus Walleijeb288a12010-10-21 21:06:44 +0200543 dev_err(dev, "can't add %s, status %d\n",
544 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700545 else
Kay Sievers35f74fc2009-01-06 10:44:37 -0800546 dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
Grant Likelydc87c982008-05-15 16:50:22 -0600547
David Brownelle48880e2008-08-15 00:40:44 -0700548done:
549 mutex_unlock(&spi_add_lock);
550 return status;
Grant Likelydc87c982008-05-15 16:50:22 -0600551}
552EXPORT_SYMBOL_GPL(spi_add_device);
David Brownell8ae12a02006-01-08 13:34:19 -0800553
David Brownell33e34dc2007-05-08 00:32:21 -0700554/**
555 * spi_new_device - instantiate one new SPI device
556 * @master: Controller to which device is connected
557 * @chip: Describes the SPI device
558 * Context: can sleep
559 *
560 * On typical mainboards, this is purely internal; and it's not needed
David Brownell8ae12a02006-01-08 13:34:19 -0800561 * after board init creates the hard-wired devices. Some development
562 * platforms may not be able to use spi_register_board_info though, and
563 * this is exported so that for example a USB or parport based adapter
564 * driver could add devices (which it would learn about out-of-band).
David Brownell082c8cb2007-07-31 00:39:45 -0700565 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200566 * Return: the new device, or NULL.
David Brownell8ae12a02006-01-08 13:34:19 -0800567 */
Adrian Bunke9d5a462007-03-26 21:32:23 -0800568struct spi_device *spi_new_device(struct spi_master *master,
569 struct spi_board_info *chip)
David Brownell8ae12a02006-01-08 13:34:19 -0800570{
571 struct spi_device *proxy;
David Brownell8ae12a02006-01-08 13:34:19 -0800572 int status;
573
David Brownell082c8cb2007-07-31 00:39:45 -0700574 /* NOTE: caller did any chip->bus_num checks necessary.
575 *
576 * Also, unless we change the return value convention to use
577 * error-or-pointer (not NULL-or-pointer), troubleshootability
578 * suggests syslogged diagnostics are best here (ugh).
579 */
580
Grant Likelydc87c982008-05-15 16:50:22 -0600581 proxy = spi_alloc_device(master);
582 if (!proxy)
David Brownell8ae12a02006-01-08 13:34:19 -0800583 return NULL;
584
Grant Likely102eb972008-07-23 21:29:55 -0700585 WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
586
David Brownell8ae12a02006-01-08 13:34:19 -0800587 proxy->chip_select = chip->chip_select;
588 proxy->max_speed_hz = chip->max_speed_hz;
David Brownell980a01c2006-06-28 07:47:15 -0700589 proxy->mode = chip->mode;
David Brownell8ae12a02006-01-08 13:34:19 -0800590 proxy->irq = chip->irq;
Grant Likely102eb972008-07-23 21:29:55 -0700591 strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
David Brownell8ae12a02006-01-08 13:34:19 -0800592 proxy->dev.platform_data = (void *) chip->platform_data;
593 proxy->controller_data = chip->controller_data;
594 proxy->controller_state = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800595
Grant Likelydc87c982008-05-15 16:50:22 -0600596 status = spi_add_device(proxy);
David Brownell8ae12a02006-01-08 13:34:19 -0800597 if (status < 0) {
Grant Likelydc87c982008-05-15 16:50:22 -0600598 spi_dev_put(proxy);
599 return NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800600 }
601
David Brownell8ae12a02006-01-08 13:34:19 -0800602 return proxy;
603}
604EXPORT_SYMBOL_GPL(spi_new_device);
605
Feng Tang2b9603a2010-08-02 15:52:15 +0800606static void spi_match_master_to_boardinfo(struct spi_master *master,
607 struct spi_board_info *bi)
608{
609 struct spi_device *dev;
610
611 if (master->bus_num != bi->bus_num)
612 return;
613
614 dev = spi_new_device(master, bi);
615 if (!dev)
616 dev_err(master->dev.parent, "can't create new device for %s\n",
617 bi->modalias);
618}
619
David Brownell33e34dc2007-05-08 00:32:21 -0700620/**
621 * spi_register_board_info - register SPI devices for a given board
622 * @info: array of chip descriptors
623 * @n: how many descriptors are provided
624 * Context: can sleep
625 *
David Brownell8ae12a02006-01-08 13:34:19 -0800626 * Board-specific early init code calls this (probably during arch_initcall)
627 * with segments of the SPI device table. Any device nodes are created later,
628 * after the relevant parent SPI controller (bus_num) is defined. We keep
629 * this table of devices forever, so that reloading a controller driver will
630 * not make Linux forget about these hard-wired devices.
631 *
632 * Other code can also call this, e.g. a particular add-on board might provide
633 * SPI devices through its expansion connector, so code initializing that board
634 * would naturally declare its SPI devices.
635 *
636 * The board info passed can safely be __initdata ... but be careful of
637 * any embedded pointers (platform_data, etc), they're copied as-is.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200638 *
639 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -0800640 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000641int spi_register_board_info(struct spi_board_info const *info, unsigned n)
David Brownell8ae12a02006-01-08 13:34:19 -0800642{
Feng Tang2b9603a2010-08-02 15:52:15 +0800643 struct boardinfo *bi;
644 int i;
David Brownell8ae12a02006-01-08 13:34:19 -0800645
Xiubo Lic7908a32014-09-24 14:30:29 +0800646 if (!n)
647 return -EINVAL;
648
Feng Tang2b9603a2010-08-02 15:52:15 +0800649 bi = kzalloc(n * sizeof(*bi), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -0800650 if (!bi)
651 return -ENOMEM;
David Brownell8ae12a02006-01-08 13:34:19 -0800652
Feng Tang2b9603a2010-08-02 15:52:15 +0800653 for (i = 0; i < n; i++, bi++, info++) {
654 struct spi_master *master;
David Brownell8ae12a02006-01-08 13:34:19 -0800655
Feng Tang2b9603a2010-08-02 15:52:15 +0800656 memcpy(&bi->board_info, info, sizeof(*info));
657 mutex_lock(&board_lock);
658 list_add_tail(&bi->list, &board_list);
659 list_for_each_entry(master, &spi_master_list, list)
660 spi_match_master_to_boardinfo(master, &bi->board_info);
661 mutex_unlock(&board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800662 }
Feng Tang2b9603a2010-08-02 15:52:15 +0800663
664 return 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800665}
666
667/*-------------------------------------------------------------------------*/
668
Mark Brownb1589352013-10-05 11:50:40 +0100669static void spi_set_cs(struct spi_device *spi, bool enable)
670{
671 if (spi->mode & SPI_CS_HIGH)
672 enable = !enable;
673
Andy Shevchenko243f07b2015-10-20 12:28:29 +0300674 if (gpio_is_valid(spi->cs_gpio))
Mark Brownb1589352013-10-05 11:50:40 +0100675 gpio_set_value(spi->cs_gpio, !enable);
676 else if (spi->master->set_cs)
677 spi->master->set_cs(spi, !enable);
678}
679
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200680#ifdef CONFIG_HAS_DMA
Mark Brown6ad45a22014-02-02 13:47:47 +0000681static int spi_map_buf(struct spi_master *master, struct device *dev,
682 struct sg_table *sgt, void *buf, size_t len,
683 enum dma_data_direction dir)
684{
685 const bool vmalloced_buf = is_vmalloc_addr(buf);
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500686 int desc_len;
687 int sgs;
Mark Brown6ad45a22014-02-02 13:47:47 +0000688 struct page *vm_page;
689 void *sg_buf;
690 size_t min;
691 int i, ret;
692
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500693 if (vmalloced_buf) {
694 desc_len = PAGE_SIZE;
695 sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len);
696 } else {
697 desc_len = master->max_dma_len;
698 sgs = DIV_ROUND_UP(len, desc_len);
699 }
700
Mark Brown6ad45a22014-02-02 13:47:47 +0000701 ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
702 if (ret != 0)
703 return ret;
704
705 for (i = 0; i < sgs; i++) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000706
707 if (vmalloced_buf) {
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500708 min = min_t(size_t,
709 len, desc_len - offset_in_page(buf));
Mark Brown6ad45a22014-02-02 13:47:47 +0000710 vm_page = vmalloc_to_page(buf);
711 if (!vm_page) {
712 sg_free_table(sgt);
713 return -ENOMEM;
714 }
Charles Keepaxc1aefbd2014-11-17 09:14:31 +0000715 sg_set_page(&sgt->sgl[i], vm_page,
716 min, offset_in_page(buf));
Mark Brown6ad45a22014-02-02 13:47:47 +0000717 } else {
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500718 min = min_t(size_t, len, desc_len);
Mark Brown6ad45a22014-02-02 13:47:47 +0000719 sg_buf = buf;
Charles Keepaxc1aefbd2014-11-17 09:14:31 +0000720 sg_set_buf(&sgt->sgl[i], sg_buf, min);
Mark Brown6ad45a22014-02-02 13:47:47 +0000721 }
722
Mark Brown6ad45a22014-02-02 13:47:47 +0000723
724 buf += min;
725 len -= min;
726 }
727
728 ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
Geert Uytterhoeven89e4b662014-07-10 15:29:32 +0200729 if (!ret)
730 ret = -ENOMEM;
Mark Brown6ad45a22014-02-02 13:47:47 +0000731 if (ret < 0) {
732 sg_free_table(sgt);
733 return ret;
734 }
735
736 sgt->nents = ret;
737
738 return 0;
739}
740
741static void spi_unmap_buf(struct spi_master *master, struct device *dev,
742 struct sg_table *sgt, enum dma_data_direction dir)
743{
744 if (sgt->orig_nents) {
745 dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
746 sg_free_table(sgt);
747 }
748}
749
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200750static int __spi_map_msg(struct spi_master *master, struct spi_message *msg)
Mark Brown99adef32014-01-16 12:22:43 +0000751{
Mark Brown99adef32014-01-16 12:22:43 +0000752 struct device *tx_dev, *rx_dev;
753 struct spi_transfer *xfer;
Mark Brown6ad45a22014-02-02 13:47:47 +0000754 int ret;
Mark Brown3a2eba92014-01-28 20:17:03 +0000755
Mark Brown6ad45a22014-02-02 13:47:47 +0000756 if (!master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000757 return 0;
758
Leilk Liuc37f45b2015-07-23 17:10:40 +0800759 if (master->dma_tx)
760 tx_dev = master->dma_tx->device->dev;
761 else
762 tx_dev = &master->dev;
763
764 if (master->dma_rx)
765 rx_dev = master->dma_rx->device->dev;
766 else
767 rx_dev = &master->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000768
769 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
770 if (!master->can_dma(master, msg->spi, xfer))
771 continue;
772
773 if (xfer->tx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000774 ret = spi_map_buf(master, tx_dev, &xfer->tx_sg,
775 (void *)xfer->tx_buf, xfer->len,
776 DMA_TO_DEVICE);
777 if (ret != 0)
778 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000779 }
780
781 if (xfer->rx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000782 ret = spi_map_buf(master, rx_dev, &xfer->rx_sg,
783 xfer->rx_buf, xfer->len,
784 DMA_FROM_DEVICE);
785 if (ret != 0) {
786 spi_unmap_buf(master, tx_dev, &xfer->tx_sg,
787 DMA_TO_DEVICE);
788 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000789 }
790 }
791 }
792
793 master->cur_msg_mapped = true;
794
795 return 0;
796}
797
Martin Sperl4b786452015-05-25 10:13:10 +0000798static int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg)
Mark Brown99adef32014-01-16 12:22:43 +0000799{
800 struct spi_transfer *xfer;
801 struct device *tx_dev, *rx_dev;
802
Mark Brown6ad45a22014-02-02 13:47:47 +0000803 if (!master->cur_msg_mapped || !master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000804 return 0;
805
Leilk Liuc37f45b2015-07-23 17:10:40 +0800806 if (master->dma_tx)
807 tx_dev = master->dma_tx->device->dev;
808 else
809 tx_dev = &master->dev;
810
811 if (master->dma_rx)
812 rx_dev = master->dma_rx->device->dev;
813 else
814 rx_dev = &master->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000815
816 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
817 if (!master->can_dma(master, msg->spi, xfer))
818 continue;
819
Mark Brown6ad45a22014-02-02 13:47:47 +0000820 spi_unmap_buf(master, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE);
821 spi_unmap_buf(master, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE);
Mark Brown99adef32014-01-16 12:22:43 +0000822 }
823
824 return 0;
825}
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200826#else /* !CONFIG_HAS_DMA */
827static inline int __spi_map_msg(struct spi_master *master,
828 struct spi_message *msg)
829{
830 return 0;
831}
832
Martin Sperl4b786452015-05-25 10:13:10 +0000833static inline int __spi_unmap_msg(struct spi_master *master,
834 struct spi_message *msg)
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200835{
836 return 0;
837}
838#endif /* !CONFIG_HAS_DMA */
839
Martin Sperl4b786452015-05-25 10:13:10 +0000840static inline int spi_unmap_msg(struct spi_master *master,
841 struct spi_message *msg)
842{
843 struct spi_transfer *xfer;
844
845 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
846 /*
847 * Restore the original value of tx_buf or rx_buf if they are
848 * NULL.
849 */
850 if (xfer->tx_buf == master->dummy_tx)
851 xfer->tx_buf = NULL;
852 if (xfer->rx_buf == master->dummy_rx)
853 xfer->rx_buf = NULL;
854 }
855
856 return __spi_unmap_msg(master, msg);
857}
858
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200859static int spi_map_msg(struct spi_master *master, struct spi_message *msg)
860{
861 struct spi_transfer *xfer;
862 void *tmp;
863 unsigned int max_tx, max_rx;
864
865 if (master->flags & (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX)) {
866 max_tx = 0;
867 max_rx = 0;
868
869 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
870 if ((master->flags & SPI_MASTER_MUST_TX) &&
871 !xfer->tx_buf)
872 max_tx = max(xfer->len, max_tx);
873 if ((master->flags & SPI_MASTER_MUST_RX) &&
874 !xfer->rx_buf)
875 max_rx = max(xfer->len, max_rx);
876 }
877
878 if (max_tx) {
879 tmp = krealloc(master->dummy_tx, max_tx,
880 GFP_KERNEL | GFP_DMA);
881 if (!tmp)
882 return -ENOMEM;
883 master->dummy_tx = tmp;
884 memset(tmp, 0, max_tx);
885 }
886
887 if (max_rx) {
888 tmp = krealloc(master->dummy_rx, max_rx,
889 GFP_KERNEL | GFP_DMA);
890 if (!tmp)
891 return -ENOMEM;
892 master->dummy_rx = tmp;
893 }
894
895 if (max_tx || max_rx) {
896 list_for_each_entry(xfer, &msg->transfers,
897 transfer_list) {
898 if (!xfer->tx_buf)
899 xfer->tx_buf = master->dummy_tx;
900 if (!xfer->rx_buf)
901 xfer->rx_buf = master->dummy_rx;
902 }
903 }
904 }
905
906 return __spi_map_msg(master, msg);
907}
Mark Brown99adef32014-01-16 12:22:43 +0000908
Mark Brownb1589352013-10-05 11:50:40 +0100909/*
910 * spi_transfer_one_message - Default implementation of transfer_one_message()
911 *
912 * This is a standard implementation of transfer_one_message() for
913 * drivers which impelment a transfer_one() operation. It provides
914 * standard handling of delays and chip select management.
915 */
916static int spi_transfer_one_message(struct spi_master *master,
917 struct spi_message *msg)
918{
919 struct spi_transfer *xfer;
Mark Brownb1589352013-10-05 11:50:40 +0100920 bool keep_cs = false;
921 int ret = 0;
Nicholas Mc Guire682a71b2015-02-02 03:30:32 -0500922 unsigned long ms = 1;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000923 struct spi_statistics *statm = &master->statistics;
924 struct spi_statistics *stats = &msg->spi->statistics;
Mark Brownb1589352013-10-05 11:50:40 +0100925
926 spi_set_cs(msg->spi, true);
927
Martin Sperleca2ebc2015-06-22 13:00:36 +0000928 SPI_STATISTICS_INCREMENT_FIELD(statm, messages);
929 SPI_STATISTICS_INCREMENT_FIELD(stats, messages);
930
Mark Brownb1589352013-10-05 11:50:40 +0100931 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
932 trace_spi_transfer_start(msg, xfer);
933
Martin Sperleca2ebc2015-06-22 13:00:36 +0000934 spi_statistics_add_transfer_stats(statm, xfer, master);
935 spi_statistics_add_transfer_stats(stats, xfer, master);
936
Mark Brown38ec10f2014-08-16 16:27:41 +0100937 if (xfer->tx_buf || xfer->rx_buf) {
938 reinit_completion(&master->xfer_completion);
Mark Brownb1589352013-10-05 11:50:40 +0100939
Mark Brown38ec10f2014-08-16 16:27:41 +0100940 ret = master->transfer_one(master, msg->spi, xfer);
941 if (ret < 0) {
Martin Sperleca2ebc2015-06-22 13:00:36 +0000942 SPI_STATISTICS_INCREMENT_FIELD(statm,
943 errors);
944 SPI_STATISTICS_INCREMENT_FIELD(stats,
945 errors);
Mark Brown38ec10f2014-08-16 16:27:41 +0100946 dev_err(&msg->spi->dev,
947 "SPI transfer failed: %d\n", ret);
948 goto out;
949 }
Mark Brownb1589352013-10-05 11:50:40 +0100950
Mark Brown38ec10f2014-08-16 16:27:41 +0100951 if (ret > 0) {
952 ret = 0;
953 ms = xfer->len * 8 * 1000 / xfer->speed_hz;
954 ms += ms + 100; /* some tolerance */
Mark Brown16a0ce42014-01-30 22:16:41 +0000955
Mark Brown38ec10f2014-08-16 16:27:41 +0100956 ms = wait_for_completion_timeout(&master->xfer_completion,
957 msecs_to_jiffies(ms));
958 }
Mark Brown16a0ce42014-01-30 22:16:41 +0000959
Mark Brown38ec10f2014-08-16 16:27:41 +0100960 if (ms == 0) {
Martin Sperleca2ebc2015-06-22 13:00:36 +0000961 SPI_STATISTICS_INCREMENT_FIELD(statm,
962 timedout);
963 SPI_STATISTICS_INCREMENT_FIELD(stats,
964 timedout);
Mark Brown38ec10f2014-08-16 16:27:41 +0100965 dev_err(&msg->spi->dev,
966 "SPI transfer timed out\n");
967 msg->status = -ETIMEDOUT;
968 }
969 } else {
970 if (xfer->len)
971 dev_err(&msg->spi->dev,
972 "Bufferless transfer has length %u\n",
973 xfer->len);
Axel Lin13a42792014-01-18 22:05:22 +0800974 }
Mark Brownb1589352013-10-05 11:50:40 +0100975
976 trace_spi_transfer_stop(msg, xfer);
977
978 if (msg->status != -EINPROGRESS)
979 goto out;
980
981 if (xfer->delay_usecs)
982 udelay(xfer->delay_usecs);
983
984 if (xfer->cs_change) {
985 if (list_is_last(&xfer->transfer_list,
986 &msg->transfers)) {
987 keep_cs = true;
988 } else {
Mark Brown0b73aa62014-03-29 23:48:07 +0000989 spi_set_cs(msg->spi, false);
990 udelay(10);
991 spi_set_cs(msg->spi, true);
Mark Brownb1589352013-10-05 11:50:40 +0100992 }
993 }
994
995 msg->actual_length += xfer->len;
996 }
997
998out:
999 if (ret != 0 || !keep_cs)
1000 spi_set_cs(msg->spi, false);
1001
1002 if (msg->status == -EINPROGRESS)
1003 msg->status = ret;
1004
Geert Uytterhoevenff61eb42015-04-07 20:39:19 +02001005 if (msg->status && master->handle_err)
Andy Shevchenkob716c4f2015-02-27 17:34:15 +02001006 master->handle_err(master, msg);
1007
Mark Brownb1589352013-10-05 11:50:40 +01001008 spi_finalize_current_message(master);
1009
1010 return ret;
1011}
1012
1013/**
1014 * spi_finalize_current_transfer - report completion of a transfer
Thierry Reding2c675682014-08-08 13:02:36 +02001015 * @master: the master reporting completion
Mark Brownb1589352013-10-05 11:50:40 +01001016 *
1017 * Called by SPI drivers using the core transfer_one_message()
1018 * implementation to notify it that the current interrupt driven
Geert Uytterhoeven9e8f4882014-01-21 16:10:05 +01001019 * transfer has finished and the next one may be scheduled.
Mark Brownb1589352013-10-05 11:50:40 +01001020 */
1021void spi_finalize_current_transfer(struct spi_master *master)
1022{
1023 complete(&master->xfer_completion);
1024}
1025EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
1026
Linus Walleijffbbdd212012-02-22 10:05:38 +01001027/**
Mark Brownfc9e0f72014-12-10 13:46:33 +00001028 * __spi_pump_messages - function which processes spi message queue
1029 * @master: master to process queue for
1030 * @in_kthread: true if we are in the context of the message pump thread
Linus Walleijffbbdd212012-02-22 10:05:38 +01001031 *
1032 * This function checks if there is any spi message in the queue that
1033 * needs processing and if so call out to the driver to initialize hardware
1034 * and transfer each message.
1035 *
Mark Brown0461a412014-12-09 21:38:05 +00001036 * Note that it is called both from the kthread itself and also from
1037 * inside spi_sync(); the queue extraction handling at the top of the
1038 * function should deal with this safely.
Linus Walleijffbbdd212012-02-22 10:05:38 +01001039 */
Mark Brownfc9e0f72014-12-10 13:46:33 +00001040static void __spi_pump_messages(struct spi_master *master, bool in_kthread)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001041{
Linus Walleijffbbdd212012-02-22 10:05:38 +01001042 unsigned long flags;
1043 bool was_busy = false;
1044 int ret;
1045
Mark Brown983aee52014-12-09 19:46:56 +00001046 /* Lock queue */
Linus Walleijffbbdd212012-02-22 10:05:38 +01001047 spin_lock_irqsave(&master->queue_lock, flags);
Mark Brown983aee52014-12-09 19:46:56 +00001048
1049 /* Make sure we are not already running a message */
1050 if (master->cur_msg) {
1051 spin_unlock_irqrestore(&master->queue_lock, flags);
1052 return;
1053 }
1054
Mark Brown0461a412014-12-09 21:38:05 +00001055 /* If another context is idling the device then defer */
1056 if (master->idling) {
1057 queue_kthread_work(&master->kworker, &master->pump_messages);
1058 spin_unlock_irqrestore(&master->queue_lock, flags);
1059 return;
1060 }
1061
Mark Brown983aee52014-12-09 19:46:56 +00001062 /* Check if the queue is idle */
Linus Walleijffbbdd212012-02-22 10:05:38 +01001063 if (list_empty(&master->queue) || !master->running) {
Bryan Freedb0b36b82013-03-13 11:17:40 -07001064 if (!master->busy) {
1065 spin_unlock_irqrestore(&master->queue_lock, flags);
1066 return;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001067 }
Mark Brownfc9e0f72014-12-10 13:46:33 +00001068
1069 /* Only do teardown in the thread */
1070 if (!in_kthread) {
1071 queue_kthread_work(&master->kworker,
1072 &master->pump_messages);
1073 spin_unlock_irqrestore(&master->queue_lock, flags);
1074 return;
1075 }
1076
Linus Walleijffbbdd212012-02-22 10:05:38 +01001077 master->busy = false;
Mark Brown0461a412014-12-09 21:38:05 +00001078 master->idling = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001079 spin_unlock_irqrestore(&master->queue_lock, flags);
Mark Brown0461a412014-12-09 21:38:05 +00001080
Mark Brown3a2eba92014-01-28 20:17:03 +00001081 kfree(master->dummy_rx);
1082 master->dummy_rx = NULL;
1083 kfree(master->dummy_tx);
1084 master->dummy_tx = NULL;
Bryan Freedb0b36b82013-03-13 11:17:40 -07001085 if (master->unprepare_transfer_hardware &&
1086 master->unprepare_transfer_hardware(master))
1087 dev_err(&master->dev,
1088 "failed to unprepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +01001089 if (master->auto_runtime_pm) {
1090 pm_runtime_mark_last_busy(master->dev.parent);
1091 pm_runtime_put_autosuspend(master->dev.parent);
1092 }
Mark Brown56ec1972013-10-07 19:33:53 +01001093 trace_spi_master_idle(master);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001094
Mark Brown0461a412014-12-09 21:38:05 +00001095 spin_lock_irqsave(&master->queue_lock, flags);
1096 master->idling = false;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001097 spin_unlock_irqrestore(&master->queue_lock, flags);
1098 return;
1099 }
Linus Walleijffbbdd212012-02-22 10:05:38 +01001100
Linus Walleijffbbdd212012-02-22 10:05:38 +01001101 /* Extract head of queue */
1102 master->cur_msg =
Axel Lina89e2d22014-01-09 16:03:58 +08001103 list_first_entry(&master->queue, struct spi_message, queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001104
1105 list_del_init(&master->cur_msg->queue);
1106 if (master->busy)
1107 was_busy = true;
1108 else
1109 master->busy = true;
1110 spin_unlock_irqrestore(&master->queue_lock, flags);
1111
Mark Brown49834de2013-07-28 14:47:02 +01001112 if (!was_busy && master->auto_runtime_pm) {
1113 ret = pm_runtime_get_sync(master->dev.parent);
1114 if (ret < 0) {
1115 dev_err(&master->dev, "Failed to power device: %d\n",
1116 ret);
1117 return;
1118 }
1119 }
1120
Mark Brown56ec1972013-10-07 19:33:53 +01001121 if (!was_busy)
1122 trace_spi_master_busy(master);
1123
Shubhrajyoti D7dfd2bd2012-05-10 19:20:41 +05301124 if (!was_busy && master->prepare_transfer_hardware) {
Linus Walleijffbbdd212012-02-22 10:05:38 +01001125 ret = master->prepare_transfer_hardware(master);
1126 if (ret) {
1127 dev_err(&master->dev,
1128 "failed to prepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +01001129
1130 if (master->auto_runtime_pm)
1131 pm_runtime_put(master->dev.parent);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001132 return;
1133 }
1134 }
1135
Mark Brown56ec1972013-10-07 19:33:53 +01001136 trace_spi_message_start(master->cur_msg);
1137
Mark Brown2841a5f2013-10-05 00:23:12 +01001138 if (master->prepare_message) {
1139 ret = master->prepare_message(master, master->cur_msg);
1140 if (ret) {
1141 dev_err(&master->dev,
1142 "failed to prepare message: %d\n", ret);
1143 master->cur_msg->status = ret;
1144 spi_finalize_current_message(master);
1145 return;
1146 }
1147 master->cur_msg_prepared = true;
1148 }
1149
Mark Brown99adef32014-01-16 12:22:43 +00001150 ret = spi_map_msg(master, master->cur_msg);
1151 if (ret) {
1152 master->cur_msg->status = ret;
1153 spi_finalize_current_message(master);
1154 return;
1155 }
1156
Linus Walleijffbbdd212012-02-22 10:05:38 +01001157 ret = master->transfer_one_message(master, master->cur_msg);
1158 if (ret) {
1159 dev_err(&master->dev,
Geert Uytterhoeven1f802f82014-01-28 10:33:03 +01001160 "failed to transfer one message from queue\n");
Linus Walleijffbbdd212012-02-22 10:05:38 +01001161 return;
1162 }
1163}
1164
Mark Brownfc9e0f72014-12-10 13:46:33 +00001165/**
1166 * spi_pump_messages - kthread work function which processes spi message queue
1167 * @work: pointer to kthread work struct contained in the master struct
1168 */
1169static void spi_pump_messages(struct kthread_work *work)
1170{
1171 struct spi_master *master =
1172 container_of(work, struct spi_master, pump_messages);
1173
1174 __spi_pump_messages(master, true);
1175}
1176
Linus Walleijffbbdd212012-02-22 10:05:38 +01001177static int spi_init_queue(struct spi_master *master)
1178{
1179 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
1180
Linus Walleijffbbdd212012-02-22 10:05:38 +01001181 master->running = false;
1182 master->busy = false;
1183
1184 init_kthread_worker(&master->kworker);
1185 master->kworker_task = kthread_run(kthread_worker_fn,
Kees Cookf1701682013-07-03 15:04:58 -07001186 &master->kworker, "%s",
Linus Walleijffbbdd212012-02-22 10:05:38 +01001187 dev_name(&master->dev));
1188 if (IS_ERR(master->kworker_task)) {
1189 dev_err(&master->dev, "failed to create message pump task\n");
Jarkko Nikula98a8f5a2014-12-04 11:02:25 +02001190 return PTR_ERR(master->kworker_task);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001191 }
1192 init_kthread_work(&master->pump_messages, spi_pump_messages);
1193
1194 /*
1195 * Master config will indicate if this controller should run the
1196 * message pump with high (realtime) priority to reduce the transfer
1197 * latency on the bus by minimising the delay between a transfer
1198 * request and the scheduling of the message pump thread. Without this
1199 * setting the message pump thread will remain at default priority.
1200 */
1201 if (master->rt) {
1202 dev_info(&master->dev,
1203 "will run message pump with realtime priority\n");
1204 sched_setscheduler(master->kworker_task, SCHED_FIFO, &param);
1205 }
1206
1207 return 0;
1208}
1209
1210/**
1211 * spi_get_next_queued_message() - called by driver to check for queued
1212 * messages
1213 * @master: the master to check for queued messages
1214 *
1215 * If there are more messages in the queue, the next message is returned from
1216 * this call.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001217 *
1218 * Return: the next message in the queue, else NULL if the queue is empty.
Linus Walleijffbbdd212012-02-22 10:05:38 +01001219 */
1220struct spi_message *spi_get_next_queued_message(struct spi_master *master)
1221{
1222 struct spi_message *next;
1223 unsigned long flags;
1224
1225 /* get a pointer to the next message, if any */
1226 spin_lock_irqsave(&master->queue_lock, flags);
Axel Lin1cfd97f2014-01-02 15:16:40 +08001227 next = list_first_entry_or_null(&master->queue, struct spi_message,
1228 queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001229 spin_unlock_irqrestore(&master->queue_lock, flags);
1230
1231 return next;
1232}
1233EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1234
1235/**
1236 * spi_finalize_current_message() - the current message is complete
1237 * @master: the master to return the message to
1238 *
1239 * Called by the driver to notify the core that the message in the front of the
1240 * queue is complete and can be removed from the queue.
1241 */
1242void spi_finalize_current_message(struct spi_master *master)
1243{
1244 struct spi_message *mesg;
1245 unsigned long flags;
Mark Brown2841a5f2013-10-05 00:23:12 +01001246 int ret;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001247
1248 spin_lock_irqsave(&master->queue_lock, flags);
1249 mesg = master->cur_msg;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001250 spin_unlock_irqrestore(&master->queue_lock, flags);
1251
Mark Brown99adef32014-01-16 12:22:43 +00001252 spi_unmap_msg(master, mesg);
1253
Mark Brown2841a5f2013-10-05 00:23:12 +01001254 if (master->cur_msg_prepared && master->unprepare_message) {
1255 ret = master->unprepare_message(master, mesg);
1256 if (ret) {
1257 dev_err(&master->dev,
1258 "failed to unprepare message: %d\n", ret);
1259 }
1260 }
Uwe Kleine-König391949b2015-03-18 11:27:28 +01001261
Martin Sperl8e76ef82015-05-10 07:50:45 +00001262 spin_lock_irqsave(&master->queue_lock, flags);
1263 master->cur_msg = NULL;
Mark Brown2841a5f2013-10-05 00:23:12 +01001264 master->cur_msg_prepared = false;
Martin Sperl8e76ef82015-05-10 07:50:45 +00001265 queue_kthread_work(&master->kworker, &master->pump_messages);
1266 spin_unlock_irqrestore(&master->queue_lock, flags);
1267
1268 trace_spi_message_done(mesg);
Mark Brown2841a5f2013-10-05 00:23:12 +01001269
Linus Walleijffbbdd212012-02-22 10:05:38 +01001270 mesg->state = NULL;
1271 if (mesg->complete)
1272 mesg->complete(mesg->context);
1273}
1274EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1275
1276static int spi_start_queue(struct spi_master *master)
1277{
1278 unsigned long flags;
1279
1280 spin_lock_irqsave(&master->queue_lock, flags);
1281
1282 if (master->running || master->busy) {
1283 spin_unlock_irqrestore(&master->queue_lock, flags);
1284 return -EBUSY;
1285 }
1286
1287 master->running = true;
1288 master->cur_msg = NULL;
1289 spin_unlock_irqrestore(&master->queue_lock, flags);
1290
1291 queue_kthread_work(&master->kworker, &master->pump_messages);
1292
1293 return 0;
1294}
1295
1296static int spi_stop_queue(struct spi_master *master)
1297{
1298 unsigned long flags;
1299 unsigned limit = 500;
1300 int ret = 0;
1301
1302 spin_lock_irqsave(&master->queue_lock, flags);
1303
1304 /*
1305 * This is a bit lame, but is optimized for the common execution path.
1306 * A wait_queue on the master->busy could be used, but then the common
1307 * execution path (pump_messages) would be required to call wake_up or
1308 * friends on every SPI message. Do this instead.
1309 */
1310 while ((!list_empty(&master->queue) || master->busy) && limit--) {
1311 spin_unlock_irqrestore(&master->queue_lock, flags);
Axel Linf97b26b2014-02-21 09:15:18 +08001312 usleep_range(10000, 11000);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001313 spin_lock_irqsave(&master->queue_lock, flags);
1314 }
1315
1316 if (!list_empty(&master->queue) || master->busy)
1317 ret = -EBUSY;
1318 else
1319 master->running = false;
1320
1321 spin_unlock_irqrestore(&master->queue_lock, flags);
1322
1323 if (ret) {
1324 dev_warn(&master->dev,
1325 "could not stop message queue\n");
1326 return ret;
1327 }
1328 return ret;
1329}
1330
1331static int spi_destroy_queue(struct spi_master *master)
1332{
1333 int ret;
1334
1335 ret = spi_stop_queue(master);
1336
1337 /*
1338 * flush_kthread_worker will block until all work is done.
1339 * If the reason that stop_queue timed out is that the work will never
1340 * finish, then it does no good to call flush/stop thread, so
1341 * return anyway.
1342 */
1343 if (ret) {
1344 dev_err(&master->dev, "problem destroying queue\n");
1345 return ret;
1346 }
1347
1348 flush_kthread_worker(&master->kworker);
1349 kthread_stop(master->kworker_task);
1350
1351 return 0;
1352}
1353
Mark Brown0461a412014-12-09 21:38:05 +00001354static int __spi_queued_transfer(struct spi_device *spi,
1355 struct spi_message *msg,
1356 bool need_pump)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001357{
1358 struct spi_master *master = spi->master;
1359 unsigned long flags;
1360
1361 spin_lock_irqsave(&master->queue_lock, flags);
1362
1363 if (!master->running) {
1364 spin_unlock_irqrestore(&master->queue_lock, flags);
1365 return -ESHUTDOWN;
1366 }
1367 msg->actual_length = 0;
1368 msg->status = -EINPROGRESS;
1369
1370 list_add_tail(&msg->queue, &master->queue);
Mark Brown0461a412014-12-09 21:38:05 +00001371 if (!master->busy && need_pump)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001372 queue_kthread_work(&master->kworker, &master->pump_messages);
1373
1374 spin_unlock_irqrestore(&master->queue_lock, flags);
1375 return 0;
1376}
1377
Mark Brown0461a412014-12-09 21:38:05 +00001378/**
1379 * spi_queued_transfer - transfer function for queued transfers
1380 * @spi: spi device which is requesting transfer
1381 * @msg: spi message which is to handled is queued to driver queue
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001382 *
1383 * Return: zero on success, else a negative error code.
Mark Brown0461a412014-12-09 21:38:05 +00001384 */
1385static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
1386{
1387 return __spi_queued_transfer(spi, msg, true);
1388}
1389
Linus Walleijffbbdd212012-02-22 10:05:38 +01001390static int spi_master_initialize_queue(struct spi_master *master)
1391{
1392 int ret;
1393
Linus Walleijffbbdd212012-02-22 10:05:38 +01001394 master->transfer = spi_queued_transfer;
Mark Brownb1589352013-10-05 11:50:40 +01001395 if (!master->transfer_one_message)
1396 master->transfer_one_message = spi_transfer_one_message;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001397
1398 /* Initialize and start queue */
1399 ret = spi_init_queue(master);
1400 if (ret) {
1401 dev_err(&master->dev, "problem initializing queue\n");
1402 goto err_init_queue;
1403 }
Mark Brownc3676d52014-05-01 10:47:52 -07001404 master->queued = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001405 ret = spi_start_queue(master);
1406 if (ret) {
1407 dev_err(&master->dev, "problem starting queue\n");
1408 goto err_start_queue;
1409 }
1410
1411 return 0;
1412
1413err_start_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001414 spi_destroy_queue(master);
Mark Brownc3676d52014-05-01 10:47:52 -07001415err_init_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001416 return ret;
1417}
1418
1419/*-------------------------------------------------------------------------*/
1420
Andreas Larsson7cb94362012-12-04 15:09:38 +01001421#if defined(CONFIG_OF)
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001422static struct spi_device *
1423of_register_spi_device(struct spi_master *master, struct device_node *nc)
1424{
1425 struct spi_device *spi;
1426 int rc;
1427 u32 value;
1428
1429 /* Alloc an spi_device */
1430 spi = spi_alloc_device(master);
1431 if (!spi) {
1432 dev_err(&master->dev, "spi_device alloc error for %s\n",
1433 nc->full_name);
1434 rc = -ENOMEM;
1435 goto err_out;
1436 }
1437
1438 /* Select device driver */
1439 rc = of_modalias_node(nc, spi->modalias,
1440 sizeof(spi->modalias));
1441 if (rc < 0) {
1442 dev_err(&master->dev, "cannot find modalias for %s\n",
1443 nc->full_name);
1444 goto err_out;
1445 }
1446
1447 /* Device address */
1448 rc = of_property_read_u32(nc, "reg", &value);
1449 if (rc) {
1450 dev_err(&master->dev, "%s has no valid 'reg' property (%d)\n",
1451 nc->full_name, rc);
1452 goto err_out;
1453 }
1454 spi->chip_select = value;
1455
1456 /* Mode (clock phase/polarity/etc.) */
1457 if (of_find_property(nc, "spi-cpha", NULL))
1458 spi->mode |= SPI_CPHA;
1459 if (of_find_property(nc, "spi-cpol", NULL))
1460 spi->mode |= SPI_CPOL;
1461 if (of_find_property(nc, "spi-cs-high", NULL))
1462 spi->mode |= SPI_CS_HIGH;
1463 if (of_find_property(nc, "spi-3wire", NULL))
1464 spi->mode |= SPI_3WIRE;
1465 if (of_find_property(nc, "spi-lsb-first", NULL))
1466 spi->mode |= SPI_LSB_FIRST;
1467
1468 /* Device DUAL/QUAD mode */
1469 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
1470 switch (value) {
1471 case 1:
1472 break;
1473 case 2:
1474 spi->mode |= SPI_TX_DUAL;
1475 break;
1476 case 4:
1477 spi->mode |= SPI_TX_QUAD;
1478 break;
1479 default:
1480 dev_warn(&master->dev,
1481 "spi-tx-bus-width %d not supported\n",
1482 value);
1483 break;
1484 }
1485 }
1486
1487 if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
1488 switch (value) {
1489 case 1:
1490 break;
1491 case 2:
1492 spi->mode |= SPI_RX_DUAL;
1493 break;
1494 case 4:
1495 spi->mode |= SPI_RX_QUAD;
1496 break;
1497 default:
1498 dev_warn(&master->dev,
1499 "spi-rx-bus-width %d not supported\n",
1500 value);
1501 break;
1502 }
1503 }
1504
1505 /* Device speed */
1506 rc = of_property_read_u32(nc, "spi-max-frequency", &value);
1507 if (rc) {
1508 dev_err(&master->dev, "%s has no valid 'spi-max-frequency' property (%d)\n",
1509 nc->full_name, rc);
1510 goto err_out;
1511 }
1512 spi->max_speed_hz = value;
1513
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001514 /* Store a pointer to the node in the device structure */
1515 of_node_get(nc);
1516 spi->dev.of_node = nc;
1517
1518 /* Register the new device */
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001519 rc = spi_add_device(spi);
1520 if (rc) {
1521 dev_err(&master->dev, "spi_device register error %s\n",
1522 nc->full_name);
1523 goto err_out;
1524 }
1525
1526 return spi;
1527
1528err_out:
1529 spi_dev_put(spi);
1530 return ERR_PTR(rc);
1531}
1532
Grant Likelyd57a4282012-04-07 14:16:53 -06001533/**
1534 * of_register_spi_devices() - Register child devices onto the SPI bus
1535 * @master: Pointer to spi_master device
1536 *
1537 * Registers an spi_device for each child node of master node which has a 'reg'
1538 * property.
1539 */
1540static void of_register_spi_devices(struct spi_master *master)
1541{
1542 struct spi_device *spi;
1543 struct device_node *nc;
Grant Likelyd57a4282012-04-07 14:16:53 -06001544
1545 if (!master->dev.of_node)
1546 return;
1547
Alexander Sverdlinf3b61592012-11-29 08:59:29 +01001548 for_each_available_child_of_node(master->dev.of_node, nc) {
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001549 spi = of_register_spi_device(master, nc);
1550 if (IS_ERR(spi))
1551 dev_warn(&master->dev, "Failed to create SPI device for %s\n",
Grant Likelyd57a4282012-04-07 14:16:53 -06001552 nc->full_name);
Grant Likelyd57a4282012-04-07 14:16:53 -06001553 }
1554}
1555#else
1556static void of_register_spi_devices(struct spi_master *master) { }
1557#endif
1558
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001559#ifdef CONFIG_ACPI
1560static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
1561{
1562 struct spi_device *spi = data;
1563
1564 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1565 struct acpi_resource_spi_serialbus *sb;
1566
1567 sb = &ares->data.spi_serial_bus;
1568 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
1569 spi->chip_select = sb->device_selection;
1570 spi->max_speed_hz = sb->connection_speed;
1571
1572 if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
1573 spi->mode |= SPI_CPHA;
1574 if (sb->clock_polarity == ACPI_SPI_START_HIGH)
1575 spi->mode |= SPI_CPOL;
1576 if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
1577 spi->mode |= SPI_CS_HIGH;
1578 }
1579 } else if (spi->irq < 0) {
1580 struct resource r;
1581
1582 if (acpi_dev_resource_interrupt(ares, 0, &r))
1583 spi->irq = r.start;
1584 }
1585
1586 /* Always tell the ACPI core to skip this resource */
1587 return 1;
1588}
1589
1590static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
1591 void *data, void **return_value)
1592{
1593 struct spi_master *master = data;
1594 struct list_head resource_list;
1595 struct acpi_device *adev;
1596 struct spi_device *spi;
1597 int ret;
1598
1599 if (acpi_bus_get_device(handle, &adev))
1600 return AE_OK;
1601 if (acpi_bus_get_status(adev) || !adev->status.present)
1602 return AE_OK;
1603
1604 spi = spi_alloc_device(master);
1605 if (!spi) {
1606 dev_err(&master->dev, "failed to allocate SPI device for %s\n",
1607 dev_name(&adev->dev));
1608 return AE_NO_MEMORY;
1609 }
1610
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001611 ACPI_COMPANION_SET(&spi->dev, adev);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001612 spi->irq = -1;
1613
1614 INIT_LIST_HEAD(&resource_list);
1615 ret = acpi_dev_get_resources(adev, &resource_list,
1616 acpi_spi_add_resource, spi);
1617 acpi_dev_free_resource_list(&resource_list);
1618
1619 if (ret < 0 || !spi->max_speed_hz) {
1620 spi_dev_put(spi);
1621 return AE_OK;
1622 }
1623
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001624 adev->power.flags.ignore_parent = true;
Jarkko Nikulacf9eb392013-10-10 17:19:17 +03001625 strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias));
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001626 if (spi_add_device(spi)) {
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001627 adev->power.flags.ignore_parent = false;
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001628 dev_err(&master->dev, "failed to add SPI device %s from ACPI\n",
1629 dev_name(&adev->dev));
1630 spi_dev_put(spi);
1631 }
1632
1633 return AE_OK;
1634}
1635
1636static void acpi_register_spi_devices(struct spi_master *master)
1637{
1638 acpi_status status;
1639 acpi_handle handle;
1640
Rafael J. Wysocki29896172013-04-01 00:21:08 +00001641 handle = ACPI_HANDLE(master->dev.parent);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001642 if (!handle)
1643 return;
1644
1645 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1646 acpi_spi_add_device, NULL,
1647 master, NULL);
1648 if (ACPI_FAILURE(status))
1649 dev_warn(&master->dev, "failed to enumerate SPI slaves\n");
1650}
1651#else
1652static inline void acpi_register_spi_devices(struct spi_master *master) {}
1653#endif /* CONFIG_ACPI */
1654
Tony Jones49dce682007-10-16 01:27:48 -07001655static void spi_master_release(struct device *dev)
David Brownell8ae12a02006-01-08 13:34:19 -08001656{
1657 struct spi_master *master;
1658
Tony Jones49dce682007-10-16 01:27:48 -07001659 master = container_of(dev, struct spi_master, dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001660 kfree(master);
1661}
1662
1663static struct class spi_master_class = {
1664 .name = "spi_master",
1665 .owner = THIS_MODULE,
Tony Jones49dce682007-10-16 01:27:48 -07001666 .dev_release = spi_master_release,
Martin Sperleca2ebc2015-06-22 13:00:36 +00001667 .dev_groups = spi_master_groups,
David Brownell8ae12a02006-01-08 13:34:19 -08001668};
1669
1670
1671/**
1672 * spi_alloc_master - allocate SPI master controller
1673 * @dev: the controller, possibly using the platform_bus
David Brownell33e34dc2007-05-08 00:32:21 -07001674 * @size: how much zeroed driver-private data to allocate; the pointer to this
Tony Jones49dce682007-10-16 01:27:48 -07001675 * memory is in the driver_data field of the returned device,
David Brownell0c868462006-01-08 13:34:25 -08001676 * accessible with spi_master_get_devdata().
David Brownell33e34dc2007-05-08 00:32:21 -07001677 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001678 *
1679 * This call is used only by SPI master controller drivers, which are the
1680 * only ones directly touching chip registers. It's how they allocate
dmitry pervushinba1a0512006-05-20 15:00:14 -07001681 * an spi_master structure, prior to calling spi_register_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001682 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001683 * This must be called from context that can sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08001684 *
1685 * The caller is responsible for assigning the bus number and initializing
dmitry pervushinba1a0512006-05-20 15:00:14 -07001686 * the master's methods before calling spi_register_master(); and (after errors
Guenter Roecka394d632015-09-06 01:46:54 +03001687 * adding the device) calling spi_master_put() to prevent a memory leak.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001688 *
1689 * Return: the SPI master structure on success, else NULL.
David Brownell8ae12a02006-01-08 13:34:19 -08001690 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001691struct spi_master *spi_alloc_master(struct device *dev, unsigned size)
David Brownell8ae12a02006-01-08 13:34:19 -08001692{
1693 struct spi_master *master;
1694
David Brownell0c868462006-01-08 13:34:25 -08001695 if (!dev)
1696 return NULL;
1697
Jingoo Han5fe5f052013-10-14 10:31:51 +09001698 master = kzalloc(size + sizeof(*master), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -08001699 if (!master)
1700 return NULL;
1701
Tony Jones49dce682007-10-16 01:27:48 -07001702 device_initialize(&master->dev);
Grant Likely1e8a52e2012-05-19 23:42:08 -06001703 master->bus_num = -1;
1704 master->num_chipselect = 1;
Tony Jones49dce682007-10-16 01:27:48 -07001705 master->dev.class = &spi_master_class;
1706 master->dev.parent = get_device(dev);
David Brownell0c868462006-01-08 13:34:25 -08001707 spi_master_set_devdata(master, &master[1]);
David Brownell8ae12a02006-01-08 13:34:19 -08001708
1709 return master;
1710}
1711EXPORT_SYMBOL_GPL(spi_alloc_master);
1712
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001713#ifdef CONFIG_OF
1714static int of_spi_register_master(struct spi_master *master)
1715{
Grant Likelye80beb22013-02-12 17:48:37 +00001716 int nb, i, *cs;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001717 struct device_node *np = master->dev.of_node;
1718
1719 if (!np)
1720 return 0;
1721
1722 nb = of_gpio_named_count(np, "cs-gpios");
Jingoo Han5fe5f052013-10-14 10:31:51 +09001723 master->num_chipselect = max_t(int, nb, master->num_chipselect);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001724
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001725 /* Return error only for an incorrectly formed cs-gpios property */
1726 if (nb == 0 || nb == -ENOENT)
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001727 return 0;
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001728 else if (nb < 0)
1729 return nb;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001730
1731 cs = devm_kzalloc(&master->dev,
1732 sizeof(int) * master->num_chipselect,
1733 GFP_KERNEL);
1734 master->cs_gpios = cs;
1735
1736 if (!master->cs_gpios)
1737 return -ENOMEM;
1738
Andreas Larsson0da83bb2013-01-29 15:53:40 +01001739 for (i = 0; i < master->num_chipselect; i++)
Andreas Larsson446411e2013-02-13 14:20:25 +01001740 cs[i] = -ENOENT;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001741
1742 for (i = 0; i < nb; i++)
1743 cs[i] = of_get_named_gpio(np, "cs-gpios", i);
1744
1745 return 0;
1746}
1747#else
1748static int of_spi_register_master(struct spi_master *master)
1749{
1750 return 0;
1751}
1752#endif
1753
David Brownell8ae12a02006-01-08 13:34:19 -08001754/**
1755 * spi_register_master - register SPI master controller
1756 * @master: initialized master, originally from spi_alloc_master()
David Brownell33e34dc2007-05-08 00:32:21 -07001757 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001758 *
1759 * SPI master controllers connect to their drivers using some non-SPI bus,
1760 * such as the platform bus. The final stage of probe() in that code
1761 * includes calling spi_register_master() to hook up to this SPI bus glue.
1762 *
1763 * SPI controllers use board specific (often SOC specific) bus numbers,
1764 * and board-specific addressing for SPI devices combines those numbers
1765 * with chip select numbers. Since SPI does not directly support dynamic
1766 * device identification, boards need configuration tables telling which
1767 * chip is at which address.
1768 *
1769 * This must be called from context that can sleep. It returns zero on
1770 * success, else a negative error code (dropping the master's refcount).
David Brownell0c868462006-01-08 13:34:25 -08001771 * After a successful return, the caller is responsible for calling
1772 * spi_unregister_master().
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001773 *
1774 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08001775 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001776int spi_register_master(struct spi_master *master)
David Brownell8ae12a02006-01-08 13:34:19 -08001777{
David Brownelle44a45a2007-06-03 13:50:40 -07001778 static atomic_t dyn_bus_id = ATOMIC_INIT((1<<15) - 1);
Tony Jones49dce682007-10-16 01:27:48 -07001779 struct device *dev = master->dev.parent;
Feng Tang2b9603a2010-08-02 15:52:15 +08001780 struct boardinfo *bi;
David Brownell8ae12a02006-01-08 13:34:19 -08001781 int status = -ENODEV;
1782 int dynamic = 0;
1783
David Brownell0c868462006-01-08 13:34:25 -08001784 if (!dev)
1785 return -ENODEV;
1786
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001787 status = of_spi_register_master(master);
1788 if (status)
1789 return status;
1790
David Brownell082c8cb2007-07-31 00:39:45 -07001791 /* even if it's just one always-selected device, there must
1792 * be at least one chipselect
1793 */
1794 if (master->num_chipselect == 0)
1795 return -EINVAL;
1796
Grant Likelybb297852012-12-21 19:32:09 +00001797 if ((master->bus_num < 0) && master->dev.of_node)
1798 master->bus_num = of_alias_get_id(master->dev.of_node, "spi");
1799
David Brownell8ae12a02006-01-08 13:34:19 -08001800 /* convention: dynamically assigned bus IDs count down from the max */
David Brownella020ed72006-04-03 15:49:04 -07001801 if (master->bus_num < 0) {
David Brownell082c8cb2007-07-31 00:39:45 -07001802 /* FIXME switch to an IDR based scheme, something like
1803 * I2C now uses, so we can't run out of "dynamic" IDs
1804 */
David Brownell8ae12a02006-01-08 13:34:19 -08001805 master->bus_num = atomic_dec_return(&dyn_bus_id);
David Brownellb8852442006-01-08 13:34:23 -08001806 dynamic = 1;
David Brownell8ae12a02006-01-08 13:34:19 -08001807 }
1808
Mark Brown5424d432014-12-10 17:40:53 +00001809 INIT_LIST_HEAD(&master->queue);
1810 spin_lock_init(&master->queue_lock);
Ernst Schwabcf32b712010-06-28 17:49:29 -07001811 spin_lock_init(&master->bus_lock_spinlock);
1812 mutex_init(&master->bus_lock_mutex);
1813 master->bus_lock_flag = 0;
Mark Brownb1589352013-10-05 11:50:40 +01001814 init_completion(&master->xfer_completion);
Mark Brown6ad45a22014-02-02 13:47:47 +00001815 if (!master->max_dma_len)
1816 master->max_dma_len = INT_MAX;
Ernst Schwabcf32b712010-06-28 17:49:29 -07001817
David Brownell8ae12a02006-01-08 13:34:19 -08001818 /* register the device, then userspace will see it.
1819 * registration fails if the bus ID is in use.
1820 */
Kay Sievers35f74fc2009-01-06 10:44:37 -08001821 dev_set_name(&master->dev, "spi%u", master->bus_num);
Tony Jones49dce682007-10-16 01:27:48 -07001822 status = device_add(&master->dev);
David Brownellb8852442006-01-08 13:34:23 -08001823 if (status < 0)
David Brownell8ae12a02006-01-08 13:34:19 -08001824 goto done;
Kay Sievers35f74fc2009-01-06 10:44:37 -08001825 dev_dbg(dev, "registered master %s%s\n", dev_name(&master->dev),
David Brownell8ae12a02006-01-08 13:34:19 -08001826 dynamic ? " (dynamic)" : "");
1827
Linus Walleijffbbdd212012-02-22 10:05:38 +01001828 /* If we're using a queued driver, start the queue */
1829 if (master->transfer)
1830 dev_info(dev, "master is unqueued, this is deprecated\n");
1831 else {
1832 status = spi_master_initialize_queue(master);
1833 if (status) {
Axel Line93b0722013-08-31 20:25:52 +08001834 device_del(&master->dev);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001835 goto done;
1836 }
1837 }
Martin Sperleca2ebc2015-06-22 13:00:36 +00001838 /* add statistics */
1839 spin_lock_init(&master->statistics.lock);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001840
Feng Tang2b9603a2010-08-02 15:52:15 +08001841 mutex_lock(&board_lock);
1842 list_add_tail(&master->list, &spi_master_list);
1843 list_for_each_entry(bi, &board_list, list)
1844 spi_match_master_to_boardinfo(master, &bi->board_info);
1845 mutex_unlock(&board_lock);
1846
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001847 /* Register devices from the device tree and ACPI */
Anatolij Gustschin12b15e82010-07-27 22:35:58 +02001848 of_register_spi_devices(master);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001849 acpi_register_spi_devices(master);
David Brownell8ae12a02006-01-08 13:34:19 -08001850done:
1851 return status;
1852}
1853EXPORT_SYMBOL_GPL(spi_register_master);
1854
Mark Brown666d5b42013-08-31 18:50:52 +01001855static void devm_spi_unregister(struct device *dev, void *res)
1856{
1857 spi_unregister_master(*(struct spi_master **)res);
1858}
1859
1860/**
1861 * dev_spi_register_master - register managed SPI master controller
1862 * @dev: device managing SPI master
1863 * @master: initialized master, originally from spi_alloc_master()
1864 * Context: can sleep
1865 *
1866 * Register a SPI device as with spi_register_master() which will
1867 * automatically be unregister
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001868 *
1869 * Return: zero on success, else a negative error code.
Mark Brown666d5b42013-08-31 18:50:52 +01001870 */
1871int devm_spi_register_master(struct device *dev, struct spi_master *master)
1872{
1873 struct spi_master **ptr;
1874 int ret;
1875
1876 ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL);
1877 if (!ptr)
1878 return -ENOMEM;
1879
1880 ret = spi_register_master(master);
Stephen Warren4b928942013-11-21 16:11:15 -07001881 if (!ret) {
Mark Brown666d5b42013-08-31 18:50:52 +01001882 *ptr = master;
1883 devres_add(dev, ptr);
1884 } else {
1885 devres_free(ptr);
1886 }
1887
1888 return ret;
1889}
1890EXPORT_SYMBOL_GPL(devm_spi_register_master);
1891
David Lamparter34860082010-08-30 23:54:17 +02001892static int __unregister(struct device *dev, void *null)
David Brownell8ae12a02006-01-08 13:34:19 -08001893{
David Lamparter34860082010-08-30 23:54:17 +02001894 spi_unregister_device(to_spi_device(dev));
David Brownell8ae12a02006-01-08 13:34:19 -08001895 return 0;
1896}
1897
1898/**
1899 * spi_unregister_master - unregister SPI master controller
1900 * @master: the master being unregistered
David Brownell33e34dc2007-05-08 00:32:21 -07001901 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001902 *
1903 * This call is used only by SPI master controller drivers, which are the
1904 * only ones directly touching chip registers.
1905 *
1906 * This must be called from context that can sleep.
1907 */
1908void spi_unregister_master(struct spi_master *master)
1909{
Jeff Garzik89fc9a12006-12-06 20:35:35 -08001910 int dummy;
1911
Linus Walleijffbbdd212012-02-22 10:05:38 +01001912 if (master->queued) {
1913 if (spi_destroy_queue(master))
1914 dev_err(&master->dev, "queue remove failed\n");
1915 }
1916
Feng Tang2b9603a2010-08-02 15:52:15 +08001917 mutex_lock(&board_lock);
1918 list_del(&master->list);
1919 mutex_unlock(&board_lock);
1920
Sebastian Andrzej Siewior97dbf372010-12-21 17:24:31 -08001921 dummy = device_for_each_child(&master->dev, NULL, __unregister);
Tony Jones49dce682007-10-16 01:27:48 -07001922 device_unregister(&master->dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001923}
1924EXPORT_SYMBOL_GPL(spi_unregister_master);
1925
Linus Walleijffbbdd212012-02-22 10:05:38 +01001926int spi_master_suspend(struct spi_master *master)
1927{
1928 int ret;
1929
1930 /* Basically no-ops for non-queued masters */
1931 if (!master->queued)
1932 return 0;
1933
1934 ret = spi_stop_queue(master);
1935 if (ret)
1936 dev_err(&master->dev, "queue stop failed\n");
1937
1938 return ret;
1939}
1940EXPORT_SYMBOL_GPL(spi_master_suspend);
1941
1942int spi_master_resume(struct spi_master *master)
1943{
1944 int ret;
1945
1946 if (!master->queued)
1947 return 0;
1948
1949 ret = spi_start_queue(master);
1950 if (ret)
1951 dev_err(&master->dev, "queue restart failed\n");
1952
1953 return ret;
1954}
1955EXPORT_SYMBOL_GPL(spi_master_resume);
1956
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001957static int __spi_master_match(struct device *dev, const void *data)
Dave Young5ed2c832008-01-22 15:14:18 +08001958{
1959 struct spi_master *m;
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001960 const u16 *bus_num = data;
Dave Young5ed2c832008-01-22 15:14:18 +08001961
1962 m = container_of(dev, struct spi_master, dev);
1963 return m->bus_num == *bus_num;
1964}
1965
David Brownell8ae12a02006-01-08 13:34:19 -08001966/**
1967 * spi_busnum_to_master - look up master associated with bus_num
1968 * @bus_num: the master's bus number
David Brownell33e34dc2007-05-08 00:32:21 -07001969 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001970 *
1971 * This call may be used with devices that are registered after
1972 * arch init time. It returns a refcounted pointer to the relevant
1973 * spi_master (which the caller must release), or NULL if there is
1974 * no such master registered.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001975 *
1976 * Return: the SPI master structure on success, else NULL.
David Brownell8ae12a02006-01-08 13:34:19 -08001977 */
1978struct spi_master *spi_busnum_to_master(u16 bus_num)
1979{
Tony Jones49dce682007-10-16 01:27:48 -07001980 struct device *dev;
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001981 struct spi_master *master = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -08001982
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04001983 dev = class_find_device(&spi_master_class, NULL, &bus_num,
Dave Young5ed2c832008-01-22 15:14:18 +08001984 __spi_master_match);
1985 if (dev)
1986 master = container_of(dev, struct spi_master, dev);
1987 /* reference got in class_find_device */
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08001988 return master;
David Brownell8ae12a02006-01-08 13:34:19 -08001989}
1990EXPORT_SYMBOL_GPL(spi_busnum_to_master);
1991
1992
1993/*-------------------------------------------------------------------------*/
1994
David Brownell7d077192009-06-17 16:26:03 -07001995/* Core methods for SPI master protocol drivers. Some of the
1996 * other core methods are currently defined as inline functions.
1997 */
1998
Stefan Brüns63ab6452015-08-23 16:06:30 +02001999static int __spi_validate_bits_per_word(struct spi_master *master, u8 bits_per_word)
2000{
2001 if (master->bits_per_word_mask) {
2002 /* Only 32 bits fit in the mask */
2003 if (bits_per_word > 32)
2004 return -EINVAL;
2005 if (!(master->bits_per_word_mask &
2006 SPI_BPW_MASK(bits_per_word)))
2007 return -EINVAL;
2008 }
2009
2010 return 0;
2011}
2012
David Brownell7d077192009-06-17 16:26:03 -07002013/**
2014 * spi_setup - setup SPI mode and clock rate
2015 * @spi: the device whose settings are being modified
2016 * Context: can sleep, and no requests are queued to the device
2017 *
2018 * SPI protocol drivers may need to update the transfer mode if the
2019 * device doesn't work with its default. They may likewise need
2020 * to update clock rates or word sizes from initial values. This function
2021 * changes those settings, and must be called from a context that can sleep.
2022 * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
2023 * effect the next time the device is selected and data is transferred to
2024 * or from it. When this function returns, the spi device is deselected.
2025 *
2026 * Note that this call will fail if the protocol driver specifies an option
2027 * that the underlying controller or its driver does not support. For
2028 * example, not all hardware supports wire transfers using nine bit words,
2029 * LSB-first wire encoding, or active-high chipselects.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002030 *
2031 * Return: zero on success, else a negative error code.
David Brownell7d077192009-06-17 16:26:03 -07002032 */
2033int spi_setup(struct spi_device *spi)
2034{
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02002035 unsigned bad_bits, ugly_bits;
Andy Shevchenko5ab8d262015-10-14 22:43:07 +03002036 int status;
David Brownell7d077192009-06-17 16:26:03 -07002037
wangyuhangf477b7f2013-08-11 18:15:17 +08002038 /* check mode to prevent that DUAL and QUAD set at the same time
2039 */
2040 if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) ||
2041 ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) {
2042 dev_err(&spi->dev,
2043 "setup: can not select dual and quad at the same time\n");
2044 return -EINVAL;
2045 }
2046 /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
2047 */
2048 if ((spi->mode & SPI_3WIRE) && (spi->mode &
2049 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)))
2050 return -EINVAL;
David Brownelle7db06b2009-06-17 16:26:04 -07002051 /* help drivers fail *cleanly* when they need options
2052 * that aren't supported with their current master
2053 */
2054 bad_bits = spi->mode & ~spi->master->mode_bits;
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02002055 ugly_bits = bad_bits &
2056 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD);
2057 if (ugly_bits) {
2058 dev_warn(&spi->dev,
2059 "setup: ignoring unsupported mode bits %x\n",
2060 ugly_bits);
2061 spi->mode &= ~ugly_bits;
2062 bad_bits &= ~ugly_bits;
2063 }
David Brownelle7db06b2009-06-17 16:26:04 -07002064 if (bad_bits) {
Linus Walleijeb288a12010-10-21 21:06:44 +02002065 dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
David Brownelle7db06b2009-06-17 16:26:04 -07002066 bad_bits);
2067 return -EINVAL;
2068 }
2069
David Brownell7d077192009-06-17 16:26:03 -07002070 if (!spi->bits_per_word)
2071 spi->bits_per_word = 8;
2072
Andy Shevchenko5ab8d262015-10-14 22:43:07 +03002073 status = __spi_validate_bits_per_word(spi->master, spi->bits_per_word);
2074 if (status)
2075 return status;
Stefan Brüns63ab6452015-08-23 16:06:30 +02002076
Axel Lin052eb2d42014-02-10 00:08:05 +08002077 if (!spi->max_speed_hz)
2078 spi->max_speed_hz = spi->master->max_speed_hz;
2079
Laxman Dewangancaae0702012-11-09 14:35:22 +05302080 if (spi->master->setup)
2081 status = spi->master->setup(spi);
David Brownell7d077192009-06-17 16:26:03 -07002082
Franklin S Cooper Jrabeedb02015-10-16 10:29:03 -05002083 spi_set_cs(spi, false);
2084
Jingoo Han5fe5f052013-10-14 10:31:51 +09002085 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 -07002086 (int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
2087 (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
2088 (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
2089 (spi->mode & SPI_3WIRE) ? "3wire, " : "",
2090 (spi->mode & SPI_LOOP) ? "loopback, " : "",
2091 spi->bits_per_word, spi->max_speed_hz,
2092 status);
2093
2094 return status;
2095}
2096EXPORT_SYMBOL_GPL(spi_setup);
2097
Mark Brown90808732013-11-13 23:44:15 +00002098static int __spi_validate(struct spi_device *spi, struct spi_message *message)
Ernst Schwabcf32b712010-06-28 17:49:29 -07002099{
2100 struct spi_master *master = spi->master;
Laxman Dewangane6811d12012-11-09 14:36:45 +05302101 struct spi_transfer *xfer;
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09002102 int w_size;
Ernst Schwabcf32b712010-06-28 17:49:29 -07002103
Mark Brown24a00132013-07-10 15:05:40 +01002104 if (list_empty(&message->transfers))
2105 return -EINVAL;
Mark Brown24a00132013-07-10 15:05:40 +01002106
Ernst Schwabcf32b712010-06-28 17:49:29 -07002107 /* Half-duplex links include original MicroWire, and ones with
2108 * only one data pin like SPI_3WIRE (switches direction) or where
2109 * either MOSI or MISO is missing. They can also be caused by
2110 * software limitations.
2111 */
2112 if ((master->flags & SPI_MASTER_HALF_DUPLEX)
2113 || (spi->mode & SPI_3WIRE)) {
Ernst Schwabcf32b712010-06-28 17:49:29 -07002114 unsigned flags = master->flags;
2115
2116 list_for_each_entry(xfer, &message->transfers, transfer_list) {
2117 if (xfer->rx_buf && xfer->tx_buf)
2118 return -EINVAL;
2119 if ((flags & SPI_MASTER_NO_TX) && xfer->tx_buf)
2120 return -EINVAL;
2121 if ((flags & SPI_MASTER_NO_RX) && xfer->rx_buf)
2122 return -EINVAL;
2123 }
2124 }
2125
Laxman Dewangane6811d12012-11-09 14:36:45 +05302126 /**
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05302127 * Set transfer bits_per_word and max speed as spi device default if
2128 * it is not set for this transfer.
wangyuhangf477b7f2013-08-11 18:15:17 +08002129 * Set transfer tx_nbits and rx_nbits as single transfer default
2130 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
Laxman Dewangane6811d12012-11-09 14:36:45 +05302131 */
2132 list_for_each_entry(xfer, &message->transfers, transfer_list) {
Sourav Poddar078726c2013-07-18 15:31:25 +05302133 message->frame_length += xfer->len;
Laxman Dewangane6811d12012-11-09 14:36:45 +05302134 if (!xfer->bits_per_word)
2135 xfer->bits_per_word = spi->bits_per_word;
Axel Lina6f87fa2014-03-17 10:08:12 +08002136
2137 if (!xfer->speed_hz)
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05302138 xfer->speed_hz = spi->max_speed_hz;
Mark Brown7dc9fbc2015-08-20 11:52:18 -07002139 if (!xfer->speed_hz)
2140 xfer->speed_hz = master->max_speed_hz;
Axel Lina6f87fa2014-03-17 10:08:12 +08002141
2142 if (master->max_speed_hz &&
2143 xfer->speed_hz > master->max_speed_hz)
2144 xfer->speed_hz = master->max_speed_hz;
Gabor Juhos56ede942013-08-14 10:25:28 +02002145
Stefan Brüns63ab6452015-08-23 16:06:30 +02002146 if (__spi_validate_bits_per_word(master, xfer->bits_per_word))
2147 return -EINVAL;
Mark Browna2fd4f92013-07-10 14:57:26 +01002148
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002149 /*
2150 * SPI transfer length should be multiple of SPI word size
2151 * where SPI word size should be power-of-two multiple
2152 */
2153 if (xfer->bits_per_word <= 8)
2154 w_size = 1;
2155 else if (xfer->bits_per_word <= 16)
2156 w_size = 2;
2157 else
2158 w_size = 4;
2159
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002160 /* No partial transfers accepted */
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09002161 if (xfer->len % w_size)
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002162 return -EINVAL;
2163
Mark Browna2fd4f92013-07-10 14:57:26 +01002164 if (xfer->speed_hz && master->min_speed_hz &&
2165 xfer->speed_hz < master->min_speed_hz)
2166 return -EINVAL;
wangyuhangf477b7f2013-08-11 18:15:17 +08002167
2168 if (xfer->tx_buf && !xfer->tx_nbits)
2169 xfer->tx_nbits = SPI_NBITS_SINGLE;
2170 if (xfer->rx_buf && !xfer->rx_nbits)
2171 xfer->rx_nbits = SPI_NBITS_SINGLE;
2172 /* check transfer tx/rx_nbits:
Geert Uytterhoeven1afd9982014-01-12 14:00:29 +01002173 * 1. check the value matches one of single, dual and quad
2174 * 2. check tx/rx_nbits match the mode in spi_device
wangyuhangf477b7f2013-08-11 18:15:17 +08002175 */
Sourav Poddardb90a442013-08-22 21:20:48 +05302176 if (xfer->tx_buf) {
2177 if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
2178 xfer->tx_nbits != SPI_NBITS_DUAL &&
2179 xfer->tx_nbits != SPI_NBITS_QUAD)
2180 return -EINVAL;
2181 if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
2182 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
2183 return -EINVAL;
2184 if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
2185 !(spi->mode & SPI_TX_QUAD))
2186 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05302187 }
wangyuhangf477b7f2013-08-11 18:15:17 +08002188 /* check transfer rx_nbits */
Sourav Poddardb90a442013-08-22 21:20:48 +05302189 if (xfer->rx_buf) {
2190 if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
2191 xfer->rx_nbits != SPI_NBITS_DUAL &&
2192 xfer->rx_nbits != SPI_NBITS_QUAD)
2193 return -EINVAL;
2194 if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
2195 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
2196 return -EINVAL;
2197 if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
2198 !(spi->mode & SPI_RX_QUAD))
2199 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05302200 }
Laxman Dewangane6811d12012-11-09 14:36:45 +05302201 }
2202
Ernst Schwabcf32b712010-06-28 17:49:29 -07002203 message->status = -EINPROGRESS;
Mark Brown90808732013-11-13 23:44:15 +00002204
2205 return 0;
2206}
2207
2208static int __spi_async(struct spi_device *spi, struct spi_message *message)
2209{
2210 struct spi_master *master = spi->master;
2211
2212 message->spi = spi;
2213
Martin Sperleca2ebc2015-06-22 13:00:36 +00002214 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics, spi_async);
2215 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_async);
2216
Mark Brown90808732013-11-13 23:44:15 +00002217 trace_spi_message_submit(message);
2218
Ernst Schwabcf32b712010-06-28 17:49:29 -07002219 return master->transfer(spi, message);
2220}
2221
David Brownell568d0692009-09-22 16:46:18 -07002222/**
2223 * spi_async - asynchronous SPI transfer
2224 * @spi: device with which data will be exchanged
2225 * @message: describes the data transfers, including completion callback
2226 * Context: any (irqs may be blocked, etc)
2227 *
2228 * This call may be used in_irq and other contexts which can't sleep,
2229 * as well as from task contexts which can sleep.
2230 *
2231 * The completion callback is invoked in a context which can't sleep.
2232 * Before that invocation, the value of message->status is undefined.
2233 * When the callback is issued, message->status holds either zero (to
2234 * indicate complete success) or a negative error code. After that
2235 * callback returns, the driver which issued the transfer request may
2236 * deallocate the associated memory; it's no longer in use by any SPI
2237 * core or controller driver code.
2238 *
2239 * Note that although all messages to a spi_device are handled in
2240 * FIFO order, messages may go to different devices in other orders.
2241 * Some device might be higher priority, or have various "hard" access
2242 * time requirements, for example.
2243 *
2244 * On detection of any fault during the transfer, processing of
2245 * the entire message is aborted, and the device is deselected.
2246 * Until returning from the associated message completion callback,
2247 * no other spi_message queued to that device will be processed.
2248 * (This rule applies equally to all the synchronous transfer calls,
2249 * which are wrappers around this core asynchronous primitive.)
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002250 *
2251 * Return: zero on success, else a negative error code.
David Brownell568d0692009-09-22 16:46:18 -07002252 */
2253int spi_async(struct spi_device *spi, struct spi_message *message)
2254{
2255 struct spi_master *master = spi->master;
Ernst Schwabcf32b712010-06-28 17:49:29 -07002256 int ret;
2257 unsigned long flags;
David Brownell568d0692009-09-22 16:46:18 -07002258
Mark Brown90808732013-11-13 23:44:15 +00002259 ret = __spi_validate(spi, message);
2260 if (ret != 0)
2261 return ret;
2262
Ernst Schwabcf32b712010-06-28 17:49:29 -07002263 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
David Brownell568d0692009-09-22 16:46:18 -07002264
Ernst Schwabcf32b712010-06-28 17:49:29 -07002265 if (master->bus_lock_flag)
2266 ret = -EBUSY;
2267 else
2268 ret = __spi_async(spi, message);
David Brownell568d0692009-09-22 16:46:18 -07002269
Ernst Schwabcf32b712010-06-28 17:49:29 -07002270 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2271
2272 return ret;
David Brownell568d0692009-09-22 16:46:18 -07002273}
2274EXPORT_SYMBOL_GPL(spi_async);
2275
Ernst Schwabcf32b712010-06-28 17:49:29 -07002276/**
2277 * spi_async_locked - version of spi_async with exclusive bus usage
2278 * @spi: device with which data will be exchanged
2279 * @message: describes the data transfers, including completion callback
2280 * Context: any (irqs may be blocked, etc)
2281 *
2282 * This call may be used in_irq and other contexts which can't sleep,
2283 * as well as from task contexts which can sleep.
2284 *
2285 * The completion callback is invoked in a context which can't sleep.
2286 * Before that invocation, the value of message->status is undefined.
2287 * When the callback is issued, message->status holds either zero (to
2288 * indicate complete success) or a negative error code. After that
2289 * callback returns, the driver which issued the transfer request may
2290 * deallocate the associated memory; it's no longer in use by any SPI
2291 * core or controller driver code.
2292 *
2293 * Note that although all messages to a spi_device are handled in
2294 * FIFO order, messages may go to different devices in other orders.
2295 * Some device might be higher priority, or have various "hard" access
2296 * time requirements, for example.
2297 *
2298 * On detection of any fault during the transfer, processing of
2299 * the entire message is aborted, and the device is deselected.
2300 * Until returning from the associated message completion callback,
2301 * no other spi_message queued to that device will be processed.
2302 * (This rule applies equally to all the synchronous transfer calls,
2303 * which are wrappers around this core asynchronous primitive.)
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002304 *
2305 * Return: zero on success, else a negative error code.
Ernst Schwabcf32b712010-06-28 17:49:29 -07002306 */
2307int spi_async_locked(struct spi_device *spi, struct spi_message *message)
2308{
2309 struct spi_master *master = spi->master;
2310 int ret;
2311 unsigned long flags;
2312
Mark Brown90808732013-11-13 23:44:15 +00002313 ret = __spi_validate(spi, message);
2314 if (ret != 0)
2315 return ret;
2316
Ernst Schwabcf32b712010-06-28 17:49:29 -07002317 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2318
2319 ret = __spi_async(spi, message);
2320
2321 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2322
2323 return ret;
2324
2325}
2326EXPORT_SYMBOL_GPL(spi_async_locked);
2327
David Brownell7d077192009-06-17 16:26:03 -07002328
2329/*-------------------------------------------------------------------------*/
2330
2331/* Utility methods for SPI master protocol drivers, layered on
2332 * top of the core. Some other utility methods are defined as
2333 * inline functions.
2334 */
2335
Andrew Morton5d870c82006-01-11 11:23:49 -08002336static void spi_complete(void *arg)
2337{
2338 complete(arg);
2339}
2340
Ernst Schwabcf32b712010-06-28 17:49:29 -07002341static int __spi_sync(struct spi_device *spi, struct spi_message *message,
2342 int bus_locked)
2343{
2344 DECLARE_COMPLETION_ONSTACK(done);
2345 int status;
2346 struct spi_master *master = spi->master;
Mark Brown0461a412014-12-09 21:38:05 +00002347 unsigned long flags;
2348
2349 status = __spi_validate(spi, message);
2350 if (status != 0)
2351 return status;
Ernst Schwabcf32b712010-06-28 17:49:29 -07002352
2353 message->complete = spi_complete;
2354 message->context = &done;
Mark Brown0461a412014-12-09 21:38:05 +00002355 message->spi = spi;
Ernst Schwabcf32b712010-06-28 17:49:29 -07002356
Martin Sperleca2ebc2015-06-22 13:00:36 +00002357 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics, spi_sync);
2358 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_sync);
2359
Ernst Schwabcf32b712010-06-28 17:49:29 -07002360 if (!bus_locked)
2361 mutex_lock(&master->bus_lock_mutex);
2362
Mark Brown0461a412014-12-09 21:38:05 +00002363 /* If we're not using the legacy transfer method then we will
2364 * try to transfer in the calling context so special case.
2365 * This code would be less tricky if we could remove the
2366 * support for driver implemented message queues.
2367 */
2368 if (master->transfer == spi_queued_transfer) {
2369 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2370
2371 trace_spi_message_submit(message);
2372
2373 status = __spi_queued_transfer(spi, message, false);
2374
2375 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2376 } else {
2377 status = spi_async_locked(spi, message);
2378 }
Ernst Schwabcf32b712010-06-28 17:49:29 -07002379
2380 if (!bus_locked)
2381 mutex_unlock(&master->bus_lock_mutex);
2382
2383 if (status == 0) {
Mark Brown0461a412014-12-09 21:38:05 +00002384 /* Push out the messages in the calling context if we
2385 * can.
2386 */
Martin Sperleca2ebc2015-06-22 13:00:36 +00002387 if (master->transfer == spi_queued_transfer) {
2388 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics,
2389 spi_sync_immediate);
2390 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics,
2391 spi_sync_immediate);
Mark Brownfc9e0f72014-12-10 13:46:33 +00002392 __spi_pump_messages(master, false);
Martin Sperleca2ebc2015-06-22 13:00:36 +00002393 }
Mark Brown0461a412014-12-09 21:38:05 +00002394
Ernst Schwabcf32b712010-06-28 17:49:29 -07002395 wait_for_completion(&done);
2396 status = message->status;
2397 }
2398 message->context = NULL;
2399 return status;
2400}
2401
David Brownell8ae12a02006-01-08 13:34:19 -08002402/**
2403 * spi_sync - blocking/synchronous SPI data transfers
2404 * @spi: device with which data will be exchanged
2405 * @message: describes the data transfers
David Brownell33e34dc2007-05-08 00:32:21 -07002406 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002407 *
2408 * This call may only be used from a context that may sleep. The sleep
2409 * is non-interruptible, and has no timeout. Low-overhead controller
2410 * drivers may DMA directly into and out of the message buffers.
2411 *
2412 * Note that the SPI device's chip select is active during the message,
2413 * and then is normally disabled between messages. Drivers for some
2414 * frequently-used devices may want to minimize costs of selecting a chip,
2415 * by leaving it selected in anticipation that the next message will go
2416 * to the same chip. (That may increase power usage.)
2417 *
David Brownell0c868462006-01-08 13:34:25 -08002418 * Also, the caller is guaranteeing that the memory associated with the
2419 * message will not be freed before this call returns.
2420 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002421 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002422 */
2423int spi_sync(struct spi_device *spi, struct spi_message *message)
2424{
Ernst Schwabcf32b712010-06-28 17:49:29 -07002425 return __spi_sync(spi, message, 0);
David Brownell8ae12a02006-01-08 13:34:19 -08002426}
2427EXPORT_SYMBOL_GPL(spi_sync);
2428
Ernst Schwabcf32b712010-06-28 17:49:29 -07002429/**
2430 * spi_sync_locked - version of spi_sync with exclusive bus usage
2431 * @spi: device with which data will be exchanged
2432 * @message: describes the data transfers
2433 * Context: can sleep
2434 *
2435 * This call may only be used from a context that may sleep. The sleep
2436 * is non-interruptible, and has no timeout. Low-overhead controller
2437 * drivers may DMA directly into and out of the message buffers.
2438 *
2439 * This call should be used by drivers that require exclusive access to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002440 * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
Ernst Schwabcf32b712010-06-28 17:49:29 -07002441 * be released by a spi_bus_unlock call when the exclusive access is over.
2442 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002443 * Return: zero on success, else a negative error code.
Ernst Schwabcf32b712010-06-28 17:49:29 -07002444 */
2445int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
2446{
2447 return __spi_sync(spi, message, 1);
2448}
2449EXPORT_SYMBOL_GPL(spi_sync_locked);
2450
2451/**
2452 * spi_bus_lock - obtain a lock for exclusive SPI bus usage
2453 * @master: SPI bus master that should be locked for exclusive bus access
2454 * Context: can sleep
2455 *
2456 * This call may only be used from a context that may sleep. The sleep
2457 * is non-interruptible, and has no timeout.
2458 *
2459 * This call should be used by drivers that require exclusive access to the
2460 * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
2461 * exclusive access is over. Data transfer must be done by spi_sync_locked
2462 * and spi_async_locked calls when the SPI bus lock is held.
2463 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002464 * Return: always zero.
Ernst Schwabcf32b712010-06-28 17:49:29 -07002465 */
2466int spi_bus_lock(struct spi_master *master)
2467{
2468 unsigned long flags;
2469
2470 mutex_lock(&master->bus_lock_mutex);
2471
2472 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2473 master->bus_lock_flag = 1;
2474 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2475
2476 /* mutex remains locked until spi_bus_unlock is called */
2477
2478 return 0;
2479}
2480EXPORT_SYMBOL_GPL(spi_bus_lock);
2481
2482/**
2483 * spi_bus_unlock - release the lock for exclusive SPI bus usage
2484 * @master: SPI bus master that was locked for exclusive bus access
2485 * Context: can sleep
2486 *
2487 * This call may only be used from a context that may sleep. The sleep
2488 * is non-interruptible, and has no timeout.
2489 *
2490 * This call releases an SPI bus lock previously obtained by an spi_bus_lock
2491 * call.
2492 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002493 * Return: always zero.
Ernst Schwabcf32b712010-06-28 17:49:29 -07002494 */
2495int spi_bus_unlock(struct spi_master *master)
2496{
2497 master->bus_lock_flag = 0;
2498
2499 mutex_unlock(&master->bus_lock_mutex);
2500
2501 return 0;
2502}
2503EXPORT_SYMBOL_GPL(spi_bus_unlock);
2504
David Brownella9948b62006-04-02 10:37:40 -08002505/* portable code must never pass more than 32 bytes */
Jingoo Han5fe5f052013-10-14 10:31:51 +09002506#define SPI_BUFSIZ max(32, SMP_CACHE_BYTES)
David Brownell8ae12a02006-01-08 13:34:19 -08002507
2508static u8 *buf;
2509
2510/**
2511 * spi_write_then_read - SPI synchronous write followed by read
2512 * @spi: device with which data will be exchanged
2513 * @txbuf: data to be written (need not be dma-safe)
2514 * @n_tx: size of txbuf, in bytes
Jiri Pirko27570492009-06-17 16:26:06 -07002515 * @rxbuf: buffer into which data will be read (need not be dma-safe)
2516 * @n_rx: size of rxbuf, in bytes
David Brownell33e34dc2007-05-08 00:32:21 -07002517 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002518 *
2519 * This performs a half duplex MicroWire style transaction with the
2520 * device, sending txbuf and then reading rxbuf. The return value
2521 * is zero for success, else a negative errno status code.
David Brownellb8852442006-01-08 13:34:23 -08002522 * This call may only be used from a context that may sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08002523 *
David Brownell0c868462006-01-08 13:34:25 -08002524 * Parameters to this routine are always copied using a small buffer;
David Brownell33e34dc2007-05-08 00:32:21 -07002525 * portable code should never use this for more than 32 bytes.
2526 * Performance-sensitive or bulk transfer code should instead use
David Brownell0c868462006-01-08 13:34:25 -08002527 * spi_{async,sync}() calls with dma-safe buffers.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002528 *
2529 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002530 */
2531int spi_write_then_read(struct spi_device *spi,
Mark Brown0c4a1592011-05-11 00:09:30 +02002532 const void *txbuf, unsigned n_tx,
2533 void *rxbuf, unsigned n_rx)
David Brownell8ae12a02006-01-08 13:34:19 -08002534{
David Brownell068f4072007-12-04 23:45:09 -08002535 static DEFINE_MUTEX(lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002536
2537 int status;
2538 struct spi_message message;
David Brownellbdff5492009-04-13 14:39:57 -07002539 struct spi_transfer x[2];
David Brownell8ae12a02006-01-08 13:34:19 -08002540 u8 *local_buf;
2541
Mark Brownb3a223e2012-12-02 12:54:25 +09002542 /* Use preallocated DMA-safe buffer if we can. We can't avoid
2543 * copying here, (as a pure convenience thing), but we can
2544 * keep heap costs out of the hot path unless someone else is
2545 * using the pre-allocated buffer or the transfer is too large.
David Brownell8ae12a02006-01-08 13:34:19 -08002546 */
Mark Brownb3a223e2012-12-02 12:54:25 +09002547 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
Mark Brown2cd94c82013-01-27 14:35:04 +08002548 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
2549 GFP_KERNEL | GFP_DMA);
Mark Brownb3a223e2012-12-02 12:54:25 +09002550 if (!local_buf)
2551 return -ENOMEM;
2552 } else {
2553 local_buf = buf;
2554 }
David Brownell8ae12a02006-01-08 13:34:19 -08002555
Vitaly Wool8275c642006-01-08 13:34:28 -08002556 spi_message_init(&message);
Jingoo Han5fe5f052013-10-14 10:31:51 +09002557 memset(x, 0, sizeof(x));
David Brownellbdff5492009-04-13 14:39:57 -07002558 if (n_tx) {
2559 x[0].len = n_tx;
2560 spi_message_add_tail(&x[0], &message);
2561 }
2562 if (n_rx) {
2563 x[1].len = n_rx;
2564 spi_message_add_tail(&x[1], &message);
2565 }
Vitaly Wool8275c642006-01-08 13:34:28 -08002566
David Brownell8ae12a02006-01-08 13:34:19 -08002567 memcpy(local_buf, txbuf, n_tx);
David Brownellbdff5492009-04-13 14:39:57 -07002568 x[0].tx_buf = local_buf;
2569 x[1].rx_buf = local_buf + n_tx;
David Brownell8ae12a02006-01-08 13:34:19 -08002570
2571 /* do the i/o */
David Brownell8ae12a02006-01-08 13:34:19 -08002572 status = spi_sync(spi, &message);
Marc Pignat9b938b72007-12-04 23:45:10 -08002573 if (status == 0)
David Brownellbdff5492009-04-13 14:39:57 -07002574 memcpy(rxbuf, x[1].rx_buf, n_rx);
David Brownell8ae12a02006-01-08 13:34:19 -08002575
David Brownellbdff5492009-04-13 14:39:57 -07002576 if (x[0].tx_buf == buf)
David Brownell068f4072007-12-04 23:45:09 -08002577 mutex_unlock(&lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002578 else
2579 kfree(local_buf);
2580
2581 return status;
2582}
2583EXPORT_SYMBOL_GPL(spi_write_then_read);
2584
2585/*-------------------------------------------------------------------------*/
2586
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002587#if IS_ENABLED(CONFIG_OF_DYNAMIC)
2588static int __spi_of_device_match(struct device *dev, void *data)
2589{
2590 return dev->of_node == data;
2591}
2592
2593/* must call put_device() when done with returned spi_device device */
2594static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
2595{
2596 struct device *dev = bus_find_device(&spi_bus_type, NULL, node,
2597 __spi_of_device_match);
2598 return dev ? to_spi_device(dev) : NULL;
2599}
2600
2601static int __spi_of_master_match(struct device *dev, const void *data)
2602{
2603 return dev->of_node == data;
2604}
2605
2606/* the spi masters are not using spi_bus, so we find it with another way */
2607static struct spi_master *of_find_spi_master_by_node(struct device_node *node)
2608{
2609 struct device *dev;
2610
2611 dev = class_find_device(&spi_master_class, NULL, node,
2612 __spi_of_master_match);
2613 if (!dev)
2614 return NULL;
2615
2616 /* reference got in class_find_device */
2617 return container_of(dev, struct spi_master, dev);
2618}
2619
2620static int of_spi_notify(struct notifier_block *nb, unsigned long action,
2621 void *arg)
2622{
2623 struct of_reconfig_data *rd = arg;
2624 struct spi_master *master;
2625 struct spi_device *spi;
2626
2627 switch (of_reconfig_get_state_change(action, arg)) {
2628 case OF_RECONFIG_CHANGE_ADD:
2629 master = of_find_spi_master_by_node(rd->dn->parent);
2630 if (master == NULL)
2631 return NOTIFY_OK; /* not for us */
2632
2633 spi = of_register_spi_device(master, rd->dn);
2634 put_device(&master->dev);
2635
2636 if (IS_ERR(spi)) {
2637 pr_err("%s: failed to create for '%s'\n",
2638 __func__, rd->dn->full_name);
2639 return notifier_from_errno(PTR_ERR(spi));
2640 }
2641 break;
2642
2643 case OF_RECONFIG_CHANGE_REMOVE:
2644 /* find our device by node */
2645 spi = of_find_spi_device_by_node(rd->dn);
2646 if (spi == NULL)
2647 return NOTIFY_OK; /* no? not meant for us */
2648
2649 /* unregister takes one ref away */
2650 spi_unregister_device(spi);
2651
2652 /* and put the reference of the find */
2653 put_device(&spi->dev);
2654 break;
2655 }
2656
2657 return NOTIFY_OK;
2658}
2659
2660static struct notifier_block spi_of_notifier = {
2661 .notifier_call = of_spi_notify,
2662};
2663#else /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
2664extern struct notifier_block spi_of_notifier;
2665#endif /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
2666
David Brownell8ae12a02006-01-08 13:34:19 -08002667static int __init spi_init(void)
2668{
David Brownellb8852442006-01-08 13:34:23 -08002669 int status;
David Brownell8ae12a02006-01-08 13:34:19 -08002670
Christoph Lametere94b1762006-12-06 20:33:17 -08002671 buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
David Brownellb8852442006-01-08 13:34:23 -08002672 if (!buf) {
2673 status = -ENOMEM;
2674 goto err0;
2675 }
2676
2677 status = bus_register(&spi_bus_type);
2678 if (status < 0)
2679 goto err1;
2680
2681 status = class_register(&spi_master_class);
2682 if (status < 0)
2683 goto err2;
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002684
Fabio Estevam52677202014-11-26 20:13:57 -02002685 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002686 WARN_ON(of_reconfig_notifier_register(&spi_of_notifier));
2687
David Brownell8ae12a02006-01-08 13:34:19 -08002688 return 0;
David Brownellb8852442006-01-08 13:34:23 -08002689
2690err2:
2691 bus_unregister(&spi_bus_type);
2692err1:
2693 kfree(buf);
2694 buf = NULL;
2695err0:
2696 return status;
David Brownell8ae12a02006-01-08 13:34:19 -08002697}
David Brownellb8852442006-01-08 13:34:23 -08002698
David Brownell8ae12a02006-01-08 13:34:19 -08002699/* board_info is normally registered in arch_initcall(),
2700 * but even essential drivers wait till later
David Brownellb8852442006-01-08 13:34:23 -08002701 *
2702 * REVISIT only boardinfo really needs static linking. the rest (device and
2703 * driver registration) _could_ be dynamically linked (modular) ... costs
2704 * include needing to have boardinfo data structures be much more public.
David Brownell8ae12a02006-01-08 13:34:19 -08002705 */
David Brownell673c0c02008-10-15 22:02:46 -07002706postcore_initcall(spi_init);
David Brownell8ae12a02006-01-08 13:34:19 -08002707