Cleanup for HAL_spi_Due.cpp
This commit is contained in:
parent
d82bcdeea1
commit
bc75eb2c64
@ -581,84 +581,124 @@
|
|||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
// hardware SPI
|
// hardware SPI
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
// 8.4 MHz, 4 MHz, 2 MHz, 1 MHz, 0.5 MHz, 0.329 MHz, 0.329 MHz
|
static bool spiInitialized = false;
|
||||||
int spiDueDividors[] = { 10, 21, 42, 84, 168, 255, 255 };
|
|
||||||
bool spiInitMaded = false;
|
|
||||||
|
|
||||||
void spiBegin() {
|
|
||||||
if (spiInitMaded == false) {
|
|
||||||
// Configure SPI pins
|
|
||||||
PIO_Configure(
|
|
||||||
g_APinDescription[SCK_PIN].pPort,
|
|
||||||
g_APinDescription[SCK_PIN].ulPinType,
|
|
||||||
g_APinDescription[SCK_PIN].ulPin,
|
|
||||||
g_APinDescription[SCK_PIN].ulPinConfiguration);
|
|
||||||
PIO_Configure(
|
|
||||||
g_APinDescription[MOSI_PIN].pPort,
|
|
||||||
g_APinDescription[MOSI_PIN].ulPinType,
|
|
||||||
g_APinDescription[MOSI_PIN].ulPin,
|
|
||||||
g_APinDescription[MOSI_PIN].ulPinConfiguration);
|
|
||||||
PIO_Configure(
|
|
||||||
g_APinDescription[MISO_PIN].pPort,
|
|
||||||
g_APinDescription[MISO_PIN].ulPinType,
|
|
||||||
g_APinDescription[MISO_PIN].ulPin,
|
|
||||||
g_APinDescription[MISO_PIN].ulPinConfiguration);
|
|
||||||
|
|
||||||
// set master mode, peripheral select, fault detection
|
|
||||||
SPI_Configure(SPI0, ID_SPI0, SPI_MR_MSTR | SPI_MR_MODFDIS | SPI_MR_PS);
|
|
||||||
SPI_Enable(SPI0);
|
|
||||||
|
|
||||||
#if MB(ALLIGATOR)
|
|
||||||
SET_OUTPUT(DAC0_SYNC);
|
|
||||||
#if EXTRUDERS > 1
|
|
||||||
SET_OUTPUT(DAC1_SYNC);
|
|
||||||
WRITE(DAC1_SYNC, HIGH);
|
|
||||||
#endif
|
|
||||||
SET_OUTPUT(SPI_EEPROM1_CS);
|
|
||||||
SET_OUTPUT(SPI_EEPROM2_CS);
|
|
||||||
SET_OUTPUT(SPI_FLASH_CS);
|
|
||||||
WRITE(DAC0_SYNC, HIGH);
|
|
||||||
WRITE(SPI_EEPROM1_CS, HIGH );
|
|
||||||
WRITE(SPI_EEPROM2_CS, HIGH );
|
|
||||||
WRITE(SPI_FLASH_CS, HIGH );
|
|
||||||
WRITE(SS_PIN, HIGH );
|
|
||||||
#endif // MB(ALLIGATOR)
|
|
||||||
|
|
||||||
OUT_WRITE(SDSS,0);
|
|
||||||
|
|
||||||
PIO_Configure(
|
|
||||||
g_APinDescription[SPI_PIN].pPort,
|
|
||||||
g_APinDescription[SPI_PIN].ulPinType,
|
|
||||||
g_APinDescription[SPI_PIN].ulPin,
|
|
||||||
g_APinDescription[SPI_PIN].ulPinConfiguration);
|
|
||||||
|
|
||||||
spiInit(1);
|
|
||||||
spiInitMaded = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void spiInit(uint8_t spiRate) {
|
void spiInit(uint8_t spiRate) {
|
||||||
if (spiInitMaded == false) {
|
if (spiInitialized) return;
|
||||||
if (spiRate > 6) spiRate = 1;
|
|
||||||
|
|
||||||
#if MB(ALLIGATOR)
|
// 8.4 MHz, 4 MHz, 2 MHz, 1 MHz, 0.5 MHz, 0.329 MHz, 0.329 MHz
|
||||||
// Set SPI mode 1, clock, select not active after transfer, with delay between transfers
|
constexpr int spiDivider[] = { 10, 21, 42, 84, 168, 255, 255 };
|
||||||
SPI_ConfigureNPCS(SPI0, SPI_CHAN_DAC,
|
if (spiRate > 6) spiRate = 1;
|
||||||
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDueDividors[spiRate]) |
|
|
||||||
SPI_CSR_DLYBCT(1));
|
|
||||||
// Set SPI mode 0, clock, select not active after transfer, with delay between transfers
|
|
||||||
SPI_ConfigureNPCS(SPI0, SPI_CHAN_EEPROM1, SPI_CSR_NCPHA |
|
|
||||||
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDueDividors[spiRate]) |
|
|
||||||
SPI_CSR_DLYBCT(1));
|
|
||||||
#endif//MB(ALLIGATOR)
|
|
||||||
|
|
||||||
// Set SPI mode 0, clock, select not active after transfer, with delay between transfers
|
// Set SPI mode 1, clock, select not active after transfer, with delay between transfers
|
||||||
SPI_ConfigureNPCS(SPI0, SPI_CHAN, SPI_CSR_NCPHA |
|
SPI_ConfigureNPCS(SPI0, SPI_CHAN_DAC,
|
||||||
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDueDividors[spiRate]) |
|
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDivider[spiRate]) |
|
||||||
SPI_CSR_DLYBCT(1));
|
SPI_CSR_DLYBCT(1));
|
||||||
SPI_Enable(SPI0);
|
// Set SPI mode 0, clock, select not active after transfer, with delay between transfers
|
||||||
spiInitMaded = true;
|
SPI_ConfigureNPCS(SPI0, SPI_CHAN_EEPROM1, SPI_CSR_NCPHA |
|
||||||
|
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDivider[spiRate]) |
|
||||||
|
SPI_CSR_DLYBCT(1));
|
||||||
|
|
||||||
|
// Set SPI mode 0, clock, select not active after transfer, with delay between transfers
|
||||||
|
SPI_ConfigureNPCS(SPI0, SPI_CHAN, SPI_CSR_NCPHA |
|
||||||
|
SPI_CSR_CSAAT | SPI_CSR_SCBR(spiDivider[spiRate]) |
|
||||||
|
SPI_CSR_DLYBCT(1));
|
||||||
|
SPI_Enable(SPI0);
|
||||||
|
spiInitialized = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void spiBegin() {
|
||||||
|
if (spiInitialized) return;
|
||||||
|
|
||||||
|
// Configure SPI pins
|
||||||
|
PIO_Configure(
|
||||||
|
g_APinDescription[SCK_PIN].pPort,
|
||||||
|
g_APinDescription[SCK_PIN].ulPinType,
|
||||||
|
g_APinDescription[SCK_PIN].ulPin,
|
||||||
|
g_APinDescription[SCK_PIN].ulPinConfiguration);
|
||||||
|
PIO_Configure(
|
||||||
|
g_APinDescription[MOSI_PIN].pPort,
|
||||||
|
g_APinDescription[MOSI_PIN].ulPinType,
|
||||||
|
g_APinDescription[MOSI_PIN].ulPin,
|
||||||
|
g_APinDescription[MOSI_PIN].ulPinConfiguration);
|
||||||
|
PIO_Configure(
|
||||||
|
g_APinDescription[MISO_PIN].pPort,
|
||||||
|
g_APinDescription[MISO_PIN].ulPinType,
|
||||||
|
g_APinDescription[MISO_PIN].ulPin,
|
||||||
|
g_APinDescription[MISO_PIN].ulPinConfiguration);
|
||||||
|
|
||||||
|
// set master mode, peripheral select, fault detection
|
||||||
|
SPI_Configure(SPI0, ID_SPI0, SPI_MR_MSTR | SPI_MR_MODFDIS | SPI_MR_PS);
|
||||||
|
SPI_Enable(SPI0);
|
||||||
|
|
||||||
|
SET_OUTPUT(DAC0_SYNC);
|
||||||
|
#if EXTRUDERS > 1
|
||||||
|
SET_OUTPUT(DAC1_SYNC);
|
||||||
|
WRITE(DAC1_SYNC, HIGH);
|
||||||
|
#endif
|
||||||
|
SET_OUTPUT(SPI_EEPROM1_CS);
|
||||||
|
SET_OUTPUT(SPI_EEPROM2_CS);
|
||||||
|
SET_OUTPUT(SPI_FLASH_CS);
|
||||||
|
WRITE(DAC0_SYNC, HIGH);
|
||||||
|
WRITE(SPI_EEPROM1_CS, HIGH );
|
||||||
|
WRITE(SPI_EEPROM2_CS, HIGH );
|
||||||
|
WRITE(SPI_FLASH_CS, HIGH );
|
||||||
|
WRITE(SS_PIN, HIGH );
|
||||||
|
|
||||||
|
OUT_WRITE(SDSS,0);
|
||||||
|
|
||||||
|
PIO_Configure(
|
||||||
|
g_APinDescription[SPI_PIN].pPort,
|
||||||
|
g_APinDescription[SPI_PIN].ulPinType,
|
||||||
|
g_APinDescription[SPI_PIN].ulPin,
|
||||||
|
g_APinDescription[SPI_PIN].ulPinConfiguration);
|
||||||
|
|
||||||
|
spiInit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read single byte from SPI
|
||||||
|
uint8_t spiRec() {
|
||||||
|
// write dummy byte with address and end transmission flag
|
||||||
|
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(SPI_CHAN) | SPI_TDR_LASTXFER;
|
||||||
|
// wait for transmit register empty
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
||||||
|
|
||||||
|
// wait for receive register
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
||||||
|
// get byte from receive register
|
||||||
|
//DELAY_US(1U);
|
||||||
|
return SPI0->SPI_RDR;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t spiRec(uint32_t chan) {
|
||||||
|
uint8_t spirec_tmp;
|
||||||
|
// wait for transmit register empty
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 1)
|
||||||
|
spirec_tmp = SPI0->SPI_RDR;
|
||||||
|
UNUSED(spirec_tmp);
|
||||||
|
|
||||||
|
// write dummy byte with address and end transmission flag
|
||||||
|
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(chan) | SPI_TDR_LASTXFER;
|
||||||
|
|
||||||
|
// wait for receive register
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
||||||
|
// get byte from receive register
|
||||||
|
return SPI0->SPI_RDR;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read from SPI into buffer
|
||||||
|
void spiRead(uint8_t* buf, uint16_t nbyte) {
|
||||||
|
if (nbyte-- == 0) return;
|
||||||
|
|
||||||
|
for (int i = 0; i < nbyte; i++) {
|
||||||
|
//while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
||||||
|
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(SPI_CHAN);
|
||||||
|
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
||||||
|
buf[i] = SPI0->SPI_RDR;
|
||||||
|
//DELAY_US(1U);
|
||||||
}
|
}
|
||||||
|
buf[nbyte] = spiRec();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write single byte to SPI
|
// Write single byte to SPI
|
||||||
@ -714,51 +754,6 @@
|
|||||||
spiSend(chan, buf[n - 1]);
|
spiSend(chan, buf[n - 1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read single byte from SPI
|
|
||||||
uint8_t spiRec() {
|
|
||||||
// write dummy byte with address and end transmission flag
|
|
||||||
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(SPI_CHAN) | SPI_TDR_LASTXFER;
|
|
||||||
// wait for transmit register empty
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
|
||||||
|
|
||||||
// wait for receive register
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
|
||||||
// get byte from receive register
|
|
||||||
//DELAY_US(1U);
|
|
||||||
return SPI0->SPI_RDR;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t spiRec(uint32_t chan) {
|
|
||||||
uint8_t spirec_tmp;
|
|
||||||
// wait for transmit register empty
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 1)
|
|
||||||
spirec_tmp = SPI0->SPI_RDR;
|
|
||||||
UNUSED(spirec_tmp);
|
|
||||||
|
|
||||||
// write dummy byte with address and end transmission flag
|
|
||||||
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(chan) | SPI_TDR_LASTXFER;
|
|
||||||
|
|
||||||
// wait for receive register
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
|
||||||
// get byte from receive register
|
|
||||||
return SPI0->SPI_RDR;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Read from SPI into buffer
|
|
||||||
void spiRead(uint8_t* buf, uint16_t nbyte) {
|
|
||||||
if (nbyte-- == 0) return;
|
|
||||||
|
|
||||||
for (int i = 0; i < nbyte; i++) {
|
|
||||||
//while ((SPI0->SPI_SR & SPI_SR_TDRE) == 0);
|
|
||||||
SPI0->SPI_TDR = 0x000000FF | SPI_PCS(SPI_CHAN);
|
|
||||||
while ((SPI0->SPI_SR & SPI_SR_RDRF) == 0);
|
|
||||||
buf[i] = SPI0->SPI_RDR;
|
|
||||||
//DELAY_US(1U);
|
|
||||||
}
|
|
||||||
buf[nbyte] = spiRec();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write from buffer to SPI
|
// Write from buffer to SPI
|
||||||
void spiSendBlock(uint8_t token, const uint8_t* buf) {
|
void spiSendBlock(uint8_t token, const uint8_t* buf) {
|
||||||
SPI0->SPI_TDR = (uint32_t)token | SPI_PCS(SPI_CHAN);
|
SPI0->SPI_TDR = (uint32_t)token | SPI_PCS(SPI_CHAN);
|
||||||
@ -780,7 +775,7 @@
|
|||||||
// TODO: to be implemented
|
// TODO: to be implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
#else // U8G compatible hardware SPI
|
#else // U8G compatible hardware SPI
|
||||||
|
|
||||||
#define SPI_MODE_0_DUE_HW 2 // DUE CPHA control bit is inverted
|
#define SPI_MODE_0_DUE_HW 2 // DUE CPHA control bit is inverted
|
||||||
#define SPI_MODE_1_DUE_HW 3
|
#define SPI_MODE_1_DUE_HW 3
|
||||||
@ -789,7 +784,7 @@
|
|||||||
|
|
||||||
void spiInit(uint8_t spiRate=6) { // Default to slowest rate if not specified)
|
void spiInit(uint8_t spiRate=6) { // Default to slowest rate if not specified)
|
||||||
// 8.4 MHz, 4 MHz, 2 MHz, 1 MHz, 0.5 MHz, 0.329 MHz, 0.329 MHz
|
// 8.4 MHz, 4 MHz, 2 MHz, 1 MHz, 0.5 MHz, 0.329 MHz, 0.329 MHz
|
||||||
int spiDueDividors[] = { 10, 21, 42, 84, 168, 255, 255 };
|
constexpr int spiDivider[] = { 10, 21, 42, 84, 168, 255, 255 };
|
||||||
if (spiRate > 6) spiRate = 1;
|
if (spiRate > 6) spiRate = 1;
|
||||||
|
|
||||||
// Enable PIOA and SPI0
|
// Enable PIOA and SPI0
|
||||||
@ -809,7 +804,11 @@
|
|||||||
// Master mode, no fault detection, PCS bits in data written to TDR select CSR register
|
// Master mode, no fault detection, PCS bits in data written to TDR select CSR register
|
||||||
SPI0->SPI_MR = SPI_MR_MSTR | SPI_MR_PS | SPI_MR_MODFDIS;
|
SPI0->SPI_MR = SPI_MR_MSTR | SPI_MR_PS | SPI_MR_MODFDIS;
|
||||||
// SPI mode 0, 8 Bit data transfer, baud rate
|
// SPI mode 0, 8 Bit data transfer, baud rate
|
||||||
SPI0->SPI_CSR[3] = SPI_CSR_SCBR(spiDueDividors[spiRate]) | SPI_CSR_CSAAT | SPI_MODE_0_DUE_HW; // use same CSR as TMC2130
|
SPI0->SPI_CSR[3] = SPI_CSR_SCBR(spiDivider[spiRate]) | SPI_CSR_CSAAT | SPI_MODE_0_DUE_HW; // use same CSR as TMC2130
|
||||||
|
}
|
||||||
|
|
||||||
|
void spiBegin() {
|
||||||
|
spiInit();
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint8_t spiTransfer(uint8_t data) {
|
static uint8_t spiTransfer(uint8_t data) {
|
||||||
@ -828,10 +827,6 @@
|
|||||||
return SPI0->SPI_RDR;
|
return SPI0->SPI_RDR;
|
||||||
}
|
}
|
||||||
|
|
||||||
void spiBegin() {
|
|
||||||
spiInit();
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t spiRec() {
|
uint8_t spiRec() {
|
||||||
uint8_t data = spiTransfer(0xFF);
|
uint8_t data = spiTransfer(0xFF);
|
||||||
return data;
|
return data;
|
||||||
|
Loading…
Reference in New Issue
Block a user