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-07-27 10:31:19 +00:00
|
|
|
* @file STM32/can_lld.h
|
|
|
|
* @brief STM32 CAN subsystem low level driver header.
|
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @addtogroup STM32_CAN
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CAN_LLD_H_
|
|
|
|
#define _CAN_LLD_H_
|
|
|
|
|
2009-11-29 10:37:31 +00:00
|
|
|
#if CH_HAL_USE_CAN || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-29 13:15:29 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-12-06 10:25:53 +00:00
|
|
|
/*
|
|
|
|
* The following macros from the ST header file are replaced with better
|
2010-02-21 07:24:53 +00:00
|
|
|
* equivalents.
|
2009-12-06 10:25:53 +00:00
|
|
|
*/
|
|
|
|
#undef CAN_BTR_BRP
|
|
|
|
#undef CAN_BTR_TS1
|
|
|
|
#undef CAN_BTR_TS2
|
|
|
|
#undef CAN_BTR_SJW
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief This switch defines whether the driver implementation supports
|
|
|
|
* a low power switch mode with automatic an wakeup feature.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-12-02 16:24:32 +00:00
|
|
|
#define CAN_SUPPORTS_SLEEP TRUE
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-03 16:26:54 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief Minimum number of CAN filters.
|
2009-12-03 16:26:54 +00:00
|
|
|
*/
|
|
|
|
#if defined(STM32F10X_CL) || defined(__DOXYGEN__)
|
|
|
|
#define CAN_MAX_FILTERS 28
|
|
|
|
#else
|
|
|
|
#define CAN_MAX_FILTERS 14
|
|
|
|
#endif
|
|
|
|
|
2009-12-06 10:25:53 +00:00
|
|
|
#define CAN_BTR_BRP(n) (n) /**< @brief BRP field macro.*/
|
|
|
|
#define CAN_BTR_TS1(n) ((n) << 16) /**< @brief TS1 field macro.*/
|
|
|
|
#define CAN_BTR_TS2(n) ((n) << 20) /**< @brief TS2 field macro.*/
|
|
|
|
#define CAN_BTR_SJW(n) ((n) << 24) /**< @brief SJW field macro.*/
|
|
|
|
|
|
|
|
#define CAN_IDE_STD 0 /**< @brief Standard id. */
|
|
|
|
#define CAN_IDE_EXT 1 /**< @brief Extended id. */
|
|
|
|
|
|
|
|
#define CAN_RTR_DATA 0 /**< @brief Data frame. */
|
|
|
|
#define CAN_RTR_REMOTE 1 /**< @brief Remote frame. */
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-30 21:34:05 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN1 driver enable switch.
|
2009-11-30 21:34:05 +00:00
|
|
|
* @details If set to @p TRUE the support for ADC1 is included.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note The default is @p TRUE.
|
2009-11-30 21:34:05 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_CAN_USE_CAN1) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_CAN_USE_CAN1 TRUE
|
2009-11-30 21:34:05 +00:00
|
|
|
#endif
|
|
|
|
|
2009-12-01 16:32:16 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN1 interrupt priority level setting.
|
2009-12-01 16:32:16 +00:00
|
|
|
*/
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !defined(STM32_CAN_CAN1_IRQ_PRIORITY) || defined(__DOXYGEN__)
|
|
|
|
#define STM32_CAN_CAN1_IRQ_PRIORITY 11
|
2009-12-01 16:32:16 +00:00
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/*===========================================================================*/
|
2009-12-19 10:08:08 +00:00
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2010-01-02 13:35:55 +00:00
|
|
|
#if CAN_USE_SLEEP_MODE && !CAN_SUPPORTS_SLEEP
|
|
|
|
#error "CAN sleep mode not supported in this architecture"
|
|
|
|
#endif
|
|
|
|
|
2010-08-08 07:57:28 +00:00
|
|
|
#if !STM32_CAN_USE_CAN1
|
|
|
|
#error "CAN driver activated but no CAN peripheral assigned"
|
|
|
|
#endif
|
|
|
|
|
2009-12-19 10:08:08 +00:00
|
|
|
/*===========================================================================*/
|
2009-11-29 08:50:13 +00:00
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-30 21:34:05 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN status flags.
|
2009-11-30 21:34:05 +00:00
|
|
|
*/
|
|
|
|
typedef uint32_t canstatus_t;
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN transmission frame.
|
|
|
|
* @note Accessing the frame data as word16 or word32 is not portable because
|
|
|
|
* machine data endianness, it can be still useful for a quick filling.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2009-12-04 20:56:51 +00:00
|
|
|
struct {
|
|
|
|
uint8_t cf_DLC:4; /**< @brief Data length. */
|
|
|
|
uint8_t cf_RTR:1; /**< @brief Frame type. */
|
|
|
|
uint8_t cf_IDE:1; /**< @brief Identifier type. */
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
uint32_t cf_SID:11; /**< @brief Standard identifier.*/
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
uint32_t cf_EID:29; /**< @brief Extended identifier.*/
|
|
|
|
};
|
|
|
|
};
|
2009-12-03 16:26:54 +00:00
|
|
|
union {
|
|
|
|
uint8_t cf_data8[8]; /**< @brief Frame data. */
|
|
|
|
uint16_t cf_data16[4]; /**< @brief Frame data. */
|
|
|
|
uint32_t cf_data32[2]; /**< @brief Frame data. */
|
|
|
|
};
|
|
|
|
} CANTxFrame;
|
|
|
|
|
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN received frame.
|
|
|
|
* @note Accessing the frame data as word16 or word32 is not portable because
|
|
|
|
* machine data endianness, it can be still useful for a quick filling.
|
2009-12-03 16:26:54 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2009-12-04 20:56:51 +00:00
|
|
|
struct {
|
|
|
|
uint8_t cf_FMI; /**< @brief Filter id. */
|
|
|
|
uint16_t cf_TIME; /**< @brief Time stamp. */
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
uint8_t cf_DLC:4; /**< @brief Data length. */
|
|
|
|
uint8_t cf_RTR:1; /**< @brief Frame type. */
|
|
|
|
uint8_t cf_IDE:1; /**< @brief Identifier type. */
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
uint32_t cf_SID:11; /**< @brief Standard identifier.*/
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
uint32_t cf_EID:29; /**< @brief Extended identifier.*/
|
|
|
|
};
|
|
|
|
};
|
2009-11-29 08:50:13 +00:00
|
|
|
union {
|
|
|
|
uint8_t cf_data8[8]; /**< @brief Frame data. */
|
|
|
|
uint16_t cf_data16[4]; /**< @brief Frame data. */
|
|
|
|
uint32_t cf_data32[2]; /**< @brief Frame data. */
|
|
|
|
};
|
2009-12-03 16:26:54 +00:00
|
|
|
} CANRxFrame;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2009-12-02 16:24:32 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief CAN filter.
|
|
|
|
* @note Refer to the STM32 reference manual for info about filters.
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/**
|
|
|
|
* @brief Filter mode.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note This bit represent the CAN_FM1R register bit associated to this
|
|
|
|
* filter (0=mask mode, 1=list mode).
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
uint32_t cf_mode:1;
|
|
|
|
/**
|
|
|
|
* @brief Filter sclae.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note This bit represent the CAN_FS1R register bit associated to this
|
|
|
|
* filter (0=16 bits mode, 1=32 bits mode).
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
uint32_t cf_scale:1;
|
|
|
|
/**
|
|
|
|
* @brief Filter mode.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note This bit represent the CAN_FFA1R register bit associated to this
|
|
|
|
* filter, must be set to zero in this version of the driver.
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
uint32_t cf_assignment:1;
|
|
|
|
/**
|
|
|
|
* @brief Filter register 1 (identifier).
|
|
|
|
*/
|
|
|
|
uint32_t cf_register1;
|
|
|
|
/**
|
|
|
|
* @brief Filter register 2 (mask/identifier depending on cf_mode=0/1).
|
|
|
|
*/
|
|
|
|
uint32_t cf_register2;
|
|
|
|
} CANFilter;
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief Driver configuration structure.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
2009-11-30 21:34:05 +00:00
|
|
|
/**
|
|
|
|
* @brief CAN MCR register initialization data.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note Some bits in this register are enforced by the driver regardless
|
|
|
|
* their status in this field.
|
2009-11-30 21:34:05 +00:00
|
|
|
*/
|
|
|
|
uint32_t cc_mcr;
|
|
|
|
/**
|
|
|
|
* @brief CAN BTR register initialization data.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note Some bits in this register are enforced by the driver regardless
|
|
|
|
* their status in this field.
|
2009-11-30 21:34:05 +00:00
|
|
|
*/
|
|
|
|
uint32_t cc_btr;
|
2009-12-02 16:24:32 +00:00
|
|
|
/**
|
|
|
|
* @brief Number of elements into the filters array.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note By setting this field to zero a default filter is enabled that
|
|
|
|
* allows all frames, this should be adequate for simple applications.
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
uint32_t cc_num;
|
|
|
|
/**
|
|
|
|
* @brief Pointer to an array of @p CANFilter structures.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note This field can be set to @p NULL if the field @p cc_num is set to
|
|
|
|
* zero.
|
2009-12-02 16:24:32 +00:00
|
|
|
*/
|
|
|
|
const CANFilter *cc_filters;
|
2009-11-29 08:50:13 +00:00
|
|
|
} CANConfig;
|
|
|
|
|
|
|
|
/**
|
2010-07-27 10:31:19 +00:00
|
|
|
* @brief Structure representing an CAN driver.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/**
|
|
|
|
* @brief Driver state.
|
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
canstate_t cd_state;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Current configuration data.
|
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
const CANConfig *cd_config;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Transmission queue semaphore.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
Semaphore cd_txsem;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Receive queue semaphore.
|
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
Semaphore cd_rxsem;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2009-12-02 16:24:32 +00:00
|
|
|
* @brief One or more frames become available.
|
2010-07-27 10:31:19 +00:00
|
|
|
* @note After broadcasting this event it will not be broadcasted again
|
|
|
|
* until the received frames queue has been completely emptied. It
|
|
|
|
* is <b>not</b> broadcasted for each received frame. It is
|
|
|
|
* responsibility of the application to empty the queue by repeatedly
|
|
|
|
* invoking @p chReceive() when listening to this event. This behavior
|
|
|
|
* minimizes the interrupt served by the system because CAN traffic.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
EventSource cd_rxfull_event;
|
|
|
|
/**
|
|
|
|
* @brief One or more transmission slots become available.
|
|
|
|
*/
|
|
|
|
EventSource cd_txempty_event;
|
|
|
|
/**
|
|
|
|
* @brief A CAN bus error happened.
|
|
|
|
*/
|
|
|
|
EventSource cd_error_event;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Error flags set when an error event is broadcasted.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
canstatus_t cd_status;
|
2009-11-29 08:50:13 +00:00
|
|
|
#if CAN_USE_SLEEP_MODE || defined (__DOXYGEN__)
|
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Entering sleep state event.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
EventSource cd_sleep_event;
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Exiting sleep state event.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2009-11-30 21:34:05 +00:00
|
|
|
EventSource cd_wakeup_event;
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif /* CAN_USE_SLEEP_MODE */
|
|
|
|
/* End of the mandatory fields.*/
|
2009-11-30 21:34:05 +00:00
|
|
|
/**
|
2010-02-21 07:24:53 +00:00
|
|
|
* @brief Pointer to the CAN registers.
|
2009-11-30 21:34:05 +00:00
|
|
|
*/
|
2009-12-01 16:32:16 +00:00
|
|
|
CAN_TypeDef *cd_can;
|
2009-11-29 08:50:13 +00:00
|
|
|
} CANDriver;
|
|
|
|
|
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_CAN_USE_CAN1 && !defined(__DOXYGEN__)
|
2009-11-30 21:34:05 +00:00
|
|
|
extern CANDriver CAND1;
|
|
|
|
#endif
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void can_lld_init(void);
|
|
|
|
void can_lld_start(CANDriver *canp);
|
|
|
|
void can_lld_stop(CANDriver *canp);
|
|
|
|
bool_t can_lld_can_transmit(CANDriver *canp);
|
2009-12-03 16:26:54 +00:00
|
|
|
void can_lld_transmit(CANDriver *canp, const CANTxFrame *crfp);
|
2009-11-29 08:50:13 +00:00
|
|
|
bool_t can_lld_can_receive(CANDriver *canp);
|
2009-12-03 16:26:54 +00:00
|
|
|
void can_lld_receive(CANDriver *canp, CANRxFrame *ctfp);
|
2009-11-29 08:50:13 +00:00
|
|
|
#if CAN_USE_SLEEP_MODE
|
|
|
|
void can_lld_sleep(CANDriver *canp);
|
|
|
|
void can_lld_wakeup(CANDriver *canp);
|
|
|
|
#endif /* CAN_USE_SLEEP_MODE */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CH_HAL_USE_CAN */
|
|
|
|
|
|
|
|
#endif /* _CAN_LLD_H_ */
|
|
|
|
|
|
|
|
/** @} */
|