SAM D21 SERCOM SPI Master Configuration

Overview

This page provides a more detailed description on how to configure the SAM D21 SERCOM peripheral into an SPI Master. We cover the key registers to be configured to implement a simple SPI Master application where the SAM D21 reads/writes data to an external serial flash memory device.


The SPI Master has several configuration possibilities that need to be considered when interfacing to external slave devices.

SPI Transfer Modes

The SPI Master of the SAMD21 supports four data transfer modes. The device that you are communicating with may only support one or two of these modes. You need to refer to the slave device data sheet to determine the supported transfer modes. As and example, the 25AAXXXX/25LCXXXX series of SPI EEPROMs support rising edge only data per the datasheet:

table27-3.png
figure27-3-1.png
figure27-3-2.png

SCK phase is configured by the Clock Phase bit in the CTRLA register (CTRLA.CPHA). SCK polarity is programmed by the Clock Polarity bit in the CTRLA register (CTRLA.CPOL).

Control of the SS line

A second configuration option to consider is the control of the SS line. The SERCOM module configured as SPI Master can control the SS line or you can define and configure the SS under software control. There are benefits to each option. One instance of controlling the SS from software arises when a slave is expecting the SS to remain low between bytes. As an example of this type of slave operation, the DOGS102-6 LCD has commands that require the SS to be held low between individual transactions. This behavior is achieved by controlling the SS with software. With hardware control, the SS pin will always be driven high for a minimum of one baud cycle between frames:

figure27-7.png

A master with multiple slaves in parallel MUST control each SS via software:

figure27-5.png

A master with multiple slaves in series can chose either software or hardware control of SS:

figure27-6.png

Configuration Steps

The following instructions should be used when configuring the SERCOM peripheral to work as an SPI Master. This section explores a simple and basic configuration, where the SAM D21 is connected to a Serial Flash memory:

spi-master-demo-connection-diagram.png

This application uses:

  • SERCOM5 in SPI Master mode
  • PB23 (SCK), PB22 (MOSI), PB16 (MISO)
  • PA13 (Software-driven SS line)

More advanced applications might use extra functionalities from the peripheral, but the basic principle remains the same.

Here is a high-level step list to configure the peripheral:

  1. Configure the pins to work as SERCOM I/Os using the PMUX
  2. Provide a bus clock to the SERCOM peripheral using the Power Manager
  3. Provide a generic clock to the SERCOM peripheral using GCLK
  4. Configure the SERCOM SPI control registers for SPI Master operation

Step 1. Configure the SERCOM5 SPI Pins Using the PMUX

Use the “I/O Multiplexing and Considerations” section of the datasheet to determine what pins can be used and for which SERCOM. The SERCOM operating in Master SPI mode requires four pins to be configured as shown in Table-27-2 from the SAMD21 family datasheet:

table27-2.png

MSSEN = 1 is hardware control. Our configuration example uses MSSEN=0 or software control of SS

The PMUX configuration for alternate pin functions can be found in the “I/O Multiplexing and Considerations” chapter of the datasheet of the device being targeted. The pins used in this example and their function selection are outlined in red below.

  • PA13 – software controlled slave select line setup as a GPIO
  • PB16 uses SERCOM5/PAD[0] for MISO operation
  • PB22 uses SERCOM5/PAD[2] for MOSI operation
  • PB23 uses SERCOM5/PAD[3] for SCK operation
pmux-settings.png

The PMUX configuration of the SCK, MOSI and MISO pins is as follows:

  • PB16 is configured to use the “C” alternate function designation (outlined in GREEN above)
  • PB22/PB23 are configured to use the “D” alternate function designation (outlined in GREEN above)

The following is a code sample that performs these assignments:

spi-master-pmux-config-code-snippet.png

Finally, we configure PA13 GPIO for the SS function:

#define GPIO_GROUP_SS  0         // PORT group of PA13 (PORTA = PORT group 0)
#define GPIO_MAP_SS    PORT_PA13 // PA13 bit position macro (1<<13)

// Pre-setting Slave Select (SS) high
PORT->Group[GPIO_GROUP_SS].OUTSET.reg = GPIO_MAP_SS;

// Setting SPI Slave Select as an output 
PORT->Group[GPIO_GROUP_SS].DIRSET.reg = GPIO_MAP_SS;

Step 2. Provide a Bus Clock to the SERCOM Peripheral Using the Power Manager

The SERCOM peripheral is implemented on the Advanced Peripheral Bus Clock (APBC). To communicate with the register set, we enable the synchronous clock to the peripheral using the Power Manager (PM) register set. Here is code example for enabling SERCOM5:

PM->APBCMASK.reg |= PM_APBCMASK_SERCOM5; //Enable the SERCOM5 under the PM

Step 3. Provide a Generic Clock to the SERCOM Peripheral Using GCLK

The following is an example for SERCOM5 being configured to use Generic Clock source 0 (GCLK 0 - same clock source as used for the CPU):

GCLK->CLKCTRL.reg = GCLK_CLKCTRL_ID(SERCOM5_GCLK_ID_CORE) |        
    GCLK_CLKCTRL_CLKEN | GCLK_CLKCTRL_GEN(0);

This is only valid for the SAMD Cortex®-M0+ devices. On the SAML, the configuration for the clocks are different!

Step 4. Configure the SERCOM SPI control registers for SPI Master operation

The following registers are enable-protected, meaning that they can only be written when the SPI is disabled (i.e. CTRL.ENABLE=0):

  • Control A register CTRLA, except Enable CTRLA.ENABLE and Software Reset CTRLA.SWRST
  • Control B register CTRLB, except Receiver Enable CTRLB.RXEN
  • Baud register BAUD

When the SPI is enabled or is being enabled (i.e. CTRLA.ENABLE=1), any writes to these registers are discarded.

The following code example disables the SERCOM SPI to allow configuration of the registers:

// Disable the SERCOM SPI module
SERCOM5->SPI.CTRLA.bit.ENABLE = 0;

Select SERCOM SPI Master Mode Input/Output PADs

The combined configuration of PORT, the Data In Pinout (DIPO) and the Data Out Pinout (DOPO) bit groups in the Control A register (CTRLA.DIPO and CTRLA.DOPO) define the physical position of the SPI signals.

In this application, the default settings are being used. The exception is the DOPO setting and this needs to be set to PAD[2] and PAD [3] as the SPI data out pins:

dopo-pinout-setting.png

The following code sample performs this setting:

// Configure SERCOM5 as SPI Master
// DOPO is set to PAD[2,3]
SPI_SERCOM->SPI.CTRLA.reg = SERCOM_SPI_CTRLA_MODE_SPI_MASTER|    
    SERCOM_SPI_CTRLA_DOPO(1);

BAUD Rate Setting

This is based on desired baud and the asynchronous (GCLK) clock source provided to the SERCOM:

table25-2.png

For our example, we are configuring a 50 kHz baud clock, derived from an 8 MHz GCLK source. The following code example performs this initialization:

#define SPI_CLK_FREQ 8000000
#define SPI_BAUD 50000

// Calculate BAUD value
uint16_t BAUD_REG = ((float)SPI_CLK_FREQ / (float)(2 * SPI_BAUD)) - 1;

// Set the SPI baud rate    
SPI_SERCOM->SPI.BAUD.reg = SERCOM_SPI_BAUD_BAUD(BAUD_REG);

// Enable the Sercom SPI                
SPI_SERCOM->SPI.CTRLA.reg |= SERCOM_SPI_CTRLA_ENABLE;

// What for synchronization of SERCOM SPI registersbwtween the clock domains            
while(SPI_SERCOM->SPI.SYNCBUSY.bit.ENABLE);


After all the steps of this configuration are done, the system is ready to transmit commands/data to the serial flash device. Visit the SAM D21 SERCOM SPI Master Example Project page to see the complete working demo.

 Learn More

 
SERCOM SPI Master Overview
Learn more >
 
SERCOM SPI Master Example Project
Learn more >
© 2024 Microchip Technology, Inc.
Notice: ARM and Cortex are the registered trademarks of ARM Limited in the EU and other countries.
Information contained on this site regarding device applications and the like is provided only for your convenience and may be superseded by updates. It is your responsibility to ensure that your application meets with your specifications. MICROCHIP MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND WHETHER EXPRESS OR IMPLIED, WRITTEN OR ORAL, STATUTORY OR OTHERWISE, RELATED TO THE INFORMATION, INCLUDING BUT NOT LIMITED TO ITS CONDITION, QUALITY, PERFORMANCE, MERCHANTABILITY OR FITNESS FOR PURPOSE. Microchip disclaims all liability arising from this information and its use. Use of Microchip devices in life support and/or safety applications is entirely at the buyer's risk, and the buyer agrees to defend, indemnify and hold harmless Microchip from any and all damages, claims, suits, or expenses resulting from such use. No licenses are conveyed, implicitly or otherwise, under any Microchip intellectual property rights.