xref: /linux/drivers/spi/spi.c (revision 40b82c2d9a78593201a3a62dc9239d6405334561)
1b445bfcbSMarco Felsch // SPDX-License-Identifier: GPL-2.0-or-later
2787f4889SMark Brown // SPI init/core code
3787f4889SMark Brown //
4787f4889SMark Brown // Copyright (C) 2005 David Brownell
5787f4889SMark Brown // Copyright (C) 2008 Secret Lab Technologies Ltd.
68ae12a0dSDavid Brownell 
78ae12a0dSDavid Brownell #include <linux/kernel.h>
88ae12a0dSDavid Brownell #include <linux/device.h>
98ae12a0dSDavid Brownell #include <linux/init.h>
108ae12a0dSDavid Brownell #include <linux/cache.h>
1199adef31SMark Brown #include <linux/dma-mapping.h>
1299adef31SMark Brown #include <linux/dmaengine.h>
1394040828SMatthias Kaehlcke #include <linux/mutex.h>
142b7a32f7SSinan Akman #include <linux/of_device.h>
15d57a4282SGrant Likely #include <linux/of_irq.h>
1686be408bSSylwester Nawrocki #include <linux/clk/clk-conf.h>
175a0e3ad6STejun Heo #include <linux/slab.h>
18e0626e38SAnton Vorontsov #include <linux/mod_devicetable.h>
198ae12a0dSDavid Brownell #include <linux/spi/spi.h>
20b5932f5cSBoris Brezillon #include <linux/spi/spi-mem.h>
2174317984SJean-Christophe PLAGNIOL-VILLARD #include <linux/of_gpio.h>
22f3186dd8SLinus Walleij #include <linux/gpio/consumer.h>
233ae22e8cSMark Brown #include <linux/pm_runtime.h>
24f48c767cSUlf Hansson #include <linux/pm_domain.h>
25826cf175SDmitry Torokhov #include <linux/property.h>
26025ed130SPaul Gortmaker #include <linux/export.h>
278bd75c77SClark Williams #include <linux/sched/rt.h>
28ae7e81c0SIngo Molnar #include <uapi/linux/sched/types.h>
29ffbbdd21SLinus Walleij #include <linux/delay.h>
30ffbbdd21SLinus Walleij #include <linux/kthread.h>
3164bee4d2SMika Westerberg #include <linux/ioport.h>
3264bee4d2SMika Westerberg #include <linux/acpi.h>
33b1b8153cSVignesh R #include <linux/highmem.h>
349b61e302SSuniel Mahesh #include <linux/idr.h>
358a2e487eSLukas Wunner #include <linux/platform_data/x86/apple.h>
368ae12a0dSDavid Brownell 
3756ec1978SMark Brown #define CREATE_TRACE_POINTS
3856ec1978SMark Brown #include <trace/events/spi.h>
39ca1438dcSArnd Bergmann EXPORT_TRACEPOINT_SYMBOL(spi_transfer_start);
40ca1438dcSArnd Bergmann EXPORT_TRACEPOINT_SYMBOL(spi_transfer_stop);
419b61e302SSuniel Mahesh 
4246336966SBoris Brezillon #include "internals.h"
4346336966SBoris Brezillon 
449b61e302SSuniel Mahesh static DEFINE_IDR(spi_master_idr);
4556ec1978SMark Brown 
468ae12a0dSDavid Brownell static void spidev_release(struct device *dev)
478ae12a0dSDavid Brownell {
480ffa0285SHans-Peter Nilsson 	struct spi_device	*spi = to_spi_device(dev);
498ae12a0dSDavid Brownell 
508caab75fSGeert Uytterhoeven 	spi_controller_put(spi->controller);
515039563eSTrent Piepho 	kfree(spi->driver_override);
5207a389feSRoman Tereshonkov 	kfree(spi);
538ae12a0dSDavid Brownell }
548ae12a0dSDavid Brownell 
558ae12a0dSDavid Brownell static ssize_t
568ae12a0dSDavid Brownell modalias_show(struct device *dev, struct device_attribute *a, char *buf)
578ae12a0dSDavid Brownell {
588ae12a0dSDavid Brownell 	const struct spi_device	*spi = to_spi_device(dev);
598c4ff6d0SZhang Rui 	int len;
608c4ff6d0SZhang Rui 
618c4ff6d0SZhang Rui 	len = acpi_device_modalias(dev, buf, PAGE_SIZE - 1);
628c4ff6d0SZhang Rui 	if (len != -ENODEV)
638c4ff6d0SZhang Rui 		return len;
648ae12a0dSDavid Brownell 
65d8e328b3SGrant Likely 	return sprintf(buf, "%s%s\n", SPI_MODULE_PREFIX, spi->modalias);
668ae12a0dSDavid Brownell }
67aa7da564SGreg Kroah-Hartman static DEVICE_ATTR_RO(modalias);
688ae12a0dSDavid Brownell 
695039563eSTrent Piepho static ssize_t driver_override_store(struct device *dev,
705039563eSTrent Piepho 				     struct device_attribute *a,
715039563eSTrent Piepho 				     const char *buf, size_t count)
725039563eSTrent Piepho {
735039563eSTrent Piepho 	struct spi_device *spi = to_spi_device(dev);
745039563eSTrent Piepho 	const char *end = memchr(buf, '\n', count);
755039563eSTrent Piepho 	const size_t len = end ? end - buf : count;
765039563eSTrent Piepho 	const char *driver_override, *old;
775039563eSTrent Piepho 
785039563eSTrent Piepho 	/* We need to keep extra room for a newline when displaying value */
795039563eSTrent Piepho 	if (len >= (PAGE_SIZE - 1))
805039563eSTrent Piepho 		return -EINVAL;
815039563eSTrent Piepho 
825039563eSTrent Piepho 	driver_override = kstrndup(buf, len, GFP_KERNEL);
835039563eSTrent Piepho 	if (!driver_override)
845039563eSTrent Piepho 		return -ENOMEM;
855039563eSTrent Piepho 
865039563eSTrent Piepho 	device_lock(dev);
875039563eSTrent Piepho 	old = spi->driver_override;
885039563eSTrent Piepho 	if (len) {
895039563eSTrent Piepho 		spi->driver_override = driver_override;
905039563eSTrent Piepho 	} else {
91be73e323SAndy Shevchenko 		/* Empty string, disable driver override */
925039563eSTrent Piepho 		spi->driver_override = NULL;
935039563eSTrent Piepho 		kfree(driver_override);
945039563eSTrent Piepho 	}
955039563eSTrent Piepho 	device_unlock(dev);
965039563eSTrent Piepho 	kfree(old);
975039563eSTrent Piepho 
985039563eSTrent Piepho 	return count;
995039563eSTrent Piepho }
1005039563eSTrent Piepho 
1015039563eSTrent Piepho static ssize_t driver_override_show(struct device *dev,
1025039563eSTrent Piepho 				    struct device_attribute *a, char *buf)
1035039563eSTrent Piepho {
1045039563eSTrent Piepho 	const struct spi_device *spi = to_spi_device(dev);
1055039563eSTrent Piepho 	ssize_t len;
1065039563eSTrent Piepho 
1075039563eSTrent Piepho 	device_lock(dev);
1085039563eSTrent Piepho 	len = snprintf(buf, PAGE_SIZE, "%s\n", spi->driver_override ? : "");
1095039563eSTrent Piepho 	device_unlock(dev);
1105039563eSTrent Piepho 	return len;
1115039563eSTrent Piepho }
1125039563eSTrent Piepho static DEVICE_ATTR_RW(driver_override);
1135039563eSTrent Piepho 
114eca2ebc7SMartin Sperl #define SPI_STATISTICS_ATTRS(field, file)				\
1158caab75fSGeert Uytterhoeven static ssize_t spi_controller_##field##_show(struct device *dev,	\
116eca2ebc7SMartin Sperl 					     struct device_attribute *attr, \
117eca2ebc7SMartin Sperl 					     char *buf)			\
118eca2ebc7SMartin Sperl {									\
1198caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = container_of(dev,			\
1208caab75fSGeert Uytterhoeven 					 struct spi_controller, dev);	\
1218caab75fSGeert Uytterhoeven 	return spi_statistics_##field##_show(&ctlr->statistics, buf);	\
122eca2ebc7SMartin Sperl }									\
1238caab75fSGeert Uytterhoeven static struct device_attribute dev_attr_spi_controller_##field = {	\
124ad25c92eSGeert Uytterhoeven 	.attr = { .name = file, .mode = 0444 },				\
1258caab75fSGeert Uytterhoeven 	.show = spi_controller_##field##_show,				\
126eca2ebc7SMartin Sperl };									\
127eca2ebc7SMartin Sperl static ssize_t spi_device_##field##_show(struct device *dev,		\
128eca2ebc7SMartin Sperl 					 struct device_attribute *attr,	\
129eca2ebc7SMartin Sperl 					char *buf)			\
130eca2ebc7SMartin Sperl {									\
131d1eba93bSGeliang Tang 	struct spi_device *spi = to_spi_device(dev);			\
132eca2ebc7SMartin Sperl 	return spi_statistics_##field##_show(&spi->statistics, buf);	\
133eca2ebc7SMartin Sperl }									\
134eca2ebc7SMartin Sperl static struct device_attribute dev_attr_spi_device_##field = {		\
135ad25c92eSGeert Uytterhoeven 	.attr = { .name = file, .mode = 0444 },				\
136eca2ebc7SMartin Sperl 	.show = spi_device_##field##_show,				\
137eca2ebc7SMartin Sperl }
138eca2ebc7SMartin Sperl 
139eca2ebc7SMartin Sperl #define SPI_STATISTICS_SHOW_NAME(name, file, field, format_string)	\
140eca2ebc7SMartin Sperl static ssize_t spi_statistics_##name##_show(struct spi_statistics *stat, \
141eca2ebc7SMartin Sperl 					    char *buf)			\
142eca2ebc7SMartin Sperl {									\
143eca2ebc7SMartin Sperl 	unsigned long flags;						\
144eca2ebc7SMartin Sperl 	ssize_t len;							\
145eca2ebc7SMartin Sperl 	spin_lock_irqsave(&stat->lock, flags);				\
146eca2ebc7SMartin Sperl 	len = sprintf(buf, format_string, stat->field);			\
147eca2ebc7SMartin Sperl 	spin_unlock_irqrestore(&stat->lock, flags);			\
148eca2ebc7SMartin Sperl 	return len;							\
149eca2ebc7SMartin Sperl }									\
150eca2ebc7SMartin Sperl SPI_STATISTICS_ATTRS(name, file)
151eca2ebc7SMartin Sperl 
152eca2ebc7SMartin Sperl #define SPI_STATISTICS_SHOW(field, format_string)			\
153eca2ebc7SMartin Sperl 	SPI_STATISTICS_SHOW_NAME(field, __stringify(field),		\
154eca2ebc7SMartin Sperl 				 field, format_string)
155eca2ebc7SMartin Sperl 
156eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(messages, "%lu");
157eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(transfers, "%lu");
158eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(errors, "%lu");
159eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(timedout, "%lu");
160eca2ebc7SMartin Sperl 
161eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(spi_sync, "%lu");
162eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(spi_sync_immediate, "%lu");
163eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(spi_async, "%lu");
164eca2ebc7SMartin Sperl 
165eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(bytes, "%llu");
166eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(bytes_rx, "%llu");
167eca2ebc7SMartin Sperl SPI_STATISTICS_SHOW(bytes_tx, "%llu");
168eca2ebc7SMartin Sperl 
1696b7bc061SMartin Sperl #define SPI_STATISTICS_TRANSFER_BYTES_HISTO(index, number)		\
1706b7bc061SMartin Sperl 	SPI_STATISTICS_SHOW_NAME(transfer_bytes_histo##index,		\
1716b7bc061SMartin Sperl 				 "transfer_bytes_histo_" number,	\
1726b7bc061SMartin Sperl 				 transfer_bytes_histo[index],  "%lu")
1736b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(0,  "0-1");
1746b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(1,  "2-3");
1756b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(2,  "4-7");
1766b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(3,  "8-15");
1776b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(4,  "16-31");
1786b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(5,  "32-63");
1796b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(6,  "64-127");
1806b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(7,  "128-255");
1816b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(8,  "256-511");
1826b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(9,  "512-1023");
1836b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(10, "1024-2047");
1846b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(11, "2048-4095");
1856b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(12, "4096-8191");
1866b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(13, "8192-16383");
1876b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(14, "16384-32767");
1886b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(15, "32768-65535");
1896b7bc061SMartin Sperl SPI_STATISTICS_TRANSFER_BYTES_HISTO(16, "65536+");
1906b7bc061SMartin Sperl 
191d9f12122SMartin Sperl SPI_STATISTICS_SHOW(transfers_split_maxsize, "%lu");
192d9f12122SMartin Sperl 
193aa7da564SGreg Kroah-Hartman static struct attribute *spi_dev_attrs[] = {
194aa7da564SGreg Kroah-Hartman 	&dev_attr_modalias.attr,
1955039563eSTrent Piepho 	&dev_attr_driver_override.attr,
196aa7da564SGreg Kroah-Hartman 	NULL,
1978ae12a0dSDavid Brownell };
198eca2ebc7SMartin Sperl 
199eca2ebc7SMartin Sperl static const struct attribute_group spi_dev_group = {
200eca2ebc7SMartin Sperl 	.attrs  = spi_dev_attrs,
201eca2ebc7SMartin Sperl };
202eca2ebc7SMartin Sperl 
203eca2ebc7SMartin Sperl static struct attribute *spi_device_statistics_attrs[] = {
204eca2ebc7SMartin Sperl 	&dev_attr_spi_device_messages.attr,
205eca2ebc7SMartin Sperl 	&dev_attr_spi_device_transfers.attr,
206eca2ebc7SMartin Sperl 	&dev_attr_spi_device_errors.attr,
207eca2ebc7SMartin Sperl 	&dev_attr_spi_device_timedout.attr,
208eca2ebc7SMartin Sperl 	&dev_attr_spi_device_spi_sync.attr,
209eca2ebc7SMartin Sperl 	&dev_attr_spi_device_spi_sync_immediate.attr,
210eca2ebc7SMartin Sperl 	&dev_attr_spi_device_spi_async.attr,
211eca2ebc7SMartin Sperl 	&dev_attr_spi_device_bytes.attr,
212eca2ebc7SMartin Sperl 	&dev_attr_spi_device_bytes_rx.attr,
213eca2ebc7SMartin Sperl 	&dev_attr_spi_device_bytes_tx.attr,
2146b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo0.attr,
2156b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo1.attr,
2166b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo2.attr,
2176b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo3.attr,
2186b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo4.attr,
2196b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo5.attr,
2206b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo6.attr,
2216b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo7.attr,
2226b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo8.attr,
2236b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo9.attr,
2246b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo10.attr,
2256b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo11.attr,
2266b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo12.attr,
2276b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo13.attr,
2286b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo14.attr,
2296b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo15.attr,
2306b7bc061SMartin Sperl 	&dev_attr_spi_device_transfer_bytes_histo16.attr,
231d9f12122SMartin Sperl 	&dev_attr_spi_device_transfers_split_maxsize.attr,
232eca2ebc7SMartin Sperl 	NULL,
233eca2ebc7SMartin Sperl };
234eca2ebc7SMartin Sperl 
235eca2ebc7SMartin Sperl static const struct attribute_group spi_device_statistics_group = {
236eca2ebc7SMartin Sperl 	.name  = "statistics",
237eca2ebc7SMartin Sperl 	.attrs  = spi_device_statistics_attrs,
238eca2ebc7SMartin Sperl };
239eca2ebc7SMartin Sperl 
240eca2ebc7SMartin Sperl static const struct attribute_group *spi_dev_groups[] = {
241eca2ebc7SMartin Sperl 	&spi_dev_group,
242eca2ebc7SMartin Sperl 	&spi_device_statistics_group,
243eca2ebc7SMartin Sperl 	NULL,
244eca2ebc7SMartin Sperl };
245eca2ebc7SMartin Sperl 
2468caab75fSGeert Uytterhoeven static struct attribute *spi_controller_statistics_attrs[] = {
2478caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_messages.attr,
2488caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfers.attr,
2498caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_errors.attr,
2508caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_timedout.attr,
2518caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_spi_sync.attr,
2528caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_spi_sync_immediate.attr,
2538caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_spi_async.attr,
2548caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_bytes.attr,
2558caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_bytes_rx.attr,
2568caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_bytes_tx.attr,
2578caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo0.attr,
2588caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo1.attr,
2598caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo2.attr,
2608caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo3.attr,
2618caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo4.attr,
2628caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo5.attr,
2638caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo6.attr,
2648caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo7.attr,
2658caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo8.attr,
2668caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo9.attr,
2678caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo10.attr,
2688caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo11.attr,
2698caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo12.attr,
2708caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo13.attr,
2718caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo14.attr,
2728caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo15.attr,
2738caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfer_bytes_histo16.attr,
2748caab75fSGeert Uytterhoeven 	&dev_attr_spi_controller_transfers_split_maxsize.attr,
275eca2ebc7SMartin Sperl 	NULL,
276eca2ebc7SMartin Sperl };
277eca2ebc7SMartin Sperl 
2788caab75fSGeert Uytterhoeven static const struct attribute_group spi_controller_statistics_group = {
279eca2ebc7SMartin Sperl 	.name  = "statistics",
2808caab75fSGeert Uytterhoeven 	.attrs  = spi_controller_statistics_attrs,
281eca2ebc7SMartin Sperl };
282eca2ebc7SMartin Sperl 
283eca2ebc7SMartin Sperl static const struct attribute_group *spi_master_groups[] = {
2848caab75fSGeert Uytterhoeven 	&spi_controller_statistics_group,
285eca2ebc7SMartin Sperl 	NULL,
286eca2ebc7SMartin Sperl };
287eca2ebc7SMartin Sperl 
288eca2ebc7SMartin Sperl void spi_statistics_add_transfer_stats(struct spi_statistics *stats,
289eca2ebc7SMartin Sperl 				       struct spi_transfer *xfer,
2908caab75fSGeert Uytterhoeven 				       struct spi_controller *ctlr)
291eca2ebc7SMartin Sperl {
292eca2ebc7SMartin Sperl 	unsigned long flags;
2936b7bc061SMartin Sperl 	int l2len = min(fls(xfer->len), SPI_STATISTICS_HISTO_SIZE) - 1;
2946b7bc061SMartin Sperl 
2956b7bc061SMartin Sperl 	if (l2len < 0)
2966b7bc061SMartin Sperl 		l2len = 0;
297eca2ebc7SMartin Sperl 
298eca2ebc7SMartin Sperl 	spin_lock_irqsave(&stats->lock, flags);
299eca2ebc7SMartin Sperl 
300eca2ebc7SMartin Sperl 	stats->transfers++;
3016b7bc061SMartin Sperl 	stats->transfer_bytes_histo[l2len]++;
302eca2ebc7SMartin Sperl 
303eca2ebc7SMartin Sperl 	stats->bytes += xfer->len;
304eca2ebc7SMartin Sperl 	if ((xfer->tx_buf) &&
3058caab75fSGeert Uytterhoeven 	    (xfer->tx_buf != ctlr->dummy_tx))
306eca2ebc7SMartin Sperl 		stats->bytes_tx += xfer->len;
307eca2ebc7SMartin Sperl 	if ((xfer->rx_buf) &&
3088caab75fSGeert Uytterhoeven 	    (xfer->rx_buf != ctlr->dummy_rx))
309eca2ebc7SMartin Sperl 		stats->bytes_rx += xfer->len;
310eca2ebc7SMartin Sperl 
311eca2ebc7SMartin Sperl 	spin_unlock_irqrestore(&stats->lock, flags);
312eca2ebc7SMartin Sperl }
313eca2ebc7SMartin Sperl EXPORT_SYMBOL_GPL(spi_statistics_add_transfer_stats);
3148ae12a0dSDavid Brownell 
3158ae12a0dSDavid Brownell /* modalias support makes "modprobe $MODALIAS" new-style hotplug work,
3168ae12a0dSDavid Brownell  * and the sysfs version makes coldplug work too.
3178ae12a0dSDavid Brownell  */
3188ae12a0dSDavid Brownell 
31975368bf6SAnton Vorontsov static const struct spi_device_id *spi_match_id(const struct spi_device_id *id,
32075368bf6SAnton Vorontsov 						const struct spi_device *sdev)
32175368bf6SAnton Vorontsov {
32275368bf6SAnton Vorontsov 	while (id->name[0]) {
32375368bf6SAnton Vorontsov 		if (!strcmp(sdev->modalias, id->name))
32475368bf6SAnton Vorontsov 			return id;
32575368bf6SAnton Vorontsov 		id++;
32675368bf6SAnton Vorontsov 	}
32775368bf6SAnton Vorontsov 	return NULL;
32875368bf6SAnton Vorontsov }
32975368bf6SAnton Vorontsov 
33075368bf6SAnton Vorontsov const struct spi_device_id *spi_get_device_id(const struct spi_device *sdev)
33175368bf6SAnton Vorontsov {
33275368bf6SAnton Vorontsov 	const struct spi_driver *sdrv = to_spi_driver(sdev->dev.driver);
33375368bf6SAnton Vorontsov 
33475368bf6SAnton Vorontsov 	return spi_match_id(sdrv->id_table, sdev);
33575368bf6SAnton Vorontsov }
33675368bf6SAnton Vorontsov EXPORT_SYMBOL_GPL(spi_get_device_id);
33775368bf6SAnton Vorontsov 
3388ae12a0dSDavid Brownell static int spi_match_device(struct device *dev, struct device_driver *drv)
3398ae12a0dSDavid Brownell {
3408ae12a0dSDavid Brownell 	const struct spi_device	*spi = to_spi_device(dev);
34175368bf6SAnton Vorontsov 	const struct spi_driver	*sdrv = to_spi_driver(drv);
34275368bf6SAnton Vorontsov 
3435039563eSTrent Piepho 	/* Check override first, and if set, only use the named driver */
3445039563eSTrent Piepho 	if (spi->driver_override)
3455039563eSTrent Piepho 		return strcmp(spi->driver_override, drv->name) == 0;
3465039563eSTrent Piepho 
3472b7a32f7SSinan Akman 	/* Attempt an OF style match */
3482b7a32f7SSinan Akman 	if (of_driver_match_device(dev, drv))
3492b7a32f7SSinan Akman 		return 1;
3502b7a32f7SSinan Akman 
35164bee4d2SMika Westerberg 	/* Then try ACPI */
35264bee4d2SMika Westerberg 	if (acpi_driver_match_device(dev, drv))
35364bee4d2SMika Westerberg 		return 1;
35464bee4d2SMika Westerberg 
35575368bf6SAnton Vorontsov 	if (sdrv->id_table)
35675368bf6SAnton Vorontsov 		return !!spi_match_id(sdrv->id_table, spi);
3578ae12a0dSDavid Brownell 
35835f74fcaSKay Sievers 	return strcmp(spi->modalias, drv->name) == 0;
3598ae12a0dSDavid Brownell }
3608ae12a0dSDavid Brownell 
3617eff2e7aSKay Sievers static int spi_uevent(struct device *dev, struct kobj_uevent_env *env)
3628ae12a0dSDavid Brownell {
3638ae12a0dSDavid Brownell 	const struct spi_device		*spi = to_spi_device(dev);
3648c4ff6d0SZhang Rui 	int rc;
3658c4ff6d0SZhang Rui 
3668c4ff6d0SZhang Rui 	rc = acpi_device_uevent_modalias(dev, env);
3678c4ff6d0SZhang Rui 	if (rc != -ENODEV)
3688c4ff6d0SZhang Rui 		return rc;
3698ae12a0dSDavid Brownell 
3702856670fSAndy Shevchenko 	return add_uevent_var(env, "MODALIAS=%s%s", SPI_MODULE_PREFIX, spi->modalias);
3718ae12a0dSDavid Brownell }
3728ae12a0dSDavid Brownell 
3739db34ee6SUwe Kleine-König static int spi_probe(struct device *dev)
374b885244eSDavid Brownell {
375b885244eSDavid Brownell 	const struct spi_driver		*sdrv = to_spi_driver(dev->driver);
37644af7927SJon Hunter 	struct spi_device		*spi = to_spi_device(dev);
37733cf00e5SMika Westerberg 	int ret;
378b885244eSDavid Brownell 
37986be408bSSylwester Nawrocki 	ret = of_clk_set_defaults(dev->of_node, false);
38086be408bSSylwester Nawrocki 	if (ret)
38186be408bSSylwester Nawrocki 		return ret;
38286be408bSSylwester Nawrocki 
38344af7927SJon Hunter 	if (dev->of_node) {
38444af7927SJon Hunter 		spi->irq = of_irq_get(dev->of_node, 0);
38544af7927SJon Hunter 		if (spi->irq == -EPROBE_DEFER)
38644af7927SJon Hunter 			return -EPROBE_DEFER;
38744af7927SJon Hunter 		if (spi->irq < 0)
38844af7927SJon Hunter 			spi->irq = 0;
38944af7927SJon Hunter 	}
39044af7927SJon Hunter 
391676e7c25SUlf Hansson 	ret = dev_pm_domain_attach(dev, true);
39271f277a7SUlf Hansson 	if (ret)
39371f277a7SUlf Hansson 		return ret;
39471f277a7SUlf Hansson 
395440408dbSUwe Kleine-König 	if (sdrv->probe) {
39644af7927SJon Hunter 		ret = sdrv->probe(spi);
39733cf00e5SMika Westerberg 		if (ret)
398676e7c25SUlf Hansson 			dev_pm_domain_detach(dev, true);
399440408dbSUwe Kleine-König 	}
40033cf00e5SMika Westerberg 
40133cf00e5SMika Westerberg 	return ret;
402b885244eSDavid Brownell }
403b885244eSDavid Brownell 
4049db34ee6SUwe Kleine-König static int spi_remove(struct device *dev)
405b885244eSDavid Brownell {
406b885244eSDavid Brownell 	const struct spi_driver		*sdrv = to_spi_driver(dev->driver);
407b885244eSDavid Brownell 
4087795d475SUwe Kleine-König 	if (sdrv->remove) {
4097795d475SUwe Kleine-König 		int ret;
4107795d475SUwe Kleine-König 
411aec35f4eSJean Delvare 		ret = sdrv->remove(to_spi_device(dev));
4127795d475SUwe Kleine-König 		if (ret)
4137795d475SUwe Kleine-König 			dev_warn(dev,
4147795d475SUwe Kleine-König 				 "Failed to unbind driver (%pe), ignoring\n",
4157795d475SUwe Kleine-König 				 ERR_PTR(ret));
4167795d475SUwe Kleine-König 	}
4177795d475SUwe Kleine-König 
418676e7c25SUlf Hansson 	dev_pm_domain_detach(dev, true);
41933cf00e5SMika Westerberg 
4207795d475SUwe Kleine-König 	return 0;
421b885244eSDavid Brownell }
422b885244eSDavid Brownell 
4239db34ee6SUwe Kleine-König static void spi_shutdown(struct device *dev)
424b885244eSDavid Brownell {
425a6f483b2SMarek Szyprowski 	if (dev->driver) {
426b885244eSDavid Brownell 		const struct spi_driver	*sdrv = to_spi_driver(dev->driver);
427b885244eSDavid Brownell 
4289db34ee6SUwe Kleine-König 		if (sdrv->shutdown)
429b885244eSDavid Brownell 			sdrv->shutdown(to_spi_device(dev));
430b885244eSDavid Brownell 	}
431a6f483b2SMarek Szyprowski }
432b885244eSDavid Brownell 
4339db34ee6SUwe Kleine-König struct bus_type spi_bus_type = {
4349db34ee6SUwe Kleine-König 	.name		= "spi",
4359db34ee6SUwe Kleine-König 	.dev_groups	= spi_dev_groups,
4369db34ee6SUwe Kleine-König 	.match		= spi_match_device,
4379db34ee6SUwe Kleine-König 	.uevent		= spi_uevent,
4389db34ee6SUwe Kleine-König 	.probe		= spi_probe,
4399db34ee6SUwe Kleine-König 	.remove		= spi_remove,
4409db34ee6SUwe Kleine-König 	.shutdown	= spi_shutdown,
4419db34ee6SUwe Kleine-König };
4429db34ee6SUwe Kleine-König EXPORT_SYMBOL_GPL(spi_bus_type);
4439db34ee6SUwe Kleine-König 
44433e34dc6SDavid Brownell /**
445ca5d2485SAndrew F. Davis  * __spi_register_driver - register a SPI driver
44688c9321dSThierry Reding  * @owner: owner module of the driver to register
44733e34dc6SDavid Brownell  * @sdrv: the driver to register
44833e34dc6SDavid Brownell  * Context: can sleep
44997d56dc6SJavier Martinez Canillas  *
45097d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
45133e34dc6SDavid Brownell  */
452ca5d2485SAndrew F. Davis int __spi_register_driver(struct module *owner, struct spi_driver *sdrv)
453b885244eSDavid Brownell {
454ca5d2485SAndrew F. Davis 	sdrv->driver.owner = owner;
455b885244eSDavid Brownell 	sdrv->driver.bus = &spi_bus_type;
456b885244eSDavid Brownell 	return driver_register(&sdrv->driver);
457b885244eSDavid Brownell }
458ca5d2485SAndrew F. Davis EXPORT_SYMBOL_GPL(__spi_register_driver);
459b885244eSDavid Brownell 
4608ae12a0dSDavid Brownell /*-------------------------------------------------------------------------*/
4618ae12a0dSDavid Brownell 
4628ae12a0dSDavid Brownell /* SPI devices should normally not be created by SPI device drivers; that
4638caab75fSGeert Uytterhoeven  * would make them board-specific.  Similarly with SPI controller drivers.
4648ae12a0dSDavid Brownell  * Device registration normally goes into like arch/.../mach.../board-YYY.c
4658ae12a0dSDavid Brownell  * with other readonly (flashable) information about mainboard devices.
4668ae12a0dSDavid Brownell  */
4678ae12a0dSDavid Brownell 
4688ae12a0dSDavid Brownell struct boardinfo {
4698ae12a0dSDavid Brownell 	struct list_head	list;
4702b9603a0SFeng Tang 	struct spi_board_info	board_info;
4718ae12a0dSDavid Brownell };
4728ae12a0dSDavid Brownell 
4738ae12a0dSDavid Brownell static LIST_HEAD(board_list);
4748caab75fSGeert Uytterhoeven static LIST_HEAD(spi_controller_list);
4752b9603a0SFeng Tang 
4762b9603a0SFeng Tang /*
477be73e323SAndy Shevchenko  * Used to protect add/del operation for board_info list and
4788caab75fSGeert Uytterhoeven  * spi_controller list, and their matching process
4799b61e302SSuniel Mahesh  * also used to protect object of type struct idr
4802b9603a0SFeng Tang  */
48194040828SMatthias Kaehlcke static DEFINE_MUTEX(board_lock);
4828ae12a0dSDavid Brownell 
483ddf75be4SLukas Wunner /*
484ddf75be4SLukas Wunner  * Prevents addition of devices with same chip select and
485ddf75be4SLukas Wunner  * addition of devices below an unregistering controller.
486ddf75be4SLukas Wunner  */
487ddf75be4SLukas Wunner static DEFINE_MUTEX(spi_add_lock);
488ddf75be4SLukas Wunner 
489dc87c98eSGrant Likely /**
490dc87c98eSGrant Likely  * spi_alloc_device - Allocate a new SPI device
4918caab75fSGeert Uytterhoeven  * @ctlr: Controller to which device is connected
492dc87c98eSGrant Likely  * Context: can sleep
493dc87c98eSGrant Likely  *
494dc87c98eSGrant Likely  * Allows a driver to allocate and initialize a spi_device without
495dc87c98eSGrant Likely  * registering it immediately.  This allows a driver to directly
496dc87c98eSGrant Likely  * fill the spi_device with device parameters before calling
497dc87c98eSGrant Likely  * spi_add_device() on it.
498dc87c98eSGrant Likely  *
499dc87c98eSGrant Likely  * Caller is responsible to call spi_add_device() on the returned
5008caab75fSGeert Uytterhoeven  * spi_device structure to add it to the SPI controller.  If the caller
501dc87c98eSGrant Likely  * needs to discard the spi_device without adding it, then it should
502dc87c98eSGrant Likely  * call spi_dev_put() on it.
503dc87c98eSGrant Likely  *
50497d56dc6SJavier Martinez Canillas  * Return: a pointer to the new device, or NULL.
505dc87c98eSGrant Likely  */
5068caab75fSGeert Uytterhoeven struct spi_device *spi_alloc_device(struct spi_controller *ctlr)
507dc87c98eSGrant Likely {
508dc87c98eSGrant Likely 	struct spi_device	*spi;
509dc87c98eSGrant Likely 
5108caab75fSGeert Uytterhoeven 	if (!spi_controller_get(ctlr))
511dc87c98eSGrant Likely 		return NULL;
512dc87c98eSGrant Likely 
5135fe5f05eSJingoo Han 	spi = kzalloc(sizeof(*spi), GFP_KERNEL);
514dc87c98eSGrant Likely 	if (!spi) {
5158caab75fSGeert Uytterhoeven 		spi_controller_put(ctlr);
516dc87c98eSGrant Likely 		return NULL;
517dc87c98eSGrant Likely 	}
518dc87c98eSGrant Likely 
5198caab75fSGeert Uytterhoeven 	spi->master = spi->controller = ctlr;
5208caab75fSGeert Uytterhoeven 	spi->dev.parent = &ctlr->dev;
521dc87c98eSGrant Likely 	spi->dev.bus = &spi_bus_type;
522dc87c98eSGrant Likely 	spi->dev.release = spidev_release;
523446411e1SAndreas Larsson 	spi->cs_gpio = -ENOENT;
524ea235786SJohn Garry 	spi->mode = ctlr->buswidth_override_bits;
525eca2ebc7SMartin Sperl 
526eca2ebc7SMartin Sperl 	spin_lock_init(&spi->statistics.lock);
527eca2ebc7SMartin Sperl 
528dc87c98eSGrant Likely 	device_initialize(&spi->dev);
529dc87c98eSGrant Likely 	return spi;
530dc87c98eSGrant Likely }
531dc87c98eSGrant Likely EXPORT_SYMBOL_GPL(spi_alloc_device);
532dc87c98eSGrant Likely 
533e13ac47bSJarkko Nikula static void spi_dev_set_name(struct spi_device *spi)
534e13ac47bSJarkko Nikula {
535e13ac47bSJarkko Nikula 	struct acpi_device *adev = ACPI_COMPANION(&spi->dev);
536e13ac47bSJarkko Nikula 
537e13ac47bSJarkko Nikula 	if (adev) {
538e13ac47bSJarkko Nikula 		dev_set_name(&spi->dev, "spi-%s", acpi_dev_name(adev));
539e13ac47bSJarkko Nikula 		return;
540e13ac47bSJarkko Nikula 	}
541e13ac47bSJarkko Nikula 
5428caab75fSGeert Uytterhoeven 	dev_set_name(&spi->dev, "%s.%u", dev_name(&spi->controller->dev),
543e13ac47bSJarkko Nikula 		     spi->chip_select);
544e13ac47bSJarkko Nikula }
545e13ac47bSJarkko Nikula 
546b6fb8d3aSMika Westerberg static int spi_dev_check(struct device *dev, void *data)
547b6fb8d3aSMika Westerberg {
548b6fb8d3aSMika Westerberg 	struct spi_device *spi = to_spi_device(dev);
549b6fb8d3aSMika Westerberg 	struct spi_device *new_spi = data;
550b6fb8d3aSMika Westerberg 
5518caab75fSGeert Uytterhoeven 	if (spi->controller == new_spi->controller &&
552b6fb8d3aSMika Westerberg 	    spi->chip_select == new_spi->chip_select)
553b6fb8d3aSMika Westerberg 		return -EBUSY;
554b6fb8d3aSMika Westerberg 	return 0;
555b6fb8d3aSMika Westerberg }
556b6fb8d3aSMika Westerberg 
557c7299feaSSaravana Kannan static void spi_cleanup(struct spi_device *spi)
558c7299feaSSaravana Kannan {
559c7299feaSSaravana Kannan 	if (spi->controller->cleanup)
560c7299feaSSaravana Kannan 		spi->controller->cleanup(spi);
561c7299feaSSaravana Kannan }
562c7299feaSSaravana Kannan 
563dc87c98eSGrant Likely /**
564dc87c98eSGrant Likely  * spi_add_device - Add spi_device allocated with spi_alloc_device
565dc87c98eSGrant Likely  * @spi: spi_device to register
566dc87c98eSGrant Likely  *
567dc87c98eSGrant Likely  * Companion function to spi_alloc_device.  Devices allocated with
568dc87c98eSGrant Likely  * spi_alloc_device can be added onto the spi bus with this function.
569dc87c98eSGrant Likely  *
57097d56dc6SJavier Martinez Canillas  * Return: 0 on success; negative errno on failure
571dc87c98eSGrant Likely  */
572dc87c98eSGrant Likely int spi_add_device(struct spi_device *spi)
573dc87c98eSGrant Likely {
5748caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
5758caab75fSGeert Uytterhoeven 	struct device *dev = ctlr->dev.parent;
576dc87c98eSGrant Likely 	int status;
577dc87c98eSGrant Likely 
578dc87c98eSGrant Likely 	/* Chipselects are numbered 0..max; validate. */
5798caab75fSGeert Uytterhoeven 	if (spi->chip_select >= ctlr->num_chipselect) {
5808caab75fSGeert Uytterhoeven 		dev_err(dev, "cs%d >= max %d\n", spi->chip_select,
5818caab75fSGeert Uytterhoeven 			ctlr->num_chipselect);
582dc87c98eSGrant Likely 		return -EINVAL;
583dc87c98eSGrant Likely 	}
584dc87c98eSGrant Likely 
585dc87c98eSGrant Likely 	/* Set the bus ID string */
586e13ac47bSJarkko Nikula 	spi_dev_set_name(spi);
587e48880e0SDavid Brownell 
588e48880e0SDavid Brownell 	/* We need to make sure there's no other device with this
589e48880e0SDavid Brownell 	 * chipselect **BEFORE** we call setup(), else we'll trash
590e48880e0SDavid Brownell 	 * its configuration.  Lock against concurrent add() calls.
591e48880e0SDavid Brownell 	 */
592e48880e0SDavid Brownell 	mutex_lock(&spi_add_lock);
593e48880e0SDavid Brownell 
594b6fb8d3aSMika Westerberg 	status = bus_for_each_dev(&spi_bus_type, NULL, spi, spi_dev_check);
595b6fb8d3aSMika Westerberg 	if (status) {
596e48880e0SDavid Brownell 		dev_err(dev, "chipselect %d already in use\n",
597e48880e0SDavid Brownell 				spi->chip_select);
598e48880e0SDavid Brownell 		goto done;
599e48880e0SDavid Brownell 	}
600e48880e0SDavid Brownell 
601ddf75be4SLukas Wunner 	/* Controller may unregister concurrently */
602ddf75be4SLukas Wunner 	if (IS_ENABLED(CONFIG_SPI_DYNAMIC) &&
603ddf75be4SLukas Wunner 	    !device_is_registered(&ctlr->dev)) {
604ddf75be4SLukas Wunner 		status = -ENODEV;
605ddf75be4SLukas Wunner 		goto done;
606ddf75be4SLukas Wunner 	}
607ddf75be4SLukas Wunner 
608f3186dd8SLinus Walleij 	/* Descriptors take precedence */
609f3186dd8SLinus Walleij 	if (ctlr->cs_gpiods)
610f3186dd8SLinus Walleij 		spi->cs_gpiod = ctlr->cs_gpiods[spi->chip_select];
611f3186dd8SLinus Walleij 	else if (ctlr->cs_gpios)
6128caab75fSGeert Uytterhoeven 		spi->cs_gpio = ctlr->cs_gpios[spi->chip_select];
61374317984SJean-Christophe PLAGNIOL-VILLARD 
614e48880e0SDavid Brownell 	/* Drivers may modify this initial i/o setup, but will
615e48880e0SDavid Brownell 	 * normally rely on the device being setup.  Devices
616e48880e0SDavid Brownell 	 * using SPI_CS_HIGH can't coexist well otherwise...
617e48880e0SDavid Brownell 	 */
6187d077197SDavid Brownell 	status = spi_setup(spi);
619dc87c98eSGrant Likely 	if (status < 0) {
620eb288a1fSLinus Walleij 		dev_err(dev, "can't setup %s, status %d\n",
621eb288a1fSLinus Walleij 				dev_name(&spi->dev), status);
622e48880e0SDavid Brownell 		goto done;
623dc87c98eSGrant Likely 	}
624dc87c98eSGrant Likely 
625e48880e0SDavid Brownell 	/* Device may be bound to an active driver when this returns */
626dc87c98eSGrant Likely 	status = device_add(&spi->dev);
627c7299feaSSaravana Kannan 	if (status < 0) {
628eb288a1fSLinus Walleij 		dev_err(dev, "can't add %s, status %d\n",
629eb288a1fSLinus Walleij 				dev_name(&spi->dev), status);
630c7299feaSSaravana Kannan 		spi_cleanup(spi);
631c7299feaSSaravana Kannan 	} else {
63235f74fcaSKay Sievers 		dev_dbg(dev, "registered child %s\n", dev_name(&spi->dev));
633c7299feaSSaravana Kannan 	}
634e48880e0SDavid Brownell 
635e48880e0SDavid Brownell done:
636e48880e0SDavid Brownell 	mutex_unlock(&spi_add_lock);
637e48880e0SDavid Brownell 	return status;
638dc87c98eSGrant Likely }
639dc87c98eSGrant Likely EXPORT_SYMBOL_GPL(spi_add_device);
6408ae12a0dSDavid Brownell 
64133e34dc6SDavid Brownell /**
64233e34dc6SDavid Brownell  * spi_new_device - instantiate one new SPI device
6438caab75fSGeert Uytterhoeven  * @ctlr: Controller to which device is connected
64433e34dc6SDavid Brownell  * @chip: Describes the SPI device
64533e34dc6SDavid Brownell  * Context: can sleep
64633e34dc6SDavid Brownell  *
64733e34dc6SDavid Brownell  * On typical mainboards, this is purely internal; and it's not needed
6488ae12a0dSDavid Brownell  * after board init creates the hard-wired devices.  Some development
6498ae12a0dSDavid Brownell  * platforms may not be able to use spi_register_board_info though, and
6508ae12a0dSDavid Brownell  * this is exported so that for example a USB or parport based adapter
6518ae12a0dSDavid Brownell  * driver could add devices (which it would learn about out-of-band).
652082c8cb4SDavid Brownell  *
65397d56dc6SJavier Martinez Canillas  * Return: the new device, or NULL.
6548ae12a0dSDavid Brownell  */
6558caab75fSGeert Uytterhoeven struct spi_device *spi_new_device(struct spi_controller *ctlr,
656e9d5a461SAdrian Bunk 				  struct spi_board_info *chip)
6578ae12a0dSDavid Brownell {
6588ae12a0dSDavid Brownell 	struct spi_device	*proxy;
6598ae12a0dSDavid Brownell 	int			status;
6608ae12a0dSDavid Brownell 
661082c8cb4SDavid Brownell 	/* NOTE:  caller did any chip->bus_num checks necessary.
662082c8cb4SDavid Brownell 	 *
663082c8cb4SDavid Brownell 	 * Also, unless we change the return value convention to use
664082c8cb4SDavid Brownell 	 * error-or-pointer (not NULL-or-pointer), troubleshootability
665082c8cb4SDavid Brownell 	 * suggests syslogged diagnostics are best here (ugh).
666082c8cb4SDavid Brownell 	 */
667082c8cb4SDavid Brownell 
6688caab75fSGeert Uytterhoeven 	proxy = spi_alloc_device(ctlr);
669dc87c98eSGrant Likely 	if (!proxy)
6708ae12a0dSDavid Brownell 		return NULL;
6718ae12a0dSDavid Brownell 
672102eb975SGrant Likely 	WARN_ON(strlen(chip->modalias) >= sizeof(proxy->modalias));
673102eb975SGrant Likely 
6748ae12a0dSDavid Brownell 	proxy->chip_select = chip->chip_select;
6758ae12a0dSDavid Brownell 	proxy->max_speed_hz = chip->max_speed_hz;
676980a01c9SDavid Brownell 	proxy->mode = chip->mode;
6778ae12a0dSDavid Brownell 	proxy->irq = chip->irq;
678102eb975SGrant Likely 	strlcpy(proxy->modalias, chip->modalias, sizeof(proxy->modalias));
6798ae12a0dSDavid Brownell 	proxy->dev.platform_data = (void *) chip->platform_data;
6808ae12a0dSDavid Brownell 	proxy->controller_data = chip->controller_data;
6818ae12a0dSDavid Brownell 	proxy->controller_state = NULL;
6828ae12a0dSDavid Brownell 
68347afc77bSHeikki Krogerus 	if (chip->swnode) {
68447afc77bSHeikki Krogerus 		status = device_add_software_node(&proxy->dev, chip->swnode);
685826cf175SDmitry Torokhov 		if (status) {
6869d902c2aSColin Ian King 			dev_err(&ctlr->dev, "failed to add software node to '%s': %d\n",
687826cf175SDmitry Torokhov 				chip->modalias, status);
688826cf175SDmitry Torokhov 			goto err_dev_put;
689826cf175SDmitry Torokhov 		}
6908ae12a0dSDavid Brownell 	}
691dc87c98eSGrant Likely 
692826cf175SDmitry Torokhov 	status = spi_add_device(proxy);
693826cf175SDmitry Torokhov 	if (status < 0)
694df41a5daSHeikki Krogerus 		goto err_dev_put;
695826cf175SDmitry Torokhov 
696dc87c98eSGrant Likely 	return proxy;
697826cf175SDmitry Torokhov 
698826cf175SDmitry Torokhov err_dev_put:
699df41a5daSHeikki Krogerus 	device_remove_software_node(&proxy->dev);
700826cf175SDmitry Torokhov 	spi_dev_put(proxy);
701826cf175SDmitry Torokhov 	return NULL;
702dc87c98eSGrant Likely }
7038ae12a0dSDavid Brownell EXPORT_SYMBOL_GPL(spi_new_device);
7048ae12a0dSDavid Brownell 
7053b1884c2SGeert Uytterhoeven /**
7063b1884c2SGeert Uytterhoeven  * spi_unregister_device - unregister a single SPI device
7073b1884c2SGeert Uytterhoeven  * @spi: spi_device to unregister
7083b1884c2SGeert Uytterhoeven  *
7093b1884c2SGeert Uytterhoeven  * Start making the passed SPI device vanish. Normally this would be handled
7108caab75fSGeert Uytterhoeven  * by spi_unregister_controller().
7113b1884c2SGeert Uytterhoeven  */
7123b1884c2SGeert Uytterhoeven void spi_unregister_device(struct spi_device *spi)
7133b1884c2SGeert Uytterhoeven {
714bd6c1644SGeert Uytterhoeven 	if (!spi)
715bd6c1644SGeert Uytterhoeven 		return;
716bd6c1644SGeert Uytterhoeven 
717c7299feaSSaravana Kannan 	spi_cleanup(spi);
718c7299feaSSaravana Kannan 
7198324147fSJohan Hovold 	if (spi->dev.of_node) {
720bd6c1644SGeert Uytterhoeven 		of_node_clear_flag(spi->dev.of_node, OF_POPULATED);
7218324147fSJohan Hovold 		of_node_put(spi->dev.of_node);
7228324147fSJohan Hovold 	}
7237f24467fSOctavian Purdila 	if (ACPI_COMPANION(&spi->dev))
7247f24467fSOctavian Purdila 		acpi_device_clear_enumerated(ACPI_COMPANION(&spi->dev));
72547afc77bSHeikki Krogerus 	device_remove_software_node(&spi->dev);
7263b1884c2SGeert Uytterhoeven 	device_unregister(&spi->dev);
7273b1884c2SGeert Uytterhoeven }
7283b1884c2SGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_unregister_device);
7293b1884c2SGeert Uytterhoeven 
7308caab75fSGeert Uytterhoeven static void spi_match_controller_to_boardinfo(struct spi_controller *ctlr,
7312b9603a0SFeng Tang 					      struct spi_board_info *bi)
7322b9603a0SFeng Tang {
7332b9603a0SFeng Tang 	struct spi_device *dev;
7342b9603a0SFeng Tang 
7358caab75fSGeert Uytterhoeven 	if (ctlr->bus_num != bi->bus_num)
7362b9603a0SFeng Tang 		return;
7372b9603a0SFeng Tang 
7388caab75fSGeert Uytterhoeven 	dev = spi_new_device(ctlr, bi);
7392b9603a0SFeng Tang 	if (!dev)
7408caab75fSGeert Uytterhoeven 		dev_err(ctlr->dev.parent, "can't create new device for %s\n",
7412b9603a0SFeng Tang 			bi->modalias);
7422b9603a0SFeng Tang }
7432b9603a0SFeng Tang 
74433e34dc6SDavid Brownell /**
74533e34dc6SDavid Brownell  * spi_register_board_info - register SPI devices for a given board
74633e34dc6SDavid Brownell  * @info: array of chip descriptors
74733e34dc6SDavid Brownell  * @n: how many descriptors are provided
74833e34dc6SDavid Brownell  * Context: can sleep
74933e34dc6SDavid Brownell  *
7508ae12a0dSDavid Brownell  * Board-specific early init code calls this (probably during arch_initcall)
7518ae12a0dSDavid Brownell  * with segments of the SPI device table.  Any device nodes are created later,
7528ae12a0dSDavid Brownell  * after the relevant parent SPI controller (bus_num) is defined.  We keep
7538ae12a0dSDavid Brownell  * this table of devices forever, so that reloading a controller driver will
7548ae12a0dSDavid Brownell  * not make Linux forget about these hard-wired devices.
7558ae12a0dSDavid Brownell  *
7568ae12a0dSDavid Brownell  * Other code can also call this, e.g. a particular add-on board might provide
7578ae12a0dSDavid Brownell  * SPI devices through its expansion connector, so code initializing that board
7588ae12a0dSDavid Brownell  * would naturally declare its SPI devices.
7598ae12a0dSDavid Brownell  *
7608ae12a0dSDavid Brownell  * The board info passed can safely be __initdata ... but be careful of
7618ae12a0dSDavid Brownell  * any embedded pointers (platform_data, etc), they're copied as-is.
76297d56dc6SJavier Martinez Canillas  *
76397d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
7648ae12a0dSDavid Brownell  */
765fd4a319bSGrant Likely int spi_register_board_info(struct spi_board_info const *info, unsigned n)
7668ae12a0dSDavid Brownell {
7678ae12a0dSDavid Brownell 	struct boardinfo *bi;
7682b9603a0SFeng Tang 	int i;
7698ae12a0dSDavid Brownell 
770c7908a37SXiubo Li 	if (!n)
771f974cf57SDmitry Torokhov 		return 0;
772c7908a37SXiubo Li 
773f9bdb7fdSMarkus Elfring 	bi = kcalloc(n, sizeof(*bi), GFP_KERNEL);
7748ae12a0dSDavid Brownell 	if (!bi)
7758ae12a0dSDavid Brownell 		return -ENOMEM;
7768ae12a0dSDavid Brownell 
7772b9603a0SFeng Tang 	for (i = 0; i < n; i++, bi++, info++) {
7788caab75fSGeert Uytterhoeven 		struct spi_controller *ctlr;
7792b9603a0SFeng Tang 
7802b9603a0SFeng Tang 		memcpy(&bi->board_info, info, sizeof(*info));
781826cf175SDmitry Torokhov 
78294040828SMatthias Kaehlcke 		mutex_lock(&board_lock);
7838ae12a0dSDavid Brownell 		list_add_tail(&bi->list, &board_list);
7848caab75fSGeert Uytterhoeven 		list_for_each_entry(ctlr, &spi_controller_list, list)
7858caab75fSGeert Uytterhoeven 			spi_match_controller_to_boardinfo(ctlr,
7868caab75fSGeert Uytterhoeven 							  &bi->board_info);
78794040828SMatthias Kaehlcke 		mutex_unlock(&board_lock);
7882b9603a0SFeng Tang 	}
7892b9603a0SFeng Tang 
7908ae12a0dSDavid Brownell 	return 0;
7918ae12a0dSDavid Brownell }
7928ae12a0dSDavid Brownell 
7938ae12a0dSDavid Brownell /*-------------------------------------------------------------------------*/
7948ae12a0dSDavid Brownell 
795d347b4aaSDavid Bauer static void spi_set_cs(struct spi_device *spi, bool enable, bool force)
796b158935fSMark Brown {
79786527bcbSAndy Shevchenko 	bool activate = enable;
79825093bdeSAlexandru Ardelean 
799d40f0b6fSDouglas Anderson 	/*
800d40f0b6fSDouglas Anderson 	 * Avoid calling into the driver (or doing delays) if the chip select
801d40f0b6fSDouglas Anderson 	 * isn't actually changing from the last time this was called.
802d40f0b6fSDouglas Anderson 	 */
803d347b4aaSDavid Bauer 	if (!force && (spi->controller->last_cs_enable == enable) &&
804d40f0b6fSDouglas Anderson 	    (spi->controller->last_cs_mode_high == (spi->mode & SPI_CS_HIGH)))
805d40f0b6fSDouglas Anderson 		return;
806d40f0b6fSDouglas Anderson 
807d40f0b6fSDouglas Anderson 	spi->controller->last_cs_enable = enable;
808d40f0b6fSDouglas Anderson 	spi->controller->last_cs_mode_high = spi->mode & SPI_CS_HIGH;
809d40f0b6fSDouglas Anderson 
8100486d9f9Sleilk.liu 	if (spi->cs_gpiod || gpio_is_valid(spi->cs_gpio) ||
8110486d9f9Sleilk.liu 	    !spi->controller->set_cs_timing) {
81286527bcbSAndy Shevchenko 		if (activate)
81325093bdeSAlexandru Ardelean 			spi_delay_exec(&spi->controller->cs_setup, NULL);
81425093bdeSAlexandru Ardelean 		else
81525093bdeSAlexandru Ardelean 			spi_delay_exec(&spi->controller->cs_hold, NULL);
81625093bdeSAlexandru Ardelean 	}
81725093bdeSAlexandru Ardelean 
818b158935fSMark Brown 	if (spi->mode & SPI_CS_HIGH)
819b158935fSMark Brown 		enable = !enable;
820b158935fSMark Brown 
821f3186dd8SLinus Walleij 	if (spi->cs_gpiod || gpio_is_valid(spi->cs_gpio)) {
822f3186dd8SLinus Walleij 		if (!(spi->mode & SPI_NO_CS)) {
823f3186dd8SLinus Walleij 			if (spi->cs_gpiod)
824766c6b63SSven Van Asbroeck 				/* polarity handled by gpiolib */
82586527bcbSAndy Shevchenko 				gpiod_set_value_cansleep(spi->cs_gpiod, activate);
826f3186dd8SLinus Walleij 			else
827766c6b63SSven Van Asbroeck 				/*
828766c6b63SSven Van Asbroeck 				 * invert the enable line, as active low is
829766c6b63SSven Van Asbroeck 				 * default for SPI.
830766c6b63SSven Van Asbroeck 				 */
83128f7604fSFelix Fietkau 				gpio_set_value_cansleep(spi->cs_gpio, !enable);
832f3186dd8SLinus Walleij 		}
8338eee6b9dSThor Thayer 		/* Some SPI masters need both GPIO CS & slave_select */
8348caab75fSGeert Uytterhoeven 		if ((spi->controller->flags & SPI_MASTER_GPIO_SS) &&
8358caab75fSGeert Uytterhoeven 		    spi->controller->set_cs)
8368caab75fSGeert Uytterhoeven 			spi->controller->set_cs(spi, !enable);
8378caab75fSGeert Uytterhoeven 	} else if (spi->controller->set_cs) {
8388caab75fSGeert Uytterhoeven 		spi->controller->set_cs(spi, !enable);
8398eee6b9dSThor Thayer 	}
84025093bdeSAlexandru Ardelean 
8410486d9f9Sleilk.liu 	if (spi->cs_gpiod || gpio_is_valid(spi->cs_gpio) ||
8420486d9f9Sleilk.liu 	    !spi->controller->set_cs_timing) {
84386527bcbSAndy Shevchenko 		if (!activate)
84425093bdeSAlexandru Ardelean 			spi_delay_exec(&spi->controller->cs_inactive, NULL);
84525093bdeSAlexandru Ardelean 	}
846b158935fSMark Brown }
847b158935fSMark Brown 
8482de440f5SGeert Uytterhoeven #ifdef CONFIG_HAS_DMA
84946336966SBoris Brezillon int spi_map_buf(struct spi_controller *ctlr, struct device *dev,
8506ad45a27SMark Brown 		struct sg_table *sgt, void *buf, size_t len,
8516ad45a27SMark Brown 		enum dma_data_direction dir)
8526ad45a27SMark Brown {
8536ad45a27SMark Brown 	const bool vmalloced_buf = is_vmalloc_addr(buf);
854df88e91bSAndy Shevchenko 	unsigned int max_seg_size = dma_get_max_seg_size(dev);
855b1b8153cSVignesh R #ifdef CONFIG_HIGHMEM
856b1b8153cSVignesh R 	const bool kmap_buf = ((unsigned long)buf >= PKMAP_BASE &&
857b1b8153cSVignesh R 				(unsigned long)buf < (PKMAP_BASE +
858b1b8153cSVignesh R 					(LAST_PKMAP * PAGE_SIZE)));
859b1b8153cSVignesh R #else
860b1b8153cSVignesh R 	const bool kmap_buf = false;
861b1b8153cSVignesh R #endif
86265598c13SAndrew Gabbasov 	int desc_len;
86365598c13SAndrew Gabbasov 	int sgs;
8646ad45a27SMark Brown 	struct page *vm_page;
8658dd4a016SJuan Gutierrez 	struct scatterlist *sg;
8666ad45a27SMark Brown 	void *sg_buf;
8676ad45a27SMark Brown 	size_t min;
8686ad45a27SMark Brown 	int i, ret;
8696ad45a27SMark Brown 
870b1b8153cSVignesh R 	if (vmalloced_buf || kmap_buf) {
871df88e91bSAndy Shevchenko 		desc_len = min_t(int, max_seg_size, PAGE_SIZE);
87265598c13SAndrew Gabbasov 		sgs = DIV_ROUND_UP(len + offset_in_page(buf), desc_len);
8730569a88fSVignesh R 	} else if (virt_addr_valid(buf)) {
8748caab75fSGeert Uytterhoeven 		desc_len = min_t(int, max_seg_size, ctlr->max_dma_len);
87565598c13SAndrew Gabbasov 		sgs = DIV_ROUND_UP(len, desc_len);
8760569a88fSVignesh R 	} else {
8770569a88fSVignesh R 		return -EINVAL;
87865598c13SAndrew Gabbasov 	}
87965598c13SAndrew Gabbasov 
8806ad45a27SMark Brown 	ret = sg_alloc_table(sgt, sgs, GFP_KERNEL);
8816ad45a27SMark Brown 	if (ret != 0)
8826ad45a27SMark Brown 		return ret;
8836ad45a27SMark Brown 
8848dd4a016SJuan Gutierrez 	sg = &sgt->sgl[0];
8856ad45a27SMark Brown 	for (i = 0; i < sgs; i++) {
8866ad45a27SMark Brown 
887b1b8153cSVignesh R 		if (vmalloced_buf || kmap_buf) {
888ce99319aSMaxime Chevallier 			/*
889ce99319aSMaxime Chevallier 			 * Next scatterlist entry size is the minimum between
890ce99319aSMaxime Chevallier 			 * the desc_len and the remaining buffer length that
891ce99319aSMaxime Chevallier 			 * fits in a page.
892ce99319aSMaxime Chevallier 			 */
893ce99319aSMaxime Chevallier 			min = min_t(size_t, desc_len,
894ce99319aSMaxime Chevallier 				    min_t(size_t, len,
895ce99319aSMaxime Chevallier 					  PAGE_SIZE - offset_in_page(buf)));
896b1b8153cSVignesh R 			if (vmalloced_buf)
8976ad45a27SMark Brown 				vm_page = vmalloc_to_page(buf);
898b1b8153cSVignesh R 			else
899b1b8153cSVignesh R 				vm_page = kmap_to_page(buf);
9006ad45a27SMark Brown 			if (!vm_page) {
9016ad45a27SMark Brown 				sg_free_table(sgt);
9026ad45a27SMark Brown 				return -ENOMEM;
9036ad45a27SMark Brown 			}
9048dd4a016SJuan Gutierrez 			sg_set_page(sg, vm_page,
905c1aefbddSCharles Keepax 				    min, offset_in_page(buf));
9066ad45a27SMark Brown 		} else {
90765598c13SAndrew Gabbasov 			min = min_t(size_t, len, desc_len);
9086ad45a27SMark Brown 			sg_buf = buf;
9098dd4a016SJuan Gutierrez 			sg_set_buf(sg, sg_buf, min);
9106ad45a27SMark Brown 		}
9116ad45a27SMark Brown 
9126ad45a27SMark Brown 		buf += min;
9136ad45a27SMark Brown 		len -= min;
9148dd4a016SJuan Gutierrez 		sg = sg_next(sg);
9156ad45a27SMark Brown 	}
9166ad45a27SMark Brown 
9176ad45a27SMark Brown 	ret = dma_map_sg(dev, sgt->sgl, sgt->nents, dir);
91889e4b66aSGeert Uytterhoeven 	if (!ret)
91989e4b66aSGeert Uytterhoeven 		ret = -ENOMEM;
9206ad45a27SMark Brown 	if (ret < 0) {
9216ad45a27SMark Brown 		sg_free_table(sgt);
9226ad45a27SMark Brown 		return ret;
9236ad45a27SMark Brown 	}
9246ad45a27SMark Brown 
9256ad45a27SMark Brown 	sgt->nents = ret;
9266ad45a27SMark Brown 
9276ad45a27SMark Brown 	return 0;
9286ad45a27SMark Brown }
9296ad45a27SMark Brown 
93046336966SBoris Brezillon void spi_unmap_buf(struct spi_controller *ctlr, struct device *dev,
9316ad45a27SMark Brown 		   struct sg_table *sgt, enum dma_data_direction dir)
9326ad45a27SMark Brown {
9336ad45a27SMark Brown 	if (sgt->orig_nents) {
9346ad45a27SMark Brown 		dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
9356ad45a27SMark Brown 		sg_free_table(sgt);
9366ad45a27SMark Brown 	}
9376ad45a27SMark Brown }
9386ad45a27SMark Brown 
9398caab75fSGeert Uytterhoeven static int __spi_map_msg(struct spi_controller *ctlr, struct spi_message *msg)
94099adef31SMark Brown {
94199adef31SMark Brown 	struct device *tx_dev, *rx_dev;
94299adef31SMark Brown 	struct spi_transfer *xfer;
9436ad45a27SMark Brown 	int ret;
9443a2eba9bSMark Brown 
9458caab75fSGeert Uytterhoeven 	if (!ctlr->can_dma)
94699adef31SMark Brown 		return 0;
94799adef31SMark Brown 
9488caab75fSGeert Uytterhoeven 	if (ctlr->dma_tx)
9498caab75fSGeert Uytterhoeven 		tx_dev = ctlr->dma_tx->device->dev;
950c37f45b5SLeilk Liu 	else
9518caab75fSGeert Uytterhoeven 		tx_dev = ctlr->dev.parent;
952c37f45b5SLeilk Liu 
9538caab75fSGeert Uytterhoeven 	if (ctlr->dma_rx)
9548caab75fSGeert Uytterhoeven 		rx_dev = ctlr->dma_rx->device->dev;
955c37f45b5SLeilk Liu 	else
9568caab75fSGeert Uytterhoeven 		rx_dev = ctlr->dev.parent;
95799adef31SMark Brown 
95899adef31SMark Brown 	list_for_each_entry(xfer, &msg->transfers, transfer_list) {
9598caab75fSGeert Uytterhoeven 		if (!ctlr->can_dma(ctlr, msg->spi, xfer))
96099adef31SMark Brown 			continue;
96199adef31SMark Brown 
96299adef31SMark Brown 		if (xfer->tx_buf != NULL) {
9638caab75fSGeert Uytterhoeven 			ret = spi_map_buf(ctlr, tx_dev, &xfer->tx_sg,
9646ad45a27SMark Brown 					  (void *)xfer->tx_buf, xfer->len,
96599adef31SMark Brown 					  DMA_TO_DEVICE);
9666ad45a27SMark Brown 			if (ret != 0)
9676ad45a27SMark Brown 				return ret;
96899adef31SMark Brown 		}
96999adef31SMark Brown 
97099adef31SMark Brown 		if (xfer->rx_buf != NULL) {
9718caab75fSGeert Uytterhoeven 			ret = spi_map_buf(ctlr, rx_dev, &xfer->rx_sg,
97299adef31SMark Brown 					  xfer->rx_buf, xfer->len,
97399adef31SMark Brown 					  DMA_FROM_DEVICE);
9746ad45a27SMark Brown 			if (ret != 0) {
9758caab75fSGeert Uytterhoeven 				spi_unmap_buf(ctlr, tx_dev, &xfer->tx_sg,
9766ad45a27SMark Brown 					      DMA_TO_DEVICE);
9776ad45a27SMark Brown 				return ret;
97899adef31SMark Brown 			}
97999adef31SMark Brown 		}
98099adef31SMark Brown 	}
98199adef31SMark Brown 
9828caab75fSGeert Uytterhoeven 	ctlr->cur_msg_mapped = true;
98399adef31SMark Brown 
98499adef31SMark Brown 	return 0;
98599adef31SMark Brown }
98699adef31SMark Brown 
9878caab75fSGeert Uytterhoeven static int __spi_unmap_msg(struct spi_controller *ctlr, struct spi_message *msg)
98899adef31SMark Brown {
98999adef31SMark Brown 	struct spi_transfer *xfer;
99099adef31SMark Brown 	struct device *tx_dev, *rx_dev;
99199adef31SMark Brown 
9928caab75fSGeert Uytterhoeven 	if (!ctlr->cur_msg_mapped || !ctlr->can_dma)
99399adef31SMark Brown 		return 0;
99499adef31SMark Brown 
9958caab75fSGeert Uytterhoeven 	if (ctlr->dma_tx)
9968caab75fSGeert Uytterhoeven 		tx_dev = ctlr->dma_tx->device->dev;
997c37f45b5SLeilk Liu 	else
9988caab75fSGeert Uytterhoeven 		tx_dev = ctlr->dev.parent;
999c37f45b5SLeilk Liu 
10008caab75fSGeert Uytterhoeven 	if (ctlr->dma_rx)
10018caab75fSGeert Uytterhoeven 		rx_dev = ctlr->dma_rx->device->dev;
1002c37f45b5SLeilk Liu 	else
10038caab75fSGeert Uytterhoeven 		rx_dev = ctlr->dev.parent;
100499adef31SMark Brown 
100599adef31SMark Brown 	list_for_each_entry(xfer, &msg->transfers, transfer_list) {
10068caab75fSGeert Uytterhoeven 		if (!ctlr->can_dma(ctlr, msg->spi, xfer))
100799adef31SMark Brown 			continue;
100899adef31SMark Brown 
10098caab75fSGeert Uytterhoeven 		spi_unmap_buf(ctlr, rx_dev, &xfer->rx_sg, DMA_FROM_DEVICE);
10108caab75fSGeert Uytterhoeven 		spi_unmap_buf(ctlr, tx_dev, &xfer->tx_sg, DMA_TO_DEVICE);
101199adef31SMark Brown 	}
101299adef31SMark Brown 
1013809b1b04SRobin Gong 	ctlr->cur_msg_mapped = false;
1014809b1b04SRobin Gong 
101599adef31SMark Brown 	return 0;
101699adef31SMark Brown }
10172de440f5SGeert Uytterhoeven #else /* !CONFIG_HAS_DMA */
10188caab75fSGeert Uytterhoeven static inline int __spi_map_msg(struct spi_controller *ctlr,
10192de440f5SGeert Uytterhoeven 				struct spi_message *msg)
10202de440f5SGeert Uytterhoeven {
10212de440f5SGeert Uytterhoeven 	return 0;
10222de440f5SGeert Uytterhoeven }
10232de440f5SGeert Uytterhoeven 
10248caab75fSGeert Uytterhoeven static inline int __spi_unmap_msg(struct spi_controller *ctlr,
10252de440f5SGeert Uytterhoeven 				  struct spi_message *msg)
10262de440f5SGeert Uytterhoeven {
10272de440f5SGeert Uytterhoeven 	return 0;
10282de440f5SGeert Uytterhoeven }
10292de440f5SGeert Uytterhoeven #endif /* !CONFIG_HAS_DMA */
10302de440f5SGeert Uytterhoeven 
10318caab75fSGeert Uytterhoeven static inline int spi_unmap_msg(struct spi_controller *ctlr,
10324b786458SMartin Sperl 				struct spi_message *msg)
10334b786458SMartin Sperl {
10344b786458SMartin Sperl 	struct spi_transfer *xfer;
10354b786458SMartin Sperl 
10364b786458SMartin Sperl 	list_for_each_entry(xfer, &msg->transfers, transfer_list) {
10374b786458SMartin Sperl 		/*
10384b786458SMartin Sperl 		 * Restore the original value of tx_buf or rx_buf if they are
10394b786458SMartin Sperl 		 * NULL.
10404b786458SMartin Sperl 		 */
10418caab75fSGeert Uytterhoeven 		if (xfer->tx_buf == ctlr->dummy_tx)
10424b786458SMartin Sperl 			xfer->tx_buf = NULL;
10438caab75fSGeert Uytterhoeven 		if (xfer->rx_buf == ctlr->dummy_rx)
10444b786458SMartin Sperl 			xfer->rx_buf = NULL;
10454b786458SMartin Sperl 	}
10464b786458SMartin Sperl 
10478caab75fSGeert Uytterhoeven 	return __spi_unmap_msg(ctlr, msg);
10484b786458SMartin Sperl }
10494b786458SMartin Sperl 
10508caab75fSGeert Uytterhoeven static int spi_map_msg(struct spi_controller *ctlr, struct spi_message *msg)
10512de440f5SGeert Uytterhoeven {
10522de440f5SGeert Uytterhoeven 	struct spi_transfer *xfer;
10532de440f5SGeert Uytterhoeven 	void *tmp;
10542de440f5SGeert Uytterhoeven 	unsigned int max_tx, max_rx;
10552de440f5SGeert Uytterhoeven 
1056aee67fe8Sdillon min 	if ((ctlr->flags & (SPI_CONTROLLER_MUST_RX | SPI_CONTROLLER_MUST_TX))
1057aee67fe8Sdillon min 		&& !(msg->spi->mode & SPI_3WIRE)) {
10582de440f5SGeert Uytterhoeven 		max_tx = 0;
10592de440f5SGeert Uytterhoeven 		max_rx = 0;
10602de440f5SGeert Uytterhoeven 
10612de440f5SGeert Uytterhoeven 		list_for_each_entry(xfer, &msg->transfers, transfer_list) {
10628caab75fSGeert Uytterhoeven 			if ((ctlr->flags & SPI_CONTROLLER_MUST_TX) &&
10632de440f5SGeert Uytterhoeven 			    !xfer->tx_buf)
10642de440f5SGeert Uytterhoeven 				max_tx = max(xfer->len, max_tx);
10658caab75fSGeert Uytterhoeven 			if ((ctlr->flags & SPI_CONTROLLER_MUST_RX) &&
10662de440f5SGeert Uytterhoeven 			    !xfer->rx_buf)
10672de440f5SGeert Uytterhoeven 				max_rx = max(xfer->len, max_rx);
10682de440f5SGeert Uytterhoeven 		}
10692de440f5SGeert Uytterhoeven 
10702de440f5SGeert Uytterhoeven 		if (max_tx) {
10718caab75fSGeert Uytterhoeven 			tmp = krealloc(ctlr->dummy_tx, max_tx,
10722de440f5SGeert Uytterhoeven 				       GFP_KERNEL | GFP_DMA);
10732de440f5SGeert Uytterhoeven 			if (!tmp)
10742de440f5SGeert Uytterhoeven 				return -ENOMEM;
10758caab75fSGeert Uytterhoeven 			ctlr->dummy_tx = tmp;
10762de440f5SGeert Uytterhoeven 			memset(tmp, 0, max_tx);
10772de440f5SGeert Uytterhoeven 		}
10782de440f5SGeert Uytterhoeven 
10792de440f5SGeert Uytterhoeven 		if (max_rx) {
10808caab75fSGeert Uytterhoeven 			tmp = krealloc(ctlr->dummy_rx, max_rx,
10812de440f5SGeert Uytterhoeven 				       GFP_KERNEL | GFP_DMA);
10822de440f5SGeert Uytterhoeven 			if (!tmp)
10832de440f5SGeert Uytterhoeven 				return -ENOMEM;
10848caab75fSGeert Uytterhoeven 			ctlr->dummy_rx = tmp;
10852de440f5SGeert Uytterhoeven 		}
10862de440f5SGeert Uytterhoeven 
10872de440f5SGeert Uytterhoeven 		if (max_tx || max_rx) {
10882de440f5SGeert Uytterhoeven 			list_for_each_entry(xfer, &msg->transfers,
10892de440f5SGeert Uytterhoeven 					    transfer_list) {
10905442dcaaSChris Lesiak 				if (!xfer->len)
10915442dcaaSChris Lesiak 					continue;
10922de440f5SGeert Uytterhoeven 				if (!xfer->tx_buf)
10938caab75fSGeert Uytterhoeven 					xfer->tx_buf = ctlr->dummy_tx;
10942de440f5SGeert Uytterhoeven 				if (!xfer->rx_buf)
10958caab75fSGeert Uytterhoeven 					xfer->rx_buf = ctlr->dummy_rx;
10962de440f5SGeert Uytterhoeven 			}
10972de440f5SGeert Uytterhoeven 		}
10982de440f5SGeert Uytterhoeven 	}
10992de440f5SGeert Uytterhoeven 
11008caab75fSGeert Uytterhoeven 	return __spi_map_msg(ctlr, msg);
11012de440f5SGeert Uytterhoeven }
110299adef31SMark Brown 
1103810923f3SLubomir Rintel static int spi_transfer_wait(struct spi_controller *ctlr,
1104810923f3SLubomir Rintel 			     struct spi_message *msg,
1105810923f3SLubomir Rintel 			     struct spi_transfer *xfer)
1106810923f3SLubomir Rintel {
1107810923f3SLubomir Rintel 	struct spi_statistics *statm = &ctlr->statistics;
1108810923f3SLubomir Rintel 	struct spi_statistics *stats = &msg->spi->statistics;
11096170d077SXu Yilun 	u32 speed_hz = xfer->speed_hz;
111049686df5SColin Ian King 	unsigned long long ms;
1111810923f3SLubomir Rintel 
1112810923f3SLubomir Rintel 	if (spi_controller_is_slave(ctlr)) {
1113810923f3SLubomir Rintel 		if (wait_for_completion_interruptible(&ctlr->xfer_completion)) {
1114810923f3SLubomir Rintel 			dev_dbg(&msg->spi->dev, "SPI transfer interrupted\n");
1115810923f3SLubomir Rintel 			return -EINTR;
1116810923f3SLubomir Rintel 		}
1117810923f3SLubomir Rintel 	} else {
11186170d077SXu Yilun 		if (!speed_hz)
11196170d077SXu Yilun 			speed_hz = 100000;
11206170d077SXu Yilun 
112186b8bff7SAndy Shevchenko 		/*
112286b8bff7SAndy Shevchenko 		 * For each byte we wait for 8 cycles of the SPI clock.
112386b8bff7SAndy Shevchenko 		 * Since speed is defined in Hz and we want milliseconds,
112486b8bff7SAndy Shevchenko 		 * use respective multiplier, but before the division,
112586b8bff7SAndy Shevchenko 		 * otherwise we may get 0 for short transfers.
112686b8bff7SAndy Shevchenko 		 */
112786b8bff7SAndy Shevchenko 		ms = 8LL * MSEC_PER_SEC * xfer->len;
11286170d077SXu Yilun 		do_div(ms, speed_hz);
1129810923f3SLubomir Rintel 
113086b8bff7SAndy Shevchenko 		/*
113186b8bff7SAndy Shevchenko 		 * Increase it twice and add 200 ms tolerance, use
113286b8bff7SAndy Shevchenko 		 * predefined maximum in case of overflow.
113386b8bff7SAndy Shevchenko 		 */
113486b8bff7SAndy Shevchenko 		ms += ms + 200;
1135810923f3SLubomir Rintel 		if (ms > UINT_MAX)
1136810923f3SLubomir Rintel 			ms = UINT_MAX;
1137810923f3SLubomir Rintel 
1138810923f3SLubomir Rintel 		ms = wait_for_completion_timeout(&ctlr->xfer_completion,
1139810923f3SLubomir Rintel 						 msecs_to_jiffies(ms));
1140810923f3SLubomir Rintel 
1141810923f3SLubomir Rintel 		if (ms == 0) {
1142810923f3SLubomir Rintel 			SPI_STATISTICS_INCREMENT_FIELD(statm, timedout);
1143810923f3SLubomir Rintel 			SPI_STATISTICS_INCREMENT_FIELD(stats, timedout);
1144810923f3SLubomir Rintel 			dev_err(&msg->spi->dev,
1145810923f3SLubomir Rintel 				"SPI transfer timed out\n");
1146810923f3SLubomir Rintel 			return -ETIMEDOUT;
1147810923f3SLubomir Rintel 		}
1148810923f3SLubomir Rintel 	}
1149810923f3SLubomir Rintel 
1150810923f3SLubomir Rintel 	return 0;
1151810923f3SLubomir Rintel }
1152810923f3SLubomir Rintel 
11530ff2de8bSMartin Sperl static void _spi_transfer_delay_ns(u32 ns)
11540ff2de8bSMartin Sperl {
11550ff2de8bSMartin Sperl 	if (!ns)
11560ff2de8bSMartin Sperl 		return;
115786b8bff7SAndy Shevchenko 	if (ns <= NSEC_PER_USEC) {
11580ff2de8bSMartin Sperl 		ndelay(ns);
11590ff2de8bSMartin Sperl 	} else {
116086b8bff7SAndy Shevchenko 		u32 us = DIV_ROUND_UP(ns, NSEC_PER_USEC);
11610ff2de8bSMartin Sperl 
11620ff2de8bSMartin Sperl 		if (us <= 10)
11630ff2de8bSMartin Sperl 			udelay(us);
11640ff2de8bSMartin Sperl 		else
11650ff2de8bSMartin Sperl 			usleep_range(us, us + DIV_ROUND_UP(us, 10));
11660ff2de8bSMartin Sperl 	}
11670ff2de8bSMartin Sperl }
11680ff2de8bSMartin Sperl 
11693984d39bSAlexandru Ardelean int spi_delay_to_ns(struct spi_delay *_delay, struct spi_transfer *xfer)
11700ff2de8bSMartin Sperl {
1171b2c98153SAlexandru Ardelean 	u32 delay = _delay->value;
1172b2c98153SAlexandru Ardelean 	u32 unit = _delay->unit;
1173d5864e5bSMartin Sperl 	u32 hz;
11740ff2de8bSMartin Sperl 
1175b2c98153SAlexandru Ardelean 	if (!delay)
1176b2c98153SAlexandru Ardelean 		return 0;
11770ff2de8bSMartin Sperl 
11780ff2de8bSMartin Sperl 	switch (unit) {
11790ff2de8bSMartin Sperl 	case SPI_DELAY_UNIT_USECS:
118086b8bff7SAndy Shevchenko 		delay *= NSEC_PER_USEC;
11810ff2de8bSMartin Sperl 		break;
118286b8bff7SAndy Shevchenko 	case SPI_DELAY_UNIT_NSECS:
118386b8bff7SAndy Shevchenko 		/* Nothing to do here */
11840ff2de8bSMartin Sperl 		break;
1185d5864e5bSMartin Sperl 	case SPI_DELAY_UNIT_SCK:
1186b2c98153SAlexandru Ardelean 		/* clock cycles need to be obtained from spi_transfer */
1187b2c98153SAlexandru Ardelean 		if (!xfer)
1188b2c98153SAlexandru Ardelean 			return -EINVAL;
118986b8bff7SAndy Shevchenko 		/*
119086b8bff7SAndy Shevchenko 		 * If there is unknown effective speed, approximate it
119186b8bff7SAndy Shevchenko 		 * by underestimating with half of the requested hz.
1192d5864e5bSMartin Sperl 		 */
1193d5864e5bSMartin Sperl 		hz = xfer->effective_speed_hz ?: xfer->speed_hz / 2;
1194b2c98153SAlexandru Ardelean 		if (!hz)
1195b2c98153SAlexandru Ardelean 			return -EINVAL;
119686b8bff7SAndy Shevchenko 
119786b8bff7SAndy Shevchenko 		/* Convert delay to nanoseconds */
119886b8bff7SAndy Shevchenko 		delay *= DIV_ROUND_UP(NSEC_PER_SEC, hz);
1199d5864e5bSMartin Sperl 		break;
12000ff2de8bSMartin Sperl 	default:
1201b2c98153SAlexandru Ardelean 		return -EINVAL;
1202b2c98153SAlexandru Ardelean 	}
1203b2c98153SAlexandru Ardelean 
1204b2c98153SAlexandru Ardelean 	return delay;
1205b2c98153SAlexandru Ardelean }
12063984d39bSAlexandru Ardelean EXPORT_SYMBOL_GPL(spi_delay_to_ns);
1207b2c98153SAlexandru Ardelean 
1208b2c98153SAlexandru Ardelean int spi_delay_exec(struct spi_delay *_delay, struct spi_transfer *xfer)
1209b2c98153SAlexandru Ardelean {
1210b2c98153SAlexandru Ardelean 	int delay;
1211b2c98153SAlexandru Ardelean 
12128fede89fSMark Brown 	might_sleep();
12138fede89fSMark Brown 
1214b2c98153SAlexandru Ardelean 	if (!_delay)
1215b2c98153SAlexandru Ardelean 		return -EINVAL;
1216b2c98153SAlexandru Ardelean 
12173984d39bSAlexandru Ardelean 	delay = spi_delay_to_ns(_delay, xfer);
1218b2c98153SAlexandru Ardelean 	if (delay < 0)
1219b2c98153SAlexandru Ardelean 		return delay;
1220b2c98153SAlexandru Ardelean 
1221b2c98153SAlexandru Ardelean 	_spi_transfer_delay_ns(delay);
1222b2c98153SAlexandru Ardelean 
1223b2c98153SAlexandru Ardelean 	return 0;
1224b2c98153SAlexandru Ardelean }
1225b2c98153SAlexandru Ardelean EXPORT_SYMBOL_GPL(spi_delay_exec);
1226b2c98153SAlexandru Ardelean 
12270ff2de8bSMartin Sperl static void _spi_transfer_cs_change_delay(struct spi_message *msg,
12280ff2de8bSMartin Sperl 					  struct spi_transfer *xfer)
12290ff2de8bSMartin Sperl {
123086b8bff7SAndy Shevchenko 	u32 default_delay_ns = 10 * NSEC_PER_USEC;
1231329f0dacSAlexandru Ardelean 	u32 delay = xfer->cs_change_delay.value;
1232329f0dacSAlexandru Ardelean 	u32 unit = xfer->cs_change_delay.unit;
1233329f0dacSAlexandru Ardelean 	int ret;
12340ff2de8bSMartin Sperl 
12350ff2de8bSMartin Sperl 	/* return early on "fast" mode - for everything but USECS */
12366b3f236aSAlexandru Ardelean 	if (!delay) {
12376b3f236aSAlexandru Ardelean 		if (unit == SPI_DELAY_UNIT_USECS)
123886b8bff7SAndy Shevchenko 			_spi_transfer_delay_ns(default_delay_ns);
12390ff2de8bSMartin Sperl 		return;
12406b3f236aSAlexandru Ardelean 	}
12410ff2de8bSMartin Sperl 
1242329f0dacSAlexandru Ardelean 	ret = spi_delay_exec(&xfer->cs_change_delay, xfer);
1243329f0dacSAlexandru Ardelean 	if (ret) {
12440ff2de8bSMartin Sperl 		dev_err_once(&msg->spi->dev,
124586b8bff7SAndy Shevchenko 			     "Use of unsupported delay unit %i, using default of %luus\n",
124686b8bff7SAndy Shevchenko 			     unit, default_delay_ns / NSEC_PER_USEC);
124786b8bff7SAndy Shevchenko 		_spi_transfer_delay_ns(default_delay_ns);
12480ff2de8bSMartin Sperl 	}
12490ff2de8bSMartin Sperl }
12500ff2de8bSMartin Sperl 
1251b158935fSMark Brown /*
1252b158935fSMark Brown  * spi_transfer_one_message - Default implementation of transfer_one_message()
1253b158935fSMark Brown  *
1254b158935fSMark Brown  * This is a standard implementation of transfer_one_message() for
12558ba811a7SMoritz Fischer  * drivers which implement a transfer_one() operation.  It provides
1256b158935fSMark Brown  * standard handling of delays and chip select management.
1257b158935fSMark Brown  */
12588caab75fSGeert Uytterhoeven static int spi_transfer_one_message(struct spi_controller *ctlr,
1259b158935fSMark Brown 				    struct spi_message *msg)
1260b158935fSMark Brown {
1261b158935fSMark Brown 	struct spi_transfer *xfer;
1262b158935fSMark Brown 	bool keep_cs = false;
1263b158935fSMark Brown 	int ret = 0;
12648caab75fSGeert Uytterhoeven 	struct spi_statistics *statm = &ctlr->statistics;
1265eca2ebc7SMartin Sperl 	struct spi_statistics *stats = &msg->spi->statistics;
1266b158935fSMark Brown 
1267d347b4aaSDavid Bauer 	spi_set_cs(msg->spi, true, false);
1268b158935fSMark Brown 
1269eca2ebc7SMartin Sperl 	SPI_STATISTICS_INCREMENT_FIELD(statm, messages);
1270eca2ebc7SMartin Sperl 	SPI_STATISTICS_INCREMENT_FIELD(stats, messages);
1271eca2ebc7SMartin Sperl 
1272b158935fSMark Brown 	list_for_each_entry(xfer, &msg->transfers, transfer_list) {
1273b158935fSMark Brown 		trace_spi_transfer_start(msg, xfer);
1274b158935fSMark Brown 
12758caab75fSGeert Uytterhoeven 		spi_statistics_add_transfer_stats(statm, xfer, ctlr);
12768caab75fSGeert Uytterhoeven 		spi_statistics_add_transfer_stats(stats, xfer, ctlr);
1277eca2ebc7SMartin Sperl 
1278b42faeeeSVladimir Oltean 		if (!ctlr->ptp_sts_supported) {
1279b42faeeeSVladimir Oltean 			xfer->ptp_sts_word_pre = 0;
1280b42faeeeSVladimir Oltean 			ptp_read_system_prets(xfer->ptp_sts);
1281b42faeeeSVladimir Oltean 		}
1282b42faeeeSVladimir Oltean 
1283b3063203SNicolas Saenz Julienne 		if ((xfer->tx_buf || xfer->rx_buf) && xfer->len) {
12848caab75fSGeert Uytterhoeven 			reinit_completion(&ctlr->xfer_completion);
1285b158935fSMark Brown 
1286809b1b04SRobin Gong fallback_pio:
12878caab75fSGeert Uytterhoeven 			ret = ctlr->transfer_one(ctlr, msg->spi, xfer);
1288b158935fSMark Brown 			if (ret < 0) {
1289809b1b04SRobin Gong 				if (ctlr->cur_msg_mapped &&
1290809b1b04SRobin Gong 				   (xfer->error & SPI_TRANS_FAIL_NO_START)) {
1291809b1b04SRobin Gong 					__spi_unmap_msg(ctlr, msg);
1292809b1b04SRobin Gong 					ctlr->fallback = true;
1293809b1b04SRobin Gong 					xfer->error &= ~SPI_TRANS_FAIL_NO_START;
1294809b1b04SRobin Gong 					goto fallback_pio;
1295809b1b04SRobin Gong 				}
1296809b1b04SRobin Gong 
1297eca2ebc7SMartin Sperl 				SPI_STATISTICS_INCREMENT_FIELD(statm,
1298eca2ebc7SMartin Sperl 							       errors);
1299eca2ebc7SMartin Sperl 				SPI_STATISTICS_INCREMENT_FIELD(stats,
1300eca2ebc7SMartin Sperl 							       errors);
1301b158935fSMark Brown 				dev_err(&msg->spi->dev,
1302b158935fSMark Brown 					"SPI transfer failed: %d\n", ret);
1303b158935fSMark Brown 				goto out;
1304b158935fSMark Brown 			}
1305b158935fSMark Brown 
1306d57e7960SMark Brown 			if (ret > 0) {
1307810923f3SLubomir Rintel 				ret = spi_transfer_wait(ctlr, msg, xfer);
1308810923f3SLubomir Rintel 				if (ret < 0)
1309810923f3SLubomir Rintel 					msg->status = ret;
1310d57e7960SMark Brown 			}
131138ec10f6SMark Brown 		} else {
131238ec10f6SMark Brown 			if (xfer->len)
131338ec10f6SMark Brown 				dev_err(&msg->spi->dev,
131438ec10f6SMark Brown 					"Bufferless transfer has length %u\n",
131538ec10f6SMark Brown 					xfer->len);
131638ec10f6SMark Brown 		}
1317b158935fSMark Brown 
1318b42faeeeSVladimir Oltean 		if (!ctlr->ptp_sts_supported) {
1319b42faeeeSVladimir Oltean 			ptp_read_system_postts(xfer->ptp_sts);
1320b42faeeeSVladimir Oltean 			xfer->ptp_sts_word_post = xfer->len;
1321b42faeeeSVladimir Oltean 		}
1322b42faeeeSVladimir Oltean 
1323b158935fSMark Brown 		trace_spi_transfer_stop(msg, xfer);
1324b158935fSMark Brown 
1325b158935fSMark Brown 		if (msg->status != -EINPROGRESS)
1326b158935fSMark Brown 			goto out;
1327b158935fSMark Brown 
1328bebcfd27SAlexandru Ardelean 		spi_transfer_delay_exec(xfer);
1329b158935fSMark Brown 
1330b158935fSMark Brown 		if (xfer->cs_change) {
1331b158935fSMark Brown 			if (list_is_last(&xfer->transfer_list,
1332b158935fSMark Brown 					 &msg->transfers)) {
1333b158935fSMark Brown 				keep_cs = true;
1334b158935fSMark Brown 			} else {
1335d347b4aaSDavid Bauer 				spi_set_cs(msg->spi, false, false);
13360ff2de8bSMartin Sperl 				_spi_transfer_cs_change_delay(msg, xfer);
1337d347b4aaSDavid Bauer 				spi_set_cs(msg->spi, true, false);
1338b158935fSMark Brown 			}
1339b158935fSMark Brown 		}
1340b158935fSMark Brown 
1341b158935fSMark Brown 		msg->actual_length += xfer->len;
1342b158935fSMark Brown 	}
1343b158935fSMark Brown 
1344b158935fSMark Brown out:
1345b158935fSMark Brown 	if (ret != 0 || !keep_cs)
1346d347b4aaSDavid Bauer 		spi_set_cs(msg->spi, false, false);
1347b158935fSMark Brown 
1348b158935fSMark Brown 	if (msg->status == -EINPROGRESS)
1349b158935fSMark Brown 		msg->status = ret;
1350b158935fSMark Brown 
13518caab75fSGeert Uytterhoeven 	if (msg->status && ctlr->handle_err)
13528caab75fSGeert Uytterhoeven 		ctlr->handle_err(ctlr, msg);
1353b716c4ffSAndy Shevchenko 
13540ed56252SMark Brown 	spi_finalize_current_message(ctlr);
13550ed56252SMark Brown 
1356b158935fSMark Brown 	return ret;
1357b158935fSMark Brown }
1358b158935fSMark Brown 
1359b158935fSMark Brown /**
1360b158935fSMark Brown  * spi_finalize_current_transfer - report completion of a transfer
13618caab75fSGeert Uytterhoeven  * @ctlr: the controller reporting completion
1362b158935fSMark Brown  *
1363b158935fSMark Brown  * Called by SPI drivers using the core transfer_one_message()
1364b158935fSMark Brown  * implementation to notify it that the current interrupt driven
13659e8f4882SGeert Uytterhoeven  * transfer has finished and the next one may be scheduled.
1366b158935fSMark Brown  */
13678caab75fSGeert Uytterhoeven void spi_finalize_current_transfer(struct spi_controller *ctlr)
1368b158935fSMark Brown {
13698caab75fSGeert Uytterhoeven 	complete(&ctlr->xfer_completion);
1370b158935fSMark Brown }
1371b158935fSMark Brown EXPORT_SYMBOL_GPL(spi_finalize_current_transfer);
1372b158935fSMark Brown 
1373e1268597SMark Brown static void spi_idle_runtime_pm(struct spi_controller *ctlr)
1374e1268597SMark Brown {
1375e1268597SMark Brown 	if (ctlr->auto_runtime_pm) {
1376e1268597SMark Brown 		pm_runtime_mark_last_busy(ctlr->dev.parent);
1377e1268597SMark Brown 		pm_runtime_put_autosuspend(ctlr->dev.parent);
1378e1268597SMark Brown 	}
1379e1268597SMark Brown }
1380e1268597SMark Brown 
1381ffbbdd21SLinus Walleij /**
1382fc9e0f71SMark Brown  * __spi_pump_messages - function which processes spi message queue
13838caab75fSGeert Uytterhoeven  * @ctlr: controller to process queue for
1384fc9e0f71SMark Brown  * @in_kthread: true if we are in the context of the message pump thread
1385ffbbdd21SLinus Walleij  *
1386ffbbdd21SLinus Walleij  * This function checks if there is any spi message in the queue that
1387ffbbdd21SLinus Walleij  * needs processing and if so call out to the driver to initialize hardware
1388ffbbdd21SLinus Walleij  * and transfer each message.
1389ffbbdd21SLinus Walleij  *
13900461a414SMark Brown  * Note that it is called both from the kthread itself and also from
13910461a414SMark Brown  * inside spi_sync(); the queue extraction handling at the top of the
13920461a414SMark Brown  * function should deal with this safely.
1393ffbbdd21SLinus Walleij  */
13948caab75fSGeert Uytterhoeven static void __spi_pump_messages(struct spi_controller *ctlr, bool in_kthread)
1395ffbbdd21SLinus Walleij {
1396b42faeeeSVladimir Oltean 	struct spi_transfer *xfer;
1397d1c44c93SVladimir Oltean 	struct spi_message *msg;
1398ffbbdd21SLinus Walleij 	bool was_busy = false;
1399d1c44c93SVladimir Oltean 	unsigned long flags;
1400ffbbdd21SLinus Walleij 	int ret;
1401ffbbdd21SLinus Walleij 
1402983aee5dSMark Brown 	/* Lock queue */
14038caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
1404983aee5dSMark Brown 
1405983aee5dSMark Brown 	/* Make sure we are not already running a message */
14068caab75fSGeert Uytterhoeven 	if (ctlr->cur_msg) {
14078caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1408983aee5dSMark Brown 		return;
1409983aee5dSMark Brown 	}
1410983aee5dSMark Brown 
1411f0125f1aSMark Brown 	/* If another context is idling the device then defer */
14128caab75fSGeert Uytterhoeven 	if (ctlr->idling) {
141360a883d1SMarek Szyprowski 		kthread_queue_work(ctlr->kworker, &ctlr->pump_messages);
14148caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
14150461a414SMark Brown 		return;
14160461a414SMark Brown 	}
14170461a414SMark Brown 
1418983aee5dSMark Brown 	/* Check if the queue is idle */
14198caab75fSGeert Uytterhoeven 	if (list_empty(&ctlr->queue) || !ctlr->running) {
14208caab75fSGeert Uytterhoeven 		if (!ctlr->busy) {
14218caab75fSGeert Uytterhoeven 			spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1422ffbbdd21SLinus Walleij 			return;
1423ffbbdd21SLinus Walleij 		}
1424fc9e0f71SMark Brown 
1425e1268597SMark Brown 		/* Defer any non-atomic teardown to the thread */
1426f0125f1aSMark Brown 		if (!in_kthread) {
1427e1268597SMark Brown 			if (!ctlr->dummy_rx && !ctlr->dummy_tx &&
1428e1268597SMark Brown 			    !ctlr->unprepare_transfer_hardware) {
1429e1268597SMark Brown 				spi_idle_runtime_pm(ctlr);
1430e1268597SMark Brown 				ctlr->busy = false;
1431e1268597SMark Brown 				trace_spi_controller_idle(ctlr);
1432e1268597SMark Brown 			} else {
143360a883d1SMarek Szyprowski 				kthread_queue_work(ctlr->kworker,
1434f0125f1aSMark Brown 						   &ctlr->pump_messages);
1435e1268597SMark Brown 			}
1436f0125f1aSMark Brown 			spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1437f0125f1aSMark Brown 			return;
1438f0125f1aSMark Brown 		}
1439f0125f1aSMark Brown 
1440f0125f1aSMark Brown 		ctlr->busy = false;
1441f0125f1aSMark Brown 		ctlr->idling = true;
1442f0125f1aSMark Brown 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1443f0125f1aSMark Brown 
1444f0125f1aSMark Brown 		kfree(ctlr->dummy_rx);
1445f0125f1aSMark Brown 		ctlr->dummy_rx = NULL;
1446f0125f1aSMark Brown 		kfree(ctlr->dummy_tx);
1447f0125f1aSMark Brown 		ctlr->dummy_tx = NULL;
1448f0125f1aSMark Brown 		if (ctlr->unprepare_transfer_hardware &&
1449f0125f1aSMark Brown 		    ctlr->unprepare_transfer_hardware(ctlr))
1450f0125f1aSMark Brown 			dev_err(&ctlr->dev,
1451f0125f1aSMark Brown 				"failed to unprepare transfer hardware\n");
1452e1268597SMark Brown 		spi_idle_runtime_pm(ctlr);
1453f0125f1aSMark Brown 		trace_spi_controller_idle(ctlr);
1454f0125f1aSMark Brown 
1455f0125f1aSMark Brown 		spin_lock_irqsave(&ctlr->queue_lock, flags);
1456f0125f1aSMark Brown 		ctlr->idling = false;
14578caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1458ffbbdd21SLinus Walleij 		return;
1459ffbbdd21SLinus Walleij 	}
1460ffbbdd21SLinus Walleij 
1461ffbbdd21SLinus Walleij 	/* Extract head of queue */
1462d1c44c93SVladimir Oltean 	msg = list_first_entry(&ctlr->queue, struct spi_message, queue);
1463d1c44c93SVladimir Oltean 	ctlr->cur_msg = msg;
1464ffbbdd21SLinus Walleij 
1465d1c44c93SVladimir Oltean 	list_del_init(&msg->queue);
14668caab75fSGeert Uytterhoeven 	if (ctlr->busy)
1467ffbbdd21SLinus Walleij 		was_busy = true;
1468ffbbdd21SLinus Walleij 	else
14698caab75fSGeert Uytterhoeven 		ctlr->busy = true;
14708caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1471ffbbdd21SLinus Walleij 
14728caab75fSGeert Uytterhoeven 	mutex_lock(&ctlr->io_mutex);
1473ef4d96ecSMark Brown 
14748caab75fSGeert Uytterhoeven 	if (!was_busy && ctlr->auto_runtime_pm) {
14758caab75fSGeert Uytterhoeven 		ret = pm_runtime_get_sync(ctlr->dev.parent);
147649834de2SMark Brown 		if (ret < 0) {
14777e48e23aSTony Lindgren 			pm_runtime_put_noidle(ctlr->dev.parent);
14788caab75fSGeert Uytterhoeven 			dev_err(&ctlr->dev, "Failed to power device: %d\n",
147949834de2SMark Brown 				ret);
14808caab75fSGeert Uytterhoeven 			mutex_unlock(&ctlr->io_mutex);
148149834de2SMark Brown 			return;
148249834de2SMark Brown 		}
148349834de2SMark Brown 	}
148449834de2SMark Brown 
148556ec1978SMark Brown 	if (!was_busy)
14868caab75fSGeert Uytterhoeven 		trace_spi_controller_busy(ctlr);
148756ec1978SMark Brown 
14888caab75fSGeert Uytterhoeven 	if (!was_busy && ctlr->prepare_transfer_hardware) {
14898caab75fSGeert Uytterhoeven 		ret = ctlr->prepare_transfer_hardware(ctlr);
1490ffbbdd21SLinus Walleij 		if (ret) {
14918caab75fSGeert Uytterhoeven 			dev_err(&ctlr->dev,
1492f3440d9aSSuper Liu 				"failed to prepare transfer hardware: %d\n",
1493f3440d9aSSuper Liu 				ret);
149449834de2SMark Brown 
14958caab75fSGeert Uytterhoeven 			if (ctlr->auto_runtime_pm)
14968caab75fSGeert Uytterhoeven 				pm_runtime_put(ctlr->dev.parent);
1497f3440d9aSSuper Liu 
1498d1c44c93SVladimir Oltean 			msg->status = ret;
1499f3440d9aSSuper Liu 			spi_finalize_current_message(ctlr);
1500f3440d9aSSuper Liu 
15018caab75fSGeert Uytterhoeven 			mutex_unlock(&ctlr->io_mutex);
1502ffbbdd21SLinus Walleij 			return;
1503ffbbdd21SLinus Walleij 		}
1504ffbbdd21SLinus Walleij 	}
1505ffbbdd21SLinus Walleij 
1506d1c44c93SVladimir Oltean 	trace_spi_message_start(msg);
150756ec1978SMark Brown 
15088caab75fSGeert Uytterhoeven 	if (ctlr->prepare_message) {
1509d1c44c93SVladimir Oltean 		ret = ctlr->prepare_message(ctlr, msg);
15102841a5fcSMark Brown 		if (ret) {
15118caab75fSGeert Uytterhoeven 			dev_err(&ctlr->dev, "failed to prepare message: %d\n",
15128caab75fSGeert Uytterhoeven 				ret);
1513d1c44c93SVladimir Oltean 			msg->status = ret;
15148caab75fSGeert Uytterhoeven 			spi_finalize_current_message(ctlr);
151549023d2eSJon Hunter 			goto out;
15162841a5fcSMark Brown 		}
15178caab75fSGeert Uytterhoeven 		ctlr->cur_msg_prepared = true;
15182841a5fcSMark Brown 	}
15192841a5fcSMark Brown 
1520d1c44c93SVladimir Oltean 	ret = spi_map_msg(ctlr, msg);
152199adef31SMark Brown 	if (ret) {
1522d1c44c93SVladimir Oltean 		msg->status = ret;
15238caab75fSGeert Uytterhoeven 		spi_finalize_current_message(ctlr);
152449023d2eSJon Hunter 		goto out;
152599adef31SMark Brown 	}
152699adef31SMark Brown 
1527b42faeeeSVladimir Oltean 	if (!ctlr->ptp_sts_supported && !ctlr->transfer_one) {
1528b42faeeeSVladimir Oltean 		list_for_each_entry(xfer, &msg->transfers, transfer_list) {
1529b42faeeeSVladimir Oltean 			xfer->ptp_sts_word_pre = 0;
1530b42faeeeSVladimir Oltean 			ptp_read_system_prets(xfer->ptp_sts);
1531b42faeeeSVladimir Oltean 		}
1532b42faeeeSVladimir Oltean 	}
1533b42faeeeSVladimir Oltean 
1534d1c44c93SVladimir Oltean 	ret = ctlr->transfer_one_message(ctlr, msg);
1535ffbbdd21SLinus Walleij 	if (ret) {
15368caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev,
15371f802f82SGeert Uytterhoeven 			"failed to transfer one message from queue\n");
153849023d2eSJon Hunter 		goto out;
1539ffbbdd21SLinus Walleij 	}
154049023d2eSJon Hunter 
154149023d2eSJon Hunter out:
15428caab75fSGeert Uytterhoeven 	mutex_unlock(&ctlr->io_mutex);
154362826970SMark Brown 
154462826970SMark Brown 	/* Prod the scheduler in case transfer_one() was busy waiting */
154549023d2eSJon Hunter 	if (!ret)
154662826970SMark Brown 		cond_resched();
1547ffbbdd21SLinus Walleij }
1548ffbbdd21SLinus Walleij 
1549fc9e0f71SMark Brown /**
1550fc9e0f71SMark Brown  * spi_pump_messages - kthread work function which processes spi message queue
15518caab75fSGeert Uytterhoeven  * @work: pointer to kthread work struct contained in the controller struct
1552fc9e0f71SMark Brown  */
1553fc9e0f71SMark Brown static void spi_pump_messages(struct kthread_work *work)
1554fc9e0f71SMark Brown {
15558caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr =
15568caab75fSGeert Uytterhoeven 		container_of(work, struct spi_controller, pump_messages);
1557fc9e0f71SMark Brown 
15588caab75fSGeert Uytterhoeven 	__spi_pump_messages(ctlr, true);
1559fc9e0f71SMark Brown }
1560fc9e0f71SMark Brown 
1561924b5867SDouglas Anderson /**
1562b42faeeeSVladimir Oltean  * spi_take_timestamp_pre - helper for drivers to collect the beginning of the
1563b42faeeeSVladimir Oltean  *			    TX timestamp for the requested byte from the SPI
1564b42faeeeSVladimir Oltean  *			    transfer. The frequency with which this function
1565b42faeeeSVladimir Oltean  *			    must be called (once per word, once for the whole
1566b42faeeeSVladimir Oltean  *			    transfer, once per batch of words etc) is arbitrary
1567b42faeeeSVladimir Oltean  *			    as long as the @tx buffer offset is greater than or
1568b42faeeeSVladimir Oltean  *			    equal to the requested byte at the time of the
1569b42faeeeSVladimir Oltean  *			    call. The timestamp is only taken once, at the
1570b42faeeeSVladimir Oltean  *			    first such call. It is assumed that the driver
1571b42faeeeSVladimir Oltean  *			    advances its @tx buffer pointer monotonically.
1572b42faeeeSVladimir Oltean  * @ctlr: Pointer to the spi_controller structure of the driver
1573b42faeeeSVladimir Oltean  * @xfer: Pointer to the transfer being timestamped
1574862dd2a9SVladimir Oltean  * @progress: How many words (not bytes) have been transferred so far
1575b42faeeeSVladimir Oltean  * @irqs_off: If true, will disable IRQs and preemption for the duration of the
1576b42faeeeSVladimir Oltean  *	      transfer, for less jitter in time measurement. Only compatible
1577b42faeeeSVladimir Oltean  *	      with PIO drivers. If true, must follow up with
1578b42faeeeSVladimir Oltean  *	      spi_take_timestamp_post or otherwise system will crash.
1579b42faeeeSVladimir Oltean  *	      WARNING: for fully predictable results, the CPU frequency must
1580b42faeeeSVladimir Oltean  *	      also be under control (governor).
1581b42faeeeSVladimir Oltean  */
1582b42faeeeSVladimir Oltean void spi_take_timestamp_pre(struct spi_controller *ctlr,
1583b42faeeeSVladimir Oltean 			    struct spi_transfer *xfer,
1584862dd2a9SVladimir Oltean 			    size_t progress, bool irqs_off)
1585b42faeeeSVladimir Oltean {
1586b42faeeeSVladimir Oltean 	if (!xfer->ptp_sts)
1587b42faeeeSVladimir Oltean 		return;
1588b42faeeeSVladimir Oltean 
15896a726824SVladimir Oltean 	if (xfer->timestamped)
1590b42faeeeSVladimir Oltean 		return;
1591b42faeeeSVladimir Oltean 
15926a726824SVladimir Oltean 	if (progress > xfer->ptp_sts_word_pre)
1593b42faeeeSVladimir Oltean 		return;
1594b42faeeeSVladimir Oltean 
1595b42faeeeSVladimir Oltean 	/* Capture the resolution of the timestamp */
1596862dd2a9SVladimir Oltean 	xfer->ptp_sts_word_pre = progress;
1597b42faeeeSVladimir Oltean 
1598b42faeeeSVladimir Oltean 	if (irqs_off) {
1599b42faeeeSVladimir Oltean 		local_irq_save(ctlr->irq_flags);
1600b42faeeeSVladimir Oltean 		preempt_disable();
1601b42faeeeSVladimir Oltean 	}
1602b42faeeeSVladimir Oltean 
1603b42faeeeSVladimir Oltean 	ptp_read_system_prets(xfer->ptp_sts);
1604b42faeeeSVladimir Oltean }
1605b42faeeeSVladimir Oltean EXPORT_SYMBOL_GPL(spi_take_timestamp_pre);
1606b42faeeeSVladimir Oltean 
1607b42faeeeSVladimir Oltean /**
1608b42faeeeSVladimir Oltean  * spi_take_timestamp_post - helper for drivers to collect the end of the
1609b42faeeeSVladimir Oltean  *			     TX timestamp for the requested byte from the SPI
1610b42faeeeSVladimir Oltean  *			     transfer. Can be called with an arbitrary
1611b42faeeeSVladimir Oltean  *			     frequency: only the first call where @tx exceeds
1612b42faeeeSVladimir Oltean  *			     or is equal to the requested word will be
1613b42faeeeSVladimir Oltean  *			     timestamped.
1614b42faeeeSVladimir Oltean  * @ctlr: Pointer to the spi_controller structure of the driver
1615b42faeeeSVladimir Oltean  * @xfer: Pointer to the transfer being timestamped
1616862dd2a9SVladimir Oltean  * @progress: How many words (not bytes) have been transferred so far
1617b42faeeeSVladimir Oltean  * @irqs_off: If true, will re-enable IRQs and preemption for the local CPU.
1618b42faeeeSVladimir Oltean  */
1619b42faeeeSVladimir Oltean void spi_take_timestamp_post(struct spi_controller *ctlr,
1620b42faeeeSVladimir Oltean 			     struct spi_transfer *xfer,
1621862dd2a9SVladimir Oltean 			     size_t progress, bool irqs_off)
1622b42faeeeSVladimir Oltean {
1623b42faeeeSVladimir Oltean 	if (!xfer->ptp_sts)
1624b42faeeeSVladimir Oltean 		return;
1625b42faeeeSVladimir Oltean 
16266a726824SVladimir Oltean 	if (xfer->timestamped)
1627b42faeeeSVladimir Oltean 		return;
1628b42faeeeSVladimir Oltean 
1629862dd2a9SVladimir Oltean 	if (progress < xfer->ptp_sts_word_post)
1630b42faeeeSVladimir Oltean 		return;
1631b42faeeeSVladimir Oltean 
1632b42faeeeSVladimir Oltean 	ptp_read_system_postts(xfer->ptp_sts);
1633b42faeeeSVladimir Oltean 
1634b42faeeeSVladimir Oltean 	if (irqs_off) {
1635b42faeeeSVladimir Oltean 		local_irq_restore(ctlr->irq_flags);
1636b42faeeeSVladimir Oltean 		preempt_enable();
1637b42faeeeSVladimir Oltean 	}
1638b42faeeeSVladimir Oltean 
1639b42faeeeSVladimir Oltean 	/* Capture the resolution of the timestamp */
1640862dd2a9SVladimir Oltean 	xfer->ptp_sts_word_post = progress;
1641b42faeeeSVladimir Oltean 
16426a726824SVladimir Oltean 	xfer->timestamped = true;
1643b42faeeeSVladimir Oltean }
1644b42faeeeSVladimir Oltean EXPORT_SYMBOL_GPL(spi_take_timestamp_post);
1645b42faeeeSVladimir Oltean 
1646b42faeeeSVladimir Oltean /**
1647924b5867SDouglas Anderson  * spi_set_thread_rt - set the controller to pump at realtime priority
1648924b5867SDouglas Anderson  * @ctlr: controller to boost priority of
1649924b5867SDouglas Anderson  *
1650924b5867SDouglas Anderson  * This can be called because the controller requested realtime priority
1651924b5867SDouglas Anderson  * (by setting the ->rt value before calling spi_register_controller()) or
1652924b5867SDouglas Anderson  * because a device on the bus said that its transfers needed realtime
1653924b5867SDouglas Anderson  * priority.
1654924b5867SDouglas Anderson  *
1655924b5867SDouglas Anderson  * NOTE: at the moment if any device on a bus says it needs realtime then
1656924b5867SDouglas Anderson  * the thread will be at realtime priority for all transfers on that
1657924b5867SDouglas Anderson  * controller.  If this eventually becomes a problem we may see if we can
1658924b5867SDouglas Anderson  * find a way to boost the priority only temporarily during relevant
1659924b5867SDouglas Anderson  * transfers.
1660924b5867SDouglas Anderson  */
1661924b5867SDouglas Anderson static void spi_set_thread_rt(struct spi_controller *ctlr)
1662ffbbdd21SLinus Walleij {
1663924b5867SDouglas Anderson 	dev_info(&ctlr->dev,
1664924b5867SDouglas Anderson 		"will run message pump with realtime priority\n");
16656d2b84a4SLinus Torvalds 	sched_set_fifo(ctlr->kworker->task);
1666924b5867SDouglas Anderson }
1667924b5867SDouglas Anderson 
1668924b5867SDouglas Anderson static int spi_init_queue(struct spi_controller *ctlr)
1669924b5867SDouglas Anderson {
16708caab75fSGeert Uytterhoeven 	ctlr->running = false;
16718caab75fSGeert Uytterhoeven 	ctlr->busy = false;
1672ffbbdd21SLinus Walleij 
167360a883d1SMarek Szyprowski 	ctlr->kworker = kthread_create_worker(0, dev_name(&ctlr->dev));
167460a883d1SMarek Szyprowski 	if (IS_ERR(ctlr->kworker)) {
167560a883d1SMarek Szyprowski 		dev_err(&ctlr->dev, "failed to create message pump kworker\n");
167660a883d1SMarek Szyprowski 		return PTR_ERR(ctlr->kworker);
1677ffbbdd21SLinus Walleij 	}
167860a883d1SMarek Szyprowski 
16798caab75fSGeert Uytterhoeven 	kthread_init_work(&ctlr->pump_messages, spi_pump_messages);
1680f0125f1aSMark Brown 
1681ffbbdd21SLinus Walleij 	/*
16828caab75fSGeert Uytterhoeven 	 * Controller config will indicate if this controller should run the
1683ffbbdd21SLinus Walleij 	 * message pump with high (realtime) priority to reduce the transfer
1684ffbbdd21SLinus Walleij 	 * latency on the bus by minimising the delay between a transfer
1685ffbbdd21SLinus Walleij 	 * request and the scheduling of the message pump thread. Without this
1686ffbbdd21SLinus Walleij 	 * setting the message pump thread will remain at default priority.
1687ffbbdd21SLinus Walleij 	 */
1688924b5867SDouglas Anderson 	if (ctlr->rt)
1689924b5867SDouglas Anderson 		spi_set_thread_rt(ctlr);
1690ffbbdd21SLinus Walleij 
1691ffbbdd21SLinus Walleij 	return 0;
1692ffbbdd21SLinus Walleij }
1693ffbbdd21SLinus Walleij 
1694ffbbdd21SLinus Walleij /**
1695ffbbdd21SLinus Walleij  * spi_get_next_queued_message() - called by driver to check for queued
1696ffbbdd21SLinus Walleij  * messages
16978caab75fSGeert Uytterhoeven  * @ctlr: the controller to check for queued messages
1698ffbbdd21SLinus Walleij  *
1699ffbbdd21SLinus Walleij  * If there are more messages in the queue, the next message is returned from
1700ffbbdd21SLinus Walleij  * this call.
170197d56dc6SJavier Martinez Canillas  *
170297d56dc6SJavier Martinez Canillas  * Return: the next message in the queue, else NULL if the queue is empty.
1703ffbbdd21SLinus Walleij  */
17048caab75fSGeert Uytterhoeven struct spi_message *spi_get_next_queued_message(struct spi_controller *ctlr)
1705ffbbdd21SLinus Walleij {
1706ffbbdd21SLinus Walleij 	struct spi_message *next;
1707ffbbdd21SLinus Walleij 	unsigned long flags;
1708ffbbdd21SLinus Walleij 
1709ffbbdd21SLinus Walleij 	/* get a pointer to the next message, if any */
17108caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
17118caab75fSGeert Uytterhoeven 	next = list_first_entry_or_null(&ctlr->queue, struct spi_message,
17121cfd97f9SAxel Lin 					queue);
17138caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1714ffbbdd21SLinus Walleij 
1715ffbbdd21SLinus Walleij 	return next;
1716ffbbdd21SLinus Walleij }
1717ffbbdd21SLinus Walleij EXPORT_SYMBOL_GPL(spi_get_next_queued_message);
1718ffbbdd21SLinus Walleij 
1719ffbbdd21SLinus Walleij /**
1720ffbbdd21SLinus Walleij  * spi_finalize_current_message() - the current message is complete
17218caab75fSGeert Uytterhoeven  * @ctlr: the controller to return the message to
1722ffbbdd21SLinus Walleij  *
1723ffbbdd21SLinus Walleij  * Called by the driver to notify the core that the message in the front of the
1724ffbbdd21SLinus Walleij  * queue is complete and can be removed from the queue.
1725ffbbdd21SLinus Walleij  */
17268caab75fSGeert Uytterhoeven void spi_finalize_current_message(struct spi_controller *ctlr)
1727ffbbdd21SLinus Walleij {
1728b42faeeeSVladimir Oltean 	struct spi_transfer *xfer;
1729ffbbdd21SLinus Walleij 	struct spi_message *mesg;
1730ffbbdd21SLinus Walleij 	unsigned long flags;
17312841a5fcSMark Brown 	int ret;
1732ffbbdd21SLinus Walleij 
17338caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
17348caab75fSGeert Uytterhoeven 	mesg = ctlr->cur_msg;
17358caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1736ffbbdd21SLinus Walleij 
1737b42faeeeSVladimir Oltean 	if (!ctlr->ptp_sts_supported && !ctlr->transfer_one) {
1738b42faeeeSVladimir Oltean 		list_for_each_entry(xfer, &mesg->transfers, transfer_list) {
1739b42faeeeSVladimir Oltean 			ptp_read_system_postts(xfer->ptp_sts);
1740b42faeeeSVladimir Oltean 			xfer->ptp_sts_word_post = xfer->len;
1741b42faeeeSVladimir Oltean 		}
1742b42faeeeSVladimir Oltean 	}
1743b42faeeeSVladimir Oltean 
17446a726824SVladimir Oltean 	if (unlikely(ctlr->ptp_sts_supported))
17456a726824SVladimir Oltean 		list_for_each_entry(xfer, &mesg->transfers, transfer_list)
17466a726824SVladimir Oltean 			WARN_ON_ONCE(xfer->ptp_sts && !xfer->timestamped);
1747f971a207SVladimir Oltean 
17488caab75fSGeert Uytterhoeven 	spi_unmap_msg(ctlr, mesg);
174999adef31SMark Brown 
1750b59a7ca1SGustav Wiklander 	/* In the prepare_messages callback the spi bus has the opportunity to
1751b59a7ca1SGustav Wiklander 	 * split a transfer to smaller chunks.
1752b59a7ca1SGustav Wiklander 	 * Release splited transfers here since spi_map_msg is done on the
1753b59a7ca1SGustav Wiklander 	 * splited transfers.
1754b59a7ca1SGustav Wiklander 	 */
1755b59a7ca1SGustav Wiklander 	spi_res_release(ctlr, mesg);
1756b59a7ca1SGustav Wiklander 
17578caab75fSGeert Uytterhoeven 	if (ctlr->cur_msg_prepared && ctlr->unprepare_message) {
17588caab75fSGeert Uytterhoeven 		ret = ctlr->unprepare_message(ctlr, mesg);
17592841a5fcSMark Brown 		if (ret) {
17608caab75fSGeert Uytterhoeven 			dev_err(&ctlr->dev, "failed to unprepare message: %d\n",
17618caab75fSGeert Uytterhoeven 				ret);
17622841a5fcSMark Brown 		}
17632841a5fcSMark Brown 	}
1764391949b6SUwe Kleine-König 
17658caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
17668caab75fSGeert Uytterhoeven 	ctlr->cur_msg = NULL;
17678caab75fSGeert Uytterhoeven 	ctlr->cur_msg_prepared = false;
1768809b1b04SRobin Gong 	ctlr->fallback = false;
176960a883d1SMarek Szyprowski 	kthread_queue_work(ctlr->kworker, &ctlr->pump_messages);
17708caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
17718e76ef88SMartin Sperl 
17728e76ef88SMartin Sperl 	trace_spi_message_done(mesg);
17732841a5fcSMark Brown 
1774ffbbdd21SLinus Walleij 	mesg->state = NULL;
1775ffbbdd21SLinus Walleij 	if (mesg->complete)
1776ffbbdd21SLinus Walleij 		mesg->complete(mesg->context);
1777ffbbdd21SLinus Walleij }
1778ffbbdd21SLinus Walleij EXPORT_SYMBOL_GPL(spi_finalize_current_message);
1779ffbbdd21SLinus Walleij 
17808caab75fSGeert Uytterhoeven static int spi_start_queue(struct spi_controller *ctlr)
1781ffbbdd21SLinus Walleij {
1782ffbbdd21SLinus Walleij 	unsigned long flags;
1783ffbbdd21SLinus Walleij 
17848caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
1785ffbbdd21SLinus Walleij 
17868caab75fSGeert Uytterhoeven 	if (ctlr->running || ctlr->busy) {
17878caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1788ffbbdd21SLinus Walleij 		return -EBUSY;
1789ffbbdd21SLinus Walleij 	}
1790ffbbdd21SLinus Walleij 
17918caab75fSGeert Uytterhoeven 	ctlr->running = true;
17928caab75fSGeert Uytterhoeven 	ctlr->cur_msg = NULL;
17938caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1794ffbbdd21SLinus Walleij 
179560a883d1SMarek Szyprowski 	kthread_queue_work(ctlr->kworker, &ctlr->pump_messages);
1796ffbbdd21SLinus Walleij 
1797ffbbdd21SLinus Walleij 	return 0;
1798ffbbdd21SLinus Walleij }
1799ffbbdd21SLinus Walleij 
18008caab75fSGeert Uytterhoeven static int spi_stop_queue(struct spi_controller *ctlr)
1801ffbbdd21SLinus Walleij {
1802ffbbdd21SLinus Walleij 	unsigned long flags;
1803ffbbdd21SLinus Walleij 	unsigned limit = 500;
1804ffbbdd21SLinus Walleij 	int ret = 0;
1805ffbbdd21SLinus Walleij 
18068caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
1807ffbbdd21SLinus Walleij 
1808ffbbdd21SLinus Walleij 	/*
1809ffbbdd21SLinus Walleij 	 * This is a bit lame, but is optimized for the common execution path.
18108caab75fSGeert Uytterhoeven 	 * A wait_queue on the ctlr->busy could be used, but then the common
1811ffbbdd21SLinus Walleij 	 * execution path (pump_messages) would be required to call wake_up or
1812ffbbdd21SLinus Walleij 	 * friends on every SPI message. Do this instead.
1813ffbbdd21SLinus Walleij 	 */
18148caab75fSGeert Uytterhoeven 	while ((!list_empty(&ctlr->queue) || ctlr->busy) && limit--) {
18158caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1816f97b26b0SAxel Lin 		usleep_range(10000, 11000);
18178caab75fSGeert Uytterhoeven 		spin_lock_irqsave(&ctlr->queue_lock, flags);
1818ffbbdd21SLinus Walleij 	}
1819ffbbdd21SLinus Walleij 
18208caab75fSGeert Uytterhoeven 	if (!list_empty(&ctlr->queue) || ctlr->busy)
1821ffbbdd21SLinus Walleij 		ret = -EBUSY;
1822ffbbdd21SLinus Walleij 	else
18238caab75fSGeert Uytterhoeven 		ctlr->running = false;
1824ffbbdd21SLinus Walleij 
18258caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1826ffbbdd21SLinus Walleij 
1827ffbbdd21SLinus Walleij 	if (ret) {
18288caab75fSGeert Uytterhoeven 		dev_warn(&ctlr->dev, "could not stop message queue\n");
1829ffbbdd21SLinus Walleij 		return ret;
1830ffbbdd21SLinus Walleij 	}
1831ffbbdd21SLinus Walleij 	return ret;
1832ffbbdd21SLinus Walleij }
1833ffbbdd21SLinus Walleij 
18348caab75fSGeert Uytterhoeven static int spi_destroy_queue(struct spi_controller *ctlr)
1835ffbbdd21SLinus Walleij {
1836ffbbdd21SLinus Walleij 	int ret;
1837ffbbdd21SLinus Walleij 
18388caab75fSGeert Uytterhoeven 	ret = spi_stop_queue(ctlr);
1839ffbbdd21SLinus Walleij 
1840ffbbdd21SLinus Walleij 	/*
18413989144fSPetr Mladek 	 * kthread_flush_worker will block until all work is done.
1842ffbbdd21SLinus Walleij 	 * If the reason that stop_queue timed out is that the work will never
1843ffbbdd21SLinus Walleij 	 * finish, then it does no good to call flush/stop thread, so
1844ffbbdd21SLinus Walleij 	 * return anyway.
1845ffbbdd21SLinus Walleij 	 */
1846ffbbdd21SLinus Walleij 	if (ret) {
18478caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "problem destroying queue\n");
1848ffbbdd21SLinus Walleij 		return ret;
1849ffbbdd21SLinus Walleij 	}
1850ffbbdd21SLinus Walleij 
185160a883d1SMarek Szyprowski 	kthread_destroy_worker(ctlr->kworker);
1852ffbbdd21SLinus Walleij 
1853ffbbdd21SLinus Walleij 	return 0;
1854ffbbdd21SLinus Walleij }
1855ffbbdd21SLinus Walleij 
18560461a414SMark Brown static int __spi_queued_transfer(struct spi_device *spi,
18570461a414SMark Brown 				 struct spi_message *msg,
18580461a414SMark Brown 				 bool need_pump)
1859ffbbdd21SLinus Walleij {
18608caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
1861ffbbdd21SLinus Walleij 	unsigned long flags;
1862ffbbdd21SLinus Walleij 
18638caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->queue_lock, flags);
1864ffbbdd21SLinus Walleij 
18658caab75fSGeert Uytterhoeven 	if (!ctlr->running) {
18668caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1867ffbbdd21SLinus Walleij 		return -ESHUTDOWN;
1868ffbbdd21SLinus Walleij 	}
1869ffbbdd21SLinus Walleij 	msg->actual_length = 0;
1870ffbbdd21SLinus Walleij 	msg->status = -EINPROGRESS;
1871ffbbdd21SLinus Walleij 
18728caab75fSGeert Uytterhoeven 	list_add_tail(&msg->queue, &ctlr->queue);
1873f0125f1aSMark Brown 	if (!ctlr->busy && need_pump)
187460a883d1SMarek Szyprowski 		kthread_queue_work(ctlr->kworker, &ctlr->pump_messages);
1875ffbbdd21SLinus Walleij 
18768caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->queue_lock, flags);
1877ffbbdd21SLinus Walleij 	return 0;
1878ffbbdd21SLinus Walleij }
1879ffbbdd21SLinus Walleij 
18800461a414SMark Brown /**
18810461a414SMark Brown  * spi_queued_transfer - transfer function for queued transfers
18820461a414SMark Brown  * @spi: spi device which is requesting transfer
18830461a414SMark Brown  * @msg: spi message which is to handled is queued to driver queue
188497d56dc6SJavier Martinez Canillas  *
188597d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
18860461a414SMark Brown  */
18870461a414SMark Brown static int spi_queued_transfer(struct spi_device *spi, struct spi_message *msg)
18880461a414SMark Brown {
18890461a414SMark Brown 	return __spi_queued_transfer(spi, msg, true);
18900461a414SMark Brown }
18910461a414SMark Brown 
18928caab75fSGeert Uytterhoeven static int spi_controller_initialize_queue(struct spi_controller *ctlr)
1893ffbbdd21SLinus Walleij {
1894ffbbdd21SLinus Walleij 	int ret;
1895ffbbdd21SLinus Walleij 
18968caab75fSGeert Uytterhoeven 	ctlr->transfer = spi_queued_transfer;
18978caab75fSGeert Uytterhoeven 	if (!ctlr->transfer_one_message)
18988caab75fSGeert Uytterhoeven 		ctlr->transfer_one_message = spi_transfer_one_message;
1899ffbbdd21SLinus Walleij 
1900ffbbdd21SLinus Walleij 	/* Initialize and start queue */
19018caab75fSGeert Uytterhoeven 	ret = spi_init_queue(ctlr);
1902ffbbdd21SLinus Walleij 	if (ret) {
19038caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "problem initializing queue\n");
1904ffbbdd21SLinus Walleij 		goto err_init_queue;
1905ffbbdd21SLinus Walleij 	}
19068caab75fSGeert Uytterhoeven 	ctlr->queued = true;
19078caab75fSGeert Uytterhoeven 	ret = spi_start_queue(ctlr);
1908ffbbdd21SLinus Walleij 	if (ret) {
19098caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "problem starting queue\n");
1910ffbbdd21SLinus Walleij 		goto err_start_queue;
1911ffbbdd21SLinus Walleij 	}
1912ffbbdd21SLinus Walleij 
1913ffbbdd21SLinus Walleij 	return 0;
1914ffbbdd21SLinus Walleij 
1915ffbbdd21SLinus Walleij err_start_queue:
19168caab75fSGeert Uytterhoeven 	spi_destroy_queue(ctlr);
1917c3676d5cSMark Brown err_init_queue:
1918ffbbdd21SLinus Walleij 	return ret;
1919ffbbdd21SLinus Walleij }
1920ffbbdd21SLinus Walleij 
1921988f259bSBoris Brezillon /**
1922988f259bSBoris Brezillon  * spi_flush_queue - Send all pending messages in the queue from the callers'
1923988f259bSBoris Brezillon  *		     context
1924988f259bSBoris Brezillon  * @ctlr: controller to process queue for
1925988f259bSBoris Brezillon  *
1926988f259bSBoris Brezillon  * This should be used when one wants to ensure all pending messages have been
1927988f259bSBoris Brezillon  * sent before doing something. Is used by the spi-mem code to make sure SPI
1928988f259bSBoris Brezillon  * memory operations do not preempt regular SPI transfers that have been queued
1929988f259bSBoris Brezillon  * before the spi-mem operation.
1930988f259bSBoris Brezillon  */
1931988f259bSBoris Brezillon void spi_flush_queue(struct spi_controller *ctlr)
1932988f259bSBoris Brezillon {
1933988f259bSBoris Brezillon 	if (ctlr->transfer == spi_queued_transfer)
1934988f259bSBoris Brezillon 		__spi_pump_messages(ctlr, false);
1935988f259bSBoris Brezillon }
1936988f259bSBoris Brezillon 
1937ffbbdd21SLinus Walleij /*-------------------------------------------------------------------------*/
1938ffbbdd21SLinus Walleij 
19397cb94361SAndreas Larsson #if defined(CONFIG_OF)
19408caab75fSGeert Uytterhoeven static int of_spi_parse_dt(struct spi_controller *ctlr, struct spi_device *spi,
1941c2e51ac3SGeert Uytterhoeven 			   struct device_node *nc)
1942d57a4282SGrant Likely {
194389da4293STrent Piepho 	u32 value;
1944c2e51ac3SGeert Uytterhoeven 	int rc;
1945d57a4282SGrant Likely 
1946d57a4282SGrant Likely 	/* Mode (clock phase/polarity/etc.) */
1947e0bcb680SSergei Shtylyov 	if (of_property_read_bool(nc, "spi-cpha"))
1948d57a4282SGrant Likely 		spi->mode |= SPI_CPHA;
1949e0bcb680SSergei Shtylyov 	if (of_property_read_bool(nc, "spi-cpol"))
1950d57a4282SGrant Likely 		spi->mode |= SPI_CPOL;
1951e0bcb680SSergei Shtylyov 	if (of_property_read_bool(nc, "spi-3wire"))
1952c20151dfSLars-Peter Clausen 		spi->mode |= SPI_3WIRE;
1953e0bcb680SSergei Shtylyov 	if (of_property_read_bool(nc, "spi-lsb-first"))
1954cd6339e6SZhao Qiang 		spi->mode |= SPI_LSB_FIRST;
19553e5ec1dbSGregory CLEMENT 	if (of_property_read_bool(nc, "spi-cs-high"))
1956f3186dd8SLinus Walleij 		spi->mode |= SPI_CS_HIGH;
1957f3186dd8SLinus Walleij 
1958f477b7fbSwangyuhang 	/* Device DUAL/QUAD mode */
195989da4293STrent Piepho 	if (!of_property_read_u32(nc, "spi-tx-bus-width", &value)) {
196089da4293STrent Piepho 		switch (value) {
1961d962608cSDragos Bogdan 		case 0:
1962d962608cSDragos Bogdan 			spi->mode |= SPI_NO_TX;
1963d962608cSDragos Bogdan 			break;
196489da4293STrent Piepho 		case 1:
1965f477b7fbSwangyuhang 			break;
196689da4293STrent Piepho 		case 2:
1967f477b7fbSwangyuhang 			spi->mode |= SPI_TX_DUAL;
1968f477b7fbSwangyuhang 			break;
196989da4293STrent Piepho 		case 4:
1970f477b7fbSwangyuhang 			spi->mode |= SPI_TX_QUAD;
1971f477b7fbSwangyuhang 			break;
19726b03061fSYogesh Narayan Gaur 		case 8:
19736b03061fSYogesh Narayan Gaur 			spi->mode |= SPI_TX_OCTAL;
19746b03061fSYogesh Narayan Gaur 			break;
1975f477b7fbSwangyuhang 		default:
19768caab75fSGeert Uytterhoeven 			dev_warn(&ctlr->dev,
1977a110f93dSwangyuhang 				"spi-tx-bus-width %d not supported\n",
197889da4293STrent Piepho 				value);
197980874d8cSGeert Uytterhoeven 			break;
1980f477b7fbSwangyuhang 		}
1981a822e99cSMark Brown 	}
1982f477b7fbSwangyuhang 
198389da4293STrent Piepho 	if (!of_property_read_u32(nc, "spi-rx-bus-width", &value)) {
198489da4293STrent Piepho 		switch (value) {
1985d962608cSDragos Bogdan 		case 0:
1986d962608cSDragos Bogdan 			spi->mode |= SPI_NO_RX;
1987d962608cSDragos Bogdan 			break;
198889da4293STrent Piepho 		case 1:
1989f477b7fbSwangyuhang 			break;
199089da4293STrent Piepho 		case 2:
1991f477b7fbSwangyuhang 			spi->mode |= SPI_RX_DUAL;
1992f477b7fbSwangyuhang 			break;
199389da4293STrent Piepho 		case 4:
1994f477b7fbSwangyuhang 			spi->mode |= SPI_RX_QUAD;
1995f477b7fbSwangyuhang 			break;
19966b03061fSYogesh Narayan Gaur 		case 8:
19976b03061fSYogesh Narayan Gaur 			spi->mode |= SPI_RX_OCTAL;
19986b03061fSYogesh Narayan Gaur 			break;
1999f477b7fbSwangyuhang 		default:
20008caab75fSGeert Uytterhoeven 			dev_warn(&ctlr->dev,
2001a110f93dSwangyuhang 				"spi-rx-bus-width %d not supported\n",
200289da4293STrent Piepho 				value);
200380874d8cSGeert Uytterhoeven 			break;
2004f477b7fbSwangyuhang 		}
2005a822e99cSMark Brown 	}
2006f477b7fbSwangyuhang 
20078caab75fSGeert Uytterhoeven 	if (spi_controller_is_slave(ctlr)) {
2008194276b0SRob Herring 		if (!of_node_name_eq(nc, "slave")) {
200925c56c88SRob Herring 			dev_err(&ctlr->dev, "%pOF is not called 'slave'\n",
201025c56c88SRob Herring 				nc);
20116c364062SGeert Uytterhoeven 			return -EINVAL;
20126c364062SGeert Uytterhoeven 		}
20136c364062SGeert Uytterhoeven 		return 0;
20146c364062SGeert Uytterhoeven 	}
20156c364062SGeert Uytterhoeven 
20166c364062SGeert Uytterhoeven 	/* Device address */
20176c364062SGeert Uytterhoeven 	rc = of_property_read_u32(nc, "reg", &value);
20186c364062SGeert Uytterhoeven 	if (rc) {
201925c56c88SRob Herring 		dev_err(&ctlr->dev, "%pOF has no valid 'reg' property (%d)\n",
202025c56c88SRob Herring 			nc, rc);
20216c364062SGeert Uytterhoeven 		return rc;
20226c364062SGeert Uytterhoeven 	}
20236c364062SGeert Uytterhoeven 	spi->chip_select = value;
20246c364062SGeert Uytterhoeven 
2025d57a4282SGrant Likely 	/* Device speed */
2026671c3bf5SChuanhong Guo 	if (!of_property_read_u32(nc, "spi-max-frequency", &value))
202789da4293STrent Piepho 		spi->max_speed_hz = value;
2028d57a4282SGrant Likely 
2029c2e51ac3SGeert Uytterhoeven 	return 0;
2030c2e51ac3SGeert Uytterhoeven }
2031c2e51ac3SGeert Uytterhoeven 
2032c2e51ac3SGeert Uytterhoeven static struct spi_device *
20338caab75fSGeert Uytterhoeven of_register_spi_device(struct spi_controller *ctlr, struct device_node *nc)
2034c2e51ac3SGeert Uytterhoeven {
2035c2e51ac3SGeert Uytterhoeven 	struct spi_device *spi;
2036c2e51ac3SGeert Uytterhoeven 	int rc;
2037c2e51ac3SGeert Uytterhoeven 
2038c2e51ac3SGeert Uytterhoeven 	/* Alloc an spi_device */
20398caab75fSGeert Uytterhoeven 	spi = spi_alloc_device(ctlr);
2040c2e51ac3SGeert Uytterhoeven 	if (!spi) {
204125c56c88SRob Herring 		dev_err(&ctlr->dev, "spi_device alloc error for %pOF\n", nc);
2042c2e51ac3SGeert Uytterhoeven 		rc = -ENOMEM;
2043c2e51ac3SGeert Uytterhoeven 		goto err_out;
2044c2e51ac3SGeert Uytterhoeven 	}
2045c2e51ac3SGeert Uytterhoeven 
2046c2e51ac3SGeert Uytterhoeven 	/* Select device driver */
2047c2e51ac3SGeert Uytterhoeven 	rc = of_modalias_node(nc, spi->modalias,
2048c2e51ac3SGeert Uytterhoeven 				sizeof(spi->modalias));
2049c2e51ac3SGeert Uytterhoeven 	if (rc < 0) {
205025c56c88SRob Herring 		dev_err(&ctlr->dev, "cannot find modalias for %pOF\n", nc);
2051c2e51ac3SGeert Uytterhoeven 		goto err_out;
2052c2e51ac3SGeert Uytterhoeven 	}
2053c2e51ac3SGeert Uytterhoeven 
20548caab75fSGeert Uytterhoeven 	rc = of_spi_parse_dt(ctlr, spi, nc);
2055c2e51ac3SGeert Uytterhoeven 	if (rc)
2056c2e51ac3SGeert Uytterhoeven 		goto err_out;
2057c2e51ac3SGeert Uytterhoeven 
2058d57a4282SGrant Likely 	/* Store a pointer to the node in the device structure */
2059d57a4282SGrant Likely 	of_node_get(nc);
2060d57a4282SGrant Likely 	spi->dev.of_node = nc;
2061d57a4282SGrant Likely 
2062d57a4282SGrant Likely 	/* Register the new device */
2063d57a4282SGrant Likely 	rc = spi_add_device(spi);
2064d57a4282SGrant Likely 	if (rc) {
206525c56c88SRob Herring 		dev_err(&ctlr->dev, "spi_device register error %pOF\n", nc);
20668324147fSJohan Hovold 		goto err_of_node_put;
2067d57a4282SGrant Likely 	}
2068d57a4282SGrant Likely 
2069aff5e3f8SPantelis Antoniou 	return spi;
2070aff5e3f8SPantelis Antoniou 
20718324147fSJohan Hovold err_of_node_put:
20728324147fSJohan Hovold 	of_node_put(nc);
2073aff5e3f8SPantelis Antoniou err_out:
2074aff5e3f8SPantelis Antoniou 	spi_dev_put(spi);
2075aff5e3f8SPantelis Antoniou 	return ERR_PTR(rc);
2076aff5e3f8SPantelis Antoniou }
2077aff5e3f8SPantelis Antoniou 
2078aff5e3f8SPantelis Antoniou /**
2079aff5e3f8SPantelis Antoniou  * of_register_spi_devices() - Register child devices onto the SPI bus
20808caab75fSGeert Uytterhoeven  * @ctlr:	Pointer to spi_controller device
2081aff5e3f8SPantelis Antoniou  *
20826c364062SGeert Uytterhoeven  * Registers an spi_device for each child node of controller node which
20836c364062SGeert Uytterhoeven  * represents a valid SPI slave.
2084aff5e3f8SPantelis Antoniou  */
20858caab75fSGeert Uytterhoeven static void of_register_spi_devices(struct spi_controller *ctlr)
2086aff5e3f8SPantelis Antoniou {
2087aff5e3f8SPantelis Antoniou 	struct spi_device *spi;
2088aff5e3f8SPantelis Antoniou 	struct device_node *nc;
2089aff5e3f8SPantelis Antoniou 
20908caab75fSGeert Uytterhoeven 	if (!ctlr->dev.of_node)
2091aff5e3f8SPantelis Antoniou 		return;
2092aff5e3f8SPantelis Antoniou 
20938caab75fSGeert Uytterhoeven 	for_each_available_child_of_node(ctlr->dev.of_node, nc) {
2094bd6c1644SGeert Uytterhoeven 		if (of_node_test_and_set_flag(nc, OF_POPULATED))
2095bd6c1644SGeert Uytterhoeven 			continue;
20968caab75fSGeert Uytterhoeven 		spi = of_register_spi_device(ctlr, nc);
2097e0af98a7SRalf Ramsauer 		if (IS_ERR(spi)) {
20988caab75fSGeert Uytterhoeven 			dev_warn(&ctlr->dev,
209925c56c88SRob Herring 				 "Failed to create SPI device for %pOF\n", nc);
2100e0af98a7SRalf Ramsauer 			of_node_clear_flag(nc, OF_POPULATED);
2101e0af98a7SRalf Ramsauer 		}
2102d57a4282SGrant Likely 	}
2103d57a4282SGrant Likely }
2104d57a4282SGrant Likely #else
21058caab75fSGeert Uytterhoeven static void of_register_spi_devices(struct spi_controller *ctlr) { }
2106d57a4282SGrant Likely #endif
2107d57a4282SGrant Likely 
210864bee4d2SMika Westerberg #ifdef CONFIG_ACPI
21094c3c5954SArd Biesheuvel struct acpi_spi_lookup {
21104c3c5954SArd Biesheuvel 	struct spi_controller 	*ctlr;
21114c3c5954SArd Biesheuvel 	u32			max_speed_hz;
21124c3c5954SArd Biesheuvel 	u32			mode;
21134c3c5954SArd Biesheuvel 	int			irq;
21144c3c5954SArd Biesheuvel 	u8			bits_per_word;
21154c3c5954SArd Biesheuvel 	u8			chip_select;
21164c3c5954SArd Biesheuvel };
21174c3c5954SArd Biesheuvel 
21184c3c5954SArd Biesheuvel static void acpi_spi_parse_apple_properties(struct acpi_device *dev,
21194c3c5954SArd Biesheuvel 					    struct acpi_spi_lookup *lookup)
21208a2e487eSLukas Wunner {
21218a2e487eSLukas Wunner 	const union acpi_object *obj;
21228a2e487eSLukas Wunner 
21238a2e487eSLukas Wunner 	if (!x86_apple_machine)
21248a2e487eSLukas Wunner 		return;
21258a2e487eSLukas Wunner 
21268a2e487eSLukas Wunner 	if (!acpi_dev_get_property(dev, "spiSclkPeriod", ACPI_TYPE_BUFFER, &obj)
21278a2e487eSLukas Wunner 	    && obj->buffer.length >= 4)
21284c3c5954SArd Biesheuvel 		lookup->max_speed_hz  = NSEC_PER_SEC / *(u32 *)obj->buffer.pointer;
21298a2e487eSLukas Wunner 
21308a2e487eSLukas Wunner 	if (!acpi_dev_get_property(dev, "spiWordSize", ACPI_TYPE_BUFFER, &obj)
21318a2e487eSLukas Wunner 	    && obj->buffer.length == 8)
21324c3c5954SArd Biesheuvel 		lookup->bits_per_word = *(u64 *)obj->buffer.pointer;
21338a2e487eSLukas Wunner 
21348a2e487eSLukas Wunner 	if (!acpi_dev_get_property(dev, "spiBitOrder", ACPI_TYPE_BUFFER, &obj)
21358a2e487eSLukas Wunner 	    && obj->buffer.length == 8 && !*(u64 *)obj->buffer.pointer)
21364c3c5954SArd Biesheuvel 		lookup->mode |= SPI_LSB_FIRST;
21378a2e487eSLukas Wunner 
21388a2e487eSLukas Wunner 	if (!acpi_dev_get_property(dev, "spiSPO", ACPI_TYPE_BUFFER, &obj)
21398a2e487eSLukas Wunner 	    && obj->buffer.length == 8 &&  *(u64 *)obj->buffer.pointer)
21404c3c5954SArd Biesheuvel 		lookup->mode |= SPI_CPOL;
21418a2e487eSLukas Wunner 
21428a2e487eSLukas Wunner 	if (!acpi_dev_get_property(dev, "spiSPH", ACPI_TYPE_BUFFER, &obj)
21438a2e487eSLukas Wunner 	    && obj->buffer.length == 8 &&  *(u64 *)obj->buffer.pointer)
21444c3c5954SArd Biesheuvel 		lookup->mode |= SPI_CPHA;
21458a2e487eSLukas Wunner }
21468a2e487eSLukas Wunner 
214764bee4d2SMika Westerberg static int acpi_spi_add_resource(struct acpi_resource *ares, void *data)
214864bee4d2SMika Westerberg {
21494c3c5954SArd Biesheuvel 	struct acpi_spi_lookup *lookup = data;
21504c3c5954SArd Biesheuvel 	struct spi_controller *ctlr = lookup->ctlr;
215164bee4d2SMika Westerberg 
215264bee4d2SMika Westerberg 	if (ares->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
215364bee4d2SMika Westerberg 		struct acpi_resource_spi_serialbus *sb;
21544c3c5954SArd Biesheuvel 		acpi_handle parent_handle;
21554c3c5954SArd Biesheuvel 		acpi_status status;
215664bee4d2SMika Westerberg 
215764bee4d2SMika Westerberg 		sb = &ares->data.spi_serial_bus;
215864bee4d2SMika Westerberg 		if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_SPI) {
21594c3c5954SArd Biesheuvel 
21604c3c5954SArd Biesheuvel 			status = acpi_get_handle(NULL,
21614c3c5954SArd Biesheuvel 						 sb->resource_source.string_ptr,
21624c3c5954SArd Biesheuvel 						 &parent_handle);
21634c3c5954SArd Biesheuvel 
2164b5e3cf41SArd Biesheuvel 			if (ACPI_FAILURE(status) ||
21654c3c5954SArd Biesheuvel 			    ACPI_HANDLE(ctlr->dev.parent) != parent_handle)
21664c3c5954SArd Biesheuvel 				return -ENODEV;
21674c3c5954SArd Biesheuvel 
2168a0a90718SMika Westerberg 			/*
2169a0a90718SMika Westerberg 			 * ACPI DeviceSelection numbering is handled by the
2170a0a90718SMika Westerberg 			 * host controller driver in Windows and can vary
2171a0a90718SMika Westerberg 			 * from driver to driver. In Linux we always expect
2172a0a90718SMika Westerberg 			 * 0 .. max - 1 so we need to ask the driver to
2173a0a90718SMika Westerberg 			 * translate between the two schemes.
2174a0a90718SMika Westerberg 			 */
21758caab75fSGeert Uytterhoeven 			if (ctlr->fw_translate_cs) {
21768caab75fSGeert Uytterhoeven 				int cs = ctlr->fw_translate_cs(ctlr,
2177a0a90718SMika Westerberg 						sb->device_selection);
2178a0a90718SMika Westerberg 				if (cs < 0)
2179a0a90718SMika Westerberg 					return cs;
21804c3c5954SArd Biesheuvel 				lookup->chip_select = cs;
2181a0a90718SMika Westerberg 			} else {
21824c3c5954SArd Biesheuvel 				lookup->chip_select = sb->device_selection;
2183a0a90718SMika Westerberg 			}
2184a0a90718SMika Westerberg 
21854c3c5954SArd Biesheuvel 			lookup->max_speed_hz = sb->connection_speed;
21860dadde34SAndy Shevchenko 			lookup->bits_per_word = sb->data_bit_length;
218764bee4d2SMika Westerberg 
218864bee4d2SMika Westerberg 			if (sb->clock_phase == ACPI_SPI_SECOND_PHASE)
21894c3c5954SArd Biesheuvel 				lookup->mode |= SPI_CPHA;
219064bee4d2SMika Westerberg 			if (sb->clock_polarity == ACPI_SPI_START_HIGH)
21914c3c5954SArd Biesheuvel 				lookup->mode |= SPI_CPOL;
219264bee4d2SMika Westerberg 			if (sb->device_polarity == ACPI_SPI_ACTIVE_HIGH)
21934c3c5954SArd Biesheuvel 				lookup->mode |= SPI_CS_HIGH;
219464bee4d2SMika Westerberg 		}
21954c3c5954SArd Biesheuvel 	} else if (lookup->irq < 0) {
219664bee4d2SMika Westerberg 		struct resource r;
219764bee4d2SMika Westerberg 
219864bee4d2SMika Westerberg 		if (acpi_dev_resource_interrupt(ares, 0, &r))
21994c3c5954SArd Biesheuvel 			lookup->irq = r.start;
220064bee4d2SMika Westerberg 	}
220164bee4d2SMika Westerberg 
220264bee4d2SMika Westerberg 	/* Always tell the ACPI core to skip this resource */
220364bee4d2SMika Westerberg 	return 1;
220464bee4d2SMika Westerberg }
220564bee4d2SMika Westerberg 
22068caab75fSGeert Uytterhoeven static acpi_status acpi_register_spi_device(struct spi_controller *ctlr,
22077f24467fSOctavian Purdila 					    struct acpi_device *adev)
220864bee4d2SMika Westerberg {
22094c3c5954SArd Biesheuvel 	acpi_handle parent_handle = NULL;
221064bee4d2SMika Westerberg 	struct list_head resource_list;
2211b28944c6SArd Biesheuvel 	struct acpi_spi_lookup lookup = {};
221264bee4d2SMika Westerberg 	struct spi_device *spi;
221364bee4d2SMika Westerberg 	int ret;
221464bee4d2SMika Westerberg 
22157f24467fSOctavian Purdila 	if (acpi_bus_get_status(adev) || !adev->status.present ||
22167f24467fSOctavian Purdila 	    acpi_device_enumerated(adev))
221764bee4d2SMika Westerberg 		return AE_OK;
221864bee4d2SMika Westerberg 
22194c3c5954SArd Biesheuvel 	lookup.ctlr		= ctlr;
22204c3c5954SArd Biesheuvel 	lookup.irq		= -1;
22214c3c5954SArd Biesheuvel 
22224c3c5954SArd Biesheuvel 	INIT_LIST_HEAD(&resource_list);
22234c3c5954SArd Biesheuvel 	ret = acpi_dev_get_resources(adev, &resource_list,
22244c3c5954SArd Biesheuvel 				     acpi_spi_add_resource, &lookup);
22254c3c5954SArd Biesheuvel 	acpi_dev_free_resource_list(&resource_list);
22264c3c5954SArd Biesheuvel 
22274c3c5954SArd Biesheuvel 	if (ret < 0)
22284c3c5954SArd Biesheuvel 		/* found SPI in _CRS but it points to another controller */
22294c3c5954SArd Biesheuvel 		return AE_OK;
22304c3c5954SArd Biesheuvel 
22314c3c5954SArd Biesheuvel 	if (!lookup.max_speed_hz &&
223210e92724SBjorn Helgaas 	    ACPI_SUCCESS(acpi_get_parent(adev->handle, &parent_handle)) &&
22334c3c5954SArd Biesheuvel 	    ACPI_HANDLE(ctlr->dev.parent) == parent_handle) {
22344c3c5954SArd Biesheuvel 		/* Apple does not use _CRS but nested devices for SPI slaves */
22354c3c5954SArd Biesheuvel 		acpi_spi_parse_apple_properties(adev, &lookup);
22364c3c5954SArd Biesheuvel 	}
22374c3c5954SArd Biesheuvel 
22384c3c5954SArd Biesheuvel 	if (!lookup.max_speed_hz)
22394c3c5954SArd Biesheuvel 		return AE_OK;
22404c3c5954SArd Biesheuvel 
22418caab75fSGeert Uytterhoeven 	spi = spi_alloc_device(ctlr);
224264bee4d2SMika Westerberg 	if (!spi) {
22438caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "failed to allocate SPI device for %s\n",
224464bee4d2SMika Westerberg 			dev_name(&adev->dev));
224564bee4d2SMika Westerberg 		return AE_NO_MEMORY;
224664bee4d2SMika Westerberg 	}
224764bee4d2SMika Westerberg 
2248ea235786SJohn Garry 
22497b199811SRafael J. Wysocki 	ACPI_COMPANION_SET(&spi->dev, adev);
22504c3c5954SArd Biesheuvel 	spi->max_speed_hz	= lookup.max_speed_hz;
2251ea235786SJohn Garry 	spi->mode		|= lookup.mode;
22524c3c5954SArd Biesheuvel 	spi->irq		= lookup.irq;
22534c3c5954SArd Biesheuvel 	spi->bits_per_word	= lookup.bits_per_word;
22544c3c5954SArd Biesheuvel 	spi->chip_select	= lookup.chip_select;
225564bee4d2SMika Westerberg 
22560c6543f6SDan O'Donovan 	acpi_set_modalias(adev, acpi_device_hid(adev), spi->modalias,
22570c6543f6SDan O'Donovan 			  sizeof(spi->modalias));
22580c6543f6SDan O'Donovan 
225933ada67dSChristophe RICARD 	if (spi->irq < 0)
226033ada67dSChristophe RICARD 		spi->irq = acpi_dev_gpio_irq_get(adev, 0);
226133ada67dSChristophe RICARD 
22627f24467fSOctavian Purdila 	acpi_device_set_enumerated(adev);
22637f24467fSOctavian Purdila 
226433cf00e5SMika Westerberg 	adev->power.flags.ignore_parent = true;
226564bee4d2SMika Westerberg 	if (spi_add_device(spi)) {
226633cf00e5SMika Westerberg 		adev->power.flags.ignore_parent = false;
22678caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "failed to add SPI device %s from ACPI\n",
226864bee4d2SMika Westerberg 			dev_name(&adev->dev));
226964bee4d2SMika Westerberg 		spi_dev_put(spi);
227064bee4d2SMika Westerberg 	}
227164bee4d2SMika Westerberg 
227264bee4d2SMika Westerberg 	return AE_OK;
227364bee4d2SMika Westerberg }
227464bee4d2SMika Westerberg 
22757f24467fSOctavian Purdila static acpi_status acpi_spi_add_device(acpi_handle handle, u32 level,
22767f24467fSOctavian Purdila 				       void *data, void **return_value)
22777f24467fSOctavian Purdila {
22788caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = data;
22797f24467fSOctavian Purdila 	struct acpi_device *adev;
22807f24467fSOctavian Purdila 
22817f24467fSOctavian Purdila 	if (acpi_bus_get_device(handle, &adev))
22827f24467fSOctavian Purdila 		return AE_OK;
22837f24467fSOctavian Purdila 
22848caab75fSGeert Uytterhoeven 	return acpi_register_spi_device(ctlr, adev);
22857f24467fSOctavian Purdila }
22867f24467fSOctavian Purdila 
22874c3c5954SArd Biesheuvel #define SPI_ACPI_ENUMERATE_MAX_DEPTH		32
22884c3c5954SArd Biesheuvel 
22898caab75fSGeert Uytterhoeven static void acpi_register_spi_devices(struct spi_controller *ctlr)
229064bee4d2SMika Westerberg {
229164bee4d2SMika Westerberg 	acpi_status status;
229264bee4d2SMika Westerberg 	acpi_handle handle;
229364bee4d2SMika Westerberg 
22948caab75fSGeert Uytterhoeven 	handle = ACPI_HANDLE(ctlr->dev.parent);
229564bee4d2SMika Westerberg 	if (!handle)
229664bee4d2SMika Westerberg 		return;
229764bee4d2SMika Westerberg 
22984c3c5954SArd Biesheuvel 	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
22994c3c5954SArd Biesheuvel 				     SPI_ACPI_ENUMERATE_MAX_DEPTH,
23008caab75fSGeert Uytterhoeven 				     acpi_spi_add_device, NULL, ctlr, NULL);
230164bee4d2SMika Westerberg 	if (ACPI_FAILURE(status))
23028caab75fSGeert Uytterhoeven 		dev_warn(&ctlr->dev, "failed to enumerate SPI slaves\n");
230364bee4d2SMika Westerberg }
230464bee4d2SMika Westerberg #else
23058caab75fSGeert Uytterhoeven static inline void acpi_register_spi_devices(struct spi_controller *ctlr) {}
230664bee4d2SMika Westerberg #endif /* CONFIG_ACPI */
230764bee4d2SMika Westerberg 
23088caab75fSGeert Uytterhoeven static void spi_controller_release(struct device *dev)
23098ae12a0dSDavid Brownell {
23108caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr;
23118ae12a0dSDavid Brownell 
23128caab75fSGeert Uytterhoeven 	ctlr = container_of(dev, struct spi_controller, dev);
23138caab75fSGeert Uytterhoeven 	kfree(ctlr);
23148ae12a0dSDavid Brownell }
23158ae12a0dSDavid Brownell 
23168ae12a0dSDavid Brownell static struct class spi_master_class = {
23178ae12a0dSDavid Brownell 	.name		= "spi_master",
23188ae12a0dSDavid Brownell 	.owner		= THIS_MODULE,
23198caab75fSGeert Uytterhoeven 	.dev_release	= spi_controller_release,
2320eca2ebc7SMartin Sperl 	.dev_groups	= spi_master_groups,
23218ae12a0dSDavid Brownell };
23228ae12a0dSDavid Brownell 
23236c364062SGeert Uytterhoeven #ifdef CONFIG_SPI_SLAVE
23246c364062SGeert Uytterhoeven /**
23256c364062SGeert Uytterhoeven  * spi_slave_abort - abort the ongoing transfer request on an SPI slave
23266c364062SGeert Uytterhoeven  *		     controller
23276c364062SGeert Uytterhoeven  * @spi: device used for the current transfer
23286c364062SGeert Uytterhoeven  */
23296c364062SGeert Uytterhoeven int spi_slave_abort(struct spi_device *spi)
23306c364062SGeert Uytterhoeven {
23318caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
23326c364062SGeert Uytterhoeven 
23338caab75fSGeert Uytterhoeven 	if (spi_controller_is_slave(ctlr) && ctlr->slave_abort)
23348caab75fSGeert Uytterhoeven 		return ctlr->slave_abort(ctlr);
23356c364062SGeert Uytterhoeven 
23366c364062SGeert Uytterhoeven 	return -ENOTSUPP;
23376c364062SGeert Uytterhoeven }
23386c364062SGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_slave_abort);
23396c364062SGeert Uytterhoeven 
23406c364062SGeert Uytterhoeven static int match_true(struct device *dev, void *data)
23416c364062SGeert Uytterhoeven {
23426c364062SGeert Uytterhoeven 	return 1;
23436c364062SGeert Uytterhoeven }
23446c364062SGeert Uytterhoeven 
2345cc8b4659SGeert Uytterhoeven static ssize_t slave_show(struct device *dev, struct device_attribute *attr,
2346cc8b4659SGeert Uytterhoeven 			  char *buf)
23476c364062SGeert Uytterhoeven {
23488caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = container_of(dev, struct spi_controller,
23498caab75fSGeert Uytterhoeven 						   dev);
23506c364062SGeert Uytterhoeven 	struct device *child;
23516c364062SGeert Uytterhoeven 
23526c364062SGeert Uytterhoeven 	child = device_find_child(&ctlr->dev, NULL, match_true);
23536c364062SGeert Uytterhoeven 	return sprintf(buf, "%s\n",
23546c364062SGeert Uytterhoeven 		       child ? to_spi_device(child)->modalias : NULL);
23556c364062SGeert Uytterhoeven }
23566c364062SGeert Uytterhoeven 
2357cc8b4659SGeert Uytterhoeven static ssize_t slave_store(struct device *dev, struct device_attribute *attr,
2358cc8b4659SGeert Uytterhoeven 			   const char *buf, size_t count)
23596c364062SGeert Uytterhoeven {
23608caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = container_of(dev, struct spi_controller,
23618caab75fSGeert Uytterhoeven 						   dev);
23626c364062SGeert Uytterhoeven 	struct spi_device *spi;
23636c364062SGeert Uytterhoeven 	struct device *child;
23646c364062SGeert Uytterhoeven 	char name[32];
23656c364062SGeert Uytterhoeven 	int rc;
23666c364062SGeert Uytterhoeven 
23676c364062SGeert Uytterhoeven 	rc = sscanf(buf, "%31s", name);
23686c364062SGeert Uytterhoeven 	if (rc != 1 || !name[0])
23696c364062SGeert Uytterhoeven 		return -EINVAL;
23706c364062SGeert Uytterhoeven 
23716c364062SGeert Uytterhoeven 	child = device_find_child(&ctlr->dev, NULL, match_true);
23726c364062SGeert Uytterhoeven 	if (child) {
23736c364062SGeert Uytterhoeven 		/* Remove registered slave */
23746c364062SGeert Uytterhoeven 		device_unregister(child);
23756c364062SGeert Uytterhoeven 		put_device(child);
23766c364062SGeert Uytterhoeven 	}
23776c364062SGeert Uytterhoeven 
23786c364062SGeert Uytterhoeven 	if (strcmp(name, "(null)")) {
23796c364062SGeert Uytterhoeven 		/* Register new slave */
23806c364062SGeert Uytterhoeven 		spi = spi_alloc_device(ctlr);
23816c364062SGeert Uytterhoeven 		if (!spi)
23826c364062SGeert Uytterhoeven 			return -ENOMEM;
23836c364062SGeert Uytterhoeven 
23846c364062SGeert Uytterhoeven 		strlcpy(spi->modalias, name, sizeof(spi->modalias));
23856c364062SGeert Uytterhoeven 
23866c364062SGeert Uytterhoeven 		rc = spi_add_device(spi);
23876c364062SGeert Uytterhoeven 		if (rc) {
23886c364062SGeert Uytterhoeven 			spi_dev_put(spi);
23896c364062SGeert Uytterhoeven 			return rc;
23906c364062SGeert Uytterhoeven 		}
23916c364062SGeert Uytterhoeven 	}
23926c364062SGeert Uytterhoeven 
23936c364062SGeert Uytterhoeven 	return count;
23946c364062SGeert Uytterhoeven }
23956c364062SGeert Uytterhoeven 
2396cc8b4659SGeert Uytterhoeven static DEVICE_ATTR_RW(slave);
23976c364062SGeert Uytterhoeven 
23986c364062SGeert Uytterhoeven static struct attribute *spi_slave_attrs[] = {
23996c364062SGeert Uytterhoeven 	&dev_attr_slave.attr,
24006c364062SGeert Uytterhoeven 	NULL,
24016c364062SGeert Uytterhoeven };
24026c364062SGeert Uytterhoeven 
24036c364062SGeert Uytterhoeven static const struct attribute_group spi_slave_group = {
24046c364062SGeert Uytterhoeven 	.attrs = spi_slave_attrs,
24056c364062SGeert Uytterhoeven };
24066c364062SGeert Uytterhoeven 
24076c364062SGeert Uytterhoeven static const struct attribute_group *spi_slave_groups[] = {
24088caab75fSGeert Uytterhoeven 	&spi_controller_statistics_group,
24096c364062SGeert Uytterhoeven 	&spi_slave_group,
24106c364062SGeert Uytterhoeven 	NULL,
24116c364062SGeert Uytterhoeven };
24126c364062SGeert Uytterhoeven 
24136c364062SGeert Uytterhoeven static struct class spi_slave_class = {
24146c364062SGeert Uytterhoeven 	.name		= "spi_slave",
24156c364062SGeert Uytterhoeven 	.owner		= THIS_MODULE,
24168caab75fSGeert Uytterhoeven 	.dev_release	= spi_controller_release,
24176c364062SGeert Uytterhoeven 	.dev_groups	= spi_slave_groups,
24186c364062SGeert Uytterhoeven };
24196c364062SGeert Uytterhoeven #else
24206c364062SGeert Uytterhoeven extern struct class spi_slave_class;	/* dummy */
24216c364062SGeert Uytterhoeven #endif
24228ae12a0dSDavid Brownell 
24238ae12a0dSDavid Brownell /**
24246c364062SGeert Uytterhoeven  * __spi_alloc_controller - allocate an SPI master or slave controller
24258ae12a0dSDavid Brownell  * @dev: the controller, possibly using the platform_bus
242633e34dc6SDavid Brownell  * @size: how much zeroed driver-private data to allocate; the pointer to this
2427229e6af1SLukas Wunner  *	memory is in the driver_data field of the returned device, accessible
2428229e6af1SLukas Wunner  *	with spi_controller_get_devdata(); the memory is cacheline aligned;
2429229e6af1SLukas Wunner  *	drivers granting DMA access to portions of their private data need to
2430229e6af1SLukas Wunner  *	round up @size using ALIGN(size, dma_get_cache_alignment()).
24316c364062SGeert Uytterhoeven  * @slave: flag indicating whether to allocate an SPI master (false) or SPI
24326c364062SGeert Uytterhoeven  *	slave (true) controller
243333e34dc6SDavid Brownell  * Context: can sleep
24348ae12a0dSDavid Brownell  *
24356c364062SGeert Uytterhoeven  * This call is used only by SPI controller drivers, which are the
24368ae12a0dSDavid Brownell  * only ones directly touching chip registers.  It's how they allocate
24378caab75fSGeert Uytterhoeven  * an spi_controller structure, prior to calling spi_register_controller().
24388ae12a0dSDavid Brownell  *
243997d56dc6SJavier Martinez Canillas  * This must be called from context that can sleep.
24408ae12a0dSDavid Brownell  *
24416c364062SGeert Uytterhoeven  * The caller is responsible for assigning the bus number and initializing the
24428caab75fSGeert Uytterhoeven  * controller's methods before calling spi_register_controller(); and (after
24438caab75fSGeert Uytterhoeven  * errors adding the device) calling spi_controller_put() to prevent a memory
24448caab75fSGeert Uytterhoeven  * leak.
244597d56dc6SJavier Martinez Canillas  *
24466c364062SGeert Uytterhoeven  * Return: the SPI controller structure on success, else NULL.
24478ae12a0dSDavid Brownell  */
24488caab75fSGeert Uytterhoeven struct spi_controller *__spi_alloc_controller(struct device *dev,
24496c364062SGeert Uytterhoeven 					      unsigned int size, bool slave)
24508ae12a0dSDavid Brownell {
24518caab75fSGeert Uytterhoeven 	struct spi_controller	*ctlr;
2452229e6af1SLukas Wunner 	size_t ctlr_size = ALIGN(sizeof(*ctlr), dma_get_cache_alignment());
24538ae12a0dSDavid Brownell 
24540c868461SDavid Brownell 	if (!dev)
24550c868461SDavid Brownell 		return NULL;
24560c868461SDavid Brownell 
2457229e6af1SLukas Wunner 	ctlr = kzalloc(size + ctlr_size, GFP_KERNEL);
24588caab75fSGeert Uytterhoeven 	if (!ctlr)
24598ae12a0dSDavid Brownell 		return NULL;
24608ae12a0dSDavid Brownell 
24618caab75fSGeert Uytterhoeven 	device_initialize(&ctlr->dev);
24628caab75fSGeert Uytterhoeven 	ctlr->bus_num = -1;
24638caab75fSGeert Uytterhoeven 	ctlr->num_chipselect = 1;
24648caab75fSGeert Uytterhoeven 	ctlr->slave = slave;
24656c364062SGeert Uytterhoeven 	if (IS_ENABLED(CONFIG_SPI_SLAVE) && slave)
24668caab75fSGeert Uytterhoeven 		ctlr->dev.class = &spi_slave_class;
24676c364062SGeert Uytterhoeven 	else
24688caab75fSGeert Uytterhoeven 		ctlr->dev.class = &spi_master_class;
24698caab75fSGeert Uytterhoeven 	ctlr->dev.parent = dev;
24708caab75fSGeert Uytterhoeven 	pm_suspend_ignore_children(&ctlr->dev, true);
2471229e6af1SLukas Wunner 	spi_controller_set_devdata(ctlr, (void *)ctlr + ctlr_size);
24728ae12a0dSDavid Brownell 
24738caab75fSGeert Uytterhoeven 	return ctlr;
24748ae12a0dSDavid Brownell }
24756c364062SGeert Uytterhoeven EXPORT_SYMBOL_GPL(__spi_alloc_controller);
24768ae12a0dSDavid Brownell 
24775e844cc3SLukas Wunner static void devm_spi_release_controller(struct device *dev, void *ctlr)
24785e844cc3SLukas Wunner {
24795e844cc3SLukas Wunner 	spi_controller_put(*(struct spi_controller **)ctlr);
24805e844cc3SLukas Wunner }
24815e844cc3SLukas Wunner 
24825e844cc3SLukas Wunner /**
24835e844cc3SLukas Wunner  * __devm_spi_alloc_controller - resource-managed __spi_alloc_controller()
24845e844cc3SLukas Wunner  * @dev: physical device of SPI controller
24855e844cc3SLukas Wunner  * @size: how much zeroed driver-private data to allocate
24865e844cc3SLukas Wunner  * @slave: whether to allocate an SPI master (false) or SPI slave (true)
24875e844cc3SLukas Wunner  * Context: can sleep
24885e844cc3SLukas Wunner  *
24895e844cc3SLukas Wunner  * Allocate an SPI controller and automatically release a reference on it
24905e844cc3SLukas Wunner  * when @dev is unbound from its driver.  Drivers are thus relieved from
24915e844cc3SLukas Wunner  * having to call spi_controller_put().
24925e844cc3SLukas Wunner  *
24935e844cc3SLukas Wunner  * The arguments to this function are identical to __spi_alloc_controller().
24945e844cc3SLukas Wunner  *
24955e844cc3SLukas Wunner  * Return: the SPI controller structure on success, else NULL.
24965e844cc3SLukas Wunner  */
24975e844cc3SLukas Wunner struct spi_controller *__devm_spi_alloc_controller(struct device *dev,
24985e844cc3SLukas Wunner 						   unsigned int size,
24995e844cc3SLukas Wunner 						   bool slave)
25005e844cc3SLukas Wunner {
25015e844cc3SLukas Wunner 	struct spi_controller **ptr, *ctlr;
25025e844cc3SLukas Wunner 
25035e844cc3SLukas Wunner 	ptr = devres_alloc(devm_spi_release_controller, sizeof(*ptr),
25045e844cc3SLukas Wunner 			   GFP_KERNEL);
25055e844cc3SLukas Wunner 	if (!ptr)
25065e844cc3SLukas Wunner 		return NULL;
25075e844cc3SLukas Wunner 
25085e844cc3SLukas Wunner 	ctlr = __spi_alloc_controller(dev, size, slave);
25095e844cc3SLukas Wunner 	if (ctlr) {
2510794aaf01SWilliam A. Kennington III 		ctlr->devm_allocated = true;
25115e844cc3SLukas Wunner 		*ptr = ctlr;
25125e844cc3SLukas Wunner 		devres_add(dev, ptr);
25135e844cc3SLukas Wunner 	} else {
25145e844cc3SLukas Wunner 		devres_free(ptr);
25155e844cc3SLukas Wunner 	}
25165e844cc3SLukas Wunner 
25175e844cc3SLukas Wunner 	return ctlr;
25185e844cc3SLukas Wunner }
25195e844cc3SLukas Wunner EXPORT_SYMBOL_GPL(__devm_spi_alloc_controller);
25205e844cc3SLukas Wunner 
252174317984SJean-Christophe PLAGNIOL-VILLARD #ifdef CONFIG_OF
252243004f31SLinus Walleij static int of_spi_get_gpio_numbers(struct spi_controller *ctlr)
252374317984SJean-Christophe PLAGNIOL-VILLARD {
2524e80beb27SGrant Likely 	int nb, i, *cs;
25258caab75fSGeert Uytterhoeven 	struct device_node *np = ctlr->dev.of_node;
252674317984SJean-Christophe PLAGNIOL-VILLARD 
252774317984SJean-Christophe PLAGNIOL-VILLARD 	if (!np)
252874317984SJean-Christophe PLAGNIOL-VILLARD 		return 0;
252974317984SJean-Christophe PLAGNIOL-VILLARD 
253074317984SJean-Christophe PLAGNIOL-VILLARD 	nb = of_gpio_named_count(np, "cs-gpios");
25318caab75fSGeert Uytterhoeven 	ctlr->num_chipselect = max_t(int, nb, ctlr->num_chipselect);
253274317984SJean-Christophe PLAGNIOL-VILLARD 
25338ec5d84eSAndreas Larsson 	/* Return error only for an incorrectly formed cs-gpios property */
25348ec5d84eSAndreas Larsson 	if (nb == 0 || nb == -ENOENT)
253574317984SJean-Christophe PLAGNIOL-VILLARD 		return 0;
25368ec5d84eSAndreas Larsson 	else if (nb < 0)
25378ec5d84eSAndreas Larsson 		return nb;
253874317984SJean-Christophe PLAGNIOL-VILLARD 
2539a86854d0SKees Cook 	cs = devm_kcalloc(&ctlr->dev, ctlr->num_chipselect, sizeof(int),
254074317984SJean-Christophe PLAGNIOL-VILLARD 			  GFP_KERNEL);
25418caab75fSGeert Uytterhoeven 	ctlr->cs_gpios = cs;
254274317984SJean-Christophe PLAGNIOL-VILLARD 
25438caab75fSGeert Uytterhoeven 	if (!ctlr->cs_gpios)
254474317984SJean-Christophe PLAGNIOL-VILLARD 		return -ENOMEM;
254574317984SJean-Christophe PLAGNIOL-VILLARD 
25468caab75fSGeert Uytterhoeven 	for (i = 0; i < ctlr->num_chipselect; i++)
2547446411e1SAndreas Larsson 		cs[i] = -ENOENT;
254874317984SJean-Christophe PLAGNIOL-VILLARD 
254974317984SJean-Christophe PLAGNIOL-VILLARD 	for (i = 0; i < nb; i++)
255074317984SJean-Christophe PLAGNIOL-VILLARD 		cs[i] = of_get_named_gpio(np, "cs-gpios", i);
255174317984SJean-Christophe PLAGNIOL-VILLARD 
255274317984SJean-Christophe PLAGNIOL-VILLARD 	return 0;
255374317984SJean-Christophe PLAGNIOL-VILLARD }
255474317984SJean-Christophe PLAGNIOL-VILLARD #else
255543004f31SLinus Walleij static int of_spi_get_gpio_numbers(struct spi_controller *ctlr)
255674317984SJean-Christophe PLAGNIOL-VILLARD {
255774317984SJean-Christophe PLAGNIOL-VILLARD 	return 0;
255874317984SJean-Christophe PLAGNIOL-VILLARD }
255974317984SJean-Christophe PLAGNIOL-VILLARD #endif
256074317984SJean-Christophe PLAGNIOL-VILLARD 
2561f3186dd8SLinus Walleij /**
2562f3186dd8SLinus Walleij  * spi_get_gpio_descs() - grab chip select GPIOs for the master
2563f3186dd8SLinus Walleij  * @ctlr: The SPI master to grab GPIO descriptors for
2564f3186dd8SLinus Walleij  */
2565f3186dd8SLinus Walleij static int spi_get_gpio_descs(struct spi_controller *ctlr)
2566f3186dd8SLinus Walleij {
2567f3186dd8SLinus Walleij 	int nb, i;
2568f3186dd8SLinus Walleij 	struct gpio_desc **cs;
2569f3186dd8SLinus Walleij 	struct device *dev = &ctlr->dev;
25707d93aecdSGeert Uytterhoeven 	unsigned long native_cs_mask = 0;
25717d93aecdSGeert Uytterhoeven 	unsigned int num_cs_gpios = 0;
2572f3186dd8SLinus Walleij 
2573f3186dd8SLinus Walleij 	nb = gpiod_count(dev, "cs");
257431ed8ebcSAndy Shevchenko 	if (nb < 0) {
2575f3186dd8SLinus Walleij 		/* No GPIOs at all is fine, else return the error */
257631ed8ebcSAndy Shevchenko 		if (nb == -ENOENT)
2577f3186dd8SLinus Walleij 			return 0;
2578f3186dd8SLinus Walleij 		return nb;
257931ed8ebcSAndy Shevchenko 	}
258031ed8ebcSAndy Shevchenko 
258131ed8ebcSAndy Shevchenko 	ctlr->num_chipselect = max_t(int, nb, ctlr->num_chipselect);
2582f3186dd8SLinus Walleij 
2583f3186dd8SLinus Walleij 	cs = devm_kcalloc(dev, ctlr->num_chipselect, sizeof(*cs),
2584f3186dd8SLinus Walleij 			  GFP_KERNEL);
2585f3186dd8SLinus Walleij 	if (!cs)
2586f3186dd8SLinus Walleij 		return -ENOMEM;
2587f3186dd8SLinus Walleij 	ctlr->cs_gpiods = cs;
2588f3186dd8SLinus Walleij 
2589f3186dd8SLinus Walleij 	for (i = 0; i < nb; i++) {
2590f3186dd8SLinus Walleij 		/*
2591f3186dd8SLinus Walleij 		 * Most chipselects are active low, the inverted
2592f3186dd8SLinus Walleij 		 * semantics are handled by special quirks in gpiolib,
2593f3186dd8SLinus Walleij 		 * so initializing them GPIOD_OUT_LOW here means
2594f3186dd8SLinus Walleij 		 * "unasserted", in most cases this will drive the physical
2595f3186dd8SLinus Walleij 		 * line high.
2596f3186dd8SLinus Walleij 		 */
2597f3186dd8SLinus Walleij 		cs[i] = devm_gpiod_get_index_optional(dev, "cs", i,
2598f3186dd8SLinus Walleij 						      GPIOD_OUT_LOW);
25991723fdecSGeert Uytterhoeven 		if (IS_ERR(cs[i]))
26001723fdecSGeert Uytterhoeven 			return PTR_ERR(cs[i]);
2601f3186dd8SLinus Walleij 
2602f3186dd8SLinus Walleij 		if (cs[i]) {
2603f3186dd8SLinus Walleij 			/*
2604f3186dd8SLinus Walleij 			 * If we find a CS GPIO, name it after the device and
2605f3186dd8SLinus Walleij 			 * chip select line.
2606f3186dd8SLinus Walleij 			 */
2607f3186dd8SLinus Walleij 			char *gpioname;
2608f3186dd8SLinus Walleij 
2609f3186dd8SLinus Walleij 			gpioname = devm_kasprintf(dev, GFP_KERNEL, "%s CS%d",
2610f3186dd8SLinus Walleij 						  dev_name(dev), i);
2611f3186dd8SLinus Walleij 			if (!gpioname)
2612f3186dd8SLinus Walleij 				return -ENOMEM;
2613f3186dd8SLinus Walleij 			gpiod_set_consumer_name(cs[i], gpioname);
26147d93aecdSGeert Uytterhoeven 			num_cs_gpios++;
26157d93aecdSGeert Uytterhoeven 			continue;
2616f3186dd8SLinus Walleij 		}
26177d93aecdSGeert Uytterhoeven 
26187d93aecdSGeert Uytterhoeven 		if (ctlr->max_native_cs && i >= ctlr->max_native_cs) {
26197d93aecdSGeert Uytterhoeven 			dev_err(dev, "Invalid native chip select %d\n", i);
26207d93aecdSGeert Uytterhoeven 			return -EINVAL;
26217d93aecdSGeert Uytterhoeven 		}
26227d93aecdSGeert Uytterhoeven 		native_cs_mask |= BIT(i);
26237d93aecdSGeert Uytterhoeven 	}
26247d93aecdSGeert Uytterhoeven 
26257d93aecdSGeert Uytterhoeven 	ctlr->unused_native_cs = ffz(native_cs_mask);
26267d93aecdSGeert Uytterhoeven 	if (num_cs_gpios && ctlr->max_native_cs &&
26277d93aecdSGeert Uytterhoeven 	    ctlr->unused_native_cs >= ctlr->max_native_cs) {
26287d93aecdSGeert Uytterhoeven 		dev_err(dev, "No unused native chip select available\n");
26297d93aecdSGeert Uytterhoeven 		return -EINVAL;
2630f3186dd8SLinus Walleij 	}
2631f3186dd8SLinus Walleij 
2632f3186dd8SLinus Walleij 	return 0;
2633f3186dd8SLinus Walleij }
2634f3186dd8SLinus Walleij 
2635bdf3a3b5SBoris Brezillon static int spi_controller_check_ops(struct spi_controller *ctlr)
2636bdf3a3b5SBoris Brezillon {
2637bdf3a3b5SBoris Brezillon 	/*
2638b5932f5cSBoris Brezillon 	 * The controller may implement only the high-level SPI-memory like
2639b5932f5cSBoris Brezillon 	 * operations if it does not support regular SPI transfers, and this is
2640b5932f5cSBoris Brezillon 	 * valid use case.
2641b5932f5cSBoris Brezillon 	 * If ->mem_ops is NULL, we request that at least one of the
2642b5932f5cSBoris Brezillon 	 * ->transfer_xxx() method be implemented.
2643bdf3a3b5SBoris Brezillon 	 */
2644b5932f5cSBoris Brezillon 	if (ctlr->mem_ops) {
2645b5932f5cSBoris Brezillon 		if (!ctlr->mem_ops->exec_op)
2646bdf3a3b5SBoris Brezillon 			return -EINVAL;
2647b5932f5cSBoris Brezillon 	} else if (!ctlr->transfer && !ctlr->transfer_one &&
2648b5932f5cSBoris Brezillon 		   !ctlr->transfer_one_message) {
2649b5932f5cSBoris Brezillon 		return -EINVAL;
2650b5932f5cSBoris Brezillon 	}
2651bdf3a3b5SBoris Brezillon 
2652bdf3a3b5SBoris Brezillon 	return 0;
2653bdf3a3b5SBoris Brezillon }
2654bdf3a3b5SBoris Brezillon 
26558ae12a0dSDavid Brownell /**
26568caab75fSGeert Uytterhoeven  * spi_register_controller - register SPI master or slave controller
26578caab75fSGeert Uytterhoeven  * @ctlr: initialized master, originally from spi_alloc_master() or
26588caab75fSGeert Uytterhoeven  *	spi_alloc_slave()
265933e34dc6SDavid Brownell  * Context: can sleep
26608ae12a0dSDavid Brownell  *
26618caab75fSGeert Uytterhoeven  * SPI controllers connect to their drivers using some non-SPI bus,
26628ae12a0dSDavid Brownell  * such as the platform bus.  The final stage of probe() in that code
26638caab75fSGeert Uytterhoeven  * includes calling spi_register_controller() to hook up to this SPI bus glue.
26648ae12a0dSDavid Brownell  *
26658ae12a0dSDavid Brownell  * SPI controllers use board specific (often SOC specific) bus numbers,
26668ae12a0dSDavid Brownell  * and board-specific addressing for SPI devices combines those numbers
26678ae12a0dSDavid Brownell  * with chip select numbers.  Since SPI does not directly support dynamic
26688ae12a0dSDavid Brownell  * device identification, boards need configuration tables telling which
26698ae12a0dSDavid Brownell  * chip is at which address.
26708ae12a0dSDavid Brownell  *
26718ae12a0dSDavid Brownell  * This must be called from context that can sleep.  It returns zero on
26728caab75fSGeert Uytterhoeven  * success, else a negative error code (dropping the controller's refcount).
26730c868461SDavid Brownell  * After a successful return, the caller is responsible for calling
26748caab75fSGeert Uytterhoeven  * spi_unregister_controller().
267597d56dc6SJavier Martinez Canillas  *
267697d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
26778ae12a0dSDavid Brownell  */
26788caab75fSGeert Uytterhoeven int spi_register_controller(struct spi_controller *ctlr)
26798ae12a0dSDavid Brownell {
26808caab75fSGeert Uytterhoeven 	struct device		*dev = ctlr->dev.parent;
26812b9603a0SFeng Tang 	struct boardinfo	*bi;
2682b93318a2SSergei Shtylyov 	int			status;
268342bdd706SLucas Stach 	int			id, first_dynamic;
26848ae12a0dSDavid Brownell 
26850c868461SDavid Brownell 	if (!dev)
26860c868461SDavid Brownell 		return -ENODEV;
26870c868461SDavid Brownell 
2688bdf3a3b5SBoris Brezillon 	/*
2689bdf3a3b5SBoris Brezillon 	 * Make sure all necessary hooks are implemented before registering
2690bdf3a3b5SBoris Brezillon 	 * the SPI controller.
2691bdf3a3b5SBoris Brezillon 	 */
2692bdf3a3b5SBoris Brezillon 	status = spi_controller_check_ops(ctlr);
2693bdf3a3b5SBoris Brezillon 	if (status)
2694bdf3a3b5SBoris Brezillon 		return status;
2695bdf3a3b5SBoris Brezillon 
269604b2d03aSGeert Uytterhoeven 	if (ctlr->bus_num >= 0) {
269704b2d03aSGeert Uytterhoeven 		/* devices with a fixed bus num must check-in with the num */
269804b2d03aSGeert Uytterhoeven 		mutex_lock(&board_lock);
269904b2d03aSGeert Uytterhoeven 		id = idr_alloc(&spi_master_idr, ctlr, ctlr->bus_num,
270004b2d03aSGeert Uytterhoeven 			ctlr->bus_num + 1, GFP_KERNEL);
270104b2d03aSGeert Uytterhoeven 		mutex_unlock(&board_lock);
270204b2d03aSGeert Uytterhoeven 		if (WARN(id < 0, "couldn't get idr"))
270304b2d03aSGeert Uytterhoeven 			return id == -ENOSPC ? -EBUSY : id;
270404b2d03aSGeert Uytterhoeven 		ctlr->bus_num = id;
270504b2d03aSGeert Uytterhoeven 	} else if (ctlr->dev.of_node) {
27069b61e302SSuniel Mahesh 		/* allocate dynamic bus number using Linux idr */
27079b61e302SSuniel Mahesh 		id = of_alias_get_id(ctlr->dev.of_node, "spi");
27089b61e302SSuniel Mahesh 		if (id >= 0) {
27099b61e302SSuniel Mahesh 			ctlr->bus_num = id;
27109b61e302SSuniel Mahesh 			mutex_lock(&board_lock);
27119b61e302SSuniel Mahesh 			id = idr_alloc(&spi_master_idr, ctlr, ctlr->bus_num,
27129b61e302SSuniel Mahesh 				       ctlr->bus_num + 1, GFP_KERNEL);
27139b61e302SSuniel Mahesh 			mutex_unlock(&board_lock);
27149b61e302SSuniel Mahesh 			if (WARN(id < 0, "couldn't get idr"))
27159b61e302SSuniel Mahesh 				return id == -ENOSPC ? -EBUSY : id;
27169b61e302SSuniel Mahesh 		}
27179b61e302SSuniel Mahesh 	}
27188caab75fSGeert Uytterhoeven 	if (ctlr->bus_num < 0) {
271942bdd706SLucas Stach 		first_dynamic = of_alias_get_highest_id("spi");
272042bdd706SLucas Stach 		if (first_dynamic < 0)
272142bdd706SLucas Stach 			first_dynamic = 0;
272242bdd706SLucas Stach 		else
272342bdd706SLucas Stach 			first_dynamic++;
272442bdd706SLucas Stach 
27259b61e302SSuniel Mahesh 		mutex_lock(&board_lock);
272642bdd706SLucas Stach 		id = idr_alloc(&spi_master_idr, ctlr, first_dynamic,
272742bdd706SLucas Stach 			       0, GFP_KERNEL);
27289b61e302SSuniel Mahesh 		mutex_unlock(&board_lock);
27299b61e302SSuniel Mahesh 		if (WARN(id < 0, "couldn't get idr"))
27309b61e302SSuniel Mahesh 			return id;
27319b61e302SSuniel Mahesh 		ctlr->bus_num = id;
27328ae12a0dSDavid Brownell 	}
27338caab75fSGeert Uytterhoeven 	INIT_LIST_HEAD(&ctlr->queue);
27348caab75fSGeert Uytterhoeven 	spin_lock_init(&ctlr->queue_lock);
27358caab75fSGeert Uytterhoeven 	spin_lock_init(&ctlr->bus_lock_spinlock);
27368caab75fSGeert Uytterhoeven 	mutex_init(&ctlr->bus_lock_mutex);
27378caab75fSGeert Uytterhoeven 	mutex_init(&ctlr->io_mutex);
27388caab75fSGeert Uytterhoeven 	ctlr->bus_lock_flag = 0;
27398caab75fSGeert Uytterhoeven 	init_completion(&ctlr->xfer_completion);
27408caab75fSGeert Uytterhoeven 	if (!ctlr->max_dma_len)
27418caab75fSGeert Uytterhoeven 		ctlr->max_dma_len = INT_MAX;
2742cf32b71eSErnst Schwab 
27438ae12a0dSDavid Brownell 	/* register the device, then userspace will see it.
27448ae12a0dSDavid Brownell 	 * registration fails if the bus ID is in use.
27458ae12a0dSDavid Brownell 	 */
27468caab75fSGeert Uytterhoeven 	dev_set_name(&ctlr->dev, "spi%u", ctlr->bus_num);
27470a919ae4SAndrey Smirnov 
27480a919ae4SAndrey Smirnov 	if (!spi_controller_is_slave(ctlr)) {
27490a919ae4SAndrey Smirnov 		if (ctlr->use_gpio_descriptors) {
27500a919ae4SAndrey Smirnov 			status = spi_get_gpio_descs(ctlr);
27510a919ae4SAndrey Smirnov 			if (status)
2752f9981d4fSAaro Koskinen 				goto free_bus_id;
27530a919ae4SAndrey Smirnov 			/*
27540a919ae4SAndrey Smirnov 			 * A controller using GPIO descriptors always
27550a919ae4SAndrey Smirnov 			 * supports SPI_CS_HIGH if need be.
27560a919ae4SAndrey Smirnov 			 */
27570a919ae4SAndrey Smirnov 			ctlr->mode_bits |= SPI_CS_HIGH;
27580a919ae4SAndrey Smirnov 		} else {
27590a919ae4SAndrey Smirnov 			/* Legacy code path for GPIOs from DT */
276043004f31SLinus Walleij 			status = of_spi_get_gpio_numbers(ctlr);
27610a919ae4SAndrey Smirnov 			if (status)
2762f9981d4fSAaro Koskinen 				goto free_bus_id;
27630a919ae4SAndrey Smirnov 		}
27640a919ae4SAndrey Smirnov 	}
27650a919ae4SAndrey Smirnov 
2766f9481b08STudor Ambarus 	/*
2767f9481b08STudor Ambarus 	 * Even if it's just one always-selected device, there must
2768f9481b08STudor Ambarus 	 * be at least one chipselect.
2769f9481b08STudor Ambarus 	 */
2770f9981d4fSAaro Koskinen 	if (!ctlr->num_chipselect) {
2771f9981d4fSAaro Koskinen 		status = -EINVAL;
2772f9981d4fSAaro Koskinen 		goto free_bus_id;
2773f9981d4fSAaro Koskinen 	}
2774f9481b08STudor Ambarus 
27758caab75fSGeert Uytterhoeven 	status = device_add(&ctlr->dev);
2776f9981d4fSAaro Koskinen 	if (status < 0)
2777f9981d4fSAaro Koskinen 		goto free_bus_id;
27789b61e302SSuniel Mahesh 	dev_dbg(dev, "registered %s %s\n",
27798caab75fSGeert Uytterhoeven 			spi_controller_is_slave(ctlr) ? "slave" : "master",
27809b61e302SSuniel Mahesh 			dev_name(&ctlr->dev));
27818ae12a0dSDavid Brownell 
2782b5932f5cSBoris Brezillon 	/*
2783b5932f5cSBoris Brezillon 	 * If we're using a queued driver, start the queue. Note that we don't
2784b5932f5cSBoris Brezillon 	 * need the queueing logic if the driver is only supporting high-level
2785b5932f5cSBoris Brezillon 	 * memory operations.
2786b5932f5cSBoris Brezillon 	 */
2787b5932f5cSBoris Brezillon 	if (ctlr->transfer) {
27888caab75fSGeert Uytterhoeven 		dev_info(dev, "controller is unqueued, this is deprecated\n");
2789b5932f5cSBoris Brezillon 	} else if (ctlr->transfer_one || ctlr->transfer_one_message) {
27908caab75fSGeert Uytterhoeven 		status = spi_controller_initialize_queue(ctlr);
2791ffbbdd21SLinus Walleij 		if (status) {
27928caab75fSGeert Uytterhoeven 			device_del(&ctlr->dev);
2793f9981d4fSAaro Koskinen 			goto free_bus_id;
2794ffbbdd21SLinus Walleij 		}
2795ffbbdd21SLinus Walleij 	}
2796eca2ebc7SMartin Sperl 	/* add statistics */
27978caab75fSGeert Uytterhoeven 	spin_lock_init(&ctlr->statistics.lock);
2798ffbbdd21SLinus Walleij 
27992b9603a0SFeng Tang 	mutex_lock(&board_lock);
28008caab75fSGeert Uytterhoeven 	list_add_tail(&ctlr->list, &spi_controller_list);
28012b9603a0SFeng Tang 	list_for_each_entry(bi, &board_list, list)
28028caab75fSGeert Uytterhoeven 		spi_match_controller_to_boardinfo(ctlr, &bi->board_info);
28032b9603a0SFeng Tang 	mutex_unlock(&board_lock);
28042b9603a0SFeng Tang 
280564bee4d2SMika Westerberg 	/* Register devices from the device tree and ACPI */
28068caab75fSGeert Uytterhoeven 	of_register_spi_devices(ctlr);
28078caab75fSGeert Uytterhoeven 	acpi_register_spi_devices(ctlr);
2808f9981d4fSAaro Koskinen 	return status;
2809f9981d4fSAaro Koskinen 
2810f9981d4fSAaro Koskinen free_bus_id:
2811f9981d4fSAaro Koskinen 	mutex_lock(&board_lock);
2812f9981d4fSAaro Koskinen 	idr_remove(&spi_master_idr, ctlr->bus_num);
2813f9981d4fSAaro Koskinen 	mutex_unlock(&board_lock);
28148ae12a0dSDavid Brownell 	return status;
28158ae12a0dSDavid Brownell }
28168caab75fSGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_register_controller);
28178ae12a0dSDavid Brownell 
281859ebbe40STian Tao static void devm_spi_unregister(void *ctlr)
2819666d5b4cSMark Brown {
282059ebbe40STian Tao 	spi_unregister_controller(ctlr);
2821666d5b4cSMark Brown }
2822666d5b4cSMark Brown 
2823666d5b4cSMark Brown /**
28248caab75fSGeert Uytterhoeven  * devm_spi_register_controller - register managed SPI master or slave
28258caab75fSGeert Uytterhoeven  *	controller
28268caab75fSGeert Uytterhoeven  * @dev:    device managing SPI controller
28278caab75fSGeert Uytterhoeven  * @ctlr: initialized controller, originally from spi_alloc_master() or
28288caab75fSGeert Uytterhoeven  *	spi_alloc_slave()
2829666d5b4cSMark Brown  * Context: can sleep
2830666d5b4cSMark Brown  *
28318caab75fSGeert Uytterhoeven  * Register a SPI device as with spi_register_controller() which will
283268b892f1SJohan Hovold  * automatically be unregistered and freed.
283397d56dc6SJavier Martinez Canillas  *
283497d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
2835666d5b4cSMark Brown  */
28368caab75fSGeert Uytterhoeven int devm_spi_register_controller(struct device *dev,
28378caab75fSGeert Uytterhoeven 				 struct spi_controller *ctlr)
2838666d5b4cSMark Brown {
2839666d5b4cSMark Brown 	int ret;
2840666d5b4cSMark Brown 
28418caab75fSGeert Uytterhoeven 	ret = spi_register_controller(ctlr);
284259ebbe40STian Tao 	if (ret)
2843666d5b4cSMark Brown 		return ret;
284459ebbe40STian Tao 
284559ebbe40STian Tao 	return devm_add_action_or_reset(dev, devm_spi_unregister, ctlr);
2846666d5b4cSMark Brown }
28478caab75fSGeert Uytterhoeven EXPORT_SYMBOL_GPL(devm_spi_register_controller);
2848666d5b4cSMark Brown 
284934860089SDavid Lamparter static int __unregister(struct device *dev, void *null)
28508ae12a0dSDavid Brownell {
28510c868461SDavid Brownell 	spi_unregister_device(to_spi_device(dev));
28528ae12a0dSDavid Brownell 	return 0;
28538ae12a0dSDavid Brownell }
28548ae12a0dSDavid Brownell 
28558ae12a0dSDavid Brownell /**
28568caab75fSGeert Uytterhoeven  * spi_unregister_controller - unregister SPI master or slave controller
28578caab75fSGeert Uytterhoeven  * @ctlr: the controller being unregistered
285833e34dc6SDavid Brownell  * Context: can sleep
28598ae12a0dSDavid Brownell  *
28608caab75fSGeert Uytterhoeven  * This call is used only by SPI controller drivers, which are the
28618ae12a0dSDavid Brownell  * only ones directly touching chip registers.
28628ae12a0dSDavid Brownell  *
28638ae12a0dSDavid Brownell  * This must be called from context that can sleep.
286468b892f1SJohan Hovold  *
286568b892f1SJohan Hovold  * Note that this function also drops a reference to the controller.
28668ae12a0dSDavid Brownell  */
28678caab75fSGeert Uytterhoeven void spi_unregister_controller(struct spi_controller *ctlr)
28688ae12a0dSDavid Brownell {
28699b61e302SSuniel Mahesh 	struct spi_controller *found;
287067f7b278SJohan Hovold 	int id = ctlr->bus_num;
287189fc9a1aSJeff Garzik 
2872ddf75be4SLukas Wunner 	/* Prevent addition of new devices, unregister existing ones */
2873ddf75be4SLukas Wunner 	if (IS_ENABLED(CONFIG_SPI_DYNAMIC))
2874ddf75be4SLukas Wunner 		mutex_lock(&spi_add_lock);
2875ddf75be4SLukas Wunner 
287684855678SLukas Wunner 	device_for_each_child(&ctlr->dev, NULL, __unregister);
287784855678SLukas Wunner 
28789b61e302SSuniel Mahesh 	/* First make sure that this controller was ever added */
28799b61e302SSuniel Mahesh 	mutex_lock(&board_lock);
288067f7b278SJohan Hovold 	found = idr_find(&spi_master_idr, id);
28819b61e302SSuniel Mahesh 	mutex_unlock(&board_lock);
28828caab75fSGeert Uytterhoeven 	if (ctlr->queued) {
28838caab75fSGeert Uytterhoeven 		if (spi_destroy_queue(ctlr))
28848caab75fSGeert Uytterhoeven 			dev_err(&ctlr->dev, "queue remove failed\n");
2885ffbbdd21SLinus Walleij 	}
28862b9603a0SFeng Tang 	mutex_lock(&board_lock);
28878caab75fSGeert Uytterhoeven 	list_del(&ctlr->list);
28882b9603a0SFeng Tang 	mutex_unlock(&board_lock);
28892b9603a0SFeng Tang 
28905e844cc3SLukas Wunner 	device_del(&ctlr->dev);
28915e844cc3SLukas Wunner 
28925e844cc3SLukas Wunner 	/* Release the last reference on the controller if its driver
28935e844cc3SLukas Wunner 	 * has not yet been converted to devm_spi_alloc_master/slave().
28945e844cc3SLukas Wunner 	 */
2895794aaf01SWilliam A. Kennington III 	if (!ctlr->devm_allocated)
28965e844cc3SLukas Wunner 		put_device(&ctlr->dev);
28975e844cc3SLukas Wunner 
28989b61e302SSuniel Mahesh 	/* free bus id */
28999b61e302SSuniel Mahesh 	mutex_lock(&board_lock);
2900613bd1eaSJarkko Nikula 	if (found == ctlr)
290167f7b278SJohan Hovold 		idr_remove(&spi_master_idr, id);
29029b61e302SSuniel Mahesh 	mutex_unlock(&board_lock);
2903ddf75be4SLukas Wunner 
2904ddf75be4SLukas Wunner 	if (IS_ENABLED(CONFIG_SPI_DYNAMIC))
2905ddf75be4SLukas Wunner 		mutex_unlock(&spi_add_lock);
29068ae12a0dSDavid Brownell }
29078caab75fSGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_unregister_controller);
29088ae12a0dSDavid Brownell 
29098caab75fSGeert Uytterhoeven int spi_controller_suspend(struct spi_controller *ctlr)
2910ffbbdd21SLinus Walleij {
2911ffbbdd21SLinus Walleij 	int ret;
2912ffbbdd21SLinus Walleij 
29138caab75fSGeert Uytterhoeven 	/* Basically no-ops for non-queued controllers */
29148caab75fSGeert Uytterhoeven 	if (!ctlr->queued)
2915ffbbdd21SLinus Walleij 		return 0;
2916ffbbdd21SLinus Walleij 
29178caab75fSGeert Uytterhoeven 	ret = spi_stop_queue(ctlr);
2918ffbbdd21SLinus Walleij 	if (ret)
29198caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "queue stop failed\n");
2920ffbbdd21SLinus Walleij 
2921ffbbdd21SLinus Walleij 	return ret;
2922ffbbdd21SLinus Walleij }
29238caab75fSGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_controller_suspend);
2924ffbbdd21SLinus Walleij 
29258caab75fSGeert Uytterhoeven int spi_controller_resume(struct spi_controller *ctlr)
2926ffbbdd21SLinus Walleij {
2927ffbbdd21SLinus Walleij 	int ret;
2928ffbbdd21SLinus Walleij 
29298caab75fSGeert Uytterhoeven 	if (!ctlr->queued)
2930ffbbdd21SLinus Walleij 		return 0;
2931ffbbdd21SLinus Walleij 
29328caab75fSGeert Uytterhoeven 	ret = spi_start_queue(ctlr);
2933ffbbdd21SLinus Walleij 	if (ret)
29348caab75fSGeert Uytterhoeven 		dev_err(&ctlr->dev, "queue restart failed\n");
2935ffbbdd21SLinus Walleij 
2936ffbbdd21SLinus Walleij 	return ret;
2937ffbbdd21SLinus Walleij }
29388caab75fSGeert Uytterhoeven EXPORT_SYMBOL_GPL(spi_controller_resume);
2939ffbbdd21SLinus Walleij 
29408caab75fSGeert Uytterhoeven static int __spi_controller_match(struct device *dev, const void *data)
29415ed2c832SDave Young {
29428caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr;
29439f3b795aSMichał Mirosław 	const u16 *bus_num = data;
29445ed2c832SDave Young 
29458caab75fSGeert Uytterhoeven 	ctlr = container_of(dev, struct spi_controller, dev);
29468caab75fSGeert Uytterhoeven 	return ctlr->bus_num == *bus_num;
29475ed2c832SDave Young }
29485ed2c832SDave Young 
29498ae12a0dSDavid Brownell /**
29508ae12a0dSDavid Brownell  * spi_busnum_to_master - look up master associated with bus_num
29518ae12a0dSDavid Brownell  * @bus_num: the master's bus number
295233e34dc6SDavid Brownell  * Context: can sleep
29538ae12a0dSDavid Brownell  *
29548ae12a0dSDavid Brownell  * This call may be used with devices that are registered after
29558ae12a0dSDavid Brownell  * arch init time.  It returns a refcounted pointer to the relevant
29568caab75fSGeert Uytterhoeven  * spi_controller (which the caller must release), or NULL if there is
29578ae12a0dSDavid Brownell  * no such master registered.
295897d56dc6SJavier Martinez Canillas  *
295997d56dc6SJavier Martinez Canillas  * Return: the SPI master structure on success, else NULL.
29608ae12a0dSDavid Brownell  */
29618caab75fSGeert Uytterhoeven struct spi_controller *spi_busnum_to_master(u16 bus_num)
29628ae12a0dSDavid Brownell {
296349dce689STony Jones 	struct device		*dev;
29648caab75fSGeert Uytterhoeven 	struct spi_controller	*ctlr = NULL;
29658ae12a0dSDavid Brownell 
2966695794aeSGreg Kroah-Hartman 	dev = class_find_device(&spi_master_class, NULL, &bus_num,
29678caab75fSGeert Uytterhoeven 				__spi_controller_match);
29685ed2c832SDave Young 	if (dev)
29698caab75fSGeert Uytterhoeven 		ctlr = container_of(dev, struct spi_controller, dev);
29705ed2c832SDave Young 	/* reference got in class_find_device */
29718caab75fSGeert Uytterhoeven 	return ctlr;
29728ae12a0dSDavid Brownell }
29738ae12a0dSDavid Brownell EXPORT_SYMBOL_GPL(spi_busnum_to_master);
29748ae12a0dSDavid Brownell 
2975d780c371SMartin Sperl /*-------------------------------------------------------------------------*/
2976d780c371SMartin Sperl 
2977d780c371SMartin Sperl /* Core methods for SPI resource management */
2978d780c371SMartin Sperl 
2979d780c371SMartin Sperl /**
2980d780c371SMartin Sperl  * spi_res_alloc - allocate a spi resource that is life-cycle managed
2981d780c371SMartin Sperl  *                 during the processing of a spi_message while using
2982d780c371SMartin Sperl  *                 spi_transfer_one
2983d780c371SMartin Sperl  * @spi:     the spi device for which we allocate memory
2984d780c371SMartin Sperl  * @release: the release code to execute for this resource
2985d780c371SMartin Sperl  * @size:    size to alloc and return
2986d780c371SMartin Sperl  * @gfp:     GFP allocation flags
2987d780c371SMartin Sperl  *
2988d780c371SMartin Sperl  * Return: the pointer to the allocated data
2989d780c371SMartin Sperl  *
2990d780c371SMartin Sperl  * This may get enhanced in the future to allocate from a memory pool
29918caab75fSGeert Uytterhoeven  * of the @spi_device or @spi_controller to avoid repeated allocations.
2992d780c371SMartin Sperl  */
2993d780c371SMartin Sperl void *spi_res_alloc(struct spi_device *spi,
2994d780c371SMartin Sperl 		    spi_res_release_t release,
2995d780c371SMartin Sperl 		    size_t size, gfp_t gfp)
2996d780c371SMartin Sperl {
2997d780c371SMartin Sperl 	struct spi_res *sres;
2998d780c371SMartin Sperl 
2999d780c371SMartin Sperl 	sres = kzalloc(sizeof(*sres) + size, gfp);
3000d780c371SMartin Sperl 	if (!sres)
3001d780c371SMartin Sperl 		return NULL;
3002d780c371SMartin Sperl 
3003d780c371SMartin Sperl 	INIT_LIST_HEAD(&sres->entry);
3004d780c371SMartin Sperl 	sres->release = release;
3005d780c371SMartin Sperl 
3006d780c371SMartin Sperl 	return sres->data;
3007d780c371SMartin Sperl }
3008d780c371SMartin Sperl EXPORT_SYMBOL_GPL(spi_res_alloc);
3009d780c371SMartin Sperl 
3010d780c371SMartin Sperl /**
3011d780c371SMartin Sperl  * spi_res_free - free an spi resource
3012d780c371SMartin Sperl  * @res: pointer to the custom data of a resource
3013d780c371SMartin Sperl  *
3014d780c371SMartin Sperl  */
3015d780c371SMartin Sperl void spi_res_free(void *res)
3016d780c371SMartin Sperl {
3017d780c371SMartin Sperl 	struct spi_res *sres = container_of(res, struct spi_res, data);
3018d780c371SMartin Sperl 
3019d780c371SMartin Sperl 	if (!res)
3020d780c371SMartin Sperl 		return;
3021d780c371SMartin Sperl 
3022d780c371SMartin Sperl 	WARN_ON(!list_empty(&sres->entry));
3023d780c371SMartin Sperl 	kfree(sres);
3024d780c371SMartin Sperl }
3025d780c371SMartin Sperl EXPORT_SYMBOL_GPL(spi_res_free);
3026d780c371SMartin Sperl 
3027d780c371SMartin Sperl /**
3028d780c371SMartin Sperl  * spi_res_add - add a spi_res to the spi_message
3029d780c371SMartin Sperl  * @message: the spi message
3030d780c371SMartin Sperl  * @res:     the spi_resource
3031d780c371SMartin Sperl  */
3032d780c371SMartin Sperl void spi_res_add(struct spi_message *message, void *res)
3033d780c371SMartin Sperl {
3034d780c371SMartin Sperl 	struct spi_res *sres = container_of(res, struct spi_res, data);
3035d780c371SMartin Sperl 
3036d780c371SMartin Sperl 	WARN_ON(!list_empty(&sres->entry));
3037d780c371SMartin Sperl 	list_add_tail(&sres->entry, &message->resources);
3038d780c371SMartin Sperl }
3039d780c371SMartin Sperl EXPORT_SYMBOL_GPL(spi_res_add);
3040d780c371SMartin Sperl 
3041d780c371SMartin Sperl /**
3042d780c371SMartin Sperl  * spi_res_release - release all spi resources for this message
30438caab75fSGeert Uytterhoeven  * @ctlr:  the @spi_controller
3044d780c371SMartin Sperl  * @message: the @spi_message
3045d780c371SMartin Sperl  */
30468caab75fSGeert Uytterhoeven void spi_res_release(struct spi_controller *ctlr, struct spi_message *message)
3047d780c371SMartin Sperl {
3048f5694369SVladimir Zapolskiy 	struct spi_res *res, *tmp;
3049d780c371SMartin Sperl 
3050f5694369SVladimir Zapolskiy 	list_for_each_entry_safe_reverse(res, tmp, &message->resources, entry) {
3051d780c371SMartin Sperl 		if (res->release)
30528caab75fSGeert Uytterhoeven 			res->release(ctlr, message, res->data);
3053d780c371SMartin Sperl 
3054d780c371SMartin Sperl 		list_del(&res->entry);
3055d780c371SMartin Sperl 
3056d780c371SMartin Sperl 		kfree(res);
3057d780c371SMartin Sperl 	}
3058d780c371SMartin Sperl }
3059d780c371SMartin Sperl EXPORT_SYMBOL_GPL(spi_res_release);
30608ae12a0dSDavid Brownell 
30618ae12a0dSDavid Brownell /*-------------------------------------------------------------------------*/
30628ae12a0dSDavid Brownell 
3063523baf5aSMartin Sperl /* Core methods for spi_message alterations */
3064523baf5aSMartin Sperl 
30658caab75fSGeert Uytterhoeven static void __spi_replace_transfers_release(struct spi_controller *ctlr,
3066523baf5aSMartin Sperl 					    struct spi_message *msg,
3067523baf5aSMartin Sperl 					    void *res)
3068523baf5aSMartin Sperl {
3069523baf5aSMartin Sperl 	struct spi_replaced_transfers *rxfer = res;
3070523baf5aSMartin Sperl 	size_t i;
3071523baf5aSMartin Sperl 
3072523baf5aSMartin Sperl 	/* call extra callback if requested */
3073523baf5aSMartin Sperl 	if (rxfer->release)
30748caab75fSGeert Uytterhoeven 		rxfer->release(ctlr, msg, res);
3075523baf5aSMartin Sperl 
3076523baf5aSMartin Sperl 	/* insert replaced transfers back into the message */
3077523baf5aSMartin Sperl 	list_splice(&rxfer->replaced_transfers, rxfer->replaced_after);
3078523baf5aSMartin Sperl 
3079523baf5aSMartin Sperl 	/* remove the formerly inserted entries */
3080523baf5aSMartin Sperl 	for (i = 0; i < rxfer->inserted; i++)
3081523baf5aSMartin Sperl 		list_del(&rxfer->inserted_transfers[i].transfer_list);
3082523baf5aSMartin Sperl }
3083523baf5aSMartin Sperl 
3084523baf5aSMartin Sperl /**
3085523baf5aSMartin Sperl  * spi_replace_transfers - replace transfers with several transfers
3086523baf5aSMartin Sperl  *                         and register change with spi_message.resources
3087523baf5aSMartin Sperl  * @msg:           the spi_message we work upon
3088523baf5aSMartin Sperl  * @xfer_first:    the first spi_transfer we want to replace
3089523baf5aSMartin Sperl  * @remove:        number of transfers to remove
3090523baf5aSMartin Sperl  * @insert:        the number of transfers we want to insert instead
3091523baf5aSMartin Sperl  * @release:       extra release code necessary in some circumstances
3092523baf5aSMartin Sperl  * @extradatasize: extra data to allocate (with alignment guarantees
3093523baf5aSMartin Sperl  *                 of struct @spi_transfer)
309405885397SMartin Sperl  * @gfp:           gfp flags
3095523baf5aSMartin Sperl  *
3096523baf5aSMartin Sperl  * Returns: pointer to @spi_replaced_transfers,
3097523baf5aSMartin Sperl  *          PTR_ERR(...) in case of errors.
3098523baf5aSMartin Sperl  */
3099523baf5aSMartin Sperl struct spi_replaced_transfers *spi_replace_transfers(
3100523baf5aSMartin Sperl 	struct spi_message *msg,
3101523baf5aSMartin Sperl 	struct spi_transfer *xfer_first,
3102523baf5aSMartin Sperl 	size_t remove,
3103523baf5aSMartin Sperl 	size_t insert,
3104523baf5aSMartin Sperl 	spi_replaced_release_t release,
3105523baf5aSMartin Sperl 	size_t extradatasize,
3106523baf5aSMartin Sperl 	gfp_t gfp)
3107523baf5aSMartin Sperl {
3108523baf5aSMartin Sperl 	struct spi_replaced_transfers *rxfer;
3109523baf5aSMartin Sperl 	struct spi_transfer *xfer;
3110523baf5aSMartin Sperl 	size_t i;
3111523baf5aSMartin Sperl 
3112523baf5aSMartin Sperl 	/* allocate the structure using spi_res */
3113523baf5aSMartin Sperl 	rxfer = spi_res_alloc(msg->spi, __spi_replace_transfers_release,
3114aef97522SGustavo A. R. Silva 			      struct_size(rxfer, inserted_transfers, insert)
3115523baf5aSMartin Sperl 			      + extradatasize,
3116523baf5aSMartin Sperl 			      gfp);
3117523baf5aSMartin Sperl 	if (!rxfer)
3118523baf5aSMartin Sperl 		return ERR_PTR(-ENOMEM);
3119523baf5aSMartin Sperl 
3120523baf5aSMartin Sperl 	/* the release code to invoke before running the generic release */
3121523baf5aSMartin Sperl 	rxfer->release = release;
3122523baf5aSMartin Sperl 
3123523baf5aSMartin Sperl 	/* assign extradata */
3124523baf5aSMartin Sperl 	if (extradatasize)
3125523baf5aSMartin Sperl 		rxfer->extradata =
3126523baf5aSMartin Sperl 			&rxfer->inserted_transfers[insert];
3127523baf5aSMartin Sperl 
3128523baf5aSMartin Sperl 	/* init the replaced_transfers list */
3129523baf5aSMartin Sperl 	INIT_LIST_HEAD(&rxfer->replaced_transfers);
3130523baf5aSMartin Sperl 
3131523baf5aSMartin Sperl 	/* assign the list_entry after which we should reinsert
3132523baf5aSMartin Sperl 	 * the @replaced_transfers - it may be spi_message.messages!
3133523baf5aSMartin Sperl 	 */
3134523baf5aSMartin Sperl 	rxfer->replaced_after = xfer_first->transfer_list.prev;
3135523baf5aSMartin Sperl 
3136523baf5aSMartin Sperl 	/* remove the requested number of transfers */
3137523baf5aSMartin Sperl 	for (i = 0; i < remove; i++) {
3138523baf5aSMartin Sperl 		/* if the entry after replaced_after it is msg->transfers
3139523baf5aSMartin Sperl 		 * then we have been requested to remove more transfers
3140523baf5aSMartin Sperl 		 * than are in the list
3141523baf5aSMartin Sperl 		 */
3142523baf5aSMartin Sperl 		if (rxfer->replaced_after->next == &msg->transfers) {
3143523baf5aSMartin Sperl 			dev_err(&msg->spi->dev,
3144523baf5aSMartin Sperl 				"requested to remove more spi_transfers than are available\n");
3145523baf5aSMartin Sperl 			/* insert replaced transfers back into the message */
3146523baf5aSMartin Sperl 			list_splice(&rxfer->replaced_transfers,
3147523baf5aSMartin Sperl 				    rxfer->replaced_after);
3148523baf5aSMartin Sperl 
3149523baf5aSMartin Sperl 			/* free the spi_replace_transfer structure */
3150523baf5aSMartin Sperl 			spi_res_free(rxfer);
3151523baf5aSMartin Sperl 
3152523baf5aSMartin Sperl 			/* and return with an error */
3153523baf5aSMartin Sperl 			return ERR_PTR(-EINVAL);
3154523baf5aSMartin Sperl 		}
3155523baf5aSMartin Sperl 
3156523baf5aSMartin Sperl 		/* remove the entry after replaced_after from list of
3157523baf5aSMartin Sperl 		 * transfers and add it to list of replaced_transfers
3158523baf5aSMartin Sperl 		 */
3159523baf5aSMartin Sperl 		list_move_tail(rxfer->replaced_after->next,
3160523baf5aSMartin Sperl 			       &rxfer->replaced_transfers);
3161523baf5aSMartin Sperl 	}
3162523baf5aSMartin Sperl 
3163523baf5aSMartin Sperl 	/* create copy of the given xfer with identical settings
3164523baf5aSMartin Sperl 	 * based on the first transfer to get removed
3165523baf5aSMartin Sperl 	 */
3166523baf5aSMartin Sperl 	for (i = 0; i < insert; i++) {
3167523baf5aSMartin Sperl 		/* we need to run in reverse order */
3168523baf5aSMartin Sperl 		xfer = &rxfer->inserted_transfers[insert - 1 - i];
3169523baf5aSMartin Sperl 
3170523baf5aSMartin Sperl 		/* copy all spi_transfer data */
3171523baf5aSMartin Sperl 		memcpy(xfer, xfer_first, sizeof(*xfer));
3172523baf5aSMartin Sperl 
3173523baf5aSMartin Sperl 		/* add to list */
3174523baf5aSMartin Sperl 		list_add(&xfer->transfer_list, rxfer->replaced_after);
3175523baf5aSMartin Sperl 
3176bebcfd27SAlexandru Ardelean 		/* clear cs_change and delay for all but the last */
3177523baf5aSMartin Sperl 		if (i) {
3178523baf5aSMartin Sperl 			xfer->cs_change = false;
3179bebcfd27SAlexandru Ardelean 			xfer->delay.value = 0;
3180523baf5aSMartin Sperl 		}
3181523baf5aSMartin Sperl 	}
3182523baf5aSMartin Sperl 
3183523baf5aSMartin Sperl 	/* set up inserted */
3184523baf5aSMartin Sperl 	rxfer->inserted = insert;
3185523baf5aSMartin Sperl 
3186523baf5aSMartin Sperl 	/* and register it with spi_res/spi_message */
3187523baf5aSMartin Sperl 	spi_res_add(msg, rxfer);
3188523baf5aSMartin Sperl 
3189523baf5aSMartin Sperl 	return rxfer;
3190523baf5aSMartin Sperl }
3191523baf5aSMartin Sperl EXPORT_SYMBOL_GPL(spi_replace_transfers);
3192523baf5aSMartin Sperl 
31938caab75fSGeert Uytterhoeven static int __spi_split_transfer_maxsize(struct spi_controller *ctlr,
3194d9f12122SMartin Sperl 					struct spi_message *msg,
3195d9f12122SMartin Sperl 					struct spi_transfer **xferp,
3196d9f12122SMartin Sperl 					size_t maxsize,
3197d9f12122SMartin Sperl 					gfp_t gfp)
3198d9f12122SMartin Sperl {
3199d9f12122SMartin Sperl 	struct spi_transfer *xfer = *xferp, *xfers;
3200d9f12122SMartin Sperl 	struct spi_replaced_transfers *srt;
3201d9f12122SMartin Sperl 	size_t offset;
3202d9f12122SMartin Sperl 	size_t count, i;
3203d9f12122SMartin Sperl 
3204d9f12122SMartin Sperl 	/* calculate how many we have to replace */
3205d9f12122SMartin Sperl 	count = DIV_ROUND_UP(xfer->len, maxsize);
3206d9f12122SMartin Sperl 
3207d9f12122SMartin Sperl 	/* create replacement */
3208d9f12122SMartin Sperl 	srt = spi_replace_transfers(msg, xfer, 1, count, NULL, 0, gfp);
3209657d32efSDan Carpenter 	if (IS_ERR(srt))
3210657d32efSDan Carpenter 		return PTR_ERR(srt);
3211d9f12122SMartin Sperl 	xfers = srt->inserted_transfers;
3212d9f12122SMartin Sperl 
3213d9f12122SMartin Sperl 	/* now handle each of those newly inserted spi_transfers
3214d9f12122SMartin Sperl 	 * note that the replacements spi_transfers all are preset
3215d9f12122SMartin Sperl 	 * to the same values as *xferp, so tx_buf, rx_buf and len
3216d9f12122SMartin Sperl 	 * are all identical (as well as most others)
3217d9f12122SMartin Sperl 	 * so we just have to fix up len and the pointers.
3218d9f12122SMartin Sperl 	 *
3219d9f12122SMartin Sperl 	 * this also includes support for the depreciated
3220d9f12122SMartin Sperl 	 * spi_message.is_dma_mapped interface
3221d9f12122SMartin Sperl 	 */
3222d9f12122SMartin Sperl 
3223d9f12122SMartin Sperl 	/* the first transfer just needs the length modified, so we
3224d9f12122SMartin Sperl 	 * run it outside the loop
3225d9f12122SMartin Sperl 	 */
3226c8dab77aSFabio Estevam 	xfers[0].len = min_t(size_t, maxsize, xfer[0].len);
3227d9f12122SMartin Sperl 
3228d9f12122SMartin Sperl 	/* all the others need rx_buf/tx_buf also set */
3229d9f12122SMartin Sperl 	for (i = 1, offset = maxsize; i < count; offset += maxsize, i++) {
3230d9f12122SMartin Sperl 		/* update rx_buf, tx_buf and dma */
3231d9f12122SMartin Sperl 		if (xfers[i].rx_buf)
3232d9f12122SMartin Sperl 			xfers[i].rx_buf += offset;
3233d9f12122SMartin Sperl 		if (xfers[i].rx_dma)
3234d9f12122SMartin Sperl 			xfers[i].rx_dma += offset;
3235d9f12122SMartin Sperl 		if (xfers[i].tx_buf)
3236d9f12122SMartin Sperl 			xfers[i].tx_buf += offset;
3237d9f12122SMartin Sperl 		if (xfers[i].tx_dma)
3238d9f12122SMartin Sperl 			xfers[i].tx_dma += offset;
3239d9f12122SMartin Sperl 
3240d9f12122SMartin Sperl 		/* update length */
3241d9f12122SMartin Sperl 		xfers[i].len = min(maxsize, xfers[i].len - offset);
3242d9f12122SMartin Sperl 	}
3243d9f12122SMartin Sperl 
3244d9f12122SMartin Sperl 	/* we set up xferp to the last entry we have inserted,
3245d9f12122SMartin Sperl 	 * so that we skip those already split transfers
3246d9f12122SMartin Sperl 	 */
3247d9f12122SMartin Sperl 	*xferp = &xfers[count - 1];
3248d9f12122SMartin Sperl 
3249d9f12122SMartin Sperl 	/* increment statistics counters */
32508caab75fSGeert Uytterhoeven 	SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics,
3251d9f12122SMartin Sperl 				       transfers_split_maxsize);
3252d9f12122SMartin Sperl 	SPI_STATISTICS_INCREMENT_FIELD(&msg->spi->statistics,
3253d9f12122SMartin Sperl 				       transfers_split_maxsize);
3254d9f12122SMartin Sperl 
3255d9f12122SMartin Sperl 	return 0;
3256d9f12122SMartin Sperl }
3257d9f12122SMartin Sperl 
3258d9f12122SMartin Sperl /**
3259ce2424d7SMauro Carvalho Chehab  * spi_split_transfers_maxsize - split spi transfers into multiple transfers
3260d9f12122SMartin Sperl  *                               when an individual transfer exceeds a
3261d9f12122SMartin Sperl  *                               certain size
32628caab75fSGeert Uytterhoeven  * @ctlr:    the @spi_controller for this transfer
32633700ce95SMasanari Iida  * @msg:   the @spi_message to transform
32643700ce95SMasanari Iida  * @maxsize:  the maximum when to apply this
326510f11a22SJavier Martinez Canillas  * @gfp: GFP allocation flags
3266d9f12122SMartin Sperl  *
3267d9f12122SMartin Sperl  * Return: status of transformation
3268d9f12122SMartin Sperl  */
32698caab75fSGeert Uytterhoeven int spi_split_transfers_maxsize(struct spi_controller *ctlr,
3270d9f12122SMartin Sperl 				struct spi_message *msg,
3271d9f12122SMartin Sperl 				size_t maxsize,
3272d9f12122SMartin Sperl 				gfp_t gfp)
3273d9f12122SMartin Sperl {
3274d9f12122SMartin Sperl 	struct spi_transfer *xfer;
3275d9f12122SMartin Sperl 	int ret;
3276d9f12122SMartin Sperl 
3277d9f12122SMartin Sperl 	/* iterate over the transfer_list,
3278d9f12122SMartin Sperl 	 * but note that xfer is advanced to the last transfer inserted
3279d9f12122SMartin Sperl 	 * to avoid checking sizes again unnecessarily (also xfer does
3280d9f12122SMartin Sperl 	 * potentiall belong to a different list by the time the
3281d9f12122SMartin Sperl 	 * replacement has happened
3282d9f12122SMartin Sperl 	 */
3283d9f12122SMartin Sperl 	list_for_each_entry(xfer, &msg->transfers, transfer_list) {
3284d9f12122SMartin Sperl 		if (xfer->len > maxsize) {
32858caab75fSGeert Uytterhoeven 			ret = __spi_split_transfer_maxsize(ctlr, msg, &xfer,
32868caab75fSGeert Uytterhoeven 							   maxsize, gfp);
3287d9f12122SMartin Sperl 			if (ret)
3288d9f12122SMartin Sperl 				return ret;
3289d9f12122SMartin Sperl 		}
3290d9f12122SMartin Sperl 	}
3291d9f12122SMartin Sperl 
3292d9f12122SMartin Sperl 	return 0;
3293d9f12122SMartin Sperl }
3294d9f12122SMartin Sperl EXPORT_SYMBOL_GPL(spi_split_transfers_maxsize);
32958ae12a0dSDavid Brownell 
32968ae12a0dSDavid Brownell /*-------------------------------------------------------------------------*/
32978ae12a0dSDavid Brownell 
32988caab75fSGeert Uytterhoeven /* Core methods for SPI controller protocol drivers.  Some of the
32997d077197SDavid Brownell  * other core methods are currently defined as inline functions.
33007d077197SDavid Brownell  */
33017d077197SDavid Brownell 
33028caab75fSGeert Uytterhoeven static int __spi_validate_bits_per_word(struct spi_controller *ctlr,
33038caab75fSGeert Uytterhoeven 					u8 bits_per_word)
330463ab645fSStefan Brüns {
33058caab75fSGeert Uytterhoeven 	if (ctlr->bits_per_word_mask) {
330663ab645fSStefan Brüns 		/* Only 32 bits fit in the mask */
330763ab645fSStefan Brüns 		if (bits_per_word > 32)
330863ab645fSStefan Brüns 			return -EINVAL;
33098caab75fSGeert Uytterhoeven 		if (!(ctlr->bits_per_word_mask & SPI_BPW_MASK(bits_per_word)))
331063ab645fSStefan Brüns 			return -EINVAL;
331163ab645fSStefan Brüns 	}
331263ab645fSStefan Brüns 
331363ab645fSStefan Brüns 	return 0;
331463ab645fSStefan Brüns }
331563ab645fSStefan Brüns 
33167d077197SDavid Brownell /**
33177d077197SDavid Brownell  * spi_setup - setup SPI mode and clock rate
33187d077197SDavid Brownell  * @spi: the device whose settings are being modified
33197d077197SDavid Brownell  * Context: can sleep, and no requests are queued to the device
33207d077197SDavid Brownell  *
33217d077197SDavid Brownell  * SPI protocol drivers may need to update the transfer mode if the
33227d077197SDavid Brownell  * device doesn't work with its default.  They may likewise need
33237d077197SDavid Brownell  * to update clock rates or word sizes from initial values.  This function
33247d077197SDavid Brownell  * changes those settings, and must be called from a context that can sleep.
33257d077197SDavid Brownell  * Except for SPI_CS_HIGH, which takes effect immediately, the changes take
33267d077197SDavid Brownell  * effect the next time the device is selected and data is transferred to
33277d077197SDavid Brownell  * or from it.  When this function returns, the spi device is deselected.
33287d077197SDavid Brownell  *
33297d077197SDavid Brownell  * Note that this call will fail if the protocol driver specifies an option
33307d077197SDavid Brownell  * that the underlying controller or its driver does not support.  For
33317d077197SDavid Brownell  * example, not all hardware supports wire transfers using nine bit words,
33327d077197SDavid Brownell  * LSB-first wire encoding, or active-high chipselects.
333397d56dc6SJavier Martinez Canillas  *
333497d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
33357d077197SDavid Brownell  */
33367d077197SDavid Brownell int spi_setup(struct spi_device *spi)
33377d077197SDavid Brownell {
333883596fbeSGeert Uytterhoeven 	unsigned	bad_bits, ugly_bits;
33395ab8d262SAndy Shevchenko 	int		status;
33407d077197SDavid Brownell 
3341d962608cSDragos Bogdan 	/*
3342d962608cSDragos Bogdan 	 * check mode to prevent that any two of DUAL, QUAD and NO_MOSI/MISO
3343d962608cSDragos Bogdan 	 * are set at the same time
3344f477b7fbSwangyuhang 	 */
3345d962608cSDragos Bogdan 	if ((hweight_long(spi->mode &
3346d962608cSDragos Bogdan 		(SPI_TX_DUAL | SPI_TX_QUAD | SPI_NO_TX)) > 1) ||
3347d962608cSDragos Bogdan 	    (hweight_long(spi->mode &
3348d962608cSDragos Bogdan 		(SPI_RX_DUAL | SPI_RX_QUAD | SPI_NO_RX)) > 1)) {
3349f477b7fbSwangyuhang 		dev_err(&spi->dev,
3350d962608cSDragos Bogdan 		"setup: can not select any two of dual, quad and no-rx/tx at the same time\n");
3351f477b7fbSwangyuhang 		return -EINVAL;
3352f477b7fbSwangyuhang 	}
3353f477b7fbSwangyuhang 	/* if it is SPI_3WIRE mode, DUAL and QUAD should be forbidden
3354f477b7fbSwangyuhang 	 */
3355f477b7fbSwangyuhang 	if ((spi->mode & SPI_3WIRE) && (spi->mode &
33566b03061fSYogesh Narayan Gaur 		(SPI_TX_DUAL | SPI_TX_QUAD | SPI_TX_OCTAL |
33576b03061fSYogesh Narayan Gaur 		 SPI_RX_DUAL | SPI_RX_QUAD | SPI_RX_OCTAL)))
3358f477b7fbSwangyuhang 		return -EINVAL;
3359e7db06b5SDavid Brownell 	/* help drivers fail *cleanly* when they need options
33608caab75fSGeert Uytterhoeven 	 * that aren't supported with their current controller
3361cbaa62e0SDavid Lechner 	 * SPI_CS_WORD has a fallback software implementation,
3362cbaa62e0SDavid Lechner 	 * so it is ignored here.
3363e7db06b5SDavid Brownell 	 */
3364d962608cSDragos Bogdan 	bad_bits = spi->mode & ~(spi->controller->mode_bits | SPI_CS_WORD |
3365d962608cSDragos Bogdan 				 SPI_NO_TX | SPI_NO_RX);
3366d61ad23cSSerge Semin 	/* nothing prevents from working with active-high CS in case if it
3367d61ad23cSSerge Semin 	 * is driven by GPIO.
3368d61ad23cSSerge Semin 	 */
3369d61ad23cSSerge Semin 	if (gpio_is_valid(spi->cs_gpio))
3370d61ad23cSSerge Semin 		bad_bits &= ~SPI_CS_HIGH;
337183596fbeSGeert Uytterhoeven 	ugly_bits = bad_bits &
33726b03061fSYogesh Narayan Gaur 		    (SPI_TX_DUAL | SPI_TX_QUAD | SPI_TX_OCTAL |
33736b03061fSYogesh Narayan Gaur 		     SPI_RX_DUAL | SPI_RX_QUAD | SPI_RX_OCTAL);
337483596fbeSGeert Uytterhoeven 	if (ugly_bits) {
337583596fbeSGeert Uytterhoeven 		dev_warn(&spi->dev,
337683596fbeSGeert Uytterhoeven 			 "setup: ignoring unsupported mode bits %x\n",
337783596fbeSGeert Uytterhoeven 			 ugly_bits);
337883596fbeSGeert Uytterhoeven 		spi->mode &= ~ugly_bits;
337983596fbeSGeert Uytterhoeven 		bad_bits &= ~ugly_bits;
338083596fbeSGeert Uytterhoeven 	}
3381e7db06b5SDavid Brownell 	if (bad_bits) {
3382eb288a1fSLinus Walleij 		dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
3383e7db06b5SDavid Brownell 			bad_bits);
3384e7db06b5SDavid Brownell 		return -EINVAL;
3385e7db06b5SDavid Brownell 	}
3386e7db06b5SDavid Brownell 
33877d077197SDavid Brownell 	if (!spi->bits_per_word)
33887d077197SDavid Brownell 		spi->bits_per_word = 8;
33897d077197SDavid Brownell 
33908caab75fSGeert Uytterhoeven 	status = __spi_validate_bits_per_word(spi->controller,
33918caab75fSGeert Uytterhoeven 					      spi->bits_per_word);
33925ab8d262SAndy Shevchenko 	if (status)
33935ab8d262SAndy Shevchenko 		return status;
339463ab645fSStefan Brüns 
33956820e812STudor Ambarus 	if (spi->controller->max_speed_hz &&
33966820e812STudor Ambarus 	    (!spi->max_speed_hz ||
33976820e812STudor Ambarus 	     spi->max_speed_hz > spi->controller->max_speed_hz))
33988caab75fSGeert Uytterhoeven 		spi->max_speed_hz = spi->controller->max_speed_hz;
3399052eb2d4SAxel Lin 
34004fae3a58SSerge Semin 	mutex_lock(&spi->controller->io_mutex);
34014fae3a58SSerge Semin 
3402c914dbf8SJoe Burmeister 	if (spi->controller->setup) {
34038caab75fSGeert Uytterhoeven 		status = spi->controller->setup(spi);
3404c914dbf8SJoe Burmeister 		if (status) {
3405c914dbf8SJoe Burmeister 			mutex_unlock(&spi->controller->io_mutex);
3406c914dbf8SJoe Burmeister 			dev_err(&spi->controller->dev, "Failed to setup device: %d\n",
3407c914dbf8SJoe Burmeister 				status);
3408c914dbf8SJoe Burmeister 			return status;
3409c914dbf8SJoe Burmeister 		}
3410c914dbf8SJoe Burmeister 	}
34117d077197SDavid Brownell 
3412d948e6caSLuhua Xu 	if (spi->controller->auto_runtime_pm && spi->controller->set_cs) {
3413d948e6caSLuhua Xu 		status = pm_runtime_get_sync(spi->controller->dev.parent);
3414d948e6caSLuhua Xu 		if (status < 0) {
34154fae3a58SSerge Semin 			mutex_unlock(&spi->controller->io_mutex);
3416d948e6caSLuhua Xu 			pm_runtime_put_noidle(spi->controller->dev.parent);
3417d948e6caSLuhua Xu 			dev_err(&spi->controller->dev, "Failed to power device: %d\n",
3418d948e6caSLuhua Xu 				status);
3419d948e6caSLuhua Xu 			return status;
3420d948e6caSLuhua Xu 		}
342157a94607STony Lindgren 
342257a94607STony Lindgren 		/*
342357a94607STony Lindgren 		 * We do not want to return positive value from pm_runtime_get,
342457a94607STony Lindgren 		 * there are many instances of devices calling spi_setup() and
342557a94607STony Lindgren 		 * checking for a non-zero return value instead of a negative
342657a94607STony Lindgren 		 * return value.
342757a94607STony Lindgren 		 */
342857a94607STony Lindgren 		status = 0;
342957a94607STony Lindgren 
3430d347b4aaSDavid Bauer 		spi_set_cs(spi, false, true);
3431d948e6caSLuhua Xu 		pm_runtime_mark_last_busy(spi->controller->dev.parent);
3432d948e6caSLuhua Xu 		pm_runtime_put_autosuspend(spi->controller->dev.parent);
3433d948e6caSLuhua Xu 	} else {
3434d347b4aaSDavid Bauer 		spi_set_cs(spi, false, true);
3435d948e6caSLuhua Xu 	}
3436abeedb01SFranklin S Cooper Jr 
34374fae3a58SSerge Semin 	mutex_unlock(&spi->controller->io_mutex);
34384fae3a58SSerge Semin 
3439924b5867SDouglas Anderson 	if (spi->rt && !spi->controller->rt) {
3440924b5867SDouglas Anderson 		spi->controller->rt = true;
3441924b5867SDouglas Anderson 		spi_set_thread_rt(spi->controller);
3442924b5867SDouglas Anderson 	}
3443924b5867SDouglas Anderson 
3444*40b82c2dSAndy Shevchenko 	dev_dbg(&spi->dev, "setup mode %lu, %s%s%s%s%u bits/w, %u Hz max --> %d\n",
3445*40b82c2dSAndy Shevchenko 			spi->mode & SPI_MODE_X_MASK,
34467d077197SDavid Brownell 			(spi->mode & SPI_CS_HIGH) ? "cs_high, " : "",
34477d077197SDavid Brownell 			(spi->mode & SPI_LSB_FIRST) ? "lsb, " : "",
34487d077197SDavid Brownell 			(spi->mode & SPI_3WIRE) ? "3wire, " : "",
34497d077197SDavid Brownell 			(spi->mode & SPI_LOOP) ? "loopback, " : "",
34507d077197SDavid Brownell 			spi->bits_per_word, spi->max_speed_hz,
34517d077197SDavid Brownell 			status);
34527d077197SDavid Brownell 
34537d077197SDavid Brownell 	return status;
34547d077197SDavid Brownell }
34557d077197SDavid Brownell EXPORT_SYMBOL_GPL(spi_setup);
34567d077197SDavid Brownell 
3457f1ca9992SSowjanya Komatineni /**
3458f1ca9992SSowjanya Komatineni  * spi_set_cs_timing - configure CS setup, hold, and inactive delays
3459f1ca9992SSowjanya Komatineni  * @spi: the device that requires specific CS timing configuration
346081059366SAlexandru Ardelean  * @setup: CS setup time specified via @spi_delay
346181059366SAlexandru Ardelean  * @hold: CS hold time specified via @spi_delay
346281059366SAlexandru Ardelean  * @inactive: CS inactive delay between transfers specified via @spi_delay
346381059366SAlexandru Ardelean  *
346481059366SAlexandru Ardelean  * Return: zero on success, else a negative error code.
3465f1ca9992SSowjanya Komatineni  */
346681059366SAlexandru Ardelean int spi_set_cs_timing(struct spi_device *spi, struct spi_delay *setup,
346781059366SAlexandru Ardelean 		      struct spi_delay *hold, struct spi_delay *inactive)
3468f1ca9992SSowjanya Komatineni {
34694cea6b8cSleilk.liu 	struct device *parent = spi->controller->dev.parent;
347025093bdeSAlexandru Ardelean 	size_t len;
34714cea6b8cSleilk.liu 	int status;
347225093bdeSAlexandru Ardelean 
34730486d9f9Sleilk.liu 	if (spi->controller->set_cs_timing &&
34740486d9f9Sleilk.liu 	    !(spi->cs_gpiod || gpio_is_valid(spi->cs_gpio))) {
34754cea6b8cSleilk.liu 		if (spi->controller->auto_runtime_pm) {
34764cea6b8cSleilk.liu 			status = pm_runtime_get_sync(parent);
34774cea6b8cSleilk.liu 			if (status < 0) {
34784cea6b8cSleilk.liu 				pm_runtime_put_noidle(parent);
34794cea6b8cSleilk.liu 				dev_err(&spi->controller->dev, "Failed to power device: %d\n",
34804cea6b8cSleilk.liu 					status);
34814cea6b8cSleilk.liu 				return status;
34824cea6b8cSleilk.liu 			}
34834cea6b8cSleilk.liu 
34844cea6b8cSleilk.liu 			status = spi->controller->set_cs_timing(spi, setup,
34854cea6b8cSleilk.liu 								hold, inactive);
34864cea6b8cSleilk.liu 			pm_runtime_mark_last_busy(parent);
34874cea6b8cSleilk.liu 			pm_runtime_put_autosuspend(parent);
34884cea6b8cSleilk.liu 			return status;
34894cea6b8cSleilk.liu 		} else {
349081059366SAlexandru Ardelean 			return spi->controller->set_cs_timing(spi, setup, hold,
349181059366SAlexandru Ardelean 							      inactive);
34924cea6b8cSleilk.liu 		}
34934cea6b8cSleilk.liu 	}
349425093bdeSAlexandru Ardelean 
349525093bdeSAlexandru Ardelean 	if ((setup && setup->unit == SPI_DELAY_UNIT_SCK) ||
349625093bdeSAlexandru Ardelean 	    (hold && hold->unit == SPI_DELAY_UNIT_SCK) ||
349725093bdeSAlexandru Ardelean 	    (inactive && inactive->unit == SPI_DELAY_UNIT_SCK)) {
349825093bdeSAlexandru Ardelean 		dev_err(&spi->dev,
349925093bdeSAlexandru Ardelean 			"Clock-cycle delays for CS not supported in SW mode\n");
350081059366SAlexandru Ardelean 		return -ENOTSUPP;
3501f1ca9992SSowjanya Komatineni 	}
350225093bdeSAlexandru Ardelean 
350325093bdeSAlexandru Ardelean 	len = sizeof(struct spi_delay);
350425093bdeSAlexandru Ardelean 
350525093bdeSAlexandru Ardelean 	/* copy delays to controller */
350625093bdeSAlexandru Ardelean 	if (setup)
350725093bdeSAlexandru Ardelean 		memcpy(&spi->controller->cs_setup, setup, len);
350825093bdeSAlexandru Ardelean 	else
350925093bdeSAlexandru Ardelean 		memset(&spi->controller->cs_setup, 0, len);
351025093bdeSAlexandru Ardelean 
351125093bdeSAlexandru Ardelean 	if (hold)
351225093bdeSAlexandru Ardelean 		memcpy(&spi->controller->cs_hold, hold, len);
351325093bdeSAlexandru Ardelean 	else
351425093bdeSAlexandru Ardelean 		memset(&spi->controller->cs_hold, 0, len);
351525093bdeSAlexandru Ardelean 
351625093bdeSAlexandru Ardelean 	if (inactive)
351725093bdeSAlexandru Ardelean 		memcpy(&spi->controller->cs_inactive, inactive, len);
351825093bdeSAlexandru Ardelean 	else
351925093bdeSAlexandru Ardelean 		memset(&spi->controller->cs_inactive, 0, len);
352025093bdeSAlexandru Ardelean 
352125093bdeSAlexandru Ardelean 	return 0;
3522f1ca9992SSowjanya Komatineni }
3523f1ca9992SSowjanya Komatineni EXPORT_SYMBOL_GPL(spi_set_cs_timing);
3524f1ca9992SSowjanya Komatineni 
35256c613f68SAlexandru Ardelean static int _spi_xfer_word_delay_update(struct spi_transfer *xfer,
35266c613f68SAlexandru Ardelean 				       struct spi_device *spi)
35276c613f68SAlexandru Ardelean {
35286c613f68SAlexandru Ardelean 	int delay1, delay2;
35296c613f68SAlexandru Ardelean 
35303984d39bSAlexandru Ardelean 	delay1 = spi_delay_to_ns(&xfer->word_delay, xfer);
35316c613f68SAlexandru Ardelean 	if (delay1 < 0)
35326c613f68SAlexandru Ardelean 		return delay1;
35336c613f68SAlexandru Ardelean 
35343984d39bSAlexandru Ardelean 	delay2 = spi_delay_to_ns(&spi->word_delay, xfer);
35356c613f68SAlexandru Ardelean 	if (delay2 < 0)
35366c613f68SAlexandru Ardelean 		return delay2;
35376c613f68SAlexandru Ardelean 
35386c613f68SAlexandru Ardelean 	if (delay1 < delay2)
35396c613f68SAlexandru Ardelean 		memcpy(&xfer->word_delay, &spi->word_delay,
35406c613f68SAlexandru Ardelean 		       sizeof(xfer->word_delay));
35416c613f68SAlexandru Ardelean 
35426c613f68SAlexandru Ardelean 	return 0;
35436c613f68SAlexandru Ardelean }
35446c613f68SAlexandru Ardelean 
354590808738SMark Brown static int __spi_validate(struct spi_device *spi, struct spi_message *message)
3546cf32b71eSErnst Schwab {
35478caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
3548e6811d1dSLaxman Dewangan 	struct spi_transfer *xfer;
35496ea31293SAtsushi Nemoto 	int w_size;
3550cf32b71eSErnst Schwab 
355124a0013aSMark Brown 	if (list_empty(&message->transfers))
355224a0013aSMark Brown 		return -EINVAL;
355324a0013aSMark Brown 
3554cbaa62e0SDavid Lechner 	/* If an SPI controller does not support toggling the CS line on each
355571388b21SDavid Lechner 	 * transfer (indicated by the SPI_CS_WORD flag) or we are using a GPIO
355671388b21SDavid Lechner 	 * for the CS line, we can emulate the CS-per-word hardware function by
3557cbaa62e0SDavid Lechner 	 * splitting transfers into one-word transfers and ensuring that
3558cbaa62e0SDavid Lechner 	 * cs_change is set for each transfer.
3559cbaa62e0SDavid Lechner 	 */
356071388b21SDavid Lechner 	if ((spi->mode & SPI_CS_WORD) && (!(ctlr->mode_bits & SPI_CS_WORD) ||
3561f3186dd8SLinus Walleij 					  spi->cs_gpiod ||
356271388b21SDavid Lechner 					  gpio_is_valid(spi->cs_gpio))) {
3563cbaa62e0SDavid Lechner 		size_t maxsize;
3564cbaa62e0SDavid Lechner 		int ret;
3565cbaa62e0SDavid Lechner 
3566cbaa62e0SDavid Lechner 		maxsize = (spi->bits_per_word + 7) / 8;
3567cbaa62e0SDavid Lechner 
3568cbaa62e0SDavid Lechner 		/* spi_split_transfers_maxsize() requires message->spi */
3569cbaa62e0SDavid Lechner 		message->spi = spi;
3570cbaa62e0SDavid Lechner 
3571cbaa62e0SDavid Lechner 		ret = spi_split_transfers_maxsize(ctlr, message, maxsize,
3572cbaa62e0SDavid Lechner 						  GFP_KERNEL);
3573cbaa62e0SDavid Lechner 		if (ret)
3574cbaa62e0SDavid Lechner 			return ret;
3575cbaa62e0SDavid Lechner 
3576cbaa62e0SDavid Lechner 		list_for_each_entry(xfer, &message->transfers, transfer_list) {
3577cbaa62e0SDavid Lechner 			/* don't change cs_change on the last entry in the list */
3578cbaa62e0SDavid Lechner 			if (list_is_last(&xfer->transfer_list, &message->transfers))
3579cbaa62e0SDavid Lechner 				break;
3580cbaa62e0SDavid Lechner 			xfer->cs_change = 1;
3581cbaa62e0SDavid Lechner 		}
3582cbaa62e0SDavid Lechner 	}
3583cbaa62e0SDavid Lechner 
3584cf32b71eSErnst Schwab 	/* Half-duplex links include original MicroWire, and ones with
3585cf32b71eSErnst Schwab 	 * only one data pin like SPI_3WIRE (switches direction) or where
3586cf32b71eSErnst Schwab 	 * either MOSI or MISO is missing.  They can also be caused by
3587cf32b71eSErnst Schwab 	 * software limitations.
3588cf32b71eSErnst Schwab 	 */
35898caab75fSGeert Uytterhoeven 	if ((ctlr->flags & SPI_CONTROLLER_HALF_DUPLEX) ||
35908caab75fSGeert Uytterhoeven 	    (spi->mode & SPI_3WIRE)) {
35918caab75fSGeert Uytterhoeven 		unsigned flags = ctlr->flags;
3592cf32b71eSErnst Schwab 
3593cf32b71eSErnst Schwab 		list_for_each_entry(xfer, &message->transfers, transfer_list) {
3594cf32b71eSErnst Schwab 			if (xfer->rx_buf && xfer->tx_buf)
3595cf32b71eSErnst Schwab 				return -EINVAL;
35968caab75fSGeert Uytterhoeven 			if ((flags & SPI_CONTROLLER_NO_TX) && xfer->tx_buf)
3597cf32b71eSErnst Schwab 				return -EINVAL;
35988caab75fSGeert Uytterhoeven 			if ((flags & SPI_CONTROLLER_NO_RX) && xfer->rx_buf)
3599cf32b71eSErnst Schwab 				return -EINVAL;
3600cf32b71eSErnst Schwab 		}
3601cf32b71eSErnst Schwab 	}
3602cf32b71eSErnst Schwab 
3603e6811d1dSLaxman Dewangan 	/**
3604059b8ffeSLaxman Dewangan 	 * Set transfer bits_per_word and max speed as spi device default if
3605059b8ffeSLaxman Dewangan 	 * it is not set for this transfer.
3606f477b7fbSwangyuhang 	 * Set transfer tx_nbits and rx_nbits as single transfer default
3607f477b7fbSwangyuhang 	 * (SPI_NBITS_SINGLE) if it is not set for this transfer.
3608b7bb367aSJonas Bonn 	 * Ensure transfer word_delay is at least as long as that required by
3609b7bb367aSJonas Bonn 	 * device itself.
3610e6811d1dSLaxman Dewangan 	 */
361177e80588SMartin Sperl 	message->frame_length = 0;
3612e6811d1dSLaxman Dewangan 	list_for_each_entry(xfer, &message->transfers, transfer_list) {
36135d7e2b5eSMartin Sperl 		xfer->effective_speed_hz = 0;
3614078726ceSSourav Poddar 		message->frame_length += xfer->len;
3615e6811d1dSLaxman Dewangan 		if (!xfer->bits_per_word)
3616e6811d1dSLaxman Dewangan 			xfer->bits_per_word = spi->bits_per_word;
3617a6f87fadSAxel Lin 
3618a6f87fadSAxel Lin 		if (!xfer->speed_hz)
3619059b8ffeSLaxman Dewangan 			xfer->speed_hz = spi->max_speed_hz;
3620a6f87fadSAxel Lin 
36218caab75fSGeert Uytterhoeven 		if (ctlr->max_speed_hz && xfer->speed_hz > ctlr->max_speed_hz)
36228caab75fSGeert Uytterhoeven 			xfer->speed_hz = ctlr->max_speed_hz;
362356ede94aSGabor Juhos 
36248caab75fSGeert Uytterhoeven 		if (__spi_validate_bits_per_word(ctlr, xfer->bits_per_word))
3625543bb255SStephen Warren 			return -EINVAL;
3626a2fd4f9fSMark Brown 
36274d94bd21SIvan T. Ivanov 		/*
36284d94bd21SIvan T. Ivanov 		 * SPI transfer length should be multiple of SPI word size
36294d94bd21SIvan T. Ivanov 		 * where SPI word size should be power-of-two multiple
36304d94bd21SIvan T. Ivanov 		 */
36314d94bd21SIvan T. Ivanov 		if (xfer->bits_per_word <= 8)
36324d94bd21SIvan T. Ivanov 			w_size = 1;
36334d94bd21SIvan T. Ivanov 		else if (xfer->bits_per_word <= 16)
36344d94bd21SIvan T. Ivanov 			w_size = 2;
36354d94bd21SIvan T. Ivanov 		else
36364d94bd21SIvan T. Ivanov 			w_size = 4;
36374d94bd21SIvan T. Ivanov 
36384d94bd21SIvan T. Ivanov 		/* No partial transfers accepted */
36396ea31293SAtsushi Nemoto 		if (xfer->len % w_size)
36404d94bd21SIvan T. Ivanov 			return -EINVAL;
36414d94bd21SIvan T. Ivanov 
36428caab75fSGeert Uytterhoeven 		if (xfer->speed_hz && ctlr->min_speed_hz &&
36438caab75fSGeert Uytterhoeven 		    xfer->speed_hz < ctlr->min_speed_hz)
3644a2fd4f9fSMark Brown 			return -EINVAL;
3645f477b7fbSwangyuhang 
3646f477b7fbSwangyuhang 		if (xfer->tx_buf && !xfer->tx_nbits)
3647f477b7fbSwangyuhang 			xfer->tx_nbits = SPI_NBITS_SINGLE;
3648f477b7fbSwangyuhang 		if (xfer->rx_buf && !xfer->rx_nbits)
3649f477b7fbSwangyuhang 			xfer->rx_nbits = SPI_NBITS_SINGLE;
3650f477b7fbSwangyuhang 		/* check transfer tx/rx_nbits:
36511afd9989SGeert Uytterhoeven 		 * 1. check the value matches one of single, dual and quad
36521afd9989SGeert Uytterhoeven 		 * 2. check tx/rx_nbits match the mode in spi_device
3653f477b7fbSwangyuhang 		 */
3654db90a441SSourav Poddar 		if (xfer->tx_buf) {
3655d962608cSDragos Bogdan 			if (spi->mode & SPI_NO_TX)
3656d962608cSDragos Bogdan 				return -EINVAL;
3657f477b7fbSwangyuhang 			if (xfer->tx_nbits != SPI_NBITS_SINGLE &&
3658f477b7fbSwangyuhang 				xfer->tx_nbits != SPI_NBITS_DUAL &&
3659f477b7fbSwangyuhang 				xfer->tx_nbits != SPI_NBITS_QUAD)
3660a2fd4f9fSMark Brown 				return -EINVAL;
3661f477b7fbSwangyuhang 			if ((xfer->tx_nbits == SPI_NBITS_DUAL) &&
3662f477b7fbSwangyuhang 				!(spi->mode & (SPI_TX_DUAL | SPI_TX_QUAD)))
3663f477b7fbSwangyuhang 				return -EINVAL;
3664f477b7fbSwangyuhang 			if ((xfer->tx_nbits == SPI_NBITS_QUAD) &&
3665f477b7fbSwangyuhang 				!(spi->mode & SPI_TX_QUAD))
3666f477b7fbSwangyuhang 				return -EINVAL;
3667db90a441SSourav Poddar 		}
3668f477b7fbSwangyuhang 		/* check transfer rx_nbits */
3669db90a441SSourav Poddar 		if (xfer->rx_buf) {
3670d962608cSDragos Bogdan 			if (spi->mode & SPI_NO_RX)
3671d962608cSDragos Bogdan 				return -EINVAL;
3672f477b7fbSwangyuhang 			if (xfer->rx_nbits != SPI_NBITS_SINGLE &&
3673f477b7fbSwangyuhang 				xfer->rx_nbits != SPI_NBITS_DUAL &&
3674f477b7fbSwangyuhang 				xfer->rx_nbits != SPI_NBITS_QUAD)
3675f477b7fbSwangyuhang 				return -EINVAL;
3676f477b7fbSwangyuhang 			if ((xfer->rx_nbits == SPI_NBITS_DUAL) &&
3677f477b7fbSwangyuhang 				!(spi->mode & (SPI_RX_DUAL | SPI_RX_QUAD)))
3678f477b7fbSwangyuhang 				return -EINVAL;
3679f477b7fbSwangyuhang 			if ((xfer->rx_nbits == SPI_NBITS_QUAD) &&
3680f477b7fbSwangyuhang 				!(spi->mode & SPI_RX_QUAD))
3681f477b7fbSwangyuhang 				return -EINVAL;
3682e6811d1dSLaxman Dewangan 		}
3683b7bb367aSJonas Bonn 
36846c613f68SAlexandru Ardelean 		if (_spi_xfer_word_delay_update(xfer, spi))
36856c613f68SAlexandru Ardelean 			return -EINVAL;
3686e6811d1dSLaxman Dewangan 	}
3687e6811d1dSLaxman Dewangan 
3688cf32b71eSErnst Schwab 	message->status = -EINPROGRESS;
368990808738SMark Brown 
369090808738SMark Brown 	return 0;
369190808738SMark Brown }
369290808738SMark Brown 
369390808738SMark Brown static int __spi_async(struct spi_device *spi, struct spi_message *message)
369490808738SMark Brown {
36958caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
3696b42faeeeSVladimir Oltean 	struct spi_transfer *xfer;
369790808738SMark Brown 
3698b5932f5cSBoris Brezillon 	/*
3699b5932f5cSBoris Brezillon 	 * Some controllers do not support doing regular SPI transfers. Return
3700b5932f5cSBoris Brezillon 	 * ENOTSUPP when this is the case.
3701b5932f5cSBoris Brezillon 	 */
3702b5932f5cSBoris Brezillon 	if (!ctlr->transfer)
3703b5932f5cSBoris Brezillon 		return -ENOTSUPP;
3704b5932f5cSBoris Brezillon 
370590808738SMark Brown 	message->spi = spi;
370690808738SMark Brown 
37078caab75fSGeert Uytterhoeven 	SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics, spi_async);
3708eca2ebc7SMartin Sperl 	SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_async);
3709eca2ebc7SMartin Sperl 
371090808738SMark Brown 	trace_spi_message_submit(message);
371190808738SMark Brown 
3712b42faeeeSVladimir Oltean 	if (!ctlr->ptp_sts_supported) {
3713b42faeeeSVladimir Oltean 		list_for_each_entry(xfer, &message->transfers, transfer_list) {
3714b42faeeeSVladimir Oltean 			xfer->ptp_sts_word_pre = 0;
3715b42faeeeSVladimir Oltean 			ptp_read_system_prets(xfer->ptp_sts);
3716b42faeeeSVladimir Oltean 		}
3717b42faeeeSVladimir Oltean 	}
3718b42faeeeSVladimir Oltean 
37198caab75fSGeert Uytterhoeven 	return ctlr->transfer(spi, message);
3720cf32b71eSErnst Schwab }
3721cf32b71eSErnst Schwab 
3722568d0697SDavid Brownell /**
3723568d0697SDavid Brownell  * spi_async - asynchronous SPI transfer
3724568d0697SDavid Brownell  * @spi: device with which data will be exchanged
3725568d0697SDavid Brownell  * @message: describes the data transfers, including completion callback
3726568d0697SDavid Brownell  * Context: any (irqs may be blocked, etc)
3727568d0697SDavid Brownell  *
3728568d0697SDavid Brownell  * This call may be used in_irq and other contexts which can't sleep,
3729568d0697SDavid Brownell  * as well as from task contexts which can sleep.
3730568d0697SDavid Brownell  *
3731568d0697SDavid Brownell  * The completion callback is invoked in a context which can't sleep.
3732568d0697SDavid Brownell  * Before that invocation, the value of message->status is undefined.
3733568d0697SDavid Brownell  * When the callback is issued, message->status holds either zero (to
3734568d0697SDavid Brownell  * indicate complete success) or a negative error code.  After that
3735568d0697SDavid Brownell  * callback returns, the driver which issued the transfer request may
3736568d0697SDavid Brownell  * deallocate the associated memory; it's no longer in use by any SPI
3737568d0697SDavid Brownell  * core or controller driver code.
3738568d0697SDavid Brownell  *
3739568d0697SDavid Brownell  * Note that although all messages to a spi_device are handled in
3740568d0697SDavid Brownell  * FIFO order, messages may go to different devices in other orders.
3741568d0697SDavid Brownell  * Some device might be higher priority, or have various "hard" access
3742568d0697SDavid Brownell  * time requirements, for example.
3743568d0697SDavid Brownell  *
3744568d0697SDavid Brownell  * On detection of any fault during the transfer, processing of
3745568d0697SDavid Brownell  * the entire message is aborted, and the device is deselected.
3746568d0697SDavid Brownell  * Until returning from the associated message completion callback,
3747568d0697SDavid Brownell  * no other spi_message queued to that device will be processed.
3748568d0697SDavid Brownell  * (This rule applies equally to all the synchronous transfer calls,
3749568d0697SDavid Brownell  * which are wrappers around this core asynchronous primitive.)
375097d56dc6SJavier Martinez Canillas  *
375197d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
3752568d0697SDavid Brownell  */
3753568d0697SDavid Brownell int spi_async(struct spi_device *spi, struct spi_message *message)
3754568d0697SDavid Brownell {
37558caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
3756cf32b71eSErnst Schwab 	int ret;
3757cf32b71eSErnst Schwab 	unsigned long flags;
3758568d0697SDavid Brownell 
375990808738SMark Brown 	ret = __spi_validate(spi, message);
376090808738SMark Brown 	if (ret != 0)
376190808738SMark Brown 		return ret;
376290808738SMark Brown 
37638caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3764568d0697SDavid Brownell 
37658caab75fSGeert Uytterhoeven 	if (ctlr->bus_lock_flag)
3766cf32b71eSErnst Schwab 		ret = -EBUSY;
3767cf32b71eSErnst Schwab 	else
3768cf32b71eSErnst Schwab 		ret = __spi_async(spi, message);
3769568d0697SDavid Brownell 
37708caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3771cf32b71eSErnst Schwab 
3772cf32b71eSErnst Schwab 	return ret;
3773568d0697SDavid Brownell }
3774568d0697SDavid Brownell EXPORT_SYMBOL_GPL(spi_async);
3775568d0697SDavid Brownell 
3776cf32b71eSErnst Schwab /**
3777cf32b71eSErnst Schwab  * spi_async_locked - version of spi_async with exclusive bus usage
3778cf32b71eSErnst Schwab  * @spi: device with which data will be exchanged
3779cf32b71eSErnst Schwab  * @message: describes the data transfers, including completion callback
3780cf32b71eSErnst Schwab  * Context: any (irqs may be blocked, etc)
3781cf32b71eSErnst Schwab  *
3782cf32b71eSErnst Schwab  * This call may be used in_irq and other contexts which can't sleep,
3783cf32b71eSErnst Schwab  * as well as from task contexts which can sleep.
3784cf32b71eSErnst Schwab  *
3785cf32b71eSErnst Schwab  * The completion callback is invoked in a context which can't sleep.
3786cf32b71eSErnst Schwab  * Before that invocation, the value of message->status is undefined.
3787cf32b71eSErnst Schwab  * When the callback is issued, message->status holds either zero (to
3788cf32b71eSErnst Schwab  * indicate complete success) or a negative error code.  After that
3789cf32b71eSErnst Schwab  * callback returns, the driver which issued the transfer request may
3790cf32b71eSErnst Schwab  * deallocate the associated memory; it's no longer in use by any SPI
3791cf32b71eSErnst Schwab  * core or controller driver code.
3792cf32b71eSErnst Schwab  *
3793cf32b71eSErnst Schwab  * Note that although all messages to a spi_device are handled in
3794cf32b71eSErnst Schwab  * FIFO order, messages may go to different devices in other orders.
3795cf32b71eSErnst Schwab  * Some device might be higher priority, or have various "hard" access
3796cf32b71eSErnst Schwab  * time requirements, for example.
3797cf32b71eSErnst Schwab  *
3798cf32b71eSErnst Schwab  * On detection of any fault during the transfer, processing of
3799cf32b71eSErnst Schwab  * the entire message is aborted, and the device is deselected.
3800cf32b71eSErnst Schwab  * Until returning from the associated message completion callback,
3801cf32b71eSErnst Schwab  * no other spi_message queued to that device will be processed.
3802cf32b71eSErnst Schwab  * (This rule applies equally to all the synchronous transfer calls,
3803cf32b71eSErnst Schwab  * which are wrappers around this core asynchronous primitive.)
380497d56dc6SJavier Martinez Canillas  *
380597d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
3806cf32b71eSErnst Schwab  */
3807cf32b71eSErnst Schwab int spi_async_locked(struct spi_device *spi, struct spi_message *message)
3808cf32b71eSErnst Schwab {
38098caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
3810cf32b71eSErnst Schwab 	int ret;
3811cf32b71eSErnst Schwab 	unsigned long flags;
3812cf32b71eSErnst Schwab 
381390808738SMark Brown 	ret = __spi_validate(spi, message);
381490808738SMark Brown 	if (ret != 0)
381590808738SMark Brown 		return ret;
381690808738SMark Brown 
38178caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
3818cf32b71eSErnst Schwab 
3819cf32b71eSErnst Schwab 	ret = __spi_async(spi, message);
3820cf32b71eSErnst Schwab 
38218caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3822cf32b71eSErnst Schwab 
3823cf32b71eSErnst Schwab 	return ret;
3824cf32b71eSErnst Schwab 
3825cf32b71eSErnst Schwab }
3826cf32b71eSErnst Schwab EXPORT_SYMBOL_GPL(spi_async_locked);
3827cf32b71eSErnst Schwab 
38287d077197SDavid Brownell /*-------------------------------------------------------------------------*/
38297d077197SDavid Brownell 
38308caab75fSGeert Uytterhoeven /* Utility methods for SPI protocol drivers, layered on
38317d077197SDavid Brownell  * top of the core.  Some other utility methods are defined as
38327d077197SDavid Brownell  * inline functions.
38337d077197SDavid Brownell  */
38347d077197SDavid Brownell 
38355d870c8eSAndrew Morton static void spi_complete(void *arg)
38365d870c8eSAndrew Morton {
38375d870c8eSAndrew Morton 	complete(arg);
38385d870c8eSAndrew Morton }
38395d870c8eSAndrew Morton 
3840ef4d96ecSMark Brown static int __spi_sync(struct spi_device *spi, struct spi_message *message)
3841cf32b71eSErnst Schwab {
3842cf32b71eSErnst Schwab 	DECLARE_COMPLETION_ONSTACK(done);
3843cf32b71eSErnst Schwab 	int status;
38448caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr = spi->controller;
38450461a414SMark Brown 	unsigned long flags;
38460461a414SMark Brown 
38470461a414SMark Brown 	status = __spi_validate(spi, message);
38480461a414SMark Brown 	if (status != 0)
38490461a414SMark Brown 		return status;
3850cf32b71eSErnst Schwab 
3851cf32b71eSErnst Schwab 	message->complete = spi_complete;
3852cf32b71eSErnst Schwab 	message->context = &done;
38530461a414SMark Brown 	message->spi = spi;
3854cf32b71eSErnst Schwab 
38558caab75fSGeert Uytterhoeven 	SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics, spi_sync);
3856eca2ebc7SMartin Sperl 	SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics, spi_sync);
3857eca2ebc7SMartin Sperl 
38580461a414SMark Brown 	/* If we're not using the legacy transfer method then we will
38590461a414SMark Brown 	 * try to transfer in the calling context so special case.
38600461a414SMark Brown 	 * This code would be less tricky if we could remove the
38610461a414SMark Brown 	 * support for driver implemented message queues.
38620461a414SMark Brown 	 */
38638caab75fSGeert Uytterhoeven 	if (ctlr->transfer == spi_queued_transfer) {
38648caab75fSGeert Uytterhoeven 		spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
38650461a414SMark Brown 
38660461a414SMark Brown 		trace_spi_message_submit(message);
38670461a414SMark Brown 
38680461a414SMark Brown 		status = __spi_queued_transfer(spi, message, false);
38690461a414SMark Brown 
38708caab75fSGeert Uytterhoeven 		spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
38710461a414SMark Brown 	} else {
3872cf32b71eSErnst Schwab 		status = spi_async_locked(spi, message);
38730461a414SMark Brown 	}
3874cf32b71eSErnst Schwab 
3875cf32b71eSErnst Schwab 	if (status == 0) {
38760461a414SMark Brown 		/* Push out the messages in the calling context if we
38770461a414SMark Brown 		 * can.
38780461a414SMark Brown 		 */
38798caab75fSGeert Uytterhoeven 		if (ctlr->transfer == spi_queued_transfer) {
38808caab75fSGeert Uytterhoeven 			SPI_STATISTICS_INCREMENT_FIELD(&ctlr->statistics,
3881eca2ebc7SMartin Sperl 						       spi_sync_immediate);
3882eca2ebc7SMartin Sperl 			SPI_STATISTICS_INCREMENT_FIELD(&spi->statistics,
3883eca2ebc7SMartin Sperl 						       spi_sync_immediate);
38848caab75fSGeert Uytterhoeven 			__spi_pump_messages(ctlr, false);
3885eca2ebc7SMartin Sperl 		}
38860461a414SMark Brown 
3887cf32b71eSErnst Schwab 		wait_for_completion(&done);
3888cf32b71eSErnst Schwab 		status = message->status;
3889cf32b71eSErnst Schwab 	}
3890cf32b71eSErnst Schwab 	message->context = NULL;
3891cf32b71eSErnst Schwab 	return status;
3892cf32b71eSErnst Schwab }
3893cf32b71eSErnst Schwab 
38948ae12a0dSDavid Brownell /**
38958ae12a0dSDavid Brownell  * spi_sync - blocking/synchronous SPI data transfers
38968ae12a0dSDavid Brownell  * @spi: device with which data will be exchanged
38978ae12a0dSDavid Brownell  * @message: describes the data transfers
389833e34dc6SDavid Brownell  * Context: can sleep
38998ae12a0dSDavid Brownell  *
39008ae12a0dSDavid Brownell  * This call may only be used from a context that may sleep.  The sleep
39018ae12a0dSDavid Brownell  * is non-interruptible, and has no timeout.  Low-overhead controller
39028ae12a0dSDavid Brownell  * drivers may DMA directly into and out of the message buffers.
39038ae12a0dSDavid Brownell  *
39048ae12a0dSDavid Brownell  * Note that the SPI device's chip select is active during the message,
39058ae12a0dSDavid Brownell  * and then is normally disabled between messages.  Drivers for some
39068ae12a0dSDavid Brownell  * frequently-used devices may want to minimize costs of selecting a chip,
39078ae12a0dSDavid Brownell  * by leaving it selected in anticipation that the next message will go
39088ae12a0dSDavid Brownell  * to the same chip.  (That may increase power usage.)
39098ae12a0dSDavid Brownell  *
39100c868461SDavid Brownell  * Also, the caller is guaranteeing that the memory associated with the
39110c868461SDavid Brownell  * message will not be freed before this call returns.
39120c868461SDavid Brownell  *
391397d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
39148ae12a0dSDavid Brownell  */
39158ae12a0dSDavid Brownell int spi_sync(struct spi_device *spi, struct spi_message *message)
39168ae12a0dSDavid Brownell {
3917ef4d96ecSMark Brown 	int ret;
3918ef4d96ecSMark Brown 
39198caab75fSGeert Uytterhoeven 	mutex_lock(&spi->controller->bus_lock_mutex);
3920ef4d96ecSMark Brown 	ret = __spi_sync(spi, message);
39218caab75fSGeert Uytterhoeven 	mutex_unlock(&spi->controller->bus_lock_mutex);
3922ef4d96ecSMark Brown 
3923ef4d96ecSMark Brown 	return ret;
39248ae12a0dSDavid Brownell }
39258ae12a0dSDavid Brownell EXPORT_SYMBOL_GPL(spi_sync);
39268ae12a0dSDavid Brownell 
3927cf32b71eSErnst Schwab /**
3928cf32b71eSErnst Schwab  * spi_sync_locked - version of spi_sync with exclusive bus usage
3929cf32b71eSErnst Schwab  * @spi: device with which data will be exchanged
3930cf32b71eSErnst Schwab  * @message: describes the data transfers
3931cf32b71eSErnst Schwab  * Context: can sleep
3932cf32b71eSErnst Schwab  *
3933cf32b71eSErnst Schwab  * This call may only be used from a context that may sleep.  The sleep
3934cf32b71eSErnst Schwab  * is non-interruptible, and has no timeout.  Low-overhead controller
3935cf32b71eSErnst Schwab  * drivers may DMA directly into and out of the message buffers.
3936cf32b71eSErnst Schwab  *
3937cf32b71eSErnst Schwab  * This call should be used by drivers that require exclusive access to the
393825985edcSLucas De Marchi  * SPI bus. It has to be preceded by a spi_bus_lock call. The SPI bus must
3939cf32b71eSErnst Schwab  * be released by a spi_bus_unlock call when the exclusive access is over.
3940cf32b71eSErnst Schwab  *
394197d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
3942cf32b71eSErnst Schwab  */
3943cf32b71eSErnst Schwab int spi_sync_locked(struct spi_device *spi, struct spi_message *message)
3944cf32b71eSErnst Schwab {
3945ef4d96ecSMark Brown 	return __spi_sync(spi, message);
3946cf32b71eSErnst Schwab }
3947cf32b71eSErnst Schwab EXPORT_SYMBOL_GPL(spi_sync_locked);
3948cf32b71eSErnst Schwab 
3949cf32b71eSErnst Schwab /**
3950cf32b71eSErnst Schwab  * spi_bus_lock - obtain a lock for exclusive SPI bus usage
39518caab75fSGeert Uytterhoeven  * @ctlr: SPI bus master that should be locked for exclusive bus access
3952cf32b71eSErnst Schwab  * Context: can sleep
3953cf32b71eSErnst Schwab  *
3954cf32b71eSErnst Schwab  * This call may only be used from a context that may sleep.  The sleep
3955cf32b71eSErnst Schwab  * is non-interruptible, and has no timeout.
3956cf32b71eSErnst Schwab  *
3957cf32b71eSErnst Schwab  * This call should be used by drivers that require exclusive access to the
3958cf32b71eSErnst Schwab  * SPI bus. The SPI bus must be released by a spi_bus_unlock call when the
3959cf32b71eSErnst Schwab  * exclusive access is over. Data transfer must be done by spi_sync_locked
3960cf32b71eSErnst Schwab  * and spi_async_locked calls when the SPI bus lock is held.
3961cf32b71eSErnst Schwab  *
396297d56dc6SJavier Martinez Canillas  * Return: always zero.
3963cf32b71eSErnst Schwab  */
39648caab75fSGeert Uytterhoeven int spi_bus_lock(struct spi_controller *ctlr)
3965cf32b71eSErnst Schwab {
3966cf32b71eSErnst Schwab 	unsigned long flags;
3967cf32b71eSErnst Schwab 
39688caab75fSGeert Uytterhoeven 	mutex_lock(&ctlr->bus_lock_mutex);
3969cf32b71eSErnst Schwab 
39708caab75fSGeert Uytterhoeven 	spin_lock_irqsave(&ctlr->bus_lock_spinlock, flags);
39718caab75fSGeert Uytterhoeven 	ctlr->bus_lock_flag = 1;
39728caab75fSGeert Uytterhoeven 	spin_unlock_irqrestore(&ctlr->bus_lock_spinlock, flags);
3973cf32b71eSErnst Schwab 
3974cf32b71eSErnst Schwab 	/* mutex remains locked until spi_bus_unlock is called */
3975cf32b71eSErnst Schwab 
3976cf32b71eSErnst Schwab 	return 0;
3977cf32b71eSErnst Schwab }
3978cf32b71eSErnst Schwab EXPORT_SYMBOL_GPL(spi_bus_lock);
3979cf32b71eSErnst Schwab 
3980cf32b71eSErnst Schwab /**
3981cf32b71eSErnst Schwab  * spi_bus_unlock - release the lock for exclusive SPI bus usage
39828caab75fSGeert Uytterhoeven  * @ctlr: SPI bus master that was locked for exclusive bus access
3983cf32b71eSErnst Schwab  * Context: can sleep
3984cf32b71eSErnst Schwab  *
3985cf32b71eSErnst Schwab  * This call may only be used from a context that may sleep.  The sleep
3986cf32b71eSErnst Schwab  * is non-interruptible, and has no timeout.
3987cf32b71eSErnst Schwab  *
3988cf32b71eSErnst Schwab  * This call releases an SPI bus lock previously obtained by an spi_bus_lock
3989cf32b71eSErnst Schwab  * call.
3990cf32b71eSErnst Schwab  *
399197d56dc6SJavier Martinez Canillas  * Return: always zero.
3992cf32b71eSErnst Schwab  */
39938caab75fSGeert Uytterhoeven int spi_bus_unlock(struct spi_controller *ctlr)
3994cf32b71eSErnst Schwab {
39958caab75fSGeert Uytterhoeven 	ctlr->bus_lock_flag = 0;
3996cf32b71eSErnst Schwab 
39978caab75fSGeert Uytterhoeven 	mutex_unlock(&ctlr->bus_lock_mutex);
3998cf32b71eSErnst Schwab 
3999cf32b71eSErnst Schwab 	return 0;
4000cf32b71eSErnst Schwab }
4001cf32b71eSErnst Schwab EXPORT_SYMBOL_GPL(spi_bus_unlock);
4002cf32b71eSErnst Schwab 
4003a9948b61SDavid Brownell /* portable code must never pass more than 32 bytes */
4004a9948b61SDavid Brownell #define	SPI_BUFSIZ	max(32, SMP_CACHE_BYTES)
40058ae12a0dSDavid Brownell 
40068ae12a0dSDavid Brownell static u8	*buf;
40078ae12a0dSDavid Brownell 
40088ae12a0dSDavid Brownell /**
40098ae12a0dSDavid Brownell  * spi_write_then_read - SPI synchronous write followed by read
40108ae12a0dSDavid Brownell  * @spi: device with which data will be exchanged
40118ae12a0dSDavid Brownell  * @txbuf: data to be written (need not be dma-safe)
40128ae12a0dSDavid Brownell  * @n_tx: size of txbuf, in bytes
401327570497SJiri Pirko  * @rxbuf: buffer into which data will be read (need not be dma-safe)
401427570497SJiri Pirko  * @n_rx: size of rxbuf, in bytes
401533e34dc6SDavid Brownell  * Context: can sleep
40168ae12a0dSDavid Brownell  *
40178ae12a0dSDavid Brownell  * This performs a half duplex MicroWire style transaction with the
40188ae12a0dSDavid Brownell  * device, sending txbuf and then reading rxbuf.  The return value
40198ae12a0dSDavid Brownell  * is zero for success, else a negative errno status code.
4020b885244eSDavid Brownell  * This call may only be used from a context that may sleep.
40218ae12a0dSDavid Brownell  *
4022c373643bSMark Brown  * Parameters to this routine are always copied using a small buffer.
402333e34dc6SDavid Brownell  * Performance-sensitive or bulk transfer code should instead use
40240c868461SDavid Brownell  * spi_{async,sync}() calls with dma-safe buffers.
402597d56dc6SJavier Martinez Canillas  *
402697d56dc6SJavier Martinez Canillas  * Return: zero on success, else a negative error code.
40278ae12a0dSDavid Brownell  */
40288ae12a0dSDavid Brownell int spi_write_then_read(struct spi_device *spi,
40290c4a1590SMark Brown 		const void *txbuf, unsigned n_tx,
40300c4a1590SMark Brown 		void *rxbuf, unsigned n_rx)
40318ae12a0dSDavid Brownell {
4032068f4070SDavid Brownell 	static DEFINE_MUTEX(lock);
40338ae12a0dSDavid Brownell 
40348ae12a0dSDavid Brownell 	int			status;
40358ae12a0dSDavid Brownell 	struct spi_message	message;
4036bdff549eSDavid Brownell 	struct spi_transfer	x[2];
40378ae12a0dSDavid Brownell 	u8			*local_buf;
40388ae12a0dSDavid Brownell 
4039b3a223eeSMark Brown 	/* Use preallocated DMA-safe buffer if we can.  We can't avoid
4040b3a223eeSMark Brown 	 * copying here, (as a pure convenience thing), but we can
4041b3a223eeSMark Brown 	 * keep heap costs out of the hot path unless someone else is
4042b3a223eeSMark Brown 	 * using the pre-allocated buffer or the transfer is too large.
40438ae12a0dSDavid Brownell 	 */
4044b3a223eeSMark Brown 	if ((n_tx + n_rx) > SPI_BUFSIZ || !mutex_trylock(&lock)) {
40452cd94c8aSMark Brown 		local_buf = kmalloc(max((unsigned)SPI_BUFSIZ, n_tx + n_rx),
40462cd94c8aSMark Brown 				    GFP_KERNEL | GFP_DMA);
4047b3a223eeSMark Brown 		if (!local_buf)
4048b3a223eeSMark Brown 			return -ENOMEM;
4049b3a223eeSMark Brown 	} else {
4050b3a223eeSMark Brown 		local_buf = buf;
4051b3a223eeSMark Brown 	}
40528ae12a0dSDavid Brownell 
40538275c642SVitaly Wool 	spi_message_init(&message);
40545fe5f05eSJingoo Han 	memset(x, 0, sizeof(x));
4055bdff549eSDavid Brownell 	if (n_tx) {
4056bdff549eSDavid Brownell 		x[0].len = n_tx;
4057bdff549eSDavid Brownell 		spi_message_add_tail(&x[0], &message);
4058bdff549eSDavid Brownell 	}
4059bdff549eSDavid Brownell 	if (n_rx) {
4060bdff549eSDavid Brownell 		x[1].len = n_rx;
4061bdff549eSDavid Brownell 		spi_message_add_tail(&x[1], &message);
4062bdff549eSDavid Brownell 	}
40638275c642SVitaly Wool 
40648ae12a0dSDavid Brownell 	memcpy(local_buf, txbuf, n_tx);
4065bdff549eSDavid Brownell 	x[0].tx_buf = local_buf;
4066bdff549eSDavid Brownell 	x[1].rx_buf = local_buf + n_tx;
40678ae12a0dSDavid Brownell 
40688ae12a0dSDavid Brownell 	/* do the i/o */
40698ae12a0dSDavid Brownell 	status = spi_sync(spi, &message);
40709b938b74SMarc Pignat 	if (status == 0)
4071bdff549eSDavid Brownell 		memcpy(rxbuf, x[1].rx_buf, n_rx);
40728ae12a0dSDavid Brownell 
4073bdff549eSDavid Brownell 	if (x[0].tx_buf == buf)
4074068f4070SDavid Brownell 		mutex_unlock(&lock);
40758ae12a0dSDavid Brownell 	else
40768ae12a0dSDavid Brownell 		kfree(local_buf);
40778ae12a0dSDavid Brownell 
40788ae12a0dSDavid Brownell 	return status;
40798ae12a0dSDavid Brownell }
40808ae12a0dSDavid Brownell EXPORT_SYMBOL_GPL(spi_write_then_read);
40818ae12a0dSDavid Brownell 
40828ae12a0dSDavid Brownell /*-------------------------------------------------------------------------*/
40838ae12a0dSDavid Brownell 
40845f143af7SMarco Felsch #if IS_ENABLED(CONFIG_OF)
4085ce79d54aSPantelis Antoniou /* must call put_device() when done with returned spi_device device */
40865f143af7SMarco Felsch struct spi_device *of_find_spi_device_by_node(struct device_node *node)
4087ce79d54aSPantelis Antoniou {
4088cfba5de9SSuzuki K Poulose 	struct device *dev = bus_find_device_by_of_node(&spi_bus_type, node);
4089cfba5de9SSuzuki K Poulose 
4090ce79d54aSPantelis Antoniou 	return dev ? to_spi_device(dev) : NULL;
4091ce79d54aSPantelis Antoniou }
40925f143af7SMarco Felsch EXPORT_SYMBOL_GPL(of_find_spi_device_by_node);
40935f143af7SMarco Felsch #endif /* IS_ENABLED(CONFIG_OF) */
4094ce79d54aSPantelis Antoniou 
40955f143af7SMarco Felsch #if IS_ENABLED(CONFIG_OF_DYNAMIC)
40968caab75fSGeert Uytterhoeven /* the spi controllers are not using spi_bus, so we find it with another way */
40978caab75fSGeert Uytterhoeven static struct spi_controller *of_find_spi_controller_by_node(struct device_node *node)
4098ce79d54aSPantelis Antoniou {
4099ce79d54aSPantelis Antoniou 	struct device *dev;
4100ce79d54aSPantelis Antoniou 
4101cfba5de9SSuzuki K Poulose 	dev = class_find_device_by_of_node(&spi_master_class, node);
41026c364062SGeert Uytterhoeven 	if (!dev && IS_ENABLED(CONFIG_SPI_SLAVE))
4103cfba5de9SSuzuki K Poulose 		dev = class_find_device_by_of_node(&spi_slave_class, node);
4104ce79d54aSPantelis Antoniou 	if (!dev)
4105ce79d54aSPantelis Antoniou 		return NULL;
4106ce79d54aSPantelis Antoniou 
4107ce79d54aSPantelis Antoniou 	/* reference got in class_find_device */
41088caab75fSGeert Uytterhoeven 	return container_of(dev, struct spi_controller, dev);
4109ce79d54aSPantelis Antoniou }
4110ce79d54aSPantelis Antoniou 
4111ce79d54aSPantelis Antoniou static int of_spi_notify(struct notifier_block *nb, unsigned long action,
4112ce79d54aSPantelis Antoniou 			 void *arg)
4113ce79d54aSPantelis Antoniou {
4114ce79d54aSPantelis Antoniou 	struct of_reconfig_data *rd = arg;
41158caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr;
4116ce79d54aSPantelis Antoniou 	struct spi_device *spi;
4117ce79d54aSPantelis Antoniou 
4118ce79d54aSPantelis Antoniou 	switch (of_reconfig_get_state_change(action, arg)) {
4119ce79d54aSPantelis Antoniou 	case OF_RECONFIG_CHANGE_ADD:
41208caab75fSGeert Uytterhoeven 		ctlr = of_find_spi_controller_by_node(rd->dn->parent);
41218caab75fSGeert Uytterhoeven 		if (ctlr == NULL)
4122ce79d54aSPantelis Antoniou 			return NOTIFY_OK;	/* not for us */
4123ce79d54aSPantelis Antoniou 
4124bd6c1644SGeert Uytterhoeven 		if (of_node_test_and_set_flag(rd->dn, OF_POPULATED)) {
41258caab75fSGeert Uytterhoeven 			put_device(&ctlr->dev);
4126bd6c1644SGeert Uytterhoeven 			return NOTIFY_OK;
4127bd6c1644SGeert Uytterhoeven 		}
4128bd6c1644SGeert Uytterhoeven 
41298caab75fSGeert Uytterhoeven 		spi = of_register_spi_device(ctlr, rd->dn);
41308caab75fSGeert Uytterhoeven 		put_device(&ctlr->dev);
4131ce79d54aSPantelis Antoniou 
4132ce79d54aSPantelis Antoniou 		if (IS_ERR(spi)) {
413325c56c88SRob Herring 			pr_err("%s: failed to create for '%pOF'\n",
413425c56c88SRob Herring 					__func__, rd->dn);
4135e0af98a7SRalf Ramsauer 			of_node_clear_flag(rd->dn, OF_POPULATED);
4136ce79d54aSPantelis Antoniou 			return notifier_from_errno(PTR_ERR(spi));
4137ce79d54aSPantelis Antoniou 		}
4138ce79d54aSPantelis Antoniou 		break;
4139ce79d54aSPantelis Antoniou 
4140ce79d54aSPantelis Antoniou 	case OF_RECONFIG_CHANGE_REMOVE:
4141bd6c1644SGeert Uytterhoeven 		/* already depopulated? */
4142bd6c1644SGeert Uytterhoeven 		if (!of_node_check_flag(rd->dn, OF_POPULATED))
4143bd6c1644SGeert Uytterhoeven 			return NOTIFY_OK;
4144bd6c1644SGeert Uytterhoeven 
4145ce79d54aSPantelis Antoniou 		/* find our device by node */
4146ce79d54aSPantelis Antoniou 		spi = of_find_spi_device_by_node(rd->dn);
4147ce79d54aSPantelis Antoniou 		if (spi == NULL)
4148ce79d54aSPantelis Antoniou 			return NOTIFY_OK;	/* no? not meant for us */
4149ce79d54aSPantelis Antoniou 
4150ce79d54aSPantelis Antoniou 		/* unregister takes one ref away */
4151ce79d54aSPantelis Antoniou 		spi_unregister_device(spi);
4152ce79d54aSPantelis Antoniou 
4153ce79d54aSPantelis Antoniou 		/* and put the reference of the find */
4154ce79d54aSPantelis Antoniou 		put_device(&spi->dev);
4155ce79d54aSPantelis Antoniou 		break;
4156ce79d54aSPantelis Antoniou 	}
4157ce79d54aSPantelis Antoniou 
4158ce79d54aSPantelis Antoniou 	return NOTIFY_OK;
4159ce79d54aSPantelis Antoniou }
4160ce79d54aSPantelis Antoniou 
4161ce79d54aSPantelis Antoniou static struct notifier_block spi_of_notifier = {
4162ce79d54aSPantelis Antoniou 	.notifier_call = of_spi_notify,
4163ce79d54aSPantelis Antoniou };
4164ce79d54aSPantelis Antoniou #else /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
4165ce79d54aSPantelis Antoniou extern struct notifier_block spi_of_notifier;
4166ce79d54aSPantelis Antoniou #endif /* IS_ENABLED(CONFIG_OF_DYNAMIC) */
4167ce79d54aSPantelis Antoniou 
41687f24467fSOctavian Purdila #if IS_ENABLED(CONFIG_ACPI)
41698caab75fSGeert Uytterhoeven static int spi_acpi_controller_match(struct device *dev, const void *data)
41707f24467fSOctavian Purdila {
41717f24467fSOctavian Purdila 	return ACPI_COMPANION(dev->parent) == data;
41727f24467fSOctavian Purdila }
41737f24467fSOctavian Purdila 
41748caab75fSGeert Uytterhoeven static struct spi_controller *acpi_spi_find_controller_by_adev(struct acpi_device *adev)
41757f24467fSOctavian Purdila {
41767f24467fSOctavian Purdila 	struct device *dev;
41777f24467fSOctavian Purdila 
41787f24467fSOctavian Purdila 	dev = class_find_device(&spi_master_class, NULL, adev,
41798caab75fSGeert Uytterhoeven 				spi_acpi_controller_match);
41806c364062SGeert Uytterhoeven 	if (!dev && IS_ENABLED(CONFIG_SPI_SLAVE))
41816c364062SGeert Uytterhoeven 		dev = class_find_device(&spi_slave_class, NULL, adev,
41828caab75fSGeert Uytterhoeven 					spi_acpi_controller_match);
41837f24467fSOctavian Purdila 	if (!dev)
41847f24467fSOctavian Purdila 		return NULL;
41857f24467fSOctavian Purdila 
41868caab75fSGeert Uytterhoeven 	return container_of(dev, struct spi_controller, dev);
41877f24467fSOctavian Purdila }
41887f24467fSOctavian Purdila 
41897f24467fSOctavian Purdila static struct spi_device *acpi_spi_find_device_by_adev(struct acpi_device *adev)
41907f24467fSOctavian Purdila {
41917f24467fSOctavian Purdila 	struct device *dev;
41927f24467fSOctavian Purdila 
419300500147SSuzuki K Poulose 	dev = bus_find_device_by_acpi_dev(&spi_bus_type, adev);
41945b16668eSWolfram Sang 	return to_spi_device(dev);
41957f24467fSOctavian Purdila }
41967f24467fSOctavian Purdila 
41977f24467fSOctavian Purdila static int acpi_spi_notify(struct notifier_block *nb, unsigned long value,
41987f24467fSOctavian Purdila 			   void *arg)
41997f24467fSOctavian Purdila {
42007f24467fSOctavian Purdila 	struct acpi_device *adev = arg;
42018caab75fSGeert Uytterhoeven 	struct spi_controller *ctlr;
42027f24467fSOctavian Purdila 	struct spi_device *spi;
42037f24467fSOctavian Purdila 
42047f24467fSOctavian Purdila 	switch (value) {
42057f24467fSOctavian Purdila 	case ACPI_RECONFIG_DEVICE_ADD:
42068caab75fSGeert Uytterhoeven 		ctlr = acpi_spi_find_controller_by_adev(adev->parent);
42078caab75fSGeert Uytterhoeven 		if (!ctlr)
42087f24467fSOctavian Purdila 			break;
42097f24467fSOctavian Purdila 
42108caab75fSGeert Uytterhoeven 		acpi_register_spi_device(ctlr, adev);
42118caab75fSGeert Uytterhoeven 		put_device(&ctlr->dev);
42127f24467fSOctavian Purdila 		break;
42137f24467fSOctavian Purdila 	case ACPI_RECONFIG_DEVICE_REMOVE:
42147f24467fSOctavian Purdila 		if (!acpi_device_enumerated(adev))
42157f24467fSOctavian Purdila 			break;
42167f24467fSOctavian Purdila 
42177f24467fSOctavian Purdila 		spi = acpi_spi_find_device_by_adev(adev);
42187f24467fSOctavian Purdila 		if (!spi)
42197f24467fSOctavian Purdila 			break;
42207f24467fSOctavian Purdila 
42217f24467fSOctavian Purdila 		spi_unregister_device(spi);
42227f24467fSOctavian Purdila 		put_device(&spi->dev);
42237f24467fSOctavian Purdila 		break;
42247f24467fSOctavian Purdila 	}
42257f24467fSOctavian Purdila 
42267f24467fSOctavian Purdila 	return NOTIFY_OK;
42277f24467fSOctavian Purdila }
42287f24467fSOctavian Purdila 
42297f24467fSOctavian Purdila static struct notifier_block spi_acpi_notifier = {
42307f24467fSOctavian Purdila 	.notifier_call = acpi_spi_notify,
42317f24467fSOctavian Purdila };
42327f24467fSOctavian Purdila #else
42337f24467fSOctavian Purdila extern struct notifier_block spi_acpi_notifier;
42347f24467fSOctavian Purdila #endif
42357f24467fSOctavian Purdila 
42368ae12a0dSDavid Brownell static int __init spi_init(void)
42378ae12a0dSDavid Brownell {
4238b885244eSDavid Brownell 	int	status;
42398ae12a0dSDavid Brownell 
4240e94b1766SChristoph Lameter 	buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
4241b885244eSDavid Brownell 	if (!buf) {
4242b885244eSDavid Brownell 		status = -ENOMEM;
4243b885244eSDavid Brownell 		goto err0;
42448ae12a0dSDavid Brownell 	}
4245b885244eSDavid Brownell 
4246b885244eSDavid Brownell 	status = bus_register(&spi_bus_type);
4247b885244eSDavid Brownell 	if (status < 0)
4248b885244eSDavid Brownell 		goto err1;
4249b885244eSDavid Brownell 
4250b885244eSDavid Brownell 	status = class_register(&spi_master_class);
4251b885244eSDavid Brownell 	if (status < 0)
4252b885244eSDavid Brownell 		goto err2;
4253ce79d54aSPantelis Antoniou 
42546c364062SGeert Uytterhoeven 	if (IS_ENABLED(CONFIG_SPI_SLAVE)) {
42556c364062SGeert Uytterhoeven 		status = class_register(&spi_slave_class);
42566c364062SGeert Uytterhoeven 		if (status < 0)
42576c364062SGeert Uytterhoeven 			goto err3;
42586c364062SGeert Uytterhoeven 	}
42596c364062SGeert Uytterhoeven 
42605267720eSFabio Estevam 	if (IS_ENABLED(CONFIG_OF_DYNAMIC))
4261ce79d54aSPantelis Antoniou 		WARN_ON(of_reconfig_notifier_register(&spi_of_notifier));
42627f24467fSOctavian Purdila 	if (IS_ENABLED(CONFIG_ACPI))
42637f24467fSOctavian Purdila 		WARN_ON(acpi_reconfig_notifier_register(&spi_acpi_notifier));
4264ce79d54aSPantelis Antoniou 
4265b885244eSDavid Brownell 	return 0;
4266b885244eSDavid Brownell 
42676c364062SGeert Uytterhoeven err3:
42686c364062SGeert Uytterhoeven 	class_unregister(&spi_master_class);
4269b885244eSDavid Brownell err2:
4270b885244eSDavid Brownell 	bus_unregister(&spi_bus_type);
4271b885244eSDavid Brownell err1:
4272b885244eSDavid Brownell 	kfree(buf);
4273b885244eSDavid Brownell 	buf = NULL;
4274b885244eSDavid Brownell err0:
4275b885244eSDavid Brownell 	return status;
4276b885244eSDavid Brownell }
4277b885244eSDavid Brownell 
42788ae12a0dSDavid Brownell /* board_info is normally registered in arch_initcall(),
42798ae12a0dSDavid Brownell  * but even essential drivers wait till later
4280b885244eSDavid Brownell  *
4281b885244eSDavid Brownell  * REVISIT only boardinfo really needs static linking. the rest (device and
4282b885244eSDavid Brownell  * driver registration) _could_ be dynamically linked (modular) ... costs
4283b885244eSDavid Brownell  * include needing to have boardinfo data structures be much more public.
42848ae12a0dSDavid Brownell  */
4285673c0c00SDavid Brownell postcore_initcall(spi_init);
4286