4 * Copyright (C) 2005 David Brownell
5 * Copyright (C) 2008 Secret Lab Technologies Ltd.
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.
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.
18 #include <linux/kernel.h>
19 #include <linux/device.h>
20 #include <linux/init.h>
21 #include <linux/cache.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/dmaengine.h>
24 #include <linux/mutex.h>
25 #include <linux/of_device.h>
26 #include <linux/of_irq.h>
27 #include <linux/clk/clk-conf.h>
28 #include <linux/slab.h>
29 #include <linux/mod_devicetable.h>
30 #include <linux/spi/spi.h>
31 #include <linux/spi/spi-mem.h>
32 #include <linux/of_gpio.h>
33 #include <linux/pm_runtime.h>
34 #include <linux/pm_domain.h>
35 #include <linux/property.h>
36 #include <linux/export.h>
37 #include <linux/sched/rt.h>
38 #include <uapi/linux/sched/types.h>
39 #include <linux/delay.h>
40 #include <linux/kthread.h>
41 #include <linux/ioport.h>
42 #include <linux/acpi.h>
43 #include <linux/highmem.h>
44 #include <linux/idr.h>
45 #include <linux/platform_data/x86/apple.h>
47 #define CREATE_TRACE_POINTS
48 #include <trace/events/spi.h>
50 #include "internals.h"
52 static DEFINE_IDR(spi_master_idr);
54 static void spidev_release(struct device *dev)
56 struct spi_device *spi = to_spi_device(dev);
58 /* spi controllers may cleanup for released devices */
59 if (spi->controller->cleanup)
60 spi->controller->cleanup(spi);
62 spi_controller_put(spi->controller);
67 modalias_show(struct device *dev, struct device_attribute *a, char *buf)
69 const struct spi_device *spi = to_spi_device(dev);
72 len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
76 return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias);
78 static DEVICE_ATTR_RO(modalias);
80 #define SPI_STATISTICS_ATTRS(field, file) \
81 static ssize_t spi_controller_##field##_show(struct device *dev, \
82 struct device_attribute *attr, \
85 struct spi_controller *ctlr = container_of(dev, \
86 struct spi_controller, dev); \
87 return spi_statistics_##field##_show(&ctlr->statistics, buf); \
89 static struct device_attribute dev_attr_spi_controller_##field = { \
90 .attr = { .name = file, .mode = 0444 }, \
91 .show = spi_controller_##field##_show, \
93 static ssize_t spi_device_##field##_show(struct device *dev, \
94 struct device_attribute *attr, \
97 struct spi_device *spi = to_spi_device(dev); \
98 return spi_statistics_##field##_show(&spi->statistics, buf); \
100 static struct device_attribute dev_attr_spi_device_##field = { \
101 .attr = { .name = file, .mode = 0444 }, \
102 .show = spi_device_##field##_show, \
105 #define SPI_STATISTICS_SHOW_NAME(name, file, field, format_string) \
106 static ssize_t spi_statistics_##name##_show(struct spi_statistics *stat, \
109 unsigned long flags; \
111 spin_lock_irqsave(&stat->lock, flags); \
112 len = sprintf(buf, format_string, stat->field); \
113 spin_unlock_irqrestore(&stat->lock, flags); \
116 SPI_STATISTICS_ATTRS(name, file)
118 #define SPI_STATISTICS_SHOW(field, format_string) \
119 SPI_STATISTICS_SHOW_NAME(field, __stringify(field), \
120 field, format_string)
122 SPI_STATISTICS_SHOW(messages, "%lu");
123 SPI_STATISTICS_SHOW(transfers, "%lu");
124 SPI_STATISTICS_SHOW(errors, "%lu");
125 SPI_STATISTICS_SHOW(timedout, "%lu");
127 SPI_STATISTICS_SHOW(spi_sync, "%lu");
128 SPI_STATISTICS_SHOW(spi_sync_immediate, "%lu");
129 SPI_STATISTICS_SHOW(spi_async, "%lu");
131 SPI_STATISTICS_SHOW(bytes, "%llu");
132 SPI_STATISTICS_SHOW(bytes_rx, "%llu");
133 SPI_STATISTICS_SHOW(bytes_tx, "%llu");
135 #define SPI_STATISTICS_TRANSFER_BYTES_HISTO(index, number) \
136 SPI_STATISTICS_SHOW_NAME(transfer_bytes_histo##index, \
137 "transfer_bytes_histo_" number, \
138 transfer_bytes_histo[index], "%lu")
139 SPI_STATISTICS_TRANSFER_BYTES_HISTO(0, "0-1");
140 SPI_STATISTICS_TRANSFER_BYTES_HISTO(1, "2-3");
141 SPI_STATISTICS_TRANSFER_BYTES_HISTO(2, "4-7");
142 SPI_STATISTICS_TRANSFER_BYTES_HISTO(3, "8-15");
143 SPI_STATISTICS_TRANSFER_BYTES_HISTO(4, "16-31");
144 SPI_STATISTICS_TRANSFER_BYTES_HISTO(5, "32-63");
145 SPI_STATISTICS_TRANSFER_BYTES_HISTO(6, "64-127");
146 SPI_STATISTICS_TRANSFER_BYTES_HISTO(7, "128-255");
147 SPI_STATISTICS_TRANSFER_BYTES_HISTO(8, "256-511");
148 SPI_STATISTICS_TRANSFER_BYTES_HISTO(9, "512-1023");
149 SPI_STATISTICS_TRANSFER_BYTES_HISTO(10, "1024-2047");
150 SPI_STATISTICS_TRANSFER_BYTES_HISTO(11, "2048-4095");
151 SPI_STATISTICS_TRANSFER_BYTES_HISTO(12, "4096-8191");
152 SPI_STATISTICS_TRANSFER_BYTES_HISTO(13, "8192-16383");
153 SPI_STATISTICS_TRANSFER_BYTES_HISTO(14, "16384-32767");
154 SPI_STATISTICS_TRANSFER_BYTES_HISTO(15, "32768-65535");
155 SPI_STATISTICS_TRANSFER_BYTES_HISTO(16, "65536+");
157 SPI_STATISTICS_SHOW(transfers_split_maxsize, "%lu");
159 static struct attribute *spi_dev_attrs[] = {
160 &dev_attr_modalias.attr,
164 static const struct attribute_group spi_dev_group = {
165 .attrs = spi_dev_attrs,
168 static struct attribute *spi_device_statistics_attrs[] = {
169 &dev_attr_spi_device_messages.attr,
170 &dev_attr_spi_device_transfers.attr,
171 &dev_attr_spi_device_errors.attr,
172 &dev_attr_spi_device_timedout.attr,
173 &dev_attr_spi_device_spi_sync.attr,
174 &dev_attr_spi_device_spi_sync_immediate.attr,
175 &dev_attr_spi_device_spi_async.attr,
176 &dev_attr_spi_device_bytes.attr,
177 &dev_attr_spi_device_bytes_rx.attr,
178 &dev_attr_spi_device_bytes_tx.attr,
179 &dev_attr_spi_device_transfer_bytes_histo0.attr,
180 &dev_attr_spi_device_transfer_bytes_histo1.attr,
181 &dev_attr_spi_device_transfer_bytes_histo2.attr,
182 &dev_attr_spi_device_transfer_bytes_histo3.attr,
183 &dev_attr_spi_device_transfer_bytes_histo4.attr,
184 &dev_attr_spi_device_transfer_bytes_histo5.attr,
185 &dev_attr_spi_device_transfer_bytes_histo6.attr,
186 &dev_attr_spi_device_transfer_bytes_histo7.attr,
187 &dev_attr_spi_device_transfer_bytes_histo8.attr,
188 &dev_attr_spi_device_transfer_bytes_histo9.attr,
189 &dev_attr_spi_device_transfer_bytes_histo10.attr,
190 &dev_attr_spi_device_transfer_bytes_histo11.attr,
191 &dev_attr_spi_device_transfer_bytes_histo12.attr,
192 &dev_attr_spi_device_transfer_bytes_histo13.attr,
193 &dev_attr_spi_device_transfer_bytes_histo14.attr,
194 &dev_attr_spi_device_transfer_bytes_histo15.attr,
195 &dev_attr_spi_device_transfer_bytes_histo16.attr,
196 &dev_attr_spi_device_transfers_split_maxsize.attr,
200 static const struct attribute_group spi_device_statistics_group = {
201 .name = "statistics",
202 .attrs = spi_device_statistics_attrs,
205 static const struct attribute_group *spi_dev_groups[] = {
207 &spi_device_statistics_group,
211 static struct attribute *spi_controller_statistics_attrs[] = {
212 &dev_attr_spi_controller_messages.attr,
213 &dev_attr_spi_controller_transfers.attr,
214 &dev_attr_spi_controller_errors.attr,
215 &dev_attr_spi_controller_timedout.attr,
216 &dev_attr_spi_controller_spi_sync.attr,
217 &dev_attr_spi_controller_spi_sync_immediate.attr,
218 &dev_attr_spi_controller_spi_async.attr,
219 &dev_attr_spi_controller_bytes.attr,
220 &dev_attr_spi_controller_bytes_rx.attr,
221 &dev_attr_spi_controller_bytes_tx.attr,
222 &dev_attr_spi_controller_transfer_bytes_histo0.attr,
223 &dev_attr_spi_controller_transfer_bytes_histo1.attr,
224 &dev_attr_spi_controller_transfer_bytes_histo2.attr,
225 &dev_attr_spi_controller_transfer_bytes_histo3.attr,
226 &dev_attr_spi_controller_transfer_bytes_histo4.attr,
227 &dev_attr_spi_controller_transfer_bytes_histo5.attr,
228 &dev_attr_spi_controller_transfer_bytes_histo6.attr,
229 &dev_attr_spi_controller_transfer_bytes_histo7.attr,
230 &dev_attr_spi_controller_transfer_bytes_histo8.attr,
231 &dev_attr_spi_controller_transfer_bytes_histo9.attr,
232 &dev_attr_spi_controller_transfer_bytes_histo10.attr,
233 &dev_attr_spi_controller_transfer_bytes_histo11.attr,
234 &dev_attr_spi_controller_transfer_bytes_histo12.attr,
235 &dev_attr_spi_controller_transfer_bytes_histo13.attr,
236 &dev_attr_spi_controller_transfer_bytes_histo14.attr,
237 &dev_attr_spi_controller_transfer_bytes_histo15.attr,
238 &dev_attr_spi_controller_transfer_bytes_histo16.attr,
239 &dev_attr_spi_controller_transfers_split_maxsize.attr,
243 static const struct attribute_group spi_controller_statistics_group = {
244 .name = "statistics",
245 .attrs = spi_controller_statistics_attrs,
248 static const struct attribute_group *spi_master_groups[] = {
249 &spi_controller_statistics_group,
253 void spi_statistics_add_transfer_stats(struct spi_statistics *stats,
254 struct spi_transfer *xfer,
255 struct spi_controller *ctlr)
258 int l2len = min(fls(xfer->len), SPI_STATISTICS_HISTO_SIZE) - 1;
263 spin_lock_irqsave(&stats->lock, flags);
266 stats->transfer_bytes_histo[l2len]++;
268 stats->bytes += xfer->len;
269 if ((xfer->tx_buf) &&
270 (xfer->tx_buf != ctlr->dummy_tx))
271 stats->bytes_tx += xfer->len;
272 if ((xfer->rx_buf) &&
273 (xfer->rx_buf != ctlr->dummy_rx))
274 stats->bytes_rx += xfer->len;
276 spin_unlock_irqrestore(&stats->lock, flags);
278 EXPORT_SYMBOL_GPL(spi_statistics_add_transfer_stats);
280 /* modalias support makes "modprobe $MODALIAS" new-style hotplug work,
281 * and the sysfs version makes coldplug work too.
284 static const struct spi_device_id *spi_match_id(const struct spi_device_id *id,
285 const struct spi_device *sdev)
287 while (id->name[0]) {
288 if (!strcmp(sdev->modalias, id->name))
295 const struct spi_device_id *spi_get_device_id(const struct spi_device *sdev)
297 const struct spi_driver *sdrv = to_spi_driver(sdev->dev.driver);
299 return spi_match_id(sdrv->id_table, sdev);
301 EXPORT_SYMBOL_GPL(spi_get_device_id);
303 static int spi_match_device(struct device *dev, struct device_driver *drv)
305 const struct spi_device *spi = to_spi_device(dev);
306 const struct spi_driver *sdrv = to_spi_driver(drv);
308 /* Attempt an OF style match */
309 if (of_driver_match_device(dev, drv))
313 if (acpi_driver_match_device(dev, drv))
317 return !!spi_match_id(sdrv->id_table, spi);
319 return strcmp(spi->modalias, drv->name) == 0;
322 static int spi_uevent(struct device *dev, struct kobj_uevent_env *env)
324 const struct spi_device *spi = to_spi_device(dev);
327 rc = acpi_device_uevent_modalias(dev, env);
331 return add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias);
334 struct bus_type spi_bus_type = {
336 .dev_groups = spi_dev_groups,
337 .match = spi_match_device,
338 .uevent = spi_uevent,
340 EXPORT_SYMBOL_GPL(spi_bus_type);
343 static int spi_drv_probe(struct device *dev)
345 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
346 struct spi_device *spi = to_spi_device(dev);
349 ret = of_clk_set_defaults(dev->of_node, false);
354 spi->irq = of_irq_get(dev->of_node, 0);
355 if (spi->irq == -EPROBE_DEFER)
356 return -EPROBE_DEFER;
361 ret = dev_pm_domain_attach(dev, true);
365 ret = sdrv->probe(spi);
367 dev_pm_domain_detach(dev, true);
372 static int spi_drv_remove(struct device *dev)
374 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
377 ret = sdrv->remove(to_spi_device(dev));
378 dev_pm_domain_detach(dev, true);
383 static void spi_drv_shutdown(struct device *dev)
385 const struct spi_driver *sdrv = to_spi_driver(dev->driver);
387 sdrv->shutdown(to_spi_device(dev));
391 * __spi_register_driver - register a SPI driver
392 * @owner: owner module of the driver to register
393 * @sdrv: the driver to register
396 * Return: zero on success, else a negative error code.
398 int __spi_register_driver(struct module *owner, struct spi_driver *sdrv)
400 sdrv->driver.owner = owner;
401 sdrv->driver.bus = &spi_bus_type;
403 sdrv->driver.probe = spi_drv_probe;
405 sdrv->driver.remove = spi_drv_remove;
407 sdrv->driver.shutdown = spi_drv_shutdown;
408 return driver_register(&sdrv->driver);
410 EXPORT_SYMBOL_GPL(__spi_register_driver);
412 /*-------------------------------------------------------------------------*/
414 /* SPI devices should normally not be created by SPI device drivers; that
415 * would make them board-specific. Similarly with SPI controller drivers.
416 * Device registration normally goes into like arch/.../mach.../board-YYY.c
417 * with other readonly (flashable) information about mainboard devices.
421 struct list_head list;
422 struct spi_board_info board_info;
425 static LIST_HEAD(board_list);
426 static LIST_HEAD(spi_controller_list);
429 * Used to protect add/del opertion for board_info list and
430 * spi_controller list, and their matching process
431 * also used to protect object of type struct idr
433 static DEFINE_MUTEX(board_lock);
436 * spi_alloc_device - Allocate a new SPI device
437 * @ctlr: Controller to which device is connected
440 * Allows a driver to allocate and initialize a spi_device without
441 * registering it immediately. This allows a driver to directly
442 * fill the spi_device with device parameters before calling
443 * spi_add_device() on it.
445 * Caller is responsible to call spi_add_device() on the returned
446 * spi_device structure to add it to the SPI controller. If the caller
447 * needs to discard the spi_device without adding it, then it should
448 * call spi_dev_put() on it.
450 * Return: a pointer to the new device, or NULL.
452 struct spi_device *spi_alloc_device(struct spi_controller *ctlr)
454 struct spi_device *spi;
456 if (!spi_controller_get(ctlr))
459 spi = kzalloc(sizeof(*spi), GFP_KERNEL);
461 spi_controller_put(ctlr);
465 spi->master = spi->controller = ctlr;
466 spi->dev.parent = &ctlr->dev;
467 spi->dev.bus = &spi_bus_type;
468 spi->dev.release = spidev_release;
469 spi->cs_gpio = -ENOENT;
471 spin_lock_init(&spi->statistics.lock);
473 device_initialize(&spi->dev);
476 EXPORT_SYMBOL_GPL(spi_alloc_device);
478 static void spi_dev_set_name(struct spi_device *spi)
480 struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
483 dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
487 dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->controller->dev),
491 static int spi_dev_check(struct device *dev, void *data)
493 struct spi_device *spi = to_spi_device(dev);
494 struct spi_device *new_spi = data;
496 if (spi->controller == new_spi->controller &&
497 spi->chip_select == new_spi->chip_select)
503 * spi_add_device - Add spi_device allocated with spi_alloc_device
504 * @spi: spi_device to register
506 * Companion function to spi_alloc_device. Devices allocated with
507 * spi_alloc_device can be added onto the spi bus with this function.
509 * Return: 0 on success; negative errno on failure
511 int spi_add_device(struct spi_device *spi)
513 static DEFINE_MUTEX(spi_add_lock);
514 struct spi_controller *ctlr = spi->controller;
515 struct device *dev = ctlr->dev.parent;
518 /* Chipselects are numbered 0..max; validate. */
519 if (spi->chip_select >= ctlr->num_chipselect) {
520 dev_err(dev, "cs%d >= max %d\n", spi->chip_select,
521 ctlr->num_chipselect);
525 /* Set the bus ID string */
526 spi_dev_set_name(spi);
528 /* We need to make sure there's no other device with this
529 * chipselect **BEFORE** we call setup(), else we'll trash
530 * its configuration. Lock against concurrent add() calls.
532 mutex_lock(&spi_add_lock);
534 status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
536 dev_err(dev, "chipselect %d already in use\n",
542 spi->cs_gpio = ctlr->cs_gpios[spi->chip_select];
544 /* Drivers may modify this initial i/o setup, but will
545 * normally rely on the device being setup. Devices
546 * using SPI_CS_HIGH can't coexist well otherwise...
548 status = spi_setup(spi);
550 dev_err(dev, "can't setup %s, status %d\n",
551 dev_name(&spi->dev), status);
555 /* Device may be bound to an active driver when this returns */
556 status = device_add(&spi->dev);
558 dev_err(dev, "can't add %s, status %d\n",
559 dev_name(&spi->dev), status);
561 dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
564 mutex_unlock(&spi_add_lock);
567 EXPORT_SYMBOL_GPL(spi_add_device);
570 * spi_new_device - instantiate one new SPI device
571 * @ctlr: Controller to which device is connected
572 * @chip: Describes the SPI device
575 * On typical mainboards, this is purely internal; and it's not needed
576 * after board init creates the hard-wired devices. Some development
577 * platforms may not be able to use spi_register_board_info though, and
578 * this is exported so that for example a USB or parport based adapter
579 * driver could add devices (which it would learn about out-of-band).
581 * Return: the new device, or NULL.
583 struct spi_device *spi_new_device(struct spi_controller *ctlr,
584 struct spi_board_info *chip)
586 struct spi_device *proxy;
589 /* NOTE: caller did any chip->bus_num checks necessary.
591 * Also, unless we change the return value convention to use
592 * error-or-pointer (not NULL-or-pointer), troubleshootability
593 * suggests syslogged diagnostics are best here (ugh).
596 proxy = spi_alloc_device(ctlr);
600 WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
602 proxy->chip_select = chip->chip_select;
603 proxy->max_speed_hz = chip->max_speed_hz;
604 proxy->mode = chip->mode;
605 proxy->irq = chip->irq;
606 strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
607 proxy->dev.platform_data = (void *) chip->platform_data;
608 proxy->controller_data = chip->controller_data;
609 proxy->controller_state = NULL;
611 if (chip->properties) {
612 status = device_add_properties(&proxy->dev, chip->properties);
615 "failed to add properties to '%s': %d\n",
616 chip->modalias, status);
621 status = spi_add_device(proxy);
623 goto err_remove_props;
628 if (chip->properties)
629 device_remove_properties(&proxy->dev);
634 EXPORT_SYMBOL_GPL(spi_new_device);
637 * spi_unregister_device - unregister a single SPI device
638 * @spi: spi_device to unregister
640 * Start making the passed SPI device vanish. Normally this would be handled
641 * by spi_unregister_controller().
643 void spi_unregister_device(struct spi_device *spi)
648 if (spi->dev.of_node) {
649 of_node_clear_flag(spi->dev.of_node, OF_POPULATED);
650 of_node_put(spi->dev.of_node);
652 if (ACPI_COMPANION(&spi->dev))
653 acpi_device_clear_enumerated(ACPI_COMPANION(&spi->dev));
654 device_unregister(&spi->dev);
656 EXPORT_SYMBOL_GPL(spi_unregister_device);
658 static void spi_match_controller_to_boardinfo(struct spi_controller *ctlr,
659 struct spi_board_info *bi)
661 struct spi_device *dev;
663 if (ctlr->bus_num != bi->bus_num)
666 dev = spi_new_device(ctlr, bi);
668 dev_err(ctlr->dev.parent, "can't create new device for %s\n",
673 * spi_register_board_info - register SPI devices for a given board
674 * @info: array of chip descriptors
675 * @n: how many descriptors are provided
678 * Board-specific early init code calls this (probably during arch_initcall)
679 * with segments of the SPI device table. Any device nodes are created later,
680 * after the relevant parent SPI controller (bus_num) is defined. We keep
681 * this table of devices forever, so that reloading a controller driver will
682 * not make Linux forget about these hard-wired devices.
684 * Other code can also call this, e.g. a particular add-on board might provide
685 * SPI devices through its expansion connector, so code initializing that board
686 * would naturally declare its SPI devices.
688 * The board info passed can safely be __initdata ... but be careful of
689 * any embedded pointers (platform_data, etc), they're copied as-is.
690 * Device properties are deep-copied though.
692 * Return: zero on success, else a negative error code.
694 int spi_register_board_info(struct spi_board_info const *info, unsigned n)
696 struct boardinfo *bi;
702 bi = kcalloc(n, sizeof(*bi), GFP_KERNEL);
706 for (i = 0; i < n; i++, bi++, info++) {
707 struct spi_controller *ctlr;
709 memcpy(&bi->board_info, info, sizeof(*info));
710 if (info->properties) {
711 bi->board_info.properties =
712 property_entries_dup(info->properties);
713 if (IS_ERR(bi->board_info.properties))
714 return PTR_ERR(bi->board_info.properties);
717 mutex_lock(&board_lock);
718 list_add_tail(&bi->list, &board_list);
719 list_for_each_entry(ctlr, &spi_controller_list, list)
720 spi_match_controller_to_boardinfo(ctlr,
722 mutex_unlock(&board_lock);
728 /*-------------------------------------------------------------------------*/
730 static void spi_set_cs(struct spi_device *spi, bool enable)
732 if (spi->mode & SPI_CS_HIGH)
735 if (gpio_is_valid(spi->cs_gpio)) {
736 gpio_set_value(spi->cs_gpio, !enable);
737 /* Some SPI masters need both GPIO CS & slave_select */
738 if ((spi->controller->flags & SPI_MASTER_GPIO_SS) &&
739 spi->controller->set_cs)
740 spi->controller->set_cs(spi, !enable);
741 } else if (spi->controller->set_cs) {
742 spi->controller->set_cs(spi, !enable);
746 #ifdef CONFIG_HAS_DMA
747 int spi_map_buf(struct spi_controller *ctlr, struct device *dev,
748 struct sg_table *sgt, void *buf, size_t len,
749 enum dma_data_direction dir)
751 const bool vmalloced_buf = is_vmalloc_addr(buf);
752 unsigned int max_seg_size = dma_get_max_seg_size(dev);
753 #ifdef CONFIG_HIGHMEM
754 const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&
755 (unsigned long)buf < (PKMAP_BASE +
756 (LAST_PKMAP * PAGE_SIZE)));
758 const bool kmap_buf = false;
762 struct page *vm_page;
763 struct scatterlist *sg;
768 if (vmalloced_buf || kmap_buf) {
769 desc_len = min_t(int, max_seg_size, PAGE_SIZE);
770 sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len);
771 } else if (virt_addr_valid(buf)) {
772 desc_len = min_t(int, max_seg_size, ctlr->max_dma_len);
773 sgs = DIV_ROUND_UP(len, desc_len);
778 ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
783 for (i = 0; i < sgs; i++) {
785 if (vmalloced_buf || kmap_buf) {
787 * Next scatterlist entry size is the minimum between
788 * the desc_len and the remaining buffer length that
791 min = min_t(size_t, desc_len,
793 PAGE_SIZE - offset_in_page(buf)));
795 vm_page = vmalloc_to_page(buf);
797 vm_page = kmap_to_page(buf);
802 sg_set_page(sg, vm_page,
803 min, offset_in_page(buf));
805 min = min_t(size_t, len, desc_len);
807 sg_set_buf(sg, sg_buf, min);
815 ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
828 void spi_unmap_buf(struct spi_controller *ctlr, struct device *dev,
829 struct sg_table *sgt, enum dma_data_direction dir)
831 if (sgt->orig_nents) {
832 dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
837 static int __spi_map_msg(struct spi_controller *ctlr, struct spi_message *msg)
839 struct device *tx_dev, *rx_dev;
840 struct spi_transfer *xfer;
847 tx_dev = ctlr->dma_tx->device->dev;
849 tx_dev = ctlr->dev.parent;
852 rx_dev = ctlr->dma_rx->device->dev;
854 rx_dev = ctlr->dev.parent;
856 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
857 if (!ctlr->can_dma(ctlr, msg->spi, xfer))
860 if (xfer->tx_buf != NULL) {
861 ret = spi_map_buf(ctlr, tx_dev, &xfer->tx_sg,
862 (void *)xfer->tx_buf, xfer->len,
868 if (xfer->rx_buf != NULL) {
869 ret = spi_map_buf(ctlr, rx_dev, &xfer->rx_sg,
870 xfer->rx_buf, xfer->len,
873 spi_unmap_buf(ctlr, tx_dev, &xfer->tx_sg,
880 ctlr->cur_msg_mapped = true;
885 static int __spi_unmap_msg(struct spi_controller *ctlr, struct spi_message *msg)
887 struct spi_transfer *xfer;
888 struct device *tx_dev, *rx_dev;
890 if (!ctlr->cur_msg_mapped || !ctlr->can_dma)
894 tx_dev = ctlr->dma_tx->device->dev;
896 tx_dev = ctlr->dev.parent;
899 rx_dev = ctlr->dma_rx->device->dev;
901 rx_dev = ctlr->dev.parent;
903 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
904 if (!ctlr->can_dma(ctlr, msg->spi, xfer))
907 spi_unmap_buf(ctlr, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE);
908 spi_unmap_buf(ctlr, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE);
913 #else /* !CONFIG_HAS_DMA */
914 static inline int __spi_map_msg(struct spi_controller *ctlr,
915 struct spi_message *msg)
920 static inline int __spi_unmap_msg(struct spi_controller *ctlr,
921 struct spi_message *msg)
925 #endif /* !CONFIG_HAS_DMA */
927 static inline int spi_unmap_msg(struct spi_controller *ctlr,
928 struct spi_message *msg)
930 struct spi_transfer *xfer;
932 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
934 * Restore the original value of tx_buf or rx_buf if they are
937 if (xfer->tx_buf == ctlr->dummy_tx)
939 if (xfer->rx_buf == ctlr->dummy_rx)
943 return __spi_unmap_msg(ctlr, msg);
946 static int spi_map_msg(struct spi_controller *ctlr, struct spi_message *msg)
948 struct spi_transfer *xfer;
950 unsigned int max_tx, max_rx;
952 if (ctlr->flags & (SPI_CONTROLLER_MUST_RX | SPI_CONTROLLER_MUST_TX)) {
956 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
957 if ((ctlr->flags & SPI_CONTROLLER_MUST_TX) &&
959 max_tx = max(xfer->len, max_tx);
960 if ((ctlr->flags & SPI_CONTROLLER_MUST_RX) &&
962 max_rx = max(xfer->len, max_rx);
966 tmp = krealloc(ctlr->dummy_tx, max_tx,
967 GFP_KERNEL | GFP_DMA);
970 ctlr->dummy_tx = tmp;
971 memset(tmp, 0, max_tx);
975 tmp = krealloc(ctlr->dummy_rx, max_rx,
976 GFP_KERNEL | GFP_DMA);
979 ctlr->dummy_rx = tmp;
982 if (max_tx || max_rx) {
983 list_for_each_entry(xfer, &msg->transfers,
986 xfer->tx_buf = ctlr->dummy_tx;
988 xfer->rx_buf = ctlr->dummy_rx;
993 return __spi_map_msg(ctlr, msg);
997 * spi_transfer_one_message - Default implementation of transfer_one_message()
999 * This is a standard implementation of transfer_one_message() for
1000 * drivers which implement a transfer_one() operation. It provides
1001 * standard handling of delays and chip select management.
1003 static int spi_transfer_one_message(struct spi_controller *ctlr,
1004 struct spi_message *msg)
1006 struct spi_transfer *xfer;
1007 bool keep_cs = false;
1009 unsigned long long ms = 1;
1010 struct spi_statistics *statm = &ctlr->statistics;
1011 struct spi_statistics *stats = &msg->spi->statistics;
1013 spi_set_cs(msg->spi, true);
1015 SPI_STATISTICS_INCREMENT_FIELD(statm, messages);
1016 SPI_STATISTICS_INCREMENT_FIELD(stats, messages);
1018 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
1019 trace_spi_transfer_start(msg, xfer);
1021 spi_statistics_add_transfer_stats(statm, xfer, ctlr);
1022 spi_statistics_add_transfer_stats(stats, xfer, ctlr);
1024 if (xfer->tx_buf || xfer->rx_buf) {
1025 reinit_completion(&ctlr->xfer_completion);
1027 ret = ctlr->transfer_one(ctlr, msg->spi, xfer);
1029 SPI_STATISTICS_INCREMENT_FIELD(statm,
1031 SPI_STATISTICS_INCREMENT_FIELD(stats,
1033 dev_err(&msg->spi->dev,
1034 "SPI transfer failed: %d\n", ret);
1040 ms = 8LL * 1000LL * xfer->len;
1041 do_div(ms, xfer->speed_hz);
1042 ms += ms + 200; /* some tolerance */
1047 ms = wait_for_completion_timeout(&ctlr->xfer_completion,
1048 msecs_to_jiffies(ms));
1052 SPI_STATISTICS_INCREMENT_FIELD(statm,
1054 SPI_STATISTICS_INCREMENT_FIELD(stats,
1056 dev_err(&msg->spi->dev,
1057 "SPI transfer timed out\n");
1058 msg->status = -ETIMEDOUT;
1062 dev_err(&msg->spi->dev,
1063 "Bufferless transfer has length %u\n",
1067 trace_spi_transfer_stop(msg, xfer);
1069 if (msg->status != -EINPROGRESS)
1072 if (xfer->delay_usecs) {
1073 u16 us = xfer->delay_usecs;
1078 usleep_range(us, us + DIV_ROUND_UP(us, 10));
1081 if (xfer->cs_change) {
1082 if (list_is_last(&xfer->transfer_list,
1086 spi_set_cs(msg->spi, false);
1088 spi_set_cs(msg->spi, true);
1092 msg->actual_length += xfer->len;
1096 if (ret != 0 || !keep_cs)
1097 spi_set_cs(msg->spi, false);
1099 if (msg->status == -EINPROGRESS)
1102 if (msg->status && ctlr->handle_err)
1103 ctlr->handle_err(ctlr, msg);
1105 spi_res_release(ctlr, msg);
1107 spi_finalize_current_message(ctlr);
1113 * spi_finalize_current_transfer - report completion of a transfer
1114 * @ctlr: the controller reporting completion
1116 * Called by SPI drivers using the core transfer_one_message()
1117 * implementation to notify it that the current interrupt driven
1118 * transfer has finished and the next one may be scheduled.
1120 void spi_finalize_current_transfer(struct spi_controller *ctlr)
1122 complete(&ctlr->xfer_completion);
1124 EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
1127 * __spi_pump_messages - function which processes spi message queue
1128 * @ctlr: controller to process queue for
1129 * @in_kthread: true if we are in the context of the message pump thread
1131 * This function checks if there is any spi message in the queue that
1132 * needs processing and if so call out to the driver to initialize hardware
1133 * and transfer each message.
1135 * Note that it is called both from the kthread itself and also from
1136 * inside spi_sync(); the queue extraction handling at the top of the
1137 * function should deal with this safely.
1139 static void __spi_pump_messages(struct spi_controller *ctlr, bool in_kthread)
1141 unsigned long flags;
1142 bool was_busy = false;
1146 spin_lock_irqsave(&ctlr->queue_lock, flags);
1148 /* Make sure we are not already running a message */
1149 if (ctlr->cur_msg) {
1150 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1154 /* If another context is idling the device then defer */
1156 kthread_queue_work(&ctlr->kworker, &ctlr->pump_messages);
1157 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1161 /* Check if the queue is idle */
1162 if (list_empty(&ctlr->queue) || !ctlr->running) {
1164 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1168 /* Only do teardown in the thread */
1170 kthread_queue_work(&ctlr->kworker,
1171 &ctlr->pump_messages);
1172 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1177 ctlr->idling = true;
1178 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1180 kfree(ctlr->dummy_rx);
1181 ctlr->dummy_rx = NULL;
1182 kfree(ctlr->dummy_tx);
1183 ctlr->dummy_tx = NULL;
1184 if (ctlr->unprepare_transfer_hardware &&
1185 ctlr->unprepare_transfer_hardware(ctlr))
1187 "failed to unprepare transfer hardware\n");
1188 if (ctlr->auto_runtime_pm) {
1189 pm_runtime_mark_last_busy(ctlr->dev.parent);
1190 pm_runtime_put_autosuspend(ctlr->dev.parent);
1192 trace_spi_controller_idle(ctlr);
1194 spin_lock_irqsave(&ctlr->queue_lock, flags);
1195 ctlr->idling = false;
1196 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1200 /* Extract head of queue */
1202 list_first_entry(&ctlr->queue, struct spi_message, queue);
1204 list_del_init(&ctlr->cur_msg->queue);
1209 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1211 mutex_lock(&ctlr->io_mutex);
1213 if (!was_busy && ctlr->auto_runtime_pm) {
1214 ret = pm_runtime_get_sync(ctlr->dev.parent);
1216 pm_runtime_put_noidle(ctlr->dev.parent);
1217 dev_err(&ctlr->dev, "Failed to power device: %d\n",
1219 mutex_unlock(&ctlr->io_mutex);
1225 trace_spi_controller_busy(ctlr);
1227 if (!was_busy && ctlr->prepare_transfer_hardware) {
1228 ret = ctlr->prepare_transfer_hardware(ctlr);
1231 "failed to prepare transfer hardware\n");
1233 if (ctlr->auto_runtime_pm)
1234 pm_runtime_put(ctlr->dev.parent);
1235 mutex_unlock(&ctlr->io_mutex);
1240 trace_spi_message_start(ctlr->cur_msg);
1242 if (ctlr->prepare_message) {
1243 ret = ctlr->prepare_message(ctlr, ctlr->cur_msg);
1245 dev_err(&ctlr->dev, "failed to prepare message: %d\n",
1247 ctlr->cur_msg->status = ret;
1248 spi_finalize_current_message(ctlr);
1251 ctlr->cur_msg_prepared = true;
1254 ret = spi_map_msg(ctlr, ctlr->cur_msg);
1256 ctlr->cur_msg->status = ret;
1257 spi_finalize_current_message(ctlr);
1261 ret = ctlr->transfer_one_message(ctlr, ctlr->cur_msg);
1264 "failed to transfer one message from queue\n");
1269 mutex_unlock(&ctlr->io_mutex);
1271 /* Prod the scheduler in case transfer_one() was busy waiting */
1277 * spi_pump_messages - kthread work function which processes spi message queue
1278 * @work: pointer to kthread work struct contained in the controller struct
1280 static void spi_pump_messages(struct kthread_work *work)
1282 struct spi_controller *ctlr =
1283 container_of(work, struct spi_controller, pump_messages);
1285 __spi_pump_messages(ctlr, true);
1288 static int spi_init_queue(struct spi_controller *ctlr)
1290 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
1292 ctlr->running = false;
1295 kthread_init_worker(&ctlr->kworker);
1296 ctlr->kworker_task = kthread_run(kthread_worker_fn, &ctlr->kworker,
1297 "%s", dev_name(&ctlr->dev));
1298 if (IS_ERR(ctlr->kworker_task)) {
1299 dev_err(&ctlr->dev, "failed to create message pump task\n");
1300 return PTR_ERR(ctlr->kworker_task);
1302 kthread_init_work(&ctlr->pump_messages, spi_pump_messages);
1305 * Controller config will indicate if this controller should run the
1306 * message pump with high (realtime) priority to reduce the transfer
1307 * latency on the bus by minimising the delay between a transfer
1308 * request and the scheduling of the message pump thread. Without this
1309 * setting the message pump thread will remain at default priority.
1312 dev_info(&ctlr->dev,
1313 "will run message pump with realtime priority\n");
1314 sched_setscheduler(ctlr->kworker_task, SCHED_FIFO, ¶m);
1321 * spi_get_next_queued_message() - called by driver to check for queued
1323 * @ctlr: the controller to check for queued messages
1325 * If there are more messages in the queue, the next message is returned from
1328 * Return: the next message in the queue, else NULL if the queue is empty.
1330 struct spi_message *spi_get_next_queued_message(struct spi_controller *ctlr)
1332 struct spi_message *next;
1333 unsigned long flags;
1335 /* get a pointer to the next message, if any */
1336 spin_lock_irqsave(&ctlr->queue_lock, flags);
1337 next = list_first_entry_or_null(&ctlr->queue, struct spi_message,
1339 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1343 EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1346 * spi_finalize_current_message() - the current message is complete
1347 * @ctlr: the controller to return the message to
1349 * Called by the driver to notify the core that the message in the front of the
1350 * queue is complete and can be removed from the queue.
1352 void spi_finalize_current_message(struct spi_controller *ctlr)
1354 struct spi_message *mesg;
1355 unsigned long flags;
1358 spin_lock_irqsave(&ctlr->queue_lock, flags);
1359 mesg = ctlr->cur_msg;
1360 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1362 spi_unmap_msg(ctlr, mesg);
1364 if (ctlr->cur_msg_prepared && ctlr->unprepare_message) {
1365 ret = ctlr->unprepare_message(ctlr, mesg);
1367 dev_err(&ctlr->dev, "failed to unprepare message: %d\n",
1372 spin_lock_irqsave(&ctlr->queue_lock, flags);
1373 ctlr->cur_msg = NULL;
1374 ctlr->cur_msg_prepared = false;
1375 kthread_queue_work(&ctlr->kworker, &ctlr->pump_messages);
1376 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1378 trace_spi_message_done(mesg);
1382 mesg->complete(mesg->context);
1384 EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1386 static int spi_start_queue(struct spi_controller *ctlr)
1388 unsigned long flags;
1390 spin_lock_irqsave(&ctlr->queue_lock, flags);
1392 if (ctlr->running || ctlr->busy) {
1393 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1397 ctlr->running = true;
1398 ctlr->cur_msg = NULL;
1399 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1401 kthread_queue_work(&ctlr->kworker, &ctlr->pump_messages);
1406 static int spi_stop_queue(struct spi_controller *ctlr)
1408 unsigned long flags;
1409 unsigned limit = 500;
1412 spin_lock_irqsave(&ctlr->queue_lock, flags);
1415 * This is a bit lame, but is optimized for the common execution path.
1416 * A wait_queue on the ctlr->busy could be used, but then the common
1417 * execution path (pump_messages) would be required to call wake_up or
1418 * friends on every SPI message. Do this instead.
1420 while ((!list_empty(&ctlr->queue) || ctlr->busy) && limit--) {
1421 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1422 usleep_range(10000, 11000);
1423 spin_lock_irqsave(&ctlr->queue_lock, flags);
1426 if (!list_empty(&ctlr->queue) || ctlr->busy)
1429 ctlr->running = false;
1431 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1434 dev_warn(&ctlr->dev, "could not stop message queue\n");
1440 static int spi_destroy_queue(struct spi_controller *ctlr)
1444 ret = spi_stop_queue(ctlr);
1447 * kthread_flush_worker will block until all work is done.
1448 * If the reason that stop_queue timed out is that the work will never
1449 * finish, then it does no good to call flush/stop thread, so
1453 dev_err(&ctlr->dev, "problem destroying queue\n");
1457 kthread_flush_worker(&ctlr->kworker);
1458 kthread_stop(ctlr->kworker_task);
1463 static int __spi_queued_transfer(struct spi_device *spi,
1464 struct spi_message *msg,
1467 struct spi_controller *ctlr = spi->controller;
1468 unsigned long flags;
1470 spin_lock_irqsave(&ctlr->queue_lock, flags);
1472 if (!ctlr->running) {
1473 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1476 msg->actual_length = 0;
1477 msg->status = -EINPROGRESS;
1479 list_add_tail(&msg->queue, &ctlr->queue);
1480 if (!ctlr->busy && need_pump)
1481 kthread_queue_work(&ctlr->kworker, &ctlr->pump_messages);
1483 spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1488 * spi_queued_transfer - transfer function for queued transfers
1489 * @spi: spi device which is requesting transfer
1490 * @msg: spi message which is to handled is queued to driver queue
1492 * Return: zero on success, else a negative error code.
1494 static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
1496 return __spi_queued_transfer(spi, msg, true);
1499 static int spi_controller_initialize_queue(struct spi_controller *ctlr)
1503 ctlr->transfer = spi_queued_transfer;
1504 if (!ctlr->transfer_one_message)
1505 ctlr->transfer_one_message = spi_transfer_one_message;
1507 /* Initialize and start queue */
1508 ret = spi_init_queue(ctlr);
1510 dev_err(&ctlr->dev, "problem initializing queue\n");
1511 goto err_init_queue;
1513 ctlr->queued = true;
1514 ret = spi_start_queue(ctlr);
1516 dev_err(&ctlr->dev, "problem starting queue\n");
1517 goto err_start_queue;
1523 spi_destroy_queue(ctlr);
1529 * spi_flush_queue - Send all pending messages in the queue from the callers'
1531 * @ctlr: controller to process queue for
1533 * This should be used when one wants to ensure all pending messages have been
1534 * sent before doing something. Is used by the spi-mem code to make sure SPI
1535 * memory operations do not preempt regular SPI transfers that have been queued
1536 * before the spi-mem operation.
1538 void spi_flush_queue(struct spi_controller *ctlr)
1540 if (ctlr->transfer == spi_queued_transfer)
1541 __spi_pump_messages(ctlr, false);
1544 /*-------------------------------------------------------------------------*/
1546 #if defined(CONFIG_OF)
1547 static int of_spi_parse_dt(struct spi_controller *ctlr, struct spi_device *spi,
1548 struct device_node *nc)
1553 /* Mode (clock phase/polarity/etc.) */
1554 if (of_property_read_bool(nc, "spi-cpha"))
1555 spi->mode |= SPI_CPHA;
1556 if (of_property_read_bool(nc, "spi-cpol"))
1557 spi->mode |= SPI_CPOL;
1558 if (of_property_read_bool(nc, "spi-cs-high"))
1559 spi->mode |= SPI_CS_HIGH;
1560 if (of_property_read_bool(nc, "spi-3wire"))
1561 spi->mode |= SPI_3WIRE;
1562 if (of_property_read_bool(nc, "spi-lsb-first"))
1563 spi->mode |= SPI_LSB_FIRST;
1565 /* Device DUAL/QUAD mode */
1566 if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
1571 spi->mode |= SPI_TX_DUAL;
1574 spi->mode |= SPI_TX_QUAD;
1577 dev_warn(&ctlr->dev,
1578 "spi-tx-bus-width %d not supported\n",
1584 if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
1589 spi->mode |= SPI_RX_DUAL;
1592 spi->mode |= SPI_RX_QUAD;
1595 dev_warn(&ctlr->dev,
1596 "spi-rx-bus-width %d not supported\n",
1602 if (spi_controller_is_slave(ctlr)) {
1603 if (strcmp(nc->name, "slave")) {
1604 dev_err(&ctlr->dev, "%pOF is not called 'slave'\n",
1611 /* Device address */
1612 rc = of_property_read_u32(nc, "reg", &value);
1614 dev_err(&ctlr->dev, "%pOF has no valid 'reg' property (%d)\n",
1618 spi->chip_select = value;
1621 rc = of_property_read_u32(nc, "spi-max-frequency", &value);
1624 "%pOF has no valid 'spi-max-frequency' property (%d)\n", nc, rc);
1627 spi->max_speed_hz = value;
1632 static struct spi_device *
1633 of_register_spi_device(struct spi_controller *ctlr, struct device_node *nc)
1635 struct spi_device *spi;
1638 /* Alloc an spi_device */
1639 spi = spi_alloc_device(ctlr);
1641 dev_err(&ctlr->dev, "spi_device alloc error for %pOF\n", nc);
1646 /* Select device driver */
1647 rc = of_modalias_node(nc, spi->modalias,
1648 sizeof(spi->modalias));
1650 dev_err(&ctlr->dev, "cannot find modalias for %pOF\n", nc);
1654 rc = of_spi_parse_dt(ctlr, spi, nc);
1658 /* Store a pointer to the node in the device structure */
1660 spi->dev.of_node = nc;
1662 /* Register the new device */
1663 rc = spi_add_device(spi);
1665 dev_err(&ctlr->dev, "spi_device register error %pOF\n", nc);
1666 goto err_of_node_put;
1679 * of_register_spi_devices() - Register child devices onto the SPI bus
1680 * @ctlr: Pointer to spi_controller device
1682 * Registers an spi_device for each child node of controller node which
1683 * represents a valid SPI slave.
1685 static void of_register_spi_devices(struct spi_controller *ctlr)
1687 struct spi_device *spi;
1688 struct device_node *nc;
1690 if (!ctlr->dev.of_node)
1693 for_each_available_child_of_node(ctlr->dev.of_node, nc) {
1694 if (of_node_test_and_set_flag(nc, OF_POPULATED))
1696 spi = of_register_spi_device(ctlr, nc);
1698 dev_warn(&ctlr->dev,
1699 "Failed to create SPI device for %pOF\n", nc);
1700 of_node_clear_flag(nc, OF_POPULATED);
1705 static void of_register_spi_devices(struct spi_controller *ctlr) { }
1709 static void acpi_spi_parse_apple_properties(struct spi_device *spi)
1711 struct acpi_device *dev = ACPI_COMPANION(&spi->dev);
1712 const union acpi_object *obj;
1714 if (!x86_apple_machine)
1717 if (!acpi_dev_get_property(dev, "spiSclkPeriod", ACPI_TYPE_BUFFER, &obj)
1718 && obj->buffer.length >= 4)
1719 spi->max_speed_hz = NSEC_PER_SEC / *(u32 *)obj->buffer.pointer;
1721 if (!acpi_dev_get_property(dev, "spiWordSize", ACPI_TYPE_BUFFER, &obj)
1722 && obj->buffer.length == 8)
1723 spi->bits_per_word = *(u64 *)obj->buffer.pointer;
1725 if (!acpi_dev_get_property(dev, "spiBitOrder", ACPI_TYPE_BUFFER, &obj)
1726 && obj->buffer.length == 8 && !*(u64 *)obj->buffer.pointer)
1727 spi->mode |= SPI_LSB_FIRST;
1729 if (!acpi_dev_get_property(dev, "spiSPO", ACPI_TYPE_BUFFER, &obj)
1730 && obj->buffer.length == 8 && *(u64 *)obj->buffer.pointer)
1731 spi->mode |= SPI_CPOL;
1733 if (!acpi_dev_get_property(dev, "spiSPH", ACPI_TYPE_BUFFER, &obj)
1734 && obj->buffer.length == 8 && *(u64 *)obj->buffer.pointer)
1735 spi->mode |= SPI_CPHA;
1738 static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
1740 struct spi_device *spi = data;
1741 struct spi_controller *ctlr = spi->controller;
1743 if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
1744 struct acpi_resource_spi_serialbus *sb;
1746 sb = &ares->data.spi_serial_bus;
1747 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
1749 * ACPI DeviceSelection numbering is handled by the
1750 * host controller driver in Windows and can vary
1751 * from driver to driver. In Linux we always expect
1752 * 0 .. max - 1 so we need to ask the driver to
1753 * translate between the two schemes.
1755 if (ctlr->fw_translate_cs) {
1756 int cs = ctlr->fw_translate_cs(ctlr,
1757 sb->device_selection);
1760 spi->chip_select = cs;
1762 spi->chip_select = sb->device_selection;
1765 spi->max_speed_hz = sb->connection_speed;
1767 if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
1768 spi->mode |= SPI_CPHA;
1769 if (sb->clock_polarity == ACPI_SPI_START_HIGH)
1770 spi->mode |= SPI_CPOL;
1771 if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
1772 spi->mode |= SPI_CS_HIGH;
1774 } else if (spi->irq < 0) {
1777 if (acpi_dev_resource_interrupt(ares, 0, &r))
1781 /* Always tell the ACPI core to skip this resource */
1785 static acpi_status acpi_register_spi_device(struct spi_controller *ctlr,
1786 struct acpi_device *adev)
1788 struct list_head resource_list;
1789 struct spi_device *spi;
1792 if (acpi_bus_get_status(adev) || !adev->status.present ||
1793 acpi_device_enumerated(adev))
1796 spi = spi_alloc_device(ctlr);
1798 dev_err(&ctlr->dev, "failed to allocate SPI device for %s\n",
1799 dev_name(&adev->dev));
1800 return AE_NO_MEMORY;
1803 ACPI_COMPANION_SET(&spi->dev, adev);
1806 INIT_LIST_HEAD(&resource_list);
1807 ret = acpi_dev_get_resources(adev, &resource_list,
1808 acpi_spi_add_resource, spi);
1809 acpi_dev_free_resource_list(&resource_list);
1811 acpi_spi_parse_apple_properties(spi);
1813 if (ret < 0 || !spi->max_speed_hz) {
1818 acpi_set_modalias(adev, acpi_device_hid(adev), spi->modalias,
1819 sizeof(spi->modalias));
1822 spi->irq = acpi_dev_gpio_irq_get(adev, 0);
1824 acpi_device_set_enumerated(adev);
1826 adev->power.flags.ignore_parent = true;
1827 if (spi_add_device(spi)) {
1828 adev->power.flags.ignore_parent = false;
1829 dev_err(&ctlr->dev, "failed to add SPI device %s from ACPI\n",
1830 dev_name(&adev->dev));
1837 static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
1838 void *data, void **return_value)
1840 struct spi_controller *ctlr = data;
1841 struct acpi_device *adev;
1843 if (acpi_bus_get_device(handle, &adev))
1846 return acpi_register_spi_device(ctlr, adev);
1849 static void acpi_register_spi_devices(struct spi_controller *ctlr)
1854 handle = ACPI_HANDLE(ctlr->dev.parent);
1858 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
1859 acpi_spi_add_device, NULL, ctlr, NULL);
1860 if (ACPI_FAILURE(status))
1861 dev_warn(&ctlr->dev, "failed to enumerate SPI slaves\n");
1864 static inline void acpi_register_spi_devices(struct spi_controller *ctlr) {}
1865 #endif /* CONFIG_ACPI */
1867 static void spi_controller_release(struct device *dev)
1869 struct spi_controller *ctlr;
1871 ctlr = container_of(dev, struct spi_controller, dev);
1875 static struct class spi_master_class = {
1876 .name = "spi_master",
1877 .owner = THIS_MODULE,
1878 .dev_release = spi_controller_release,
1879 .dev_groups = spi_master_groups,
1882 #ifdef CONFIG_SPI_SLAVE
1884 * spi_slave_abort - abort the ongoing transfer request on an SPI slave
1886 * @spi: device used for the current transfer
1888 int spi_slave_abort(struct spi_device *spi)
1890 struct spi_controller *ctlr = spi->controller;
1892 if (spi_controller_is_slave(ctlr) && ctlr->slave_abort)
1893 return ctlr->slave_abort(ctlr);
1897 EXPORT_SYMBOL_GPL(spi_slave_abort);
1899 static int match_true(struct device *dev, void *data)
1904 static ssize_t spi_slave_show(struct device *dev,
1905 struct device_attribute *attr, char *buf)
1907 struct spi_controller *ctlr = container_of(dev, struct spi_controller,
1909 struct device *child;
1911 child = device_find_child(&ctlr->dev, NULL, match_true);
1912 return sprintf(buf, "%s\n",
1913 child ? to_spi_device(child)->modalias : NULL);
1916 static ssize_t spi_slave_store(struct device *dev,
1917 struct device_attribute *attr, const char *buf,
1920 struct spi_controller *ctlr = container_of(dev, struct spi_controller,
1922 struct spi_device *spi;
1923 struct device *child;
1927 rc = sscanf(buf, "%31s", name);
1928 if (rc != 1 || !name[0])
1931 child = device_find_child(&ctlr->dev, NULL, match_true);
1933 /* Remove registered slave */
1934 device_unregister(child);
1938 if (strcmp(name, "(null)")) {
1939 /* Register new slave */
1940 spi = spi_alloc_device(ctlr);
1944 strlcpy(spi->modalias, name, sizeof(spi->modalias));
1946 rc = spi_add_device(spi);
1956 static DEVICE_ATTR(slave, 0644, spi_slave_show, spi_slave_store);
1958 static struct attribute *spi_slave_attrs[] = {
1959 &dev_attr_slave.attr,
1963 static const struct attribute_group spi_slave_group = {
1964 .attrs = spi_slave_attrs,
1967 static const struct attribute_group *spi_slave_groups[] = {
1968 &spi_controller_statistics_group,
1973 static struct class spi_slave_class = {
1974 .name = "spi_slave",
1975 .owner = THIS_MODULE,
1976 .dev_release = spi_controller_release,
1977 .dev_groups = spi_slave_groups,
1980 extern struct class spi_slave_class; /* dummy */
1984 * __spi_alloc_controller - allocate an SPI master or slave controller
1985 * @dev: the controller, possibly using the platform_bus
1986 * @size: how much zeroed driver-private data to allocate; the pointer to this
1987 * memory is in the driver_data field of the returned device,
1988 * accessible with spi_controller_get_devdata().
1989 * @slave: flag indicating whether to allocate an SPI master (false) or SPI
1990 * slave (true) controller
1991 * Context: can sleep
1993 * This call is used only by SPI controller drivers, which are the
1994 * only ones directly touching chip registers. It's how they allocate
1995 * an spi_controller structure, prior to calling spi_register_controller().
1997 * This must be called from context that can sleep.
1999 * The caller is responsible for assigning the bus number and initializing the
2000 * controller's methods before calling spi_register_controller(); and (after
2001 * errors adding the device) calling spi_controller_put() to prevent a memory
2004 * Return: the SPI controller structure on success, else NULL.
2006 struct spi_controller *__spi_alloc_controller(struct device *dev,
2007 unsigned int size, bool slave)
2009 struct spi_controller *ctlr;
2014 ctlr = kzalloc(size + sizeof(*ctlr), GFP_KERNEL);
2018 device_initialize(&ctlr->dev);
2020 ctlr->num_chipselect = 1;
2021 ctlr->slave = slave;
2022 if (IS_ENABLED(CONFIG_SPI_SLAVE) && slave)
2023 ctlr->dev.class = &spi_slave_class;
2025 ctlr->dev.class = &spi_master_class;
2026 ctlr->dev.parent = dev;
2027 pm_suspend_ignore_children(&ctlr->dev, true);
2028 spi_controller_set_devdata(ctlr, &ctlr[1]);
2032 EXPORT_SYMBOL_GPL(__spi_alloc_controller);
2035 static int of_spi_register_master(struct spi_controller *ctlr)
2038 struct device_node *np = ctlr->dev.of_node;
2043 nb = of_gpio_named_count(np, "cs-gpios");
2044 ctlr->num_chipselect = max_t(int, nb, ctlr->num_chipselect);
2046 /* Return error only for an incorrectly formed cs-gpios property */
2047 if (nb == 0 || nb == -ENOENT)
2052 cs = devm_kcalloc(&ctlr->dev, ctlr->num_chipselect, sizeof(int),
2054 ctlr->cs_gpios = cs;
2056 if (!ctlr->cs_gpios)
2059 for (i = 0; i < ctlr->num_chipselect; i++)
2062 for (i = 0; i < nb; i++)
2063 cs[i] = of_get_named_gpio(np, "cs-gpios", i);
2068 static int of_spi_register_master(struct spi_controller *ctlr)
2074 static int spi_controller_check_ops(struct spi_controller *ctlr)
2077 * The controller may implement only the high-level SPI-memory like
2078 * operations if it does not support regular SPI transfers, and this is
2080 * If ->mem_ops is NULL, we request that at least one of the
2081 * ->transfer_xxx() method be implemented.
2083 if (ctlr->mem_ops) {
2084 if (!ctlr->mem_ops->exec_op)
2086 } else if (!ctlr->transfer && !ctlr->transfer_one &&
2087 !ctlr->transfer_one_message) {
2095 * spi_register_controller - register SPI master or slave controller
2096 * @ctlr: initialized master, originally from spi_alloc_master() or
2098 * Context: can sleep
2100 * SPI controllers connect to their drivers using some non-SPI bus,
2101 * such as the platform bus. The final stage of probe() in that code
2102 * includes calling spi_register_controller() to hook up to this SPI bus glue.
2104 * SPI controllers use board specific (often SOC specific) bus numbers,
2105 * and board-specific addressing for SPI devices combines those numbers
2106 * with chip select numbers. Since SPI does not directly support dynamic
2107 * device identification, boards need configuration tables telling which
2108 * chip is at which address.
2110 * This must be called from context that can sleep. It returns zero on
2111 * success, else a negative error code (dropping the controller's refcount).
2112 * After a successful return, the caller is responsible for calling
2113 * spi_unregister_controller().
2115 * Return: zero on success, else a negative error code.
2117 int spi_register_controller(struct spi_controller *ctlr)
2119 struct device *dev = ctlr->dev.parent;
2120 struct boardinfo *bi;
2121 int status = -ENODEV;
2122 int id, first_dynamic;
2128 * Make sure all necessary hooks are implemented before registering
2129 * the SPI controller.
2131 status = spi_controller_check_ops(ctlr);
2135 if (!spi_controller_is_slave(ctlr)) {
2136 status = of_spi_register_master(ctlr);
2141 /* even if it's just one always-selected device, there must
2142 * be at least one chipselect
2144 if (ctlr->num_chipselect == 0)
2146 if (ctlr->bus_num >= 0) {
2147 /* devices with a fixed bus num must check-in with the num */
2148 mutex_lock(&board_lock);
2149 id = idr_alloc(&spi_master_idr, ctlr, ctlr->bus_num,
2150 ctlr->bus_num + 1, GFP_KERNEL);
2151 mutex_unlock(&board_lock);
2152 if (WARN(id < 0, "couldn't get idr"))
2153 return id == -ENOSPC ? -EBUSY : id;
2155 } else if (ctlr->dev.of_node) {
2156 /* allocate dynamic bus number using Linux idr */
2157 id = of_alias_get_id(ctlr->dev.of_node, "spi");
2160 mutex_lock(&board_lock);
2161 id = idr_alloc(&spi_master_idr, ctlr, ctlr->bus_num,
2162 ctlr->bus_num + 1, GFP_KERNEL);
2163 mutex_unlock(&board_lock);
2164 if (WARN(id < 0, "couldn't get idr"))
2165 return id == -ENOSPC ? -EBUSY : id;
2168 if (ctlr->bus_num < 0) {
2169 first_dynamic = of_alias_get_highest_id("spi");
2170 if (first_dynamic < 0)
2175 mutex_lock(&board_lock);
2176 id = idr_alloc(&spi_master_idr, ctlr, first_dynamic,
2178 mutex_unlock(&board_lock);
2179 if (WARN(id < 0, "couldn't get idr"))
2183 INIT_LIST_HEAD(&ctlr->queue);
2184 spin_lock_init(&ctlr->queue_lock);
2185 spin_lock_init(&ctlr->bus_lock_spinlock);
2186 mutex_init(&ctlr->bus_lock_mutex);
2187 mutex_init(&ctlr->io_mutex);
2188 ctlr->bus_lock_flag = 0;
2189 init_completion(&ctlr->xfer_completion);
2190 if (!ctlr->max_dma_len)
2191 ctlr->max_dma_len = INT_MAX;
2193 /* register the device, then userspace will see it.
2194 * registration fails if the bus ID is in use.
2196 dev_set_name(&ctlr->dev, "spi%u", ctlr->bus_num);
2197 status = device_add(&ctlr->dev);
2200 mutex_lock(&board_lock);
2201 idr_remove(&spi_master_idr, ctlr->bus_num);
2202 mutex_unlock(&board_lock);
2205 dev_dbg(dev, "registered %s %s\n",
2206 spi_controller_is_slave(ctlr) ? "slave" : "master",
2207 dev_name(&ctlr->dev));
2210 * If we're using a queued driver, start the queue. Note that we don't
2211 * need the queueing logic if the driver is only supporting high-level
2212 * memory operations.
2214 if (ctlr->transfer) {
2215 dev_info(dev, "controller is unqueued, this is deprecated\n");
2216 } else if (ctlr->transfer_one || ctlr->transfer_one_message) {
2217 status = spi_controller_initialize_queue(ctlr);
2219 device_del(&ctlr->dev);
2221 mutex_lock(&board_lock);
2222 idr_remove(&spi_master_idr, ctlr->bus_num);
2223 mutex_unlock(&board_lock);
2227 /* add statistics */
2228 spin_lock_init(&ctlr->statistics.lock);
2230 mutex_lock(&board_lock);
2231 list_add_tail(&ctlr->list, &spi_controller_list);
2232 list_for_each_entry(bi, &board_list, list)
2233 spi_match_controller_to_boardinfo(ctlr, &bi->board_info);
2234 mutex_unlock(&board_lock);
2236 /* Register devices from the device tree and ACPI */
2237 of_register_spi_devices(ctlr);
2238 acpi_register_spi_devices(ctlr);
2242 EXPORT_SYMBOL_GPL(spi_register_controller);
2244 static void devm_spi_unregister(struct device *dev, void *res)
2246 spi_unregister_controller(*(struct spi_controller **)res);
2250 * devm_spi_register_controller - register managed SPI master or slave
2252 * @dev: device managing SPI controller
2253 * @ctlr: initialized controller, originally from spi_alloc_master() or
2255 * Context: can sleep
2257 * Register a SPI device as with spi_register_controller() which will
2258 * automatically be unregistered and freed.
2260 * Return: zero on success, else a negative error code.
2262 int devm_spi_register_controller(struct device *dev,
2263 struct spi_controller *ctlr)
2265 struct spi_controller **ptr;
2268 ptr = devres_alloc(devm_spi_unregister, sizeof(*ptr), GFP_KERNEL);
2272 ret = spi_register_controller(ctlr);
2275 devres_add(dev, ptr);
2282 EXPORT_SYMBOL_GPL(devm_spi_register_controller);
2284 static int __unregister(struct device *dev, void *null)
2286 spi_unregister_device(to_spi_device(dev));
2291 * spi_unregister_controller - unregister SPI master or slave controller
2292 * @ctlr: the controller being unregistered
2293 * Context: can sleep
2295 * This call is used only by SPI controller drivers, which are the
2296 * only ones directly touching chip registers.
2298 * This must be called from context that can sleep.
2300 * Note that this function also drops a reference to the controller.
2302 void spi_unregister_controller(struct spi_controller *ctlr)
2304 struct spi_controller *found;
2305 int id = ctlr->bus_num;
2308 /* First make sure that this controller was ever added */
2309 mutex_lock(&board_lock);
2310 found = idr_find(&spi_master_idr, id);
2311 mutex_unlock(&board_lock);
2313 if (spi_destroy_queue(ctlr))
2314 dev_err(&ctlr->dev, "queue remove failed\n");
2316 mutex_lock(&board_lock);
2317 list_del(&ctlr->list);
2318 mutex_unlock(&board_lock);
2320 dummy = device_for_each_child(&ctlr->dev, NULL, __unregister);
2321 device_unregister(&ctlr->dev);
2323 mutex_lock(&board_lock);
2325 idr_remove(&spi_master_idr, id);
2326 mutex_unlock(&board_lock);
2328 EXPORT_SYMBOL_GPL(spi_unregister_controller);
2330 int spi_controller_suspend(struct spi_controller *ctlr)
2334 /* Basically no-ops for non-queued controllers */
2338 ret = spi_stop_queue(ctlr);
2340 dev_err(&ctlr->dev, "queue stop failed\n");
2344 EXPORT_SYMBOL_GPL(spi_controller_suspend);
2346 int spi_controller_resume(struct spi_controller *ctlr)
2353 ret = spi_start_queue(ctlr);
2355 dev_err(&ctlr->dev, "queue restart failed\n");
2359 EXPORT_SYMBOL_GPL(spi_controller_resume);
2361 static int __spi_controller_match(struct device *dev, const void *data)
2363 struct spi_controller *ctlr;
2364 const u16 *bus_num = data;
2366 ctlr = container_of(dev, struct spi_controller, dev);
2367 return ctlr->bus_num == *bus_num;
2371 * spi_busnum_to_master - look up master associated with bus_num
2372 * @bus_num: the master's bus number
2373 * Context: can sleep
2375 * This call may be used with devices that are registered after
2376 * arch init time. It returns a refcounted pointer to the relevant
2377 * spi_controller (which the caller must release), or NULL if there is
2378 * no such master registered.
2380 * Return: the SPI master structure on success, else NULL.
2382 struct spi_controller *spi_busnum_to_master(u16 bus_num)
2385 struct spi_controller *ctlr = NULL;
2387 dev = class_find_device(&spi_master_class, NULL, &bus_num,
2388 __spi_controller_match);
2390 ctlr = container_of(dev, struct spi_controller, dev);
2391 /* reference got in class_find_device */
2394 EXPORT_SYMBOL_GPL(spi_busnum_to_master);
2396 /*-------------------------------------------------------------------------*/
2398 /* Core methods for SPI resource management */
2401 * spi_res_alloc - allocate a spi resource that is life-cycle managed
2402 * during the processing of a spi_message while using
2404 * @spi: the spi device for which we allocate memory
2405 * @release: the release code to execute for this resource
2406 * @size: size to alloc and return
2407 * @gfp: GFP allocation flags
2409 * Return: the pointer to the allocated data
2411 * This may get enhanced in the future to allocate from a memory pool
2412 * of the @spi_device or @spi_controller to avoid repeated allocations.
2414 void *spi_res_alloc(struct spi_device *spi,
2415 spi_res_release_t release,
2416 size_t size, gfp_t gfp)
2418 struct spi_res *sres;
2420 sres = kzalloc(sizeof(*sres) + size, gfp);
2424 INIT_LIST_HEAD(&sres->entry);
2425 sres->release = release;
2429 EXPORT_SYMBOL_GPL(spi_res_alloc);
2432 * spi_res_free - free an spi resource
2433 * @res: pointer to the custom data of a resource
2436 void spi_res_free(void *res)
2438 struct spi_res *sres = container_of(res, struct spi_res, data);
2443 WARN_ON(!list_empty(&sres->entry));
2446 EXPORT_SYMBOL_GPL(spi_res_free);
2449 * spi_res_add - add a spi_res to the spi_message
2450 * @message: the spi message
2451 * @res: the spi_resource
2453 void spi_res_add(struct spi_message *message, void *res)
2455 struct spi_res *sres = container_of(res, struct spi_res, data);
2457 WARN_ON(!list_empty(&sres->entry));
2458 list_add_tail(&sres->entry, &message->resources);
2460 EXPORT_SYMBOL_GPL(spi_res_add);
2463 * spi_res_release - release all spi resources for this message
2464 * @ctlr: the @spi_controller
2465 * @message: the @spi_message
2467 void spi_res_release(struct spi_controller *ctlr, struct spi_message *message)
2469 struct spi_res *res;
2471 while (!list_empty(&message->resources)) {
2472 res = list_last_entry(&message->resources,
2473 struct spi_res, entry);
2476 res->release(ctlr, message, res->data);
2478 list_del(&res->entry);
2483 EXPORT_SYMBOL_GPL(spi_res_release);
2485 /*-------------------------------------------------------------------------*/
2487 /* Core methods for spi_message alterations */
2489 static void __spi_replace_transfers_release(struct spi_controller *ctlr,
2490 struct spi_message *msg,
2493 struct spi_replaced_transfers *rxfer = res;
2496 /* call extra callback if requested */
2498 rxfer->release(ctlr, msg, res);
2500 /* insert replaced transfers back into the message */
2501 list_splice(&rxfer->replaced_transfers, rxfer->replaced_after);
2503 /* remove the formerly inserted entries */
2504 for (i = 0; i < rxfer->inserted; i++)
2505 list_del(&rxfer->inserted_transfers[i].transfer_list);
2509 * spi_replace_transfers - replace transfers with several transfers
2510 * and register change with spi_message.resources
2511 * @msg: the spi_message we work upon
2512 * @xfer_first: the first spi_transfer we want to replace
2513 * @remove: number of transfers to remove
2514 * @insert: the number of transfers we want to insert instead
2515 * @release: extra release code necessary in some circumstances
2516 * @extradatasize: extra data to allocate (with alignment guarantees
2517 * of struct @spi_transfer)
2520 * Returns: pointer to @spi_replaced_transfers,
2521 * PTR_ERR(...) in case of errors.
2523 struct spi_replaced_transfers *spi_replace_transfers(
2524 struct spi_message *msg,
2525 struct spi_transfer *xfer_first,
2528 spi_replaced_release_t release,
2529 size_t extradatasize,
2532 struct spi_replaced_transfers *rxfer;
2533 struct spi_transfer *xfer;
2536 /* allocate the structure using spi_res */
2537 rxfer = spi_res_alloc(msg->spi, __spi_replace_transfers_release,
2538 insert * sizeof(struct spi_transfer)
2539 + sizeof(struct spi_replaced_transfers)
2543 return ERR_PTR(-ENOMEM);
2545 /* the release code to invoke before running the generic release */
2546 rxfer->release = release;
2548 /* assign extradata */
2551 &rxfer->inserted_transfers[insert];
2553 /* init the replaced_transfers list */
2554 INIT_LIST_HEAD(&rxfer->replaced_transfers);
2556 /* assign the list_entry after which we should reinsert
2557 * the @replaced_transfers - it may be spi_message.messages!
2559 rxfer->replaced_after = xfer_first->transfer_list.prev;
2561 /* remove the requested number of transfers */
2562 for (i = 0; i < remove; i++) {
2563 /* if the entry after replaced_after it is msg->transfers
2564 * then we have been requested to remove more transfers
2565 * than are in the list
2567 if (rxfer->replaced_after->next == &msg->transfers) {
2568 dev_err(&msg->spi->dev,
2569 "requested to remove more spi_transfers than are available\n");
2570 /* insert replaced transfers back into the message */
2571 list_splice(&rxfer->replaced_transfers,
2572 rxfer->replaced_after);
2574 /* free the spi_replace_transfer structure */
2575 spi_res_free(rxfer);
2577 /* and return with an error */
2578 return ERR_PTR(-EINVAL);
2581 /* remove the entry after replaced_after from list of
2582 * transfers and add it to list of replaced_transfers
2584 list_move_tail(rxfer->replaced_after->next,
2585 &rxfer->replaced_transfers);
2588 /* create copy of the given xfer with identical settings
2589 * based on the first transfer to get removed
2591 for (i = 0; i < insert; i++) {
2592 /* we need to run in reverse order */
2593 xfer = &rxfer->inserted_transfers[insert - 1 - i];
2595 /* copy all spi_transfer data */
2596 memcpy(xfer, xfer_first, sizeof(*xfer));
2599 list_add(&xfer->transfer_list, rxfer->replaced_after);
2601 /* clear cs_change and delay_usecs for all but the last */
2603 xfer->cs_change = false;
2604 xfer->delay_usecs = 0;
2608 /* set up inserted */
2609 rxfer->inserted = insert;
2611 /* and register it with spi_res/spi_message */
2612 spi_res_add(msg, rxfer);
2616 EXPORT_SYMBOL_GPL(spi_replace_transfers);
2618 static int __spi_split_transfer_maxsize(struct spi_controller *ctlr,
2619 struct spi_message *msg,
2620 struct spi_transfer **xferp,
2624 struct spi_transfer *xfer = *xferp, *xfers;
2625 struct spi_replaced_transfers *srt;
2629 /* warn once about this fact that we are splitting a transfer */
2630 dev_warn_once(&msg->spi->dev,
2631 "spi_transfer of length %i exceed max length of %zu - needed to split transfers\n",
2632 xfer->len, maxsize);
2634 /* calculate how many we have to replace */
2635 count = DIV_ROUND_UP(xfer->len, maxsize);
2637 /* create replacement */
2638 srt = spi_replace_transfers(msg, xfer, 1, count, NULL, 0, gfp);
2640 return PTR_ERR(srt);
2641 xfers = srt->inserted_transfers;
2643 /* now handle each of those newly inserted spi_transfers
2644 * note that the replacements spi_transfers all are preset
2645 * to the same values as *xferp, so tx_buf, rx_buf and len
2646 * are all identical (as well as most others)
2647 * so we just have to fix up len and the pointers.
2649 * this also includes support for the depreciated
2650 * spi_message.is_dma_mapped interface
2653 /* the first transfer just needs the length modified, so we
2654 * run it outside the loop
2656 xfers[0].len = min_t(size_t, maxsize, xfer[0].len);
2658 /* all the others need rx_buf/tx_buf also set */
2659 for (i = 1, offset = maxsize; i < count; offset += maxsize, i++) {
2660 /* update rx_buf, tx_buf and dma */
2661 if (xfers[i].rx_buf)
2662 xfers[i].rx_buf += offset;
2663 if (xfers[i].rx_dma)
2664 xfers[i].rx_dma += offset;
2665 if (xfers[i].tx_buf)
2666 xfers[i].tx_buf += offset;
2667 if (xfers[i].tx_dma)
2668 xfers[i].tx_dma += offset;
2671 xfers[i].len = min(maxsize, xfers[i].len - offset);
2674 /* we set up xferp to the last entry we have inserted,
2675 * so that we skip those already split transfers
2677 *xferp = &xfers[count - 1];
2679 /* increment statistics counters */
2680 SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics,
2681 transfers_split_maxsize);
2682 SPI_STATISTICS_INCREMENT_FIELD(&msg->spi->statistics,
2683 transfers_split_maxsize);
2689 * spi_split_tranfers_maxsize - split spi transfers into multiple transfers
2690 * when an individual transfer exceeds a
2692 * @ctlr: the @spi_controller for this transfer
2693 * @msg: the @spi_message to transform
2694 * @maxsize: the maximum when to apply this
2695 * @gfp: GFP allocation flags
2697 * Return: status of transformation
2699 int spi_split_transfers_maxsize(struct spi_controller *ctlr,
2700 struct spi_message *msg,
2704 struct spi_transfer *xfer;
2707 /* iterate over the transfer_list,
2708 * but note that xfer is advanced to the last transfer inserted
2709 * to avoid checking sizes again unnecessarily (also xfer does
2710 * potentiall belong to a different list by the time the
2711 * replacement has happened
2713 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
2714 if (xfer->len > maxsize) {
2715 ret = __spi_split_transfer_maxsize(ctlr, msg, &xfer,
2724 EXPORT_SYMBOL_GPL(spi_split_transfers_maxsize);
2726 /*-------------------------------------------------------------------------*/
2728 /* Core methods for SPI controller protocol drivers. Some of the
2729 * other core methods are currently defined as inline functions.
2732 static int __spi_validate_bits_per_word(struct spi_controller *ctlr,
2735 if (ctlr->bits_per_word_mask) {
2736 /* Only 32 bits fit in the mask */
2737 if (bits_per_word > 32)
2739 if (!(ctlr->bits_per_word_mask & SPI_BPW_MASK(bits_per_word)))
2747 * spi_setup - setup SPI mode and clock rate
2748 * @spi: the device whose settings are being modified
2749 * Context: can sleep, and no requests are queued to the device
2751 * SPI protocol drivers may need to update the transfer mode if the
2752 * device doesn't work with its default. They may likewise need
2753 * to update clock rates or word sizes from initial values. This function
2754 * changes those settings, and must be called from a context that can sleep.
2755 * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
2756 * effect the next time the device is selected and data is transferred to
2757 * or from it. When this function returns, the spi device is deselected.
2759 * Note that this call will fail if the protocol driver specifies an option
2760 * that the underlying controller or its driver does not support. For
2761 * example, not all hardware supports wire transfers using nine bit words,
2762 * LSB-first wire encoding, or active-high chipselects.
2764 * Return: zero on success, else a negative error code.
2766 int spi_setup(struct spi_device *spi)
2768 unsigned bad_bits, ugly_bits;
2771 /* check mode to prevent that DUAL and QUAD set at the same time
2773 if (((spi->mode & SPI_TX_DUAL) && (spi->mode & SPI_TX_QUAD)) ||
2774 ((spi->mode & SPI_RX_DUAL) && (spi->mode & SPI_RX_QUAD))) {
2776 "setup: can not select dual and quad at the same time\n");
2779 /* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
2781 if ((spi->mode & SPI_3WIRE) && (spi->mode &
2782 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD)))
2784 /* help drivers fail *cleanly* when they need options
2785 * that aren't supported with their current controller
2787 bad_bits = spi->mode & ~spi->controller->mode_bits;
2788 ugly_bits = bad_bits &
2789 (SPI_TX_DUAL | SPI_TX_QUAD | SPI_RX_DUAL | SPI_RX_QUAD);
2792 "setup: ignoring unsupported mode bits %x\n",
2794 spi->mode &= ~ugly_bits;
2795 bad_bits &= ~ugly_bits;
2798 dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
2803 if (!spi->bits_per_word)
2804 spi->bits_per_word = 8;
2806 status = __spi_validate_bits_per_word(spi->controller,
2807 spi->bits_per_word);
2811 if (!spi->max_speed_hz)
2812 spi->max_speed_hz = spi->controller->max_speed_hz;
2814 if (spi->controller->setup)
2815 status = spi->controller->setup(spi);
2817 spi_set_cs(spi, false);
2819 dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n",
2820 (int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
2821 (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
2822 (spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
2823 (spi->mode & SPI_3WIRE) ? "3wire, " : "",
2824 (spi->mode & SPI_LOOP) ? "loopback, " : "",
2825 spi->bits_per_word, spi->max_speed_hz,
2830 EXPORT_SYMBOL_GPL(spi_setup);
2832 static int __spi_validate(struct spi_device *spi, struct spi_message *message)
2834 struct spi_controller *ctlr = spi->controller;
2835 struct spi_transfer *xfer;
2838 if (list_empty(&message->transfers))
2841 /* Half-duplex links include original MicroWire, and ones with
2842 * only one data pin like SPI_3WIRE (switches direction) or where
2843 * either MOSI or MISO is missing. They can also be caused by
2844 * software limitations.
2846 if ((ctlr->flags & SPI_CONTROLLER_HALF_DUPLEX) ||
2847 (spi->mode & SPI_3WIRE)) {
2848 unsigned flags = ctlr->flags;
2850 list_for_each_entry(xfer, &message->transfers, transfer_list) {
2851 if (xfer->rx_buf && xfer->tx_buf)
2853 if ((flags & SPI_CONTROLLER_NO_TX) && xfer->tx_buf)
2855 if ((flags & SPI_CONTROLLER_NO_RX) && xfer->rx_buf)
2861 * Set transfer bits_per_word and max speed as spi device default if
2862 * it is not set for this transfer.
2863 * Set transfer tx_nbits and rx_nbits as single transfer default
2864 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
2866 message->frame_length = 0;
2867 list_for_each_entry(xfer, &message->transfers, transfer_list) {
2868 message->frame_length += xfer->len;
2869 if (!xfer->bits_per_word)
2870 xfer->bits_per_word = spi->bits_per_word;
2872 if (!xfer->speed_hz)
2873 xfer->speed_hz = spi->max_speed_hz;
2874 if (!xfer->speed_hz)
2875 xfer->speed_hz = ctlr->max_speed_hz;
2877 if (ctlr->max_speed_hz && xfer->speed_hz > ctlr->max_speed_hz)
2878 xfer->speed_hz = ctlr->max_speed_hz;
2880 if (__spi_validate_bits_per_word(ctlr, xfer->bits_per_word))
2884 * SPI transfer length should be multiple of SPI word size
2885 * where SPI word size should be power-of-two multiple
2887 if (xfer->bits_per_word <= 8)
2889 else if (xfer->bits_per_word <= 16)
2894 /* No partial transfers accepted */
2895 if (xfer->len % w_size)
2898 if (xfer->speed_hz && ctlr->min_speed_hz &&
2899 xfer->speed_hz < ctlr->min_speed_hz)
2902 if (xfer->tx_buf && !xfer->tx_nbits)
2903 xfer->tx_nbits = SPI_NBITS_SINGLE;
2904 if (xfer->rx_buf && !xfer->rx_nbits)
2905 xfer->rx_nbits = SPI_NBITS_SINGLE;
2906 /* check transfer tx/rx_nbits:
2907 * 1. check the value matches one of single, dual and quad
2908 * 2. check tx/rx_nbits match the mode in spi_device
2911 if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
2912 xfer->tx_nbits != SPI_NBITS_DUAL &&
2913 xfer->tx_nbits != SPI_NBITS_QUAD)
2915 if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
2916 !(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
2918 if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
2919 !(spi->mode & SPI_TX_QUAD))
2922 /* check transfer rx_nbits */
2924 if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
2925 xfer->rx_nbits != SPI_NBITS_DUAL &&
2926 xfer->rx_nbits != SPI_NBITS_QUAD)
2928 if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
2929 !(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
2931 if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
2932 !(spi->mode & SPI_RX_QUAD))
2937 message->status = -EINPROGRESS;
2942 static int __spi_async(struct spi_device *spi, struct spi_message *message)
2944 struct spi_controller *ctlr = spi->controller;
2947 * Some controllers do not support doing regular SPI transfers. Return
2948 * ENOTSUPP when this is the case.
2950 if (!ctlr->transfer)
2955 SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics, spi_async);
2956 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_async);
2958 trace_spi_message_submit(message);
2960 return ctlr->transfer(spi, message);
2964 * spi_async - asynchronous SPI transfer
2965 * @spi: device with which data will be exchanged
2966 * @message: describes the data transfers, including completion callback
2967 * Context: any (irqs may be blocked, etc)
2969 * This call may be used in_irq and other contexts which can't sleep,
2970 * as well as from task contexts which can sleep.
2972 * The completion callback is invoked in a context which can't sleep.
2973 * Before that invocation, the value of message->status is undefined.
2974 * When the callback is issued, message->status holds either zero (to
2975 * indicate complete success) or a negative error code. After that
2976 * callback returns, the driver which issued the transfer request may
2977 * deallocate the associated memory; it's no longer in use by any SPI
2978 * core or controller driver code.
2980 * Note that although all messages to a spi_device are handled in
2981 * FIFO order, messages may go to different devices in other orders.
2982 * Some device might be higher priority, or have various "hard" access
2983 * time requirements, for example.
2985 * On detection of any fault during the transfer, processing of
2986 * the entire message is aborted, and the device is deselected.
2987 * Until returning from the associated message completion callback,
2988 * no other spi_message queued to that device will be processed.
2989 * (This rule applies equally to all the synchronous transfer calls,
2990 * which are wrappers around this core asynchronous primitive.)
2992 * Return: zero on success, else a negative error code.
2994 int spi_async(struct spi_device *spi, struct spi_message *message)
2996 struct spi_controller *ctlr = spi->controller;
2998 unsigned long flags;
3000 ret = __spi_validate(spi, message);
3004 spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3006 if (ctlr->bus_lock_flag)
3009 ret = __spi_async(spi, message);
3011 spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3015 EXPORT_SYMBOL_GPL(spi_async);
3018 * spi_async_locked - version of spi_async with exclusive bus usage
3019 * @spi: device with which data will be exchanged
3020 * @message: describes the data transfers, including completion callback
3021 * Context: any (irqs may be blocked, etc)
3023 * This call may be used in_irq and other contexts which can't sleep,
3024 * as well as from task contexts which can sleep.
3026 * The completion callback is invoked in a context which can't sleep.
3027 * Before that invocation, the value of message->status is undefined.
3028 * When the callback is issued, message->status holds either zero (to
3029 * indicate complete success) or a negative error code. After that
3030 * callback returns, the driver which issued the transfer request may
3031 * deallocate the associated memory; it's no longer in use by any SPI
3032 * core or controller driver code.
3034 * Note that although all messages to a spi_device are handled in
3035 * FIFO order, messages may go to different devices in other orders.
3036 * Some device might be higher priority, or have various "hard" access
3037 * time requirements, for example.
3039 * On detection of any fault during the transfer, processing of
3040 * the entire message is aborted, and the device is deselected.
3041 * Until returning from the associated message completion callback,
3042 * no other spi_message queued to that device will be processed.
3043 * (This rule applies equally to all the synchronous transfer calls,
3044 * which are wrappers around this core asynchronous primitive.)
3046 * Return: zero on success, else a negative error code.
3048 int spi_async_locked(struct spi_device *spi, struct spi_message *message)
3050 struct spi_controller *ctlr = spi->controller;
3052 unsigned long flags;
3054 ret = __spi_validate(spi, message);
3058 spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3060 ret = __spi_async(spi, message);
3062 spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3067 EXPORT_SYMBOL_GPL(spi_async_locked);
3069 /*-------------------------------------------------------------------------*/
3071 /* Utility methods for SPI protocol drivers, layered on
3072 * top of the core. Some other utility methods are defined as
3076 static void spi_complete(void *arg)
3081 static int __spi_sync(struct spi_device *spi, struct spi_message *message)
3083 DECLARE_COMPLETION_ONSTACK(done);
3085 struct spi_controller *ctlr = spi->controller;
3086 unsigned long flags;
3088 status = __spi_validate(spi, message);
3092 message->complete = spi_complete;
3093 message->context = &done;
3096 SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics, spi_sync);
3097 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_sync);
3099 /* If we're not using the legacy transfer method then we will
3100 * try to transfer in the calling context so special case.
3101 * This code would be less tricky if we could remove the
3102 * support for driver implemented message queues.
3104 if (ctlr->transfer == spi_queued_transfer) {
3105 spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3107 trace_spi_message_submit(message);
3109 status = __spi_queued_transfer(spi, message, false);
3111 spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3113 status = spi_async_locked(spi, message);
3117 /* Push out the messages in the calling context if we
3120 if (ctlr->transfer == spi_queued_transfer) {
3121 SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics,
3122 spi_sync_immediate);
3123 SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics,
3124 spi_sync_immediate);
3125 __spi_pump_messages(ctlr, false);
3128 wait_for_completion(&done);
3129 status = message->status;
3131 message->context = NULL;
3136 * spi_sync - blocking/synchronous SPI data transfers
3137 * @spi: device with which data will be exchanged
3138 * @message: describes the data transfers
3139 * Context: can sleep
3141 * This call may only be used from a context that may sleep. The sleep
3142 * is non-interruptible, and has no timeout. Low-overhead controller
3143 * drivers may DMA directly into and out of the message buffers.
3145 * Note that the SPI device's chip select is active during the message,
3146 * and then is normally disabled between messages. Drivers for some
3147 * frequently-used devices may want to minimize costs of selecting a chip,
3148 * by leaving it selected in anticipation that the next message will go
3149 * to the same chip. (That may increase power usage.)
3151 * Also, the caller is guaranteeing that the memory associated with the
3152 * message will not be freed before this call returns.
3154 * Return: zero on success, else a negative error code.
3156 int spi_sync(struct spi_device *spi, struct spi_message *message)
3160 mutex_lock(&spi->controller->bus_lock_mutex);
3161 ret = __spi_sync(spi, message);
3162 mutex_unlock(&spi->controller->bus_lock_mutex);
3166 EXPORT_SYMBOL_GPL(spi_sync);
3169 * spi_sync_locked - version of spi_sync with exclusive bus usage
3170 * @spi: device with which data will be exchanged
3171 * @message: describes the data transfers
3172 * Context: can sleep
3174 * This call may only be used from a context that may sleep. The sleep
3175 * is non-interruptible, and has no timeout. Low-overhead controller
3176 * drivers may DMA directly into and out of the message buffers.
3178 * This call should be used by drivers that require exclusive access to the
3179 * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
3180 * be released by a spi_bus_unlock call when the exclusive access is over.
3182 * Return: zero on success, else a negative error code.
3184 int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
3186 return __spi_sync(spi, message);
3188 EXPORT_SYMBOL_GPL(spi_sync_locked);
3191 * spi_bus_lock - obtain a lock for exclusive SPI bus usage
3192 * @ctlr: SPI bus master that should be locked for exclusive bus access
3193 * Context: can sleep
3195 * This call may only be used from a context that may sleep. The sleep
3196 * is non-interruptible, and has no timeout.
3198 * This call should be used by drivers that require exclusive access to the
3199 * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
3200 * exclusive access is over. Data transfer must be done by spi_sync_locked
3201 * and spi_async_locked calls when the SPI bus lock is held.
3203 * Return: always zero.
3205 int spi_bus_lock(struct spi_controller *ctlr)
3207 unsigned long flags;
3209 mutex_lock(&ctlr->bus_lock_mutex);
3211 spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3212 ctlr->bus_lock_flag = 1;
3213 spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3215 /* mutex remains locked until spi_bus_unlock is called */
3219 EXPORT_SYMBOL_GPL(spi_bus_lock);
3222 * spi_bus_unlock - release the lock for exclusive SPI bus usage
3223 * @ctlr: SPI bus master that was locked for exclusive bus access
3224 * Context: can sleep
3226 * This call may only be used from a context that may sleep. The sleep
3227 * is non-interruptible, and has no timeout.
3229 * This call releases an SPI bus lock previously obtained by an spi_bus_lock
3232 * Return: always zero.
3234 int spi_bus_unlock(struct spi_controller *ctlr)
3236 ctlr->bus_lock_flag = 0;
3238 mutex_unlock(&ctlr->bus_lock_mutex);
3242 EXPORT_SYMBOL_GPL(spi_bus_unlock);
3244 /* portable code must never pass more than 32 bytes */
3245 #define SPI_BUFSIZ max(32, SMP_CACHE_BYTES)
3250 * spi_write_then_read - SPI synchronous write followed by read
3251 * @spi: device with which data will be exchanged
3252 * @txbuf: data to be written (need not be dma-safe)
3253 * @n_tx: size of txbuf, in bytes
3254 * @rxbuf: buffer into which data will be read (need not be dma-safe)
3255 * @n_rx: size of rxbuf, in bytes
3256 * Context: can sleep
3258 * This performs a half duplex MicroWire style transaction with the
3259 * device, sending txbuf and then reading rxbuf. The return value
3260 * is zero for success, else a negative errno status code.
3261 * This call may only be used from a context that may sleep.
3263 * Parameters to this routine are always copied using a small buffer;
3264 * portable code should never use this for more than 32 bytes.
3265 * Performance-sensitive or bulk transfer code should instead use
3266 * spi_{async,sync}() calls with dma-safe buffers.
3268 * Return: zero on success, else a negative error code.
3270 int spi_write_then_read(struct spi_device *spi,
3271 const void *txbuf, unsigned n_tx,
3272 void *rxbuf, unsigned n_rx)
3274 static DEFINE_MUTEX(lock);
3277 struct spi_message message;
3278 struct spi_transfer x[2];
3281 /* Use preallocated DMA-safe buffer if we can. We can't avoid
3282 * copying here, (as a pure convenience thing), but we can
3283 * keep heap costs out of the hot path unless someone else is
3284 * using the pre-allocated buffer or the transfer is too large.
3286 if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
3287 local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
3288 GFP_KERNEL | GFP_DMA);
3295 spi_message_init(&message);
3296 memset(x, 0, sizeof(x));
3299 spi_message_add_tail(&x[0], &message);
3303 spi_message_add_tail(&x[1], &message);
3306 memcpy(local_buf, txbuf, n_tx);
3307 x[0].tx_buf = local_buf;
3308 x[1].rx_buf = local_buf + n_tx;
3311 status = spi_sync(spi, &message);
3313 memcpy(rxbuf, x[1].rx_buf, n_rx);
3315 if (x[0].tx_buf == buf)
3316 mutex_unlock(&lock);
3322 EXPORT_SYMBOL_GPL(spi_write_then_read);
3324 /*-------------------------------------------------------------------------*/
3326 #if IS_ENABLED(CONFIG_OF_DYNAMIC)
3327 static int __spi_of_device_match(struct device *dev, void *data)
3329 return dev->of_node == data;
3332 /* must call put_device() when done with returned spi_device device */
3333 static struct spi_device *of_find_spi_device_by_node(struct device_node *node)
3335 struct device *dev = bus_find_device(&spi_bus_type, NULL, node,
3336 __spi_of_device_match);
3337 return dev ? to_spi_device(dev) : NULL;
3340 static int __spi_of_controller_match(struct device *dev, const void *data)
3342 return dev->of_node == data;
3345 /* the spi controllers are not using spi_bus, so we find it with another way */
3346 static struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
3350 dev = class_find_device(&spi_master_class, NULL, node,
3351 __spi_of_controller_match);
3352 if (!dev && IS_ENABLED(CONFIG_SPI_SLAVE))
3353 dev = class_find_device(&spi_slave_class, NULL, node,
3354 __spi_of_controller_match);
3358 /* reference got in class_find_device */
3359 return container_of(dev, struct spi_controller, dev);
3362 static int of_spi_notify(struct notifier_block *nb, unsigned long action,
3365 struct of_reconfig_data *rd = arg;
3366 struct spi_controller *ctlr;
3367 struct spi_device *spi;
3369 switch (of_reconfig_get_state_change(action, arg)) {
3370 case OF_RECONFIG_CHANGE_ADD:
3371 ctlr = of_find_spi_controller_by_node(rd->dn->parent);
3373 return NOTIFY_OK; /* not for us */
3375 if (of_node_test_and_set_flag(rd->dn, OF_POPULATED)) {
3376 put_device(&ctlr->dev);
3380 spi = of_register_spi_device(ctlr, rd->dn);
3381 put_device(&ctlr->dev);
3384 pr_err("%s: failed to create for '%pOF'\n",
3386 of_node_clear_flag(rd->dn, OF_POPULATED);
3387 return notifier_from_errno(PTR_ERR(spi));
3391 case OF_RECONFIG_CHANGE_REMOVE:
3392 /* already depopulated? */
3393 if (!of_node_check_flag(rd->dn, OF_POPULATED))
3396 /* find our device by node */
3397 spi = of_find_spi_device_by_node(rd->dn);
3399 return NOTIFY_OK; /* no? not meant for us */
3401 /* unregister takes one ref away */
3402 spi_unregister_device(spi);
3404 /* and put the reference of the find */
3405 put_device(&spi->dev);
3412 static struct notifier_block spi_of_notifier = {
3413 .notifier_call = of_spi_notify,
3415 #else /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
3416 extern struct notifier_block spi_of_notifier;
3417 #endif /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
3419 #if IS_ENABLED(CONFIG_ACPI)
3420 static int spi_acpi_controller_match(struct device *dev, const void *data)
3422 return ACPI_COMPANION(dev->parent) == data;
3425 static int spi_acpi_device_match(struct device *dev, void *data)
3427 return ACPI_COMPANION(dev) == data;
3430 static struct spi_controller *acpi_spi_find_controller_by_adev(struct acpi_device *adev)
3434 dev = class_find_device(&spi_master_class, NULL, adev,
3435 spi_acpi_controller_match);
3436 if (!dev && IS_ENABLED(CONFIG_SPI_SLAVE))
3437 dev = class_find_device(&spi_slave_class, NULL, adev,
3438 spi_acpi_controller_match);
3442 return container_of(dev, struct spi_controller, dev);
3445 static struct spi_device *acpi_spi_find_device_by_adev(struct acpi_device *adev)
3449 dev = bus_find_device(&spi_bus_type, NULL, adev, spi_acpi_device_match);
3451 return dev ? to_spi_device(dev) : NULL;
3454 static int acpi_spi_notify(struct notifier_block *nb, unsigned long value,
3457 struct acpi_device *adev = arg;
3458 struct spi_controller *ctlr;
3459 struct spi_device *spi;
3462 case ACPI_RECONFIG_DEVICE_ADD:
3463 ctlr = acpi_spi_find_controller_by_adev(adev->parent);
3467 acpi_register_spi_device(ctlr, adev);
3468 put_device(&ctlr->dev);
3470 case ACPI_RECONFIG_DEVICE_REMOVE:
3471 if (!acpi_device_enumerated(adev))
3474 spi = acpi_spi_find_device_by_adev(adev);
3478 spi_unregister_device(spi);
3479 put_device(&spi->dev);
3486 static struct notifier_block spi_acpi_notifier = {
3487 .notifier_call = acpi_spi_notify,
3490 extern struct notifier_block spi_acpi_notifier;
3493 static int __init spi_init(void)
3497 buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
3503 status = bus_register(&spi_bus_type);
3507 status = class_register(&spi_master_class);
3511 if (IS_ENABLED(CONFIG_SPI_SLAVE)) {
3512 status = class_register(&spi_slave_class);
3517 if (IS_ENABLED(CONFIG_OF_DYNAMIC))
3518 WARN_ON(of_reconfig_notifier_register(&spi_of_notifier));
3519 if (IS_ENABLED(CONFIG_ACPI))
3520 WARN_ON(acpi_reconfig_notifier_register(&spi_acpi_notifier));
3525 class_unregister(&spi_master_class);
3527 bus_unregister(&spi_bus_type);
3535 /* board_info is normally registered in arch_initcall(),
3536 * but even essential drivers wait till later
3538 * REVISIT only boardinfo really needs static linking. the rest (device and
3539 * driver registration) _could_ be dynamically linked (modular) ... costs
3540 * include needing to have boardinfo data structures be much more public.
3542 postcore_initcall(spi_init);