Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
/*
 * Copyright (c) 2015, Freescale Semiconductor, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * o Redistributions of source code must retain the above copyright notice, this list
 *   of conditions and the following disclaimer.
 *
 * o Redistributions in binary form must reproduce the above copyright notice, this
 *   list of conditions and the following disclaimer in the documentation and/or
 *   other materials provided with the distribution.
 *
 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
 *   contributors may be used to endorse or promote products derived from this
 *   software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef __FLEXCAN_H__
#define __FLEXCAN_H__

#include <stdint.h>
#include <stdbool.h>
#include <assert.h>
#include "device_imx.h"

/* Start of section using anonymous unions. */
#if defined(__ARMCC_VERSION)
  #pragma push
  #pragma anon_unions
#elif defined(__GNUC__)
  /* anonymous unions are enabled by default */
#elif defined(__IAR_SYSTEMS_ICC__)
  #pragma language=extended
#else
  #error Not supported compiler type
#endif

/*!
 * @addtogroup flexcan_driver
 * @{
 */

/*******************************************************************************
 * Definitions
 ******************************************************************************/

/*! @brief FlexCAN message buffer CODE for Rx buffers. */
enum _flexcan_msgbuf_code_rx
{
    flexcanRxInactive = 0x0, /*!< MB is not active. */
    flexcanRxFull     = 0x2, /*!< MB is full. */
    flexcanRxEmpty    = 0x4, /*!< MB is active and empty. */
    flexcanRxOverrun  = 0x6, /*!< MB is overwritten into a full buffer. */
    flexcanRxBusy     = 0x8, /*!< FlexCAN is updating the contents of the MB. */
                             /*!  The CPU must not access the MB. */
    flexcanRxRanswer  = 0xA, /*!< A frame was configured to recognize a Remote Request Frame */
                             /*!  and transmit a Response Frame in return. */
    flexcanRxNotUsed  = 0xF, /*!< Not used. */
};

/*! @brief FlexCAN message buffer CODE FOR Tx buffers. */
enum _flexcan_msgbuf_code_tx
{
    flexcanTxInactive    = 0x8, /*!< MB is not active. */
    flexcanTxAbort       = 0x9, /*!< MB is aborted. */
    flexcanTxDataOrRemte = 0xC, /*!< MB is a TX Data Frame(when MB RTR = 0) or */
                                /*!< MB is a TX Remote Request Frame (when MB RTR = 1). */
    flexcanTxTanswer     = 0xE, /*!< MB is a TX Response Request Frame from. */
                                /*!  an incoming Remote Request Frame. */
    flexcanTxNotUsed     = 0xF, /*!< Not used. */
};

/*! @brief FlexCAN operation modes. */
enum _flexcan_operatining_modes
{
    flexcanNormalMode     = 0x1, /*!< Normal mode or user mode @internal gui name="Normal". */
    flexcanListenOnlyMode = 0x2, /*!< Listen-only mode @internal gui name="Listen-only". */
    flexcanLoopBackMode   = 0x4, /*!< Loop-back mode @internal gui name="Loop back". */
};

/*! @brief FlexCAN RX mask mode. */
enum _flexcan_rx_mask_mode
{
    flexcanRxMaskGlobal     = 0x0, /*!< Rx global mask. */
    flexcanRxMaskIndividual = 0x1, /*!< Rx individual mask. */
};

/*! @brief The ID type used in rx matching process. */
enum _flexcan_rx_mask_id_type
{
    flexcanRxMaskIdStd = 0x0, /*!< Standard ID. */
    flexcanRxMaskIdExt = 0x1, /*!< Extended ID. */
};

/*! @brief FlexCAN error interrupt source enumeration. */
enum _flexcan_interrutpt
{
    flexcanIntRxWarning = 0x01, /*!< Tx Warning interrupt source. */
    flexcanIntTxWarning = 0x02, /*!< Tx Warning interrupt source. */
    flexcanIntWakeUp    = 0x04, /*!< Wake Up interrupt source. */
    flexcanIntBusOff    = 0x08, /*!< Bus Off interrupt source.  */
    flexcanIntError     = 0x10, /*!< Error interrupt source. */
};

/*! @brief FlexCAN error interrupt flags. */
enum _flexcan_status_flag
{
    flexcanStatusSynch        = CAN_ESR1_SYNCH_MASK,    /*!< Bus Synchronized flag. */
    flexcanStatusTxWarningInt = CAN_ESR1_TWRN_INT_MASK, /*!< Tx Warning initerrupt flag. */
    flexcanStatusRxWarningInt = CAN_ESR1_RWRN_INT_MASK, /*!< Tx Warning initerrupt flag. */
    flexcanStatusBit1Err      = CAN_ESR1_BIT1_ERR_MASK, /*!< Bit0 Error flag. */
    flexcanStatusBit0Err      = CAN_ESR1_BIT0_ERR_MASK, /*!< Bit1 Error flag. */
    flexcanStatusAckErr       = CAN_ESR1_ACK_ERR_MASK,  /*!< Ack Error flag. */
    flexcanStatusCrcErr       = CAN_ESR1_CRC_ERR_MASK,  /*!< CRC Error flag. */
    flexcanStatusFrameErr     = CAN_ESR1_FRM_ERR_MASK,  /*!< Frame Error flag. */
    flexcanStatusStuffingErr  = CAN_ESR1_STF_ERR_MASK,  /*!< Stuffing Error flag. */
    flexcanStatusTxWarning    = CAN_ESR1_TX_WRN_MASK,   /*!< Tx Warning flag. */
    flexcanStatusRxWarning    = CAN_ESR1_RX_WRN_MASK,   /*!< Rx Warning flag. */
    flexcanStatusIdle         = CAN_ESR1_IDLE_MASK,     /*!< FlexCAN Idle flag. */
    flexcanStatusTransmitting = CAN_ESR1_TX_MASK,       /*!< Trasmitting flag. */
    flexcanStatusFltConf      = CAN_ESR1_FLT_CONF_MASK, /*!< Fault Config flag. */
    flexcanStatusReceiving    = CAN_ESR1_RX_MASK,       /*!< Receiving flag. */
    flexcanStatusBusOff       = CAN_ESR1_BOFF_INT_MASK, /*!< Bus Off interrupt flag. */
    flexcanStatusError        = CAN_ESR1_ERR_INT_MASK,  /*!< Error interrupt flag. */
    flexcanStatusWake         = CAN_ESR1_WAK_INT_MASK,  /*!< Wake Up interrupt flag. */
};

/*! @brief The id filter element type selection. */
enum _flexcan_rx_fifo_id_element_format
{
    flexcanRxFifoIdElementFormatA = 0x0, /*!< One full ID (standard and extended) per ID Filter Table element. */
    flexcanRxFifoIdElementFormatB = 0x1, /*!< Two full standard IDs or two partial 14-bit (standard and extended) IDs per ID Filter Table element. */
    flexcanRxFifoIdElementFormatC = 0x2, /*!< Four partial 8-bit Standard IDs per ID Filter Table element. */
    flexcanRxFifoIdElementFormatD = 0x3, /*!< All frames rejected. */
};

/*! @brief FlexCAN Rx FIFO filters number. */
enum _flexcan_rx_fifo_filter_id_number
{
    flexcanRxFifoIdFilterNum8   = 0x0, /*!<   8 Rx FIFO Filters. @internal gui name="8 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum16  = 0x1, /*!<  16 Rx FIFO Filters. @internal gui name="16 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum24  = 0x2, /*!<  24 Rx FIFO Filters. @internal gui name="24 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum32  = 0x3, /*!<  32 Rx FIFO Filters. @internal gui name="32 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum40  = 0x4, /*!<  40 Rx FIFO Filters. @internal gui name="40 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum48  = 0x5, /*!<  48 Rx FIFO Filters. @internal gui name="48 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum56  = 0x6, /*!<  56 Rx FIFO Filters. @internal gui name="56 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum64  = 0x7, /*!<  64 Rx FIFO Filters. @internal gui name="64 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum72  = 0x8, /*!<  72 Rx FIFO Filters. @internal gui name="72 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum80  = 0x9, /*!<  80 Rx FIFO Filters. @internal gui name="80 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum88  = 0xA, /*!<  88 Rx FIFO Filters. @internal gui name="88 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum96  = 0xB, /*!<  96 Rx FIFO Filters. @internal gui name="96 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum104 = 0xC, /*!< 104 Rx FIFO Filters. @internal gui name="104 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum112 = 0xD, /*!< 112 Rx FIFO Filters. @internal gui name="112 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum120 = 0xE, /*!< 120 Rx FIFO Filters. @internal gui name="120 Rx FIFO Filters" */
    flexcanRxFifoIdFilterNum128 = 0xF, /*!< 128 Rx FIFO Filters. @internal gui name="128 Rx FIFO Filters" */
};

/*! @brief FlexCAN RX FIFO ID filter table structure. */
typedef struct _flexcan_id_table
{
    uint32_t *idFilter;   /*!< Rx FIFO ID filter elements. */
    bool isRemoteFrame;   /*!< Remote frame. */
    bool isExtendedFrame; /*!< Extended frame. */
} flexcan_id_table_t;

/*! @brief FlexCAN message buffer structure. */
typedef struct _flexcan_msgbuf
{
    union
    {
        uint32_t cs; /*!< Code and Status. */
        struct
        {
            uint32_t timeStamp : 16;
            uint32_t dlc       : 4;
            uint32_t rtr       : 1;
            uint32_t ide       : 1;
            uint32_t srr       : 1;
            uint32_t reserved1 : 1;
            uint32_t code      : 4;
            uint32_t reserved2 : 4;
        };
    };

    union
    {
        uint32_t id; /*!< Message Buffer ID. */
        struct
        {
            uint32_t idExt     : 18;
            uint32_t idStd     : 11;
            uint32_t prio      : 3;
        };
    };

    union
    {
        uint32_t word0; /*!< Bytes of the FlexCAN message. */
        struct
        {
            uint8_t data3;
            uint8_t data2;
            uint8_t data1;
            uint8_t data0;
        };
    };

    union
    {
        uint32_t word1; /*!< Bytes of the FlexCAN message. */
        struct
        {
            uint8_t data7;
            uint8_t data6;
            uint8_t data5;
            uint8_t data4;
        };
    };
} flexcan_msgbuf_t;

/*! @brief FlexCAN timing-related structures. */
typedef struct _flexcan_timing
{
    uint32_t preDiv;     /*!< Clock pre divider. */
    uint32_t rJumpwidth; /*!< Resync jump width. */
    uint32_t phaseSeg1;  /*!< Phase segment 1. */
    uint32_t phaseSeg2;  /*!< Phase segment 2. */
    uint32_t propSeg;    /*!< Propagation segment. */
} flexcan_timing_t;

/*! @brief FlexCAN module initialization structure. */
typedef struct _flexcan_init_config
{
    flexcan_timing_t timing;        /*!< Desired FlexCAN module timing configuration. */
    uint32_t         operatingMode; /*!< Desired FlexCAN module operating mode. */
    uint8_t          maxMsgBufNum;  /*!< The maximal number of available message buffer. */
} flexcan_init_config_t;

/*******************************************************************************
 * API
 ******************************************************************************/

#if defined(__cplusplus)
extern "C" {
#endif

/*!
 * @name FlexCAN Initialization and Configuration functions
 * @{
 */

/*!
 * @brief Initialize FlexCAN module with given initialization structure.
 *
 * @param base CAN base pointer.
 * @param initConfig CAN initialization structure (see @ref flexcan_init_config_t structure).
 */
void FLEXCAN_Init(CAN_Type* base, const flexcan_init_config_t* initConfig);

/*!
 * @brief This function reset FlexCAN module register content to its default value.
 *
 * @param base FlexCAN base pointer.
 */
void FLEXCAN_Deinit(CAN_Type* base);

/*!
 * @brief This function is used to Enable the FlexCAN Module.
 *
 * @param base FlexCAN base pointer.
 */
void FLEXCAN_Enable(CAN_Type* base);

/*!
 * @brief This function is used to Disable the FlexCAN Module.
 *
 * @param base FlexCAN base pointer.
 */
void FLEXCAN_Disable(CAN_Type* base);

/*!
 * @brief Sets the FlexCAN time segments for setting up bit rate.
 *
 * @param base FlexCAN base pointer.
 * @param timing FlexCAN time segments, which need to be set for the bit rate (See @ref flexcan_timing_t structure).
 */
void FLEXCAN_SetTiming(CAN_Type* base, const flexcan_timing_t* timing);

/*!
 * @brief Set operation mode.
 *
 * @param base FlexCAN base pointer.
 * @param mode Set an operation mode.
 */
void FLEXCAN_SetOperatingMode(CAN_Type* base, uint8_t mode);

/*!
 * @brief Set the maximum number of Message Buffers.
 *
 * @param base FlexCAN base pointer.
 * @param bufNum Maximum number of message buffers.
 */
void FLEXCAN_SetMaxMsgBufNum(CAN_Type* base, uint32_t bufNum);

/*!
 * @brief Get the working status of FlexCAN module.
 *
 * @param base FlexCAN base pointer.
 * @return - true: FLEXCAN module is either in Normal Mode, Listen-Only Mode or Loop-Back Mode.
 *         - false: FLEXCAN module is either in Disable Mode, Stop Mode or Freeze Mode.
 */
static inline bool FLEXCAN_IsModuleReady(CAN_Type* base)
{
    return !((CAN_MCR_REG(base) >> CAN_MCR_NOT_RDY_SHIFT) & 0x1);
}

/*!
 * @brief Set the Transmit Abort feature enablement.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable Transmit Abort feature.
 *               - true: Enable Transmit Abort feature.
 *               - false: Disable Transmit Abort feature.
 */
void FLEXCAN_SetAbortCmd(CAN_Type* base, bool enable);

/*!
 * @brief Set the local transmit priority enablement.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable local transmit periority.
 *               - true: Transmit MB with highest local priority.
 *               - false: Transmit MB with lowest MB number.
 */
void FLEXCAN_SetLocalPrioCmd(CAN_Type* base, bool enable);

/*!
 * @brief Set the Rx matching process priority.
 *
 * @param base FlexCAN base pointer.
 * @param priority Set Rx matching process priority.
 *                 - true: Matching starts from Mailboxes and continues on Rx FIFO.
 *                 - false: Matching starts from Rx FIFO and continues on Mailboxes.
 */
void FLEXCAN_SetMatchPrioCmd(CAN_Type* base, bool priority);

/*@}*/

/*!
 * @name FlexCAN Message buffer control functions
 * @{
 */

/*!
 * @brief Get message buffer pointer for transition.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx message buffer index.
 * @return message buffer pointer.
 */
flexcan_msgbuf_t* FLEXCAN_GetMsgBufPtr(CAN_Type* base, uint8_t msgBufIdx);

/*!
 * @brief Locks the FlexCAN Rx message buffer.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx Index of the message buffer
 * @return - true: Lock Rx Message Buffer successful.
 *         - false: Lock Rx Message Buffer failed.
 */
bool FLEXCAN_LockRxMsgBuf(CAN_Type* base, uint8_t msgBufIdx);

/*!
 * @brief Unlocks the FlexCAN Rx message buffer.
 *
 * @param base FlexCAN base pointer.
 * @return current free run timer counter value.
 */
uint16_t FLEXCAN_UnlockAllRxMsgBuf(CAN_Type* base);

/*@}*/

/*!
 * @name FlexCAN Interrupts and flags management functions
 * @{
 */

/*!
 * @brief Enables/Disables the FlexCAN Message Buffer interrupt.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx Index of the message buffer.
 * @param enable Enables/Disables interrupt.
 *               - true: Enable Message Buffer interrupt.
 *               - disable: Disable Message Buffer interrupt.
 */
void FLEXCAN_SetMsgBufIntCmd(CAN_Type* base, uint8_t msgBufIdx, bool enable);

/*!
 * @brief Gets the individual FlexCAN MB interrupt flag.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx Index of the message buffer.
 * @retval true: Message Buffer Interrupt is pending.
 * @retval false: There is no Message Buffer Interrupt.
 */
bool FLEXCAN_GetMsgBufStatusFlag(CAN_Type* base, uint8_t msgBufIdx);

/*!
 * @brief Clears the interrupt flag of the message buffers.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx Index of the message buffer.
 */
void FLEXCAN_ClearMsgBufStatusFlag(CAN_Type* base, uint32_t msgBufIdx);

/*!
 * @brief Enables error interrupt of the FlexCAN module.
 *
 * @param base FlexCAN base pointer.
 * @param errorSrc The interrupt source (see @ref _flexcan_interrutpt enumeration).
 * @param enable Choose enable or disable.
 */
void FLEXCAN_SetErrIntCmd(CAN_Type* base, uint32_t errorSrc, bool enable);

/*!
 * @brief Gets the FlexCAN module interrupt flag.
 *
 * @param base FlexCAN base pointer.
 * @param errFlags FlexCAN error flags (see @ref _flexcan_status_flag enumeration).
 * @return The individual Message Buffer interrupt flag (0 and 1 are the flag value)
 */
uint32_t FLEXCAN_GetErrStatusFlag(CAN_Type* base, uint32_t errFlags);

/*!
 * @brief Clears the interrupt flag of the FlexCAN module.
 *
 * @param base FlexCAN base pointer.
 * @param errFlags The value to be written to the interrupt flag1 register (see @ref _flexcan_status_flag enumeration).
 */
void FLEXCAN_ClearErrStatusFlag(CAN_Type* base, uint32_t errFlags);

/*!
 * @brief Get the error counter of FlexCAN module.
 *
 * @param base FlexCAN base pointer.
 * @param txError Tx_Err_Counter pointer.
 * @param rxError Rx_Err_Counter pointer.
 */
void FLEXCAN_GetErrCounter(CAN_Type* base, uint8_t* txError, uint8_t* rxError);

/*@}*/

/*!
 * @name Rx FIFO management functions
 * @{
 */

/*!
 * @brief Enables the Rx FIFO.
 *
 * @param base FlexCAN base pointer.
 * @param numOfFilters The number of Rx FIFO filters
 */
void FLEXCAN_EnableRxFifo(CAN_Type* base, uint8_t numOfFilters);

/*!
 * @brief Disables the Rx FIFO.
 *
 * @param base FlexCAN base pointer.
 */
void FLEXCAN_DisableRxFifo(CAN_Type* base);

/*!
 * @brief Set the number of the Rx FIFO filters.
 *
 * @param base FlexCAN base pointer.
 * @param numOfFilters The number of Rx FIFO filters.
 */
void FLEXCAN_SetRxFifoFilterNum(CAN_Type* base, uint32_t numOfFilters);

/*!
 * @brief Set the FlexCAN Rx FIFO fields.
 *
 * @param base FlexCAN base pointer.
 * @param idFormat The format of the Rx FIFO ID Filter Table Elements
 * @param idFilterTable The ID filter table elements which contain RTR bit, IDE bit and RX message ID.
 */
void FLEXCAN_SetRxFifoFilter(CAN_Type* base, uint32_t idFormat, flexcan_id_table_t *idFilterTable);

/*!
 * @brief Gets the FlexCAN Rx FIFO data pointer.
 *
 * @param base FlexCAN base pointer.
 * @return Rx FIFO data pointer.
 */
flexcan_msgbuf_t* FLEXCAN_GetRxFifoPtr(CAN_Type* base);

/*!
 * @brief Gets the FlexCAN Rx FIFO information.
 *        The return value indicates which Identifier Acceptance Filter
 *        (see Rx FIFO Structure) was hit by the received message.
 * @param base FlexCAN base pointer.
 * @return Rx FIFO filter number.
 */
uint16_t FLEXCAN_GetRxFifoInfo(CAN_Type* base);

/*@}*/

/*!
 * @name Rx Mask Setting functions
 * @{
 */

/*!
 * @brief Set the Rx masking mode.
 *
 * @param base FlexCAN base pointer.
 * @param mode The FlexCAN Rx mask mode (see @ref _flexcan_rx_mask_mode enumeration).
 */
void FLEXCAN_SetRxMaskMode(CAN_Type* base, uint32_t mode);

/*!
 * @brief Set the remote trasmit request mask enablement.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable remote trasmit request mask.
 *               - true: Enable RTR matching judgement.
 *               - false: Disable RTR matching judgement.
 */
void FLEXCAN_SetRxMaskRtrCmd(CAN_Type* base, bool enable);

/*!
 * @brief Set the FlexCAN RX global mask.
 *
 * @param base FlexCAN base pointer.
 * @param mask Rx Global mask.
 */
void FLEXCAN_SetRxGlobalMask(CAN_Type* base, uint32_t mask);

/*!
 * @brief Set the FlexCAN Rx individual mask for ID filtering in the Rx MBs and the Rx FIFO.
 *
 * @param base FlexCAN base pointer.
 * @param msgBufIdx Index of the message buffer.
 * @param mask Individual mask
 */
void FLEXCAN_SetRxIndividualMask(CAN_Type* base, uint32_t msgBufIdx, uint32_t mask);

/*!
 * @brief Set the FlexCAN RX Message Buffer BUF14 mask.
 *
 * @param base FlexCAN base pointer.
 * @param mask Message Buffer BUF14 mask.
 */
void FLEXCAN_SetRxMsgBuff14Mask(CAN_Type* base, uint32_t mask);

/*!
 * @brief Set the FlexCAN RX Message Buffer BUF15 mask.
 *
 * @param base FlexCAN base pointer.
 * @param mask Message Buffer BUF15 mask.
 */
void FLEXCAN_SetRxMsgBuff15Mask(CAN_Type* base, uint32_t mask);

/*!
 * @brief Set the FlexCAN RX Fifo global mask.
 *
 * @param base FlexCAN base pointer.
 * @param mask Rx Fifo Global mask.
 */
void FLEXCAN_SetRxFifoGlobalMask(CAN_Type* base, uint32_t mask);

/*@}*/

/*!
 * @name Misc. Functions
 * @{
 */

/*!
 * @brief Enable/disable the FlexCAN self wakeup feature.
 *
 * @param base FlexCAN base pointer.
 * @param lpfEnable The low pass filter for Rx self wakeup feature enablement.
 * @param enable The self wakeup feature enablement.
 */
void FLEXCAN_SetSelfWakeUpCmd(CAN_Type* base, bool lpfEnable, bool enable);

/*!
 * @brief Enable/Disable the FlexCAN self reception feature.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable self reception feature.
 *               - true: Enable self reception feature.
 *               - false: Disable self reception feature.
 */
void FLEXCAN_SetSelfReceptionCmd(CAN_Type* base, bool enable);

/*!
 * @brief Enable/disable the enhance FlexCAN Rx vote.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable FlexCAN Rx vote mechanism
 *               - true: Three samples are used to determine the value of the received bit.
 *               - false: Just one sample is used to determine the bit value.
 */
void FLEXCAN_SetRxVoteCmd(CAN_Type* base, bool enable);

/*!
 * @brief Enable/disable the Auto Busoff recover feature.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable Auto Busoff Recover
 *               - true: Enable Auto Bus Off recover feature.
 *               - false: Disable Auto Bus Off recover feature.
 */
void FLEXCAN_SetAutoBusOffRecoverCmd(CAN_Type* base, bool enable);

/*!
 * @brief Enable/disable the Time Sync feature.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable the Time Sync
 *               - true: Enable Time Sync feature.
 *               - false: Disable Time Sync feature.
 */
void FLEXCAN_SetTimeSyncCmd(CAN_Type* base, bool enable);

/*!
 * @brief Enable/disable the Auto Remote Response feature.
 *
 * @param base FlexCAN base pointer.
 * @param enable Enable/Disable the Auto Remote Response feature
 *               - true: Enable Auto Remote Response feature.
 *               - false: Disable Auto Remote Response feature.
 */
void FLEXCAN_SetAutoRemoteResponseCmd(CAN_Type* base, bool enable);

/*!
 * @brief Enable/disable the Glitch Filter Width when FLEXCAN enters the STOP mode.
 *
 * @param base FlexCAN base pointer.
 * @param filterWidth The Glitch Filter Width.
 */
static inline void FLEXCAN_SetGlitchFilterWidth(CAN_Type* base, uint8_t filterWidth)
{
    CAN_GFWR_REG(base) = filterWidth;
}

/*!
 * @brief Get the lowest inactive message buffer number.
 *
 * @param base FlexCAN base pointer.
 * @return bit 22-16 : The lowest number inactive Mailbox.
 *         bit 14    : Indicates whether the number content is valid or not.
 *         bit 13    : This bit indicates whether there is any inactive Mailbox.
 */
static inline uint32_t FLEXCAN_GetLowestInactiveMsgBuf(CAN_Type* base)
{
    return CAN_ESR2_REG(base);
}

/*!
 * @brief Set the Tx Arbitration Start Delay number.
 *        This function is used to optimize the transmit performance.
 *        For more information about to set this value, see the Chip Reference Manual.
 *
 * @param base FlexCAN base pointer.
 * @param tasd The lowest number inactive Mailbox.
 */
static inline void FLEXCAN_SetTxArbitrationStartDelay(CAN_Type* base, uint8_t tasd)
{
    assert(tasd < 32);
    CAN_CTRL2_REG(base) = (CAN_CTRL2_REG(base) & ~CAN_CTRL2_TASD_MASK) | CAN_CTRL2_TASD(tasd);
}

/*@}*/

#if defined(__cplusplus)
}
#endif

/*! @}*/

#if defined(__ARMCC_VERSION)
  #pragma pop
#elif defined(__GNUC__)
  /* leave anonymous unions enabled */
#elif defined(__IAR_SYSTEMS_ICC__)
  #pragma language=default
#else
  #error Not supported compiler type
#endif

#endif /* __FLEXCAN_H__ */
/*******************************************************************************
 * EOF
 ******************************************************************************/