2016-06-06 17:54:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Daniel Amkaer Sorensen
|
|
|
|
* 2016 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-06-22 15:43:17 +02:00
|
|
|
* @ingroup cpu_atmega_common
|
|
|
|
* @ingroup drivers_periph_spi
|
2016-06-06 17:54:42 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2016-07-01 21:52:08 +02:00
|
|
|
* @brief Low-level SPI driver implementation for ATmega family
|
2016-06-06 17:54:42 +02:00
|
|
|
*
|
|
|
|
* @author Daniel Amkaer Sorensen <daniel.amkaer@gmail.com>
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
|
|
*
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "mutex.h"
|
2016-11-04 18:32:28 +01:00
|
|
|
#include "assert.h"
|
2016-06-06 17:54:42 +02:00
|
|
|
#include "periph/spi.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Extract BR0, BR1 and SPI2X bits from speed value
|
|
|
|
* @{
|
|
|
|
*/
|
2016-11-04 18:32:28 +01:00
|
|
|
#define CLK_MASK (0x3)
|
2016-06-06 17:54:42 +02:00
|
|
|
#define S2X_SHIFT (2)
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
static mutex_t lock = MUTEX_INIT;
|
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
void spi_init(spi_t bus)
|
|
|
|
{
|
|
|
|
assert(bus == 0);
|
|
|
|
/* power off the SPI peripheral */
|
|
|
|
MEGA_PRR |= (1 << PRSPI);
|
|
|
|
/* trigger the pin configuration */
|
2017-01-31 19:38:41 +01:00
|
|
|
spi_init_pins(bus);
|
2016-11-04 18:32:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void spi_init_pins(spi_t bus)
|
2016-06-06 17:54:42 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/* the pin configuration for this CPU is fixed:
|
|
|
|
* - PB3: MISO (configure as input - done automatically)
|
|
|
|
* - PB2: MOSI (configure as output)
|
|
|
|
* - PB1: SCK (configure as output)
|
|
|
|
* - PB0: SS (configure as output, but unused)
|
|
|
|
*
|
|
|
|
* The SS pin must be configured as output for the SPI device to work as
|
|
|
|
* master correctly, though we do not use it for now (as we handle the chip
|
|
|
|
* select externally for now)
|
|
|
|
*/
|
|
|
|
DDRB |= ((1 << DDB2) | (1 << DDB1) | (1 << DDB0));
|
2016-11-04 18:32:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
|
|
|
|
{
|
|
|
|
(void)cs;
|
2016-06-06 17:54:42 +02:00
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
/* lock the bus and power on the SPI peripheral */
|
|
|
|
mutex_lock(&lock);
|
2016-06-30 22:35:58 +02:00
|
|
|
MEGA_PRR &= ~(1 << PRSPI);
|
2016-06-06 17:54:42 +02:00
|
|
|
|
|
|
|
/* configure as master, with given mode and clock */
|
2016-11-04 18:32:28 +01:00
|
|
|
SPSR = (clk >> S2X_SHIFT);
|
|
|
|
SPCR = ((1 << SPE) | (1 << MSTR) | mode | (clk & CLK_MASK));
|
|
|
|
SPCR |= (1 << SPE);
|
2016-06-06 17:54:42 +02:00
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
/* clear interrupt flag by reading SPSR and data register by reading SPDR */
|
2016-06-06 17:54:42 +02:00
|
|
|
(void)SPSR;
|
|
|
|
(void)SPDR;
|
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
return SPI_OK;
|
2016-06-06 17:54:42 +02:00
|
|
|
}
|
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
void spi_release(spi_t bus)
|
2016-06-06 17:54:42 +02:00
|
|
|
{
|
2016-11-04 18:32:28 +01:00
|
|
|
/* power off and release the bus */
|
|
|
|
SPCR &= ~(1 << SPE);
|
|
|
|
MEGA_PRR |= (1 << PRSPI);
|
2016-06-06 17:54:42 +02:00
|
|
|
mutex_unlock(&lock);
|
|
|
|
}
|
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
void spi_transfer_bytes(spi_t bus, spi_cs_t cs, bool cont,
|
|
|
|
const void *out, void *in, size_t len)
|
2016-06-06 17:54:42 +02:00
|
|
|
{
|
2016-11-04 18:32:28 +01:00
|
|
|
uint8_t *out_buf = (uint8_t *)out;
|
|
|
|
uint8_t *in_buf = (uint8_t *)in;
|
2016-06-06 17:54:42 +02:00
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
assert(out_buf || in_buf);
|
2016-06-06 17:54:42 +02:00
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
if (cs != SPI_CS_UNDEF) {
|
|
|
|
gpio_clear((gpio_t)cs);
|
|
|
|
}
|
2016-06-06 17:54:42 +02:00
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
for (size_t i = 0; i < len; i++) {
|
|
|
|
uint8_t tmp = (out_buf) ? out_buf[i] : 0;
|
2016-06-06 17:54:42 +02:00
|
|
|
SPDR = tmp;
|
|
|
|
while (!(SPSR & (1 << SPIF))) {}
|
|
|
|
tmp = SPDR;
|
2016-11-04 18:32:28 +01:00
|
|
|
if (in_buf) {
|
|
|
|
in_buf[i] = tmp;
|
2016-06-06 17:54:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 18:32:28 +01:00
|
|
|
if ((!cont) && (cs != SPI_CS_UNDEF)) {
|
|
|
|
gpio_set((gpio_t)cs);
|
|
|
|
}
|
2016-06-06 17:54:42 +02:00
|
|
|
}
|