304 lines
8.0 KiB
C
304 lines
8.0 KiB
C
/*******************************************************************************
|
|
* Copyright © 2023 Analog Devices Inc. All Rights Reserved. This software is
|
|
* proprietary & confidential to Analog Devices, Inc. and its licensors.
|
|
*******************************************************************************/
|
|
|
|
|
|
#include "hal/HAL.h"
|
|
#include "hal/SPI.h"
|
|
|
|
static void init(void);
|
|
static void reset_ch1();
|
|
static void reset_ch2();
|
|
|
|
static unsigned char readWrite(SPIChannelTypeDef *SPIChannel, uint8_t data, uint8_t lastTransfer);
|
|
static unsigned char spi_ch1_readWrite(uint8_t data, uint8_t lastTransfer);
|
|
static unsigned char spi_ch2_readWrite(uint8_t data, uint8_t lastTransfer);
|
|
static void spi_ch1_readWriteArray(uint8_t *data, size_t length);
|
|
static void spi_ch2_readWriteArray(uint8_t *data, size_t length);
|
|
|
|
SPIChannelTypeDef *SPIChannel_1_default;
|
|
SPIChannelTypeDef *SPIChannel_2_default;
|
|
|
|
static uint16_t SPI_PSC_Factor[16] = { 2, 4, 8, 16, 32, 64, 128, 256};
|
|
|
|
static IOPinTypeDef IODummy = { .bitWeight = DUMMY_BITWEIGHT };
|
|
|
|
SPITypeDef SPI=
|
|
{
|
|
.ch1 =
|
|
{
|
|
.periphery = SPI1,
|
|
.CSN = &IODummy,
|
|
.readWrite = spi_ch1_readWrite,
|
|
.readWriteArray = spi_ch1_readWriteArray,
|
|
.reset = reset_ch1
|
|
},
|
|
|
|
.ch2 =
|
|
{
|
|
.periphery = SPI0,
|
|
.CSN = &IODummy,
|
|
.readWrite = spi_ch2_readWrite,
|
|
.readWriteArray = spi_ch2_readWriteArray,
|
|
.reset = reset_ch2
|
|
},
|
|
.init = init
|
|
};
|
|
|
|
|
|
static void init(void)
|
|
{
|
|
rcu_periph_clock_enable(RCU_SPI1);
|
|
rcu_periph_clock_enable(RCU_SPI0);
|
|
|
|
// Config
|
|
spi_parameter_struct params;
|
|
|
|
params.device_mode = SPI_MASTER;
|
|
params.trans_mode = SPI_TRANSMODE_FULLDUPLEX;
|
|
params.frame_size = SPI_FRAMESIZE_8BIT;
|
|
params.nss = SPI_NSS_SOFT;
|
|
params.endian = SPI_ENDIAN_MSB;
|
|
params.clock_polarity_phase = SPI_CK_PL_HIGH_PH_2EDGE;
|
|
params.prescale = SPI_PSC_16; // PCLK for SPI1 is 60MHz => SPI1 freq = 60/16 = 3,75MHz
|
|
|
|
spi_init(SPI.ch1.periphery, ¶ms);
|
|
|
|
params.prescale = SPI_PSC_32; // PCLK for SPI0 is 120MHz => SPI0 freq = 120/32 = 3,75MHz
|
|
|
|
spi_init(SPI.ch2.periphery, ¶ms);
|
|
|
|
// Enable
|
|
spi_enable(SPI.ch1.periphery);
|
|
spi_enable(SPI.ch2.periphery);
|
|
|
|
// Set pin AFs
|
|
|
|
gpio_af_set(GPIOB, GPIO_AF_5, GPIO_PIN_15);
|
|
gpio_af_set(GPIOB, GPIO_AF_5, GPIO_PIN_14);
|
|
gpio_af_set(GPIOB, GPIO_AF_5, GPIO_PIN_13);
|
|
|
|
gpio_af_set(GPIOA, GPIO_AF_5, GPIO_PIN_7);
|
|
gpio_af_set(GPIOA, GPIO_AF_5, GPIO_PIN_6);
|
|
gpio_af_set(GPIOA, GPIO_AF_5, GPIO_PIN_5);
|
|
HAL.IOs->config->setHigh(&HAL.IOs->pins->SPI2_CSN0);
|
|
HAL.IOs->config->setHigh(&HAL.IOs->pins->SPI2_CSN1);
|
|
HAL.IOs->config->setHigh(&HAL.IOs->pins->SPI2_CSN2);
|
|
|
|
reset_ch1();
|
|
reset_ch2();
|
|
|
|
// configure default SPI channel_1
|
|
SPIChannel_1_default = &HAL.SPI->ch1;
|
|
SPIChannel_1_default->CSN = &HAL.IOs->pins->SPI1_CSN;
|
|
// configure default SPI channel_2
|
|
SPIChannel_2_default = &HAL.SPI->ch2;
|
|
SPIChannel_2_default->CSN = &HAL.IOs->pins->SPI2_CSN0;
|
|
|
|
}
|
|
|
|
static void reset_ch1()
|
|
{
|
|
SPI.ch1.CSN = &IODummy;
|
|
SPI.ch1.periphery = SPI1;
|
|
SPI.ch1.readWrite = spi_ch1_readWrite;
|
|
}
|
|
|
|
static void reset_ch2()
|
|
{
|
|
SPI.ch2.CSN = &IODummy;
|
|
SPI.ch2.periphery = SPI0;
|
|
SPI.ch2.readWrite = spi_ch2_readWrite;
|
|
}
|
|
|
|
uint32_t spi_getFrequency(SPIChannelTypeDef *SPIChannel)
|
|
{
|
|
uint32_t PCLK;
|
|
if(SPIChannel->periphery == SPI1 || SPIChannel->periphery == SPI2)
|
|
{
|
|
PCLK = rcu_clock_freq_get(CK_APB1);
|
|
}
|
|
else
|
|
{
|
|
PCLK = rcu_clock_freq_get(CK_APB2);
|
|
}
|
|
uint8_t PSC_Val = (SPI_CTL0(SPIChannel->periphery) & SPI_CTL0_PSC)>>3;
|
|
return PCLK/SPI_PSC_Factor[PSC_Val];
|
|
}
|
|
|
|
// Set the SPI frequency to the next-best available frequency (rounding down).
|
|
// Returns the actual frequency set or 0 if no suitable frequency was found.
|
|
uint32_t spi_setFrequency(SPIChannelTypeDef *SPIChannel, uint32_t desiredFrequency)
|
|
{
|
|
uint32_t PCLK;
|
|
if(SPIChannel->periphery == SPI1 || SPIChannel->periphery == SPI2)
|
|
{
|
|
PCLK = rcu_clock_freq_get(CK_APB1);
|
|
}
|
|
else
|
|
{
|
|
PCLK = rcu_clock_freq_get(CK_APB2);
|
|
}
|
|
|
|
uint32_t prescaler;
|
|
if(desiredFrequency > 0)
|
|
{
|
|
prescaler = PCLK/desiredFrequency;
|
|
}
|
|
else{
|
|
|
|
return 0;
|
|
}
|
|
|
|
if(prescaler == 1)
|
|
{
|
|
return PCLK;
|
|
}
|
|
else if(prescaler>1)
|
|
{
|
|
// Find the highest frequency that is lower or equal to the desired frequency
|
|
for(int32_t i=0; i<ARRAY_SIZE(SPI_PSC_Factor); i++){
|
|
|
|
if(prescaler <= SPI_PSC_Factor[i]){
|
|
prescaler = SPI_PSC_Factor[i];
|
|
uint32_t PSC_Val = ( SPI_CTL0_PSC & (i<<3) );
|
|
SPI_CTL0(SPIChannel->periphery) = ( SPI_CTL0(SPIChannel->periphery) & (~SPI_CTL0_PSC) ) | PSC_Val;
|
|
return PCLK/prescaler;
|
|
}
|
|
}
|
|
}
|
|
// The requested frequency was too small -> do not update the frequency
|
|
return 0;
|
|
}
|
|
|
|
uint8_t spi_getMode(SPIChannelTypeDef *SPIChannel)
|
|
{
|
|
if (!SPIChannel)
|
|
return 0;
|
|
|
|
uint32_t tmp = SPI_CTL0(SPIChannel->periphery);
|
|
uint8_t cpol = (tmp & SPI_CTL0_CKPL) != 0;
|
|
uint8_t cpha = (tmp & SPI_CTL0_CKPH) != 0;
|
|
|
|
return (cpol << 1) | cpha;
|
|
}
|
|
|
|
bool spi_setMode(SPIChannelTypeDef *SPIChannel, uint8_t mode)
|
|
{
|
|
if (!SPIChannel)
|
|
return false;
|
|
|
|
if (mode > 3)
|
|
return false;
|
|
|
|
uint8_t cpol = (mode>>1) & 1;
|
|
uint8_t cpha = mode & 1;
|
|
|
|
uint32_t tmp = SPI_CTL0(SPIChannel->periphery);
|
|
tmp &= ~(SPI_CTL0_CKPL | SPI_CTL0_CKPH);
|
|
tmp |= cpol ? SPI_CTL0_CKPL : 0;
|
|
tmp |= cpha ? SPI_CTL0_CKPH : 0;
|
|
SPI_CTL0(SPIChannel->periphery) = tmp;
|
|
|
|
return true;
|
|
}
|
|
|
|
int32_t spi_readInt(SPIChannelTypeDef *SPIChannel, uint8_t address)
|
|
{
|
|
// clear write bit
|
|
address &= 0x7F;
|
|
|
|
SPIChannel->readWrite(address, false);
|
|
int32_t value = SPIChannel->readWrite(0, false);
|
|
value <<= 8;
|
|
value |= SPIChannel->readWrite(0, false);
|
|
value <<= 8;
|
|
value |= SPIChannel->readWrite(0, false);
|
|
value <<= 8;
|
|
value |= SPIChannel->readWrite(0, true);
|
|
|
|
return value;
|
|
}
|
|
|
|
int32_t spi_ch1_readInt(uint8_t address)
|
|
{
|
|
return spi_readInt(SPIChannel_1_default, address);
|
|
}
|
|
|
|
int32_t spi_ch2_readInt(uint8_t address)
|
|
{
|
|
return spi_readInt(SPIChannel_2_default, address);
|
|
}
|
|
|
|
void spi_writeInt(SPIChannelTypeDef *SPIChannel, uint8_t address, int32_t value)
|
|
{
|
|
SPIChannel->readWrite(address | 0x80, false);
|
|
SPIChannel->readWrite(0xFF & (value>>24), false);
|
|
SPIChannel->readWrite(0xFF & (value>>16), false);
|
|
SPIChannel->readWrite(0xFF & (value>>8), false);
|
|
SPIChannel->readWrite(0xFF & (value>>0), true);
|
|
}
|
|
|
|
void spi_ch1_writeInt(uint8_t address, int32_t value)
|
|
{
|
|
spi_writeInt(SPIChannel_1_default, address, value);
|
|
}
|
|
|
|
void spi_ch2_writeInt(uint8_t address, int32_t value)
|
|
{
|
|
spi_writeInt(SPIChannel_2_default, address, value);
|
|
}
|
|
|
|
static unsigned char spi_ch1_readWrite(unsigned char data, unsigned char lastTransfer)
|
|
{
|
|
return readWrite(&SPI.ch1, data, lastTransfer);
|
|
}
|
|
|
|
static unsigned char spi_ch2_readWrite(unsigned char data, unsigned char lastTransfer)
|
|
{
|
|
return readWrite(&SPI.ch2, data,lastTransfer);
|
|
}
|
|
|
|
static void spi_ch1_readWriteArray(uint8_t *data, size_t length)
|
|
{
|
|
for(uint32_t i = 0; i < length; i++)
|
|
{
|
|
data[i] = readWrite(&SPI.ch1, data[i], (i == (length - 1))? true:false);
|
|
}
|
|
}
|
|
|
|
static void spi_ch2_readWriteArray(uint8_t *data, size_t length)
|
|
{
|
|
for(uint32_t i = 0; i < length; i++)
|
|
{
|
|
data[i] = readWrite(&SPI.ch2, data[i], (i == (length - 1))? true:false);
|
|
}
|
|
}
|
|
|
|
uint8_t spi_ch1_readWriteByte(uint8_t data, uint8_t lastTransfer)
|
|
{
|
|
return readWrite(SPIChannel_1_default, data, lastTransfer);
|
|
}
|
|
|
|
uint8_t spi_ch2_readWriteByte(SPIChannelTypeDef *SPIChannel, uint8_t data, uint8_t lastTransfer)
|
|
{
|
|
return SPIChannel->readWrite(data, lastTransfer);
|
|
}
|
|
|
|
static unsigned char readWrite(SPIChannelTypeDef *SPIChannel, uint8_t data, uint8_t lastTransfer)
|
|
{
|
|
if(IS_DUMMY_PIN(SPIChannel->CSN))
|
|
return 0;
|
|
|
|
HAL.IOs->config->setLow(SPIChannel->CSN);
|
|
|
|
while(spi_i2s_flag_get(SPIChannel->periphery, SPI_FLAG_TBE) == RESET);
|
|
spi_i2s_data_transmit(SPIChannel->periphery, data);
|
|
while(spi_i2s_flag_get(SPIChannel->periphery, SPI_FLAG_RBNE) == RESET);
|
|
if(lastTransfer)
|
|
HAL.IOs->config->setHigh(SPIChannel->CSN);
|
|
|
|
return spi_i2s_data_receive(SPIChannel->periphery);
|
|
}
|