blob: f565cc8901a662a0efc9a0b593e53aeb22cd1c76 [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 Brownell0c8684612006-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
Thierry Reding88c93212015-11-10 13:03:04 +0100378 * @owner: owner module of the driver to register
David Brownell33e34dc2007-05-08 00:32:21 -0700379 * @sdrv: the driver to register
380 * Context: can sleep
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200381 *
382 * Return: zero on success, else a negative error code.
David Brownell33e34dc2007-05-08 00:32:21 -0700383 */
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500384int __spi_register_driver(struct module *owner, struct spi_driver *sdrv)
David Brownellb8852442006-01-08 13:34:23 -0800385{
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500386 sdrv->driver.owner = owner;
David Brownellb8852442006-01-08 13:34:23 -0800387 sdrv->driver.bus = &spi_bus_type;
388 if (sdrv->probe)
389 sdrv->driver.probe = spi_drv_probe;
390 if (sdrv->remove)
391 sdrv->driver.remove = spi_drv_remove;
392 if (sdrv->shutdown)
393 sdrv->driver.shutdown = spi_drv_shutdown;
394 return driver_register(&sdrv->driver);
395}
Andrew F. Davisca5d2482015-10-23 08:59:10 -0500396EXPORT_SYMBOL_GPL(__spi_register_driver);
David Brownellb8852442006-01-08 13:34:23 -0800397
David Brownell8ae12a02006-01-08 13:34:19 -0800398/*-------------------------------------------------------------------------*/
399
400/* SPI devices should normally not be created by SPI device drivers; that
401 * would make them board-specific. Similarly with SPI master drivers.
402 * Device registration normally goes into like arch/.../mach.../board-YYY.c
403 * with other readonly (flashable) information about mainboard devices.
404 */
405
406struct boardinfo {
407 struct list_head list;
Feng Tang2b9603a2010-08-02 15:52:15 +0800408 struct spi_board_info board_info;
David Brownell8ae12a02006-01-08 13:34:19 -0800409};
410
411static LIST_HEAD(board_list);
Feng Tang2b9603a2010-08-02 15:52:15 +0800412static LIST_HEAD(spi_master_list);
413
414/*
415 * Used to protect add/del opertion for board_info list and
416 * spi_master list, and their matching process
417 */
Matthias Kaehlcke94040822007-07-17 04:04:16 -0700418static DEFINE_MUTEX(board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800419
Grant Likelydc87c982008-05-15 16:50:22 -0600420/**
421 * spi_alloc_device - Allocate a new SPI device
422 * @master: Controller to which device is connected
423 * Context: can sleep
424 *
425 * Allows a driver to allocate and initialize a spi_device without
426 * registering it immediately. This allows a driver to directly
427 * fill the spi_device with device parameters before calling
428 * spi_add_device() on it.
429 *
430 * Caller is responsible to call spi_add_device() on the returned
431 * spi_device structure to add it to the SPI master. If the caller
432 * needs to discard the spi_device without adding it, then it should
433 * call spi_dev_put() on it.
434 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200435 * Return: a pointer to the new device, or NULL.
Grant Likelydc87c982008-05-15 16:50:22 -0600436 */
437struct spi_device *spi_alloc_device(struct spi_master *master)
438{
439 struct spi_device *spi;
Grant Likelydc87c982008-05-15 16:50:22 -0600440
441 if (!spi_master_get(master))
442 return NULL;
443
Jingoo Han5fe5f052013-10-14 10:31:51 +0900444 spi = kzalloc(sizeof(*spi), GFP_KERNEL);
Grant Likelydc87c982008-05-15 16:50:22 -0600445 if (!spi) {
Grant Likelydc87c982008-05-15 16:50:22 -0600446 spi_master_put(master);
447 return NULL;
448 }
449
450 spi->master = master;
Laurent Pinchart178db7d2011-12-12 01:15:06 +0100451 spi->dev.parent = &master->dev;
Grant Likelydc87c982008-05-15 16:50:22 -0600452 spi->dev.bus = &spi_bus_type;
453 spi->dev.release = spidev_release;
Andreas Larsson446411e2013-02-13 14:20:25 +0100454 spi->cs_gpio = -ENOENT;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000455
456 spin_lock_init(&spi->statistics.lock);
457
Grant Likelydc87c982008-05-15 16:50:22 -0600458 device_initialize(&spi->dev);
459 return spi;
460}
461EXPORT_SYMBOL_GPL(spi_alloc_device);
462
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200463static void spi_dev_set_name(struct spi_device *spi)
464{
465 struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
466
467 if (adev) {
468 dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
469 return;
470 }
471
472 dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->master->dev),
473 spi->chip_select);
474}
475
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200476static int spi_dev_check(struct device *dev, void *data)
477{
478 struct spi_device *spi = to_spi_device(dev);
479 struct spi_device *new_spi = data;
480
481 if (spi->master == new_spi->master &&
482 spi->chip_select == new_spi->chip_select)
483 return -EBUSY;
484 return 0;
485}
486
Grant Likelydc87c982008-05-15 16:50:22 -0600487/**
488 * spi_add_device - Add spi_device allocated with spi_alloc_device
489 * @spi: spi_device to register
490 *
491 * Companion function to spi_alloc_device. Devices allocated with
492 * spi_alloc_device can be added onto the spi bus with this function.
493 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200494 * Return: 0 on success; negative errno on failure
Grant Likelydc87c982008-05-15 16:50:22 -0600495 */
496int spi_add_device(struct spi_device *spi)
497{
David Brownelle48880e2008-08-15 00:40:44 -0700498 static DEFINE_MUTEX(spi_add_lock);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100499 struct spi_master *master = spi->master;
500 struct device *dev = master->dev.parent;
Grant Likelydc87c982008-05-15 16:50:22 -0600501 int status;
502
503 /* Chipselects are numbered 0..max; validate. */
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100504 if (spi->chip_select >= master->num_chipselect) {
Grant Likelydc87c982008-05-15 16:50:22 -0600505 dev_err(dev, "cs%d >= max %d\n",
506 spi->chip_select,
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100507 master->num_chipselect);
Grant Likelydc87c982008-05-15 16:50:22 -0600508 return -EINVAL;
509 }
510
511 /* Set the bus ID string */
Jarkko Nikulae13ac472013-11-14 14:03:53 +0200512 spi_dev_set_name(spi);
David Brownelle48880e2008-08-15 00:40:44 -0700513
514 /* We need to make sure there's no other device with this
515 * chipselect **BEFORE** we call setup(), else we'll trash
516 * its configuration. Lock against concurrent add() calls.
517 */
518 mutex_lock(&spi_add_lock);
519
Mika Westerbergb6fb8d32014-01-09 15:23:55 +0200520 status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
521 if (status) {
David Brownelle48880e2008-08-15 00:40:44 -0700522 dev_err(dev, "chipselect %d already in use\n",
523 spi->chip_select);
David Brownelle48880e2008-08-15 00:40:44 -0700524 goto done;
525 }
526
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +0100527 if (master->cs_gpios)
528 spi->cs_gpio = master->cs_gpios[spi->chip_select];
529
David Brownelle48880e2008-08-15 00:40:44 -0700530 /* Drivers may modify this initial i/o setup, but will
531 * normally rely on the device being setup. Devices
532 * using SPI_CS_HIGH can't coexist well otherwise...
533 */
David Brownell7d077192009-06-17 16:26:03 -0700534 status = spi_setup(spi);
Grant Likelydc87c982008-05-15 16:50:22 -0600535 if (status < 0) {
Linus Walleijeb288a12010-10-21 21:06:44 +0200536 dev_err(dev, "can't setup %s, status %d\n",
537 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700538 goto done;
Grant Likelydc87c982008-05-15 16:50:22 -0600539 }
540
David Brownelle48880e2008-08-15 00:40:44 -0700541 /* Device may be bound to an active driver when this returns */
Grant Likelydc87c982008-05-15 16:50:22 -0600542 status = device_add(&spi->dev);
David Brownelle48880e2008-08-15 00:40:44 -0700543 if (status < 0)
Linus Walleijeb288a12010-10-21 21:06:44 +0200544 dev_err(dev, "can't add %s, status %d\n",
545 dev_name(&spi->dev), status);
David Brownelle48880e2008-08-15 00:40:44 -0700546 else
Kay Sievers35f74fc2009-01-06 10:44:37 -0800547 dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
Grant Likelydc87c982008-05-15 16:50:22 -0600548
David Brownelle48880e2008-08-15 00:40:44 -0700549done:
550 mutex_unlock(&spi_add_lock);
551 return status;
Grant Likelydc87c982008-05-15 16:50:22 -0600552}
553EXPORT_SYMBOL_GPL(spi_add_device);
David Brownell8ae12a02006-01-08 13:34:19 -0800554
David Brownell33e34dc2007-05-08 00:32:21 -0700555/**
556 * spi_new_device - instantiate one new SPI device
557 * @master: Controller to which device is connected
558 * @chip: Describes the SPI device
559 * Context: can sleep
560 *
561 * On typical mainboards, this is purely internal; and it's not needed
David Brownell8ae12a02006-01-08 13:34:19 -0800562 * after board init creates the hard-wired devices. Some development
563 * platforms may not be able to use spi_register_board_info though, and
564 * this is exported so that for example a USB or parport based adapter
565 * driver could add devices (which it would learn about out-of-band).
David Brownell082c8cb2007-07-31 00:39:45 -0700566 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200567 * Return: the new device, or NULL.
David Brownell8ae12a02006-01-08 13:34:19 -0800568 */
Adrian Bunke9d5a462007-03-26 21:32:23 -0800569struct spi_device *spi_new_device(struct spi_master *master,
570 struct spi_board_info *chip)
David Brownell8ae12a02006-01-08 13:34:19 -0800571{
572 struct spi_device *proxy;
David Brownell8ae12a02006-01-08 13:34:19 -0800573 int status;
574
David Brownell082c8cb2007-07-31 00:39:45 -0700575 /* NOTE: caller did any chip->bus_num checks necessary.
576 *
577 * Also, unless we change the return value convention to use
578 * error-or-pointer (not NULL-or-pointer), troubleshootability
579 * suggests syslogged diagnostics are best here (ugh).
580 */
581
Grant Likelydc87c982008-05-15 16:50:22 -0600582 proxy = spi_alloc_device(master);
583 if (!proxy)
David Brownell8ae12a02006-01-08 13:34:19 -0800584 return NULL;
585
Grant Likely102eb972008-07-23 21:29:55 -0700586 WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
587
David Brownell8ae12a02006-01-08 13:34:19 -0800588 proxy->chip_select = chip->chip_select;
589 proxy->max_speed_hz = chip->max_speed_hz;
David Brownell980a01c2006-06-28 07:47:15 -0700590 proxy->mode = chip->mode;
David Brownell8ae12a02006-01-08 13:34:19 -0800591 proxy->irq = chip->irq;
Grant Likely102eb972008-07-23 21:29:55 -0700592 strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
David Brownell8ae12a02006-01-08 13:34:19 -0800593 proxy->dev.platform_data = (void *) chip->platform_data;
594 proxy->controller_data = chip->controller_data;
595 proxy->controller_state = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800596
Grant Likelydc87c982008-05-15 16:50:22 -0600597 status = spi_add_device(proxy);
David Brownell8ae12a02006-01-08 13:34:19 -0800598 if (status < 0) {
Grant Likelydc87c982008-05-15 16:50:22 -0600599 spi_dev_put(proxy);
600 return NULL;
David Brownell8ae12a02006-01-08 13:34:19 -0800601 }
602
David Brownell8ae12a02006-01-08 13:34:19 -0800603 return proxy;
604}
605EXPORT_SYMBOL_GPL(spi_new_device);
606
Geert Uytterhoeven3b1884c2015-11-30 15:28:06 +0100607/**
608 * spi_unregister_device - unregister a single SPI device
609 * @spi: spi_device to unregister
610 *
611 * Start making the passed SPI device vanish. Normally this would be handled
612 * by spi_unregister_master().
613 */
614void spi_unregister_device(struct spi_device *spi)
615{
Geert Uytterhoevenbd6c1642015-11-30 15:28:07 +0100616 if (!spi)
617 return;
618
619 if (spi->dev.of_node)
620 of_node_clear_flag(spi->dev.of_node, OF_POPULATED);
621 device_unregister(&spi->dev);
Geert Uytterhoeven3b1884c2015-11-30 15:28:06 +0100622}
623EXPORT_SYMBOL_GPL(spi_unregister_device);
624
Feng Tang2b9603a2010-08-02 15:52:15 +0800625static void spi_match_master_to_boardinfo(struct spi_master *master,
626 struct spi_board_info *bi)
627{
628 struct spi_device *dev;
629
630 if (master->bus_num != bi->bus_num)
631 return;
632
633 dev = spi_new_device(master, bi);
634 if (!dev)
635 dev_err(master->dev.parent, "can't create new device for %s\n",
636 bi->modalias);
637}
638
David Brownell33e34dc2007-05-08 00:32:21 -0700639/**
640 * spi_register_board_info - register SPI devices for a given board
641 * @info: array of chip descriptors
642 * @n: how many descriptors are provided
643 * Context: can sleep
644 *
David Brownell8ae12a02006-01-08 13:34:19 -0800645 * Board-specific early init code calls this (probably during arch_initcall)
646 * with segments of the SPI device table. Any device nodes are created later,
647 * after the relevant parent SPI controller (bus_num) is defined. We keep
648 * this table of devices forever, so that reloading a controller driver will
649 * not make Linux forget about these hard-wired devices.
650 *
651 * Other code can also call this, e.g. a particular add-on board might provide
652 * SPI devices through its expansion connector, so code initializing that board
653 * would naturally declare its SPI devices.
654 *
655 * The board info passed can safely be __initdata ... but be careful of
656 * any embedded pointers (platform_data, etc), they're copied as-is.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +0200657 *
658 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -0800659 */
Grant Likelyfd4a3192012-12-07 16:57:14 +0000660int spi_register_board_info(struct spi_board_info const *info, unsigned n)
David Brownell8ae12a02006-01-08 13:34:19 -0800661{
Feng Tang2b9603a2010-08-02 15:52:15 +0800662 struct boardinfo *bi;
663 int i;
David Brownell8ae12a02006-01-08 13:34:19 -0800664
Xiubo Lic7908a32014-09-24 14:30:29 +0800665 if (!n)
666 return -EINVAL;
667
Feng Tang2b9603a2010-08-02 15:52:15 +0800668 bi = kzalloc(n * sizeof(*bi), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -0800669 if (!bi)
670 return -ENOMEM;
David Brownell8ae12a02006-01-08 13:34:19 -0800671
Feng Tang2b9603a2010-08-02 15:52:15 +0800672 for (i = 0; i < n; i++, bi++, info++) {
673 struct spi_master *master;
David Brownell8ae12a02006-01-08 13:34:19 -0800674
Feng Tang2b9603a2010-08-02 15:52:15 +0800675 memcpy(&bi->board_info, info, sizeof(*info));
676 mutex_lock(&board_lock);
677 list_add_tail(&bi->list, &board_list);
678 list_for_each_entry(master, &spi_master_list, list)
679 spi_match_master_to_boardinfo(master, &bi->board_info);
680 mutex_unlock(&board_lock);
David Brownell8ae12a02006-01-08 13:34:19 -0800681 }
Feng Tang2b9603a2010-08-02 15:52:15 +0800682
683 return 0;
David Brownell8ae12a02006-01-08 13:34:19 -0800684}
685
686/*-------------------------------------------------------------------------*/
687
Mark Brownb1589352013-10-05 11:50:40 +0100688static void spi_set_cs(struct spi_device *spi, bool enable)
689{
690 if (spi->mode & SPI_CS_HIGH)
691 enable = !enable;
692
Andy Shevchenko243f07b2015-10-20 12:28:29 +0300693 if (gpio_is_valid(spi->cs_gpio))
Mark Brownb1589352013-10-05 11:50:40 +0100694 gpio_set_value(spi->cs_gpio, !enable);
695 else if (spi->master->set_cs)
696 spi->master->set_cs(spi, !enable);
697}
698
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200699#ifdef CONFIG_HAS_DMA
Mark Brown6ad45a22014-02-02 13:47:47 +0000700static int spi_map_buf(struct spi_master *master, struct device *dev,
701 struct sg_table *sgt, void *buf, size_t len,
702 enum dma_data_direction dir)
703{
704 const bool vmalloced_buf = is_vmalloc_addr(buf);
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500705 int desc_len;
706 int sgs;
Mark Brown6ad45a22014-02-02 13:47:47 +0000707 struct page *vm_page;
708 void *sg_buf;
709 size_t min;
710 int i, ret;
711
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500712 if (vmalloced_buf) {
713 desc_len = PAGE_SIZE;
714 sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len);
715 } else {
716 desc_len = master->max_dma_len;
717 sgs = DIV_ROUND_UP(len, desc_len);
718 }
719
Mark Brown6ad45a22014-02-02 13:47:47 +0000720 ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
721 if (ret != 0)
722 return ret;
723
724 for (i = 0; i < sgs; i++) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000725
726 if (vmalloced_buf) {
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500727 min = min_t(size_t,
728 len, desc_len - offset_in_page(buf));
Mark Brown6ad45a22014-02-02 13:47:47 +0000729 vm_page = vmalloc_to_page(buf);
730 if (!vm_page) {
731 sg_free_table(sgt);
732 return -ENOMEM;
733 }
Charles Keepaxc1aefbd2014-11-17 09:14:31 +0000734 sg_set_page(&sgt->sgl[i], vm_page,
735 min, offset_in_page(buf));
Mark Brown6ad45a22014-02-02 13:47:47 +0000736 } else {
Andrew Gabbasov65598c12015-06-30 10:48:37 -0500737 min = min_t(size_t, len, desc_len);
Mark Brown6ad45a22014-02-02 13:47:47 +0000738 sg_buf = buf;
Charles Keepaxc1aefbd2014-11-17 09:14:31 +0000739 sg_set_buf(&sgt->sgl[i], sg_buf, min);
Mark Brown6ad45a22014-02-02 13:47:47 +0000740 }
741
Mark Brown6ad45a22014-02-02 13:47:47 +0000742
743 buf += min;
744 len -= min;
745 }
746
747 ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
Geert Uytterhoeven89e4b662014-07-10 15:29:32 +0200748 if (!ret)
749 ret = -ENOMEM;
Mark Brown6ad45a22014-02-02 13:47:47 +0000750 if (ret < 0) {
751 sg_free_table(sgt);
752 return ret;
753 }
754
755 sgt->nents = ret;
756
757 return 0;
758}
759
760static void spi_unmap_buf(struct spi_master *master, struct device *dev,
761 struct sg_table *sgt, enum dma_data_direction dir)
762{
763 if (sgt->orig_nents) {
764 dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
765 sg_free_table(sgt);
766 }
767}
768
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200769static int __spi_map_msg(struct spi_master *master, struct spi_message *msg)
Mark Brown99adef32014-01-16 12:22:43 +0000770{
Mark Brown99adef32014-01-16 12:22:43 +0000771 struct device *tx_dev, *rx_dev;
772 struct spi_transfer *xfer;
Mark Brown6ad45a22014-02-02 13:47:47 +0000773 int ret;
Mark Brown3a2eba92014-01-28 20:17:03 +0000774
Mark Brown6ad45a22014-02-02 13:47:47 +0000775 if (!master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000776 return 0;
777
Leilk Liuc37f45b2015-07-23 17:10:40 +0800778 if (master->dma_tx)
779 tx_dev = master->dma_tx->device->dev;
780 else
781 tx_dev = &master->dev;
782
783 if (master->dma_rx)
784 rx_dev = master->dma_rx->device->dev;
785 else
786 rx_dev = &master->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000787
788 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
789 if (!master->can_dma(master, msg->spi, xfer))
790 continue;
791
792 if (xfer->tx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000793 ret = spi_map_buf(master, tx_dev, &xfer->tx_sg,
794 (void *)xfer->tx_buf, xfer->len,
795 DMA_TO_DEVICE);
796 if (ret != 0)
797 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000798 }
799
800 if (xfer->rx_buf != NULL) {
Mark Brown6ad45a22014-02-02 13:47:47 +0000801 ret = spi_map_buf(master, rx_dev, &xfer->rx_sg,
802 xfer->rx_buf, xfer->len,
803 DMA_FROM_DEVICE);
804 if (ret != 0) {
805 spi_unmap_buf(master, tx_dev, &xfer->tx_sg,
806 DMA_TO_DEVICE);
807 return ret;
Mark Brown99adef32014-01-16 12:22:43 +0000808 }
809 }
810 }
811
812 master->cur_msg_mapped = true;
813
814 return 0;
815}
816
Martin Sperl4b786452015-05-25 10:13:10 +0000817static int __spi_unmap_msg(struct spi_master *master, struct spi_message *msg)
Mark Brown99adef32014-01-16 12:22:43 +0000818{
819 struct spi_transfer *xfer;
820 struct device *tx_dev, *rx_dev;
821
Mark Brown6ad45a22014-02-02 13:47:47 +0000822 if (!master->cur_msg_mapped || !master->can_dma)
Mark Brown99adef32014-01-16 12:22:43 +0000823 return 0;
824
Leilk Liuc37f45b2015-07-23 17:10:40 +0800825 if (master->dma_tx)
826 tx_dev = master->dma_tx->device->dev;
827 else
828 tx_dev = &master->dev;
829
830 if (master->dma_rx)
831 rx_dev = master->dma_rx->device->dev;
832 else
833 rx_dev = &master->dev;
Mark Brown99adef32014-01-16 12:22:43 +0000834
835 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
836 if (!master->can_dma(master, msg->spi, xfer))
837 continue;
838
Mark Brown6ad45a22014-02-02 13:47:47 +0000839 spi_unmap_buf(master, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE);
840 spi_unmap_buf(master, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE);
Mark Brown99adef32014-01-16 12:22:43 +0000841 }
842
843 return 0;
844}
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200845#else /* !CONFIG_HAS_DMA */
846static inline int __spi_map_msg(struct spi_master *master,
847 struct spi_message *msg)
848{
849 return 0;
850}
851
Martin Sperl4b786452015-05-25 10:13:10 +0000852static inline int __spi_unmap_msg(struct spi_master *master,
853 struct spi_message *msg)
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200854{
855 return 0;
856}
857#endif /* !CONFIG_HAS_DMA */
858
Martin Sperl4b786452015-05-25 10:13:10 +0000859static inline int spi_unmap_msg(struct spi_master *master,
860 struct spi_message *msg)
861{
862 struct spi_transfer *xfer;
863
864 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
865 /*
866 * Restore the original value of tx_buf or rx_buf if they are
867 * NULL.
868 */
869 if (xfer->tx_buf == master->dummy_tx)
870 xfer->tx_buf = NULL;
871 if (xfer->rx_buf == master->dummy_rx)
872 xfer->rx_buf = NULL;
873 }
874
875 return __spi_unmap_msg(master, msg);
876}
877
Geert Uytterhoeven2de440f2014-05-02 06:29:34 +0200878static int spi_map_msg(struct spi_master *master, struct spi_message *msg)
879{
880 struct spi_transfer *xfer;
881 void *tmp;
882 unsigned int max_tx, max_rx;
883
884 if (master->flags & (SPI_MASTER_MUST_RX | SPI_MASTER_MUST_TX)) {
885 max_tx = 0;
886 max_rx = 0;
887
888 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
889 if ((master->flags & SPI_MASTER_MUST_TX) &&
890 !xfer->tx_buf)
891 max_tx = max(xfer->len, max_tx);
892 if ((master->flags & SPI_MASTER_MUST_RX) &&
893 !xfer->rx_buf)
894 max_rx = max(xfer->len, max_rx);
895 }
896
897 if (max_tx) {
898 tmp = krealloc(master->dummy_tx, max_tx,
899 GFP_KERNEL | GFP_DMA);
900 if (!tmp)
901 return -ENOMEM;
902 master->dummy_tx = tmp;
903 memset(tmp, 0, max_tx);
904 }
905
906 if (max_rx) {
907 tmp = krealloc(master->dummy_rx, max_rx,
908 GFP_KERNEL | GFP_DMA);
909 if (!tmp)
910 return -ENOMEM;
911 master->dummy_rx = tmp;
912 }
913
914 if (max_tx || max_rx) {
915 list_for_each_entry(xfer, &msg->transfers,
916 transfer_list) {
917 if (!xfer->tx_buf)
918 xfer->tx_buf = master->dummy_tx;
919 if (!xfer->rx_buf)
920 xfer->rx_buf = master->dummy_rx;
921 }
922 }
923 }
924
925 return __spi_map_msg(master, msg);
926}
Mark Brown99adef32014-01-16 12:22:43 +0000927
Mark Brownb1589352013-10-05 11:50:40 +0100928/*
929 * spi_transfer_one_message - Default implementation of transfer_one_message()
930 *
931 * This is a standard implementation of transfer_one_message() for
932 * drivers which impelment a transfer_one() operation. It provides
933 * standard handling of delays and chip select management.
934 */
935static int spi_transfer_one_message(struct spi_master *master,
936 struct spi_message *msg)
937{
938 struct spi_transfer *xfer;
Mark Brownb1589352013-10-05 11:50:40 +0100939 bool keep_cs = false;
940 int ret = 0;
Nicholas Mc Guire682a71b2015-02-02 03:30:32 -0500941 unsigned long ms = 1;
Martin Sperleca2ebc2015-06-22 13:00:36 +0000942 struct spi_statistics *statm = &master->statistics;
943 struct spi_statistics *stats = &msg->spi->statistics;
Mark Brownb1589352013-10-05 11:50:40 +0100944
945 spi_set_cs(msg->spi, true);
946
Martin Sperleca2ebc2015-06-22 13:00:36 +0000947 SPI_STATISTICS_INCREMENT_FIELD(statm, messages);
948 SPI_STATISTICS_INCREMENT_FIELD(stats, messages);
949
Mark Brownb1589352013-10-05 11:50:40 +0100950 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
951 trace_spi_transfer_start(msg, xfer);
952
Martin Sperleca2ebc2015-06-22 13:00:36 +0000953 spi_statistics_add_transfer_stats(statm, xfer, master);
954 spi_statistics_add_transfer_stats(stats, xfer, master);
955
Mark Brown38ec10f2014-08-16 16:27:41 +0100956 if (xfer->tx_buf || xfer->rx_buf) {
957 reinit_completion(&master->xfer_completion);
Mark Brownb1589352013-10-05 11:50:40 +0100958
Mark Brown38ec10f2014-08-16 16:27:41 +0100959 ret = master->transfer_one(master, msg->spi, xfer);
960 if (ret < 0) {
Martin Sperleca2ebc2015-06-22 13:00:36 +0000961 SPI_STATISTICS_INCREMENT_FIELD(statm,
962 errors);
963 SPI_STATISTICS_INCREMENT_FIELD(stats,
964 errors);
Mark Brown38ec10f2014-08-16 16:27:41 +0100965 dev_err(&msg->spi->dev,
966 "SPI transfer failed: %d\n", ret);
967 goto out;
968 }
Mark Brownb1589352013-10-05 11:50:40 +0100969
Mark Brown38ec10f2014-08-16 16:27:41 +0100970 if (ret > 0) {
971 ret = 0;
972 ms = xfer->len * 8 * 1000 / xfer->speed_hz;
973 ms += ms + 100; /* some tolerance */
Mark Brown16a0ce42014-01-30 22:16:41 +0000974
Mark Brown38ec10f2014-08-16 16:27:41 +0100975 ms = wait_for_completion_timeout(&master->xfer_completion,
976 msecs_to_jiffies(ms));
977 }
Mark Brown16a0ce42014-01-30 22:16:41 +0000978
Mark Brown38ec10f2014-08-16 16:27:41 +0100979 if (ms == 0) {
Martin Sperleca2ebc2015-06-22 13:00:36 +0000980 SPI_STATISTICS_INCREMENT_FIELD(statm,
981 timedout);
982 SPI_STATISTICS_INCREMENT_FIELD(stats,
983 timedout);
Mark Brown38ec10f2014-08-16 16:27:41 +0100984 dev_err(&msg->spi->dev,
985 "SPI transfer timed out\n");
986 msg->status = -ETIMEDOUT;
987 }
988 } else {
989 if (xfer->len)
990 dev_err(&msg->spi->dev,
991 "Bufferless transfer has length %u\n",
992 xfer->len);
Axel Lin13a42792014-01-18 22:05:22 +0800993 }
Mark Brownb1589352013-10-05 11:50:40 +0100994
995 trace_spi_transfer_stop(msg, xfer);
996
997 if (msg->status != -EINPROGRESS)
998 goto out;
999
1000 if (xfer->delay_usecs)
1001 udelay(xfer->delay_usecs);
1002
1003 if (xfer->cs_change) {
1004 if (list_is_last(&xfer->transfer_list,
1005 &msg->transfers)) {
1006 keep_cs = true;
1007 } else {
Mark Brown0b73aa62014-03-29 23:48:07 +00001008 spi_set_cs(msg->spi, false);
1009 udelay(10);
1010 spi_set_cs(msg->spi, true);
Mark Brownb1589352013-10-05 11:50:40 +01001011 }
1012 }
1013
1014 msg->actual_length += xfer->len;
1015 }
1016
1017out:
1018 if (ret != 0 || !keep_cs)
1019 spi_set_cs(msg->spi, false);
1020
1021 if (msg->status == -EINPROGRESS)
1022 msg->status = ret;
1023
Geert Uytterhoevenff61eb42015-04-07 20:39:19 +02001024 if (msg->status && master->handle_err)
Andy Shevchenkob716c4f2015-02-27 17:34:15 +02001025 master->handle_err(master, msg);
1026
Mark Brownb1589352013-10-05 11:50:40 +01001027 spi_finalize_current_message(master);
1028
1029 return ret;
1030}
1031
1032/**
1033 * spi_finalize_current_transfer - report completion of a transfer
Thierry Reding2c675682014-08-08 13:02:36 +02001034 * @master: the master reporting completion
Mark Brownb1589352013-10-05 11:50:40 +01001035 *
1036 * Called by SPI drivers using the core transfer_one_message()
1037 * implementation to notify it that the current interrupt driven
Geert Uytterhoeven9e8f4882014-01-21 16:10:05 +01001038 * transfer has finished and the next one may be scheduled.
Mark Brownb1589352013-10-05 11:50:40 +01001039 */
1040void spi_finalize_current_transfer(struct spi_master *master)
1041{
1042 complete(&master->xfer_completion);
1043}
1044EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
1045
Linus Walleijffbbdd212012-02-22 10:05:38 +01001046/**
Mark Brownfc9e0f72014-12-10 13:46:33 +00001047 * __spi_pump_messages - function which processes spi message queue
1048 * @master: master to process queue for
1049 * @in_kthread: true if we are in the context of the message pump thread
Jon Hunter49023d22016-03-08 12:28:20 +00001050 * @bus_locked: true if the bus mutex is held when calling this function
Linus Walleijffbbdd212012-02-22 10:05:38 +01001051 *
1052 * This function checks if there is any spi message in the queue that
1053 * needs processing and if so call out to the driver to initialize hardware
1054 * and transfer each message.
1055 *
Mark Brown0461a412014-12-09 21:38:05 +00001056 * Note that it is called both from the kthread itself and also from
1057 * inside spi_sync(); the queue extraction handling at the top of the
1058 * function should deal with this safely.
Linus Walleijffbbdd212012-02-22 10:05:38 +01001059 */
Jon Hunter49023d22016-03-08 12:28:20 +00001060static void __spi_pump_messages(struct spi_master *master, bool in_kthread,
1061 bool bus_locked)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001062{
Linus Walleijffbbdd212012-02-22 10:05:38 +01001063 unsigned long flags;
1064 bool was_busy = false;
1065 int ret;
1066
Mark Brown983aee52014-12-09 19:46:56 +00001067 /* Lock queue */
Linus Walleijffbbdd212012-02-22 10:05:38 +01001068 spin_lock_irqsave(&master->queue_lock, flags);
Mark Brown983aee52014-12-09 19:46:56 +00001069
1070 /* Make sure we are not already running a message */
1071 if (master->cur_msg) {
1072 spin_unlock_irqrestore(&master->queue_lock, flags);
1073 return;
1074 }
1075
Mark Brown0461a412014-12-09 21:38:05 +00001076 /* If another context is idling the device then defer */
1077 if (master->idling) {
1078 queue_kthread_work(&master->kworker, &master->pump_messages);
1079 spin_unlock_irqrestore(&master->queue_lock, flags);
1080 return;
1081 }
1082
Mark Brown983aee52014-12-09 19:46:56 +00001083 /* Check if the queue is idle */
Linus Walleijffbbdd212012-02-22 10:05:38 +01001084 if (list_empty(&master->queue) || !master->running) {
Bryan Freedb0b36b82013-03-13 11:17:40 -07001085 if (!master->busy) {
1086 spin_unlock_irqrestore(&master->queue_lock, flags);
1087 return;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001088 }
Mark Brownfc9e0f72014-12-10 13:46:33 +00001089
1090 /* Only do teardown in the thread */
1091 if (!in_kthread) {
1092 queue_kthread_work(&master->kworker,
1093 &master->pump_messages);
1094 spin_unlock_irqrestore(&master->queue_lock, flags);
1095 return;
1096 }
1097
Linus Walleijffbbdd212012-02-22 10:05:38 +01001098 master->busy = false;
Mark Brown0461a412014-12-09 21:38:05 +00001099 master->idling = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001100 spin_unlock_irqrestore(&master->queue_lock, flags);
Mark Brown0461a412014-12-09 21:38:05 +00001101
Mark Brown3a2eba92014-01-28 20:17:03 +00001102 kfree(master->dummy_rx);
1103 master->dummy_rx = NULL;
1104 kfree(master->dummy_tx);
1105 master->dummy_tx = NULL;
Bryan Freedb0b36b82013-03-13 11:17:40 -07001106 if (master->unprepare_transfer_hardware &&
1107 master->unprepare_transfer_hardware(master))
1108 dev_err(&master->dev,
1109 "failed to unprepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +01001110 if (master->auto_runtime_pm) {
1111 pm_runtime_mark_last_busy(master->dev.parent);
1112 pm_runtime_put_autosuspend(master->dev.parent);
1113 }
Mark Brown56ec1972013-10-07 19:33:53 +01001114 trace_spi_master_idle(master);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001115
Mark Brown0461a412014-12-09 21:38:05 +00001116 spin_lock_irqsave(&master->queue_lock, flags);
1117 master->idling = false;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001118 spin_unlock_irqrestore(&master->queue_lock, flags);
1119 return;
1120 }
Linus Walleijffbbdd212012-02-22 10:05:38 +01001121
Linus Walleijffbbdd212012-02-22 10:05:38 +01001122 /* Extract head of queue */
1123 master->cur_msg =
Axel Lina89e2d22014-01-09 16:03:58 +08001124 list_first_entry(&master->queue, struct spi_message, queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001125
1126 list_del_init(&master->cur_msg->queue);
1127 if (master->busy)
1128 was_busy = true;
1129 else
1130 master->busy = true;
1131 spin_unlock_irqrestore(&master->queue_lock, flags);
1132
Mark Brown49834de2013-07-28 14:47:02 +01001133 if (!was_busy && master->auto_runtime_pm) {
1134 ret = pm_runtime_get_sync(master->dev.parent);
1135 if (ret < 0) {
1136 dev_err(&master->dev, "Failed to power device: %d\n",
1137 ret);
1138 return;
1139 }
1140 }
1141
Mark Brown56ec1972013-10-07 19:33:53 +01001142 if (!was_busy)
1143 trace_spi_master_busy(master);
1144
Shubhrajyoti D7dfd2bd2012-05-10 19:20:41 +05301145 if (!was_busy && master->prepare_transfer_hardware) {
Linus Walleijffbbdd212012-02-22 10:05:38 +01001146 ret = master->prepare_transfer_hardware(master);
1147 if (ret) {
1148 dev_err(&master->dev,
1149 "failed to prepare transfer hardware\n");
Mark Brown49834de2013-07-28 14:47:02 +01001150
1151 if (master->auto_runtime_pm)
1152 pm_runtime_put(master->dev.parent);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001153 return;
1154 }
1155 }
1156
Jon Hunter49023d22016-03-08 12:28:20 +00001157 if (!bus_locked)
1158 mutex_lock(&master->bus_lock_mutex);
1159
Mark Brown56ec1972013-10-07 19:33:53 +01001160 trace_spi_message_start(master->cur_msg);
1161
Mark Brown2841a5f2013-10-05 00:23:12 +01001162 if (master->prepare_message) {
1163 ret = master->prepare_message(master, master->cur_msg);
1164 if (ret) {
1165 dev_err(&master->dev,
1166 "failed to prepare message: %d\n", ret);
1167 master->cur_msg->status = ret;
1168 spi_finalize_current_message(master);
Jon Hunter49023d22016-03-08 12:28:20 +00001169 goto out;
Mark Brown2841a5f2013-10-05 00:23:12 +01001170 }
1171 master->cur_msg_prepared = true;
1172 }
1173
Mark Brown99adef32014-01-16 12:22:43 +00001174 ret = spi_map_msg(master, master->cur_msg);
1175 if (ret) {
1176 master->cur_msg->status = ret;
1177 spi_finalize_current_message(master);
Jon Hunter49023d22016-03-08 12:28:20 +00001178 goto out;
Mark Brown99adef32014-01-16 12:22:43 +00001179 }
1180
Linus Walleijffbbdd212012-02-22 10:05:38 +01001181 ret = master->transfer_one_message(master, master->cur_msg);
1182 if (ret) {
1183 dev_err(&master->dev,
Geert Uytterhoeven1f802f82014-01-28 10:33:03 +01001184 "failed to transfer one message from queue\n");
Jon Hunter49023d22016-03-08 12:28:20 +00001185 goto out;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001186 }
Jon Hunter49023d22016-03-08 12:28:20 +00001187
1188out:
1189 if (!bus_locked)
1190 mutex_unlock(&master->bus_lock_mutex);
Mark Brown62826972016-02-15 18:28:02 +00001191
1192 /* Prod the scheduler in case transfer_one() was busy waiting */
Jon Hunter49023d22016-03-08 12:28:20 +00001193 if (!ret)
1194 cond_resched();
Linus Walleijffbbdd212012-02-22 10:05:38 +01001195}
1196
Mark Brownfc9e0f72014-12-10 13:46:33 +00001197/**
1198 * spi_pump_messages - kthread work function which processes spi message queue
1199 * @work: pointer to kthread work struct contained in the master struct
1200 */
1201static void spi_pump_messages(struct kthread_work *work)
1202{
1203 struct spi_master *master =
1204 container_of(work, struct spi_master, pump_messages);
1205
Jon Hunter49023d22016-03-08 12:28:20 +00001206 __spi_pump_messages(master, true, false);
Mark Brownfc9e0f72014-12-10 13:46:33 +00001207}
1208
Linus Walleijffbbdd212012-02-22 10:05:38 +01001209static int spi_init_queue(struct spi_master *master)
1210{
1211 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
1212
Linus Walleijffbbdd212012-02-22 10:05:38 +01001213 master->running = false;
1214 master->busy = false;
1215
1216 init_kthread_worker(&master->kworker);
1217 master->kworker_task = kthread_run(kthread_worker_fn,
Kees Cookf1701682013-07-03 15:04:58 -07001218 &master->kworker, "%s",
Linus Walleijffbbdd212012-02-22 10:05:38 +01001219 dev_name(&master->dev));
1220 if (IS_ERR(master->kworker_task)) {
1221 dev_err(&master->dev, "failed to create message pump task\n");
Jarkko Nikula98a8f5a2014-12-04 11:02:25 +02001222 return PTR_ERR(master->kworker_task);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001223 }
1224 init_kthread_work(&master->pump_messages, spi_pump_messages);
1225
1226 /*
1227 * Master config will indicate if this controller should run the
1228 * message pump with high (realtime) priority to reduce the transfer
1229 * latency on the bus by minimising the delay between a transfer
1230 * request and the scheduling of the message pump thread. Without this
1231 * setting the message pump thread will remain at default priority.
1232 */
1233 if (master->rt) {
1234 dev_info(&master->dev,
1235 "will run message pump with realtime priority\n");
1236 sched_setscheduler(master->kworker_task, SCHED_FIFO, &param);
1237 }
1238
1239 return 0;
1240}
1241
1242/**
1243 * spi_get_next_queued_message() - called by driver to check for queued
1244 * messages
1245 * @master: the master to check for queued messages
1246 *
1247 * If there are more messages in the queue, the next message is returned from
1248 * this call.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001249 *
1250 * Return: the next message in the queue, else NULL if the queue is empty.
Linus Walleijffbbdd212012-02-22 10:05:38 +01001251 */
1252struct spi_message *spi_get_next_queued_message(struct spi_master *master)
1253{
1254 struct spi_message *next;
1255 unsigned long flags;
1256
1257 /* get a pointer to the next message, if any */
1258 spin_lock_irqsave(&master->queue_lock, flags);
Axel Lin1cfd97f2014-01-02 15:16:40 +08001259 next = list_first_entry_or_null(&master->queue, struct spi_message,
1260 queue);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001261 spin_unlock_irqrestore(&master->queue_lock, flags);
1262
1263 return next;
1264}
1265EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1266
1267/**
1268 * spi_finalize_current_message() - the current message is complete
1269 * @master: the master to return the message to
1270 *
1271 * Called by the driver to notify the core that the message in the front of the
1272 * queue is complete and can be removed from the queue.
1273 */
1274void spi_finalize_current_message(struct spi_master *master)
1275{
1276 struct spi_message *mesg;
1277 unsigned long flags;
Mark Brown2841a5f2013-10-05 00:23:12 +01001278 int ret;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001279
1280 spin_lock_irqsave(&master->queue_lock, flags);
1281 mesg = master->cur_msg;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001282 spin_unlock_irqrestore(&master->queue_lock, flags);
1283
Mark Brown99adef32014-01-16 12:22:43 +00001284 spi_unmap_msg(master, mesg);
1285
Mark Brown2841a5f2013-10-05 00:23:12 +01001286 if (master->cur_msg_prepared && master->unprepare_message) {
1287 ret = master->unprepare_message(master, mesg);
1288 if (ret) {
1289 dev_err(&master->dev,
1290 "failed to unprepare message: %d\n", ret);
1291 }
1292 }
Uwe Kleine-König391949b2015-03-18 11:27:28 +01001293
Martin Sperl8e76ef82015-05-10 07:50:45 +00001294 spin_lock_irqsave(&master->queue_lock, flags);
1295 master->cur_msg = NULL;
Mark Brown2841a5f2013-10-05 00:23:12 +01001296 master->cur_msg_prepared = false;
Martin Sperl8e76ef82015-05-10 07:50:45 +00001297 queue_kthread_work(&master->kworker, &master->pump_messages);
1298 spin_unlock_irqrestore(&master->queue_lock, flags);
1299
1300 trace_spi_message_done(mesg);
Mark Brown2841a5f2013-10-05 00:23:12 +01001301
Linus Walleijffbbdd212012-02-22 10:05:38 +01001302 mesg->state = NULL;
1303 if (mesg->complete)
1304 mesg->complete(mesg->context);
1305}
1306EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1307
1308static int spi_start_queue(struct spi_master *master)
1309{
1310 unsigned long flags;
1311
1312 spin_lock_irqsave(&master->queue_lock, flags);
1313
1314 if (master->running || master->busy) {
1315 spin_unlock_irqrestore(&master->queue_lock, flags);
1316 return -EBUSY;
1317 }
1318
1319 master->running = true;
1320 master->cur_msg = NULL;
1321 spin_unlock_irqrestore(&master->queue_lock, flags);
1322
1323 queue_kthread_work(&master->kworker, &master->pump_messages);
1324
1325 return 0;
1326}
1327
1328static int spi_stop_queue(struct spi_master *master)
1329{
1330 unsigned long flags;
1331 unsigned limit = 500;
1332 int ret = 0;
1333
1334 spin_lock_irqsave(&master->queue_lock, flags);
1335
1336 /*
1337 * This is a bit lame, but is optimized for the common execution path.
1338 * A wait_queue on the master->busy could be used, but then the common
1339 * execution path (pump_messages) would be required to call wake_up or
1340 * friends on every SPI message. Do this instead.
1341 */
1342 while ((!list_empty(&master->queue) || master->busy) && limit--) {
1343 spin_unlock_irqrestore(&master->queue_lock, flags);
Axel Linf97b26b2014-02-21 09:15:18 +08001344 usleep_range(10000, 11000);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001345 spin_lock_irqsave(&master->queue_lock, flags);
1346 }
1347
1348 if (!list_empty(&master->queue) || master->busy)
1349 ret = -EBUSY;
1350 else
1351 master->running = false;
1352
1353 spin_unlock_irqrestore(&master->queue_lock, flags);
1354
1355 if (ret) {
1356 dev_warn(&master->dev,
1357 "could not stop message queue\n");
1358 return ret;
1359 }
1360 return ret;
1361}
1362
1363static int spi_destroy_queue(struct spi_master *master)
1364{
1365 int ret;
1366
1367 ret = spi_stop_queue(master);
1368
1369 /*
1370 * flush_kthread_worker will block until all work is done.
1371 * If the reason that stop_queue timed out is that the work will never
1372 * finish, then it does no good to call flush/stop thread, so
1373 * return anyway.
1374 */
1375 if (ret) {
1376 dev_err(&master->dev, "problem destroying queue\n");
1377 return ret;
1378 }
1379
1380 flush_kthread_worker(&master->kworker);
1381 kthread_stop(master->kworker_task);
1382
1383 return 0;
1384}
1385
Mark Brown0461a412014-12-09 21:38:05 +00001386static int __spi_queued_transfer(struct spi_device *spi,
1387 struct spi_message *msg,
1388 bool need_pump)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001389{
1390 struct spi_master *master = spi->master;
1391 unsigned long flags;
1392
1393 spin_lock_irqsave(&master->queue_lock, flags);
1394
1395 if (!master->running) {
1396 spin_unlock_irqrestore(&master->queue_lock, flags);
1397 return -ESHUTDOWN;
1398 }
1399 msg->actual_length = 0;
1400 msg->status = -EINPROGRESS;
1401
1402 list_add_tail(&msg->queue, &master->queue);
Mark Brown0461a412014-12-09 21:38:05 +00001403 if (!master->busy && need_pump)
Linus Walleijffbbdd212012-02-22 10:05:38 +01001404 queue_kthread_work(&master->kworker, &master->pump_messages);
1405
1406 spin_unlock_irqrestore(&master->queue_lock, flags);
1407 return 0;
1408}
1409
Mark Brown0461a412014-12-09 21:38:05 +00001410/**
1411 * spi_queued_transfer - transfer function for queued transfers
1412 * @spi: spi device which is requesting transfer
1413 * @msg: spi message which is to handled is queued to driver queue
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001414 *
1415 * Return: zero on success, else a negative error code.
Mark Brown0461a412014-12-09 21:38:05 +00001416 */
1417static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
1418{
1419 return __spi_queued_transfer(spi, msg, true);
1420}
1421
Linus Walleijffbbdd212012-02-22 10:05:38 +01001422static int spi_master_initialize_queue(struct spi_master *master)
1423{
1424 int ret;
1425
Linus Walleijffbbdd212012-02-22 10:05:38 +01001426 master->transfer = spi_queued_transfer;
Mark Brownb1589352013-10-05 11:50:40 +01001427 if (!master->transfer_one_message)
1428 master->transfer_one_message = spi_transfer_one_message;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001429
1430 /* Initialize and start queue */
1431 ret = spi_init_queue(master);
1432 if (ret) {
1433 dev_err(&master->dev, "problem initializing queue\n");
1434 goto err_init_queue;
1435 }
Mark Brownc3676d52014-05-01 10:47:52 -07001436 master->queued = true;
Linus Walleijffbbdd212012-02-22 10:05:38 +01001437 ret = spi_start_queue(master);
1438 if (ret) {
1439 dev_err(&master->dev, "problem starting queue\n");
1440 goto err_start_queue;
1441 }
1442
1443 return 0;
1444
1445err_start_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001446 spi_destroy_queue(master);
Mark Brownc3676d52014-05-01 10:47:52 -07001447err_init_queue:
Linus Walleijffbbdd212012-02-22 10:05:38 +01001448 return ret;
1449}
1450
1451/*-------------------------------------------------------------------------*/
1452
Andreas Larsson7cb94362012-12-04 15:09:38 +01001453#if defined(CONFIG_OF)
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001454static struct spi_device *
1455of_register_spi_device(struct spi_master *master, struct device_node *nc)
1456{
1457 struct spi_device *spi;
1458 int rc;
1459 u32 value;
1460
1461 /* Alloc an spi_device */
1462 spi = spi_alloc_device(master);
1463 if (!spi) {
1464 dev_err(&master->dev, "spi_device alloc error for %s\n",
1465 nc->full_name);
1466 rc = -ENOMEM;
1467 goto err_out;
1468 }
1469
1470 /* Select device driver */
1471 rc = of_modalias_node(nc, spi->modalias,
1472 sizeof(spi->modalias));
1473 if (rc < 0) {
1474 dev_err(&master->dev, "cannot find modalias for %s\n",
1475 nc->full_name);
1476 goto err_out;
1477 }
1478
1479 /* Device address */
1480 rc = of_property_read_u32(nc, "reg", &value);
1481 if (rc) {
1482 dev_err(&master->dev, "%s has no valid 'reg' property (%d)\n",
1483 nc->full_name, rc);
1484 goto err_out;
1485 }
1486 spi->chip_select = value;
1487
1488 /* Mode (clock phase/polarity/etc.) */
1489 if (of_find_property(nc, "spi-cpha", NULL))
1490 spi->mode |= SPI_CPHA;
1491 if (of_find_property(nc, "spi-cpol", NULL))
1492 spi->mode |= SPI_CPOL;
1493 if (of_find_property(nc, "spi-cs-high", NULL))
1494 spi->mode |= SPI_CS_HIGH;
1495 if (of_find_property(nc, "spi-3wire", NULL))
1496 spi->mode |= SPI_3WIRE;
1497 if (of_find_property(nc, "spi-lsb-first", NULL))
1498 spi->mode |= SPI_LSB_FIRST;
1499
1500 /* Device DUAL/QUAD mode */
1501 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
1502 switch (value) {
1503 case 1:
1504 break;
1505 case 2:
1506 spi->mode |= SPI_TX_DUAL;
1507 break;
1508 case 4:
1509 spi->mode |= SPI_TX_QUAD;
1510 break;
1511 default:
1512 dev_warn(&master->dev,
1513 "spi-tx-bus-width %d not supported\n",
1514 value);
1515 break;
1516 }
1517 }
1518
1519 if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
1520 switch (value) {
1521 case 1:
1522 break;
1523 case 2:
1524 spi->mode |= SPI_RX_DUAL;
1525 break;
1526 case 4:
1527 spi->mode |= SPI_RX_QUAD;
1528 break;
1529 default:
1530 dev_warn(&master->dev,
1531 "spi-rx-bus-width %d not supported\n",
1532 value);
1533 break;
1534 }
1535 }
1536
1537 /* Device speed */
1538 rc = of_property_read_u32(nc, "spi-max-frequency", &value);
1539 if (rc) {
1540 dev_err(&master->dev, "%s has no valid 'spi-max-frequency' property (%d)\n",
1541 nc->full_name, rc);
1542 goto err_out;
1543 }
1544 spi->max_speed_hz = value;
1545
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001546 /* Store a pointer to the node in the device structure */
1547 of_node_get(nc);
1548 spi->dev.of_node = nc;
1549
1550 /* Register the new device */
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001551 rc = spi_add_device(spi);
1552 if (rc) {
1553 dev_err(&master->dev, "spi_device register error %s\n",
1554 nc->full_name);
1555 goto err_out;
1556 }
1557
1558 return spi;
1559
1560err_out:
1561 spi_dev_put(spi);
1562 return ERR_PTR(rc);
1563}
1564
Grant Likelyd57a4282012-04-07 14:16:53 -06001565/**
1566 * of_register_spi_devices() - Register child devices onto the SPI bus
1567 * @master: Pointer to spi_master device
1568 *
1569 * Registers an spi_device for each child node of master node which has a 'reg'
1570 * property.
1571 */
1572static void of_register_spi_devices(struct spi_master *master)
1573{
1574 struct spi_device *spi;
1575 struct device_node *nc;
Grant Likelyd57a4282012-04-07 14:16:53 -06001576
1577 if (!master->dev.of_node)
1578 return;
1579
Alexander Sverdlinf3b61592012-11-29 08:59:29 +01001580 for_each_available_child_of_node(master->dev.of_node, nc) {
Geert Uytterhoevenbd6c1642015-11-30 15:28:07 +01001581 if (of_node_test_and_set_flag(nc, OF_POPULATED))
1582 continue;
Pantelis Antoniouaff5e3f2014-10-29 10:40:37 +02001583 spi = of_register_spi_device(master, nc);
1584 if (IS_ERR(spi))
1585 dev_warn(&master->dev, "Failed to create SPI device for %s\n",
Grant Likelyd57a4282012-04-07 14:16:53 -06001586 nc->full_name);
Grant Likelyd57a4282012-04-07 14:16:53 -06001587 }
1588}
1589#else
1590static void of_register_spi_devices(struct spi_master *master) { }
1591#endif
1592
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001593#ifdef CONFIG_ACPI
1594static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
1595{
1596 struct spi_device *spi = data;
1597
1598 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1599 struct acpi_resource_spi_serialbus *sb;
1600
1601 sb = &ares->data.spi_serial_bus;
1602 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
1603 spi->chip_select = sb->device_selection;
1604 spi->max_speed_hz = sb->connection_speed;
1605
1606 if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
1607 spi->mode |= SPI_CPHA;
1608 if (sb->clock_polarity == ACPI_SPI_START_HIGH)
1609 spi->mode |= SPI_CPOL;
1610 if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
1611 spi->mode |= SPI_CS_HIGH;
1612 }
1613 } else if (spi->irq < 0) {
1614 struct resource r;
1615
1616 if (acpi_dev_resource_interrupt(ares, 0, &r))
1617 spi->irq = r.start;
1618 }
1619
1620 /* Always tell the ACPI core to skip this resource */
1621 return 1;
1622}
1623
1624static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
1625 void *data, void **return_value)
1626{
1627 struct spi_master *master = data;
1628 struct list_head resource_list;
1629 struct acpi_device *adev;
1630 struct spi_device *spi;
1631 int ret;
1632
1633 if (acpi_bus_get_device(handle, &adev))
1634 return AE_OK;
1635 if (acpi_bus_get_status(adev) || !adev->status.present)
1636 return AE_OK;
1637
1638 spi = spi_alloc_device(master);
1639 if (!spi) {
1640 dev_err(&master->dev, "failed to allocate SPI device for %s\n",
1641 dev_name(&adev->dev));
1642 return AE_NO_MEMORY;
1643 }
1644
Rafael J. Wysocki7b199812013-11-11 22:41:56 +01001645 ACPI_COMPANION_SET(&spi->dev, adev);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001646 spi->irq = -1;
1647
1648 INIT_LIST_HEAD(&resource_list);
1649 ret = acpi_dev_get_resources(adev, &resource_list,
1650 acpi_spi_add_resource, spi);
1651 acpi_dev_free_resource_list(&resource_list);
1652
1653 if (ret < 0 || !spi->max_speed_hz) {
1654 spi_dev_put(spi);
1655 return AE_OK;
1656 }
1657
Christophe RICARD33ada672015-12-23 23:25:35 +01001658 if (spi->irq < 0)
1659 spi->irq = acpi_dev_gpio_irq_get(adev, 0);
1660
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001661 adev->power.flags.ignore_parent = true;
Jarkko Nikulacf9eb392013-10-10 17:19:17 +03001662 strlcpy(spi->modalias, acpi_device_hid(adev), sizeof(spi->modalias));
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001663 if (spi_add_device(spi)) {
Mika Westerberg33cf00e2013-10-10 13:28:48 +03001664 adev->power.flags.ignore_parent = false;
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001665 dev_err(&master->dev, "failed to add SPI device %s from ACPI\n",
1666 dev_name(&adev->dev));
1667 spi_dev_put(spi);
1668 }
1669
1670 return AE_OK;
1671}
1672
1673static void acpi_register_spi_devices(struct spi_master *master)
1674{
1675 acpi_status status;
1676 acpi_handle handle;
1677
Rafael J. Wysocki29896172013-04-01 00:21:08 +00001678 handle = ACPI_HANDLE(master->dev.parent);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001679 if (!handle)
1680 return;
1681
1682 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1683 acpi_spi_add_device, NULL,
1684 master, NULL);
1685 if (ACPI_FAILURE(status))
1686 dev_warn(&master->dev, "failed to enumerate SPI slaves\n");
1687}
1688#else
1689static inline void acpi_register_spi_devices(struct spi_master *master) {}
1690#endif /* CONFIG_ACPI */
1691
Tony Jones49dce682007-10-16 01:27:48 -07001692static void spi_master_release(struct device *dev)
David Brownell8ae12a02006-01-08 13:34:19 -08001693{
1694 struct spi_master *master;
1695
Tony Jones49dce682007-10-16 01:27:48 -07001696 master = container_of(dev, struct spi_master, dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001697 kfree(master);
1698}
1699
1700static struct class spi_master_class = {
1701 .name = "spi_master",
1702 .owner = THIS_MODULE,
Tony Jones49dce682007-10-16 01:27:48 -07001703 .dev_release = spi_master_release,
Martin Sperleca2ebc2015-06-22 13:00:36 +00001704 .dev_groups = spi_master_groups,
David Brownell8ae12a02006-01-08 13:34:19 -08001705};
1706
1707
1708/**
1709 * spi_alloc_master - allocate SPI master controller
1710 * @dev: the controller, possibly using the platform_bus
David Brownell33e34dc2007-05-08 00:32:21 -07001711 * @size: how much zeroed driver-private data to allocate; the pointer to this
Tony Jones49dce682007-10-16 01:27:48 -07001712 * memory is in the driver_data field of the returned device,
David Brownell0c8684612006-01-08 13:34:25 -08001713 * accessible with spi_master_get_devdata().
David Brownell33e34dc2007-05-08 00:32:21 -07001714 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001715 *
1716 * This call is used only by SPI master controller drivers, which are the
1717 * only ones directly touching chip registers. It's how they allocate
dmitry pervushinba1a0512006-05-20 15:00:14 -07001718 * an spi_master structure, prior to calling spi_register_master().
David Brownell8ae12a02006-01-08 13:34:19 -08001719 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001720 * This must be called from context that can sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08001721 *
1722 * The caller is responsible for assigning the bus number and initializing
dmitry pervushinba1a0512006-05-20 15:00:14 -07001723 * the master's methods before calling spi_register_master(); and (after errors
Guenter Roecka394d632015-09-06 01:46:54 +03001724 * adding the device) calling spi_master_put() to prevent a memory leak.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001725 *
1726 * Return: the SPI master structure on success, else NULL.
David Brownell8ae12a02006-01-08 13:34:19 -08001727 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001728struct spi_master *spi_alloc_master(struct device *dev, unsigned size)
David Brownell8ae12a02006-01-08 13:34:19 -08001729{
1730 struct spi_master *master;
1731
David Brownell0c8684612006-01-08 13:34:25 -08001732 if (!dev)
1733 return NULL;
1734
Jingoo Han5fe5f052013-10-14 10:31:51 +09001735 master = kzalloc(size + sizeof(*master), GFP_KERNEL);
David Brownell8ae12a02006-01-08 13:34:19 -08001736 if (!master)
1737 return NULL;
1738
Tony Jones49dce682007-10-16 01:27:48 -07001739 device_initialize(&master->dev);
Grant Likely1e8a52e2012-05-19 23:42:08 -06001740 master->bus_num = -1;
1741 master->num_chipselect = 1;
Tony Jones49dce682007-10-16 01:27:48 -07001742 master->dev.class = &spi_master_class;
Johan Hovold157f38f2015-12-14 16:16:19 +01001743 master->dev.parent = dev;
David Brownell0c8684612006-01-08 13:34:25 -08001744 spi_master_set_devdata(master, &master[1]);
David Brownell8ae12a02006-01-08 13:34:19 -08001745
1746 return master;
1747}
1748EXPORT_SYMBOL_GPL(spi_alloc_master);
1749
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001750#ifdef CONFIG_OF
1751static int of_spi_register_master(struct spi_master *master)
1752{
Grant Likelye80beb22013-02-12 17:48:37 +00001753 int nb, i, *cs;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001754 struct device_node *np = master->dev.of_node;
1755
1756 if (!np)
1757 return 0;
1758
1759 nb = of_gpio_named_count(np, "cs-gpios");
Jingoo Han5fe5f052013-10-14 10:31:51 +09001760 master->num_chipselect = max_t(int, nb, master->num_chipselect);
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001761
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001762 /* Return error only for an incorrectly formed cs-gpios property */
1763 if (nb == 0 || nb == -ENOENT)
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001764 return 0;
Andreas Larsson8ec5d842013-02-13 14:23:24 +01001765 else if (nb < 0)
1766 return nb;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001767
1768 cs = devm_kzalloc(&master->dev,
1769 sizeof(int) * master->num_chipselect,
1770 GFP_KERNEL);
1771 master->cs_gpios = cs;
1772
1773 if (!master->cs_gpios)
1774 return -ENOMEM;
1775
Andreas Larsson0da83bb2013-01-29 15:53:40 +01001776 for (i = 0; i < master->num_chipselect; i++)
Andreas Larsson446411e2013-02-13 14:20:25 +01001777 cs[i] = -ENOENT;
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001778
1779 for (i = 0; i < nb; i++)
1780 cs[i] = of_get_named_gpio(np, "cs-gpios", i);
1781
1782 return 0;
1783}
1784#else
1785static int of_spi_register_master(struct spi_master *master)
1786{
1787 return 0;
1788}
1789#endif
1790
David Brownell8ae12a02006-01-08 13:34:19 -08001791/**
1792 * spi_register_master - register SPI master controller
1793 * @master: initialized master, originally from spi_alloc_master()
David Brownell33e34dc2007-05-08 00:32:21 -07001794 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001795 *
1796 * SPI master controllers connect to their drivers using some non-SPI bus,
1797 * such as the platform bus. The final stage of probe() in that code
1798 * includes calling spi_register_master() to hook up to this SPI bus glue.
1799 *
1800 * SPI controllers use board specific (often SOC specific) bus numbers,
1801 * and board-specific addressing for SPI devices combines those numbers
1802 * with chip select numbers. Since SPI does not directly support dynamic
1803 * device identification, boards need configuration tables telling which
1804 * chip is at which address.
1805 *
1806 * This must be called from context that can sleep. It returns zero on
1807 * success, else a negative error code (dropping the master's refcount).
David Brownell0c8684612006-01-08 13:34:25 -08001808 * After a successful return, the caller is responsible for calling
1809 * spi_unregister_master().
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001810 *
1811 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08001812 */
Adrian Bunke9d5a462007-03-26 21:32:23 -08001813int spi_register_master(struct spi_master *master)
David Brownell8ae12a02006-01-08 13:34:19 -08001814{
David Brownelle44a45a2007-06-03 13:50:40 -07001815 static atomic_t dyn_bus_id = ATOMIC_INIT((1<<15) - 1);
Tony Jones49dce682007-10-16 01:27:48 -07001816 struct device *dev = master->dev.parent;
Feng Tang2b9603a2010-08-02 15:52:15 +08001817 struct boardinfo *bi;
David Brownell8ae12a02006-01-08 13:34:19 -08001818 int status = -ENODEV;
1819 int dynamic = 0;
1820
David Brownell0c8684612006-01-08 13:34:25 -08001821 if (!dev)
1822 return -ENODEV;
1823
Jean-Christophe PLAGNIOL-VILLARD74317982012-11-15 20:19:57 +01001824 status = of_spi_register_master(master);
1825 if (status)
1826 return status;
1827
David Brownell082c8cb2007-07-31 00:39:45 -07001828 /* even if it's just one always-selected device, there must
1829 * be at least one chipselect
1830 */
1831 if (master->num_chipselect == 0)
1832 return -EINVAL;
1833
Grant Likelybb297852012-12-21 19:32:09 +00001834 if ((master->bus_num < 0) && master->dev.of_node)
1835 master->bus_num = of_alias_get_id(master->dev.of_node, "spi");
1836
David Brownell8ae12a02006-01-08 13:34:19 -08001837 /* convention: dynamically assigned bus IDs count down from the max */
David Brownella020ed72006-04-03 15:49:04 -07001838 if (master->bus_num < 0) {
David Brownell082c8cb2007-07-31 00:39:45 -07001839 /* FIXME switch to an IDR based scheme, something like
1840 * I2C now uses, so we can't run out of "dynamic" IDs
1841 */
David Brownell8ae12a02006-01-08 13:34:19 -08001842 master->bus_num = atomic_dec_return(&dyn_bus_id);
David Brownellb8852442006-01-08 13:34:23 -08001843 dynamic = 1;
David Brownell8ae12a02006-01-08 13:34:19 -08001844 }
1845
Mark Brown5424d432014-12-10 17:40:53 +00001846 INIT_LIST_HEAD(&master->queue);
1847 spin_lock_init(&master->queue_lock);
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07001848 spin_lock_init(&master->bus_lock_spinlock);
1849 mutex_init(&master->bus_lock_mutex);
1850 master->bus_lock_flag = 0;
Mark Brownb1589352013-10-05 11:50:40 +01001851 init_completion(&master->xfer_completion);
Mark Brown6ad45a22014-02-02 13:47:47 +00001852 if (!master->max_dma_len)
1853 master->max_dma_len = INT_MAX;
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07001854
David Brownell8ae12a02006-01-08 13:34:19 -08001855 /* register the device, then userspace will see it.
1856 * registration fails if the bus ID is in use.
1857 */
Kay Sievers35f74fc2009-01-06 10:44:37 -08001858 dev_set_name(&master->dev, "spi%u", master->bus_num);
Tony Jones49dce682007-10-16 01:27:48 -07001859 status = device_add(&master->dev);
David Brownellb8852442006-01-08 13:34:23 -08001860 if (status < 0)
David Brownell8ae12a02006-01-08 13:34:19 -08001861 goto done;
Kay Sievers35f74fc2009-01-06 10:44:37 -08001862 dev_dbg(dev, "registered master %s%s\n", dev_name(&master->dev),
David Brownell8ae12a02006-01-08 13:34:19 -08001863 dynamic ? " (dynamic)" : "");
1864
Linus Walleijffbbdd212012-02-22 10:05:38 +01001865 /* If we're using a queued driver, start the queue */
1866 if (master->transfer)
1867 dev_info(dev, "master is unqueued, this is deprecated\n");
1868 else {
1869 status = spi_master_initialize_queue(master);
1870 if (status) {
Axel Line93b0722013-08-31 20:25:52 +08001871 device_del(&master->dev);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001872 goto done;
1873 }
1874 }
Martin Sperleca2ebc2015-06-22 13:00:36 +00001875 /* add statistics */
1876 spin_lock_init(&master->statistics.lock);
Linus Walleijffbbdd212012-02-22 10:05:38 +01001877
Feng Tang2b9603a2010-08-02 15:52:15 +08001878 mutex_lock(&board_lock);
1879 list_add_tail(&master->list, &spi_master_list);
1880 list_for_each_entry(bi, &board_list, list)
1881 spi_match_master_to_boardinfo(master, &bi->board_info);
1882 mutex_unlock(&board_lock);
1883
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001884 /* Register devices from the device tree and ACPI */
Anatolij Gustschin12b15e82010-07-27 22:35:58 +02001885 of_register_spi_devices(master);
Mika Westerberg64bee4d2012-11-30 12:37:53 +01001886 acpi_register_spi_devices(master);
David Brownell8ae12a02006-01-08 13:34:19 -08001887done:
1888 return status;
1889}
1890EXPORT_SYMBOL_GPL(spi_register_master);
1891
Mark Brown666d5b42013-08-31 18:50:52 +01001892static void devm_spi_unregister(struct device *dev, void *res)
1893{
1894 spi_unregister_master(*(struct spi_master **)res);
1895}
1896
1897/**
1898 * dev_spi_register_master - register managed SPI master controller
1899 * @dev: device managing SPI master
1900 * @master: initialized master, originally from spi_alloc_master()
1901 * Context: can sleep
1902 *
1903 * Register a SPI device as with spi_register_master() which will
1904 * automatically be unregister
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02001905 *
1906 * Return: zero on success, else a negative error code.
Mark Brown666d5b42013-08-31 18:50:52 +01001907 */
1908int devm_spi_register_master(struct device *dev, struct spi_master *master)
1909{
1910 struct spi_master **ptr;
1911 int ret;
1912
1913 ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL);
1914 if (!ptr)
1915 return -ENOMEM;
1916
1917 ret = spi_register_master(master);
Stephen Warren4b928942013-11-21 16:11:15 -07001918 if (!ret) {
Mark Brown666d5b42013-08-31 18:50:52 +01001919 *ptr = master;
1920 devres_add(dev, ptr);
1921 } else {
1922 devres_free(ptr);
1923 }
1924
1925 return ret;
1926}
1927EXPORT_SYMBOL_GPL(devm_spi_register_master);
1928
David Lamparter34860082010-08-30 23:54:17 +02001929static int __unregister(struct device *dev, void *null)
David Brownell8ae12a02006-01-08 13:34:19 -08001930{
David Lamparter34860082010-08-30 23:54:17 +02001931 spi_unregister_device(to_spi_device(dev));
David Brownell8ae12a02006-01-08 13:34:19 -08001932 return 0;
1933}
1934
1935/**
1936 * spi_unregister_master - unregister SPI master controller
1937 * @master: the master being unregistered
David Brownell33e34dc2007-05-08 00:32:21 -07001938 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08001939 *
1940 * This call is used only by SPI master controller drivers, which are the
1941 * only ones directly touching chip registers.
1942 *
1943 * This must be called from context that can sleep.
1944 */
1945void spi_unregister_master(struct spi_master *master)
1946{
Jeff Garzik89fc9a12006-12-06 20:35:35 -08001947 int dummy;
1948
Linus Walleijffbbdd212012-02-22 10:05:38 +01001949 if (master->queued) {
1950 if (spi_destroy_queue(master))
1951 dev_err(&master->dev, "queue remove failed\n");
1952 }
1953
Feng Tang2b9603a2010-08-02 15:52:15 +08001954 mutex_lock(&board_lock);
1955 list_del(&master->list);
1956 mutex_unlock(&board_lock);
1957
Sebastian Andrzej Siewior97dbf372010-12-21 17:24:31 -08001958 dummy = device_for_each_child(&master->dev, NULL, __unregister);
Tony Jones49dce682007-10-16 01:27:48 -07001959 device_unregister(&master->dev);
David Brownell8ae12a02006-01-08 13:34:19 -08001960}
1961EXPORT_SYMBOL_GPL(spi_unregister_master);
1962
Linus Walleijffbbdd212012-02-22 10:05:38 +01001963int spi_master_suspend(struct spi_master *master)
1964{
1965 int ret;
1966
1967 /* Basically no-ops for non-queued masters */
1968 if (!master->queued)
1969 return 0;
1970
1971 ret = spi_stop_queue(master);
1972 if (ret)
1973 dev_err(&master->dev, "queue stop failed\n");
1974
1975 return ret;
1976}
1977EXPORT_SYMBOL_GPL(spi_master_suspend);
1978
1979int spi_master_resume(struct spi_master *master)
1980{
1981 int ret;
1982
1983 if (!master->queued)
1984 return 0;
1985
1986 ret = spi_start_queue(master);
1987 if (ret)
1988 dev_err(&master->dev, "queue restart failed\n");
1989
1990 return ret;
1991}
1992EXPORT_SYMBOL_GPL(spi_master_resume);
1993
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001994static int __spi_master_match(struct device *dev, const void *data)
Dave Young5ed2c832008-01-22 15:14:18 +08001995{
1996 struct spi_master *m;
Michał Mirosław9f3b7952013-02-01 20:40:17 +01001997 const u16 *bus_num = data;
Dave Young5ed2c832008-01-22 15:14:18 +08001998
1999 m = container_of(dev, struct spi_master, dev);
2000 return m->bus_num == *bus_num;
2001}
2002
David Brownell8ae12a02006-01-08 13:34:19 -08002003/**
2004 * spi_busnum_to_master - look up master associated with bus_num
2005 * @bus_num: the master's bus number
David Brownell33e34dc2007-05-08 00:32:21 -07002006 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002007 *
2008 * This call may be used with devices that are registered after
2009 * arch init time. It returns a refcounted pointer to the relevant
2010 * spi_master (which the caller must release), or NULL if there is
2011 * no such master registered.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002012 *
2013 * Return: the SPI master structure on success, else NULL.
David Brownell8ae12a02006-01-08 13:34:19 -08002014 */
2015struct spi_master *spi_busnum_to_master(u16 bus_num)
2016{
Tony Jones49dce682007-10-16 01:27:48 -07002017 struct device *dev;
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08002018 struct spi_master *master = NULL;
David Brownell8ae12a02006-01-08 13:34:19 -08002019
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -04002020 dev = class_find_device(&spi_master_class, NULL, &bus_num,
Dave Young5ed2c832008-01-22 15:14:18 +08002021 __spi_master_match);
2022 if (dev)
2023 master = container_of(dev, struct spi_master, dev);
2024 /* reference got in class_find_device */
Atsushi Nemoto1e9a51d2007-01-26 00:56:54 -08002025 return master;
David Brownell8ae12a02006-01-08 13:34:19 -08002026}
2027EXPORT_SYMBOL_GPL(spi_busnum_to_master);
2028
2029
2030/*-------------------------------------------------------------------------*/
2031
David Brownell7d077192009-06-17 16:26:03 -07002032/* Core methods for SPI master protocol drivers. Some of the
2033 * other core methods are currently defined as inline functions.
2034 */
2035
Stefan Brüns63ab6452015-08-23 16:06:30 +02002036static int __spi_validate_bits_per_word(struct spi_master *master, u8 bits_per_word)
2037{
2038 if (master->bits_per_word_mask) {
2039 /* Only 32 bits fit in the mask */
2040 if (bits_per_word > 32)
2041 return -EINVAL;
2042 if (!(master->bits_per_word_mask &
2043 SPI_BPW_MASK(bits_per_word)))
2044 return -EINVAL;
2045 }
2046
2047 return 0;
2048}
2049
David Brownell7d077192009-06-17 16:26:03 -07002050/**
2051 * spi_setup - setup SPI mode and clock rate
2052 * @spi: the device whose settings are being modified
2053 * Context: can sleep, and no requests are queued to the device
2054 *
2055 * SPI protocol drivers may need to update the transfer mode if the
2056 * device doesn't work with its default. They may likewise need
2057 * to update clock rates or word sizes from initial values. This function
2058 * changes those settings, and must be called from a context that can sleep.
2059 * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
2060 * effect the next time the device is selected and data is transferred to
2061 * or from it. When this function returns, the spi device is deselected.
2062 *
2063 * Note that this call will fail if the protocol driver specifies an option
2064 * that the underlying controller or its driver does not support. For
2065 * example, not all hardware supports wire transfers using nine bit words,
2066 * LSB-first wire encoding, or active-high chipselects.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002067 *
2068 * Return: zero on success, else a negative error code.
David Brownell7d077192009-06-17 16:26:03 -07002069 */
2070int spi_setup(struct spi_device *spi)
2071{
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02002072 unsigned bad_bits, ugly_bits;
Andy Shevchenko5ab8d262015-10-14 22:43:07 +03002073 int status;
David Brownell7d077192009-06-17 16:26:03 -07002074
wangyuhangf477b7f2013-08-11 18:15:17 +08002075 /* check mode to prevent that DUAL and QUAD set at the same time
2076 */
2077 if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) ||
2078 ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) {
2079 dev_err(&spi->dev,
2080 "setup: can not select dual and quad at the same time\n");
2081 return -EINVAL;
2082 }
2083 /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
2084 */
2085 if ((spi->mode & SPI_3WIRE) && (spi->mode &
2086 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)))
2087 return -EINVAL;
David Brownelle7db06b2009-06-17 16:26:04 -07002088 /* help drivers fail *cleanly* when they need options
2089 * that aren't supported with their current master
2090 */
2091 bad_bits = spi->mode & ~spi->master->mode_bits;
Geert Uytterhoeven83596fb2014-04-14 19:39:53 +02002092 ugly_bits = bad_bits &
2093 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD);
2094 if (ugly_bits) {
2095 dev_warn(&spi->dev,
2096 "setup: ignoring unsupported mode bits %x\n",
2097 ugly_bits);
2098 spi->mode &= ~ugly_bits;
2099 bad_bits &= ~ugly_bits;
2100 }
David Brownelle7db06b2009-06-17 16:26:04 -07002101 if (bad_bits) {
Linus Walleijeb288a12010-10-21 21:06:44 +02002102 dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
David Brownelle7db06b2009-06-17 16:26:04 -07002103 bad_bits);
2104 return -EINVAL;
2105 }
2106
David Brownell7d077192009-06-17 16:26:03 -07002107 if (!spi->bits_per_word)
2108 spi->bits_per_word = 8;
2109
Andy Shevchenko5ab8d262015-10-14 22:43:07 +03002110 status = __spi_validate_bits_per_word(spi->master, spi->bits_per_word);
2111 if (status)
2112 return status;
Stefan Brüns63ab6452015-08-23 16:06:30 +02002113
Axel Lin052eb2d2014-02-10 00:08:05 +08002114 if (!spi->max_speed_hz)
2115 spi->max_speed_hz = spi->master->max_speed_hz;
2116
Laxman Dewangancaae0702012-11-09 14:35:22 +05302117 if (spi->master->setup)
2118 status = spi->master->setup(spi);
David Brownell7d077192009-06-17 16:26:03 -07002119
Franklin S Cooper Jrabeedb02015-10-16 10:29:03 -05002120 spi_set_cs(spi, false);
2121
Jingoo Han5fe5f052013-10-14 10:31:51 +09002122 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 -07002123 (int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
2124 (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
2125 (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
2126 (spi->mode & SPI_3WIRE) ? "3wire, " : "",
2127 (spi->mode & SPI_LOOP) ? "loopback, " : "",
2128 spi->bits_per_word, spi->max_speed_hz,
2129 status);
2130
2131 return status;
2132}
2133EXPORT_SYMBOL_GPL(spi_setup);
2134
Mark Brown90808732013-11-13 23:44:15 +00002135static int __spi_validate(struct spi_device *spi, struct spi_message *message)
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002136{
2137 struct spi_master *master = spi->master;
Laxman Dewangane6811d12012-11-09 14:36:45 +05302138 struct spi_transfer *xfer;
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09002139 int w_size;
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002140
Mark Brown24a00132013-07-10 15:05:40 +01002141 if (list_empty(&message->transfers))
2142 return -EINVAL;
Mark Brown24a00132013-07-10 15:05:40 +01002143
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002144 /* Half-duplex links include original MicroWire, and ones with
2145 * only one data pin like SPI_3WIRE (switches direction) or where
2146 * either MOSI or MISO is missing. They can also be caused by
2147 * software limitations.
2148 */
2149 if ((master->flags & SPI_MASTER_HALF_DUPLEX)
2150 || (spi->mode & SPI_3WIRE)) {
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002151 unsigned flags = master->flags;
2152
2153 list_for_each_entry(xfer, &message->transfers, transfer_list) {
2154 if (xfer->rx_buf && xfer->tx_buf)
2155 return -EINVAL;
2156 if ((flags & SPI_MASTER_NO_TX) && xfer->tx_buf)
2157 return -EINVAL;
2158 if ((flags & SPI_MASTER_NO_RX) && xfer->rx_buf)
2159 return -EINVAL;
2160 }
2161 }
2162
Laxman Dewangane6811d12012-11-09 14:36:45 +05302163 /**
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05302164 * Set transfer bits_per_word and max speed as spi device default if
2165 * it is not set for this transfer.
wangyuhangf477b7f2013-08-11 18:15:17 +08002166 * Set transfer tx_nbits and rx_nbits as single transfer default
2167 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
Laxman Dewangane6811d12012-11-09 14:36:45 +05302168 */
Martin Sperl77e80582015-11-27 12:31:09 +00002169 message->frame_length = 0;
Laxman Dewangane6811d12012-11-09 14:36:45 +05302170 list_for_each_entry(xfer, &message->transfers, transfer_list) {
Sourav Poddar078726c2013-07-18 15:31:25 +05302171 message->frame_length += xfer->len;
Laxman Dewangane6811d12012-11-09 14:36:45 +05302172 if (!xfer->bits_per_word)
2173 xfer->bits_per_word = spi->bits_per_word;
Axel Lina6f87fa2014-03-17 10:08:12 +08002174
2175 if (!xfer->speed_hz)
Laxman Dewangan059b8ff2013-01-05 00:17:14 +05302176 xfer->speed_hz = spi->max_speed_hz;
Mark Brown7dc9fbc2015-08-20 11:52:18 -07002177 if (!xfer->speed_hz)
2178 xfer->speed_hz = master->max_speed_hz;
Axel Lina6f87fa2014-03-17 10:08:12 +08002179
2180 if (master->max_speed_hz &&
2181 xfer->speed_hz > master->max_speed_hz)
2182 xfer->speed_hz = master->max_speed_hz;
Gabor Juhos56ede942013-08-14 10:25:28 +02002183
Stefan Brüns63ab6452015-08-23 16:06:30 +02002184 if (__spi_validate_bits_per_word(master, xfer->bits_per_word))
2185 return -EINVAL;
Mark Browna2fd4f92013-07-10 14:57:26 +01002186
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002187 /*
2188 * SPI transfer length should be multiple of SPI word size
2189 * where SPI word size should be power-of-two multiple
2190 */
2191 if (xfer->bits_per_word <= 8)
2192 w_size = 1;
2193 else if (xfer->bits_per_word <= 16)
2194 w_size = 2;
2195 else
2196 w_size = 4;
2197
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002198 /* No partial transfers accepted */
Atsushi Nemoto6ea31292014-02-28 23:03:16 +09002199 if (xfer->len % w_size)
Ivan T. Ivanov4d94bd22014-02-20 12:02:08 +02002200 return -EINVAL;
2201
Mark Browna2fd4f92013-07-10 14:57:26 +01002202 if (xfer->speed_hz && master->min_speed_hz &&
2203 xfer->speed_hz < master->min_speed_hz)
2204 return -EINVAL;
wangyuhangf477b7f2013-08-11 18:15:17 +08002205
2206 if (xfer->tx_buf && !xfer->tx_nbits)
2207 xfer->tx_nbits = SPI_NBITS_SINGLE;
2208 if (xfer->rx_buf && !xfer->rx_nbits)
2209 xfer->rx_nbits = SPI_NBITS_SINGLE;
2210 /* check transfer tx/rx_nbits:
Geert Uytterhoeven1afd9982014-01-12 14:00:29 +01002211 * 1. check the value matches one of single, dual and quad
2212 * 2. check tx/rx_nbits match the mode in spi_device
wangyuhangf477b7f2013-08-11 18:15:17 +08002213 */
Sourav Poddardb90a442013-08-22 21:20:48 +05302214 if (xfer->tx_buf) {
2215 if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
2216 xfer->tx_nbits != SPI_NBITS_DUAL &&
2217 xfer->tx_nbits != SPI_NBITS_QUAD)
2218 return -EINVAL;
2219 if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
2220 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
2221 return -EINVAL;
2222 if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
2223 !(spi->mode & SPI_TX_QUAD))
2224 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05302225 }
wangyuhangf477b7f2013-08-11 18:15:17 +08002226 /* check transfer rx_nbits */
Sourav Poddardb90a442013-08-22 21:20:48 +05302227 if (xfer->rx_buf) {
2228 if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
2229 xfer->rx_nbits != SPI_NBITS_DUAL &&
2230 xfer->rx_nbits != SPI_NBITS_QUAD)
2231 return -EINVAL;
2232 if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
2233 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
2234 return -EINVAL;
2235 if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
2236 !(spi->mode & SPI_RX_QUAD))
2237 return -EINVAL;
Sourav Poddardb90a442013-08-22 21:20:48 +05302238 }
Laxman Dewangane6811d12012-11-09 14:36:45 +05302239 }
2240
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002241 message->status = -EINPROGRESS;
Mark Brown90808732013-11-13 23:44:15 +00002242
2243 return 0;
2244}
2245
2246static int __spi_async(struct spi_device *spi, struct spi_message *message)
2247{
2248 struct spi_master *master = spi->master;
2249
2250 message->spi = spi;
2251
Martin Sperleca2ebc2015-06-22 13:00:36 +00002252 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics, spi_async);
2253 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_async);
2254
Mark Brown90808732013-11-13 23:44:15 +00002255 trace_spi_message_submit(message);
2256
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002257 return master->transfer(spi, message);
2258}
2259
David Brownell568d0692009-09-22 16:46:18 -07002260/**
2261 * spi_async - asynchronous SPI transfer
2262 * @spi: device with which data will be exchanged
2263 * @message: describes the data transfers, including completion callback
2264 * Context: any (irqs may be blocked, etc)
2265 *
2266 * This call may be used in_irq and other contexts which can't sleep,
2267 * as well as from task contexts which can sleep.
2268 *
2269 * The completion callback is invoked in a context which can't sleep.
2270 * Before that invocation, the value of message->status is undefined.
2271 * When the callback is issued, message->status holds either zero (to
2272 * indicate complete success) or a negative error code. After that
2273 * callback returns, the driver which issued the transfer request may
2274 * deallocate the associated memory; it's no longer in use by any SPI
2275 * core or controller driver code.
2276 *
2277 * Note that although all messages to a spi_device are handled in
2278 * FIFO order, messages may go to different devices in other orders.
2279 * Some device might be higher priority, or have various "hard" access
2280 * time requirements, for example.
2281 *
2282 * On detection of any fault during the transfer, processing of
2283 * the entire message is aborted, and the device is deselected.
2284 * Until returning from the associated message completion callback,
2285 * no other spi_message queued to that device will be processed.
2286 * (This rule applies equally to all the synchronous transfer calls,
2287 * which are wrappers around this core asynchronous primitive.)
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002288 *
2289 * Return: zero on success, else a negative error code.
David Brownell568d0692009-09-22 16:46:18 -07002290 */
2291int spi_async(struct spi_device *spi, struct spi_message *message)
2292{
2293 struct spi_master *master = spi->master;
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002294 int ret;
2295 unsigned long flags;
David Brownell568d0692009-09-22 16:46:18 -07002296
Mark Brown90808732013-11-13 23:44:15 +00002297 ret = __spi_validate(spi, message);
2298 if (ret != 0)
2299 return ret;
2300
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002301 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
David Brownell568d0692009-09-22 16:46:18 -07002302
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002303 if (master->bus_lock_flag)
2304 ret = -EBUSY;
2305 else
2306 ret = __spi_async(spi, message);
David Brownell568d0692009-09-22 16:46:18 -07002307
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002308 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2309
2310 return ret;
David Brownell568d0692009-09-22 16:46:18 -07002311}
2312EXPORT_SYMBOL_GPL(spi_async);
2313
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002314/**
2315 * spi_async_locked - version of spi_async with exclusive bus usage
2316 * @spi: device with which data will be exchanged
2317 * @message: describes the data transfers, including completion callback
2318 * Context: any (irqs may be blocked, etc)
2319 *
2320 * This call may be used in_irq and other contexts which can't sleep,
2321 * as well as from task contexts which can sleep.
2322 *
2323 * The completion callback is invoked in a context which can't sleep.
2324 * Before that invocation, the value of message->status is undefined.
2325 * When the callback is issued, message->status holds either zero (to
2326 * indicate complete success) or a negative error code. After that
2327 * callback returns, the driver which issued the transfer request may
2328 * deallocate the associated memory; it's no longer in use by any SPI
2329 * core or controller driver code.
2330 *
2331 * Note that although all messages to a spi_device are handled in
2332 * FIFO order, messages may go to different devices in other orders.
2333 * Some device might be higher priority, or have various "hard" access
2334 * time requirements, for example.
2335 *
2336 * On detection of any fault during the transfer, processing of
2337 * the entire message is aborted, and the device is deselected.
2338 * Until returning from the associated message completion callback,
2339 * no other spi_message queued to that device will be processed.
2340 * (This rule applies equally to all the synchronous transfer calls,
2341 * which are wrappers around this core asynchronous primitive.)
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002342 *
2343 * Return: zero on success, else a negative error code.
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002344 */
2345int spi_async_locked(struct spi_device *spi, struct spi_message *message)
2346{
2347 struct spi_master *master = spi->master;
2348 int ret;
2349 unsigned long flags;
2350
Mark Brown90808732013-11-13 23:44:15 +00002351 ret = __spi_validate(spi, message);
2352 if (ret != 0)
2353 return ret;
2354
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002355 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2356
2357 ret = __spi_async(spi, message);
2358
2359 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2360
2361 return ret;
2362
2363}
2364EXPORT_SYMBOL_GPL(spi_async_locked);
2365
David Brownell7d077192009-06-17 16:26:03 -07002366
Vignesh R556351f2015-12-11 09:39:56 +05302367int spi_flash_read(struct spi_device *spi,
2368 struct spi_flash_read_message *msg)
2369
2370{
2371 struct spi_master *master = spi->master;
2372 int ret;
2373
2374 if ((msg->opcode_nbits == SPI_NBITS_DUAL ||
2375 msg->addr_nbits == SPI_NBITS_DUAL) &&
2376 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
2377 return -EINVAL;
2378 if ((msg->opcode_nbits == SPI_NBITS_QUAD ||
2379 msg->addr_nbits == SPI_NBITS_QUAD) &&
2380 !(spi->mode & SPI_TX_QUAD))
2381 return -EINVAL;
2382 if (msg->data_nbits == SPI_NBITS_DUAL &&
2383 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
2384 return -EINVAL;
2385 if (msg->data_nbits == SPI_NBITS_QUAD &&
2386 !(spi->mode & SPI_RX_QUAD))
2387 return -EINVAL;
2388
2389 if (master->auto_runtime_pm) {
2390 ret = pm_runtime_get_sync(master->dev.parent);
2391 if (ret < 0) {
2392 dev_err(&master->dev, "Failed to power device: %d\n",
2393 ret);
2394 return ret;
2395 }
2396 }
2397 mutex_lock(&master->bus_lock_mutex);
2398 ret = master->spi_flash_read(spi, msg);
2399 mutex_unlock(&master->bus_lock_mutex);
2400 if (master->auto_runtime_pm)
2401 pm_runtime_put(master->dev.parent);
2402
2403 return ret;
2404}
2405EXPORT_SYMBOL_GPL(spi_flash_read);
2406
David Brownell7d077192009-06-17 16:26:03 -07002407/*-------------------------------------------------------------------------*/
2408
2409/* Utility methods for SPI master protocol drivers, layered on
2410 * top of the core. Some other utility methods are defined as
2411 * inline functions.
2412 */
2413
Andrew Morton5d870c82006-01-11 11:23:49 -08002414static void spi_complete(void *arg)
2415{
2416 complete(arg);
2417}
2418
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002419static int __spi_sync(struct spi_device *spi, struct spi_message *message,
2420 int bus_locked)
2421{
2422 DECLARE_COMPLETION_ONSTACK(done);
2423 int status;
2424 struct spi_master *master = spi->master;
Mark Brown0461a412014-12-09 21:38:05 +00002425 unsigned long flags;
2426
2427 status = __spi_validate(spi, message);
2428 if (status != 0)
2429 return status;
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002430
2431 message->complete = spi_complete;
2432 message->context = &done;
Mark Brown0461a412014-12-09 21:38:05 +00002433 message->spi = spi;
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002434
Martin Sperleca2ebc2015-06-22 13:00:36 +00002435 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics, spi_sync);
2436 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_sync);
2437
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002438 if (!bus_locked)
2439 mutex_lock(&master->bus_lock_mutex);
2440
Mark Brown0461a412014-12-09 21:38:05 +00002441 /* If we're not using the legacy transfer method then we will
2442 * try to transfer in the calling context so special case.
2443 * This code would be less tricky if we could remove the
2444 * support for driver implemented message queues.
2445 */
2446 if (master->transfer == spi_queued_transfer) {
2447 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2448
2449 trace_spi_message_submit(message);
2450
2451 status = __spi_queued_transfer(spi, message, false);
2452
2453 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2454 } else {
2455 status = spi_async_locked(spi, message);
2456 }
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002457
2458 if (!bus_locked)
2459 mutex_unlock(&master->bus_lock_mutex);
2460
2461 if (status == 0) {
Mark Brown0461a412014-12-09 21:38:05 +00002462 /* Push out the messages in the calling context if we
2463 * can.
2464 */
Martin Sperleca2ebc2015-06-22 13:00:36 +00002465 if (master->transfer == spi_queued_transfer) {
2466 SPI_STATISTICS_INCREMENT_FIELD(&master->statistics,
2467 spi_sync_immediate);
2468 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics,
2469 spi_sync_immediate);
Jon Hunter49023d22016-03-08 12:28:20 +00002470 __spi_pump_messages(master, false, bus_locked);
Martin Sperleca2ebc2015-06-22 13:00:36 +00002471 }
Mark Brown0461a412014-12-09 21:38:05 +00002472
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002473 wait_for_completion(&done);
2474 status = message->status;
2475 }
2476 message->context = NULL;
2477 return status;
2478}
2479
David Brownell8ae12a02006-01-08 13:34:19 -08002480/**
2481 * spi_sync - blocking/synchronous SPI data transfers
2482 * @spi: device with which data will be exchanged
2483 * @message: describes the data transfers
David Brownell33e34dc2007-05-08 00:32:21 -07002484 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002485 *
2486 * This call may only be used from a context that may sleep. The sleep
2487 * is non-interruptible, and has no timeout. Low-overhead controller
2488 * drivers may DMA directly into and out of the message buffers.
2489 *
2490 * Note that the SPI device's chip select is active during the message,
2491 * and then is normally disabled between messages. Drivers for some
2492 * frequently-used devices may want to minimize costs of selecting a chip,
2493 * by leaving it selected in anticipation that the next message will go
2494 * to the same chip. (That may increase power usage.)
2495 *
David Brownell0c8684612006-01-08 13:34:25 -08002496 * Also, the caller is guaranteeing that the memory associated with the
2497 * message will not be freed before this call returns.
2498 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002499 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002500 */
2501int spi_sync(struct spi_device *spi, struct spi_message *message)
2502{
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002503 return __spi_sync(spi, message, 0);
David Brownell8ae12a02006-01-08 13:34:19 -08002504}
2505EXPORT_SYMBOL_GPL(spi_sync);
2506
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002507/**
2508 * spi_sync_locked - version of spi_sync with exclusive bus usage
2509 * @spi: device with which data will be exchanged
2510 * @message: describes the data transfers
2511 * Context: can sleep
2512 *
2513 * This call may only be used from a context that may sleep. The sleep
2514 * is non-interruptible, and has no timeout. Low-overhead controller
2515 * drivers may DMA directly into and out of the message buffers.
2516 *
2517 * This call should be used by drivers that require exclusive access to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002518 * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002519 * be released by a spi_bus_unlock call when the exclusive access is over.
2520 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002521 * Return: zero on success, else a negative error code.
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002522 */
2523int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
2524{
2525 return __spi_sync(spi, message, 1);
2526}
2527EXPORT_SYMBOL_GPL(spi_sync_locked);
2528
2529/**
2530 * spi_bus_lock - obtain a lock for exclusive SPI bus usage
2531 * @master: SPI bus master that should be locked for exclusive bus access
2532 * Context: can sleep
2533 *
2534 * This call may only be used from a context that may sleep. The sleep
2535 * is non-interruptible, and has no timeout.
2536 *
2537 * This call should be used by drivers that require exclusive access to the
2538 * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
2539 * exclusive access is over. Data transfer must be done by spi_sync_locked
2540 * and spi_async_locked calls when the SPI bus lock is held.
2541 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002542 * Return: always zero.
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002543 */
2544int spi_bus_lock(struct spi_master *master)
2545{
2546 unsigned long flags;
2547
2548 mutex_lock(&master->bus_lock_mutex);
2549
2550 spin_lock_irqsave(&master->bus_lock_spinlock, flags);
2551 master->bus_lock_flag = 1;
2552 spin_unlock_irqrestore(&master->bus_lock_spinlock, flags);
2553
2554 /* mutex remains locked until spi_bus_unlock is called */
2555
2556 return 0;
2557}
2558EXPORT_SYMBOL_GPL(spi_bus_lock);
2559
2560/**
2561 * spi_bus_unlock - release the lock for exclusive SPI bus usage
2562 * @master: SPI bus master that was locked for exclusive bus access
2563 * Context: can sleep
2564 *
2565 * This call may only be used from a context that may sleep. The sleep
2566 * is non-interruptible, and has no timeout.
2567 *
2568 * This call releases an SPI bus lock previously obtained by an spi_bus_lock
2569 * call.
2570 *
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002571 * Return: always zero.
Ernst Schwabcf32b71e2010-06-28 17:49:29 -07002572 */
2573int spi_bus_unlock(struct spi_master *master)
2574{
2575 master->bus_lock_flag = 0;
2576
2577 mutex_unlock(&master->bus_lock_mutex);
2578
2579 return 0;
2580}
2581EXPORT_SYMBOL_GPL(spi_bus_unlock);
2582
David Brownella9948b62006-04-02 10:37:40 -08002583/* portable code must never pass more than 32 bytes */
Jingoo Han5fe5f052013-10-14 10:31:51 +09002584#define SPI_BUFSIZ max(32, SMP_CACHE_BYTES)
David Brownell8ae12a02006-01-08 13:34:19 -08002585
2586static u8 *buf;
2587
2588/**
2589 * spi_write_then_read - SPI synchronous write followed by read
2590 * @spi: device with which data will be exchanged
2591 * @txbuf: data to be written (need not be dma-safe)
2592 * @n_tx: size of txbuf, in bytes
Jiri Pirko27570492009-06-17 16:26:06 -07002593 * @rxbuf: buffer into which data will be read (need not be dma-safe)
2594 * @n_rx: size of rxbuf, in bytes
David Brownell33e34dc2007-05-08 00:32:21 -07002595 * Context: can sleep
David Brownell8ae12a02006-01-08 13:34:19 -08002596 *
2597 * This performs a half duplex MicroWire style transaction with the
2598 * device, sending txbuf and then reading rxbuf. The return value
2599 * is zero for success, else a negative errno status code.
David Brownellb8852442006-01-08 13:34:23 -08002600 * This call may only be used from a context that may sleep.
David Brownell8ae12a02006-01-08 13:34:19 -08002601 *
David Brownell0c8684612006-01-08 13:34:25 -08002602 * Parameters to this routine are always copied using a small buffer;
David Brownell33e34dc2007-05-08 00:32:21 -07002603 * portable code should never use this for more than 32 bytes.
2604 * Performance-sensitive or bulk transfer code should instead use
David Brownell0c8684612006-01-08 13:34:25 -08002605 * spi_{async,sync}() calls with dma-safe buffers.
Javier Martinez Canillas97d56dc2015-10-22 18:59:23 +02002606 *
2607 * Return: zero on success, else a negative error code.
David Brownell8ae12a02006-01-08 13:34:19 -08002608 */
2609int spi_write_then_read(struct spi_device *spi,
Mark Brown0c4a1592011-05-11 00:09:30 +02002610 const void *txbuf, unsigned n_tx,
2611 void *rxbuf, unsigned n_rx)
David Brownell8ae12a02006-01-08 13:34:19 -08002612{
David Brownell068f4072007-12-04 23:45:09 -08002613 static DEFINE_MUTEX(lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002614
2615 int status;
2616 struct spi_message message;
David Brownellbdff5492009-04-13 14:39:57 -07002617 struct spi_transfer x[2];
David Brownell8ae12a02006-01-08 13:34:19 -08002618 u8 *local_buf;
2619
Mark Brownb3a223e2012-12-02 12:54:25 +09002620 /* Use preallocated DMA-safe buffer if we can. We can't avoid
2621 * copying here, (as a pure convenience thing), but we can
2622 * keep heap costs out of the hot path unless someone else is
2623 * using the pre-allocated buffer or the transfer is too large.
David Brownell8ae12a02006-01-08 13:34:19 -08002624 */
Mark Brownb3a223e2012-12-02 12:54:25 +09002625 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
Mark Brown2cd94c82013-01-27 14:35:04 +08002626 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
2627 GFP_KERNEL | GFP_DMA);
Mark Brownb3a223e2012-12-02 12:54:25 +09002628 if (!local_buf)
2629 return -ENOMEM;
2630 } else {
2631 local_buf = buf;
2632 }
David Brownell8ae12a02006-01-08 13:34:19 -08002633
Vitaly Wool8275c642006-01-08 13:34:28 -08002634 spi_message_init(&message);
Jingoo Han5fe5f052013-10-14 10:31:51 +09002635 memset(x, 0, sizeof(x));
David Brownellbdff5492009-04-13 14:39:57 -07002636 if (n_tx) {
2637 x[0].len = n_tx;
2638 spi_message_add_tail(&x[0], &message);
2639 }
2640 if (n_rx) {
2641 x[1].len = n_rx;
2642 spi_message_add_tail(&x[1], &message);
2643 }
Vitaly Wool8275c642006-01-08 13:34:28 -08002644
David Brownell8ae12a02006-01-08 13:34:19 -08002645 memcpy(local_buf, txbuf, n_tx);
David Brownellbdff5492009-04-13 14:39:57 -07002646 x[0].tx_buf = local_buf;
2647 x[1].rx_buf = local_buf + n_tx;
David Brownell8ae12a02006-01-08 13:34:19 -08002648
2649 /* do the i/o */
David Brownell8ae12a02006-01-08 13:34:19 -08002650 status = spi_sync(spi, &message);
Marc Pignat9b938b72007-12-04 23:45:10 -08002651 if (status == 0)
David Brownellbdff5492009-04-13 14:39:57 -07002652 memcpy(rxbuf, x[1].rx_buf, n_rx);
David Brownell8ae12a02006-01-08 13:34:19 -08002653
David Brownellbdff5492009-04-13 14:39:57 -07002654 if (x[0].tx_buf == buf)
David Brownell068f4072007-12-04 23:45:09 -08002655 mutex_unlock(&lock);
David Brownell8ae12a02006-01-08 13:34:19 -08002656 else
2657 kfree(local_buf);
2658
2659 return status;
2660}
2661EXPORT_SYMBOL_GPL(spi_write_then_read);
2662
2663/*-------------------------------------------------------------------------*/
2664
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002665#if IS_ENABLED(CONFIG_OF_DYNAMIC)
2666static int __spi_of_device_match(struct device *dev, void *data)
2667{
2668 return dev->of_node == data;
2669}
2670
2671/* must call put_device() when done with returned spi_device device */
2672static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
2673{
2674 struct device *dev = bus_find_device(&spi_bus_type, NULL, node,
2675 __spi_of_device_match);
2676 return dev ? to_spi_device(dev) : NULL;
2677}
2678
2679static int __spi_of_master_match(struct device *dev, const void *data)
2680{
2681 return dev->of_node == data;
2682}
2683
2684/* the spi masters are not using spi_bus, so we find it with another way */
2685static struct spi_master *of_find_spi_master_by_node(struct device_node *node)
2686{
2687 struct device *dev;
2688
2689 dev = class_find_device(&spi_master_class, NULL, node,
2690 __spi_of_master_match);
2691 if (!dev)
2692 return NULL;
2693
2694 /* reference got in class_find_device */
2695 return container_of(dev, struct spi_master, dev);
2696}
2697
2698static int of_spi_notify(struct notifier_block *nb, unsigned long action,
2699 void *arg)
2700{
2701 struct of_reconfig_data *rd = arg;
2702 struct spi_master *master;
2703 struct spi_device *spi;
2704
2705 switch (of_reconfig_get_state_change(action, arg)) {
2706 case OF_RECONFIG_CHANGE_ADD:
2707 master = of_find_spi_master_by_node(rd->dn->parent);
2708 if (master == NULL)
2709 return NOTIFY_OK; /* not for us */
2710
Geert Uytterhoevenbd6c1642015-11-30 15:28:07 +01002711 if (of_node_test_and_set_flag(rd->dn, OF_POPULATED)) {
2712 put_device(&master->dev);
2713 return NOTIFY_OK;
2714 }
2715
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002716 spi = of_register_spi_device(master, rd->dn);
2717 put_device(&master->dev);
2718
2719 if (IS_ERR(spi)) {
2720 pr_err("%s: failed to create for '%s'\n",
2721 __func__, rd->dn->full_name);
2722 return notifier_from_errno(PTR_ERR(spi));
2723 }
2724 break;
2725
2726 case OF_RECONFIG_CHANGE_REMOVE:
Geert Uytterhoevenbd6c1642015-11-30 15:28:07 +01002727 /* already depopulated? */
2728 if (!of_node_check_flag(rd->dn, OF_POPULATED))
2729 return NOTIFY_OK;
2730
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002731 /* find our device by node */
2732 spi = of_find_spi_device_by_node(rd->dn);
2733 if (spi == NULL)
2734 return NOTIFY_OK; /* no? not meant for us */
2735
2736 /* unregister takes one ref away */
2737 spi_unregister_device(spi);
2738
2739 /* and put the reference of the find */
2740 put_device(&spi->dev);
2741 break;
2742 }
2743
2744 return NOTIFY_OK;
2745}
2746
2747static struct notifier_block spi_of_notifier = {
2748 .notifier_call = of_spi_notify,
2749};
2750#else /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
2751extern struct notifier_block spi_of_notifier;
2752#endif /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
2753
David Brownell8ae12a02006-01-08 13:34:19 -08002754static int __init spi_init(void)
2755{
David Brownellb8852442006-01-08 13:34:23 -08002756 int status;
David Brownell8ae12a02006-01-08 13:34:19 -08002757
Christoph Lametere94b1762006-12-06 20:33:17 -08002758 buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
David Brownellb8852442006-01-08 13:34:23 -08002759 if (!buf) {
2760 status = -ENOMEM;
2761 goto err0;
2762 }
2763
2764 status = bus_register(&spi_bus_type);
2765 if (status < 0)
2766 goto err1;
2767
2768 status = class_register(&spi_master_class);
2769 if (status < 0)
2770 goto err2;
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002771
Fabio Estevam52677202014-11-26 20:13:57 -02002772 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
Pantelis Antoniouce79d542014-10-28 22:36:05 +02002773 WARN_ON(of_reconfig_notifier_register(&spi_of_notifier));
2774
David Brownell8ae12a02006-01-08 13:34:19 -08002775 return 0;
David Brownellb8852442006-01-08 13:34:23 -08002776
2777err2:
2778 bus_unregister(&spi_bus_type);
2779err1:
2780 kfree(buf);
2781 buf = NULL;
2782err0:
2783 return status;
David Brownell8ae12a02006-01-08 13:34:19 -08002784}
David Brownellb8852442006-01-08 13:34:23 -08002785
David Brownell8ae12a02006-01-08 13:34:19 -08002786/* board_info is normally registered in arch_initcall(),
2787 * but even essential drivers wait till later
David Brownellb8852442006-01-08 13:34:23 -08002788 *
2789 * REVISIT only boardinfo really needs static linking. the rest (device and
2790 * driver registration) _could_ be dynamically linked (modular) ... costs
2791 * include needing to have boardinfo data structures be much more public.
David Brownell8ae12a02006-01-08 13:34:19 -08002792 */
David Brownell673c0c02008-10-15 22:02:46 -07002793postcore_initcall(spi_init);
David Brownell8ae12a02006-01-08 13:34:19 -08002794