Serial Communications Protocols Part 5 - SPI Standard

Mark Harris
|  Created: May 24, 2021  |  Updated: November 28, 2023
Serial Communications Protocols Part 5 - SPI Standard

Table of Contents

In this next article in our series that is looking at different types of Serial Communication Protocols, we will be looking at the popular SPI protocols. This is one of many popular protocols in common usage that we will be looking at. We will provide a useful summary of each type’s advantages and disadvantages at the end of this series.

SPI stands for Serial Peripheral Interface. It is a serial communication bus commonly used for short-distance communications between microcontrollers and small peripherals, such as RF modules, shift registers, external flash ICs, and various sensors and SD cards. It is synchronous, which means it has a separate clock line.

The SPI protocol was developed by Motorola, although it is used in a considerable number of different ICs, modules, and devices produced by other manufacturers.

The SPI protocol allows full-duplex communications, which means that devices connected to the bus can simultaneously send and receive data.

The SPI communication protocol consists of four lines in addition to the ground, these are:

  • SCLK - Serial clock (Output from master)
  • MOSI - Master Out Slave In (Data output from master)
  • MISO - Master In Slave Out (Data output from slave)
  • SS or CS - Slave select or Chip select (often an active-low signal, output by the master)

The SPI pins can be labeled with various names depending on who the datasheet is from, so it is essential to carefully read the datasheet before starting your design.

SPI wiring between two devices
SPI standard wiring between two devices

The SPI standard architecture typically consists of one master device and multiple slave devices that the master communicates with, which means that one set of data lines can be connected to multiple slave devices. However, the slave selection is quite different from I2C. The number of slave devices that can be used in an SPI communication protocol network is limited by the number of SS (Slave Select) or CS (Chip Select) pins you have available.

SPI multi-device connection with several SS pins
SPI multi-device connection with several SS pins

Some of the typical applications where the SPI protocol is used include:

  • Temperature and Pressure sensors
  • ADC, DAC, Audio codecs, Digital Potentiometers
  • Touchscreens, video game controllers
  • Camera lens controls
  • External Flash and EEPROM ICs
  • RTC (Real-Time Clocks)
  • LCD
  • MMC or SD cards

We will begin by looking at the communications between a master and a slave. The bus master device should configure the SPI modes communication clock settings to use a frequency supported by the slave device (typically up to a few MHz).

The master then selects which slave he wants to communicate with by pulling the appropriate slave select pin low, which causes that slave to start to listen. The other slaves that have their select pin pulled high will ignore the commands.

The communication principle is that the master device sends data to the listening slave device through the MOSI line. The slave can read this data while simultaneously returning data to the master device through the MISO line, where the master can read it. This is how full-duplex data transmission occurs.

Usually, this communication involves the use of 8-bit size registers, with the first bit being the MSB (Most Significant Bit). Both master and slave shift one bit forward through the register and outputs the last bit on the clock edge.

Master and slave communication and registers example
Master and slave communication and registers example

When the transmission is complete, the master device deselects the slave by pulling the corresponding slave select pin high.

Although SPI protocol data transmissions often comprise 8-bit messaging, other word sizes, such as 16-bit, are also in common use for applications such as touchscreen controllers of audio codecs.

During the data transmissions that use mechanisms other than the clock speed, alternate settings such as clock polarity (which logic level represents the idle state) and phase (on which clock edge, rising or falling, the data line is sampled) can be used.

There are four different SPI modes:

SPI Mode CPOL  CPHA  Clock Polarity   (in idle state) Clock Phase
0 0 0 Logic Low Data sampled on the rising edge, output on the falling edge
1 0 1 Lowic Low Data sampled on the falling edge, and output on the rising edge
 
2 1 1 Logic High Data sampled on the falling edge, output on the rising edge
 
3 1 0 Logic High Data sampled on the rising edge and output on the falling edge

 

The diagram below shows the timing diagrams of the SPI lines in these different modes:

SPI Mode 0: CPOL = 0, CPHA = 0, CLK idle state = low, data sampled on rising edge and shifted on falling edge
SPI Mode 0: CPOL = 0, CPHA = 0, CLK idle state = low, data sampled on the rising edge and shifted on the falling edge
SPI Mode 1: CPOL = 0, CPHA = 1, CLK idle state = low, data sampled on falling edge and shifted on rising edge
SPI Mode 1: CPOL = 0, CPHA = 1, CLK idle state = low, data sampled on the falling edge and shifted on the rising edge
SPI Mode 2: CPOL = 1, CPHA = 1, CLK idle state = high, data sampled on falling edge and shifted on rising edge
SPI Mode 2: CPOL = 1, CPHA = 1, CLK idle state = high, data sampled on the falling edge and shifted on the rising edge
SPI Mode 3: CPOL = 1, CPHA = 0, CLK idle state = low, data sampled on rising edge and shifted on falling edge
SPI Mode 3: CPOL = 1, CPHA = 0, CLK idle state = low, data sampled on the rising edge and shifted on the falling edge

One of the reasons for the SPI protocol’s popularity is that the receiving hardware can be very simple. It can be implemented using a simple shift register. This is a much easier and cheaper solution than is required to implement I2C.

Because of the high SPI bus speed, the transmission distance should be kept very low (not more than a few meters). However, it is possible to increase the maximum bus length by lowering the clock speed or using a specialized SPI driver chip.

Another solution to extend the range is to use data link ICs as an intermediary stage:

SPI bus extension using a data link IC
SPI bus extension using a data link IC

For example, you can extend the SPI modes communication distance by using an RS-422 data link as an intermediary stage.

Advantages of using the SPI protocol:

  • Much faster than I2C
  • Receiving hardware is very simple (simple shift register)
  • Can support multiple slaves

Disadvantages of using the SPI protocol:

  • Requires more signal lines
  • Communication must be well-defined as most slave devices use their own protocols
  • Master must control communications (slaves cannot talk to each other without a command from the master)
  • Usually requires an individual SS or CS line for each slave device

Summary

This article has looked at some features of the popular SPI protocols and discussed some of their advantages and implementation details. In the other articles in this series, we will look at some of the alternate serial communication protocols available. The SPI protocol standard is advantageous in a few ways when compared to others, but not without some shortcomings.

The design tools in Altium Designer® contain everything you need to keep up with new technology. Talk to us today and find out how we can enhance your next PCB Design.

About Author

About Author

Mark Harris is an engineer's engineer, with over 16 years of diverse experience within the electronics industry, varying from aerospace and defense contracts to small product startups, hobbies and everything in between. Before moving to the United Kingdom, Mark was employed by one of the largest research organizations in Canada; every day brought a different project or challenge involving electronics, mechanics, and software. He also publishes the most extensive open source database library of components for Altium Designer called the Celestial Database Library. Mark has an affinity for open-source hardware and software and the innovative problem-solving required for the day-to-day challenges such projects offer. Electronics are passion; watching a product go from an idea to reality and start interacting with the world is a never-ending source of enjoyment. 

You can contact Mark directly at: mark@originalcircuit.com

Related Resources

Related Technical Documentation

Back to Home
Thank you, you are now subscribed to updates.