1
0
Fork 0
CANopenNode/stack/MCF5282/CO_driver_target.h
Olivier Desenfans 07c61316b3 Single project-wide header for driver functions
Created a single header file (`CO_driver.h`) to declare the functions
of the drivers API. This forces drivers to use a common API.

Previously, each driver declared these functions in its specific
`CO_driver.h` file. This causes two issues:
1. while these functions are used in target-independent code,
   the declarations could be target specific, leading to API/ABI
   compatibility issues.
2. the declarations were duplicated for each driver.

The `CO_driver.h` files for each driver were renamed to
`CO_driver_target.h`. This file is included from `CO_driver.h`.

Added a new header for types: `CO_types.h`. This file currently
holds the definition of `CO_ReturnError_t` that was previously
duplicated for all drivers. Added a few enum values to support
the `neuberger-socketCAN` code.
2019-11-13 13:28:21 +01:00

363 lines
15 KiB
C

/*
* CAN module object for Freescale MCF5282 ColdFire V2 microcontroller.
*
* @file CO_driver_target.h
* @author Janez Paternoster
* @author Laurent Grosbois
* @copyright 2004 - 2014 Janez Paternoster
*
* This file is part of CANopenNode, an opensource CANopen Stack.
* Project home page is <https://github.com/CANopenNode/CANopenNode>.
* For more information on CANopen see <http://www.can-cia.org/>.
*
* CANopenNode is free and open source 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 2 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Following clarification and special exception to the GNU General Public
* License is included to the distribution terms of CANopenNode:
*
* Linking this library statically or dynamically with other modules is
* making a combined work based on this library. Thus, the terms and
* conditions of the GNU General Public License cover the whole combination.
*
* As a special exception, the copyright holders of this library give
* you permission to link this library with independent modules to
* produce an executable, regardless of the license terms of these
* independent modules, and to copy and distribute the resulting
* executable under terms of your choice, provided that you also meet,
* for each linked independent module, the terms and conditions of the
* license of that module. An independent module is a module which is
* not derived from or based on this library. If you modify this
* library, you may extend this exception to your version of the
* library, but you are not obliged to do so. If you do not wish
* to do so, delete this exception statement from your version.
*/
#ifndef CO_DRIVER_TARGET_H
#define CO_DRIVER_TARGET_H
#include "mcf5282.h" /* processor header file */
#include <stddef.h> /* for 'NULL' */
#include <stdint.h> /* for 'int8_t' to 'uint64_t' */
/* Endianness */
#define CO_LITTLE_ENDIAN
/* CAN module base address */
#define ADDR_CAN1 0
#define ADDR_CAN2 (_CAN2_BASE_ADDRESS - _CAN1_BASE_ADDRESS)
/* Critical sections */
#define CO_LOCK_CAN_SEND() asm{ move.w #0x2700,sr};
#define CO_UNLOCK_CAN_SEND() asm{ move.w #0x2000,sr};
#define CO_LOCK_EMCY() asm{ move.w #0x2700,sr};
#define CO_UNLOCK_EMCY() asm{ move.w #0x2000,sr};
#define CO_LOCK_OD() asm{ move.w #0x2700,sr};
#define CO_UNLOCK_OD() asm{ move.w #0x2000,sr};
/* MACRO : get information from Rx buffer */
#define MCF_CANMB_MSG(x) (*(CO_CANrxMsg_t *)(&__IPSBAR[0x1C0080 + ((x)*0x10)]))
/* Data types */
/* int8_t to uint64_t are defined in stdint.h */
typedef unsigned char bool_t;
typedef float float32_t;
typedef long double float64_t;
typedef char char_t;
typedef unsigned char oChar_t;
typedef unsigned char domain_t;
/* CAN bit rates
*
* CAN bit rates are initializers for array of eight CO_CANbitRateData_t
* objects.
*
* Macros are not used by driver itself, they may be used by application with
* combination with object CO_CANbitRateData_t.
* Application must declare following global variable depending on CO_FSYS used:
* const CO_CANbitRateData_t CO_CANbitRateData[8] = {CO_CANbitRateDataInitializers};
*
* There are initializers for eight objects, which corresponds to following
* CAN bit rates (in kbps): 10, 20, 50, 125, 250, 500, 800, 1000.
*
* CO_FSYS is internal instruction cycle clock frequency in kHz units. See
* PIC32MX documentation for more information on FSYS.
*
* Available values for FSYS:
* kbps = | 10 | 20 | 50 | 125 | 250 | 500 | 800 | 1000
* -------+----+----+----+-----+-----+-----+-----+-----
* 4 Mhz | O | O | O | O | p | - | - | -
* 8 Mhz | O | O | O | O | O | p | - | -
* 12 Mhz | O | O | O | O | p | p | - | -
* 16 Mhz | O | O | O | O | O | O | p | p
* 20 Mhz | O | O | O | O | O | O | - | p
* 24 Mhz | O | O | O | O | O | p | O | p
* 32 Mhz | p | O | O | O | O | O | p | O
* 36 Mhz | - | O | O | O | O | O | - | O
* 40 Mhz | - | O | O | O | O | O | p | O
* 48 Mhz | - | O | O | O | O | O | O | p
* 56 Mhz | - | p | O | O | O | p | (p) | p
* 64 Mhz | - | p | O | O | O | O | O | O
* 72 Mhz | - | - | O | O | O | O | O | O
* 80 Mhz | - | - | O | O | O | O | p | O
* ----------------------------------------------------
* (O=optimal; p=possible; -=not possible)
*/
#ifdef CO_FSYS
/* Macros, which divides K into (SJW + PROP + PhSeg1 + PhSeg2) */
#define TQ_x_7 1, 2, 3, 1
#define TQ_x_8 1, 2, 3, 2
#define TQ_x_9 1, 2, 4, 2
#define TQ_x_10 1, 3, 4, 2
#define TQ_x_12 1, 3, 6, 2
#define TQ_x_14 1, 4, 7, 2
#define TQ_x_15 1, 4, 8, 2 /* good timing */
#define TQ_x_16 1, 5, 8, 2 /* good timing */
#define TQ_x_17 1, 6, 8, 2 /* good timing */
#define TQ_x_18 1, 7, 8, 2 /* good timing */
#define TQ_x_19 1, 8, 8, 2 /* good timing */
#define TQ_x_20 1, 8, 8, 3 /* good timing */
#define TQ_x_21 1, 8, 8, 4
#define TQ_x_22 1, 8, 8, 5
#define TQ_x_23 1, 8, 8, 6
#define TQ_x_24 1, 8, 8, 7
#define TQ_x_25 1, 8, 8, 8
#if CO_FSYS == 4000
#define CO_CANbitRateDataInitializers \
{10, TQ_x_20}, /*CAN=10kbps*/ \
{5, TQ_x_20}, /*CAN=20kbps*/ \
{2, TQ_x_20}, /*CAN=50kbps*/ \
{1, TQ_x_16}, /*CAN=125kbps*/ \
{1, TQ_x_8 }, /*CAN=250kbps*/ \
{1, TQ_x_8 }, /*Not possible*/ \
{1, TQ_x_8 }, /*Not possible*/ \
{1, TQ_x_8 } /*Not possible*/
#elif CO_FSYS == 8000
#define CO_CANbitRateDataInitializers \
{25, TQ_x_16}, /*CAN=10kbps*/ \
{10, TQ_x_20}, /*CAN=20kbps*/ \
{5, TQ_x_16}, /*CAN=50kbps*/ \
{2, TQ_x_16}, /*CAN=125kbps*/ \
{1, TQ_x_16}, /*CAN=250kbps*/ \
{1, TQ_x_8 }, /*CAN=500kbps*/ \
{1, TQ_x_8 }, /*Not possible*/ \
{1, TQ_x_8 } /*Not possible*/
#elif CO_FSYS == 12000
#define CO_CANbitRateDataInitializers \
{40, TQ_x_15}, /*CAN=10kbps*/ \
{20, TQ_x_15}, /*CAN=20kbps*/ \
{8, TQ_x_15}, /*CAN=50kbps*/ \
{3, TQ_x_16}, /*CAN=125kbps*/ \
{2, TQ_x_12}, /*CAN=250kbps*/ \
{1, TQ_x_12}, /*CAN=500kbps*/ \
{1, TQ_x_12}, /*Not possible*/ \
{1, TQ_x_12} /*Not possible*/
#elif CO_FSYS == 16000
#define CO_CANbitRateDataInitializers \
{50, TQ_x_16}, /*CAN=10kbps*/ \
{25, TQ_x_16}, /*CAN=20kbps*/ \
{10, TQ_x_16}, /*CAN=50kbps*/ \
{4, TQ_x_16}, /*CAN=125kbps*/ \
{2, TQ_x_16}, /*CAN=250kbps*/ \
{1, TQ_x_16}, /*CAN=500kbps*/ \
{1, TQ_x_10}, /*CAN=800kbps*/ \
{1, TQ_x_8 } /*CAN=1000kbps*/
#elif CO_FSYS == 20000
#define CO_CANbitRateDataInitializers \
{50, TQ_x_20}, /*CAN=10kbps*/ \
{25, TQ_x_20}, /*CAN=20kbps*/ \
{10, TQ_x_20}, /*CAN=50kbps*/ \
{5, TQ_x_16}, /*CAN=125kbps*/ \
{2, TQ_x_20}, /*CAN=250kbps*/ \
{1, TQ_x_20}, /*CAN=500kbps*/ \
{1, TQ_x_20}, /*Not possible*/ \
{1, TQ_x_10} /*CAN=1000kbps*/
#elif CO_FSYS == 24000
#define CO_CANbitRateDataInitializers \
{63, TQ_x_19}, /*CAN=10kbps*/ \
{40, TQ_x_15}, /*CAN=20kbps*/ \
{15, TQ_x_16}, /*CAN=50kbps*/ \
{6, TQ_x_16}, /*CAN=125kbps*/ \
{3, TQ_x_16}, /*CAN=250kbps*/ \
{2, TQ_x_12}, /*CAN=500kbps*/ \
{1, TQ_x_15}, /*CAN=800kbps*/ \
{1, TQ_x_12} /*CAN=1000kbps*/
#elif CO_FSYS == 32000
#define CO_CANbitRateDataInitializers \
{64, TQ_x_25}, /*CAN=10kbps*/ \
{50, TQ_x_16}, /*CAN=20kbps*/ \
{20, TQ_x_16}, /*CAN=50kbps*/ \
{8, TQ_x_16}, /*CAN=125kbps*/ \
{4, TQ_x_16}, /*CAN=250kbps*/ \
{2, TQ_x_16}, /*CAN=500kbps*/ \
{2, TQ_x_10}, /*CAN=800kbps*/ \
{1, TQ_x_16} /*CAN=1000kbps*/
#elif CO_FSYS == 36000
#define CO_CANbitRateDataInitializers \
{50, TQ_x_18}, /*CAN=10kbps*/ \
{50, TQ_x_18}, /*CAN=20kbps*/ \
{20, TQ_x_18}, /*CAN=50kbps*/ \
{8, TQ_x_18}, /*CAN=125kbps*/ \
{4, TQ_x_18}, /*CAN=250kbps*/ \
{2, TQ_x_18}, /*CAN=500kbps*/ \
{2, TQ_x_18}, /*Not possible*/ \
{1, TQ_x_18} /*CAN=1000kbps*/
#elif CO_FSYS == 40000
#define CO_CANbitRateDataInitializers \
{50, TQ_x_20}, /*Not possible*/ \
{50, TQ_x_20}, /*CAN=20kbps*/ \
{25, TQ_x_16}, /*CAN=50kbps*/ \
{10, TQ_x_16}, /*CAN=125kbps*/ \
{5, TQ_x_16}, /*CAN=250kbps*/ \
{2, TQ_x_20}, /*CAN=500kbps*/ \
{1, TQ_x_25}, /*CAN=800kbps*/ \
{1, TQ_x_20} /*CAN=1000kbps*/
#elif CO_FSYS == 48000
#define CO_CANbitRateDataInitializers \
{63, TQ_x_19}, /*Not possible*/ \
{63, TQ_x_19}, /*CAN=20kbps*/ \
{30, TQ_x_16}, /*CAN=50kbps*/ \
{12, TQ_x_16}, /*CAN=125kbps*/ \
{6, TQ_x_16}, /*CAN=250kbps*/ \
{3, TQ_x_16}, /*CAN=500kbps*/ \
{2, TQ_x_15}, /*CAN=800kbps*/ \
{2, TQ_x_12} /*CAN=1000kbps*/
#elif CO_FSYS == 56000
#define CO_CANbitRateDataInitializers \
{61, TQ_x_23}, /*Not possible*/ \
{61, TQ_x_23}, /*CAN=20kbps*/ \
{35, TQ_x_16}, /*CAN=50kbps*/ \
{14, TQ_x_16}, /*CAN=125kbps*/ \
{7, TQ_x_16}, /*CAN=250kbps*/ \
{4, TQ_x_14}, /*CAN=500kbps*/ \
{5, TQ_x_7 }, /*CAN=800kbps*/ \
{2, TQ_x_14} /*CAN=1000kbps*/
#elif CO_FSYS == 64000
#define CO_CANbitRateDataInitializers \
{64, TQ_x_25}, /*Not possible*/ \
{64, TQ_x_25}, /*CAN=20kbps*/ \
{40, TQ_x_16}, /*CAN=50kbps*/ \
{16, TQ_x_16}, /*CAN=125kbps*/ \
{8, TQ_x_16}, /*CAN=250kbps*/ \
{4, TQ_x_16}, /*CAN=500kbps*/ \
{2, TQ_x_20}, /*CAN=800kbps*/ \
{2, TQ_x_16} /*CAN=1000kbps*/
#elif CO_FSYS == 72000
#define CO_CANbitRateDataInitializers \
{40, TQ_x_18}, /*Not possible*/ \
{40, TQ_x_18}, /*Not possible*/ \
{40, TQ_x_18}, /*CAN=50kbps*/ \
{16, TQ_x_18}, /*CAN=125kbps*/ \
{8, TQ_x_18}, /*CAN=250kbps*/ \
{4, TQ_x_18}, /*CAN=500kbps*/ \
{3, TQ_x_15}, /*CAN=800kbps*/ \
{2, TQ_x_18} /*CAN=1000kbps*/
#elif CO_FSYS == 80000
#define CO_CANbitRateDataInitializers \
{40, TQ_x_20}, /*Not possible*/ \
{40, TQ_x_20}, /*Not possible*/ \
{40, TQ_x_20}, /*CAN=50kbps*/ \
{16, TQ_x_20}, /*CAN=125kbps*/ \
{8, TQ_x_20}, /*CAN=250kbps*/ \
{4, TQ_x_20}, /*CAN=500kbps*/ \
{2, TQ_x_25}, /*CAN=800kbps*/ \
{2, TQ_x_20} /*CAN=1000kbps*/
#else
#error define_CO_FSYS CO_FSYS not supported
#endif
#endif
/* Structure contains timing coefficients for CAN module.
*
* CAN baud rate is calculated from following equations:
* Fsys - System clock (MAX 80MHz for PIC32MX)
* TQ = 2 * BRP / Fsys - Time Quanta
* BaudRate = 1 / (TQ * K) - Can bus Baud Rate
* K = SJW + PROP + PhSeg1 + PhSeg2 - Number of Time Quantas
*/
typedef struct{
uint8_t BRP; /* (1...64) Baud Rate Prescaler */
uint8_t SJW; /* (1...4) SJW time */
uint8_t PROP; /* (1...8) PROP time */
uint8_t phSeg1; /* (1...8) Phase Segment 1 time */
uint8_t phSeg2; /* (1...8) Phase Segment 2 time */
}CO_CANbitRateData_t;
/* CAN receive message structure as aligned in CAN module. */
typedef struct{
unsigned timestamp :8; /* 8 bits timestamp, see MCF5282 documentation */
unsigned code :4; /* Message Buffer code. see MCF52825 documentation */
unsigned DLC :4; /* Data length code */
unsigned sid :11;/* Standard Identifier - 11bits */
unsigned RTR :1; /* Remote Transmission Request bit */
unsigned :4;
unsigned timestamp16 :16;/* See MCF5282 documentation */
uint8_t data[8]; /* 8 data bytes */
}CO_CANrxMsg_t;
/* Received message object */
typedef struct{
uint16_t ident;
uint16_t mask;
void *object;
void (*pFunct)(void *object, const CO_CANrxMsg_t *message);
}CO_CANrx_t;
/* Transmit message object. */
typedef struct{
uint8_t DLC;
uint16_t ident;
uint8_t data[8];
volatile bool_t bufferFull;
volatile bool_t syncFlag;
}CO_CANtx_t;
/* CAN module object. */
typedef struct{
void *CANdriverState;
CO_CANrxMsg_t *CANmsgBuff;
uint8_t CANmsgBuffSize;
CO_CANrx_t *rxArray;
uint16_t rxSize;
CO_CANtx_t *txArray;
uint16_t txSize;
volatile bool_t CANnormal;
volatile bool_t useCANrxFilters;
volatile bool_t bufferInhibitFlag;
volatile bool_t firstCANtxMessage;
volatile uint16_t CANtxCount;
uint32_t errOld;
void *em;
}CO_CANmodule_t;
/* CAN interrupt receives and transmits CAN messages. */
void CO_CANinterrupt(CO_CANmodule_t *CANmodule, uint16_t ICODE);
#endif /* CO_DRIVER_TARGET_H */