2017-12-21 07:49:14 -05:00
|
|
|
/*
|
|
|
|
* SPI Master library for nRF5x.
|
|
|
|
* Copyright (c) 2015 Arduino LLC
|
|
|
|
* Copyright (c) 2016 Sandeep Mistry All right reserved.
|
|
|
|
* Copyright (c) 2017 hathach
|
2018-06-25 17:33:39 -04:00
|
|
|
* Copyright (c) 2018 Artur Pacholec
|
2017-12-21 07:49:14 -05:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared-bindings/busio/SPI.h"
|
|
|
|
#include "py/mperrno.h"
|
|
|
|
#include "py/runtime.h"
|
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
#include "nrfx_spim.h"
|
|
|
|
#include "nrf_gpio.h"
|
|
|
|
|
|
|
|
#if NRFX_SPIM3_ENABLED
|
|
|
|
#define INST_NO 3
|
|
|
|
#else
|
|
|
|
#define INST_NO 2
|
|
|
|
#endif
|
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
#define MAX_XFER_SIZE ((1U << NRFX_CONCAT_3(SPIM, INST_NO, _EASYDMA_MAXCNT_SIZE)) - 1)
|
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
// Convert frequency to clock-speed-dependent value
|
|
|
|
static nrf_spim_frequency_t baudrate_to_spim_frequency(const uint32_t baudrate) {
|
|
|
|
if (baudrate <= 125000)
|
|
|
|
return NRF_SPIM_FREQ_125K;
|
|
|
|
|
|
|
|
if (baudrate <= 250000)
|
|
|
|
return NRF_SPIM_FREQ_250K;
|
|
|
|
|
|
|
|
if (baudrate <= 500000)
|
|
|
|
return NRF_SPIM_FREQ_500K;
|
|
|
|
|
|
|
|
if (baudrate <= 1000000)
|
|
|
|
return NRF_SPIM_FREQ_1M;
|
|
|
|
|
|
|
|
if (baudrate <= 2000000)
|
|
|
|
return NRF_SPIM_FREQ_2M;
|
|
|
|
|
|
|
|
if (baudrate <= 4000000)
|
|
|
|
return NRF_SPIM_FREQ_4M;
|
|
|
|
|
|
|
|
if (baudrate <= 8000000)
|
|
|
|
return NRF_SPIM_FREQ_8M;
|
|
|
|
|
|
|
|
#ifdef SPIM_FREQUENCY_FREQUENCY_M16
|
|
|
|
if (baudrate <= 16000000)
|
|
|
|
return NRF_SPIM_FREQ_16M;
|
|
|
|
#endif
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
#ifdef SPIM_FREQUENCY_FREQUENCY_M32
|
|
|
|
return NRF_SPIM_FREQ_32M;
|
|
|
|
#else
|
|
|
|
return NRF_SPIM_FREQ_8M;
|
|
|
|
#endif
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_busio_spi_construct(busio_spi_obj_t *self, const mcu_pin_obj_t * clock, const mcu_pin_obj_t * mosi, const mcu_pin_obj_t * miso) {
|
2018-06-25 17:33:39 -04:00
|
|
|
const nrfx_spim_t instance = NRFX_SPIM_INSTANCE(INST_NO);
|
|
|
|
self->spim = instance;
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
nrfx_spim_config_t config = NRFX_SPIM_DEFAULT_CONFIG;
|
|
|
|
config.frequency = NRF_SPIM_FREQ_8M;
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-08-30 21:42:25 -04:00
|
|
|
config.sck_pin = clock->number;
|
2018-02-02 15:01:01 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
if (mosi != (mcu_pin_obj_t*)&mp_const_none_obj)
|
2018-08-30 21:42:25 -04:00
|
|
|
config.mosi_pin = mosi->number;
|
2018-02-02 15:01:01 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
if (miso != (mcu_pin_obj_t*)&mp_const_none_obj)
|
2018-08-30 21:42:25 -04:00
|
|
|
config.miso_pin = miso->number;
|
2018-06-25 17:33:39 -04:00
|
|
|
|
|
|
|
nrfx_err_t err = nrfx_spim_init(&self->spim, &config, NULL, NULL);
|
|
|
|
|
|
|
|
// A soft reset doesn't uninit the driver so we might end up with a invalid state
|
|
|
|
if (err == NRFX_ERROR_INVALID_STATE) {
|
|
|
|
nrfx_spim_uninit(&self->spim);
|
|
|
|
err = nrfx_spim_init(&self->spim, &config, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err != NRFX_SUCCESS)
|
|
|
|
mp_raise_OSError(MP_EIO);
|
|
|
|
|
|
|
|
self->inited = true;
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_deinited(busio_spi_obj_t *self) {
|
2018-06-25 17:33:39 -04:00
|
|
|
return !self->inited;
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_busio_spi_deinit(busio_spi_obj_t *self) {
|
2018-06-25 17:33:39 -04:00
|
|
|
if (common_hal_busio_spi_deinited(self))
|
2017-12-21 07:49:14 -05:00
|
|
|
return;
|
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
nrfx_spim_uninit(&self->spim);
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
self->inited = false;
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_configure(busio_spi_obj_t *self, uint32_t baudrate, uint8_t polarity, uint8_t phase, uint8_t bits) {
|
|
|
|
// nrf52 does not support 16 bit
|
2018-06-25 17:33:39 -04:00
|
|
|
if (bits != 8)
|
|
|
|
return false;
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
nrf_spim_frequency_set(self->spim.p_reg, baudrate_to_spim_frequency(baudrate));
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
nrf_spim_mode_t mode = NRF_SPIM_MODE_0;
|
|
|
|
if (polarity) {
|
|
|
|
mode = (phase) ? NRF_SPIM_MODE_3 : NRF_SPIM_MODE_2;
|
|
|
|
} else {
|
|
|
|
mode = (phase) ? NRF_SPIM_MODE_1 : NRF_SPIM_MODE_0;
|
|
|
|
}
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-06-25 17:33:39 -04:00
|
|
|
nrf_spim_configure(self->spim.p_reg, mode, NRF_SPIM_BIT_ORDER_MSB_FIRST);
|
2017-12-21 07:49:14 -05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_try_lock(busio_spi_obj_t *self) {
|
|
|
|
bool grabbed_lock = false;
|
|
|
|
// CRITICAL_SECTION_ENTER()
|
|
|
|
// if (!self->has_lock) {
|
|
|
|
grabbed_lock = true;
|
|
|
|
self->has_lock = true;
|
|
|
|
// }
|
|
|
|
// CRITICAL_SECTION_LEAVE();
|
|
|
|
return grabbed_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_has_lock(busio_spi_obj_t *self) {
|
|
|
|
return self->has_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_busio_spi_unlock(busio_spi_obj_t *self) {
|
|
|
|
self->has_lock = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_write(busio_spi_obj_t *self, const uint8_t *data, size_t len) {
|
2018-06-25 17:33:39 -04:00
|
|
|
if (len == 0)
|
|
|
|
return true;
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
const uint32_t parts = len / MAX_XFER_SIZE;
|
|
|
|
const uint32_t remainder = len % MAX_XFER_SIZE;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < parts; ++i) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_XFER_TX(data + i * MAX_XFER_SIZE, MAX_XFER_SIZE);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
if (remainder > 0) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_XFER_TX(data + parts * MAX_XFER_SIZE, remainder);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_busio_spi_read(busio_spi_obj_t *self, uint8_t *data, size_t len, uint8_t write_value) {
|
2018-06-25 17:33:39 -04:00
|
|
|
if (len == 0)
|
|
|
|
return true;
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
const uint32_t parts = len / MAX_XFER_SIZE;
|
|
|
|
const uint32_t remainder = len % MAX_XFER_SIZE;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < parts; ++i) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_XFER_RX(data + i * MAX_XFER_SIZE, MAX_XFER_SIZE);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-21 07:49:14 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
if (remainder > 0) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_XFER_RX(data + parts * MAX_XFER_SIZE, remainder);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-12-21 07:49:14 -05:00
|
|
|
}
|
2018-01-03 16:50:57 -05:00
|
|
|
|
|
|
|
bool common_hal_busio_spi_transfer(busio_spi_obj_t *self, uint8_t *data_out, uint8_t *data_in, size_t len) {
|
2018-06-25 17:33:39 -04:00
|
|
|
if (len == 0)
|
|
|
|
return true;
|
2018-01-03 16:50:57 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
const uint32_t parts = len / MAX_XFER_SIZE;
|
|
|
|
const uint32_t remainder = len % MAX_XFER_SIZE;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < parts; ++i) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_SINGLE_XFER(data_out + i * MAX_XFER_SIZE, MAX_XFER_SIZE,
|
|
|
|
data_in + i * MAX_XFER_SIZE, MAX_XFER_SIZE);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (remainder > 0) {
|
|
|
|
const nrfx_spim_xfer_desc_t xfer = NRFX_SPIM_SINGLE_XFER(data_out + parts * MAX_XFER_SIZE, remainder,
|
|
|
|
data_in + parts * MAX_XFER_SIZE, remainder);
|
|
|
|
if (nrfx_spim_xfer(&self->spim, &xfer, 0) != NRFX_SUCCESS)
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-03 16:50:57 -05:00
|
|
|
|
2018-07-04 14:24:41 -04:00
|
|
|
return true;
|
2018-01-03 16:50:57 -05:00
|
|
|
}
|
2018-06-25 17:33:39 -04:00
|
|
|
|
2018-01-30 13:23:00 -05:00
|
|
|
uint32_t common_hal_busio_spi_get_frequency(busio_spi_obj_t* self) {
|
2018-06-25 17:33:39 -04:00
|
|
|
switch (self->spim.p_reg->FREQUENCY) {
|
|
|
|
case NRF_SPIM_FREQ_125K:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 125000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_250K:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 250000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_500K:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 500000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_1M:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 1000000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_2M:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 2000000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_4M:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 4000000;
|
2018-06-25 17:33:39 -04:00
|
|
|
case NRF_SPIM_FREQ_8M:
|
2018-01-30 13:23:00 -05:00
|
|
|
return 8000000;
|
2018-06-25 17:33:39 -04:00
|
|
|
#ifdef SPIM_FREQUENCY_FREQUENCY_M16
|
|
|
|
case NRF_SPIM_FREQ_16M:
|
|
|
|
return 16000000;
|
|
|
|
#endif
|
|
|
|
#ifdef SPIM_FREQUENCY_FREQUENCY_M32
|
|
|
|
case NRF_SPIM_FREQ_32M:
|
|
|
|
return 32000000;
|
|
|
|
#endif
|
2018-01-30 13:23:00 -05:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|