[PATCH] spi: simple SPI framework
[deliverable/linux.git] / Documentation / spi / spi-summary
CommitLineData
8ae12a0d
DB
1Overview of Linux kernel SPI support
2====================================
3
422-Nov-2005
5
6What is SPI?
7------------
8The "Serial Peripheral Interface" (SPI) is a four-wire point-to-point
9serial link used to connect microcontrollers to sensors and memory.
10
11The three signal wires hold a clock (SCLK, often on the order of 10 MHz),
12and 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
15commonly used.
16
17SPI masters may use a "chip select" line to activate a given SPI slave
18device, so those three signal wires may be connected to several chips
19in parallel. All SPI slaves support chipselects. Some devices have
20other signals, often including an interrupt to the master.
21
22Unlike serial busses like USB or SMBUS, even low level protocols for
23SPI slave functions are usually not interoperable between vendors
24(except for cases like SPI memory chips).
25
26 - SPI may be used for request/response style device protocols, as with
27 touchscreen sensors and memory chips.
28
29 - It may also be used to stream data in either direction (half duplex),
30 or both of them at the same time (full duplex).
31
32 - Some devices may use eight bit words. Others may different word
33 lengths, such as streams of 12-bit or 20-bit digital samples.
34
35In the same way, SPI slaves will only rarely support any kind of automatic
36discovery/enumeration protocol. The tree of slave devices accessible from
37a given SPI master will normally be set up manually, with configuration
38tables.
39
40SPI is only one of the names used by such four-wire protocols, and
41most controllers have no problem handling "MicroWire" (think of it as
42half-duplex SPI, for request/response protocols), SSP ("Synchronous
43Serial Protocol"), PSP ("Programmable Serial Protocol"), and other
44related protocols.
45
46Microcontrollers often support both master and slave sides of the SPI
47protocol. This document (and Linux) currently only supports the master
48side of SPI interactions.
49
50
51Who uses it? On what kinds of systems?
52---------------------------------------
53Linux developers using SPI are probably writing device drivers for embedded
54systems boards. SPI is used to control external chips, and it is also a
55protocol supported by every MMC or SD memory card. (The older "DataFlash"
56cards, predating MMC cards but using the same connectors and card shape,
57support only SPI.) Some PC hardware uses SPI flash for BIOS code.
58
59SPI slave chips range from digital/analog converters used for analog
60sensors and codecs, to memory, to peripherals like USB controllers
61or Ethernet adapters; and more.
62
63Most systems using SPI will integrate a few devices on a mainboard.
64Some provide SPI links on expansion connectors; in cases where no
65dedicated SPI controller exists, GPIO pins can be used to create a
66low speed "bitbanging" adapter. Very few systems will "hotplug" an SPI
67controller; the reasons to use SPI focus on low cost and simple operation,
68and if dynamic reconfiguration is important, USB will often be a more
69appropriate low-pincount peripheral bus.
70
71Many microcontrollers that can run Linux integrate one or more I/O
72interfaces with SPI modes. Given SPI support, they could use MMC or SD
73cards without needing a special purpose MMC/SD/SDIO controller.
74
75
76How do these driver programming interfaces work?
77------------------------------------------------
78The <linux/spi/spi.h> header file includes kerneldoc, as does the
79main source code, and you should certainly read that. This is just
80an overview, so you get the big picture before the details.
81
82There are two types of SPI driver, here called:
83
84 Controller drivers ... these are often built in to System-On-Chip
85 processors, and often support both Master and Slave roles.
86 These drivers touch hardware registers and may use DMA.
87
88 Protocol drivers ... these pass messages through the controller
89 driver to communicate with a Slave or Master device on the
90 other side of an SPI link.
91
92So for example one protocol driver might talk to the MTD layer to export
93data to filesystems stored on SPI flash like DataFlash; and others might
94control audio interfaces, present touchscreen sensors as input interfaces,
95or monitor temperature and voltage levels during industrial processing.
96And those might all be sharing the same controller driver.
97
98A "struct spi_device" encapsulates the master-side interface between
99those two types of driver. At this writing, Linux has no slave side
100programming interface.
101
102There is a minimal core of SPI programming interfaces, focussing on
103using driver model to connect controller and protocol drivers using
104device tables provided by board specific initialization code. SPI
105shows up in sysfs in several locations:
106
107 /sys/devices/.../CTLR/spiB.C ... spi_device for on bus "B",
108 chipselect C, accessed through CTLR.
109
110 /sys/bus/spi/devices/spiB.C ... symlink to the physical
111 spiB-C device
112
113 /sys/bus/spi/drivers/D ... driver for one or more spi*.* devices
114
115 /sys/class/spi_master/spiB ... class device for the controller
116 managing bus "B". All the spiB.* devices share the same
117 physical SPI bus segment, with SCLK, MOSI, and MISO.
118
119The basic I/O primitive submits an asynchronous message to an I/O queue
120maintained by the controller driver. A completion callback is issued
121asynchronously when the data transfer(s) in that message completes.
122There are also some simple synchronous wrappers for those calls.
123
124
125How does board-specific init code declare SPI devices?
126------------------------------------------------------
127Linux needs several kinds of information to properly configure SPI devices.
128That information is normally provided by board-specific code, even for
129chips that do support some of automated discovery/enumeration.
130
131DECLARE CONTROLLERS
132
133The first kind of information is a list of what SPI controllers exist.
134For System-on-Chip (SOC) based boards, these will usually be platform
135devices, and the controller may need some platform_data in order to
136operate properly. The "struct platform_device" will include resources
137like the physical address of the controller's first register and its IRQ.
138
139Platforms will often abstract the "register SPI controller" operation,
140maybe coupling it with code to initialize pin configurations, so that
141the arch/.../mach-*/board-*.c files for several boards can all share the
142same basic controller setup code. This is because most SOCs have several
143SPI-capable controllers, and only the ones actually usable on a given
144board should normally be set up and registered.
145
146So for example arch/.../mach-*/board-*.c files might have code like:
147
148 #include <asm/arch/spi.h> /* for mysoc_spi_data */
149
150 /* if your mach-* infrastructure doesn't support kernels that can
151 * run on multiple boards, pdata wouldn't benefit from "__init".
152 */
153 static struct mysoc_spi_data __init pdata = { ... };
154
155 static __init board_init(void)
156 {
157 ...
158 /* this board only uses SPI controller #2 */
159 mysoc_register_spi(2, &pdata);
160 ...
161 }
162
163And SOC-specific utility code might look something like:
164
165 #include <asm/arch/spi.h>
166
167 static struct platform_device spi2 = { ... };
168
169 void mysoc_register_spi(unsigned n, struct mysoc_spi_data *pdata)
170 {
171 struct mysoc_spi_data *pdata2;
172
173 pdata2 = kmalloc(sizeof *pdata2, GFP_KERNEL);
174 *pdata2 = pdata;
175 ...
176 if (n == 2) {
177 spi2->dev.platform_data = pdata2;
178 register_platform_device(&spi2);
179
180 /* also: set up pin modes so the spi2 signals are
181 * visible on the relevant pins ... bootloaders on
182 * production boards may already have done this, but
183 * developer boards will often need Linux to do it.
184 */
185 }
186 ...
187 }
188
189Notice how the platform_data for boards may be different, even if the
190same SOC controller is used. For example, on one board SPI might use
191an external clock, where another derives the SPI clock from current
192settings of some master clock.
193
194
195DECLARE SLAVE DEVICES
196
197The second kind of information is a list of what SPI slave devices exist
198on the target board, often with some board-specific data needed for the
199driver to work correctly.
200
201Normally your arch/.../mach-*/board-*.c files would provide a small table
202listing the SPI devices on each board. (This would typically be only a
203small handful.) That might look like:
204
205 static struct ads7846_platform_data ads_info = {
206 .vref_delay_usecs = 100,
207 .x_plate_ohms = 580,
208 .y_plate_ohms = 410,
209 };
210
211 static struct spi_board_info spi_board_info[] __initdata = {
212 {
213 .modalias = "ads7846",
214 .platform_data = &ads_info,
215 .mode = SPI_MODE_0,
216 .irq = GPIO_IRQ(31),
217 .max_speed_hz = 120000 /* max sample rate at 3V */ * 16,
218 .bus_num = 1,
219 .chip_select = 0,
220 },
221 };
222
223Again, notice how board-specific information is provided; each chip may need
224several types. This example shows generic constraints like the fastest SPI
225clock to allow (a function of board voltage in this case) or how an IRQ pin
226is wired, plus chip-specific constraints like an important delay that's
227changed by the capacitance at one pin.
228
229(There's also "controller_data", information that may be useful to the
230controller driver. An example would be peripheral-specific DMA tuning
231data or chipselect callbacks. This is stored in spi_device later.)
232
233The board_info should provide enough information to let the system work
234without the chip's driver being loaded. The most troublesome aspect of
235that is likely the SPI_CS_HIGH bit in the spi_device.mode field, since
236sharing a bus with a device that interprets chipselect "backwards" is
237not possible.
238
239Then your board initialization code would register that table with the SPI
240infrastructure, so that it's available later when the SPI master controller
241driver is registered:
242
243 spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info));
244
245Like with other static board-specific setup, you won't unregister those.
246
247
248NON-STATIC CONFIGURATIONS
249
250Developer boards often play by different rules than product boards, and one
251example is the potential need to hotplug SPI devices and/or controllers.
252
253For those cases you might need to use use spi_busnum_to_master() to look
254up the spi bus master, and will likely need spi_new_device() to provide the
255board info based on the board that was hotplugged. Of course, you'd later
256call at least spi_unregister_device() when that board is removed.
257
258
259How do I write an "SPI Protocol Driver"?
260----------------------------------------
261All SPI drivers are currently kernel drivers. A userspace driver API
262would just be another kernel driver, probably offering some lowlevel
263access through aio_read(), aio_write(), and ioctl() calls and using the
264standard userspace sysfs mechanisms to bind to a given SPI device.
265
266SPI protocol drivers are normal device drivers, with no more wrapper
267than needed by platform devices:
268
269 static struct device_driver CHIP_driver = {
270 .name = "CHIP",
271 .bus = &spi_bus_type,
272 .probe = CHIP_probe,
273 .remove = __exit_p(CHIP_remove),
274 .suspend = CHIP_suspend,
275 .resume = CHIP_resume,
276 };
277
278The SPI core will autmatically attempt to bind this driver to any SPI
279device whose board_info gave a modalias of "CHIP". Your probe() code
280might look like this unless you're creating a class_device:
281
282 static int __init CHIP_probe(struct device *dev)
283 {
284 struct spi_device *spi = to_spi_device(dev);
285 struct CHIP *chip;
286 struct CHIP_platform_data *pdata = dev->platform_data;
287
288 /* get memory for driver's per-chip state */
289 chip = kzalloc(sizeof *chip, GFP_KERNEL);
290 if (!chip)
291 return -ENOMEM;
292 dev_set_drvdata(dev, chip);
293
294 ... etc
295 return 0;
296 }
297
298As soon as it enters probe(), the driver may issue I/O requests to
299the SPI device using "struct spi_message". When remove() returns,
300the driver guarantees that it won't submit any more such messages.
301
302 - An spi_message is a sequence of of protocol operations, executed
303 as one atomic sequence. SPI driver controls include:
304
305 + when bidirectional reads and writes start ... by how its
306 sequence of spi_transfer requests is arranged;
307
308 + optionally defining short delays after transfers ... using
309 the spi_transfer.delay_usecs setting;
310
311 + whether the chipselect becomes inactive after a transfer and
312 any delay ... by using the spi_transfer.cs_change flag;
313
314 + hinting whether the next message is likely to go to this same
315 device ... using the spi_transfer.cs_change flag on the last
316 transfer in that atomic group, and potentially saving costs
317 for chip deselect and select operations.
318
319 - Follow standard kernel rules, and provide DMA-safe buffers in
320 your messages. That way controller drivers using DMA aren't forced
321 to make extra copies unless the hardware requires it (e.g. working
322 around hardware errata that force the use of bounce buffering).
323
324 If standard dma_map_single() handling of these buffers is inappropriate,
325 you can use spi_message.is_dma_mapped to tell the controller driver
326 that you've already provided the relevant DMA addresses.
327
328 - The basic I/O primitive is spi_async(). Async requests may be
329 issued in any context (irq handler, task, etc) and completion
330 is reported using a callback provided with the message.
331
332 - There are also synchronous wrappers like spi_sync(), and wrappers
333 like spi_read(), spi_write(), and spi_write_then_read(). These
334 may be issued only in contexts that may sleep, and they're all
335 clean (and small, and "optional") layers over spi_async().
336
337 - The spi_write_then_read() call, and convenience wrappers around
338 it, should only be used with small amounts of data where the
339 cost of an extra copy may be ignored. It's designed to support
340 common RPC-style requests, such as writing an eight bit command
341 and reading a sixteen bit response -- spi_w8r16() being one its
342 wrappers, doing exactly that.
343
344Some drivers may need to modify spi_device characteristics like the
345transfer mode, wordsize, or clock rate. This is done with spi_setup(),
346which would normally be called from probe() before the first I/O is
347done to the device.
348
349While "spi_device" would be the bottom boundary of the driver, the
350upper boundaries might include sysfs (especially for sensor readings),
351the input layer, ALSA, networking, MTD, the character device framework,
352or other Linux subsystems.
353
354
355How do I write an "SPI Master Controller Driver"?
356-------------------------------------------------
357An SPI controller will probably be registered on the platform_bus; write
358a driver to bind to the device, whichever bus is involved.
359
360The main task of this type of driver is to provide an "spi_master".
361Use spi_alloc_master() to allocate the master, and class_get_devdata()
362to get the driver-private data allocated for that device.
363
364 struct spi_master *master;
365 struct CONTROLLER *c;
366
367 master = spi_alloc_master(dev, sizeof *c);
368 if (!master)
369 return -ENODEV;
370
371 c = class_get_devdata(&master->cdev);
372
373The driver will initialize the fields of that spi_master, including the
374bus number (maybe the same as the platform device ID) and three methods
375used to interact with the SPI core and SPI protocol drivers. It will
376also initialize its own internal state.
377
378 master->setup(struct spi_device *spi)
379 This sets up the device clock rate, SPI mode, and word sizes.
380 Drivers may change the defaults provided by board_info, and then
381 call spi_setup(spi) to invoke this routine. It may sleep.
382
383 master->transfer(struct spi_device *spi, struct spi_message *message)
384 This must not sleep. Its responsibility is arrange that the
385 transfer happens and its complete() callback is issued; the two
386 will normally happen later, after other transfers complete.
387
388 master->cleanup(struct spi_device *spi)
389 Your controller driver may use spi_device.controller_state to hold
390 state it dynamically associates with that device. If you do that,
391 be sure to provide the cleanup() method to free that state.
392
393The bulk of the driver will be managing the I/O queue fed by transfer().
394
395That queue could be purely conceptual. For example, a driver used only
396for low-frequency sensor acess might be fine using synchronous PIO.
397
398But the queue will probably be very real, using message->queue, PIO,
399often DMA (especially if the root filesystem is in SPI flash), and
400execution contexts like IRQ handlers, tasklets, or workqueues (such
401as keventd). Your driver can be as fancy, or as simple, as you need.
402
403
404THANKS TO
405---------
406Contributors to Linux-SPI discussions include (in alphabetical order,
407by last name):
408
409David Brownell
410Russell King
411Dmitry Pervushin
412Stephen Street
413Mark Underwood
414Andrew Victor
415Vitaly Wool
416
This page took 0.052543 seconds and 5 git commands to generate.