summaryrefslogtreecommitdiff
path: root/arch/arm/plat-mxc/include/mach/fsl_l2_switch.h
blob: 8ded0d65902371be30922a6f4e5a7e17e84023fc (plain)
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
/*
 *   Copyright 2010-2012 Freescale Semiconductor, Inc
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or (at
 *   your option) any later version.
 *
 */

#ifndef FSL_L2_SWITCH_H
#define	FSL_L2_SWITCH_H

/* The Switch stores dest/src/type, data, and checksum for receive packets. */
#define PKT_MAXBUF_SIZE         1518
#define PKT_MINBUF_SIZE         64
#define PKT_MAXBLR_SIZE         1520

/*
 * The 5441x RX control register also contains maximum frame
 * size bits.
 */
#define OPT_FRAME_SIZE  (PKT_MAXBUF_SIZE << 16)

/*
 * Some hardware gets it MAC address out of local flash memory.
 * if this is non-zero then assume it is the address to get MAC from.
 */
#define FEC_FLASHMAC    0

/* The number of Tx and Rx buffers.  These are allocated from the page
 * pool.  The code may assume these are power of two, so it it best
 * to keep them that size.
 * We don't need to allocate pages for the transmitter.  We just use
 * the skbuffer directly.
 */
#ifdef CONFIG_SWITCH_DMA_USE_SRAM
#define SWITCH_ENET_RX_PAGES       6
#else
#define SWITCH_ENET_RX_PAGES       8
#endif

#define SWITCH_ENET_RX_FRSIZE      2048
#define SWITCH_ENET_RX_FRPPG       (PAGE_SIZE / SWITCH_ENET_RX_FRSIZE)
#define RX_RING_SIZE            (SWITCH_ENET_RX_FRPPG * SWITCH_ENET_RX_PAGES)
#define SWITCH_ENET_TX_FRSIZE      2048
#define SWITCH_ENET_TX_FRPPG       (PAGE_SIZE / SWITCH_ENET_TX_FRSIZE)

#ifdef CONFIG_SWITCH_DMA_USE_SRAM
#define TX_RING_SIZE            8      /* Must be power of two */
#define TX_RING_MOD_MASK        7      /*   for this to work */
#else
#define TX_RING_SIZE            16      /* Must be power of two */
#define TX_RING_MOD_MASK        15      /*   for this to work */
#endif

#define SWITCH_EPORT_NUMBER	2

#if (((RX_RING_SIZE + TX_RING_SIZE) * 8) > PAGE_SIZE)
#error "L2SWITCH: descriptor ring size constants too large"
#endif

/* memory-mapped register offset */
#define	FEC_ESW_REVISION	0x00
#define	FEC_ESW_SCRATCH		0x04
#define	FEC_ESW_PER		0x08

#define	FEC_ESW_VLANV	0x10
#define	FEC_ESW_DBCR	0x14
#define	FEC_ESW_DMCR	0x18
#define	FEC_ESW_BKLR	0x1C
#define	FEC_ESW_BMPC	0x20
#define	FEC_ESW_MODE	0x24
#define	FEC_ESW_VIMSEL	0x28
#define	FEC_ESW_VOMSEL	0x2C
#define	FEC_ESW_VIMEN	0x30
#define	FEC_ESW_VID	0x34

#define	FEC_ESW_MCR	0x40
#define	FEC_ESW_EGMAP	0x44
#define	FEC_ESW_INGMAP	0x48
#define	FEC_ESW_INGSAL	0x4C
#define	FEC_ESW_INGSAH	0x50
#define	FEC_ESW_INGDAL	0x54
#define	FEC_ESW_INGDAH	0x58
#define	FEC_ESW_ENGSAL	0x5C
#define	FEC_ESW_ENGSAH	0x60
#define	FEC_ESW_ENGDAL	0x64
#define	FEC_ESW_ENGDAH	0x68
#define	FEC_ESW_MCVAL	0x6C

#define	FEC_ESW_MMSR	0x80
#define	FEC_ESW_LMT	0x84
#define	FEC_ESW_LFC	0x88
#define	FEC_ESW_PCSR	0x8C
#define	FEC_ESW_IOSR	0x90
#define	FEC_ESW_QWT	0x94

#define	FEC_ESW_P0BCT	0x9C

#define	FEC_ESW_P0FFEN		0xBC
#define	FEC_ESW_PSNP(n)		(0xC0 + 4 * n)
#define	FEC_ESW_IPSNP(n)	(0xE0 + 4 * n)
#define	FEC_ESW_PVRES(n)	(0x100 + 4 * n)

#define	FEC_ESW_IPRES	0x140

/*port0-port2 Priority Configuration  0xFC0D_C180-C188*/
#define	FEC_ESW_PRES(n)	(0x180 + n * 4)

/*port0-port2 VLAN ID 0xFC0D_C200-C208*/
#define	FEC_ESW_PID(n)	(0x200 + 4 * n)

/*port0-port2 VLAN domain resolution entry 0xFC0D_C280-C2FC*/
#define	FEC_ESW_VRES(n)	(0x280 + n * 4)

#define	FEC_ESW_DISCN	0x300
#define	FEC_ESW_DISCB	0x304
#define	FEC_ESW_NDISCN	0x308
#define	FEC_ESW_NDISCB	0x30C
/*per port statistics 0xFC0DC310_C33C*/

#define FEC_ESW_POQC(n)		(0x310 + n * 16)
#define FEC_ESW_PMVID(n)	(0x310 + n * 16 + 0x04)
#define FEC_ESW_PMVTAG(n)	(0x310 + n * 16 + 0x08)
#define FEC_ESW_PBL(n)		(0x310 + n * 16 + 0x0C)

#define	FEC_ESW_ISR	0x400 /* Interrupt event reg */
#define	FEC_ESW_IMR	0x404 /* Interrupt mask reg */
#define	FEC_ESW_RDSR	0x408 /* Receive descriptor ring */
#define	FEC_ESW_TDSR	0x40C /* Transmit descriptor ring */
#define	FEC_ESW_MRBR	0x410 /* Maximum receive buff size */
#define	FEC_ESW_RDAR	0x414 /* Receive descriptor active*/
#define	FEC_ESW_TDAR	0x418 /* Transmit descriptor active*/

#define	FEC_ESW_LREC0	0x500
#define	FEC_ESW_LREC1	0x504
#define	FEC_ESW_LSR	0x508

#include <linux/phy.h>
struct switch_platform_data {
	phy_interface_t phy;
	unsigned char mac[ETH_ALEN];
};

typedef struct l2switch_output_queue_status {
	unsigned long ESW_MMSR;
	unsigned long ESW_LMT;
	unsigned long ESW_LFC;
	unsigned long ESW_PCSR;
	unsigned long ESW_IOSR;
	unsigned long ESW_QWT;
	unsigned long esw_reserved;
	unsigned long ESW_P0BCT;
} esw_output_queue_status;

typedef struct l2switch_statistics_status {
	/*
	 * Total number of incoming frames processed
	 * but discarded in switch
	 */
	unsigned long ESW_DISCN;
	/*Sum of bytes of frames counted in ESW_DISCN*/
	unsigned long ESW_DISCB;
	/*
	 * Total number of incoming frames processed
	 * but not discarded in switch
	 */
	unsigned long ESW_NDISCN;
	/*Sum of bytes of frames counted in ESW_NDISCN*/
	unsigned long ESW_NDISCB;
} esw_statistics_status;

typedef struct l2switch_port_statistics_status {
	/*outgoing frames discarded due to transmit queue congestion*/
	unsigned long FSL_ESW_POQC;
	/*incoming frames discarded due to VLAN domain mismatch*/
	unsigned long FSL_ESW_PMVID;
	/*incoming frames discarded due to untagged discard*/
	unsigned long FSL_ESW_PMVTAG;
	/*incoming frames discarded due port is in blocking state*/
	unsigned long FSL_ESW_PBL;
} esw_port_statistics_status;

typedef struct _64bTableEntry {
	unsigned int lo;  /* lower 32 bits */
	unsigned int hi;  /* upper 32 bits */
} AddrTable64bEntry;

typedef struct l2switchaddrtable {
	AddrTable64bEntry  eswTable64bEntry[2048];
} eswAddrTable_t;

/*unsigned long FSL_ESW_LOOKUP_MEM;*/
#define FSL_FEC_MMFR0	(0x40)
#define FSL_FEC_MSCR0	(0x44)
#define FSL_FEC_MSCR1	(0x1044)
#define FSL_FEC_RCR0	(0x84)
#define FSL_FEC_RCR1	(0x1084)
#define FSL_FEC_TCR0	(0xc4)
#define FSL_FEC_TCR1	(0x10c4)
#define FSL_FEC_ECR0	(0x24)
#define FSL_FEC_ECR1	(0x1024)
#define FSL_FEC_EIR0	(0x04)
#define FSL_FEC_EIR1	(0x1004)
#define FSL_FEC_EIMR0   (0x08)
#define FSL_FEC_EIMR1   (0x1008)
#define FSL_FEC_PALR0	(0x0e4)
#define FSL_FEC_PAUR0	(0x0e8)
#define FSL_FEC_PALR1	(0x10e4)
#define FSL_FEC_PAUR1	(0x10e8)
#define FSL_FEC_X_WMRK0	(0x0144)
#define FSL_FEC_X_WMRK1	(0x1144)

#define FSL_FEC_RCR_MII_MODE                 (0x00000004)
#define FSL_FEC_RCR_PROM                     (0x00000008)
#define FSL_FEC_RCR_RMII_MODE                (0x00000100)
#define FSL_FEC_RCR_MAX_FL(x)                (((x) & 0x00003FFF) << 16)
#define FSL_FEC_RCR_CRC_FWD                  (0x00004000)

#define FSL_FEC_TCR_FDEN                     (0x00000004)

#define FSL_FEC_ECR_ETHER_EN                 (0x00000002)
#define FSL_FEC_ECR_ENA_1588                 (0x00000010)

/*ioctl commands*/
#define ESW_SET_LEARNING_CONF               0x9101
#define ESW_GET_LEARNING_CONF               0x9201
#define ESW_SET_BLOCKING_CONF               0x9102
#define ESW_GET_BLOCKING_CONF               0x9202
#define ESW_SET_MULTICAST_CONF              0x9103
#define ESW_GET_MULTICAST_CONF              0x9203
#define ESW_SET_BROADCAST_CONF              0x9104
#define ESW_GET_BROADCAST_CONF              0x9204
#define ESW_SET_PORTENABLE_CONF             0x9105
#define ESW_GET_PORTENABLE_CONF             0x9205
#define ESW_SET_IP_SNOOP_CONF               0x9106
#define ESW_GET_IP_SNOOP_CONF               0x9206
#define ESW_SET_PORT_SNOOP_CONF             0x9107
#define ESW_GET_PORT_SNOOP_CONF             0x9207
#define ESW_SET_PORT_MIRROR_CONF	    0x9108
#define ESW_GET_PORT_MIRROR_CONF            0x9208
#define ESW_SET_PIRORITY_VLAN               0x9109
#define ESW_GET_PIRORITY_VLAN               0x9209
#define ESW_SET_PIRORITY_IP                 0x910A
#define ESW_GET_PIRORITY_IP                 0x920A
#define ESW_SET_PIRORITY_MAC                0x910B
#define ESW_GET_PIRORITY_MAC                0x920B
#define ESW_SET_PIRORITY_DEFAULT            0x910C
#define ESW_GET_PIRORITY_DEFAULT            0x920C
#define ESW_SET_P0_FORCED_FORWARD           0x910D
#define ESW_GET_P0_FORCED_FORWARD           0x920D
#define ESW_SET_SWITCH_MODE                 0x910E
#define ESW_GET_SWITCH_MODE                 0x920E
#define ESW_SET_BRIDGE_CONFIG               0x910F
#define ESW_GET_BRIDGE_CONFIG               0x920F
#define ESW_SET_VLAN_OUTPUT_PROCESS         0x9110
#define ESW_GET_VLAN_OUTPUT_PROCESS         0x9210
#define ESW_SET_VLAN_INPUT_PROCESS          0x9111
#define ESW_GET_VLAN_INPUT_PROCESS          0x9211
#define ESW_SET_VLAN_DOMAIN_VERIFICATION    0x9112
#define ESW_GET_VLAN_DOMAIN_VERIFICATION    0x9212
#define ESW_SET_VLAN_RESOLUTION_TABLE       0x9113
#define ESW_GET_VLAN_RESOLUTION_TABLE       0x9213
#define ESW_GET_ENTRY_PORT_NUMBER	    0x9214
#define ESW_GET_LOOKUP_TABLE		    0x9215
#define ESW_GET_PORT_STATUS                 0x9216
#define ESW_SET_VLAN_ID			    0x9114
#define ESW_SET_VLAN_ID_CLEARED		    0x9115
#define ESW_SET_PORT_IN_VLAN_ID             0x9116
#define ESW_SET_PORT_ENTRY_EMPTY            0x9117
#define ESW_SET_OTHER_PORT_ENTRY_EMPTY      0x9118
#define ESW_GET_PORT_ALL_STATUS		    0x9217
#define ESW_SET_PORT_MIRROR_CONF_PORT_MATCH 0x9119
#define ESW_SET_PORT_MIRROR_CONF_ADDR_MATCH 0x911A

#define ESW_GET_STATISTICS_STATUS           0x9221
#define ESW_SET_OUTPUT_QUEUE_MEMORY         0x9125
#define ESW_GET_OUTPUT_QUEUE_STATUS         0x9225
#define ESW_UPDATE_STATIC_MACTABLE          0x9226
#define ESW_CLEAR_ALL_MACTABLE              0x9227
#define ESW_GET_USER_PID                    0x9228

typedef struct _eswIOCTL_PORT_CONF {
	int port;
	int enable;
} eswIoctlPortConfig;

typedef struct _eswIOCTL_PORT_EN_CONF {
	int port;
	int tx_enable;
	int rx_enable;
} eswIoctlPortEnableConfig;

typedef struct _eswIOCTL_IP_SNOOP_CONF {
	int mode;
	unsigned long ip_header_protocol;
} eswIoctlIpsnoopConfig;

typedef struct _eswIOCTL_P0_FORCED_FORWARD_CONF {
	int port1;
	int port2;
	int enable;
} eswIoctlP0ForcedForwardConfig;

typedef struct _eswIOCTL_PORT_SNOOP_CONF {
	int mode;
	unsigned short compare_port;
	int compare_num;
} eswIoctlPortsnoopConfig;

typedef struct _eswIOCTL_PORT_Mirror_CONF {
	int mirror_port;
	int port;
	int egress_en;
	int ingress_en;
	int egress_mac_src_en;
	int egress_mac_des_en;
	int ingress_mac_src_en;
	int ingress_mac_des_en;
	unsigned char *src_mac;
	unsigned char *des_mac;
	int mirror_enable;
} eswIoctlPortMirrorConfig;

struct eswIoctlMirrorCfgPortMatch {
	int mirror_port;
	int port_match_en;
	int port;
};

struct eswIoctlMirrorCfgAddrMatch {
	int mirror_port;
	int addr_match_en;
	unsigned char *mac_addr;
};

typedef struct _eswIOCTL_PRIORITY_VLAN_CONF {
	int port;
	int func_enable;
	int vlan_pri_table_num;
	int vlan_pri_table_value;
} eswIoctlPriorityVlanConfig;

typedef struct _eswIOCTL_PRIORITY_IP_CONF {
	int port;
	int func_enable;
	int ipv4_en;
	int ip_priority_num;
	int ip_priority_value;
} eswIoctlPriorityIPConfig;

typedef struct _eswIOCTL_PRIORITY_MAC_CONF {
	int port;
} eswIoctlPriorityMacConfig;

typedef struct _eswIOCTL_PRIORITY_DEFAULT_CONF {
	int port;
	unsigned char priority_value;
} eswIoctlPriorityDefaultConfig;

typedef struct _eswIOCTL_IRQ_STATUS {
	unsigned long isr;
	unsigned long imr;
	unsigned long rx_buf_pointer;
	unsigned long tx_buf_pointer;
	unsigned long rx_max_size;
	unsigned long rx_buf_active;
	unsigned long tx_buf_active;
} eswIoctlIrqStatus;

typedef struct _eswIOCTL_PORT_Mirror_STATUS {
	unsigned long ESW_MCR;
	unsigned long ESW_EGMAP;
	unsigned long ESW_INGMAP;
	unsigned long ESW_INGSAL;
	unsigned long ESW_INGSAH;
	unsigned long ESW_INGDAL;
	unsigned long ESW_INGDAH;
	unsigned long ESW_ENGSAL;
	unsigned long ESW_ENGSAH;
	unsigned long ESW_ENGDAL;
	unsigned long ESW_ENGDAH;
	unsigned long ESW_MCVAL;
} eswIoctlPortMirrorStatus;

typedef struct _eswIOCTL_VLAN_OUTPUT_CONF {
	int port;
	int mode;
} eswIoctlVlanOutputConfig;

typedef struct _eswIOCTL_VLAN_INPUT_CONF {
	int port;
	int mode;
	unsigned short port_vlanid;
} eswIoctlVlanInputConfig;

typedef struct _eswIOCTL_VLAN_DOMAIN_VERIFY_CONF {
	int port;
	int vlan_domain_verify_en;
	int vlan_discard_unknown_en;
} eswIoctlVlanVerificationConfig;

typedef struct _eswIOCTL_VLAN_RESOULATION_TABLE {
	unsigned short port_vlanid;
	unsigned char vlan_domain_port;
	unsigned char vlan_domain_num;
} eswIoctlVlanResoultionTable;

struct eswVlanTableItem {
	eswIoctlVlanResoultionTable table[32];
	unsigned char valid_num;
};

typedef struct _eswIOCTL_VLAN_INPUT_STATUS {
	unsigned long ESW_VLANV;
	unsigned long ESW_PID[3];
	unsigned long ESW_VIMSEL;
	unsigned long ESW_VIMEN;
	unsigned long ESW_VRES[32];
} eswIoctlVlanInputStatus;

typedef struct _eswIOCTL_Static_MACTable {
	unsigned char *mac_addr;
	int port;
	int priority;
} eswIoctlUpdateStaticMACtable;

typedef struct _eswIOCTL_OUTPUT_QUEUE {
	int fun_num;
	esw_output_queue_status  sOutputQueue;
} eswIoctlOutputQueue;

#define LEARNING_AGING_TIMER (10 * HZ)
/*
 * Info received from Hardware Learning FIFO,
 * holding MAC address and corresponding Hash Value and
 * port number where the frame was received (disassembled).
 */
typedef struct _eswPortInfo {
	/* MAC lower 32 bits (first byte is 7:0). */
	unsigned int   maclo;
	/* MAC upper 16 bits (47:32). */
	unsigned int   machi;
	/* the hash value for this MAC address. */
	unsigned int   hash;
	/* the port number this MAC address is associated with. */
	unsigned int   port;
} eswPortInfo;

/*
 * Hardware Look up Address Table 64-bit element.
 */
typedef struct _64bitTableEntry {
	unsigned int lo;  /* lower 32 bits */
	unsigned int hi;  /* upper 32 bits */
} eswTable64bitEntry;

struct eswAddrTableEntryExample {
	/* the entry number */
	unsigned short entrynum;
	/* mac address array */
	unsigned char mac_addr[6];
	unsigned char item1;
	unsigned short item2;
};
/*
 *	Define the buffer descriptor structure.
 */
typedef struct bufdesc {
	unsigned short	cbd_datlen;		/* Data length */
	unsigned short	cbd_sc;			/* Control and status info */
	unsigned long	cbd_bufaddr;		/* Buffer address */
} cbd_t;


typedef struct bufdesc_rx {
	unsigned short	cbd_datlen;		/* Data length */
	unsigned short	cbd_sc;			/* Control and status info */
	unsigned long	cbd_bufaddr;		/* Buffer address */
} cbd_t_r;

/* Forward declarations of some structures to support different PHYs
 */
typedef struct {
	uint mii_data;
	void (*funct)(uint mii_reg, struct net_device *dev);
} phy_cmd_t;

typedef struct {
	uint id;
	char *name;

	const phy_cmd_t *config;
	const phy_cmd_t *startup;
	const phy_cmd_t *ack_int;
	const phy_cmd_t *shutdown;
} phy_info_t;

struct port_status {
	/* 1: link is up, 0: link is down */
	int port1_link_status;
	int port2_link_status;
	/* 1: blocking, 0: unblocking */
	int port0_block_status;
	int port1_block_status;
	int port2_block_status;
};

struct port_all_status {
	/* 1: link is up, 0: link is down */
	int link_status;
	/* 1: blocking, 0: unblocking */
	int block_status;
	/* 1: unlearning, 0: learning */
	int learn_status;
	/* vlan domain verify 1: enable 0: disable */
	int vlan_verify;
	/* discard unknow 1: enable 0: disable */
	int discard_unknown;
	/* multicast resolution 1: enable 0: disable */
	int multi_reso;
	/* broadcast resolution 1: enable 0: disalbe */
	int broad_reso;
	/* transmit 1: enable 0: disable */
	int ftransmit;
	/* receive 1: enable 0: disable */
	int freceive;
};

/* The switch buffer descriptors track the ring buffers.  The rx_bd_base and
 * tx_bd_base always point to the base of the buffer descriptors.  The
 * cur_rx and cur_tx point to the currently available buffer.
 * The dirty_tx tracks the current buffer that is being sent by the
 * controller.  The cur_tx and dirty_tx are equal under both completely
 * empty and completely full conditions.  The empty/ready indicator in
 * the buffer descriptor determines the actual condition.
 */
struct switch_enet_private {
	/* Hardware registers of the switch device */
	void __iomem *membase;
	void __iomem *macbase; /* MAC address lookup table */
	void __iomem *enetbase;
	struct clk *clk;
	eswAddrTable_t  *hwentry;

	struct net_device *netdev;
	struct platform_device *pdev;
	/* The saved address of a sent-in-place packet/buffer, for skfree(). */
	unsigned char *tx_bounce[TX_RING_SIZE];
	struct  sk_buff *tx_skbuff[TX_RING_SIZE];
	struct	sk_buff *rx_skbuff[RX_RING_SIZE];
	ushort  skb_cur;
	ushort  skb_dirty;

	/* CPM dual port RAM relative addresses */
	dma_addr_t	bd_dma;

	cbd_t   *rx_bd_base;            /* Address of Rx and Tx buffers. */
	cbd_t   *tx_bd_base;
	cbd_t   *cur_rx, *cur_tx;               /* The next free ring entry */
	cbd_t   *dirty_tx;      /* The ring entries to be free()ed. */
	uint    tx_full;
	/* hold while accessing the HW like ringbuffer for tx/rx but not MAC */
	spinlock_t hw_lock;

	/* hold while accessing the mii_list_t() elements */
	spinlock_t mii_lock;
	struct mii_bus *mdio_bus;
	struct phy_device *phydev[SWITCH_EPORT_NUMBER];

	uint    phy_id;
	uint    phy_id_done;
	uint    phy_status;
	uint    phy_speed;
	uint	mii_timeout;
	struct	completion mdio_done;

	phy_info_t const        *phy;
	struct work_struct phy_task;

	uint    sequence_done;
	uint    mii_phy_task_queued;

	uint    phy_addr;

	int     index;
	int     opened;
	int     full_duplex;
	int     msg_enable;
	int     phy1_link;
	int     phy1_old_link;
	int     phy1_duplex;
	int     phy1_speed;

	int     phy2_link;
	int     phy2_old_link;
	int     phy2_duplex;
	int     phy2_speed;
	/* Statistics */
	/* when a new element deleted a element with in
	 * a block due to lack of space */
	int atBlockOverflows;
	/* Peak number of valid entries in the address table */
	int atMaxEntries;
	/* current number of valid entries in the address table */
	int atCurrEntries;
	/* maximum entries within a block found
	 * (updated within ageing)*/
	int atMaxEntriesPerBlock;

	/* ageing function */
	/* maximum age allowed for an entry */
	int ageMax;
	/* last LUT entry to block that was
	 * inspected by the Ageing task*/
	int ageLutIdx;
	/* last element within block inspected by the Ageing task */
	int ageBlockElemIdx;
	/* complete table has been processed by ageing process */
	int ageCompleted;
	/* delay setting */
	int ageDelay;
	/* current delay Counter */
	int  ageDelayCnt;

	/* timer related */
	/* current time (for timestamping) */
	int currTime;
	/* flag set by timer when currTime changed
	 * and cleared by serving function*/
	int timeChanged;

	/* Timer for Aging */
	struct timer_list       timer_aging;
	int learning_irqhandle_enable;
};

struct switch_platform_private {
	unsigned long           quirks;
	int                     num_slots;	/* Slots on controller */
	struct switch_enet_private *fep_host[0];	/* Pointers to hosts */
};

/* Recieve is empty */
#define BD_SC_EMPTY     ((unsigned short)0x8000)
/* Transmit is ready */
#define BD_SC_READY     ((unsigned short)0x8000)
/* Last buffer descriptor */
#define BD_SC_WRAP      ((unsigned short)0x2000)
/* Interrupt on change */
#define BD_SC_INTRPT    ((unsigned short)0x1000)
/* Continous mode */
#define BD_SC_CM        ((unsigned short)0x0200)
/* Rec'd too many idles */
#define BD_SC_ID        ((unsigned short)0x0100)
/* xmt preamble */
#define BD_SC_P         ((unsigned short)0x0100)
/* Break received */
#define BD_SC_BR        ((unsigned short)0x0020)
/* Framing error */
#define BD_SC_FR        ((unsigned short)0x0010)
/* Parity error */
#define BD_SC_PR        ((unsigned short)0x0008)
/* Overrun */
#define BD_SC_OV        ((unsigned short)0x0002)
#define BD_SC_CD        ((unsigned short)0x0001)

/* Buffer descriptor control/status used by Ethernet receive.*/
#define BD_ENET_RX_EMPTY        ((unsigned short)0x8000)
#define BD_ENET_RX_WRAP         ((unsigned short)0x2000)
#define BD_ENET_RX_INTR         ((unsigned short)0x1000)
#define BD_ENET_RX_LAST         ((unsigned short)0x0800)
#define BD_ENET_RX_FIRST        ((unsigned short)0x0400)
#define BD_ENET_RX_MISS         ((unsigned short)0x0100)
#define BD_ENET_RX_LG           ((unsigned short)0x0020)
#define BD_ENET_RX_NO           ((unsigned short)0x0010)
#define BD_ENET_RX_SH           ((unsigned short)0x0008)
#define BD_ENET_RX_CR           ((unsigned short)0x0004)
#define BD_ENET_RX_OV           ((unsigned short)0x0002)
#define BD_ENET_RX_CL           ((unsigned short)0x0001)
/* All status bits */
#define BD_ENET_RX_STATS        ((unsigned short)0x013f)

/* Buffer descriptor control/status used by Ethernet transmit.*/
#define BD_ENET_TX_READY        ((unsigned short)0x8000)
#define BD_ENET_TX_PAD          ((unsigned short)0x4000)
#define BD_ENET_TX_WRAP         ((unsigned short)0x2000)
#define BD_ENET_TX_INTR         ((unsigned short)0x1000)
#define BD_ENET_TX_LAST         ((unsigned short)0x0800)
#define BD_ENET_TX_TC           ((unsigned short)0x0400)
#define BD_ENET_TX_DEF          ((unsigned short)0x0200)
#define BD_ENET_TX_HB           ((unsigned short)0x0100)
#define BD_ENET_TX_LC           ((unsigned short)0x0080)
#define BD_ENET_TX_RL           ((unsigned short)0x0040)
#define BD_ENET_TX_RCMASK       ((unsigned short)0x003c)
#define BD_ENET_TX_UN           ((unsigned short)0x0002)
#define BD_ENET_TX_CSL          ((unsigned short)0x0001)
/* All status bits */
#define BD_ENET_TX_STATS        ((unsigned short)0x03ff)

/*Copy from validation code */
#define RX_BUFFER_SIZE 1520
#define TX_BUFFER_SIZE 1520
#define NUM_RXBDS 20
#define NUM_TXBDS 20

#define TX_BD_R                 0x8000
#define TX_BD_TO1               0x4000
#define TX_BD_W                 0x2000
#define TX_BD_TO2               0x1000
#define TX_BD_L                 0x0800
#define TX_BD_TC                0x0400

#define TX_BD_INT		0x40000000
#define TX_BD_TS		0x20000000
#define TX_BD_PINS		0x10000000
#define TX_BD_IINS		0x08000000
#define TX_BD_TXE		0x00008000
#define TX_BD_UE		0x00002000
#define TX_BD_EE		0x00001000
#define TX_BD_FE		0x00000800
#define TX_BD_LCE		0x00000400
#define TX_BD_OE		0x00000200
#define TX_BD_TSE		0x00000100
#define TX_BD_BDU		0x80000000

#define RX_BD_E                 0x8000
#define RX_BD_R01               0x4000
#define RX_BD_W                 0x2000
#define RX_BD_R02               0x1000
#define RX_BD_L                 0x0800
#define RX_BD_M                 0x0100
#define RX_BD_BC                0x0080
#define RX_BD_MC                0x0040
#define RX_BD_LG                0x0020
#define RX_BD_NO                0x0010
#define RX_BD_CR                0x0004
#define RX_BD_OV                0x0002
#define RX_BD_TR                0x0001

#define RX_BD_ME               0x80000000
#define RX_BD_PE               0x04000000
#define RX_BD_CE               0x02000000
#define RX_BD_UC               0x01000000
#define RX_BD_INT              0x00800000
#define RX_BD_ICE              0x00000020
#define RX_BD_PCR              0x00000010
#define RX_BD_VLAN             0x00000004
#define RX_BD_IPV6             0x00000002
#define RX_BD_FRAG             0x00000001
#define RX_BD_BDU              0x80000000

/* Address Table size in bytes(2048 64bit entry ) */
#define ESW_ATABLE_MEM_SIZE         (2048*8)
/* How many 64-bit elements fit in the address table */
#define ESW_ATABLE_MEM_NUM_ENTRIES  (2048)
/* Address Table Maximum number of entries in each Slot */
#define ATABLE_ENTRY_PER_SLOT 8
/* log2(ATABLE_ENTRY_PER_SLOT)*/
#define ATABLE_ENTRY_PER_SLOT_bits 3
/* entry size in byte */
#define ATABLE_ENTRY_SIZE     8
/*  slot size in byte */
#define ATABLE_SLOT_SIZE    (ATABLE_ENTRY_PER_SLOT * ATABLE_ENTRY_SIZE)
/* width of timestamp variable (bits) within address table entry */
#define AT_DENTRY_TIMESTAMP_WIDTH    10
/* number of bits for port number storage */
#define AT_DENTRY_PORT_WIDTH     4
/* number of bits for port bitmask number storage */
#define AT_SENTRY_PORT_WIDTH     7
/* address table static entry port bitmask start address bit */
#define AT_SENTRY_PORTMASK_shift     21
/* number of bits for port priority storage */
#define AT_SENTRY_PRIO_WIDTH	7
/* address table static entry priority start address bit */
#define AT_SENTRY_PRIO_shift     18
/* address table dynamic entry port start address bit */
#define AT_DENTRY_PORT_shift     28
/* address table dynamic entry timestamp start address bit */
#define AT_DENTRY_TIME_shift     18
/* address table entry record type start address bit */
#define AT_ENTRY_TYPE_shift     17
/* address table entry record type bit: 1 static, 0 dynamic */
#define AT_ENTRY_TYPE_STATIC      1
#define AT_ENTRY_TYPE_DYNAMIC     0
/* address table entry record valid start address bit */
#define AT_ENTRY_VALID_shift     16
#define AT_ENTRY_RECORD_VALID     1

#define AT_EXTRACT_VALID(x)   \
	((x >> AT_ENTRY_VALID_shift) & AT_ENTRY_RECORD_VALID)

#define AT_EXTRACT_PORTMASK(x)  \
	((x >> AT_SENTRY_PORTMASK_shift) & AT_SENTRY_PORT_WIDTH)

#define AT_EXTRACT_PRIO(x)  \
	((x >> AT_SENTRY_PRIO_shift) & AT_SENTRY_PRIO_WIDTH)

/* return block corresponding to the 8 bit hash value calculated */
#define GET_BLOCK_PTR(hash)  (hash << 3)
#define AT_EXTRACT_TIMESTAMP(x) \
	((x >> AT_DENTRY_TIME_shift) & ((1 << AT_DENTRY_TIMESTAMP_WIDTH)-1))
#define AT_EXTRACT_PORT(x)   \
	((x >> AT_DENTRY_PORT_shift) & ((1 << AT_DENTRY_PORT_WIDTH)-1))
#define AT_SEXTRACT_PORT(x)  \
	((~((x >> AT_SENTRY_PORTMASK_shift) &  \
	   ((1 << AT_DENTRY_PORT_WIDTH)-1))) >> 1)
#define TIMEDELTA(newtime, oldtime) \
	 ((newtime - oldtime) & \
	  ((1 << AT_DENTRY_TIMESTAMP_WIDTH)-1))

#define AT_EXTRACT_IP_PROTOCOL(x) ((x >> 8) & 0xff)
#define AT_EXTRACT_TCP_UDP_PORT(x) ((x >> 16) & 0xffff)

/* increment time value respecting modulo. */
#define TIMEINCREMENT(time) \
	((time) = ((time)+1) & ((1 << AT_DENTRY_TIMESTAMP_WIDTH)-1))

/* Bit definitions and macros for FSL_ESW_REVISION */
#define FSL_ESW_REVISION_CORE_REVISION(x)      (((x)&0x0000FFFF)<<0)
#define FSL_ESW_REVISION_CUSTOMER_REVISION(x)  (((x)&0x0000FFFF)<<16)

/* Bit definitions and macros for FSL_ESW_PER */
#define FSL_ESW_PER_TE0                        (0x00000001)
#define FSL_ESW_PER_TE1                        (0x00000002)
#define FSL_ESW_PER_TE2                        (0x00000004)
#define FSL_ESW_PER_RE0                        (0x00010000)
#define FSL_ESW_PER_RE1                        (0x00020000)
#define FSL_ESW_PER_RE2                        (0x00040000)

/* Bit definitions and macros for FSL_ESW_VLANV */
#define FSL_ESW_VLANV_VV0                      (0x00000001)
#define FSL_ESW_VLANV_VV1                      (0x00000002)
#define FSL_ESW_VLANV_VV2                      (0x00000004)
#define FSL_ESW_VLANV_DU0                      (0x00010000)
#define FSL_ESW_VLANV_DU1                      (0x00020000)
#define FSL_ESW_VLANV_DU2                      (0x00040000)

/* Bit definitions and macros for FSL_ESW_DBCR */
#define FSL_ESW_DBCR_P0                        (0x00000001)
#define FSL_ESW_DBCR_P1                        (0x00000002)
#define FSL_ESW_DBCR_P2                        (0x00000004)

/* Bit definitions and macros for FSL_ESW_DMCR */
#define FSL_ESW_DMCR_P0                        (0x00000001)
#define FSL_ESW_DMCR_P1                        (0x00000002)
#define FSL_ESW_DMCR_P2                        (0x00000004)

/* Bit definitions and macros for FSL_ESW_BKLR */
#define FSL_ESW_BKLR_BE0                       (0x00000001)
#define FSL_ESW_BKLR_BE1                       (0x00000002)
#define FSL_ESW_BKLR_BE2                       (0x00000004)
#define FSL_ESW_BKLR_LD0                       (0x00010000)
#define FSL_ESW_BKLR_LD1                       (0x00020000)
#define FSL_ESW_BKLR_LD2                       (0x00040000)

/* Bit definitions and macros for FSL_ESW_BMPC */
#define FSL_ESW_BMPC_PORT(x)                   (((x)&0x0000000F)<<0)
#define FSL_ESW_BMPC_MSG_TX                    (0x00000020)
#define FSL_ESW_BMPC_EN                        (0x00000040)
#define FSL_ESW_BMPC_DIS                       (0x00000080)
#define FSL_ESW_BMPC_PRIORITY(x)               (((x)&0x00000007)<<13)
#define FSL_ESW_BMPC_PORTMASK(x)               (((x)&0x00000007)<<16)

/* Bit definitions and macros for FSL_ESW_MODE */
#define FSL_ESW_MODE_SW_RST                    (0x00000001)
#define FSL_ESW_MODE_SW_EN                     (0x00000002)
#define FSL_ESW_MODE_STOP                      (0x00000080)
#define FSL_ESW_MODE_CRC_TRAN                  (0x00000100)
#define FSL_ESW_MODE_P0CT                      (0x00000200)
#define FSL_ESW_MODE_STATRST                   (0x80000000)

/* Bit definitions and macros for FSL_ESW_VIMSEL */
#define FSL_ESW_VIMSEL_IM0(x)                  (((x)&0x00000003)<<0)
#define FSL_ESW_VIMSEL_IM1(x)                  (((x)&0x00000003)<<2)
#define FSL_ESW_VIMSEL_IM2(x)                  (((x)&0x00000003)<<4)

/* Bit definitions and macros for FSL_ESW_VOMSEL */
#define FSL_ESW_VOMSEL_OM0(x)                  (((x)&0x00000003)<<0)
#define FSL_ESW_VOMSEL_OM1(x)                  (((x)&0x00000003)<<2)
#define FSL_ESW_VOMSEL_OM2(x)                  (((x)&0x00000003)<<4)

/* Bit definitions and macros for FSL_ESW_VIMEN */
#define FSL_ESW_VIMEN_EN0                      (0x00000001)
#define FSL_ESW_VIMEN_EN1                      (0x00000002)
#define FSL_ESW_VIMEN_EN2                      (0x00000004)

/* Bit definitions and macros for FSL_ESW_VID */
#define FSL_ESW_VID_TAG(x)                     (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_MCR */
#define FSL_ESW_MCR_PORT(x)                    (((x)&0x0000000F)<<0)
#define FSL_ESW_MCR_MEN                        (0x00000010)
#define FSL_ESW_MCR_INGMAP                     (0x00000020)
#define FSL_ESW_MCR_EGMAP                      (0x00000040)
#define FSL_ESW_MCR_INGSA                      (0x00000080)
#define FSL_ESW_MCR_INGDA                      (0x00000100)
#define FSL_ESW_MCR_EGSA                       (0x00000200)
#define FSL_ESW_MCR_EGDA                       (0x00000400)

/* Bit definitions and macros for FSL_ESW_EGMAP */
#define FSL_ESW_EGMAP_EG0                      (0x00000001)
#define FSL_ESW_EGMAP_EG1                      (0x00000002)
#define FSL_ESW_EGMAP_EG2                      (0x00000004)

/* Bit definitions and macros for FSL_ESW_INGMAP */
#define FSL_ESW_INGMAP_ING0                    (0x00000001)
#define FSL_ESW_INGMAP_ING1                    (0x00000002)
#define FSL_ESW_INGMAP_ING2                    (0x00000004)

/* Bit definitions and macros for FSL_ESW_INGSAL */
#define FSL_ESW_INGSAL_ADDLOW(x)               (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_INGSAH */
#define FSL_ESW_INGSAH_ADDHIGH(x)              (((x)&0x0000FFFF)<<0)

/* Bit definitions and macros for FSL_ESW_INGDAL */
#define FSL_ESW_INGDAL_ADDLOW(x)               (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_INGDAH */
#define FSL_ESW_INGDAH_ADDHIGH(x)              (((x)&0x0000FFFF)<<0)

/* Bit definitions and macros for FSL_ESW_ENGSAL */
#define FSL_ESW_ENGSAL_ADDLOW(x)               (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_ENGSAH */
#define FSL_ESW_ENGSAH_ADDHIGH(x)              (((x)&0x0000FFFF)<<0)

/* Bit definitions and macros for FSL_ESW_ENGDAL */
#define FSL_ESW_ENGDAL_ADDLOW(x)               (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_ENGDAH */
#define FSL_ESW_ENGDAH_ADDHIGH(x)              (((x)&0x0000FFFF)<<0)

/* Bit definitions and macros for FSL_ESW_MCVAL */
#define FSL_ESW_MCVAL_COUNT(x)                 (((x)&0x000000FF)<<0)

/* Bit definitions and macros for FSL_ESW_MMSR */
#define FSL_ESW_MMSR_BUSY                      (0x00000001)
#define FSL_ESW_MMSR_NOCELL                    (0x00000002)
#define FSL_ESW_MMSR_MEMFULL                   (0x00000004)
#define FSL_ESW_MMSR_MFLATCH                   (0x00000008)
#define FSL_ESW_MMSR_DQ_GRNT                   (0x00000040)
#define FSL_ESW_MMSR_CELLS_AVAIL(x)            (((x)&0x000000FF)<<16)

/* Bit definitions and macros for FSL_ESW_LMT */
#define FSL_ESW_LMT_THRESH(x)                  (((x)&0x000000FF)<<0)

/* Bit definitions and macros for FSL_ESW_LFC */
#define FSL_ESW_LFC_COUNT(x)                   (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_PCSR */
#define FSL_ESW_PCSR_PC0                       (0x00000001)
#define FSL_ESW_PCSR_PC1                       (0x00000002)
#define FSL_ESW_PCSR_PC2                       (0x00000004)

/* Bit definitions and macros for FSL_ESW_IOSR */
#define FSL_ESW_IOSR_OR0                       (0x00000001)
#define FSL_ESW_IOSR_OR1                       (0x00000002)
#define FSL_ESW_IOSR_OR2                       (0x00000004)

/* Bit definitions and macros for FSL_ESW_QWT */
#define FSL_ESW_QWT_Q0WT(x)                    (((x)&0x0000001F)<<0)
#define FSL_ESW_QWT_Q1WT(x)                    (((x)&0x0000001F)<<8)
#define FSL_ESW_QWT_Q2WT(x)                    (((x)&0x0000001F)<<16)
#define FSL_ESW_QWT_Q3WT(x)                    (((x)&0x0000001F)<<24)

/* Bit definitions and macros for FSL_ESW_P0BCT */
#define FSL_ESW_P0BCT_THRESH(x)                (((x)&0x000000FF)<<0)

/* Bit definitions and macros for FSL_ESW_P0FFEN */
#define FSL_ESW_P0FFEN_FEN                     (0x00000001)
#define FSL_ESW_P0FFEN_FD(x)                   (((x)&0x00000003)<<2)

/* Bit definitions and macros for FSL_ESW_PSNP */
#define FSL_ESW_PSNP_EN                        (0x00000001)
#define FSL_ESW_PSNP_MODE(x)                   (((x)&0x00000003)<<1)
#define FSL_ESW_PSNP_CD                        (0x00000008)
#define FSL_ESW_PSNP_CS                        (0x00000010)
#define FSL_ESW_PSNP_PORT_COMPARE(x)           (((x)&0x0000FFFF)<<16)

/* Bit definitions and macros for FSL_ESW_IPSNP */
#define FSL_ESW_IPSNP_EN                       (0x00000001)
#define FSL_ESW_IPSNP_MODE(x)                  (((x)&0x00000003)<<1)
#define FSL_ESW_IPSNP_PROTOCOL(x)              (((x)&0x000000FF)<<8)

/* Bit definitions and macros for FSL_ESW_PVRES */
#define FSL_ESW_PVRES_PRI0(x)                  (((x)&0x00000007)<<0)
#define FSL_ESW_PVRES_PRI1(x)                  (((x)&0x00000007)<<3)
#define FSL_ESW_PVRES_PRI2(x)                  (((x)&0x00000007)<<6)
#define FSL_ESW_PVRES_PRI3(x)                  (((x)&0x00000007)<<9)
#define FSL_ESW_PVRES_PRI4(x)                  (((x)&0x00000007)<<12)
#define FSL_ESW_PVRES_PRI5(x)                  (((x)&0x00000007)<<15)
#define FSL_ESW_PVRES_PRI6(x)                  (((x)&0x00000007)<<18)
#define FSL_ESW_PVRES_PRI7(x)                  (((x)&0x00000007)<<21)

/* Bit definitions and macros for FSL_ESW_IPRES */
#define FSL_ESW_IPRES_ADDRESS(x)               (((x)&0x000000FF)<<0)
#define FSL_ESW_IPRES_IPV4SEL                  (0x00000100)
#define FSL_ESW_IPRES_PRI0(x)                  (((x)&0x00000003)<<9)
#define FSL_ESW_IPRES_PRI1(x)                  (((x)&0x00000003)<<11)
#define FSL_ESW_IPRES_PRI2(x)                   (((x)&0x00000003)<<13)
#define FSL_ESW_IPRES_READ                     (0x80000000)

/* Bit definitions and macros for FSL_ESW_PRES */
#define FSL_ESW_PRES_VLAN                      (0x00000001)
#define FSL_ESW_PRES_IP                        (0x00000002)
#define FSL_ESW_PRES_MAC                       (0x00000004)
#define FSL_ESW_PRES_DFLT_PRI(x)               (((x)&0x00000007)<<4)

/* Bit definitions and macros for FSL_ESW_PID */
#define FSL_ESW_PID_VLANID(x)                  (((x)&0x0000FFFF)<<0)

/* Bit definitions and macros for FSL_ESW_VRES */
#define FSL_ESW_VRES_P0                        (0x00000001)
#define FSL_ESW_VRES_P1                        (0x00000002)
#define FSL_ESW_VRES_P2                        (0x00000004)
#define FSL_ESW_VRES_VLANID(x)                 (((x)&0x00000FFF)<<3)

/* Bit definitions and macros for FSL_ESW_DISCN */
#define FSL_ESW_DISCN_COUNT(x)                 (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_DISCB */
#define FSL_ESW_DISCB_COUNT(x)                 (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_NDISCN */
#define FSL_ESW_NDISCN_COUNT(x)                (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_NDISCB */
#define FSL_ESW_NDISCB_COUNT(x)                (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_POQC */
#define FSL_ESW_POQC_COUNT(x)                  (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_PMVID */
#define FSL_ESW_PMVID_COUNT(x)                 (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_PMVTAG */
#define FSL_ESW_PMVTAG_COUNT(x)                (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_PBL */
#define FSL_ESW_PBL_COUNT(x)                   (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_ISR */
#define FSL_ESW_ISR_EBERR                      (0x00000001)
#define FSL_ESW_ISR_RXB                        (0x00000002)
#define FSL_ESW_ISR_RXF                        (0x00000004)
#define FSL_ESW_ISR_TXB                        (0x00000008)
#define FSL_ESW_ISR_TXF                        (0x00000010)
#define FSL_ESW_ISR_QM                         (0x00000020)
#define FSL_ESW_ISR_OD0                        (0x00000040)
#define FSL_ESW_ISR_OD1                        (0x00000080)
#define FSL_ESW_ISR_OD2                        (0x00000100)
#define FSL_ESW_ISR_LRN                        (0x00000200)

/* Bit definitions and macros for FSL_ESW_IMR */
#define FSL_ESW_IMR_EBERR                      (0x00000001)
#define FSL_ESW_IMR_RXB                        (0x00000002)
#define FSL_ESW_IMR_RXF                        (0x00000004)
#define FSL_ESW_IMR_TXB                        (0x00000008)
#define FSL_ESW_IMR_TXF                        (0x00000010)
#define FSL_ESW_IMR_QM                         (0x00000020)
#define FSL_ESW_IMR_OD0                        (0x00000040)
#define FSL_ESW_IMR_OD1                        (0x00000080)
#define FSL_ESW_IMR_OD2                        (0x00000100)
#define FSL_ESW_IMR_LRN                        (0x00000200)

/* Bit definitions and macros for FSL_ESW_RDSR */
#define FSL_ESW_RDSR_ADDRESS(x)                (((x)&0x3FFFFFFF)<<2)

/* Bit definitions and macros for FSL_ESW_TDSR */
#define FSL_ESW_TDSR_ADDRESS(x)                (((x)&0x3FFFFFFF)<<2)

/* Bit definitions and macros for FSL_ESW_MRBR */
#define FSL_ESW_MRBR_SIZE(x)                   (((x)&0x000003FF)<<4)

/* Bit definitions and macros for FSL_ESW_RDAR */
#define FSL_ESW_RDAR_R_DES_ACTIVE              (0x01000000)

/* Bit definitions and macros for FSL_ESW_TDAR */
#define FSL_ESW_TDAR_X_DES_ACTIVE              (0x01000000)

/* Bit definitions and macros for FSL_ESW_LREC0 */
#define FSL_ESW_LREC0_MACADDR0(x)              (((x)&0xFFFFFFFF)<<0)

/* Bit definitions and macros for FSL_ESW_LREC1 */
#define FSL_ESW_LREC1_MACADDR1(x)              (((x)&0x0000FFFF)<<0)
#define FSL_ESW_LREC1_HASH(x)                  (((x)&0x000000FF)<<16)
#define FSL_ESW_LREC1_SWPORT(x)                (((x)&0x00000003)<<24)

/* Bit definitions and macros for FSL_ESW_LSR */
#define FSL_ESW_LSR_DA                         (0x00000001)

/* port mirroring port number match */
#define MIRROR_EGRESS_PORT_MATCH		1
#define MIRROR_INGRESS_PORT_MATCH		2

/* port mirroring mac address match */
#define MIRROR_EGRESS_SOURCE_MATCH		1
#define MIRROR_INGRESS_SOURCE_MATCH		2
#define MIRROR_EGRESS_DESTINATION_MATCH		3
#define MIRROR_INGRESS_DESTINATION_MATCH	4

#endif /* FSL_L2_SWITCH_H */