2018-10-03 03:26:07 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
* Copyright (c) 2017 Victor Perez
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
*/
|
2018-12-03 06:55:49 -06:00
|
|
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
|
|
|
|
2018-11-04 15:03:45 -06:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
#include <SPI.h>
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
// Public Variables
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
static SPISettings spiConfig;
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
// Public functions
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
#if ENABLED(SOFTWARE_SPI)
|
2020-01-14 23:22:16 -06:00
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
// Software SPI
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
#include "../shared/Delay.h"
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
void spiBegin(void) {
|
2021-01-01 14:31:15 -06:00
|
|
|
OUT_WRITE(SD_SS_PIN, HIGH);
|
|
|
|
OUT_WRITE(SD_SCK_PIN, HIGH);
|
|
|
|
SET_INPUT(SD_MISO_PIN);
|
|
|
|
OUT_WRITE(SD_MOSI_PIN, HIGH);
|
2020-01-14 23:22:16 -06:00
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
static uint16_t delay_STM32_soft_spi;
|
|
|
|
|
|
|
|
void spiInit(uint8_t spiRate) {
|
|
|
|
// Use datarates Marlin uses
|
|
|
|
switch (spiRate) {
|
|
|
|
case SPI_FULL_SPEED: delay_STM32_soft_spi = 125; break; // desired: 8,000,000 actual: ~1.1M
|
|
|
|
case SPI_HALF_SPEED: delay_STM32_soft_spi = 125; break; // desired: 4,000,000 actual: ~1.1M
|
|
|
|
case SPI_QUARTER_SPEED:delay_STM32_soft_spi = 250; break; // desired: 2,000,000 actual: ~890K
|
|
|
|
case SPI_EIGHTH_SPEED: delay_STM32_soft_spi = 500; break; // desired: 1,000,000 actual: ~590K
|
|
|
|
case SPI_SPEED_5: delay_STM32_soft_spi = 1000; break; // desired: 500,000 actual: ~360K
|
|
|
|
case SPI_SPEED_6: delay_STM32_soft_spi = 2000; break; // desired: 250,000 actual: ~210K
|
|
|
|
default: delay_STM32_soft_spi = 4000; break; // desired: 125,000 actual: ~123K
|
|
|
|
}
|
|
|
|
SPI.begin();
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// Begin SPI transaction, set clock, bit order, data mode
|
|
|
|
void spiBeginTransaction(uint32_t spiClock, uint8_t bitOrder, uint8_t dataMode) { /* do nothing */ }
|
|
|
|
|
|
|
|
uint8_t HAL_SPI_STM32_SpiTransfer_Mode_3(uint8_t b) { // using Mode 3
|
|
|
|
for (uint8_t bits = 8; bits--;) {
|
2021-01-01 14:31:15 -06:00
|
|
|
WRITE(SD_SCK_PIN, LOW);
|
|
|
|
WRITE(SD_MOSI_PIN, b & 0x80);
|
2020-01-14 23:22:16 -06:00
|
|
|
|
|
|
|
DELAY_NS(delay_STM32_soft_spi);
|
2021-01-01 14:31:15 -06:00
|
|
|
WRITE(SD_SCK_PIN, HIGH);
|
2020-01-14 23:22:16 -06:00
|
|
|
DELAY_NS(delay_STM32_soft_spi);
|
|
|
|
|
|
|
|
b <<= 1; // little setup time
|
2021-01-01 14:31:15 -06:00
|
|
|
b |= (READ(SD_MISO_PIN) != 0);
|
2020-01-14 23:22:16 -06:00
|
|
|
}
|
|
|
|
DELAY_NS(125);
|
|
|
|
return b;
|
2018-10-03 03:26:07 -05:00
|
|
|
}
|
2019-08-29 17:00:01 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// Soft SPI receive byte
|
|
|
|
uint8_t spiRec() {
|
|
|
|
DISABLE_ISRS(); // No interrupts during byte receive
|
|
|
|
const uint8_t data = HAL_SPI_STM32_SpiTransfer_Mode_3(0xFF);
|
|
|
|
ENABLE_ISRS(); // Enable interrupts
|
|
|
|
return data;
|
|
|
|
}
|
2019-12-15 12:24:54 -06:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// Soft SPI read data
|
|
|
|
void spiRead(uint8_t *buf, uint16_t nbyte) {
|
|
|
|
for (uint16_t i = 0; i < nbyte; i++)
|
|
|
|
buf[i] = spiRec();
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// Soft SPI send byte
|
|
|
|
void spiSend(uint8_t data) {
|
|
|
|
DISABLE_ISRS(); // No interrupts during byte send
|
|
|
|
HAL_SPI_STM32_SpiTransfer_Mode_3(data); // Don't care what is received
|
|
|
|
ENABLE_ISRS(); // Enable interrupts
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// Soft SPI send block
|
|
|
|
void spiSendBlock(uint8_t token, const uint8_t *buf) {
|
|
|
|
spiSend(token);
|
|
|
|
for (uint16_t i = 0; i < 512; i++)
|
|
|
|
spiSend(buf[i]);
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
#else
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2020-01-14 23:22:16 -06:00
|
|
|
// ------------------------
|
|
|
|
// Hardware SPI
|
|
|
|
// ------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* VGPV SPI speed start and PCLK2/2, by default 108/2 = 54Mhz
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Begin SPI port setup
|
|
|
|
*
|
|
|
|
* @return Nothing
|
|
|
|
*
|
|
|
|
* @details Only configures SS pin since stm32duino creates and initialize the SPI object
|
|
|
|
*/
|
|
|
|
void spiBegin() {
|
2021-01-01 14:31:15 -06:00
|
|
|
#if PIN_EXISTS(SD_SS)
|
|
|
|
OUT_WRITE(SD_SS_PIN, HIGH);
|
2020-01-14 23:22:16 -06:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Configure SPI for specified SPI speed
|
|
|
|
void spiInit(uint8_t spiRate) {
|
|
|
|
// Use datarates Marlin uses
|
|
|
|
uint32_t clock;
|
|
|
|
switch (spiRate) {
|
|
|
|
case SPI_FULL_SPEED: clock = 20000000; break; // 13.9mhz=20000000 6.75mhz=10000000 3.38mhz=5000000 .833mhz=1000000
|
|
|
|
case SPI_HALF_SPEED: clock = 5000000; break;
|
|
|
|
case SPI_QUARTER_SPEED: clock = 2500000; break;
|
|
|
|
case SPI_EIGHTH_SPEED: clock = 1250000; break;
|
|
|
|
case SPI_SPEED_5: clock = 625000; break;
|
|
|
|
case SPI_SPEED_6: clock = 300000; break;
|
|
|
|
default:
|
|
|
|
clock = 4000000; // Default from the SPI library
|
|
|
|
}
|
|
|
|
spiConfig = SPISettings(clock, MSBFIRST, SPI_MODE0);
|
|
|
|
|
|
|
|
#if ENABLED(CUSTOM_SPI_PINS)
|
2021-01-01 14:31:15 -06:00
|
|
|
SPI.setMISO(SD_MISO_PIN);
|
|
|
|
SPI.setMOSI(SD_MOSI_PIN);
|
|
|
|
SPI.setSCLK(SD_SCK_PIN);
|
2020-01-14 23:22:16 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
SPI.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Receives a single byte from the SPI port.
|
|
|
|
*
|
|
|
|
* @return Byte received
|
|
|
|
*
|
|
|
|
* @details
|
|
|
|
*/
|
|
|
|
uint8_t spiRec() {
|
|
|
|
uint8_t returnByte = SPI.transfer(0xFF);
|
|
|
|
return returnByte;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Receive a number of bytes from the SPI port to a buffer
|
|
|
|
*
|
|
|
|
* @param buf Pointer to starting address of buffer to write to.
|
|
|
|
* @param nbyte Number of bytes to receive.
|
|
|
|
* @return Nothing
|
|
|
|
*
|
|
|
|
* @details Uses DMA
|
|
|
|
*/
|
|
|
|
void spiRead(uint8_t* buf, uint16_t nbyte) {
|
|
|
|
if (nbyte == 0) return;
|
|
|
|
memset(buf, 0xFF, nbyte);
|
|
|
|
SPI.transfer(buf, nbyte);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Send a single byte on SPI port
|
|
|
|
*
|
|
|
|
* @param b Byte to send
|
|
|
|
*
|
|
|
|
* @details
|
|
|
|
*/
|
|
|
|
void spiSend(uint8_t b) {
|
|
|
|
SPI.transfer(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write token and then write from 512 byte buffer to SPI (for SD card)
|
|
|
|
*
|
|
|
|
* @param buf Pointer with buffer start address
|
|
|
|
* @return Nothing
|
|
|
|
*
|
|
|
|
* @details Use DMA
|
|
|
|
*/
|
|
|
|
void spiSendBlock(uint8_t token, const uint8_t* buf) {
|
|
|
|
uint8_t rxBuf[512];
|
|
|
|
SPI.transfer(token);
|
|
|
|
SPI.transfer((uint8_t*)buf, &rxBuf, 512);
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
#endif // SOFTWARE_SPI
|
|
|
|
|
2019-06-28 23:04:33 -05:00
|
|
|
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC
|