diff --git a/boards/airfy-beacon/Makefile.features b/boards/airfy-beacon/Makefile.features
index f7dc503f5c86b409e0db7616cefd740ef3c182fa..7444aa391088b5d37a94c18bfcd09da86db9b781 100644
--- a/boards/airfy-beacon/Makefile.features
+++ b/boards/airfy-beacon/Makefile.features
@@ -1,3 +1,4 @@
 FEATURES_PROVIDED += cpp
-FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt periph_cpuid
+FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt \
+                     periph_cpuid periph_spi
 FEATURES_MCU_GROUP = cortex_m0
diff --git a/boards/airfy-beacon/include/periph_conf.h b/boards/airfy-beacon/include/periph_conf.h
index e9dd02ebc4bfbbc587ced5335fba5a143cfc8b86..198b85e99b9590360927876c8f8ba103e8465b68 100644
--- a/boards/airfy-beacon/include/periph_conf.h
+++ b/boards/airfy-beacon/include/periph_conf.h
@@ -108,6 +108,21 @@
 #define RANDOM_NUMOF        (1U)
 /** @} */
 
+/**
+ * @name SPI configuration
+ * @{
+ */
+#define SPI_NUMOF           (1U)
+#define SPI_0_EN            1
+#define SPI_IRQ_PRIO        1
+
+/* SPI_0 device configuration */
+#define SPI_0_DEV           NRF_SPI0
+#define SPI_0_PIN_MOSI      13
+#define SPI_0_PIN_MISO      14
+#define SPI_0_PIN_SCK       15
+/** @} */
+
 /**
  * @name GPIO configuration
  * @{
diff --git a/boards/pca10005/Makefile.features b/boards/pca10005/Makefile.features
index f7dc503f5c86b409e0db7616cefd740ef3c182fa..7444aa391088b5d37a94c18bfcd09da86db9b781 100644
--- a/boards/pca10005/Makefile.features
+++ b/boards/pca10005/Makefile.features
@@ -1,3 +1,4 @@
 FEATURES_PROVIDED += cpp
-FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt periph_cpuid
+FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt \
+                     periph_cpuid periph_spi
 FEATURES_MCU_GROUP = cortex_m0
diff --git a/boards/pca10005/include/periph_conf.h b/boards/pca10005/include/periph_conf.h
index 32bfa62a551ad632c6dd8d1223536e87d56f1098..3548e0a964301af74bb772489d6365a3e1590f8b 100644
--- a/boards/pca10005/include/periph_conf.h
+++ b/boards/pca10005/include/periph_conf.h
@@ -108,6 +108,28 @@ extern "C" {
 #define RANDOM_NUMOF        (1U)
 /** @} */
 
+/**
+ * @name SPI configuration
+ * @{
+ */
+#define SPI_NUMOF           (2U)
+#define SPI_0_EN            1
+#define SPI_1_EN            1
+#define SPI_IRQ_PRIO        1
+
+/* SPI_0 device configuration */
+#define SPI_0_DEV           NRF_SPI0
+#define SPI_0_PIN_MOSI      17
+#define SPI_0_PIN_MISO      18
+#define SPI_0_PIN_SCK       19
+
+/* SPI_1 device configuration */
+#define SPI_1_DEV           NRF_SPI1
+#define SPI_1_PIN_MOSI      20
+#define SPI_1_PIN_MISO      21
+#define SPI_1_PIN_SCK       22
+/** @} */
+
 /**
  * @name GPIO configuration
  * @{
diff --git a/boards/yunjia-nrf51822/Makefile.features b/boards/yunjia-nrf51822/Makefile.features
index f7dc503f5c86b409e0db7616cefd740ef3c182fa..7444aa391088b5d37a94c18bfcd09da86db9b781 100644
--- a/boards/yunjia-nrf51822/Makefile.features
+++ b/boards/yunjia-nrf51822/Makefile.features
@@ -1,3 +1,4 @@
 FEATURES_PROVIDED += cpp
-FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt periph_cpuid
+FEATURES_PROVIDED += periph_uart periph_gpio periph_random periph_rtt \
+                     periph_cpuid periph_spi
 FEATURES_MCU_GROUP = cortex_m0
diff --git a/boards/yunjia-nrf51822/include/periph_conf.h b/boards/yunjia-nrf51822/include/periph_conf.h
index 19bb6b83e5593e905790a8b78713dc436f60f58b..f37ef58e5706c83d90a48b67b08049339856bb0c 100644
--- a/boards/yunjia-nrf51822/include/periph_conf.h
+++ b/boards/yunjia-nrf51822/include/periph_conf.h
@@ -106,6 +106,29 @@ extern "C" {
 #define RANDOM_NUMOF        (1U)
 /** @} */
 
+/**
+ * @name SPI configuration
+ * @{
+ */
+#define SPI_NUMOF           (2U)
+#define SPI_0_EN            1
+#define SPI_1_EN            1
+#define SPI_IRQ_PRIO        1
+
+/* SPI_0 device configuration */
+#define SPI_0_DEV           NRF_SPI0
+#define SPI_0_PIN_MOSI      17
+#define SPI_0_PIN_MISO      18
+#define SPI_0_PIN_SCK       19
+
+/* SPI_1 device configuration */
+#define SPI_1_DEV           NRF_SPI1
+#define SPI_1_PIN_MOSI      20
+#define SPI_1_PIN_MISO      21
+#define SPI_1_PIN_SCK       22
+/** @} */
+
+
 /**
  * @name GPIO configuration
  * @{