summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/mscan/mscan.c
blob: 3a804a37269305f92e2344bc4530d00f0ba86ed7 (plain) (blame)
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
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
/*===============================================================*\
| Project: RTEMS generic MPC5200 BSP                              |
+-----------------------------------------------------------------+
|                    Copyright (c) 2005                           |
|                    Embedded Brains GmbH                         |
|                    Obere Lagerstr. 30                           |
|                    D-82178 Puchheim                             |
|                    Germany                                      |
|                    rtems@embedded-brains.de                     |
+-----------------------------------------------------------------+
| The license and distribution terms for this file may be         |
| found in the file LICENSE in this distribution or at            |
|                                                                 |
| http://www.rtems.com/license/LICENSE.                           |
|                                                                 |
+-----------------------------------------------------------------+
| this file contains the MSCAN driver                             |
\*===============================================================*/

#include <stdio.h>
#include <stdlib.h>
#include <rtems.h>
#include <rtems/error.h>
#include <rtems/libio.h>
#include <string.h>

#include "../include/bsp.h"
#include <bsp/fatal.h>
#include <bsp/irq.h>
#include "../mscan/mscan_int.h"

/* #define MSCAN_LOOPBACK */

struct mpc5200_rx_cntrl mpc5200_mscan_rx_cntrl[MPC5200_CAN_NO];
static struct mscan_channel_info chan_info[MPC5200_CAN_NO];

/*
 * MPC5x00 MSCAN tx ring buffer function to get a can message buffer from the head of the tx ring buffer
 */
static struct can_message *get_tx_buffer(struct mscan_channel_info *chan)
{
  /* define a temp. mess ptr. */
  struct can_message *tmp_mess_ptr = NULL,
    *temp_head_ptr;

  /* set temp. head pointer */
  temp_head_ptr = chan->tx_ring_buf.head_ptr;

  /* check buffer empty condition */
  if (temp_head_ptr != chan->tx_ring_buf.tail_ptr) {

    /* current buffer head. ptr. */
    tmp_mess_ptr = temp_head_ptr;

    /* increment the head pointer */
    temp_head_ptr++;

    /* check for wrap around condition */
    if (temp_head_ptr > chan->tx_ring_buf.buf_ptr + NO_OF_MSCAN_TX_BUFF) {

      /* set head ptr. to the begin of the ring buffer */
      temp_head_ptr = chan->tx_ring_buf.buf_ptr;

    }

    /* end of crtical section restore head ptr. */
    chan->tx_ring_buf.head_ptr = temp_head_ptr;
  }

  /* return the current head pointer */
  return tmp_mess_ptr;
}

/*
 * MPC5x00 MSCAN tx ring buffer function to write a can message buffer to the tail of the tx ring buffer
 */
static struct can_message *fill_tx_buffer(struct mscan_channel_info *chan,
                                          struct can_message *mess_ptr)
{
  /* define a temp. mess ptr. to the entry which follows the current tail entry */
  struct can_message *tmp_mess_ptr = chan->tx_ring_buf.tail_ptr + 1;

  /* check for the wrap around condition */
  if (tmp_mess_ptr > chan->tx_ring_buf.buf_ptr + NO_OF_MSCAN_TX_BUFF) {
    /* set temp. mess. ptr to the begin of the ring buffer */
    tmp_mess_ptr = chan->tx_ring_buf.buf_ptr;
  }

  /* check buffer full condition */
  if (tmp_mess_ptr == chan->tx_ring_buf.head_ptr) {
    /* return NULL in case buffer is full */
    return NULL;
  } else {
    /* copy the can mess. to the tail of the buffer */
    memcpy((void *) chan->tx_ring_buf.tail_ptr, (void *) mess_ptr,
           sizeof (struct can_message));

    /* set new tail equal to temp. mess. ptr. */
    chan->tx_ring_buf.tail_ptr = tmp_mess_ptr;
  }

  /* return the actual tail ptr. (next free entry) */
  return chan->tx_ring_buf.tail_ptr;
}

/*
 * MPC5x00 MSCAN interrupt handler
 */
static void mpc5200_mscan_interrupt_handler(rtems_irq_hdl_param handle)
{
  rtems_status_code status;
  mscan_handle *mscan_hdl = (mscan_handle *) handle;
  struct mscan_channel_info *chan = &chan_info[mscan_hdl->mscan_channel];
  struct can_message rx_mess,
   *rx_mess_ptr,
   *tx_mess_ptr;
  mscan *m = chan->regs;
  register uint8_t idx;

  /*
     handle tx ring buffer
   */

  /* loop over all 3 tx buffers */
  for (idx = TFLG_TXE0; idx <= TFLG_TXE2; idx = idx << 1) {

    /* check for tx buffer vacation */
    if ((m->tflg) & idx) {

      /* try to get a message */
      tx_mess_ptr = get_tx_buffer(chan);

      /* check for new tx message */
      if (tx_mess_ptr != NULL) {

        /* select the tx buffer */
        m->bsel = idx;

        /* check for toucan interface */
        if ((mscan_hdl->toucan_callback) == NULL) {

          /* set tx id */
          m->txidr0 = SET_IDR0(tx_mess_ptr->mess_id);
          m->txidr1 = SET_IDR1(tx_mess_ptr->mess_id);
          m->txidr2 = 0;
          m->txidr3 = 0;

        }

        /* fill in tx data if TOUCAN is activ an TOUCAN index have a match with the tx buffer or TOUCAN is disabled */
        if (((mscan_hdl->toucan_callback) == NULL)
            || (((mscan_hdl->toucan_callback) != NULL)
                && ((tx_mess_ptr->toucan_tx_idx) == idx))) {

          /* insert dlc into m register */
          m->txdlr = (uint8_t) ((tx_mess_ptr->mess_len) & 0x000F);

          /* skip data copy in case of RTR */
          if (!(MSCAN_MESS_ID_HAS_RTR(tx_mess_ptr->mess_id))) {
            /* copy tx data to MSCAN registers */
            switch (m->txdlr) {
              case 8:
                m->txdsr7 = tx_mess_ptr->mess_data[7];
              case 7:
                m->txdsr6 = tx_mess_ptr->mess_data[6];
              case 6:
                m->txdsr5 = tx_mess_ptr->mess_data[5];
              case 5:
                m->txdsr4 = tx_mess_ptr->mess_data[4];
              case 4:
                m->txdsr3 = tx_mess_ptr->mess_data[3];
              case 3:
                m->txdsr2 = tx_mess_ptr->mess_data[2];
              case 2:
                m->txdsr1 = tx_mess_ptr->mess_data[1];
              case 1:
                m->txdsr0 = tx_mess_ptr->mess_data[0];
                break;
              default:
                break;
            }
          }

          /* enable message buffer specific interrupt */
          m->tier |= m->bsel;

          /* start transfer */
          m->tflg = m->bsel;

          /* release counting semaphore of tx ring buffer */
          rtems_semaphore_release((rtems_id) (chan->tx_rb_sid));

        } else {

          /* refill the tx ring buffer with the message */
          fill_tx_buffer(chan, tx_mess_ptr);

        }
      } else {
        /* reset interrupt enable bit */
        m->tier &= ~(idx);
      }
    }
  }

  /*
     handle rx interrupts
   */

  /* check for rx interrupt source */
  if (m->rier & RIER_RXFIE) {

    /* can messages received ? */
    while (m->rflg & RFLG_RXF) {

      if (mscan_hdl->toucan_callback == NULL) {

        /* select temporary rx buffer */
        rx_mess_ptr = &rx_mess;

      } else {

        /* check the rx fliter-match indicators (16-bit filter mode) */
        /* in case of more than one hit, lower hit has priority */
        idx = (m->idac) & 0x7;
        switch (idx) {

          case 0:
          case 1:
          case 2:
          case 3:
            rx_mess_ptr =
              (struct can_message *)
              &(mpc5200_mscan_rx_cntrl[mscan_hdl->mscan_channel].
                can_rx_message[idx]);
            break;

            /* this case should never happen */
          default:
            /* reset the rx indication flag */
            m->rflg |= RFLG_RXF;

            return;
            break;
        }

      }

      /* get rx ID */
      rx_mess_ptr->mess_id = GET_IDR0(m->rxidr0) | GET_IDR1(m->rxidr1);

      /* get rx len */
      rx_mess_ptr->mess_len = ((m->rxdlr) & 0x0F);

      /* get time stamp */
      rx_mess_ptr->mess_time_stamp = ((m->rxtimh << 8) | (m->rxtiml));

      /* skip data copy in case of RTR */
      if (!(MSCAN_MESS_ID_HAS_RTR(rx_mess_ptr->mess_id)))
      {

        /* get the data */
        switch (rx_mess_ptr->mess_len) {
          case 8:
            rx_mess_ptr->mess_data[7] = m->rxdsr7;
          case 7:
            rx_mess_ptr->mess_data[6] = m->rxdsr6;
          case 6:
            rx_mess_ptr->mess_data[5] = m->rxdsr5;
          case 5:
            rx_mess_ptr->mess_data[4] = m->rxdsr4;
          case 4:
            rx_mess_ptr->mess_data[3] = m->rxdsr3;
          case 3:
            rx_mess_ptr->mess_data[2] = m->rxdsr2;
          case 2:
            rx_mess_ptr->mess_data[1] = m->rxdsr1;
          case 1:
            rx_mess_ptr->mess_data[0] = m->rxdsr0;
          case 0:
          default:
            break;
        }
      }

      if (mscan_hdl->toucan_callback == NULL) {

        if ((status =
             rtems_message_queue_send(chan->rx_qid, (void *) rx_mess_ptr,
                                      sizeof (struct can_message))) !=
            RTEMS_SUCCESSFUL) {

          chan->int_rx_err++;

        }

      } else {

        mscan_hdl->toucan_callback((int16_t) (((m->idac) & 0x7) + 3));

      }

      /* reset the rx indication flag */
      m->rflg |= RFLG_RXF;

    }                           /* end of while(m->rflg & RFLG_RXF) */

  }

  /* status change detected */
  if (m->rflg & RFLG_CSCIF) {

    m->rflg |= RFLG_CSCIF;

    if (mscan_hdl->toucan_callback != NULL) {

      mscan_hdl->toucan_callback((int16_t) (-1));

    }

  }

}

/**
 * @brief Enables some interrupts for the MSCAN module @a m.
 *
 * Enabled interrupts:
 *  - Receiver or transmitter enters or leaves bus off state
 *  - Receiver buffer full
 */
static void mscan_interrupts_enable(mscan *m)
{

  /* RX Interrupt Enable on MSCAN_A/_B ----------------------------- */
  /*    [07]:WUPIE         0 : WakeUp interrupt disabled            */
  /*    [06]:CSCIE         1 : Status Change interrupt enabled      */
  /*    [05]:RSTATE1       0 : Recv. Status Change int. ,Bit 1      */
  /*    [04]:RSTATE0       1 : Recv. Status Change int. ,Bit 0      */
  /*                           -> 01 BusOff status changes enabled  */
  /*    [03]:TSTAT1        0 : Transmit. Status Change int. , Bit 1 */
  /*    [02]:TSTAT0        1 : Transmit. Status Change int. , Bit 0 */
  /*                           -> 01 BusOff status changes enabled  */
  /*    [01]:OVRIE         0 : Overrun Interrupt is disabled        */
  /*    [00]:RXFIE         1 : Recv. Full interrupt is enabled      */
  m->rier |= (RIER_CSCIE | RIER_RXFIE | RIER_RSTAT(1) | RIER_TSTAT(1));

  return;

}

/*
 * Unmask MPC5x00 MSCAN_A interrupts
 */
void mpc5200_mscan_a_on(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_A])->regs;

  mscan_interrupts_enable(m);

  return;

}

/*
 * Mask MPC5x00 MSCAN_A interrupts
 */
void mpc5200_mscan_a_off(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_A])->regs;

  mscan_interrupts_disable(m);

  return;

}

/*
 *  Get MSCAN_A interrupt mask setting
 */
int mpc5200_mscan_a_isOn(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_A])->regs;

  if ((m->rier & RIER_CSCIE) && (m->rier & RIER_RXFIE))
    return RTEMS_SUCCESSFUL;
  else
    return RTEMS_UNSATISFIED;

  return RTEMS_SUCCESSFUL;

}

/*
 * Unmask MPC5x00 MSCAN_B interrupts
 */
void mpc5200_mscan_b_on(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_B])->regs;

  mscan_interrupts_enable(m);

  return;

}

/*
 * Mask MPC5x00 MSCAN_B interrupts
 */
void mpc5200_mscan_b_off(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_B])->regs;

  mscan_interrupts_disable(m);

  return;

}

/*
 *  Get MSCAN_B interrupt mask setting
 */
int mpc5200_mscan_b_isOn(const rtems_irq_connect_data * ptr)
{
  mscan *m = (&chan_info[MSCAN_B])->regs;

  if ((m->rier & RIER_CSCIE) && (m->rier & RIER_RXFIE))
    return RTEMS_SUCCESSFUL;
  else
    return RTEMS_UNSATISFIED;

  return RTEMS_SUCCESSFUL;

}

static mscan_handle mscan_a_handle = {
  MSCAN_A,
  NULL
};

static mscan_handle mscan_b_handle = {
  MSCAN_B,
  NULL
};

/*
 * MPC5x00 MSCAN_A/_B irq data
 */
static rtems_irq_connect_data mpc5200_mscan_irq_data[MPC5200_CAN_NO] = {
  {
    BSP_SIU_IRQ_MSCAN1,
    (rtems_irq_hdl) mpc5200_mscan_interrupt_handler,
    (rtems_irq_hdl_param) & mscan_a_handle,
    (rtems_irq_enable) mpc5200_mscan_a_on,
    (rtems_irq_disable) mpc5200_mscan_a_off,
    (rtems_irq_is_enabled) mpc5200_mscan_a_isOn
  }, {
    BSP_SIU_IRQ_MSCAN2,
    (rtems_irq_hdl) mpc5200_mscan_interrupt_handler,
    (rtems_irq_hdl_param) & mscan_b_handle,
    (rtems_irq_enable) mpc5200_mscan_b_on,
    (rtems_irq_disable) mpc5200_mscan_b_off,
    (rtems_irq_is_enabled) mpc5200_mscan_b_isOn
  }
};

/*
 * MPC5x00 MSCAN wait for sync. with CAN bus
 */
void mpc5200_mscan_wait_sync(mscan *m)
{

  /* Control Register 0 -------------------------------------------- */
  /*    [07]:RXFRM       0 : Recv. Frame, Flag Bit (rd.&clear only) */
  /*    [06]:RXACT       0 : Recv. Active, Status Bit (rd. only)    */
  /*    [05]:CSWAI       0 : CAN Stops in Wait Mode                 */
  /*    [04]:SYNCH    0->1 : Synchronized, Status Bit (rd. only)    */
  /*    [03]:TIME        1 : Generate Timestamps                    */
  /*    [02]:WUPE        0 : WakeUp Disabled                        */
  /*    [01]:SLPRQ       0 : No Sleep Mode Request                  */
  /*    [00]:INITRQ      0 : No init. Mode Request                  */
  /* wait for MSCAN A_/_B bus synch. */

#if 0                           /* we don't have a need to wait for sync. */
  while (!((m->ctl0) & CTL0_SYNCH));
#endif
  return;

}

/*
 * MPC5x00 MSCAN perform settings in init mode
 */
void mpc5200_mscan_perform_initialization_mode_settings(mscan *m)
{
  mscan_context context;

  /* perform all can bit time settings */
  (void) mscan_set_bit_rate(m, MSCAN_BIT_RATE_DEFAULT);

  /* Enter initialization mode */
  mscan_initialization_mode_enter( m, &context);

  /* Control Register 1 -------------------------------------------- */
  /*    [07]:CANE        0 : MSCAN Module is disabled               */
  /*    [06]:CLKSRC      0 : Clock Source -> IPB_CLOCK (bsp.h)      */
  /*    [05]:LOOPB       0 : No Loopback                            */
  /*    [04]:LISTEN      0 : Normal Operation                       */
  /*    [03]:res         0 : reserved                               */
  /*    [02]:WUPM        0 : No protect. from spurious WakeUp       */
  /*    [01]:SLPAK    1->0 : Sleep Mode Acknowledge (rd. only)      */
  /*    [00]:INITAK      0 : Init. Mode Acknowledge (rd. only)      */
  /* Set CLK source, disable loopback & listen-only mode */
#ifndef MSCAN_LOOPBACK
  m->ctl1 &= ~(CTL1_LISTEN | CTL1_LOOPB | CTL1_CLKSRC);
#else
  m->ctl1 &= ~(CTL1_LISTEN | CTL1_CLKSRC);
  m->ctl1 |= (CTL1_LOOPB);
#endif

  /* IPB clock       -> IPB_CLOCK                                                            */
  /* bitrate         -> CAN_BIT_RATE                                                         */
  /* Max. no of Tq   -> CAN_MAX_NO_OF_TQ                                                     */
  /* Prescaler value -> prescale_val = ROUND_UP(IPB_CLOCK/(CAN_BIT_RATE * CAN_MAX_NO_OF_TQ)) */
  /* SYNC_SEG        ->  1 tq                                                                */
  /* time segment 1  -> 16 tq (PROP_SEG+PHASE_SEG), CAN_MAX_NO_OF_TQ_TSEG1 = 15              */
  /* time segment 2  ->  8 tq (PHASE_SEG2)        , CAN_MAX_NO_OF_TQ_TSEG2 =  7              */
  /* SJW             ->  3 (fixed 0...3)          , CAN_MAX_NO_OF_TQ_SJW   =  2              */

  /* ID Acceptance Control MSCAN_A/_B ------------------------------ */
  /*    [07]:res.        0 : reserved                               */
  /*    [06]:res.        0 : reserved                               */
  /*    [05]:IDAM1       0 : ID acceptance control, Bit1            */
  /*    [04]:IDAM0       1 : ID acceptance control, Bit0            */
  /*                         -> filter 16 bit mode                  */
  /*    [03]:res.        0 : reserved                               */
  /*    [02]:IDHIT2      0 : ID acceptance hit indication, Bit 2    */
  /*    [01]:IDHIT1      0 : ID acceptance hit indication, Bit 1    */
  /*    [00]:IDHIT0      0 : ID acceptance hit indication, Bit 0    */
  m->idac &= ~(IDAC_IDAM1);
  m->idac |= (IDAC_IDAM0);

  /* initialize rx filter masks (16 bit), don't care including rtr */
  m->idmr0 = SET_IDMR0(0x7FF);
  m->idmr1 = SET_IDMR1(0x7FF);
  m->idmr2 = SET_IDMR2(0x7FF);
  m->idmr3 = SET_IDMR3(0x7FF);
  m->idmr4 = SET_IDMR4(0x7FF);
  m->idmr5 = SET_IDMR5(0x7FF);
  m->idmr6 = SET_IDMR6(0x7FF);
  m->idmr7 = SET_IDMR7(0x7FF);

  /* Control Register 1 -------------------------------------------- */
  /*    [07]:CANE     0->1 : MSCAN Module is enabled                */
  /*    [06]:CLKSRC      1 : Clock Source -> IPB_CLOCK (bsp.h)      */
  /*    [05]:LOOPB       0 : No Loopback                            */
  /*    [04]:LISTEN      0 : Normal Operation                       */
  /*    [03]:res         0 : reserved                               */
  /*    [02]:WUPM        0 : No protect. from spurious WakeUp       */
  /*    [01]:SLPAK       0 : Sleep Mode Acknowledge (rd. only)      */
  /*    [00]:INITAK      0 : Init. Mode Acknowledge (rd. only)      */
  /* enable MSCAN A_/_B */
  m->ctl1 |= (CTL1_CANE);

  /* Leave initialization mode */
  mscan_initialization_mode_leave( m, &context);

  return;

}

/*
 * MPC5x00 MSCAN perform settings in normal mode
 */
void mpc5200_mscan_perform_normal_mode_settings(mscan
                                                *m)
{

  /* Control Register 0 -------------------------------------------- */
  /*    [07]:RXFRM       0 : Recv. Frame, Flag Bit (rd.&clear only) */
  /*    [06]:RXACT       0 : Recv. Active, Status Bit (rd. only)    */
  /*    [05]:CSWAI       0 : CAN Stops in Wait Mode                 */
  /*    [04]:SYNCH       0 : Synchronized, Status Bit (rd. only)    */
  /*    [03]:TIME        1 : Generate Timestamps                    */
  /*    [02]:WUPE        0 : WakeUp Disabled                        */
  /*    [01]:SLPRQ       0 : No Sleep Mode Request                  */
  /*    [00]:INITRQ      0 : No init. Mode Request                  */
  /* Disable wait mode, enable timestamps */
  m->ctl0 &= ~(CTL0_CSWAI);
  m->ctl0 |= (CTL0_TIME);

  return;

}

rtems_status_code mpc5200_mscan_set_mode(rtems_device_minor_number minor,
                                         uint8_t mode)
{
  struct mscan_channel_info *chan = NULL;
  mscan *m = NULL;

  switch (minor) {

    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      m = chan->regs;
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  if (chan->mode == mode)
    return RTEMS_SUCCESSFUL;

  switch (mode) {

    case MSCAN_INIT_NORMAL_MODE:
      /* perform initialization which has to be done in init mode */
      mpc5200_mscan_perform_initialization_mode_settings(m);
      break;

    case MSCAN_NORMAL_MODE:
      if ((chan->mode) == MSCAN_INITIALIZED_MODE) {
        /* perform initialization which has to be done in init mode */
        mpc5200_mscan_perform_initialization_mode_settings(m);
      }

      if ((chan->mode) == MSCAN_SLEEP_MODE) {

        /* exit sleep mode */
        mscan_sleep_mode_leave(m);
      }
      /* enable ints. */
      mscan_interrupts_enable(m);
      /* wait for bus sync. */
      mpc5200_mscan_wait_sync(m);
      break;

    case MSCAN_SLEEP_MODE:
      /* disable ints. */
      mscan_interrupts_disable(m);
      /* knter sleep mode */
      mscan_sleep_mode_enter(m);
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;

  }

  /* set new channel mode */
  chan->mode = mode;

  return RTEMS_SUCCESSFUL;

}

/*
 * initialization of channel info.
 */
rtems_status_code mscan_channel_initialize(rtems_device_major_number major,
                                           rtems_device_minor_number minor)
{
  rtems_status_code status;
  struct mscan_channel_info *chan = &chan_info[minor];

  /* set registers according to MSCAN channel information */
  switch (minor) {

    case MSCAN_A:
      chan->rx_qname = rtems_build_name('C', 'N', 'A', 'Q');
      chan->tx_rb_sname = rtems_build_name('C', 'N', 'A', 'S');

      /* register RTEMS device names for MSCAN A */
      if ((status =
           rtems_io_register_name(MSCAN_A_DEV_NAME, major,
                                  MSCAN_A)) != RTEMS_SUCCESSFUL)
        return status;

      /* register RTEMS device names for MSCAN 0 */
      if ((status =
           rtems_io_register_name(MSCAN_0_DEV_NAME, major,
                                  MSCAN_A)) != RTEMS_SUCCESSFUL)
        return status;

      /* allocate the space for MSCAN A tx ring buffer */
      if (((chan->tx_ring_buf.buf_ptr) =
           malloc(sizeof (struct can_message) * (NO_OF_MSCAN_TX_BUFF + 1))) !=
          NULL) {
        chan->tx_ring_buf.head_ptr = chan->tx_ring_buf.tail_ptr =
          chan->tx_ring_buf.buf_ptr;
      } else {
        return RTEMS_UNSATISFIED;
      }
      break;

    case MSCAN_B:
      chan->rx_qname = rtems_build_name('C', 'N', 'B', 'Q');
      chan->tx_rb_sname = rtems_build_name('C', 'N', 'B', 'S');

      /* register RTEMS device names for MSCAN B */
      if ((status =
           rtems_io_register_name(MSCAN_B_DEV_NAME, major,
                                  MSCAN_B)) != RTEMS_SUCCESSFUL)
        return status;

      /* register RTEMS device names for MSCAN 1 */
      if ((status =
           rtems_io_register_name(MSCAN_1_DEV_NAME, major,
                                  MSCAN_B)) != RTEMS_SUCCESSFUL)
        return status;

      /* allocate the space for MSCAN B tx ring buffer */
      if (((chan->tx_ring_buf.buf_ptr) =
           malloc(sizeof (struct can_message) * (NO_OF_MSCAN_TX_BUFF + 1))) !=
          NULL) {
        chan->tx_ring_buf.head_ptr = chan->tx_ring_buf.tail_ptr =
          chan->tx_ring_buf.buf_ptr;
      } else {
        return RTEMS_UNSATISFIED;
      }
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  /* create RTEMS rx message queue */
  status =
    rtems_message_queue_create(chan->rx_qname, (uint32_t) NO_OF_MSCAN_RX_BUFF,
                               (uint32_t)
                               MSCAN_MESSAGE_SIZE(sizeof (struct can_message)),
                               (rtems_attribute) RTEMS_LOCAL | RTEMS_FIFO,
                               (rtems_id *) & (chan->rx_qid));

  /* create counting RTEMS tx ring buffer semaphore */
  status =
    rtems_semaphore_create(chan->tx_rb_sname, (uint32_t) (NO_OF_MSCAN_TX_BUFF),
                           RTEMS_COUNTING_SEMAPHORE | RTEMS_NO_INHERIT_PRIORITY
                           | RTEMS_NO_PRIORITY_CEILING | RTEMS_LOCAL,
                           (rtems_task_priority) 0,
                           (rtems_id *) & (chan->tx_rb_sid));

  /* Set up interrupts */
  if (!BSP_install_rtems_irq_handler(&(mpc5200_mscan_irq_data[minor])))
    rtems_panic("Can't attach MPC5x00 MSCAN interrupt handler %d\n", minor);

  /* basic setup for channel info. struct. */
  chan->regs = (mscan *) &(mpc5200.mscan[minor]);
  chan->int_rx_err = 0;
  chan->id_extended = FALSE;
  chan->mode = MSCAN_INITIALIZED_MODE;
  chan->tx_buf_no = NO_OF_MSCAN_TX_BUFF;

  return status;

}

/*
 * MPC5x00 MSCAN device initialization
 */
rtems_device_driver mscan_initialize(rtems_device_major_number major,
                                     rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status;

  /* Initialization requested via RTEMS */
  if ((status = mscan_channel_initialize(major, MSCAN_A)) != RTEMS_SUCCESSFUL)
    bsp_fatal(MPC5200_FATAL_MSCAN_A_INIT);

  if ((status = mscan_channel_initialize(major, MSCAN_B)) != RTEMS_SUCCESSFUL)
    bsp_fatal(MPC5200_FATAL_MSCAN_B_INIT);

  if ((status =
       mpc5200_mscan_set_mode(MSCAN_A,
                              MSCAN_INIT_NORMAL_MODE)) != RTEMS_SUCCESSFUL)
    bsp_fatal(MPC5200_FATAL_MSCAN_A_SET_MODE);

  if ((status =
       mpc5200_mscan_set_mode(MSCAN_B,
                              MSCAN_INIT_NORMAL_MODE)) != RTEMS_SUCCESSFUL)
    bsp_fatal(MPC5200_FATAL_MSCAN_B_SET_MODE);

  return status;

}

/*
 * MPC5x00 MSCAN device open
 */
rtems_device_driver mscan_open(rtems_device_major_number major,
                               rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status = RTEMS_SUCCESSFUL;
  struct mscan_channel_info *chan = NULL;

  switch (minor) {

    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  /* check mode */
  if ((chan->mode) == MSCAN_SLEEP_MODE) {

    /* if not already set enter init mode */
    status = mpc5200_mscan_set_mode(minor, MSCAN_NORMAL_MODE);
  }

  return status;

}

/*
 * MPC5x00 MSCAN device close
 */
rtems_device_driver mscan_close(rtems_device_major_number major,
                                rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status;
  struct mscan_channel_info *chan = NULL;

  switch (minor) {

    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  /* enter deep sleep mode */
  status = mpc5200_mscan_set_mode(minor, MSCAN_SLEEP_MODE);

  return status;

}

/*
 * MPC5x00 MSCAN device read
 */
rtems_device_driver mscan_read(rtems_device_major_number major,
                               rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status;
  size_t message_size = 0;
  rtems_libio_rw_args_t *parms = (rtems_libio_rw_args_t *) arg;
  struct mscan_rx_parms *rx_parms = (struct mscan_rx_parms *) (parms->buffer);
  struct can_message *rx_mess = (struct can_message *) (rx_parms->rx_mess);
  struct mscan_channel_info *chan = NULL;

  switch (minor) {

    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  /* end init mode if it is first read */
  if ((chan->mode) == MSCAN_INIT_NORMAL_MODE) {

    /* if not already set enter init mode */
    mpc5200_mscan_set_mode(minor, MSCAN_NORMAL_MODE);
  }

  if ((status =
       rtems_message_queue_receive(chan->rx_qid, (void *) (rx_mess),
                                   &message_size,
                                   (uint32_t) (rx_parms->rx_flags),
                                   (rtems_interval) (rx_parms->rx_timeout)))
      != RTEMS_SUCCESSFUL) {

    parms->bytes_moved = 0;

  } else {

    parms->bytes_moved = sizeof (struct can_message);

  }

  return status;

}

/*
 * MPC5x00 MSCAN device write
 */
rtems_device_driver mscan_write(rtems_device_major_number major,
                                rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status;
  rtems_libio_rw_args_t *parms = (rtems_libio_rw_args_t *) arg;
  struct mscan_tx_parms *tx_parms = (struct mscan_tx_parms *) (parms->buffer);
  struct can_message *tx_mess = (struct can_message *) (tx_parms->tx_mess);
  struct mscan_channel_info *chan = NULL;
  mscan_handle *mscan_hdl = NULL;
  mscan *m = NULL;

  switch (minor) {
    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      mscan_hdl = mpc5200_mscan_irq_data[minor].handle;
      m = chan->regs;
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  /* end init mode if it is first write */
  if ((chan->mode) == MSCAN_INIT_NORMAL_MODE) {

    /* if not already set enter init mode */
    mpc5200_mscan_set_mode(minor, MSCAN_NORMAL_MODE);
  }

  /* preset moved bytes */
  parms->bytes_moved = 0;

  /* obtain counting semaphore of tx ring buffer */
  if ((status =
       rtems_semaphore_obtain((rtems_id) (chan->tx_rb_sid), RTEMS_NO_WAIT,
                              (rtems_interval) 0))
      == RTEMS_SUCCESSFUL) {

    /* append the TOUCAN tx_id to the mess. due to interrupt handling */
    tx_mess->toucan_tx_idx = tx_parms->tx_idx;

    /* fill the tx ring buffer with the message */
    fill_tx_buffer(chan, tx_mess);

    /* enable message buffer specific interrupt */
    m->tier |= (TIER_TXEI0 | TIER_TXEI1 | TIER_TXEI2);

    /* calculate moved bytes */
    parms->bytes_moved = (tx_mess->mess_len) & 0x000F;

  }

  return status;

}

/*
 * MPC5x00 MSCAN device control
 */
rtems_device_driver mscan_control(rtems_device_major_number major,
                                  rtems_device_minor_number minor, void *arg)
{
  rtems_status_code status;
  uint16_t tx_id;
  rtems_libio_ioctl_args_t *parms = (rtems_libio_ioctl_args_t *) arg;
  struct mscan_ctrl_parms *ctrl_parms =
    (struct mscan_ctrl_parms *) (parms->buffer);
  struct mscan_channel_info *chan = NULL;
  mscan_handle *mscan_hdl = NULL;
  mscan *m = NULL;
  mscan_context context;
  uint8_t tx_buf_count = 0;

  switch (minor) {

    case MSCAN_A:
    case MSCAN_B:
      chan = &chan_info[minor];
      mscan_hdl = mpc5200_mscan_irq_data[minor].handle;
      m = chan->regs;
      break;

    default:
      return RTEMS_UNSATISFIED;
      break;
  }

  switch (parms->command) {

      /* TOUCAN callback initialization for MSCAN */
    case TOUCAN_MSCAN_INIT:
      mscan_hdl->toucan_callback = ctrl_parms->toucan_cb_fnc;
      break;

      /* set rx buffer ID */
    case MSCAN_SET_RX_ID:

      /* enter init mode */
      mscan_initialization_mode_enter(m, &context);

      switch (ctrl_parms->ctrl_reg_no) {

        case RX_BUFFER_0:
          m->idar0 = SET_IDR0(ctrl_parms->ctrl_id);
          m->idar1 = SET_IDR1(ctrl_parms->ctrl_id);
          break;

        case RX_BUFFER_1:
          m->idar2 = SET_IDR2(ctrl_parms->ctrl_id);
          m->idar3 = SET_IDR3(ctrl_parms->ctrl_id);
          break;

        case RX_BUFFER_2:
          m->idar4 = SET_IDR4(ctrl_parms->ctrl_id);
          m->idar5 = SET_IDR5(ctrl_parms->ctrl_id);
          break;

        case RX_BUFFER_3:
          m->idar6 = SET_IDR6(ctrl_parms->ctrl_id);
          m->idar7 = SET_IDR7(ctrl_parms->ctrl_id);
          break;

        default:
          break;

      }

      /* exit init mode and perform further initialization which is required in the normal mode */
      mscan_initialization_mode_leave(m, &context);

      /* enable ints. */
      mscan_interrupts_enable(m);

      /* wait for bus sync. */
      mpc5200_mscan_wait_sync(m);

      return RTEMS_SUCCESSFUL;
      break;

      /* get rx buffer ID */
    case MSCAN_GET_RX_ID:

      switch (ctrl_parms->ctrl_reg_no) {

        case RX_BUFFER_0:
          ctrl_parms->ctrl_id = GET_IDR0(m->idar0) | GET_IDR1(m->idar1);
          break;

        case RX_BUFFER_1:
          ctrl_parms->ctrl_id = GET_IDR2(m->idar2) | GET_IDR3(m->idar3);
          break;

        case RX_BUFFER_2:
          ctrl_parms->ctrl_id = GET_IDR4(m->idar4) | GET_IDR5(m->idar5);
          break;

        case RX_BUFFER_3:
          ctrl_parms->ctrl_id = GET_IDR6(m->idar6) | GET_IDR7(m->idar7);
          break;

        default:
          break;

      }

      break;

      /* set rx buffer ID mask */
    case MSCAN_SET_RX_ID_MASK:

      /* enter init mode */
      mscan_initialization_mode_enter(m, &context);

      switch (ctrl_parms->ctrl_reg_no) {

        case RX_BUFFER_0:
          m->idmr0 = SET_IDMR0(ctrl_parms->ctrl_id_mask);
          m->idmr1 = SET_IDMR1(ctrl_parms->ctrl_id_mask);
          break;

        case RX_BUFFER_1:
          m->idmr2 = SET_IDMR2(ctrl_parms->ctrl_id_mask);
          m->idmr3 = SET_IDMR3(ctrl_parms->ctrl_id_mask);
          break;

        case RX_BUFFER_2:
          m->idmr4 = SET_IDMR4(ctrl_parms->ctrl_id_mask);
          m->idmr5 = SET_IDMR5(ctrl_parms->ctrl_id_mask);
          break;

        case RX_BUFFER_3:
          m->idmr6 = SET_IDMR6(ctrl_parms->ctrl_id_mask);
          m->idmr7 = SET_IDMR7(ctrl_parms->ctrl_id_mask);
          break;

        default:
          break;

      }

      /* exit init mode and perform further initialization which is required in the normal mode */
      mscan_initialization_mode_leave(m, &context);

      /* enable ints. */
      mscan_interrupts_enable(m);

      /* wait for bus sync. */
      mpc5200_mscan_wait_sync(m);

      break;

      /* get rx buffer ID mask */
    case MSCAN_GET_RX_ID_MASK:

      switch (ctrl_parms->ctrl_reg_no) {

        case RX_BUFFER_0:
          ctrl_parms->ctrl_id_mask =
            (GET_IDMR0(m->idmr0) | GET_IDMR1(m->idmr1));
          break;

        case RX_BUFFER_1:
          ctrl_parms->ctrl_id_mask =
            (GET_IDMR2(m->idmr2) | GET_IDMR3(m->idmr3));
          break;

        case RX_BUFFER_2:
          ctrl_parms->ctrl_id_mask =
            (GET_IDMR4(m->idmr4) | GET_IDMR5(m->idmr5));
          break;

        case RX_BUFFER_3:
          ctrl_parms->ctrl_id_mask =
            (GET_IDMR6(m->idmr6) | GET_IDMR7(m->idmr7));
          break;

        default:
          break;

      }

      /* set tx buffer ID */
    case MSCAN_SET_TX_ID:

      /* check for availability of tx buffer */
      if (!((m->tflg) & (uint8_t) (ctrl_parms->ctrl_reg_no))) {

        /* do abort tx buf. request */
        m->tarq = (uint8_t) (ctrl_parms->ctrl_reg_no);

        /* wait for abort tx buf. ack. */
        while ((m->taak) & (uint8_t) (ctrl_parms->ctrl_reg_no));

      }

      /* select tx buf. */
      m->bsel = (uint8_t) (ctrl_parms->ctrl_reg_no);

      /* set the tx id of selected buf. */
      tx_id = ctrl_parms->ctrl_id;
      m->txidr0 = SET_IDR0(tx_id);
      m->txidr1 = SET_IDR1(tx_id);
      m->txidr2 = 0;
      m->txidr3 = 0;

      break;

      /* get tx buffer ID */
    case MSCAN_GET_TX_ID:

      /* select tx buf. */
      m->bsel = (uint8_t) (ctrl_parms->ctrl_reg_no);

      /* get tx id. of selected buf. */
      ctrl_parms->ctrl_id = GET_IDR0(m->txidr0) | GET_IDR1(m->txidr1);

      break;

      /* set can bitrate */
    case MSCAN_SET_BAUDRATE:
      /* perform all can bit time settings */
      if (!mscan_set_bit_rate(m, ctrl_parms->ctrl_can_bitrate)) {
        return RTEMS_UNSATISFIED;
      }

      /* enable ints. */
      mscan_interrupts_enable(m);

      /* wait for bus sync. */
      mpc5200_mscan_wait_sync(m);

      break;

    case SET_TX_BUF_NO:

      /* check for different settings of tx ring buffer */
      if ((tx_buf_count =
           chan->tx_buf_no) != (uint8_t) (ctrl_parms->ctrl_tx_buf_no)) {

        /* preset the channel specific no of messages in the tx ring buffer */
        tx_buf_count = chan->tx_buf_no;

        /* try to obtain all of the tx ring buffers */
        while (tx_buf_count > 0) {

          /* obtain semaphore of all tx ring buffers */
          if ((status =
               rtems_semaphore_obtain((rtems_id) (chan->tx_rb_sid), RTEMS_WAIT,
                                      (rtems_interval) 10))
              == RTEMS_SUCCESSFUL) {

            tx_buf_count--;

          }

        }

        /* free the former tx ring buffer */
        free((void *) chan->tx_ring_buf.buf_ptr);

        /* allocate the tx ring buffer with new size */
        if (((chan->tx_ring_buf.buf_ptr) =
             malloc(sizeof (struct can_message) *
                    ((uint8_t) (ctrl_parms->ctrl_tx_buf_no) + 1))) != NULL) {
          chan->tx_ring_buf.head_ptr = chan->tx_ring_buf.tail_ptr =
            chan->tx_ring_buf.buf_ptr;
        } else {
          return RTEMS_UNSATISFIED;
        }

        /* set the new amount of tx buffers */
        chan->tx_buf_no = (uint8_t) (ctrl_parms->ctrl_tx_buf_no);

        /* release the semaphore of all tx ring buffers */
        while (tx_buf_count < chan->tx_buf_no) {

          /* obtain semaphore of all tx ring buffers */
          rtems_semaphore_release((rtems_id) (chan->tx_rb_sid));

          tx_buf_count++;

        }

      } else {

        return RTEMS_SUCCESSFUL;

      }
      break;

    default:
      break;

  }

  return RTEMS_SUCCESSFUL;

}