blob: 795fbb48ffa7f080c88ccfd39e5afc7827183d3d [file] [log] [blame]
David Brownell8ae12a02006-01-08 13:34:19 -08001Overview of Linux kernel SPI support
2====================================
3
David Brownellb8852442006-01-08 13:34:23 -0800402-Dec-2005
David Brownell8ae12a02006-01-08 13:34:19 -08005
6What is SPI?
7------------
David Brownellb8852442006-01-08 13:34:23 -08008The "Serial Peripheral Interface" (SPI) is a synchronous four wire serial
9link used to connect microcontrollers to sensors, memory, and peripherals.
David Brownell8ae12a02006-01-08 13:34:19 -080010
David Brownell33e34dc2007-05-08 00:32:21 -070011The three signal wires hold a clock (SCK, often on the order of 10 MHz),
David Brownell8ae12a02006-01-08 13:34:19 -080012and parallel data lines with "Master Out, Slave In" (MOSI) or "Master In,
13Slave Out" (MISO) signals. (Other names are also used.) There are four
14clocking modes through which data is exchanged; mode-0 and mode-3 are most
David Brownellb8852442006-01-08 13:34:23 -080015commonly used. Each clock cycle shifts data out and data in; the clock
16doesn't cycle except when there is data to shift.
David Brownell8ae12a02006-01-08 13:34:19 -080017
18SPI masters may use a "chip select" line to activate a given SPI slave
19device, so those three signal wires may be connected to several chips
20in parallel. All SPI slaves support chipselects. Some devices have
21other signals, often including an interrupt to the master.
22
23Unlike serial busses like USB or SMBUS, even low level protocols for
24SPI slave functions are usually not interoperable between vendors
David Brownell33e34dc2007-05-08 00:32:21 -070025(except for commodities like SPI memory chips).
David Brownell8ae12a02006-01-08 13:34:19 -080026
27 - SPI may be used for request/response style device protocols, as with
28 touchscreen sensors and memory chips.
29
30 - It may also be used to stream data in either direction (half duplex),
31 or both of them at the same time (full duplex).
32
33 - Some devices may use eight bit words. Others may different word
34 lengths, such as streams of 12-bit or 20-bit digital samples.
35
36In the same way, SPI slaves will only rarely support any kind of automatic
37discovery/enumeration protocol. The tree of slave devices accessible from
38a given SPI master will normally be set up manually, with configuration
39tables.
40
41SPI is only one of the names used by such four-wire protocols, and
42most controllers have no problem handling "MicroWire" (think of it as
43half-duplex SPI, for request/response protocols), SSP ("Synchronous
44Serial Protocol"), PSP ("Programmable Serial Protocol"), and other
45related protocols.
46
47Microcontrollers often support both master and slave sides of the SPI
48protocol. This document (and Linux) currently only supports the master
49side of SPI interactions.
50
51
52Who uses it? On what kinds of systems?
53---------------------------------------
54Linux developers using SPI are probably writing device drivers for embedded
55systems boards. SPI is used to control external chips, and it is also a
56protocol supported by every MMC or SD memory card. (The older "DataFlash"
57cards, predating MMC cards but using the same connectors and card shape,
58support only SPI.) Some PC hardware uses SPI flash for BIOS code.
59
60SPI slave chips range from digital/analog converters used for analog
61sensors and codecs, to memory, to peripherals like USB controllers
62or Ethernet adapters; and more.
63
64Most systems using SPI will integrate a few devices on a mainboard.
65Some provide SPI links on expansion connectors; in cases where no
66dedicated SPI controller exists, GPIO pins can be used to create a
67low speed "bitbanging" adapter. Very few systems will "hotplug" an SPI
68controller; the reasons to use SPI focus on low cost and simple operation,
69and if dynamic reconfiguration is important, USB will often be a more
70appropriate low-pincount peripheral bus.
71
72Many microcontrollers that can run Linux integrate one or more I/O
73interfaces with SPI modes. Given SPI support, they could use MMC or SD
74cards without needing a special purpose MMC/SD/SDIO controller.
75
76
77How do these driver programming interfaces work?
78------------------------------------------------
79The <linux/spi/spi.h> header file includes kerneldoc, as does the
David Brownell33e34dc2007-05-08 00:32:21 -070080main source code, and you should certainly read that chapter of the
81kernel API document. This is just an overview, so you get the big
82picture before those details.
David Brownell8ae12a02006-01-08 13:34:19 -080083
David Brownellb8852442006-01-08 13:34:23 -080084SPI requests always go into I/O queues. Requests for a given SPI device
85are always executed in FIFO order, and complete asynchronously through
86completion callbacks. There are also some simple synchronous wrappers
87for those calls, including ones for common transaction types like writing
88a command and then reading its response.
89
David Brownell8ae12a02006-01-08 13:34:19 -080090There are two types of SPI driver, here called:
91
David Brownell33e34dc2007-05-08 00:32:21 -070092 Controller drivers ... controllers may be built in to System-On-Chip
David Brownell8ae12a02006-01-08 13:34:19 -080093 processors, and often support both Master and Slave roles.
94 These drivers touch hardware registers and may use DMA.
David Brownellb8852442006-01-08 13:34:23 -080095 Or they can be PIO bitbangers, needing just GPIO pins.
David Brownell8ae12a02006-01-08 13:34:19 -080096
97 Protocol drivers ... these pass messages through the controller
98 driver to communicate with a Slave or Master device on the
99 other side of an SPI link.
100
101So for example one protocol driver might talk to the MTD layer to export
102data to filesystems stored on SPI flash like DataFlash; and others might
103control audio interfaces, present touchscreen sensors as input interfaces,
104or monitor temperature and voltage levels during industrial processing.
105And those might all be sharing the same controller driver.
106
107A "struct spi_device" encapsulates the master-side interface between
108those two types of driver. At this writing, Linux has no slave side
109programming interface.
110
111There is a minimal core of SPI programming interfaces, focussing on
David Brownell33e34dc2007-05-08 00:32:21 -0700112using the driver model to connect controller and protocol drivers using
David Brownell8ae12a02006-01-08 13:34:19 -0800113device tables provided by board specific initialization code. SPI
114shows up in sysfs in several locations:
115
David Brownell33e34dc2007-05-08 00:32:21 -0700116 /sys/devices/.../CTLR/spiB.C ... spi_device on bus "B",
David Brownell8ae12a02006-01-08 13:34:19 -0800117 chipselect C, accessed through CTLR.
118
David Brownell71117632006-01-08 13:34:29 -0800119 /sys/devices/.../CTLR/spiB.C/modalias ... identifies the driver
120 that should be used with this device (for hotplug/coldplug)
121
David Brownell8ae12a02006-01-08 13:34:19 -0800122 /sys/bus/spi/devices/spiB.C ... symlink to the physical
David Brownell33e34dc2007-05-08 00:32:21 -0700123 spiB.C device
David Brownell8ae12a02006-01-08 13:34:19 -0800124
125 /sys/bus/spi/drivers/D ... driver for one or more spi*.* devices
126
127 /sys/class/spi_master/spiB ... class device for the controller
128 managing bus "B". All the spiB.* devices share the same
129 physical SPI bus segment, with SCLK, MOSI, and MISO.
130
David Brownell8ae12a02006-01-08 13:34:19 -0800131
132How does board-specific init code declare SPI devices?
133------------------------------------------------------
134Linux needs several kinds of information to properly configure SPI devices.
135That information is normally provided by board-specific code, even for
136chips that do support some of automated discovery/enumeration.
137
138DECLARE CONTROLLERS
139
140The first kind of information is a list of what SPI controllers exist.
141For System-on-Chip (SOC) based boards, these will usually be platform
142devices, and the controller may need some platform_data in order to
143operate properly. The "struct platform_device" will include resources
144like the physical address of the controller's first register and its IRQ.
145
146Platforms will often abstract the "register SPI controller" operation,
147maybe coupling it with code to initialize pin configurations, so that
148the arch/.../mach-*/board-*.c files for several boards can all share the
149same basic controller setup code. This is because most SOCs have several
150SPI-capable controllers, and only the ones actually usable on a given
151board should normally be set up and registered.
152
153So for example arch/.../mach-*/board-*.c files might have code like:
154
155 #include <asm/arch/spi.h> /* for mysoc_spi_data */
156
157 /* if your mach-* infrastructure doesn't support kernels that can
158 * run on multiple boards, pdata wouldn't benefit from "__init".
159 */
160 static struct mysoc_spi_data __init pdata = { ... };
161
162 static __init board_init(void)
163 {
164 ...
165 /* this board only uses SPI controller #2 */
166 mysoc_register_spi(2, &pdata);
167 ...
168 }
169
170And SOC-specific utility code might look something like:
171
172 #include <asm/arch/spi.h>
173
174 static struct platform_device spi2 = { ... };
175
176 void mysoc_register_spi(unsigned n, struct mysoc_spi_data *pdata)
177 {
178 struct mysoc_spi_data *pdata2;
179
180 pdata2 = kmalloc(sizeof *pdata2, GFP_KERNEL);
181 *pdata2 = pdata;
182 ...
183 if (n == 2) {
184 spi2->dev.platform_data = pdata2;
185 register_platform_device(&spi2);
186
187 /* also: set up pin modes so the spi2 signals are
188 * visible on the relevant pins ... bootloaders on
189 * production boards may already have done this, but
190 * developer boards will often need Linux to do it.
191 */
192 }
193 ...
194 }
195
196Notice how the platform_data for boards may be different, even if the
197same SOC controller is used. For example, on one board SPI might use
198an external clock, where another derives the SPI clock from current
199settings of some master clock.
200
201
202DECLARE SLAVE DEVICES
203
204The second kind of information is a list of what SPI slave devices exist
205on the target board, often with some board-specific data needed for the
206driver to work correctly.
207
208Normally your arch/.../mach-*/board-*.c files would provide a small table
209listing the SPI devices on each board. (This would typically be only a
210small handful.) That might look like:
211
212 static struct ads7846_platform_data ads_info = {
213 .vref_delay_usecs = 100,
214 .x_plate_ohms = 580,
215 .y_plate_ohms = 410,
216 };
217
218 static struct spi_board_info spi_board_info[] __initdata = {
219 {
220 .modalias = "ads7846",
221 .platform_data = &ads_info,
222 .mode = SPI_MODE_0,
223 .irq = GPIO_IRQ(31),
224 .max_speed_hz = 120000 /* max sample rate at 3V */ * 16,
225 .bus_num = 1,
226 .chip_select = 0,
227 },
228 };
229
230Again, notice how board-specific information is provided; each chip may need
231several types. This example shows generic constraints like the fastest SPI
232clock to allow (a function of board voltage in this case) or how an IRQ pin
233is wired, plus chip-specific constraints like an important delay that's
234changed by the capacitance at one pin.
235
236(There's also "controller_data", information that may be useful to the
237controller driver. An example would be peripheral-specific DMA tuning
238data or chipselect callbacks. This is stored in spi_device later.)
239
240The board_info should provide enough information to let the system work
241without the chip's driver being loaded. The most troublesome aspect of
242that is likely the SPI_CS_HIGH bit in the spi_device.mode field, since
243sharing a bus with a device that interprets chipselect "backwards" is
David Brownell33e34dc2007-05-08 00:32:21 -0700244not possible until the infrastructure knows how to deselect it.
David Brownell8ae12a02006-01-08 13:34:19 -0800245
246Then your board initialization code would register that table with the SPI
247infrastructure, so that it's available later when the SPI master controller
248driver is registered:
249
250 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
251
252Like with other static board-specific setup, you won't unregister those.
253
David Brownell71117632006-01-08 13:34:29 -0800254The widely used "card" style computers bundle memory, cpu, and little else
255onto a card that's maybe just thirty square centimeters. On such systems,
256your arch/.../mach-.../board-*.c file would primarily provide information
257about the devices on the mainboard into which such a card is plugged. That
258certainly includes SPI devices hooked up through the card connectors!
259
David Brownell8ae12a02006-01-08 13:34:19 -0800260
261NON-STATIC CONFIGURATIONS
262
263Developer boards often play by different rules than product boards, and one
264example is the potential need to hotplug SPI devices and/or controllers.
265
Paolo Ornati670e9f32006-10-03 22:57:56 +0200266For those cases you might need to use spi_busnum_to_master() to look
David Brownell8ae12a02006-01-08 13:34:19 -0800267up the spi bus master, and will likely need spi_new_device() to provide the
268board info based on the board that was hotplugged. Of course, you'd later
269call at least spi_unregister_device() when that board is removed.
270
David Brownell71117632006-01-08 13:34:29 -0800271When Linux includes support for MMC/SD/SDIO/DataFlash cards through SPI, those
David Brownell33e34dc2007-05-08 00:32:21 -0700272configurations will also be dynamic. Fortunately, such devices all support
273basic device identification probes, so they should hotplug normally.
David Brownell71117632006-01-08 13:34:29 -0800274
David Brownell8ae12a02006-01-08 13:34:19 -0800275
276How do I write an "SPI Protocol Driver"?
277----------------------------------------
David Brownell33e34dc2007-05-08 00:32:21 -0700278Most SPI drivers are currently kernel drivers, but there's also support
279for userspace drivers. Here we talk only about kernel drivers.
David Brownell8ae12a02006-01-08 13:34:19 -0800280
David Brownellb8852442006-01-08 13:34:23 -0800281SPI protocol drivers somewhat resemble platform device drivers:
David Brownell8ae12a02006-01-08 13:34:19 -0800282
David Brownellb8852442006-01-08 13:34:23 -0800283 static struct spi_driver CHIP_driver = {
284 .driver = {
285 .name = "CHIP",
David Brownellb8852442006-01-08 13:34:23 -0800286 .owner = THIS_MODULE,
287 },
288
David Brownell8ae12a02006-01-08 13:34:19 -0800289 .probe = CHIP_probe,
David Brownellb8852442006-01-08 13:34:23 -0800290 .remove = __devexit_p(CHIP_remove),
David Brownell8ae12a02006-01-08 13:34:19 -0800291 .suspend = CHIP_suspend,
292 .resume = CHIP_resume,
293 };
294
David Brownellb8852442006-01-08 13:34:23 -0800295The driver core will autmatically attempt to bind this driver to any SPI
David Brownell8ae12a02006-01-08 13:34:19 -0800296device whose board_info gave a modalias of "CHIP". Your probe() code
297might look like this unless you're creating a class_device:
298
David Brownellb8852442006-01-08 13:34:23 -0800299 static int __devinit CHIP_probe(struct spi_device *spi)
David Brownell8ae12a02006-01-08 13:34:19 -0800300 {
David Brownell8ae12a02006-01-08 13:34:19 -0800301 struct CHIP *chip;
David Brownellb8852442006-01-08 13:34:23 -0800302 struct CHIP_platform_data *pdata;
303
304 /* assuming the driver requires board-specific data: */
305 pdata = &spi->dev.platform_data;
306 if (!pdata)
307 return -ENODEV;
David Brownell8ae12a02006-01-08 13:34:19 -0800308
309 /* get memory for driver's per-chip state */
310 chip = kzalloc(sizeof *chip, GFP_KERNEL);
311 if (!chip)
312 return -ENOMEM;
Ben Dooks9b40ff42007-02-12 00:52:41 -0800313 spi_set_drvdata(spi, chip);
David Brownell8ae12a02006-01-08 13:34:19 -0800314
315 ... etc
316 return 0;
317 }
318
319As soon as it enters probe(), the driver may issue I/O requests to
320the SPI device using "struct spi_message". When remove() returns,
David Brownell33e34dc2007-05-08 00:32:21 -0700321or after probe() fails, the driver guarantees that it won't submit
322any more such messages.
David Brownell8ae12a02006-01-08 13:34:19 -0800323
Paolo Ornati670e9f32006-10-03 22:57:56 +0200324 - An spi_message is a sequence of protocol operations, executed
David Brownell8ae12a02006-01-08 13:34:19 -0800325 as one atomic sequence. SPI driver controls include:
326
327 + when bidirectional reads and writes start ... by how its
328 sequence of spi_transfer requests is arranged;
329
330 + optionally defining short delays after transfers ... using
331 the spi_transfer.delay_usecs setting;
332
333 + whether the chipselect becomes inactive after a transfer and
334 any delay ... by using the spi_transfer.cs_change flag;
335
336 + hinting whether the next message is likely to go to this same
337 device ... using the spi_transfer.cs_change flag on the last
338 transfer in that atomic group, and potentially saving costs
339 for chip deselect and select operations.
340
341 - Follow standard kernel rules, and provide DMA-safe buffers in
342 your messages. That way controller drivers using DMA aren't forced
343 to make extra copies unless the hardware requires it (e.g. working
344 around hardware errata that force the use of bounce buffering).
345
346 If standard dma_map_single() handling of these buffers is inappropriate,
347 you can use spi_message.is_dma_mapped to tell the controller driver
348 that you've already provided the relevant DMA addresses.
349
350 - The basic I/O primitive is spi_async(). Async requests may be
351 issued in any context (irq handler, task, etc) and completion
352 is reported using a callback provided with the message.
David Brownellb8852442006-01-08 13:34:23 -0800353 After any detected error, the chip is deselected and processing
354 of that spi_message is aborted.
David Brownell8ae12a02006-01-08 13:34:19 -0800355
356 - There are also synchronous wrappers like spi_sync(), and wrappers
357 like spi_read(), spi_write(), and spi_write_then_read(). These
358 may be issued only in contexts that may sleep, and they're all
359 clean (and small, and "optional") layers over spi_async().
360
361 - The spi_write_then_read() call, and convenience wrappers around
362 it, should only be used with small amounts of data where the
363 cost of an extra copy may be ignored. It's designed to support
364 common RPC-style requests, such as writing an eight bit command
365 and reading a sixteen bit response -- spi_w8r16() being one its
366 wrappers, doing exactly that.
367
368Some drivers may need to modify spi_device characteristics like the
369transfer mode, wordsize, or clock rate. This is done with spi_setup(),
370which would normally be called from probe() before the first I/O is
David Brownell33e34dc2007-05-08 00:32:21 -0700371done to the device. However, that can also be called at any time
372that no message is pending for that device.
David Brownell8ae12a02006-01-08 13:34:19 -0800373
374While "spi_device" would be the bottom boundary of the driver, the
375upper boundaries might include sysfs (especially for sensor readings),
376the input layer, ALSA, networking, MTD, the character device framework,
377or other Linux subsystems.
378
David Brownell0c868462006-01-08 13:34:25 -0800379Note that there are two types of memory your driver must manage as part
380of interacting with SPI devices.
381
382 - I/O buffers use the usual Linux rules, and must be DMA-safe.
383 You'd normally allocate them from the heap or free page pool.
384 Don't use the stack, or anything that's declared "static".
385
386 - The spi_message and spi_transfer metadata used to glue those
387 I/O buffers into a group of protocol transactions. These can
388 be allocated anywhere it's convenient, including as part of
389 other allocate-once driver data structures. Zero-init these.
390
391If you like, spi_message_alloc() and spi_message_free() convenience
392routines are available to allocate and zero-initialize an spi_message
393with several transfers.
394
David Brownell8ae12a02006-01-08 13:34:19 -0800395
396How do I write an "SPI Master Controller Driver"?
397-------------------------------------------------
398An SPI controller will probably be registered on the platform_bus; write
399a driver to bind to the device, whichever bus is involved.
400
401The main task of this type of driver is to provide an "spi_master".
402Use spi_alloc_master() to allocate the master, and class_get_devdata()
403to get the driver-private data allocated for that device.
404
405 struct spi_master *master;
406 struct CONTROLLER *c;
407
408 master = spi_alloc_master(dev, sizeof *c);
409 if (!master)
410 return -ENODEV;
411
412 c = class_get_devdata(&master->cdev);
413
414The driver will initialize the fields of that spi_master, including the
415bus number (maybe the same as the platform device ID) and three methods
416used to interact with the SPI core and SPI protocol drivers. It will
David Brownella020ed72006-04-03 15:49:04 -0700417also initialize its own internal state. (See below about bus numbering
418and those methods.)
419
420After you initialize the spi_master, then use spi_register_master() to
421publish it to the rest of the system. At that time, device nodes for
422the controller and any predeclared spi devices will be made available,
423and the driver model core will take care of binding them to drivers.
424
425If you need to remove your SPI controller driver, spi_unregister_master()
426will reverse the effect of spi_register_master().
427
428
429BUS NUMBERING
430
431Bus numbering is important, since that's how Linux identifies a given
432SPI bus (shared SCK, MOSI, MISO). Valid bus numbers start at zero. On
433SOC systems, the bus numbers should match the numbers defined by the chip
434manufacturer. For example, hardware controller SPI2 would be bus number 2,
435and spi_board_info for devices connected to it would use that number.
436
437If you don't have such hardware-assigned bus number, and for some reason
438you can't just assign them, then provide a negative bus number. That will
439then be replaced by a dynamically assigned number. You'd then need to treat
440this as a non-static configuration (see above).
441
442
443SPI MASTER METHODS
David Brownell8ae12a02006-01-08 13:34:19 -0800444
445 master->setup(struct spi_device *spi)
446 This sets up the device clock rate, SPI mode, and word sizes.
447 Drivers may change the defaults provided by board_info, and then
448 call spi_setup(spi) to invoke this routine. It may sleep.
David Brownell33e34dc2007-05-08 00:32:21 -0700449 Unless each SPI slave has its own configuration registers, don't
450 change them right away ... otherwise drivers could corrupt I/O
451 that's in progress for other SPI devices.
David Brownell8ae12a02006-01-08 13:34:19 -0800452
453 master->transfer(struct spi_device *spi, struct spi_message *message)
454 This must not sleep. Its responsibility is arrange that the
David Brownell33e34dc2007-05-08 00:32:21 -0700455 transfer happens and its complete() callback is issued. The two
456 will normally happen later, after other transfers complete, and
457 if the controller is idle it will need to be kickstarted.
David Brownell8ae12a02006-01-08 13:34:19 -0800458
459 master->cleanup(struct spi_device *spi)
460 Your controller driver may use spi_device.controller_state to hold
461 state it dynamically associates with that device. If you do that,
462 be sure to provide the cleanup() method to free that state.
463
David Brownella020ed72006-04-03 15:49:04 -0700464
465SPI MESSAGE QUEUE
466
David Brownell8ae12a02006-01-08 13:34:19 -0800467The bulk of the driver will be managing the I/O queue fed by transfer().
468
469That queue could be purely conceptual. For example, a driver used only
470for low-frequency sensor acess might be fine using synchronous PIO.
471
472But the queue will probably be very real, using message->queue, PIO,
473often DMA (especially if the root filesystem is in SPI flash), and
474execution contexts like IRQ handlers, tasklets, or workqueues (such
475as keventd). Your driver can be as fancy, or as simple, as you need.
David Brownella020ed72006-04-03 15:49:04 -0700476Such a transfer() method would normally just add the message to a
477queue, and then start some asynchronous transfer engine (unless it's
478already running).
David Brownell8ae12a02006-01-08 13:34:19 -0800479
480
481THANKS TO
482---------
483Contributors to Linux-SPI discussions include (in alphabetical order,
484by last name):
485
486David Brownell
487Russell King
488Dmitry Pervushin
489Stephen Street
490Mark Underwood
491Andrew Victor
492Vitaly Wool
493