My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HAL_SPI.cpp 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Software SPI functions originally from Arduino Sd2Card Library
  24. * Copyright (c) 2009 by William Greiman
  25. */
  26. /**
  27. * For TARGET_LPC1768
  28. */
  29. /**
  30. * Hardware SPI and Software SPI implementations are included in this file.
  31. * The hardware SPI runs faster and has higher throughput but is not compatible
  32. * with some LCD interfaces/adapters.
  33. *
  34. * Control of the slave select pin(s) is handled by the calling routines.
  35. *
  36. * Some of the LCD interfaces/adapters result in the LCD SPI and the SD card
  37. * SPI sharing pins. The SCK, MOSI & MISO pins can NOT be set/cleared with
  38. * WRITE nor digitalWrite when the hardware SPI module within the LPC17xx is
  39. * active. If any of these pins are shared then the software SPI must be used.
  40. *
  41. * A more sophisticated hardware SPI can be found at the following link.
  42. * This implementation has not been fully debugged.
  43. * https://github.com/MarlinFirmware/Marlin/tree/071c7a78f27078fd4aee9a3ef365fcf5e143531e
  44. */
  45. #ifdef TARGET_LPC1768
  46. #include "../../inc/MarlinConfig.h"
  47. #include <SPI.h>
  48. // Hardware SPI and SPIClass
  49. #include <lpc17xx_pinsel.h>
  50. #include <lpc17xx_clkpwr.h>
  51. #include "../shared/HAL_SPI.h"
  52. // ------------------------
  53. // Public functions
  54. // ------------------------
  55. #if ENABLED(LPC_SOFTWARE_SPI)
  56. // Software SPI
  57. #include <SoftwareSPI.h>
  58. static uint8_t SPI_speed = SPI_FULL_SPEED;
  59. static uint8_t spiTransfer(uint8_t b) {
  60. return swSpiTransfer(b, SPI_speed, SD_SCK_PIN, SD_MISO_PIN, SD_MOSI_PIN);
  61. }
  62. void spiBegin() {
  63. swSpiBegin(SD_SCK_PIN, SD_MISO_PIN, SD_MOSI_PIN);
  64. }
  65. void spiInit(uint8_t spiRate) {
  66. SPI_speed = swSpiInit(spiRate, SD_SCK_PIN, SD_MOSI_PIN);
  67. }
  68. uint8_t spiRec() { return spiTransfer(0xFF); }
  69. void spiRead(uint8_t*buf, uint16_t nbyte) {
  70. for (int i = 0; i < nbyte; i++)
  71. buf[i] = spiTransfer(0xFF);
  72. }
  73. void spiSend(uint8_t b) { (void)spiTransfer(b); }
  74. void spiSend(const uint8_t *buf, size_t nbyte) {
  75. for (uint16_t i = 0; i < nbyte; i++)
  76. (void)spiTransfer(buf[i]);
  77. }
  78. void spiSendBlock(uint8_t token, const uint8_t *buf) {
  79. (void)spiTransfer(token);
  80. for (uint16_t i = 0; i < 512; i++)
  81. (void)spiTransfer(buf[i]);
  82. }
  83. #else
  84. #ifdef SD_SPI_SPEED
  85. #define INIT_SPI_SPEED SD_SPI_SPEED
  86. #else
  87. #define INIT_SPI_SPEED SPI_FULL_SPEED
  88. #endif
  89. void spiBegin() { spiInit(INIT_SPI_SPEED); } // Set up SCK, MOSI & MISO pins for SSP0
  90. void spiInit(uint8_t spiRate) {
  91. #if SD_MISO_PIN == BOARD_SPI1_MISO_PIN
  92. SPI.setModule(1);
  93. #elif SD_MISO_PIN == BOARD_SPI2_MISO_PIN
  94. SPI.setModule(2);
  95. #endif
  96. SPI.setDataSize(DATA_SIZE_8BIT);
  97. SPI.setDataMode(SPI_MODE0);
  98. SPI.setClock(SPISettings::spiRate2Clock(spiRate));
  99. SPI.begin();
  100. }
  101. static uint8_t doio(uint8_t b) {
  102. return SPI.transfer(b & 0x00FF) & 0x00FF;
  103. }
  104. void spiSend(uint8_t b) { doio(b); }
  105. void spiSend(const uint8_t *buf, size_t nbyte) {
  106. for (uint16_t i = 0; i < nbyte; i++) doio(buf[i]);
  107. }
  108. void spiSend(uint32_t chan, byte b) {}
  109. void spiSend(uint32_t chan, const uint8_t *buf, size_t nbyte) {}
  110. // Read single byte from SPI
  111. uint8_t spiRec() { return doio(0xFF); }
  112. uint8_t spiRec(uint32_t chan) { return 0; }
  113. // Read from SPI into buffer
  114. void spiRead(uint8_t *buf, uint16_t nbyte) {
  115. for (uint16_t i = 0; i < nbyte; i++) buf[i] = doio(0xFF);
  116. }
  117. uint8_t spiTransfer(uint8_t b) { return doio(b); }
  118. // Write from buffer to SPI
  119. void spiSendBlock(uint8_t token, const uint8_t *buf) {
  120. (void)spiTransfer(token);
  121. for (uint16_t i = 0; i < 512; i++)
  122. (void)spiTransfer(buf[i]);
  123. }
  124. // Begin SPI transaction, set clock, bit order, data mode
  125. void spiBeginTransaction(uint32_t spiClock, uint8_t bitOrder, uint8_t dataMode) {
  126. // TODO: Implement this method
  127. }
  128. #endif // LPC_SOFTWARE_SPI
  129. /**
  130. * @brief Wait until TXE (tx empty) flag is set and BSY (busy) flag unset.
  131. */
  132. static inline void waitSpiTxEnd(LPC_SSP_TypeDef *spi_d) {
  133. while (SSP_GetStatus(spi_d, SSP_STAT_TXFIFO_EMPTY) == RESET) { /* nada */ } // wait until TXE=1
  134. while (SSP_GetStatus(spi_d, SSP_STAT_BUSY) == SET) { /* nada */ } // wait until BSY=0
  135. }
  136. // Retain the pin init state of the SPI, to avoid init more than once,
  137. // even if more instances of SPIClass exist
  138. static bool spiInitialised[BOARD_NR_SPI] = { false };
  139. SPIClass::SPIClass(uint8_t device) {
  140. // Init things specific to each SPI device
  141. // clock divider setup is a bit of hack, and needs to be improved at a later date.
  142. #if BOARD_NR_SPI >= 1
  143. _settings[0].spi_d = LPC_SSP0;
  144. _settings[0].dataMode = SPI_MODE0;
  145. _settings[0].dataSize = DATA_SIZE_8BIT;
  146. _settings[0].clock = SPI_CLOCK_MAX;
  147. //_settings[0].clockDivider = determine_baud_rate(_settings[0].spi_d, _settings[0].clock);
  148. #endif
  149. #if BOARD_NR_SPI >= 2
  150. _settings[1].spi_d = LPC_SSP1;
  151. _settings[1].dataMode = SPI_MODE0;
  152. _settings[1].dataSize = DATA_SIZE_8BIT;
  153. _settings[1].clock = SPI_CLOCK_MAX;
  154. //_settings[1].clockDivider = determine_baud_rate(_settings[1].spi_d, _settings[1].clock);
  155. #endif
  156. setModule(device);
  157. // Init the GPDMA controller
  158. // TODO: call once in the constructor? or each time?
  159. GPDMA_Init();
  160. }
  161. SPIClass::SPIClass(pin_t mosi, pin_t miso, pin_t sclk, pin_t ssel) {
  162. #if BOARD_NR_SPI >= 1
  163. if (mosi == BOARD_SPI1_MOSI_PIN) SPIClass(1);
  164. #endif
  165. #if BOARD_NR_SPI >= 2
  166. if (mosi == BOARD_SPI2_MOSI_PIN) SPIClass(2);
  167. #endif
  168. }
  169. void SPIClass::begin() {
  170. // Init the SPI pins in the first begin call
  171. if ((_currentSetting->spi_d == LPC_SSP0 && spiInitialised[0] == false) ||
  172. (_currentSetting->spi_d == LPC_SSP1 && spiInitialised[1] == false)) {
  173. pin_t sck, miso, mosi;
  174. if (_currentSetting->spi_d == LPC_SSP0) {
  175. sck = BOARD_SPI1_SCK_PIN;
  176. miso = BOARD_SPI1_MISO_PIN;
  177. mosi = BOARD_SPI1_MOSI_PIN;
  178. spiInitialised[0] = true;
  179. }
  180. else if (_currentSetting->spi_d == LPC_SSP1) {
  181. sck = BOARD_SPI2_SCK_PIN;
  182. miso = BOARD_SPI2_MISO_PIN;
  183. mosi = BOARD_SPI2_MOSI_PIN;
  184. spiInitialised[1] = true;
  185. }
  186. PINSEL_CFG_Type PinCfg; // data structure to hold init values
  187. PinCfg.Funcnum = 2;
  188. PinCfg.OpenDrain = 0;
  189. PinCfg.Pinmode = 0;
  190. PinCfg.Pinnum = LPC176x::pin_bit(sck);
  191. PinCfg.Portnum = LPC176x::pin_port(sck);
  192. PINSEL_ConfigPin(&PinCfg);
  193. SET_OUTPUT(sck);
  194. PinCfg.Pinnum = LPC176x::pin_bit(miso);
  195. PinCfg.Portnum = LPC176x::pin_port(miso);
  196. PINSEL_ConfigPin(&PinCfg);
  197. SET_INPUT(miso);
  198. PinCfg.Pinnum = LPC176x::pin_bit(mosi);
  199. PinCfg.Portnum = LPC176x::pin_port(mosi);
  200. PINSEL_ConfigPin(&PinCfg);
  201. SET_OUTPUT(mosi);
  202. }
  203. updateSettings();
  204. SSP_Cmd(_currentSetting->spi_d, ENABLE); // start SSP running
  205. }
  206. void SPIClass::beginTransaction(const SPISettings &cfg) {
  207. setBitOrder(cfg.bitOrder);
  208. setDataMode(cfg.dataMode);
  209. setDataSize(cfg.dataSize);
  210. //setClockDivider(determine_baud_rate(_currentSetting->spi_d, settings.clock));
  211. begin();
  212. }
  213. uint8_t SPIClass::transfer(const uint16_t b) {
  214. // Send and receive a single byte
  215. SSP_ReceiveData(_currentSetting->spi_d); // read any previous data
  216. SSP_SendData(_currentSetting->spi_d, b);
  217. waitSpiTxEnd(_currentSetting->spi_d); // wait for it to finish
  218. return SSP_ReceiveData(_currentSetting->spi_d);
  219. }
  220. uint16_t SPIClass::transfer16(const uint16_t data) {
  221. return (transfer((data >> 8) & 0xFF) << 8) | (transfer(data & 0xFF) & 0xFF);
  222. }
  223. void SPIClass::end() {
  224. // Neither is needed for Marlin
  225. //SSP_Cmd(_currentSetting->spi_d, DISABLE);
  226. //SSP_DeInit(_currentSetting->spi_d);
  227. }
  228. void SPIClass::send(uint8_t data) {
  229. SSP_SendData(_currentSetting->spi_d, data);
  230. }
  231. void SPIClass::dmaSend(void *buf, uint16_t length, bool minc) {
  232. //TODO: LPC dma can only write 0xFFF bytes at once.
  233. GPDMA_Channel_CFG_Type GPDMACfg;
  234. /* Configure GPDMA channel 0 -------------------------------------------------------------*/
  235. /* DMA Channel 0 */
  236. GPDMACfg.ChannelNum = 0;
  237. // Source memory
  238. GPDMACfg.SrcMemAddr = (uint32_t)buf;
  239. // Destination memory - Not used
  240. GPDMACfg.DstMemAddr = 0;
  241. // Transfer size
  242. GPDMACfg.TransferSize = length;
  243. // Transfer width
  244. GPDMACfg.TransferWidth = (_currentSetting->dataSize == DATA_SIZE_16BIT) ? GPDMA_WIDTH_HALFWORD : GPDMA_WIDTH_BYTE;
  245. // Transfer type
  246. GPDMACfg.TransferType = GPDMA_TRANSFERTYPE_M2P;
  247. // Source connection - unused
  248. GPDMACfg.SrcConn = 0;
  249. // Destination connection
  250. GPDMACfg.DstConn = (_currentSetting->spi_d == LPC_SSP0) ? GPDMA_CONN_SSP0_Tx : GPDMA_CONN_SSP1_Tx;
  251. GPDMACfg.DMALLI = 0;
  252. // Enable dma on SPI
  253. SSP_DMACmd(_currentSetting->spi_d, SSP_DMA_TX, ENABLE);
  254. // Only increase memory if minc is true
  255. GPDMACfg.MemoryIncrease = (minc ? GPDMA_DMACCxControl_SI : 0);
  256. // Setup channel with given parameter
  257. GPDMA_Setup(&GPDMACfg);
  258. // Enable DMA
  259. GPDMA_ChannelCmd(0, ENABLE);
  260. // Wait for data transfer
  261. while (!GPDMA_IntGetStatus(GPDMA_STAT_RAWINTTC, 0) && !GPDMA_IntGetStatus(GPDMA_STAT_RAWINTERR, 0)) { }
  262. // Clear err and int
  263. GPDMA_ClearIntPending (GPDMA_STATCLR_INTTC, 0);
  264. GPDMA_ClearIntPending (GPDMA_STATCLR_INTERR, 0);
  265. // Disable DMA
  266. GPDMA_ChannelCmd(0, DISABLE);
  267. waitSpiTxEnd(_currentSetting->spi_d);
  268. SSP_DMACmd(_currentSetting->spi_d, SSP_DMA_TX, DISABLE);
  269. }
  270. uint16_t SPIClass::read() {
  271. return SSP_ReceiveData(_currentSetting->spi_d);
  272. }
  273. void SPIClass::read(uint8_t *buf, uint32_t len) {
  274. for (uint16_t i = 0; i < len; i++) buf[i] = transfer(0xFF);
  275. }
  276. void SPIClass::setClock(uint32_t clock) { _currentSetting->clock = clock; }
  277. void SPIClass::setModule(uint8_t device) { _currentSetting = &_settings[device - 1]; } // SPI channels are called 1, 2, and 3 but the array is zero-indexed
  278. void SPIClass::setBitOrder(uint8_t bitOrder) { _currentSetting->bitOrder = bitOrder; }
  279. void SPIClass::setDataMode(uint8_t dataMode) { _currentSetting->dataMode = dataMode; }
  280. void SPIClass::setDataSize(uint32_t dataSize) { _currentSetting->dataSize = dataSize; }
  281. /**
  282. * Set up/tear down
  283. */
  284. void SPIClass::updateSettings() {
  285. //SSP_DeInit(_currentSetting->spi_d); //todo: need force de init?!
  286. // Divide PCLK by 2 for SSP0
  287. //CLKPWR_SetPCLKDiv(_currentSetting->spi_d == LPC_SSP0 ? CLKPWR_PCLKSEL_SSP0 : CLKPWR_PCLKSEL_SSP1, CLKPWR_PCLKSEL_CCLK_DIV_2);
  288. SSP_CFG_Type HW_SPI_init; // data structure to hold init values
  289. SSP_ConfigStructInit(&HW_SPI_init); // set values for SPI mode
  290. HW_SPI_init.ClockRate = _currentSetting->clock;
  291. HW_SPI_init.Databit = _currentSetting->dataSize;
  292. /**
  293. * SPI Mode CPOL CPHA Shift SCK-edge Capture SCK-edge
  294. * 0 0 0 Falling Rising
  295. * 1 0 1 Rising Falling
  296. * 2 1 0 Rising Falling
  297. * 3 1 1 Falling Rising
  298. */
  299. switch (_currentSetting->dataMode) {
  300. case SPI_MODE0:
  301. HW_SPI_init.CPHA = SSP_CPHA_FIRST;
  302. HW_SPI_init.CPOL = SSP_CPOL_HI;
  303. break;
  304. case SPI_MODE1:
  305. HW_SPI_init.CPHA = SSP_CPHA_SECOND;
  306. HW_SPI_init.CPOL = SSP_CPOL_HI;
  307. break;
  308. case SPI_MODE2:
  309. HW_SPI_init.CPHA = SSP_CPHA_FIRST;
  310. HW_SPI_init.CPOL = SSP_CPOL_LO;
  311. break;
  312. case SPI_MODE3:
  313. HW_SPI_init.CPHA = SSP_CPHA_SECOND;
  314. HW_SPI_init.CPOL = SSP_CPOL_LO;
  315. break;
  316. default:
  317. break;
  318. }
  319. // TODO: handle bitOrder
  320. SSP_Init(_currentSetting->spi_d, &HW_SPI_init); // puts the values into the proper bits in the SSP0 registers
  321. }
  322. #if SD_MISO_PIN == BOARD_SPI1_MISO_PIN
  323. SPIClass SPI(1);
  324. #elif SD_MISO_PIN == BOARD_SPI2_MISO_PIN
  325. SPIClass SPI(2);
  326. #endif
  327. #endif // TARGET_LPC1768