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
|
// SPDX-License-Identifier: GPL-2.0+
/*
Copyright (c) 2013 Broadcom Corporation
All Rights Reserved
*/
/******************************************************************************/
/* */
/* File Description: */
/* */
/* This header file defines all datatypes and functions exported for the */
/* Ethernet MAC */
/* */
/******************************************************************************/
#ifndef __UNIFIED_DRV_MAC_H
#define __UNIFIED_DRV_MAC_H
/*****************************************************************************/
/* */
/* Include files */
/* */
/*****************************************************************************/
#if !defined(CONFIG_BCM947622)
#include "rdpa_types.h"
#else //47622 - does not have runner, just include necessary definitions
#define rdpa_emac int
/** EMAC rates */
typedef enum
{
rdpa_emac_rate_10m, /**< 10 Mbps */
rdpa_emac_rate_100m, /**< 100 Mbps */
rdpa_emac_rate_1g, /**< 1 Gbps */
rdpa_emac_rate_2_5g, /**< 2.5 Gbps */
rdpa_emac_rate__num_of, /* Number of rates */
} rdpa_emac_rate;
/** EMAC configuration */
typedef struct
{
char loopback; /**< 1 = line loopback */
rdpa_emac_rate rate; /**< EMAC rate */
char generate_crc; /**< 1 = generate CRC */
char full_duplex; /**< 1 = full duplex */
char pad_short; /**< 1 = pad short frames */
char allow_too_long;/**< 1 = allow long frames */
char check_length; /**< 1 = check frame length */
uint32_t preamble_length; /**< Preamble length */
uint32_t back2back_gap; /**< Back2Back inter-packet gap */
uint32_t non_back2back_gap; /**< Non Back2Back inter-packet gap */
uint32_t min_interframe_gap; /**< Min inter-frame gap */
char rx_flow_control;/**< 1 = enable RX flow control */
char tx_flow_control;/**< 1 = enable TX flow control */
} rdpa_emac_cfg_t;
/** RX RMON counters.
* Underlying type for emac_rx_stat aggregate type.
*/
typedef struct
{
uint32_t byte; /**< Receive Byte Counter */
uint32_t packet; /**< Receive Packet Counter */
uint32_t frame_64; /**< Receive 64 Byte Frame Counter */
uint32_t frame_65_127; /**< Receive 65 to 127 Byte Frame Counter */
uint32_t frame_128_255; /**< Receive 128 to 255 Byte Frame Counter */
uint32_t frame_256_511; /**< Receive 256 to 511 Byte Frame Counter */
uint32_t frame_512_1023; /**< Receive 512 to 1023 Byte Frame Counter */
uint32_t frame_1024_1518; /**< Receive 1024 to 1518 Byte Frame Counter */
uint32_t frame_1519_mtu; /**< Receive 1519 to MTU Frame Counter */
uint32_t multicast_packet; /**< Receive Multicast Packet */
uint32_t broadcast_packet; /**< Receive Broadcast Packet */
uint32_t unicast_packet; /**< Receive Unicast Packet */
uint32_t alignment_error; /**< Receive Alignment error */
uint32_t frame_length_error;/**< Receive Frame Length Error Counter */
uint32_t code_error; /**< Receive Code Error Counter */
uint32_t carrier_sense_error;/**< Receive Carrier sense error */
uint32_t fcs_error; /**< Receive FCS Error Counter */
uint32_t control_frame; /**< Receive Control Frame Counter */
uint32_t pause_control_frame;/**< Receive Pause Control Frame */
uint32_t unknown_opcode; /**< Receive Unknown opcode */
uint32_t undersize_packet; /**< Receive Undersize Packet */
uint32_t oversize_packet; /**< Receive Oversize Packet */
uint32_t fragments; /**< Receive Fragments */
uint32_t jabber; /**< Receive Jabber counter */
uint32_t overflow; /**< Receive Overflow counter */
} rdpa_emac_rx_stat_t;
/** Tx RMON counters.
* Underlying type for emac_tx_stat aggregate type.
*/
typedef struct
{
uint32_t byte; /**< Transmit Byte Counter */
uint32_t packet; /**< Transmit Packet Counter */
uint32_t frame_64; /**< Transmit 64 Byte Frame Counter */
uint32_t frame_65_127; /**< Transmit 65 to 127 Byte Frame Counter */
uint32_t frame_128_255; /**< Transmit 128 to 255 Byte Frame Counter */
uint32_t frame_256_511; /**< Transmit 256 to 511 Byte Frame Counter */
uint32_t frame_512_1023; /**< Transmit 512 to 1023 Byte Frame Counter */
uint32_t frame_1024_1518; /**< Transmit 1024 to 1518 Byte Frame Counter */
uint32_t frame_1519_mtu; /**< Transmit 1519 to MTU Frame Counter */
uint32_t fcs_error; /**< Transmit FCS Error */
uint32_t multicast_packet; /**< Transmit Multicast Packet */
uint32_t broadcast_packet; /**< Transmit Broadcast Packet */
uint32_t unicast_packet; /**< Transmit Unicast Packet */
uint32_t excessive_collision; /**< Transmit Excessive collision counter */
uint32_t late_collision; /**< Transmit Late collision counter */
uint32_t single_collision; /**< Transmit Single collision frame counter */
uint32_t multiple_collision;/**< Transmit Multiple collision frame counter */
uint32_t total_collision; /**< Transmit Total Collision Counter */
uint32_t pause_control_frame; /**< Transmit PAUSE Control Frame */
uint32_t deferral_packet; /**< Transmit Deferral Packet */
uint32_t excessive_deferral_packet; /**< Transmit Excessive Deferral Packet */
uint32_t jabber_frame; /**< Transmit Jabber Frame */
uint32_t control_frame; /**< Transmit Control Frame */
uint32_t oversize_frame; /**< Transmit Oversize Frame counter */
uint32_t undersize_frame; /**< Transmit Undersize Frame */
uint32_t fragments_frame; /**< Transmit Fragments Frame counter */
uint32_t error; /**< Transmission errors*/
uint32_t underrun; /**< Transmission underrun */
} rdpa_emac_tx_stat_t;
/** Emac statistics */
typedef struct
{
rdpa_emac_rx_stat_t rx; /**< Emac Receive Statistics */
rdpa_emac_tx_stat_t tx; /**< Emac Transmit Statistics */
} rdpa_emac_stat_t;
/** Ethernet address */
typedef struct {
uint8_t b[6]; /**< Address bytes */
} bdmf_mac_t;
#endif //47622
/******************************************************************************/
/* */
/* Types and values definitions */
/* */
/******************************************************************************/
typedef struct
{
int32_t rxFlowEnable;
int32_t txFlowEnable;
}S_MAC_HWAPI_FLOW_CTRL;
typedef enum
{
MAC_LPBK_NONE,
MAC_LPBK_LOCAL,
MAC_LPBK_REMOTE,
MAC_LPBK_BOTH
}MAC_LPBK;
#ifndef _BYTE_ORDER_LITTLE_ENDIAN_
typedef struct
{
uint32_t reserved:26;// Reserved bits must be written with 0. A read returns an unknown value.
uint32_t mac_link_stat:1;// Link status indication.Reset value is 0x0.
uint32_t mac_tx_pause:1;// 1: MAC Tx pause enabled. 0: MAC Tx pause disabled. Reset value is 0x1.
uint32_t mac_rx_pause:1;// 1: MAC Rx pause enabled. 0: MAC Rx pause disabled. Reset value is 0x1.
uint32_t mac_duplex:1;//1: Half duplex. 0: Full duplex. Reset value is 0x0.
uint32_t mac_speed:2;// 00: 10Mbps, 01: 100Mbps, 10: 1Gbps, 11: 2.5Gbps Reset value is 0x2.
}S_HWAPI_MAC_STATUS;
#else
typedef struct
{
uint32_t mac_speed:2;// 00: 10Mbps, 01: 100Mbps, 10: 1Gbps, 11: 2.5Gbps Reset value is 0x2.
uint32_t mac_duplex:1;//1: Half duplex. 0: Full duplex. Reset value is 0x0.
uint32_t mac_rx_pause:1;// 1: MAC Rx pause enabled. 0: MAC Rx pause disabled. Reset value is 0x1.
uint32_t mac_tx_pause:1;// 1: MAC Tx pause enabled. 0: MAC Tx pause disabled. Reset value is 0x1.
uint32_t mac_link_stat:1;// Link status indication.Reset value is 0x0.
uint32_t reserved:26;// Reserved bits must be written with 0. A read returns an unknown value.
}S_HWAPI_MAC_STATUS;
#endif
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_configuration */
/* */
/* Title: */
/* */
/* MAC Driver - get configuration */
/* */
/* Abstract: */
/* */
/* get the configuratin of a mac port ,note that current status of emac */
/* might be different than configuration when working in autoneg */
/* to get the current status use mac_hwapi_get_mac_status API */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* emac_cfg - structure holds the current configuration of the mac port */
/* */
/******************************************************************************/
void mac_hwapi_get_configuration(rdpa_emac emacNum,rdpa_emac_cfg_t *emac_cfg);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_configuration */
/* */
/* Title: */
/* */
/* MAC Driver - set configuration */
/* */
/* Abstract: */
/* */
/* set the configuratin of a mac port */
/* Input: */
/* */
/* emacNum - emac Port index */
/* emac_cfg - structure holds the current configuration of the mac port */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_configuration(rdpa_emac emacNum,rdpa_emac_cfg_t *emac_cfg);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_duplex */
/* */
/* Title: */
/* */
/* MAC Driver - get port duplex */
/* */
/* Abstract: */
/* */
/* get the dulplex of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* full_duples : 1 = full dulplex,0 = half_duplex */
/* */
/******************************************************************************/
void mac_hwapi_get_duplex(rdpa_emac emacNum,int32_t *full_duplex);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_duplex */
/* */
/* Title: */
/* */
/* MAC Driver - set port duplex */
/* */
/* Abstract: */
/* */
/* set the dulplex of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* full_duples : 1 = full dulplex,0 = half_duplex */
/* */
/******************************************************************************/
void mac_hwapi_set_duplex(rdpa_emac emacNum,int32_t full_duplex);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_speed */
/* */
/* Title: */
/* */
/* MAC Driver - get port speed rate */
/* */
/* Abstract: */
/* */
/* get the speed of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* rate - enum of the speed */
/******************************************************************************/
void mac_hwapi_get_speed(rdpa_emac emacNum,rdpa_emac_rate *rate);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_speed */
/* */
/* Title: */
/* */
/* MAC Driver - set port speed rate */
/* */
/* Abstract: */
/* */
/* set the speed of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* rate - enum of the speed */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_speed(rdpa_emac emacNum,rdpa_emac_rate rate);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_external_conf */
/* */
/* Title: */
/* */
/* MAC Driver - en/disable external speed configuration */
/* */
/* Abstract: */
/* */
/* set port speed external configuration */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* enable - boolean enable */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_external_conf(rdpa_emac emacNum, int enable);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_rxtx_enable */
/* */
/* Title: */
/* */
/* MAC Driver - set tx and rx enable */
/* */
/* Abstract: */
/* */
/* get tx and rx enable */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* rxtxEnable - boolean enable */
/******************************************************************************/
void mac_hwapi_get_rxtx_enable(rdpa_emac emacNum,int32_t *rxEnable,int32_t *txEnable);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_rxtx_enable */
/* */
/* Title: */
/* */
/* MAC Driver - set tx and rx enable */
/* */
/* Abstract: */
/* */
/* set tx and rx enable */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* rxtxEnable - boolean enable */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_rxtx_enable(rdpa_emac emacNum,int32_t rxEnable,int32_t txEnable);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_sw_reset */
/* */
/* Title: */
/* */
/* MAC Driver - get port software reset */
/* */
/* Abstract: */
/* */
/* get the sw reset bit of emac port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* swReset : 1 = reset,0 = not reset */
/* */
/******************************************************************************/
void mac_hwapi_get_sw_reset(rdpa_emac emacNum,int32_t *swReset);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_sw_reset */
/* */
/* Title: */
/* */
/* MAC Driver - set port software reset */
/* */
/* Abstract: */
/* */
/* set the sw reset bit of emac port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* swReset : 1 = reset,0 = not reset */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_sw_reset(rdpa_emac emacNum,int32_t swReset);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_tx_min_pkt_size */
/* */
/* Title: */
/* */
/* MAC Driver - get tx minimum packet size */
/* */
/* Abstract: */
/* */
/* Get the unimac configuration for minimum tx packet size */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* min_pkt_size : 14...125 */
/* */
/******************************************************************************/
void mac_hwapi_get_tx_min_pkt_size(rdpa_emac emacNum,int32_t *min_pkt_size);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_tx_min_pkt_size */
/* */
/* Title: */
/* */
/* MAC Driver - set tx minimum packet size */
/* */
/* Abstract: */
/* */
/* Set the unimac configuration for minimum tx packet size */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* min_pkt_size : 14...125 */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_tx_min_pkt_size(rdpa_emac emacNum,int32_t min_pkt_size);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_tx_max_frame_len */
/* */
/* Title: */
/* */
/* MAC Driver - get port TX MTU */
/* */
/* Abstract: */
/* */
/* get the port maximum transmit unit size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* maxTxFrameLen - size of frame in bytes */
/* */
/******************************************************************************/
void mac_hwapi_get_tx_max_frame_len(rdpa_emac emacNum,uint32_t *maxTxFrameLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_tx_max_frame_len */
/* */
/* Title: */
/* */
/* MAC Driver - set port TX MTU */
/* */
/* Abstract: */
/* */
/* set the port maximum transmit unit size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* maxTxFrameLen - size of frame in bytes */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_tx_max_frame_len(rdpa_emac emacNum,uint32_t maxTxFrameLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_rx_max_frame_len */
/* */
/* Title: */
/* */
/* MAC Driver - get port RX MTU */
/* */
/* Abstract: */
/* */
/* get the port maximum receive unit size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* maxRxFrameLen - size of current MRU */
/* */
/******************************************************************************/
void mac_hwapi_get_rx_max_frame_len(rdpa_emac emacNum,uint32_t *maxRxFrameLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_rx_max_frame_len */
/* */
/* Title: */
/* */
/* MAC Driver - set port RX MTU */
/* */
/* Abstract: */
/* */
/* set the port maximum receive unit size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* maxRxFrameLen - size of current MRU */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_rx_max_frame_len(rdpa_emac emacNum,uint32_t maxRxFrameLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_tx_igp_len */
/* */
/* Title: */
/* */
/* MAC Driver - set port inter frame gap */
/* */
/* Abstract: */
/* */
/* set the inter frame gap size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* txIpgLen - length in bytes */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_tx_igp_len(rdpa_emac emacNum,uint32_t txIpgLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_tx_igp_len */
/* */
/* Title: */
/* */
/* MAC Driver - get port inter frame gap */
/* */
/* Abstract: */
/* */
/* get the inter frame gap size in bytes */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* txIpgLen - length in bytes */
/* */
/******************************************************************************/
void mac_hwapi_get_tx_igp_len(rdpa_emac emacNum,uint32_t *txIpgLen );
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_mac_status */
/* */
/* Title: */
/* */
/* MAC Driver - set port status */
/* */
/* Abstract: */
/* */
/* set the status of mac */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* macStatus : */
/* */
/******************************************************************************/
void mac_hwapi_get_mac_status(rdpa_emac emacNum,S_HWAPI_MAC_STATUS *macStatus);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_flow_control */
/* */
/* Title: */
/* */
/* MAC Driver - get port flow control */
/* */
/* Abstract: */
/* */
/* get the flow control of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* flowControl - structure with parameters of tx and rx flow control */
/* */
/******************************************************************************/
void mac_hwapi_get_flow_control(rdpa_emac emacNum,S_MAC_HWAPI_FLOW_CTRL *flowControl);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_flow_control */
/* */
/* Title: */
/* */
/* MAC Driver - set port flow control */
/* */
/* Abstract: */
/* */
/* set the flow control of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* flowControl - structure with parameters of tx and rx flow control */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_flow_control(rdpa_emac emacNum,S_MAC_HWAPI_FLOW_CTRL *flowControl);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_pause_params */
/* */
/* Title: */
/* */
/* MAC Driver - set port flow control */
/* */
/* Abstract: */
/* */
/* set the flow control of a port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* flowControl - structure with parameters of tx and rx flow control */
/* */
/* Output: */
/* */
/* */
/******************************************************************************/
void mac_hwapi_set_pause_params(rdpa_emac emacNum,int32_t pauseCtrlEnable,uint32_t pauseTimer,uint32_t pauseQuanta);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_rx_counters */
/* */
/* Title: */
/* */
/* MAC Driver - get the rx counters of port */
/* */
/* Abstract: */
/* */
/* get the rx counters of port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* rxCounters : structure filled with counters */
/* */
/******************************************************************************/
void mac_hwapi_get_rx_counters(rdpa_emac emacNum,rdpa_emac_rx_stat_t *rxCounters);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_tx_counters */
/* */
/* Title: */
/* */
/* MAC Driver - get the tx counters of port */
/* */
/* Abstract: */
/* */
/* get the tx counters of port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* txCounters : structure filled with counters */
/* */
/******************************************************************************/
void mac_hwapi_get_tx_counters(rdpa_emac emacNum,rdpa_emac_tx_stat_t *txCounters);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_init_emac */
/* */
/* Title: */
/* */
/* MAC Driver - init the emac to well known state */
/* */
/* Abstract: */
/* */
/* initialized the emac port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_init_emac(rdpa_emac emacNum);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_loopback */
/* */
/* Title: */
/* */
/* MAC Driver - init the emac to well known state */
/* */
/* Abstract: */
/* */
/* initialized the emac port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_get_loopback(rdpa_emac emacNum,MAC_LPBK *loopback);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_get_loopback */
/* */
/* Title: */
/* */
/* MAC Driver - init the emac to well known state */
/* */
/* Abstract: */
/* */
/* initialized the emac port */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_loopback(rdpa_emac emacNum,MAC_LPBK loopback);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_modify_flow_control_pause_pkt_addr */
/* */
/* Title: */
/* */
/* MAC Driver - Modify the Flow Control pause pkt source address */
/* */
/* Abstract: */
/* */
/* This function modifies the flow control pause pkt source address */
/* */
/* Input: */
/* */
/* emacNum - EMAC id (0-5) */
/* */
/* mac - Flow Control mac address */
/* */
/* Output: N/A */
/* */
/******************************************************************************/
void mac_hwapi_modify_flow_control_pause_pkt_addr ( rdpa_emac emacNum,
bdmf_mac_t mac);
void mac_hwapi_set_unimac_cfg(rdpa_emac emacNum, int32_t enabled);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_backpressure_ext */
/* */
/* Title: */
/* */
/* MAC Driver - set/reset backpressure to external switch */
/* */
/* Abstract: */
/* */
/* set/reset backpressure to external switch */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* enable - boolean enable */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_backpressure_ext(rdpa_emac emacNum, int32_t enable);
/******************************************************************************/
/* */
/* Name: */
/* */
/* mac_hwapi_set_eee */
/* */
/* Title: */
/* */
/* MAC Driver - set eee configuration */
/* */
/* Abstract: */
/* */
/* set eee configuration */
/* */
/* Input: */
/* */
/* emacNum - emac Port index */
/* enable - boolean enable */
/* */
/* Output: */
/* */
/******************************************************************************/
void mac_hwapi_set_eee(rdpa_emac emacNum, int32_t enable);
#endif
|