Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Introduction

This page gives an overview of axi-quad spi driver which is available as part of the Xilinx Vivado and Vitis distribution.

Source path for the driver:The AXI Quad Serial Peripheral Interface (SPI) core connects the AXI4 interface to those SPI slave devices that support the Standard, Dual, or Quad SPI protocol instruction set. This core provides a serial interface to SPI slave devices. The Dual/Quad SPI is an enhancement to the standard SPI protocol (described in the Motorola M68HC11 data sheet) and provides a simple method for data exchange between a master and a slave.

Driver Sources

The source code for the driver is included with the Vitis Unified Software Platform installation, as well as being available in the Xilinx Github repository.

Driver Name

Path in Vitis

Path in Github

spi

<Vitis Install Directory>/data/embedded/XilinxProcessorIPLib/drivers/spi

https://github.com/Xilinx/embeddedsw/tree/master/XilinxProcessorIPLib/drivers/spi

Note: To view the sources for a particular release, use the rel-version tag in github.  For example, for the 2020.1 release, the proper version of the code is: https://github.com/Xilinx/embeddedsw/tree/masterxilinx-v2020.1/XilinxProcessorIPLib/drivers/spi

Driver The driver source code is organized into different folders. Below diagram   The table below shows the qspipsu nandpsu driver source organization.spi

Directory

Description

...

doc

...

Provides the API and data structure details

...

|

...

data

Driver .tcl and .mdd file

examples

Example applications that show how to use the driver

...

|

...

features

src

Driver source files

Features Supported

The controller driver will be exclusive to GQSPI including API’s to be used for configuring the host controller and transmitting the data.

Commands Supported:

The following list of basic commands are supported by the Standalone driver:

  1. Read Identification

  2. Read Page

  3. Program Page

  4. Erase (Chip/Die/Bulk Erase)

  5. Read Status

  6. EAR Register Access

Controller Features Supported:

The following features are supported in the QSPI Standalone driver.

Driver Implementation

For a full list of features supported by this IP, please refer to Axi Quad Spi.

Features

  1. DMA access (aligned address only)

  2. IO access

  3. Configurable clock

  4. Configurable bus width

  5. Interrupts – will be chosen and enabled internally

Example Applications:

  1. Generic register read/write operations

  2. 3 byte and 4 byte addressing

  3. Flash configurations illustrated in examples – Single

...

Known Issues and Limitations

  • The standalone driver supports Axi-spi and AXI Quad spi

...

Test cases

...

Supported Flash vendors

  • Micron

Example Applications

Refer to the driver examples directory for various example applications that exercise the different features of the driver. Each application is linked in the table below. The following sections describe the usage and expected output of the various applications.  These example applications can be imported into the Vitis IDE from the Board Support Package  settings tab

Links to Examples

Examples Path:

https://github.com/Xilinx/embeddedsw/tree/xilinx-v2020.1/XilinxProcessorIPLib/drivers/spi/examples

Test Name

Example Source

Description

Axi Quad Spi STM Flash Example

xspi_stm_flash_example.c

This examples does basic read and write test from the Stm flash device

Axi Quad Spi Numonyx Flash Example

xspi_numonyx_flash_quad_example.c

This examples does basic read and write test from the Numonyx flash device

Axi Quad Spi Winbond Flash Example

xspi_winbond_flash_quad_example.c

This examples does basic read and write test from the Winbind flash device

Axi Quad Spi Atmel Flash Example

xspi_atmel_flash_example.c

This examples does basic read and write test from the Atmel flash device

Example Application Usage

Axi Quad Spi STM FlashExample

This examples does basic read and write test from the Stm flash device.

XSPI Stm Flash Example Test
Successfully ran XSPI Stm Flash Example Test

Axi Quad Spi Numonyx FlashExample

This examples does basic read and write test from the Numonyx flash device.

XSPI Numonyx Flash Quad Example Test

Successfully ran XSPI Numonyx Flash Quad Example Test

Axi Quad Spi Winbond FlashExample

This examples does basic read and write test from the Winbond flash device.

XSPI Windbond Flash Quad Example Test

Successfully ran XSPI Flash Quad Example Test

Axi Quad Spi Atmel FlashExample

This examples does basic read and write test from the Atmel flash device.

XSPI Atmel Flash Example Test
Successfully ran XSPI Atmel Flash Example Test

Example Design Architecture

NA

Performance

Change Log

...

2021.

...

  • Summary

    • Removed master inhibit dependency while writing to DTR.

    • Fixed compilation error in axi-spi interrupt example.

  • Commits

2020.1

  • Summary

    • Updating license content to SPDX based licensing.

  • Commits

2020.2

...

Summary

  • Updated the Makefile to support parallel make execution

  • Fill txfifo with data less than or equal to fifo depth

Commits

...

d8b8ac5

...

1

https://github.com/Xilinx/embeddedsw/blob/xilinx_v2021.1/doc/ChangeLog#L391

2020.2

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2020.2/doc/ChangeLog#L680

2020.1

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2020.1/doc/ChangeLog#L530

2019.2

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2019.2/doc/ChangeLog#L1441

2019.1

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2019.1/doc/ChangeLog#L1202

Related Links