2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2010-02-21 07:24:53 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT 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.
|
|
|
|
|
|
|
|
ChibiOS/RT 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
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-03-25 15:28:15 +00:00
|
|
|
* @file STM32/spi_lld.h
|
|
|
|
* @brief STM32 SPI subsystem low level driver header.
|
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @addtogroup STM32_SPI
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SPI_LLD_H_
|
|
|
|
#define _SPI_LLD_H_
|
|
|
|
|
2009-11-29 10:37:31 +00:00
|
|
|
#if CH_HAL_USE_SPI || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-19 10:08:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI1 driver enable switch.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details If set to @p TRUE the support for SPI1 is included.
|
2010-07-26 15:01:58 +00:00
|
|
|
* @note The default is @p TRUE.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_USE_SPI1) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_USE_SPI1 TRUE
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI2 driver enable switch.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details If set to @p TRUE the support for SPI2 is included.
|
2010-07-26 15:01:58 +00:00
|
|
|
* @note The default is @p TRUE.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_USE_SPI2) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_USE_SPI2 TRUE
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-12 16:54:48 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI3 driver enable switch.
|
2010-07-12 16:54:48 +00:00
|
|
|
* @details If set to @p TRUE the support for SPI3 is included.
|
2010-07-26 15:01:58 +00:00
|
|
|
* @note The default is @p TRUE.
|
2010-07-12 16:54:48 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_USE_SPI3) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_USE_SPI3 FALSE
|
2010-07-12 16:54:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI1 DMA priority (0..3|lowest..highest).
|
|
|
|
* @note The priority level is used for both the TX and RX DMA channels but
|
|
|
|
* because of the channels ordering the RX channel has always priority
|
|
|
|
* over the TX channel.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI1_DMA_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI1_DMA_PRIORITY 2
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI2 DMA priority (0..3|lowest..highest).
|
|
|
|
* @note The priority level is used for both the TX and RX DMA channels but
|
|
|
|
* because of the channels ordering the RX channel has always priority
|
|
|
|
* over the TX channel.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI2_DMA_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI2_DMA_PRIORITY 2
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-12 16:54:48 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI3 DMA priority (0..3|lowest..highest).
|
|
|
|
* @note The priority level is used for both the TX and RX DMA channels but
|
|
|
|
* because of the channels ordering the RX channel has always priority
|
|
|
|
* over the TX channel.
|
2010-07-12 16:54:48 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI3_DMA_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI3_DMA_PRIORITY 2
|
2010-07-12 16:54:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI1 interrupt priority level setting.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI1_IRQ_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI1_IRQ_PRIORITY 10
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI2 interrupt priority level setting.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI2_IRQ_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI2_IRQ_PRIORITY 10
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-12 16:54:48 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI3 interrupt priority level setting.
|
2010-07-12 16:54:48 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI3_IRQ_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI3_IRQ_PRIORITY 10
|
2010-07-12 16:54:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI1 DMA error hook.
|
|
|
|
* @note The default action for DMA errors is a system halt because DMA error
|
|
|
|
* can only happen because programming errors.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI1_DMA_ERROR_HOOK) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI1_DMA_ERROR_HOOK() chSysHalt()
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI2 DMA error hook.
|
|
|
|
* @note The default action for DMA errors is a system halt because DMA error
|
|
|
|
* can only happen because programming errors.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI2_DMA_ERROR_HOOK) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI2_DMA_ERROR_HOOK() chSysHalt()
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-12 16:54:48 +00:00
|
|
|
/**
|
2010-07-26 15:01:58 +00:00
|
|
|
* @brief SPI3 DMA error hook.
|
|
|
|
* @note The default action for DMA errors is a system halt because DMA error
|
|
|
|
* can only happen because programming errors.
|
2010-07-12 16:54:48 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_SPI_SPI3_DMA_ERROR_HOOK) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_SPI_SPI3_DMA_ERROR_HOOK() chSysHalt()
|
2010-07-12 16:54:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-19 10:08:08 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-08-08 07:57:28 +00:00
|
|
|
#if STM32_SPI_USE_SPI3 && \
|
|
|
|
!(defined(STM32F10X_HD) || defined(STM32F10X_CL))
|
|
|
|
#error "SPI only present in HD and CL devices"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !STM32_SPI_USE_SPI1 && !STM32_SPI_USE_SPI2 && !STM32_SPI_USE_SPI3
|
|
|
|
#error "SPI driver activated but no SPI peripheral assigned"
|
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-10-11 11:48:03 +00:00
|
|
|
* @brief Type of a structure representing an SPI driver.
|
|
|
|
*/
|
|
|
|
typedef struct SPIDriver SPIDriver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief SPI notification callback type.
|
|
|
|
*
|
|
|
|
* @param[in] spip pointer to the @p SPIDriver object triggering the
|
|
|
|
* callback
|
|
|
|
*/
|
|
|
|
typedef void (*spicallback_t)(SPIDriver *spip);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Driver configuration structure.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
2010-10-12 15:19:15 +00:00
|
|
|
* @brief Operation complete callback or @p NULL.
|
|
|
|
* @note In order to use synchronous functions this field must be set to
|
|
|
|
* @p NULL, callbacks and synchronous operations are mutually
|
|
|
|
* exclusive.
|
2010-10-11 11:48:03 +00:00
|
|
|
*/
|
|
|
|
spicallback_t spc_endcb;
|
|
|
|
/* End of the mandatory fields.*/
|
|
|
|
/**
|
|
|
|
* @brief The chip select line port.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
ioportid_t spc_ssport;
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief The chip select line pad number.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
uint16_t spc_sspad;
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief SPI initialization data.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
uint16_t spc_cr1;
|
|
|
|
} SPIConfig;
|
|
|
|
|
|
|
|
/**
|
2010-10-11 11:48:03 +00:00
|
|
|
* @brief Structure representing a SPI driver.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-10-11 11:48:03 +00:00
|
|
|
struct SPIDriver{
|
|
|
|
/**
|
|
|
|
* @brief Driver state.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
spistate_t spd_state;
|
2010-10-12 15:19:15 +00:00
|
|
|
/**
|
|
|
|
* @brief Current configuration data.
|
|
|
|
*/
|
|
|
|
const SPIConfig *spd_config;
|
2010-10-11 11:48:03 +00:00
|
|
|
#if SPI_USE_WAIT || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Waiting thread.
|
|
|
|
*/
|
|
|
|
Thread *spd_thread;
|
|
|
|
#endif /* SPI_USE_WAIT */
|
2009-11-29 08:50:13 +00:00
|
|
|
#if SPI_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
|
|
|
|
#if CH_USE_MUTEXES || defined(__DOXYGEN__)
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Mutex protecting the bus.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
Mutex spd_mutex;
|
|
|
|
#elif CH_USE_SEMAPHORES
|
|
|
|
Semaphore spd_semaphore;
|
|
|
|
#endif
|
|
|
|
#endif /* SPI_USE_MUTUAL_EXCLUSION */
|
2010-10-11 11:48:03 +00:00
|
|
|
#if defined(SPI_DRIVER_EXT_FIELDS)
|
|
|
|
SPI_DRIVER_EXT_FIELDS
|
|
|
|
#endif
|
2009-11-29 08:50:13 +00:00
|
|
|
/* End of the mandatory fields.*/
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Pointer to the SPIx registers block.
|
|
|
|
*/
|
2009-11-29 08:50:13 +00:00
|
|
|
SPI_TypeDef *spd_spi;
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Pointer to the receive DMA channel registers block.
|
|
|
|
*/
|
2010-08-10 14:07:42 +00:00
|
|
|
stm32_dma_channel_t *spd_dmarx;
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief Pointer to the transmit DMA channel registers block.
|
|
|
|
*/
|
2010-08-10 14:07:42 +00:00
|
|
|
stm32_dma_channel_t *spd_dmatx;
|
2010-10-11 11:48:03 +00:00
|
|
|
/**
|
|
|
|
* @brief DMA priority bit mask.\
|
|
|
|
*/
|
2010-08-10 14:07:42 +00:00
|
|
|
uint32_t spd_dmaccr;
|
2010-10-11 11:48:03 +00:00
|
|
|
};
|
2009-12-29 13:15:29 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver macros. */
|
|
|
|
/*===========================================================================*/
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-08-08 07:57:28 +00:00
|
|
|
#if STM32_SPI_USE_SPI1 && !defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
extern SPIDriver SPID1;
|
|
|
|
#endif
|
|
|
|
|
2010-08-08 07:57:28 +00:00
|
|
|
#if STM32_SPI_USE_SPI2 && !defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
extern SPIDriver SPID2;
|
|
|
|
#endif
|
|
|
|
|
2010-08-08 07:57:28 +00:00
|
|
|
#if STM32_SPI_USE_SPI3 && !defined(__DOXYGEN__)
|
2010-07-12 16:54:48 +00:00
|
|
|
extern SPIDriver SPID3;
|
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void spi_lld_init(void);
|
|
|
|
void spi_lld_start(SPIDriver *spip);
|
|
|
|
void spi_lld_stop(SPIDriver *spip);
|
|
|
|
void spi_lld_select(SPIDriver *spip);
|
|
|
|
void spi_lld_unselect(SPIDriver *spip);
|
|
|
|
void spi_lld_ignore(SPIDriver *spip, size_t n);
|
|
|
|
void spi_lld_exchange(SPIDriver *spip, size_t n,
|
|
|
|
const void *txbuf, void *rxbuf);
|
|
|
|
void spi_lld_send(SPIDriver *spip, size_t n, const void *txbuf);
|
|
|
|
void spi_lld_receive(SPIDriver *spip, size_t n, void *rxbuf);
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CH_HAL_USE_SPI */
|
|
|
|
|
|
|
|
#endif /* _SPI_LLD_H_ */
|
|
|
|
|
|
|
|
/** @} */
|