2015-09-02 12:43:21 +02:00
|
|
|
/*
|
2016-11-08 18:20:38 +01:00
|
|
|
* Copyright (C) 2015-2016 Freie Universität Berlin
|
2015-09-02 12:43:21 +02:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2023-06-13 15:56:24 +02:00
|
|
|
* @ingroup cpu_msp430_f2xx_g2xx
|
2017-06-22 15:43:17 +02:00
|
|
|
* @ingroup drivers_periph_spi
|
2015-09-02 12:43:21 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Low-level SPI driver implementation
|
|
|
|
*
|
|
|
|
* This SPI driver implementation does only support one single SPI device for
|
|
|
|
* now. This is sufficient, as most MSP430 CPU's only support two serial
|
|
|
|
* devices - one used as UART and one as SPI.
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2021-02-01 14:05:16 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
#include "compiler_hints.h"
|
2015-09-02 12:43:21 +02:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "mutex.h"
|
|
|
|
#include "periph/spi.h"
|
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
/* caching most recently used SPI configuration */
|
|
|
|
static msp430_usci_conf_t _confs[SPI_NUMOF];
|
|
|
|
/* clock frequency for which the SPI configuration was cached */
|
|
|
|
static uint32_t _conf_clks[SPI_NUMOF];
|
|
|
|
/* the USCI is using a mutex already, but we need to guard the access to the
|
|
|
|
* configuration cache with a mutex as well */
|
|
|
|
static mutex_t _locks[SPI_NUMOF];
|
2015-09-02 12:43:21 +02:00
|
|
|
|
2016-11-08 18:20:38 +01:00
|
|
|
void spi_init(spi_t bus)
|
2015-09-02 12:43:21 +02:00
|
|
|
{
|
2024-02-06 21:07:09 +01:00
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
|
|
|
/* `spi_init()` should be done only once during boot-up */
|
|
|
|
assert(_conf_clks[bus] == 0);
|
2016-03-24 09:40:28 +01:00
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
/* spi_init_pins() unlocks a mutex, so initializing it locked here */
|
|
|
|
_locks[bus] = (mutex_t)MUTEX_INIT_LOCKED;
|
2016-11-08 18:20:38 +01:00
|
|
|
|
|
|
|
/* trigger the pin configuration */
|
|
|
|
spi_init_pins(bus);
|
2015-09-02 12:43:21 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 18:20:38 +01:00
|
|
|
void spi_init_pins(spi_t bus)
|
|
|
|
{
|
2024-02-06 21:07:09 +01:00
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
|
|
|
const msp430_usci_spi_params_t *params = spi_config[bus].spi;
|
|
|
|
|
|
|
|
gpio_init(params->miso, GPIO_IN);
|
|
|
|
gpio_periph_mode(params->miso, true);
|
|
|
|
gpio_init(params->mosi, GPIO_OUT);
|
|
|
|
gpio_periph_mode(params->mosi, true);
|
|
|
|
gpio_init(params->sck, GPIO_OUT);
|
|
|
|
gpio_periph_mode(params->sck, true);
|
|
|
|
|
|
|
|
mutex_unlock(&_locks[bus]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void spi_deinit_pins(spi_t bus)
|
|
|
|
{
|
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
|
|
|
const msp430_usci_spi_params_t *params = spi_config[bus].spi;
|
|
|
|
mutex_lock(&_locks[bus]);
|
build: fix unused parameter errors
cpu, sam0_common: fix unused parameter in periph/spi
cpu, kinetis_common: fix unused parameter in periph/spi
cpu, cc2538: fix unused param in periph/i2c
cpu, cc2538: fix unused param in periph/spi
cpu, sam3: fix unused param in periph/spi
cpu, stm32_common: fix unused param in periph/pm
cpu, stm32f3: fix unused params in periph/i2c
cpu, nrf5x_common: fix unused param in periph/gpio
cpu, nrf5x_common: fix unused param in periph/spi
cpu, lpc2387: fix unused params in periph/spi
cpu, cc2538: fix unused params in radio/netdev
cpu, cc2650: fix unused params in periph/uart
cpu, lm4f120: fix unused param in periph/spi
cpu, lm4f120: fix unused params in periph/timer
cpu, lm4f120: fix unused params in periph/uart
cpu, stm32_common: fix unused params in periph/dac
cpu, stm32l0: fix unused params in periph/i2c
cpu, msp430fxyz: fix unused params in periph/uart
cpu, mips: fix unused params
cpu, cc430: fix unused-params in periph/timer
cpu, msp430fxyz: fix unused params in periph/spi
drivers, cc2420: fix unused param
cpu, mips32r2_common: fix unused params in periph/timer
cpu, cc2538: fix unused-param in periph/i2c
cpu, mips32r2_common: fix unused-param in periph/timer
cpu, msp430fxyz: fix unused params in periph/timer
cpu, atmega_common: fix unused params in periph/spi
driver, nrfmin: fix unused params
cpu, cc2538_rf: fix unused params
driver, netdev_ieee802514: fix unused param
cpu, mip_pic32m: fix unused params
cpu, lpc2387: fix unused params in periph/pwm
tests/driver_sdcard_spi: fix unused params
cpu, sam3: fix unused param in periph/pwm
tests/driver_dynamixel: fix unused params, and style issues
cpu, cc430: fix unused param in periph/rtc
cpu, atmega_common: fix unused params in periph/i2c
2017-10-31 12:09:11 +01:00
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
gpio_periph_mode(params->miso, true);
|
|
|
|
gpio_periph_mode(params->mosi, true);
|
|
|
|
gpio_periph_mode(params->sck, true);
|
2016-11-08 18:20:38 +01:00
|
|
|
}
|
2015-09-02 12:43:21 +02:00
|
|
|
|
2021-02-01 14:05:16 +01:00
|
|
|
void spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
|
2015-09-02 12:43:21 +02:00
|
|
|
{
|
2024-02-06 21:07:09 +01:00
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
build: fix unused parameter errors
cpu, sam0_common: fix unused parameter in periph/spi
cpu, kinetis_common: fix unused parameter in periph/spi
cpu, cc2538: fix unused param in periph/i2c
cpu, cc2538: fix unused param in periph/spi
cpu, sam3: fix unused param in periph/spi
cpu, stm32_common: fix unused param in periph/pm
cpu, stm32f3: fix unused params in periph/i2c
cpu, nrf5x_common: fix unused param in periph/gpio
cpu, nrf5x_common: fix unused param in periph/spi
cpu, lpc2387: fix unused params in periph/spi
cpu, cc2538: fix unused params in radio/netdev
cpu, cc2650: fix unused params in periph/uart
cpu, lm4f120: fix unused param in periph/spi
cpu, lm4f120: fix unused params in periph/timer
cpu, lm4f120: fix unused params in periph/uart
cpu, stm32_common: fix unused params in periph/dac
cpu, stm32l0: fix unused params in periph/i2c
cpu, msp430fxyz: fix unused params in periph/uart
cpu, mips: fix unused params
cpu, cc430: fix unused-params in periph/timer
cpu, msp430fxyz: fix unused params in periph/spi
drivers, cc2420: fix unused param
cpu, mips32r2_common: fix unused params in periph/timer
cpu, cc2538: fix unused-param in periph/i2c
cpu, mips32r2_common: fix unused-param in periph/timer
cpu, msp430fxyz: fix unused params in periph/timer
cpu, atmega_common: fix unused params in periph/spi
driver, nrfmin: fix unused params
cpu, cc2538_rf: fix unused params
driver, netdev_ieee802514: fix unused param
cpu, mip_pic32m: fix unused params
cpu, lpc2387: fix unused params in periph/pwm
tests/driver_sdcard_spi: fix unused params
cpu, sam3: fix unused param in periph/pwm
tests/driver_dynamixel: fix unused params, and style issues
cpu, cc430: fix unused param in periph/rtc
cpu, atmega_common: fix unused params in periph/i2c
2017-10-31 12:09:11 +01:00
|
|
|
(void)cs;
|
2024-02-06 21:07:09 +01:00
|
|
|
const msp430_usci_params_t *usci = &spi_config[bus].spi->usci_params;
|
2015-09-02 12:43:21 +02:00
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
mutex_lock(&_locks[bus]);
|
2016-03-24 09:40:28 +01:00
|
|
|
|
2024-02-06 21:07:09 +01:00
|
|
|
if (_conf_clks[bus] != clk) {
|
|
|
|
/* prescaler not cached, recomputing */
|
|
|
|
_confs[bus].prescaler = msp430_usci_prescale(clk);
|
|
|
|
/* no modulation setting in SPI mode */
|
|
|
|
_confs[bus].prescaler.mctl = 0;
|
2016-03-24 09:40:28 +01:00
|
|
|
}
|
2024-02-06 21:07:09 +01:00
|
|
|
|
|
|
|
/* Repopulate CTL0 register settings every time. This is rather cheap
|
|
|
|
* compared to the prescaler configuration and allows reusing the prescaler
|
|
|
|
* across SPI modes */
|
|
|
|
_confs[bus].ctl0 = UCSYNC | UCMST | UCMODE_0 | UCMSB | mode;
|
|
|
|
|
|
|
|
msp430_usci_acquire(usci, &_confs[bus]);
|
|
|
|
|
|
|
|
/* finally, pull USCI out of reset */
|
|
|
|
usci->dev->CTL1 &= ~UCSWRST;
|
2015-09-02 12:43:21 +02:00
|
|
|
}
|
|
|
|
|
build: fix unused parameter errors
cpu, sam0_common: fix unused parameter in periph/spi
cpu, kinetis_common: fix unused parameter in periph/spi
cpu, cc2538: fix unused param in periph/i2c
cpu, cc2538: fix unused param in periph/spi
cpu, sam3: fix unused param in periph/spi
cpu, stm32_common: fix unused param in periph/pm
cpu, stm32f3: fix unused params in periph/i2c
cpu, nrf5x_common: fix unused param in periph/gpio
cpu, nrf5x_common: fix unused param in periph/spi
cpu, lpc2387: fix unused params in periph/spi
cpu, cc2538: fix unused params in radio/netdev
cpu, cc2650: fix unused params in periph/uart
cpu, lm4f120: fix unused param in periph/spi
cpu, lm4f120: fix unused params in periph/timer
cpu, lm4f120: fix unused params in periph/uart
cpu, stm32_common: fix unused params in periph/dac
cpu, stm32l0: fix unused params in periph/i2c
cpu, msp430fxyz: fix unused params in periph/uart
cpu, mips: fix unused params
cpu, cc430: fix unused-params in periph/timer
cpu, msp430fxyz: fix unused params in periph/spi
drivers, cc2420: fix unused param
cpu, mips32r2_common: fix unused params in periph/timer
cpu, cc2538: fix unused-param in periph/i2c
cpu, mips32r2_common: fix unused-param in periph/timer
cpu, msp430fxyz: fix unused params in periph/timer
cpu, atmega_common: fix unused params in periph/spi
driver, nrfmin: fix unused params
cpu, cc2538_rf: fix unused params
driver, netdev_ieee802514: fix unused param
cpu, mip_pic32m: fix unused params
cpu, lpc2387: fix unused params in periph/pwm
tests/driver_sdcard_spi: fix unused params
cpu, sam3: fix unused param in periph/pwm
tests/driver_dynamixel: fix unused params, and style issues
cpu, cc430: fix unused param in periph/rtc
cpu, atmega_common: fix unused params in periph/i2c
2017-10-31 12:09:11 +01:00
|
|
|
void spi_release(spi_t bus)
|
2015-09-02 12:43:21 +02:00
|
|
|
{
|
2024-02-06 21:07:09 +01:00
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
|
|
|
/* unlock in reverse order */
|
|
|
|
msp430_usci_release(&spi_config[bus].spi->usci_params);
|
|
|
|
mutex_unlock(&_locks[bus]);
|
2015-09-02 12:43:21 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 18:20:38 +01:00
|
|
|
void spi_transfer_bytes(spi_t bus, spi_cs_t cs, bool cont,
|
|
|
|
const void *out, void *in, size_t len)
|
2015-09-02 12:43:21 +02:00
|
|
|
{
|
2024-02-06 21:07:09 +01:00
|
|
|
assume((unsigned)bus < SPI_NUMOF);
|
build: fix unused parameter errors
cpu, sam0_common: fix unused parameter in periph/spi
cpu, kinetis_common: fix unused parameter in periph/spi
cpu, cc2538: fix unused param in periph/i2c
cpu, cc2538: fix unused param in periph/spi
cpu, sam3: fix unused param in periph/spi
cpu, stm32_common: fix unused param in periph/pm
cpu, stm32f3: fix unused params in periph/i2c
cpu, nrf5x_common: fix unused param in periph/gpio
cpu, nrf5x_common: fix unused param in periph/spi
cpu, lpc2387: fix unused params in periph/spi
cpu, cc2538: fix unused params in radio/netdev
cpu, cc2650: fix unused params in periph/uart
cpu, lm4f120: fix unused param in periph/spi
cpu, lm4f120: fix unused params in periph/timer
cpu, lm4f120: fix unused params in periph/uart
cpu, stm32_common: fix unused params in periph/dac
cpu, stm32l0: fix unused params in periph/i2c
cpu, msp430fxyz: fix unused params in periph/uart
cpu, mips: fix unused params
cpu, cc430: fix unused-params in periph/timer
cpu, msp430fxyz: fix unused params in periph/spi
drivers, cc2420: fix unused param
cpu, mips32r2_common: fix unused params in periph/timer
cpu, cc2538: fix unused-param in periph/i2c
cpu, mips32r2_common: fix unused-param in periph/timer
cpu, msp430fxyz: fix unused params in periph/timer
cpu, atmega_common: fix unused params in periph/spi
driver, nrfmin: fix unused params
cpu, cc2538_rf: fix unused params
driver, netdev_ieee802514: fix unused param
cpu, mip_pic32m: fix unused params
cpu, lpc2387: fix unused params in periph/pwm
tests/driver_sdcard_spi: fix unused params
cpu, sam3: fix unused param in periph/pwm
tests/driver_dynamixel: fix unused params, and style issues
cpu, cc430: fix unused param in periph/rtc
cpu, atmega_common: fix unused params in periph/i2c
2017-10-31 12:09:11 +01:00
|
|
|
|
2017-06-29 13:16:58 +02:00
|
|
|
const uint8_t *out_buf = out;
|
|
|
|
uint8_t *in_buf = in;
|
2024-02-06 21:07:09 +01:00
|
|
|
const msp430_usci_spi_params_t *params = spi_config[bus].spi;
|
|
|
|
const msp430_usci_params_t *usci = ¶ms->usci_params;
|
2016-11-08 18:20:38 +01:00
|
|
|
|
|
|
|
assert(out_buf || in_buf);
|
2016-09-28 20:05:06 +02:00
|
|
|
|
2016-11-08 18:20:38 +01:00
|
|
|
if (cs != SPI_CS_UNDEF) {
|
|
|
|
gpio_clear((gpio_t)cs);
|
|
|
|
}
|
2016-09-28 20:05:06 +02:00
|
|
|
|
|
|
|
/* if we only send out data, we do this the fast way... */
|
2016-11-08 18:20:38 +01:00
|
|
|
if (!in_buf) {
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
2024-02-06 21:07:09 +01:00
|
|
|
while (!(*usci->interrupt_flag & usci->tx_irq_mask)) { }
|
|
|
|
usci->dev->TXBUF = out_buf[i];
|
2016-09-28 20:05:06 +02:00
|
|
|
}
|
2024-02-06 21:07:09 +01:00
|
|
|
|
2016-09-28 20:05:06 +02:00
|
|
|
/* finally we need to wait, until all transfers are complete */
|
2024-02-06 21:07:09 +01:00
|
|
|
while (usci->dev->STAT & UCBUSY) {}
|
|
|
|
(void)usci->dev->RXBUF;
|
2015-09-02 12:43:21 +02:00
|
|
|
}
|
2016-11-08 18:20:38 +01:00
|
|
|
else if (!out_buf) {
|
|
|
|
for (size_t i = 0; i < len; i++) {
|
2024-02-06 21:07:09 +01:00
|
|
|
usci->dev->TXBUF = 0;
|
|
|
|
while (!(*usci->interrupt_flag & usci->rx_irq_mask)) { }
|
|
|
|
in_buf[i] = usci->dev->RXBUF;
|
2016-09-28 20:05:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2016-11-08 18:20:38 +01:00
|
|
|
for (size_t i = 0; i < len; i++) {
|
2024-02-06 21:07:09 +01:00
|
|
|
while (!(*usci->interrupt_flag & usci->tx_irq_mask)) { }
|
|
|
|
usci->dev->TXBUF = out_buf[i];
|
|
|
|
while (!(*usci->interrupt_flag & usci->rx_irq_mask)) { }
|
|
|
|
in_buf[i] = usci->dev->RXBUF;
|
2016-09-28 20:05:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-08 18:20:38 +01:00
|
|
|
if ((!cont) && (cs != SPI_CS_UNDEF)) {
|
|
|
|
gpio_set((gpio_t)cs);
|
|
|
|
}
|
2015-09-02 12:43:21 +02:00
|
|
|
}
|