summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bsp-howto/spi.rst15
1 files changed, 8 insertions, 7 deletions
diff --git a/bsp-howto/spi.rst b/bsp-howto/spi.rst
index 377b4b1..1da5fa0 100644
--- a/bsp-howto/spi.rst
+++ b/bsp-howto/spi.rst
@@ -1,6 +1,6 @@
.. SPDX-License-Identifier: CC-BY-SA-4.0
-.. Copyright (C) 2016 embedded brains GmbH <rtems@embedded-brains.de>
+.. Copyright (C) 2016, 2019 embedded brains GmbH <rtems@embedded-brains.de>
SPI Driver
**********
@@ -8,11 +8,12 @@ SPI Driver
The Serial Peripheral Interface (SPI) bus drivers should use the
`SPI bus framework
<https://git.rtems.org/rtems/tree/cpukit/include/dev/spi/spi.h>`_.
-For
-example drivers see the
-`Atmel SAM SPI driver <https://git.rtems.org/rtems/tree/bsps/arm/atsam/spi/atsam_spi_bus.c>`_
-and the
-`SPI framework test <https://git.rtems.org/rtems/tree/testsuites/libtests/spi01/init.c>`_.
-
The user API is compatible to the
`Linux SPI user-space API <https://www.kernel.org/doc/Documentation/spi/spidev>`_.
+
+For example SPI bus drivers see:
+
+* `Atmel SAM SPI driver <https://git.rtems.org/rtems/tree/bsps/arm/atsam/spi/atsam_spi_bus.c>`_
+* `NXP i.MX SPI driver <https://git.rtems.org/rtems/tree/bsps/arm/imx/spi/imx-ecspi.c>`_
+* `NXP LPC17XX/LPC24XX/LPC40XX SSP driver <https://git.rtems.org/rtems/tree/bsps/arm/lpc24xx/spi/ssp.c>`_
+* `SPI framework test <https://git.rtems.org/rtems/tree/testsuites/libtests/spi01/init.c>`_