1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
19#include <linux/init.h>
20#include <linux/interrupt.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/ioport.h>
24#include <linux/pci.h>
25#include <linux/proc_fs.h>
26#include <linux/mii.h>
27#include <linux/platform_device.h>
28#include <linux/ethtool.h>
29#include <linux/etherdevice.h>
30#include <linux/in.h>
31#include <linux/ip.h>
32#include <linux/if_vlan.h>
33#include <linux/crc32.h>
34#include <linux/sched.h>
35#include <linux/slab.h>
36
37
38
39
40#define KS_DMA_TX_CTRL 0x0000
41#define DMA_TX_ENABLE 0x00000001
42#define DMA_TX_CRC_ENABLE 0x00000002
43#define DMA_TX_PAD_ENABLE 0x00000004
44#define DMA_TX_LOOPBACK 0x00000100
45#define DMA_TX_FLOW_ENABLE 0x00000200
46#define DMA_TX_CSUM_IP 0x00010000
47#define DMA_TX_CSUM_TCP 0x00020000
48#define DMA_TX_CSUM_UDP 0x00040000
49#define DMA_TX_BURST_SIZE 0x3F000000
50
51#define KS_DMA_RX_CTRL 0x0004
52#define DMA_RX_ENABLE 0x00000001
53#define KS884X_DMA_RX_MULTICAST 0x00000002
54#define DMA_RX_PROMISCUOUS 0x00000004
55#define DMA_RX_ERROR 0x00000008
56#define DMA_RX_UNICAST 0x00000010
57#define DMA_RX_ALL_MULTICAST 0x00000020
58#define DMA_RX_BROADCAST 0x00000040
59#define DMA_RX_FLOW_ENABLE 0x00000200
60#define DMA_RX_CSUM_IP 0x00010000
61#define DMA_RX_CSUM_TCP 0x00020000
62#define DMA_RX_CSUM_UDP 0x00040000
63#define DMA_RX_BURST_SIZE 0x3F000000
64
65#define DMA_BURST_SHIFT 24
66#define DMA_BURST_DEFAULT 8
67
68#define KS_DMA_TX_START 0x0008
69#define KS_DMA_RX_START 0x000C
70#define DMA_START 0x00000001
71
72#define KS_DMA_TX_ADDR 0x0010
73#define KS_DMA_RX_ADDR 0x0014
74
75#define DMA_ADDR_LIST_MASK 0xFFFFFFFC
76#define DMA_ADDR_LIST_SHIFT 2
77
78
79#define KS884X_MULTICAST_0_OFFSET 0x0020
80#define KS884X_MULTICAST_1_OFFSET 0x0021
81#define KS884X_MULTICAST_2_OFFSET 0x0022
82#define KS884x_MULTICAST_3_OFFSET 0x0023
83
84#define KS884X_MULTICAST_4_OFFSET 0x0024
85#define KS884X_MULTICAST_5_OFFSET 0x0025
86#define KS884X_MULTICAST_6_OFFSET 0x0026
87#define KS884X_MULTICAST_7_OFFSET 0x0027
88
89
90
91
92#define KS884X_INTERRUPTS_ENABLE 0x0028
93
94#define KS884X_INTERRUPTS_STATUS 0x002C
95
96#define KS884X_INT_RX_STOPPED 0x02000000
97#define KS884X_INT_TX_STOPPED 0x04000000
98#define KS884X_INT_RX_OVERRUN 0x08000000
99#define KS884X_INT_TX_EMPTY 0x10000000
100#define KS884X_INT_RX 0x20000000
101#define KS884X_INT_TX 0x40000000
102#define KS884X_INT_PHY 0x80000000
103
104#define KS884X_INT_RX_MASK \
105 (KS884X_INT_RX | KS884X_INT_RX_OVERRUN)
106#define KS884X_INT_TX_MASK \
107 (KS884X_INT_TX | KS884X_INT_TX_EMPTY)
108#define KS884X_INT_MASK (KS884X_INT_RX | KS884X_INT_TX | KS884X_INT_PHY)
109
110
111
112
113#define KS_ADD_ADDR_0_LO 0x0080
114
115#define KS_ADD_ADDR_0_HI 0x0084
116
117#define KS_ADD_ADDR_1_LO 0x0088
118
119#define KS_ADD_ADDR_1_HI 0x008C
120
121#define KS_ADD_ADDR_2_LO 0x0090
122
123#define KS_ADD_ADDR_2_HI 0x0094
124
125#define KS_ADD_ADDR_3_LO 0x0098
126
127#define KS_ADD_ADDR_3_HI 0x009C
128
129#define KS_ADD_ADDR_4_LO 0x00A0
130
131#define KS_ADD_ADDR_4_HI 0x00A4
132
133#define KS_ADD_ADDR_5_LO 0x00A8
134
135#define KS_ADD_ADDR_5_HI 0x00AC
136
137#define KS_ADD_ADDR_6_LO 0x00B0
138
139#define KS_ADD_ADDR_6_HI 0x00B4
140
141#define KS_ADD_ADDR_7_LO 0x00B8
142
143#define KS_ADD_ADDR_7_HI 0x00BC
144
145#define KS_ADD_ADDR_8_LO 0x00C0
146
147#define KS_ADD_ADDR_8_HI 0x00C4
148
149#define KS_ADD_ADDR_9_LO 0x00C8
150
151#define KS_ADD_ADDR_9_HI 0x00CC
152
153#define KS_ADD_ADDR_A_LO 0x00D0
154
155#define KS_ADD_ADDR_A_HI 0x00D4
156
157#define KS_ADD_ADDR_B_LO 0x00D8
158
159#define KS_ADD_ADDR_B_HI 0x00DC
160
161#define KS_ADD_ADDR_C_LO 0x00E0
162
163#define KS_ADD_ADDR_C_HI 0x00E4
164
165#define KS_ADD_ADDR_D_LO 0x00E8
166
167#define KS_ADD_ADDR_D_HI 0x00EC
168
169#define KS_ADD_ADDR_E_LO 0x00F0
170
171#define KS_ADD_ADDR_E_HI 0x00F4
172
173#define KS_ADD_ADDR_F_LO 0x00F8
174
175#define KS_ADD_ADDR_F_HI 0x00FC
176
177#define ADD_ADDR_HI_MASK 0x0000FFFF
178#define ADD_ADDR_ENABLE 0x80000000
179#define ADD_ADDR_INCR 8
180
181
182
183
184#define KS884X_ADDR_0_OFFSET 0x0200
185#define KS884X_ADDR_1_OFFSET 0x0201
186
187#define KS884X_ADDR_2_OFFSET 0x0202
188#define KS884X_ADDR_3_OFFSET 0x0203
189
190#define KS884X_ADDR_4_OFFSET 0x0204
191#define KS884X_ADDR_5_OFFSET 0x0205
192
193
194#define KS884X_BUS_CTRL_OFFSET 0x0210
195
196#define BUS_SPEED_125_MHZ 0x0000
197#define BUS_SPEED_62_5_MHZ 0x0001
198#define BUS_SPEED_41_66_MHZ 0x0002
199#define BUS_SPEED_25_MHZ 0x0003
200
201
202#define KS884X_EEPROM_CTRL_OFFSET 0x0212
203
204#define EEPROM_CHIP_SELECT 0x0001
205#define EEPROM_SERIAL_CLOCK 0x0002
206#define EEPROM_DATA_OUT 0x0004
207#define EEPROM_DATA_IN 0x0008
208#define EEPROM_ACCESS_ENABLE 0x0010
209
210
211#define KS884X_MEM_INFO_OFFSET 0x0214
212
213#define RX_MEM_TEST_FAILED 0x0008
214#define RX_MEM_TEST_FINISHED 0x0010
215#define TX_MEM_TEST_FAILED 0x0800
216#define TX_MEM_TEST_FINISHED 0x1000
217
218
219#define KS884X_GLOBAL_CTRL_OFFSET 0x0216
220#define GLOBAL_SOFTWARE_RESET 0x0001
221
222#define KS8841_POWER_MANAGE_OFFSET 0x0218
223
224
225#define KS8841_WOL_CTRL_OFFSET 0x021A
226#define KS8841_WOL_MAGIC_ENABLE 0x0080
227#define KS8841_WOL_FRAME3_ENABLE 0x0008
228#define KS8841_WOL_FRAME2_ENABLE 0x0004
229#define KS8841_WOL_FRAME1_ENABLE 0x0002
230#define KS8841_WOL_FRAME0_ENABLE 0x0001
231
232
233#define KS8841_WOL_FRAME_CRC_OFFSET 0x0220
234#define KS8841_WOL_FRAME_BYTE0_OFFSET 0x0224
235#define KS8841_WOL_FRAME_BYTE2_OFFSET 0x0228
236
237
238#define KS884X_IACR_P 0x04A0
239#define KS884X_IACR_OFFSET KS884X_IACR_P
240
241
242#define KS884X_IADR1_P 0x04A2
243#define KS884X_IADR2_P 0x04A4
244#define KS884X_IADR3_P 0x04A6
245#define KS884X_IADR4_P 0x04A8
246#define KS884X_IADR5_P 0x04AA
247
248#define KS884X_ACC_CTRL_SEL_OFFSET KS884X_IACR_P
249#define KS884X_ACC_CTRL_INDEX_OFFSET (KS884X_ACC_CTRL_SEL_OFFSET + 1)
250
251#define KS884X_ACC_DATA_0_OFFSET KS884X_IADR4_P
252#define KS884X_ACC_DATA_1_OFFSET (KS884X_ACC_DATA_0_OFFSET + 1)
253#define KS884X_ACC_DATA_2_OFFSET KS884X_IADR5_P
254#define KS884X_ACC_DATA_3_OFFSET (KS884X_ACC_DATA_2_OFFSET + 1)
255#define KS884X_ACC_DATA_4_OFFSET KS884X_IADR2_P
256#define KS884X_ACC_DATA_5_OFFSET (KS884X_ACC_DATA_4_OFFSET + 1)
257#define KS884X_ACC_DATA_6_OFFSET KS884X_IADR3_P
258#define KS884X_ACC_DATA_7_OFFSET (KS884X_ACC_DATA_6_OFFSET + 1)
259#define KS884X_ACC_DATA_8_OFFSET KS884X_IADR1_P
260
261
262#define KS884X_P1MBCR_P 0x04D0
263#define KS884X_P1MBSR_P 0x04D2
264#define KS884X_PHY1ILR_P 0x04D4
265#define KS884X_PHY1IHR_P 0x04D6
266#define KS884X_P1ANAR_P 0x04D8
267#define KS884X_P1ANLPR_P 0x04DA
268
269
270#define KS884X_P2MBCR_P 0x04E0
271#define KS884X_P2MBSR_P 0x04E2
272#define KS884X_PHY2ILR_P 0x04E4
273#define KS884X_PHY2IHR_P 0x04E6
274#define KS884X_P2ANAR_P 0x04E8
275#define KS884X_P2ANLPR_P 0x04EA
276
277#define KS884X_PHY_1_CTRL_OFFSET KS884X_P1MBCR_P
278#define PHY_CTRL_INTERVAL (KS884X_P2MBCR_P - KS884X_P1MBCR_P)
279
280#define KS884X_PHY_CTRL_OFFSET 0x00
281
282
283#define PHY_REG_CTRL 0
284
285#define PHY_RESET 0x8000
286#define PHY_LOOPBACK 0x4000
287#define PHY_SPEED_100MBIT 0x2000
288#define PHY_AUTO_NEG_ENABLE 0x1000
289#define PHY_POWER_DOWN 0x0800
290#define PHY_MII_DISABLE 0x0400
291#define PHY_AUTO_NEG_RESTART 0x0200
292#define PHY_FULL_DUPLEX 0x0100
293#define PHY_COLLISION_TEST 0x0080
294#define PHY_HP_MDIX 0x0020
295#define PHY_FORCE_MDIX 0x0010
296#define PHY_AUTO_MDIX_DISABLE 0x0008
297#define PHY_REMOTE_FAULT_DISABLE 0x0004
298#define PHY_TRANSMIT_DISABLE 0x0002
299#define PHY_LED_DISABLE 0x0001
300
301#define KS884X_PHY_STATUS_OFFSET 0x02
302
303
304#define PHY_REG_STATUS 1
305
306#define PHY_100BT4_CAPABLE 0x8000
307#define PHY_100BTX_FD_CAPABLE 0x4000
308#define PHY_100BTX_CAPABLE 0x2000
309#define PHY_10BT_FD_CAPABLE 0x1000
310#define PHY_10BT_CAPABLE 0x0800
311#define PHY_MII_SUPPRESS_CAPABLE 0x0040
312#define PHY_AUTO_NEG_ACKNOWLEDGE 0x0020
313#define PHY_REMOTE_FAULT 0x0010
314#define PHY_AUTO_NEG_CAPABLE 0x0008
315#define PHY_LINK_STATUS 0x0004
316#define PHY_JABBER_DETECT 0x0002
317#define PHY_EXTENDED_CAPABILITY 0x0001
318
319#define KS884X_PHY_ID_1_OFFSET 0x04
320#define KS884X_PHY_ID_2_OFFSET 0x06
321
322
323#define PHY_REG_ID_1 2
324#define PHY_REG_ID_2 3
325
326#define KS884X_PHY_AUTO_NEG_OFFSET 0x08
327
328
329#define PHY_REG_AUTO_NEGOTIATION 4
330
331#define PHY_AUTO_NEG_NEXT_PAGE 0x8000
332#define PHY_AUTO_NEG_REMOTE_FAULT 0x2000
333
334#define PHY_AUTO_NEG_ASYM_PAUSE 0x0800
335#define PHY_AUTO_NEG_SYM_PAUSE 0x0400
336#define PHY_AUTO_NEG_100BT4 0x0200
337#define PHY_AUTO_NEG_100BTX_FD 0x0100
338#define PHY_AUTO_NEG_100BTX 0x0080
339#define PHY_AUTO_NEG_10BT_FD 0x0040
340#define PHY_AUTO_NEG_10BT 0x0020
341#define PHY_AUTO_NEG_SELECTOR 0x001F
342#define PHY_AUTO_NEG_802_3 0x0001
343
344#define PHY_AUTO_NEG_PAUSE (PHY_AUTO_NEG_SYM_PAUSE | PHY_AUTO_NEG_ASYM_PAUSE)
345
346#define KS884X_PHY_REMOTE_CAP_OFFSET 0x0A
347
348
349#define PHY_REG_REMOTE_CAPABILITY 5
350
351#define PHY_REMOTE_NEXT_PAGE 0x8000
352#define PHY_REMOTE_ACKNOWLEDGE 0x4000
353#define PHY_REMOTE_REMOTE_FAULT 0x2000
354#define PHY_REMOTE_SYM_PAUSE 0x0400
355#define PHY_REMOTE_100BTX_FD 0x0100
356#define PHY_REMOTE_100BTX 0x0080
357#define PHY_REMOTE_10BT_FD 0x0040
358#define PHY_REMOTE_10BT 0x0020
359
360
361#define KS884X_P1VCT_P 0x04F0
362#define KS884X_P1PHYCTRL_P 0x04F2
363
364
365#define KS884X_P2VCT_P 0x04F4
366#define KS884X_P2PHYCTRL_P 0x04F6
367
368#define KS884X_PHY_SPECIAL_OFFSET KS884X_P1VCT_P
369#define PHY_SPECIAL_INTERVAL (KS884X_P2VCT_P - KS884X_P1VCT_P)
370
371#define KS884X_PHY_LINK_MD_OFFSET 0x00
372
373#define PHY_START_CABLE_DIAG 0x8000
374#define PHY_CABLE_DIAG_RESULT 0x6000
375#define PHY_CABLE_STAT_NORMAL 0x0000
376#define PHY_CABLE_STAT_OPEN 0x2000
377#define PHY_CABLE_STAT_SHORT 0x4000
378#define PHY_CABLE_STAT_FAILED 0x6000
379#define PHY_CABLE_10M_SHORT 0x1000
380#define PHY_CABLE_FAULT_COUNTER 0x01FF
381
382#define KS884X_PHY_PHY_CTRL_OFFSET 0x02
383
384#define PHY_STAT_REVERSED_POLARITY 0x0020
385#define PHY_STAT_MDIX 0x0010
386#define PHY_FORCE_LINK 0x0008
387#define PHY_POWER_SAVING_DISABLE 0x0004
388#define PHY_REMOTE_LOOPBACK 0x0002
389
390
391#define KS884X_SIDER_P 0x0400
392#define KS884X_CHIP_ID_OFFSET KS884X_SIDER_P
393#define KS884X_FAMILY_ID_OFFSET (KS884X_CHIP_ID_OFFSET + 1)
394
395#define REG_FAMILY_ID 0x88
396
397#define REG_CHIP_ID_41 0x8810
398#define REG_CHIP_ID_42 0x8800
399
400#define KS884X_CHIP_ID_MASK_41 0xFF10
401#define KS884X_CHIP_ID_MASK 0xFFF0
402#define KS884X_CHIP_ID_SHIFT 4
403#define KS884X_REVISION_MASK 0x000E
404#define KS884X_REVISION_SHIFT 1
405#define KS8842_START 0x0001
406
407#define CHIP_IP_41_M 0x8810
408#define CHIP_IP_42_M 0x8800
409#define CHIP_IP_61_M 0x8890
410#define CHIP_IP_62_M 0x8880
411
412#define CHIP_IP_41_P 0x8850
413#define CHIP_IP_42_P 0x8840
414#define CHIP_IP_61_P 0x88D0
415#define CHIP_IP_62_P 0x88C0
416
417
418#define KS8842_SGCR1_P 0x0402
419#define KS8842_SWITCH_CTRL_1_OFFSET KS8842_SGCR1_P
420
421#define SWITCH_PASS_ALL 0x8000
422#define SWITCH_TX_FLOW_CTRL 0x2000
423#define SWITCH_RX_FLOW_CTRL 0x1000
424#define SWITCH_CHECK_LENGTH 0x0800
425#define SWITCH_AGING_ENABLE 0x0400
426#define SWITCH_FAST_AGING 0x0200
427#define SWITCH_AGGR_BACKOFF 0x0100
428#define SWITCH_PASS_PAUSE 0x0008
429#define SWITCH_LINK_AUTO_AGING 0x0001
430
431
432#define KS8842_SGCR2_P 0x0404
433#define KS8842_SWITCH_CTRL_2_OFFSET KS8842_SGCR2_P
434
435#define SWITCH_VLAN_ENABLE 0x8000
436#define SWITCH_IGMP_SNOOP 0x4000
437#define IPV6_MLD_SNOOP_ENABLE 0x2000
438#define IPV6_MLD_SNOOP_OPTION 0x1000
439#define PRIORITY_SCHEME_SELECT 0x0800
440#define SWITCH_MIRROR_RX_TX 0x0100
441#define UNICAST_VLAN_BOUNDARY 0x0080
442#define MULTICAST_STORM_DISABLE 0x0040
443#define SWITCH_BACK_PRESSURE 0x0020
444#define FAIR_FLOW_CTRL 0x0010
445#define NO_EXC_COLLISION_DROP 0x0008
446#define SWITCH_HUGE_PACKET 0x0004
447#define SWITCH_LEGAL_PACKET 0x0002
448#define SWITCH_BUF_RESERVE 0x0001
449
450
451#define KS8842_SGCR3_P 0x0406
452#define KS8842_SWITCH_CTRL_3_OFFSET KS8842_SGCR3_P
453
454#define BROADCAST_STORM_RATE_LO 0xFF00
455#define SWITCH_REPEATER 0x0080
456#define SWITCH_HALF_DUPLEX 0x0040
457#define SWITCH_FLOW_CTRL 0x0020
458#define SWITCH_10_MBIT 0x0010
459#define SWITCH_REPLACE_NULL_VID 0x0008
460#define BROADCAST_STORM_RATE_HI 0x0007
461
462#define BROADCAST_STORM_RATE 0x07FF
463
464
465#define KS8842_SGCR4_P 0x0408
466
467
468#define KS8842_SGCR5_P 0x040A
469#define KS8842_SWITCH_CTRL_5_OFFSET KS8842_SGCR5_P
470
471#define LED_MODE 0x8200
472#define LED_SPEED_DUPLEX_ACT 0x0000
473#define LED_SPEED_DUPLEX_LINK_ACT 0x8000
474#define LED_DUPLEX_10_100 0x0200
475
476
477#define KS8842_SGCR6_P 0x0410
478#define KS8842_SWITCH_CTRL_6_OFFSET KS8842_SGCR6_P
479
480#define KS8842_PRIORITY_MASK 3
481#define KS8842_PRIORITY_SHIFT 2
482
483
484#define KS8842_SGCR7_P 0x0412
485#define KS8842_SWITCH_CTRL_7_OFFSET KS8842_SGCR7_P
486
487#define SWITCH_UNK_DEF_PORT_ENABLE 0x0008
488#define SWITCH_UNK_DEF_PORT_3 0x0004
489#define SWITCH_UNK_DEF_PORT_2 0x0002
490#define SWITCH_UNK_DEF_PORT_1 0x0001
491
492
493#define KS8842_MACAR1_P 0x0470
494#define KS8842_MACAR2_P 0x0472
495#define KS8842_MACAR3_P 0x0474
496#define KS8842_MAC_ADDR_1_OFFSET KS8842_MACAR1_P
497#define KS8842_MAC_ADDR_0_OFFSET (KS8842_MAC_ADDR_1_OFFSET + 1)
498#define KS8842_MAC_ADDR_3_OFFSET KS8842_MACAR2_P
499#define KS8842_MAC_ADDR_2_OFFSET (KS8842_MAC_ADDR_3_OFFSET + 1)
500#define KS8842_MAC_ADDR_5_OFFSET KS8842_MACAR3_P
501#define KS8842_MAC_ADDR_4_OFFSET (KS8842_MAC_ADDR_5_OFFSET + 1)
502
503
504#define KS8842_TOSR1_P 0x0480
505#define KS8842_TOSR2_P 0x0482
506#define KS8842_TOSR3_P 0x0484
507#define KS8842_TOSR4_P 0x0486
508#define KS8842_TOSR5_P 0x0488
509#define KS8842_TOSR6_P 0x048A
510#define KS8842_TOSR7_P 0x0490
511#define KS8842_TOSR8_P 0x0492
512#define KS8842_TOS_1_OFFSET KS8842_TOSR1_P
513#define KS8842_TOS_2_OFFSET KS8842_TOSR2_P
514#define KS8842_TOS_3_OFFSET KS8842_TOSR3_P
515#define KS8842_TOS_4_OFFSET KS8842_TOSR4_P
516#define KS8842_TOS_5_OFFSET KS8842_TOSR5_P
517#define KS8842_TOS_6_OFFSET KS8842_TOSR6_P
518
519#define KS8842_TOS_7_OFFSET KS8842_TOSR7_P
520#define KS8842_TOS_8_OFFSET KS8842_TOSR8_P
521
522
523#define KS8842_P1CR1_P 0x0500
524#define KS8842_P1CR2_P 0x0502
525#define KS8842_P1VIDR_P 0x0504
526#define KS8842_P1CR3_P 0x0506
527#define KS8842_P1IRCR_P 0x0508
528#define KS8842_P1ERCR_P 0x050A
529#define KS884X_P1SCSLMD_P 0x0510
530#define KS884X_P1CR4_P 0x0512
531#define KS884X_P1SR_P 0x0514
532
533
534#define KS8842_P2CR1_P 0x0520
535#define KS8842_P2CR2_P 0x0522
536#define KS8842_P2VIDR_P 0x0524
537#define KS8842_P2CR3_P 0x0526
538#define KS8842_P2IRCR_P 0x0528
539#define KS8842_P2ERCR_P 0x052A
540#define KS884X_P2SCSLMD_P 0x0530
541#define KS884X_P2CR4_P 0x0532
542#define KS884X_P2SR_P 0x0534
543
544
545#define KS8842_P3CR1_P 0x0540
546#define KS8842_P3CR2_P 0x0542
547#define KS8842_P3VIDR_P 0x0544
548#define KS8842_P3CR3_P 0x0546
549#define KS8842_P3IRCR_P 0x0548
550#define KS8842_P3ERCR_P 0x054A
551
552#define KS8842_PORT_1_CTRL_1 KS8842_P1CR1_P
553#define KS8842_PORT_2_CTRL_1 KS8842_P2CR1_P
554#define KS8842_PORT_3_CTRL_1 KS8842_P3CR1_P
555
556#define PORT_CTRL_ADDR(port, addr) \
557 (addr = KS8842_PORT_1_CTRL_1 + (port) * \
558 (KS8842_PORT_2_CTRL_1 - KS8842_PORT_1_CTRL_1))
559
560#define KS8842_PORT_CTRL_1_OFFSET 0x00
561
562#define PORT_BROADCAST_STORM 0x0080
563#define PORT_DIFFSERV_ENABLE 0x0040
564#define PORT_802_1P_ENABLE 0x0020
565#define PORT_BASED_PRIORITY_MASK 0x0018
566#define PORT_BASED_PRIORITY_BASE 0x0003
567#define PORT_BASED_PRIORITY_SHIFT 3
568#define PORT_BASED_PRIORITY_0 0x0000
569#define PORT_BASED_PRIORITY_1 0x0008
570#define PORT_BASED_PRIORITY_2 0x0010
571#define PORT_BASED_PRIORITY_3 0x0018
572#define PORT_INSERT_TAG 0x0004
573#define PORT_REMOVE_TAG 0x0002
574#define PORT_PRIO_QUEUE_ENABLE 0x0001
575
576#define KS8842_PORT_CTRL_2_OFFSET 0x02
577
578#define PORT_INGRESS_VLAN_FILTER 0x4000
579#define PORT_DISCARD_NON_VID 0x2000
580#define PORT_FORCE_FLOW_CTRL 0x1000
581#define PORT_BACK_PRESSURE 0x0800
582#define PORT_TX_ENABLE 0x0400
583#define PORT_RX_ENABLE 0x0200
584#define PORT_LEARN_DISABLE 0x0100
585#define PORT_MIRROR_SNIFFER 0x0080
586#define PORT_MIRROR_RX 0x0040
587#define PORT_MIRROR_TX 0x0020
588#define PORT_USER_PRIORITY_CEILING 0x0008
589#define PORT_VLAN_MEMBERSHIP 0x0007
590
591#define KS8842_PORT_CTRL_VID_OFFSET 0x04
592
593#define PORT_DEFAULT_VID 0x0001
594
595#define KS8842_PORT_CTRL_3_OFFSET 0x06
596
597#define PORT_INGRESS_LIMIT_MODE 0x000C
598#define PORT_INGRESS_ALL 0x0000
599#define PORT_INGRESS_UNICAST 0x0004
600#define PORT_INGRESS_MULTICAST 0x0008
601#define PORT_INGRESS_BROADCAST 0x000C
602#define PORT_COUNT_IFG 0x0002
603#define PORT_COUNT_PREAMBLE 0x0001
604
605#define KS8842_PORT_IN_RATE_OFFSET 0x08
606#define KS8842_PORT_OUT_RATE_OFFSET 0x0A
607
608#define PORT_PRIORITY_RATE 0x0F
609#define PORT_PRIORITY_RATE_SHIFT 4
610
611#define KS884X_PORT_LINK_MD 0x10
612
613#define PORT_CABLE_10M_SHORT 0x8000
614#define PORT_CABLE_DIAG_RESULT 0x6000
615#define PORT_CABLE_STAT_NORMAL 0x0000
616#define PORT_CABLE_STAT_OPEN 0x2000
617#define PORT_CABLE_STAT_SHORT 0x4000
618#define PORT_CABLE_STAT_FAILED 0x6000
619#define PORT_START_CABLE_DIAG 0x1000
620#define PORT_FORCE_LINK 0x0800
621#define PORT_POWER_SAVING_DISABLE 0x0400
622#define PORT_PHY_REMOTE_LOOPBACK 0x0200
623#define PORT_CABLE_FAULT_COUNTER 0x01FF
624
625#define KS884X_PORT_CTRL_4_OFFSET 0x12
626
627#define PORT_LED_OFF 0x8000
628#define PORT_TX_DISABLE 0x4000
629#define PORT_AUTO_NEG_RESTART 0x2000
630#define PORT_REMOTE_FAULT_DISABLE 0x1000
631#define PORT_POWER_DOWN 0x0800
632#define PORT_AUTO_MDIX_DISABLE 0x0400
633#define PORT_FORCE_MDIX 0x0200
634#define PORT_LOOPBACK 0x0100
635#define PORT_AUTO_NEG_ENABLE 0x0080
636#define PORT_FORCE_100_MBIT 0x0040
637#define PORT_FORCE_FULL_DUPLEX 0x0020
638#define PORT_AUTO_NEG_SYM_PAUSE 0x0010
639#define PORT_AUTO_NEG_100BTX_FD 0x0008
640#define PORT_AUTO_NEG_100BTX 0x0004
641#define PORT_AUTO_NEG_10BT_FD 0x0002
642#define PORT_AUTO_NEG_10BT 0x0001
643
644#define KS884X_PORT_STATUS_OFFSET 0x14
645
646#define PORT_HP_MDIX 0x8000
647#define PORT_REVERSED_POLARITY 0x2000
648#define PORT_RX_FLOW_CTRL 0x0800
649#define PORT_TX_FLOW_CTRL 0x1000
650#define PORT_STATUS_SPEED_100MBIT 0x0400
651#define PORT_STATUS_FULL_DUPLEX 0x0200
652#define PORT_REMOTE_FAULT 0x0100
653#define PORT_MDIX_STATUS 0x0080
654#define PORT_AUTO_NEG_COMPLETE 0x0040
655#define PORT_STATUS_LINK_GOOD 0x0020
656#define PORT_REMOTE_SYM_PAUSE 0x0010
657#define PORT_REMOTE_100BTX_FD 0x0008
658#define PORT_REMOTE_100BTX 0x0004
659#define PORT_REMOTE_10BT_FD 0x0002
660#define PORT_REMOTE_10BT 0x0001
661
662
663
664
665
666
667
668
669
670
671#define STATIC_MAC_TABLE_ADDR 0x0000FFFF
672#define STATIC_MAC_TABLE_FWD_PORTS 0x00070000
673#define STATIC_MAC_TABLE_VALID 0x00080000
674#define STATIC_MAC_TABLE_OVERRIDE 0x00100000
675#define STATIC_MAC_TABLE_USE_FID 0x00200000
676#define STATIC_MAC_TABLE_FID 0x03C00000
677
678#define STATIC_MAC_FWD_PORTS_SHIFT 16
679#define STATIC_MAC_FID_SHIFT 22
680
681
682
683
684
685
686
687
688#define VLAN_TABLE_VID 0x00000FFF
689#define VLAN_TABLE_FID 0x0000F000
690#define VLAN_TABLE_MEMBERSHIP 0x00070000
691#define VLAN_TABLE_VALID 0x00080000
692
693#define VLAN_TABLE_FID_SHIFT 12
694#define VLAN_TABLE_MEMBERSHIP_SHIFT 16
695
696
697
698
699
700
701
702
703
704
705
706
707#define DYNAMIC_MAC_TABLE_ADDR 0x0000FFFF
708#define DYNAMIC_MAC_TABLE_FID 0x000F0000
709#define DYNAMIC_MAC_TABLE_SRC_PORT 0x00300000
710#define DYNAMIC_MAC_TABLE_TIMESTAMP 0x00C00000
711#define DYNAMIC_MAC_TABLE_ENTRIES 0xFF000000
712
713#define DYNAMIC_MAC_TABLE_ENTRIES_H 0x03
714#define DYNAMIC_MAC_TABLE_MAC_EMPTY 0x04
715#define DYNAMIC_MAC_TABLE_RESERVED 0x78
716#define DYNAMIC_MAC_TABLE_NOT_READY 0x80
717
718#define DYNAMIC_MAC_FID_SHIFT 16
719#define DYNAMIC_MAC_SRC_PORT_SHIFT 20
720#define DYNAMIC_MAC_TIMESTAMP_SHIFT 22
721#define DYNAMIC_MAC_ENTRIES_SHIFT 24
722#define DYNAMIC_MAC_ENTRIES_H_SHIFT 8
723
724
725
726
727
728
729
730#define MIB_COUNTER_VALUE 0x3FFFFFFF
731#define MIB_COUNTER_VALID 0x40000000
732#define MIB_COUNTER_OVERFLOW 0x80000000
733
734#define MIB_PACKET_DROPPED 0x0000FFFF
735
736#define KS_MIB_PACKET_DROPPED_TX_0 0x100
737#define KS_MIB_PACKET_DROPPED_TX_1 0x101
738#define KS_MIB_PACKET_DROPPED_TX 0x102
739#define KS_MIB_PACKET_DROPPED_RX_0 0x103
740#define KS_MIB_PACKET_DROPPED_RX_1 0x104
741#define KS_MIB_PACKET_DROPPED_RX 0x105
742
743
744#define SET_DEFAULT_LED LED_SPEED_DUPLEX_ACT
745
746#define MAC_ADDR_LEN 6
747#define MAC_ADDR_ORDER(i) (MAC_ADDR_LEN - 1 - (i))
748
749#define MAX_ETHERNET_BODY_SIZE 1500
750#define ETHERNET_HEADER_SIZE 14
751
752#define MAX_ETHERNET_PACKET_SIZE \
753 (MAX_ETHERNET_BODY_SIZE + ETHERNET_HEADER_SIZE)
754
755#define REGULAR_RX_BUF_SIZE (MAX_ETHERNET_PACKET_SIZE + 4)
756#define MAX_RX_BUF_SIZE (1912 + 4)
757
758#define ADDITIONAL_ENTRIES 16
759#define MAX_MULTICAST_LIST 32
760
761#define HW_MULTICAST_SIZE 8
762
763#define HW_TO_DEV_PORT(port) (port - 1)
764
765enum {
766 media_connected,
767 media_disconnected
768};
769
770enum {
771 OID_COUNTER_UNKOWN,
772
773 OID_COUNTER_FIRST,
774
775
776 OID_COUNTER_XMIT_ERROR,
777
778
779 OID_COUNTER_RCV_ERROR,
780
781 OID_COUNTER_LAST
782};
783
784
785
786
787
788#define DESC_ALIGNMENT 16
789#define BUFFER_ALIGNMENT 8
790
791#define NUM_OF_RX_DESC 64
792#define NUM_OF_TX_DESC 64
793
794#define KS_DESC_RX_FRAME_LEN 0x000007FF
795#define KS_DESC_RX_FRAME_TYPE 0x00008000
796#define KS_DESC_RX_ERROR_CRC 0x00010000
797#define KS_DESC_RX_ERROR_RUNT 0x00020000
798#define KS_DESC_RX_ERROR_TOO_LONG 0x00040000
799#define KS_DESC_RX_ERROR_PHY 0x00080000
800#define KS884X_DESC_RX_PORT_MASK 0x00300000
801#define KS_DESC_RX_MULTICAST 0x01000000
802#define KS_DESC_RX_ERROR 0x02000000
803#define KS_DESC_RX_ERROR_CSUM_UDP 0x04000000
804#define KS_DESC_RX_ERROR_CSUM_TCP 0x08000000
805#define KS_DESC_RX_ERROR_CSUM_IP 0x10000000
806#define KS_DESC_RX_LAST 0x20000000
807#define KS_DESC_RX_FIRST 0x40000000
808#define KS_DESC_RX_ERROR_COND \
809 (KS_DESC_RX_ERROR_CRC | \
810 KS_DESC_RX_ERROR_RUNT | \
811 KS_DESC_RX_ERROR_PHY | \
812 KS_DESC_RX_ERROR_TOO_LONG)
813
814#define KS_DESC_HW_OWNED 0x80000000
815
816#define KS_DESC_BUF_SIZE 0x000007FF
817#define KS884X_DESC_TX_PORT_MASK 0x00300000
818#define KS_DESC_END_OF_RING 0x02000000
819#define KS_DESC_TX_CSUM_GEN_UDP 0x04000000
820#define KS_DESC_TX_CSUM_GEN_TCP 0x08000000
821#define KS_DESC_TX_CSUM_GEN_IP 0x10000000
822#define KS_DESC_TX_LAST 0x20000000
823#define KS_DESC_TX_FIRST 0x40000000
824#define KS_DESC_TX_INTERRUPT 0x80000000
825
826#define KS_DESC_PORT_SHIFT 20
827
828#define KS_DESC_RX_MASK (KS_DESC_BUF_SIZE)
829
830#define KS_DESC_TX_MASK \
831 (KS_DESC_TX_INTERRUPT | \
832 KS_DESC_TX_FIRST | \
833 KS_DESC_TX_LAST | \
834 KS_DESC_TX_CSUM_GEN_IP | \
835 KS_DESC_TX_CSUM_GEN_TCP | \
836 KS_DESC_TX_CSUM_GEN_UDP | \
837 KS_DESC_BUF_SIZE)
838
839struct ksz_desc_rx_stat {
840#ifdef __BIG_ENDIAN_BITFIELD
841 u32 hw_owned:1;
842 u32 first_desc:1;
843 u32 last_desc:1;
844 u32 csum_err_ip:1;
845 u32 csum_err_tcp:1;
846 u32 csum_err_udp:1;
847 u32 error:1;
848 u32 multicast:1;
849 u32 src_port:4;
850 u32 err_phy:1;
851 u32 err_too_long:1;
852 u32 err_runt:1;
853 u32 err_crc:1;
854 u32 frame_type:1;
855 u32 reserved1:4;
856 u32 frame_len:11;
857#else
858 u32 frame_len:11;
859 u32 reserved1:4;
860 u32 frame_type:1;
861 u32 err_crc:1;
862 u32 err_runt:1;
863 u32 err_too_long:1;
864 u32 err_phy:1;
865 u32 src_port:4;
866 u32 multicast:1;
867 u32 error:1;
868 u32 csum_err_udp:1;
869 u32 csum_err_tcp:1;
870 u32 csum_err_ip:1;
871 u32 last_desc:1;
872 u32 first_desc:1;
873 u32 hw_owned:1;
874#endif
875};
876
877struct ksz_desc_tx_stat {
878#ifdef __BIG_ENDIAN_BITFIELD
879 u32 hw_owned:1;
880 u32 reserved1:31;
881#else
882 u32 reserved1:31;
883 u32 hw_owned:1;
884#endif
885};
886
887struct ksz_desc_rx_buf {
888#ifdef __BIG_ENDIAN_BITFIELD
889 u32 reserved4:6;
890 u32 end_of_ring:1;
891 u32 reserved3:14;
892 u32 buf_size:11;
893#else
894 u32 buf_size:11;
895 u32 reserved3:14;
896 u32 end_of_ring:1;
897 u32 reserved4:6;
898#endif
899};
900
901struct ksz_desc_tx_buf {
902#ifdef __BIG_ENDIAN_BITFIELD
903 u32 intr:1;
904 u32 first_seg:1;
905 u32 last_seg:1;
906 u32 csum_gen_ip:1;
907 u32 csum_gen_tcp:1;
908 u32 csum_gen_udp:1;
909 u32 end_of_ring:1;
910 u32 reserved4:1;
911 u32 dest_port:4;
912 u32 reserved3:9;
913 u32 buf_size:11;
914#else
915 u32 buf_size:11;
916 u32 reserved3:9;
917 u32 dest_port:4;
918 u32 reserved4:1;
919 u32 end_of_ring:1;
920 u32 csum_gen_udp:1;
921 u32 csum_gen_tcp:1;
922 u32 csum_gen_ip:1;
923 u32 last_seg:1;
924 u32 first_seg:1;
925 u32 intr:1;
926#endif
927};
928
929union desc_stat {
930 struct ksz_desc_rx_stat rx;
931 struct ksz_desc_tx_stat tx;
932 u32 data;
933};
934
935union desc_buf {
936 struct ksz_desc_rx_buf rx;
937 struct ksz_desc_tx_buf tx;
938 u32 data;
939};
940
941
942
943
944
945
946
947
948struct ksz_hw_desc {
949 union desc_stat ctrl;
950 union desc_buf buf;
951 u32 addr;
952 u32 next;
953};
954
955
956
957
958
959
960
961struct ksz_sw_desc {
962 union desc_stat ctrl;
963 union desc_buf buf;
964 u32 buf_size;
965};
966
967
968
969
970
971
972
973struct ksz_dma_buf {
974 struct sk_buff *skb;
975 dma_addr_t dma;
976 int len;
977};
978
979
980
981
982
983
984
985
986
987struct ksz_desc {
988 struct ksz_hw_desc *phw;
989 struct ksz_sw_desc sw;
990 struct ksz_dma_buf dma_buf;
991};
992
993#define DMA_BUFFER(desc) ((struct ksz_dma_buf *)(&(desc)->dma_buf))
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008struct ksz_desc_info {
1009 struct ksz_desc *ring;
1010 struct ksz_desc *cur;
1011 struct ksz_hw_desc *ring_virt;
1012 u32 ring_phys;
1013 int size;
1014 int alloc;
1015 int avail;
1016 int last;
1017 int next;
1018 int mask;
1019};
1020
1021
1022
1023
1024
1025enum {
1026 TABLE_STATIC_MAC = 0,
1027 TABLE_VLAN,
1028 TABLE_DYNAMIC_MAC,
1029 TABLE_MIB
1030};
1031
1032#define LEARNED_MAC_TABLE_ENTRIES 1024
1033#define STATIC_MAC_TABLE_ENTRIES 8
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045struct ksz_mac_table {
1046 u8 mac_addr[MAC_ADDR_LEN];
1047 u16 vid;
1048 u8 fid;
1049 u8 ports;
1050 u8 override:1;
1051 u8 use_fid:1;
1052 u8 valid:1;
1053};
1054
1055#define VLAN_TABLE_ENTRIES 16
1056
1057
1058
1059
1060
1061
1062
1063struct ksz_vlan_table {
1064 u16 vid;
1065 u8 fid;
1066 u8 member;
1067};
1068
1069#define DIFFSERV_ENTRIES 64
1070#define PRIO_802_1P_ENTRIES 8
1071#define PRIO_QUEUES 4
1072
1073#define SWITCH_PORT_NUM 2
1074#define TOTAL_PORT_NUM (SWITCH_PORT_NUM + 1)
1075#define HOST_MASK (1 << SWITCH_PORT_NUM)
1076#define PORT_MASK 7
1077
1078#define MAIN_PORT 0
1079#define OTHER_PORT 1
1080#define HOST_PORT SWITCH_PORT_NUM
1081
1082#define PORT_COUNTER_NUM 0x20
1083#define TOTAL_PORT_COUNTER_NUM (PORT_COUNTER_NUM + 2)
1084
1085#define MIB_COUNTER_RX_LO_PRIORITY 0x00
1086#define MIB_COUNTER_RX_HI_PRIORITY 0x01
1087#define MIB_COUNTER_RX_UNDERSIZE 0x02
1088#define MIB_COUNTER_RX_FRAGMENT 0x03
1089#define MIB_COUNTER_RX_OVERSIZE 0x04
1090#define MIB_COUNTER_RX_JABBER 0x05
1091#define MIB_COUNTER_RX_SYMBOL_ERR 0x06
1092#define MIB_COUNTER_RX_CRC_ERR 0x07
1093#define MIB_COUNTER_RX_ALIGNMENT_ERR 0x08
1094#define MIB_COUNTER_RX_CTRL_8808 0x09
1095#define MIB_COUNTER_RX_PAUSE 0x0A
1096#define MIB_COUNTER_RX_BROADCAST 0x0B
1097#define MIB_COUNTER_RX_MULTICAST 0x0C
1098#define MIB_COUNTER_RX_UNICAST 0x0D
1099#define MIB_COUNTER_RX_OCTET_64 0x0E
1100#define MIB_COUNTER_RX_OCTET_65_127 0x0F
1101#define MIB_COUNTER_RX_OCTET_128_255 0x10
1102#define MIB_COUNTER_RX_OCTET_256_511 0x11
1103#define MIB_COUNTER_RX_OCTET_512_1023 0x12
1104#define MIB_COUNTER_RX_OCTET_1024_1522 0x13
1105#define MIB_COUNTER_TX_LO_PRIORITY 0x14
1106#define MIB_COUNTER_TX_HI_PRIORITY 0x15
1107#define MIB_COUNTER_TX_LATE_COLLISION 0x16
1108#define MIB_COUNTER_TX_PAUSE 0x17
1109#define MIB_COUNTER_TX_BROADCAST 0x18
1110#define MIB_COUNTER_TX_MULTICAST 0x19
1111#define MIB_COUNTER_TX_UNICAST 0x1A
1112#define MIB_COUNTER_TX_DEFERRED 0x1B
1113#define MIB_COUNTER_TX_TOTAL_COLLISION 0x1C
1114#define MIB_COUNTER_TX_EXCESS_COLLISION 0x1D
1115#define MIB_COUNTER_TX_SINGLE_COLLISION 0x1E
1116#define MIB_COUNTER_TX_MULTI_COLLISION 0x1F
1117
1118#define MIB_COUNTER_RX_DROPPED_PACKET 0x20
1119#define MIB_COUNTER_TX_DROPPED_PACKET 0x21
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140struct ksz_port_mib {
1141 u8 cnt_ptr;
1142 u8 link_down;
1143 u8 state;
1144 u8 mib_start;
1145
1146 u64 counter[TOTAL_PORT_COUNTER_NUM];
1147 u32 dropped[2];
1148};
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159struct ksz_port_cfg {
1160 u16 vid;
1161 u8 member;
1162 u8 port_prio;
1163 u32 rx_rate[PRIO_QUEUES];
1164 u32 tx_rate[PRIO_QUEUES];
1165 int stp_state;
1166};
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182struct ksz_switch {
1183 struct ksz_mac_table mac_table[STATIC_MAC_TABLE_ENTRIES];
1184 struct ksz_vlan_table vlan_table[VLAN_TABLE_ENTRIES];
1185 struct ksz_port_cfg port_cfg[TOTAL_PORT_NUM];
1186
1187 u8 diffserv[DIFFSERV_ENTRIES];
1188 u8 p_802_1p[PRIO_802_1P_ENTRIES];
1189
1190 u8 br_addr[MAC_ADDR_LEN];
1191 u8 other_addr[MAC_ADDR_LEN];
1192
1193 u8 broad_per;
1194 u8 member;
1195};
1196
1197#define TX_RATE_UNIT 10000
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209struct ksz_port_info {
1210 uint state;
1211 uint tx_rate;
1212 u8 duplex;
1213 u8 advertised;
1214 u8 partner;
1215 u8 port_id;
1216 void *pdev;
1217};
1218
1219#define MAX_TX_HELD_SIZE 52000
1220
1221
1222#define LINK_INT_WORKING (1 << 0)
1223#define SMALL_PACKET_TX_BUG (1 << 1)
1224#define HALF_DUPLEX_SIGNAL_BUG (1 << 2)
1225#define RX_HUGE_FRAME (1 << 4)
1226#define STP_SUPPORT (1 << 8)
1227
1228
1229#define PAUSE_FLOW_CTRL (1 << 0)
1230#define FAST_AGING (1 << 1)
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
1267
1268
1269
1270struct ksz_hw {
1271 void __iomem *io;
1272
1273 struct ksz_switch *ksz_switch;
1274 struct ksz_port_info port_info[SWITCH_PORT_NUM];
1275 struct ksz_port_mib port_mib[TOTAL_PORT_NUM];
1276 int dev_count;
1277 int dst_ports;
1278 int id;
1279 int mib_cnt;
1280 int mib_port_cnt;
1281
1282 u32 tx_cfg;
1283 u32 rx_cfg;
1284 u32 intr_mask;
1285 u32 intr_set;
1286 uint intr_blocked;
1287
1288 struct ksz_desc_info rx_desc_info;
1289 struct ksz_desc_info tx_desc_info;
1290
1291 int tx_int_cnt;
1292 int tx_int_mask;
1293 int tx_size;
1294
1295 u8 perm_addr[MAC_ADDR_LEN];
1296 u8 override_addr[MAC_ADDR_LEN];
1297 u8 address[ADDITIONAL_ENTRIES][MAC_ADDR_LEN];
1298 u8 addr_list_size;
1299 u8 mac_override;
1300 u8 promiscuous;
1301 u8 all_multi;
1302 u8 multi_list[MAX_MULTICAST_LIST][MAC_ADDR_LEN];
1303 u8 multi_bits[HW_MULTICAST_SIZE];
1304 u8 multi_list_size;
1305
1306 u8 enabled;
1307 u8 rx_stop;
1308 u8 reserved2[1];
1309
1310 uint features;
1311 uint overrides;
1312
1313 void *parent;
1314};
1315
1316enum {
1317 PHY_NO_FLOW_CTRL,
1318 PHY_FLOW_CTRL,
1319 PHY_TX_ONLY,
1320 PHY_RX_ONLY
1321};
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343struct ksz_port {
1344 u8 duplex;
1345 u8 speed;
1346 u8 force_link;
1347 u8 flow_ctrl;
1348
1349 int first_port;
1350 int mib_port_cnt;
1351 int port_cnt;
1352 u64 counter[OID_COUNTER_LAST];
1353
1354 struct ksz_hw *hw;
1355 struct ksz_port_info *linked;
1356};
1357
1358
1359
1360
1361
1362
1363
1364
1365struct ksz_timer_info {
1366 struct timer_list timer;
1367 int cnt;
1368 int max;
1369 int period;
1370};
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380struct ksz_shared_mem {
1381 dma_addr_t dma_addr;
1382 uint alloc_size;
1383 uint phys;
1384 u8 *alloc_virt;
1385 u8 *virt;
1386};
1387
1388
1389
1390
1391
1392
1393
1394struct ksz_counter_info {
1395 wait_queue_head_t counter;
1396 unsigned long time;
1397 int read;
1398};
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424struct dev_info {
1425 struct net_device *dev;
1426 struct pci_dev *pdev;
1427
1428 struct ksz_hw hw;
1429 struct ksz_shared_mem desc_pool;
1430
1431 spinlock_t hwlock;
1432 struct mutex lock;
1433
1434 int (*dev_rcv)(struct dev_info *);
1435
1436 struct sk_buff *last_skb;
1437 int skb_index;
1438 int skb_len;
1439
1440 struct work_struct mib_read;
1441 struct ksz_timer_info mib_timer_info;
1442 struct ksz_counter_info counter[TOTAL_PORT_NUM];
1443
1444 int mtu;
1445 int opened;
1446
1447 struct tasklet_struct rx_tasklet;
1448 struct tasklet_struct tx_tasklet;
1449
1450 int wol_enable;
1451 int wol_support;
1452 unsigned long pme_wait;
1453};
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469struct dev_priv {
1470 struct dev_info *adapter;
1471 struct ksz_port port;
1472 struct ksz_timer_info monitor_timer_info;
1473
1474 struct semaphore proc_sem;
1475 int id;
1476
1477 struct mii_if_info mii_if;
1478 u32 advertising;
1479
1480 u32 msg_enable;
1481 int media_state;
1482 int multicast;
1483 int promiscuous;
1484};
1485
1486#define DRV_NAME "KSZ884X PCI"
1487#define DEVICE_NAME "KSZ884x PCI"
1488#define DRV_VERSION "1.0.0"
1489#define DRV_RELDATE "Feb 8, 2010"
1490
1491static char version[] __devinitdata =
1492 "Micrel " DEVICE_NAME " " DRV_VERSION " (" DRV_RELDATE ")";
1493
1494static u8 DEFAULT_MAC_ADDRESS[] = { 0x00, 0x10, 0xA1, 0x88, 0x42, 0x01 };
1495
1496
1497
1498
1499
1500static inline void hw_ack_intr(struct ksz_hw *hw, uint interrupt)
1501{
1502 writel(interrupt, hw->io + KS884X_INTERRUPTS_STATUS);
1503}
1504
1505static inline void hw_dis_intr(struct ksz_hw *hw)
1506{
1507 hw->intr_blocked = hw->intr_mask;
1508 writel(0, hw->io + KS884X_INTERRUPTS_ENABLE);
1509 hw->intr_set = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1510}
1511
1512static inline void hw_set_intr(struct ksz_hw *hw, uint interrupt)
1513{
1514 hw->intr_set = interrupt;
1515 writel(interrupt, hw->io + KS884X_INTERRUPTS_ENABLE);
1516}
1517
1518static inline void hw_ena_intr(struct ksz_hw *hw)
1519{
1520 hw->intr_blocked = 0;
1521 hw_set_intr(hw, hw->intr_mask);
1522}
1523
1524static inline void hw_dis_intr_bit(struct ksz_hw *hw, uint bit)
1525{
1526 hw->intr_mask &= ~(bit);
1527}
1528
1529static inline void hw_turn_off_intr(struct ksz_hw *hw, uint interrupt)
1530{
1531 u32 read_intr;
1532
1533 read_intr = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1534 hw->intr_set = read_intr & ~interrupt;
1535 writel(hw->intr_set, hw->io + KS884X_INTERRUPTS_ENABLE);
1536 hw_dis_intr_bit(hw, interrupt);
1537}
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547static void hw_turn_on_intr(struct ksz_hw *hw, u32 bit)
1548{
1549 hw->intr_mask |= bit;
1550
1551 if (!hw->intr_blocked)
1552 hw_set_intr(hw, hw->intr_mask);
1553}
1554
1555static inline void hw_ena_intr_bit(struct ksz_hw *hw, uint interrupt)
1556{
1557 u32 read_intr;
1558
1559 read_intr = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1560 hw->intr_set = read_intr | interrupt;
1561 writel(hw->intr_set, hw->io + KS884X_INTERRUPTS_ENABLE);
1562}
1563
1564static inline void hw_read_intr(struct ksz_hw *hw, uint *status)
1565{
1566 *status = readl(hw->io + KS884X_INTERRUPTS_STATUS);
1567 *status = *status & hw->intr_set;
1568}
1569
1570static inline void hw_restore_intr(struct ksz_hw *hw, uint interrupt)
1571{
1572 if (interrupt)
1573 hw_ena_intr(hw);
1574}
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584static uint hw_block_intr(struct ksz_hw *hw)
1585{
1586 uint interrupt = 0;
1587
1588 if (!hw->intr_blocked) {
1589 hw_dis_intr(hw);
1590 interrupt = hw->intr_blocked;
1591 }
1592 return interrupt;
1593}
1594
1595
1596
1597
1598
1599static inline void reset_desc(struct ksz_desc *desc, union desc_stat status)
1600{
1601 status.rx.hw_owned = 0;
1602 desc->phw->ctrl.data = cpu_to_le32(status.data);
1603}
1604
1605static inline void release_desc(struct ksz_desc *desc)
1606{
1607 desc->sw.ctrl.tx.hw_owned = 1;
1608 if (desc->sw.buf_size != desc->sw.buf.data) {
1609 desc->sw.buf_size = desc->sw.buf.data;
1610 desc->phw->buf.data = cpu_to_le32(desc->sw.buf.data);
1611 }
1612 desc->phw->ctrl.data = cpu_to_le32(desc->sw.ctrl.data);
1613}
1614
1615static void get_rx_pkt(struct ksz_desc_info *info, struct ksz_desc **desc)
1616{
1617 *desc = &info->ring[info->last];
1618 info->last++;
1619 info->last &= info->mask;
1620 info->avail--;
1621 (*desc)->sw.buf.data &= ~KS_DESC_RX_MASK;
1622}
1623
1624static inline void set_rx_buf(struct ksz_desc *desc, u32 addr)
1625{
1626 desc->phw->addr = cpu_to_le32(addr);
1627}
1628
1629static inline void set_rx_len(struct ksz_desc *desc, u32 len)
1630{
1631 desc->sw.buf.rx.buf_size = len;
1632}
1633
1634static inline void get_tx_pkt(struct ksz_desc_info *info,
1635 struct ksz_desc **desc)
1636{
1637 *desc = &info->ring[info->next];
1638 info->next++;
1639 info->next &= info->mask;
1640 info->avail--;
1641 (*desc)->sw.buf.data &= ~KS_DESC_TX_MASK;
1642}
1643
1644static inline void set_tx_buf(struct ksz_desc *desc, u32 addr)
1645{
1646 desc->phw->addr = cpu_to_le32(addr);
1647}
1648
1649static inline void set_tx_len(struct ksz_desc *desc, u32 len)
1650{
1651 desc->sw.buf.tx.buf_size = len;
1652}
1653
1654
1655
1656#define TABLE_READ 0x10
1657#define TABLE_SEL_SHIFT 2
1658
1659#define HW_DELAY(hw, reg) \
1660 do { \
1661 u16 dummy; \
1662 dummy = readw(hw->io + reg); \
1663 } while (0)
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675static void sw_r_table(struct ksz_hw *hw, int table, u16 addr, u32 *data)
1676{
1677 u16 ctrl_addr;
1678 uint interrupt;
1679
1680 ctrl_addr = (((table << TABLE_SEL_SHIFT) | TABLE_READ) << 8) | addr;
1681
1682 interrupt = hw_block_intr(hw);
1683
1684 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1685 HW_DELAY(hw, KS884X_IACR_OFFSET);
1686 *data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1687
1688 hw_restore_intr(hw, interrupt);
1689}
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702static void sw_w_table_64(struct ksz_hw *hw, int table, u16 addr, u32 data_hi,
1703 u32 data_lo)
1704{
1705 u16 ctrl_addr;
1706 uint interrupt;
1707
1708 ctrl_addr = ((table << TABLE_SEL_SHIFT) << 8) | addr;
1709
1710 interrupt = hw_block_intr(hw);
1711
1712 writel(data_hi, hw->io + KS884X_ACC_DATA_4_OFFSET);
1713 writel(data_lo, hw->io + KS884X_ACC_DATA_0_OFFSET);
1714
1715 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1716 HW_DELAY(hw, KS884X_IACR_OFFSET);
1717
1718 hw_restore_intr(hw, interrupt);
1719}
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735static void sw_w_sta_mac_table(struct ksz_hw *hw, u16 addr, u8 *mac_addr,
1736 u8 ports, int override, int valid, int use_fid, u8 fid)
1737{
1738 u32 data_hi;
1739 u32 data_lo;
1740
1741 data_lo = ((u32) mac_addr[2] << 24) |
1742 ((u32) mac_addr[3] << 16) |
1743 ((u32) mac_addr[4] << 8) | mac_addr[5];
1744 data_hi = ((u32) mac_addr[0] << 8) | mac_addr[1];
1745 data_hi |= (u32) ports << STATIC_MAC_FWD_PORTS_SHIFT;
1746
1747 if (override)
1748 data_hi |= STATIC_MAC_TABLE_OVERRIDE;
1749 if (use_fid) {
1750 data_hi |= STATIC_MAC_TABLE_USE_FID;
1751 data_hi |= (u32) fid << STATIC_MAC_FID_SHIFT;
1752 }
1753 if (valid)
1754 data_hi |= STATIC_MAC_TABLE_VALID;
1755
1756 sw_w_table_64(hw, TABLE_STATIC_MAC, addr, data_hi, data_lo);
1757}
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772static int sw_r_vlan_table(struct ksz_hw *hw, u16 addr, u16 *vid, u8 *fid,
1773 u8 *member)
1774{
1775 u32 data;
1776
1777 sw_r_table(hw, TABLE_VLAN, addr, &data);
1778 if (data & VLAN_TABLE_VALID) {
1779 *vid = (u16)(data & VLAN_TABLE_VID);
1780 *fid = (u8)((data & VLAN_TABLE_FID) >> VLAN_TABLE_FID_SHIFT);
1781 *member = (u8)((data & VLAN_TABLE_MEMBERSHIP) >>
1782 VLAN_TABLE_MEMBERSHIP_SHIFT);
1783 return 0;
1784 }
1785 return -1;
1786}
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798static void port_r_mib_cnt(struct ksz_hw *hw, int port, u16 addr, u64 *cnt)
1799{
1800 u32 data;
1801 u16 ctrl_addr;
1802 uint interrupt;
1803 int timeout;
1804
1805 ctrl_addr = addr + PORT_COUNTER_NUM * port;
1806
1807 interrupt = hw_block_intr(hw);
1808
1809 ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ) << 8);
1810 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1811 HW_DELAY(hw, KS884X_IACR_OFFSET);
1812
1813 for (timeout = 100; timeout > 0; timeout--) {
1814 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1815
1816 if (data & MIB_COUNTER_VALID) {
1817 if (data & MIB_COUNTER_OVERFLOW)
1818 *cnt += MIB_COUNTER_VALUE + 1;
1819 *cnt += data & MIB_COUNTER_VALUE;
1820 break;
1821 }
1822 }
1823
1824 hw_restore_intr(hw, interrupt);
1825}
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836static void port_r_mib_pkt(struct ksz_hw *hw, int port, u32 *last, u64 *cnt)
1837{
1838 u32 cur;
1839 u32 data;
1840 u16 ctrl_addr;
1841 uint interrupt;
1842 int index;
1843
1844 index = KS_MIB_PACKET_DROPPED_RX_0 + port;
1845 do {
1846 interrupt = hw_block_intr(hw);
1847
1848 ctrl_addr = (u16) index;
1849 ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ)
1850 << 8);
1851 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1852 HW_DELAY(hw, KS884X_IACR_OFFSET);
1853 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1854
1855 hw_restore_intr(hw, interrupt);
1856
1857 data &= MIB_PACKET_DROPPED;
1858 cur = *last;
1859 if (data != cur) {
1860 *last = data;
1861 if (data < cur)
1862 data += MIB_PACKET_DROPPED + 1;
1863 data -= cur;
1864 *cnt += data;
1865 }
1866 ++last;
1867 ++cnt;
1868 index -= KS_MIB_PACKET_DROPPED_TX -
1869 KS_MIB_PACKET_DROPPED_TX_0 + 1;
1870 } while (index >= KS_MIB_PACKET_DROPPED_TX_0 + port);
1871}
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884static int port_r_cnt(struct ksz_hw *hw, int port)
1885{
1886 struct ksz_port_mib *mib = &hw->port_mib[port];
1887
1888 if (mib->mib_start < PORT_COUNTER_NUM)
1889 while (mib->cnt_ptr < PORT_COUNTER_NUM) {
1890 port_r_mib_cnt(hw, port, mib->cnt_ptr,
1891 &mib->counter[mib->cnt_ptr]);
1892 ++mib->cnt_ptr;
1893 }
1894 if (hw->mib_cnt > PORT_COUNTER_NUM)
1895 port_r_mib_pkt(hw, port, mib->dropped,
1896 &mib->counter[PORT_COUNTER_NUM]);
1897 mib->cnt_ptr = 0;
1898 return 0;
1899}
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909static void port_init_cnt(struct ksz_hw *hw, int port)
1910{
1911 struct ksz_port_mib *mib = &hw->port_mib[port];
1912
1913 mib->cnt_ptr = 0;
1914 if (mib->mib_start < PORT_COUNTER_NUM)
1915 do {
1916 port_r_mib_cnt(hw, port, mib->cnt_ptr,
1917 &mib->counter[mib->cnt_ptr]);
1918 ++mib->cnt_ptr;
1919 } while (mib->cnt_ptr < PORT_COUNTER_NUM);
1920 if (hw->mib_cnt > PORT_COUNTER_NUM)
1921 port_r_mib_pkt(hw, port, mib->dropped,
1922 &mib->counter[PORT_COUNTER_NUM]);
1923 memset((void *) mib->counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
1924 mib->cnt_ptr = 0;
1925}
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943static int port_chk(struct ksz_hw *hw, int port, int offset, u16 bits)
1944{
1945 u32 addr;
1946 u16 data;
1947
1948 PORT_CTRL_ADDR(port, addr);
1949 addr += offset;
1950 data = readw(hw->io + addr);
1951 return (data & bits) == bits;
1952}
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964static void port_cfg(struct ksz_hw *hw, int port, int offset, u16 bits,
1965 int set)
1966{
1967 u32 addr;
1968 u16 data;
1969
1970 PORT_CTRL_ADDR(port, addr);
1971 addr += offset;
1972 data = readw(hw->io + addr);
1973 if (set)
1974 data |= bits;
1975 else
1976 data &= ~bits;
1977 writew(data, hw->io + addr);
1978}
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992static int port_chk_shift(struct ksz_hw *hw, int port, u32 addr, int shift)
1993{
1994 u16 data;
1995 u16 bit = 1 << port;
1996
1997 data = readw(hw->io + addr);
1998 data >>= shift;
1999 return (data & bit) == bit;
2000}
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012static void port_cfg_shift(struct ksz_hw *hw, int port, u32 addr, int shift,
2013 int set)
2014{
2015 u16 data;
2016 u16 bits = 1 << port;
2017
2018 data = readw(hw->io + addr);
2019 bits <<= shift;
2020 if (set)
2021 data |= bits;
2022 else
2023 data &= ~bits;
2024 writew(data, hw->io + addr);
2025}
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036static void port_r8(struct ksz_hw *hw, int port, int offset, u8 *data)
2037{
2038 u32 addr;
2039
2040 PORT_CTRL_ADDR(port, addr);
2041 addr += offset;
2042 *data = readb(hw->io + addr);
2043}
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054static void port_r16(struct ksz_hw *hw, int port, int offset, u16 *data)
2055{
2056 u32 addr;
2057
2058 PORT_CTRL_ADDR(port, addr);
2059 addr += offset;
2060 *data = readw(hw->io + addr);
2061}
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072static void port_w16(struct ksz_hw *hw, int port, int offset, u16 data)
2073{
2074 u32 addr;
2075
2076 PORT_CTRL_ADDR(port, addr);
2077 addr += offset;
2078 writew(data, hw->io + addr);
2079}
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092static int sw_chk(struct ksz_hw *hw, u32 addr, u16 bits)
2093{
2094 u16 data;
2095
2096 data = readw(hw->io + addr);
2097 return (data & bits) == bits;
2098}
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109static void sw_cfg(struct ksz_hw *hw, u32 addr, u16 bits, int set)
2110{
2111 u16 data;
2112
2113 data = readw(hw->io + addr);
2114 if (set)
2115 data |= bits;
2116 else
2117 data &= ~bits;
2118 writew(data, hw->io + addr);
2119}
2120
2121
2122
2123static inline void port_cfg_broad_storm(struct ksz_hw *hw, int p, int set)
2124{
2125 port_cfg(hw, p,
2126 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM, set);
2127}
2128
2129static inline int port_chk_broad_storm(struct ksz_hw *hw, int p)
2130{
2131 return port_chk(hw, p,
2132 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM);
2133}
2134
2135
2136#define BROADCAST_STORM_PROTECTION_RATE 10
2137
2138
2139#define BROADCAST_STORM_VALUE 9969
2140
2141
2142
2143
2144
2145
2146
2147
2148static void sw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2149{
2150 u16 data;
2151 u32 value = ((u32) BROADCAST_STORM_VALUE * (u32) percent / 100);
2152
2153 if (value > BROADCAST_STORM_RATE)
2154 value = BROADCAST_STORM_RATE;
2155
2156 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2157 data &= ~(BROADCAST_STORM_RATE_LO | BROADCAST_STORM_RATE_HI);
2158 data |= ((value & 0x00FF) << 8) | ((value & 0xFF00) >> 8);
2159 writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2160}
2161
2162
2163
2164
2165
2166
2167
2168
2169static void sw_get_broad_storm(struct ksz_hw *hw, u8 *percent)
2170{
2171 int num;
2172 u16 data;
2173
2174 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2175 num = (data & BROADCAST_STORM_RATE_HI);
2176 num <<= 8;
2177 num |= (data & BROADCAST_STORM_RATE_LO) >> 8;
2178 num = (num * 100 + BROADCAST_STORM_VALUE / 2) / BROADCAST_STORM_VALUE;
2179 *percent = (u8) num;
2180}
2181
2182
2183
2184
2185
2186
2187
2188
2189static void sw_dis_broad_storm(struct ksz_hw *hw, int port)
2190{
2191 port_cfg_broad_storm(hw, port, 0);
2192}
2193
2194
2195
2196
2197
2198
2199
2200
2201static void sw_ena_broad_storm(struct ksz_hw *hw, int port)
2202{
2203 sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2204 port_cfg_broad_storm(hw, port, 1);
2205}
2206
2207
2208
2209
2210
2211
2212
2213static void sw_init_broad_storm(struct ksz_hw *hw)
2214{
2215 int port;
2216
2217 hw->ksz_switch->broad_per = 1;
2218 sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2219 for (port = 0; port < TOTAL_PORT_NUM; port++)
2220 sw_dis_broad_storm(hw, port);
2221 sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, MULTICAST_STORM_DISABLE, 1);
2222}
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232static void hw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2233{
2234 if (percent > 100)
2235 percent = 100;
2236
2237 sw_cfg_broad_storm(hw, percent);
2238 sw_get_broad_storm(hw, &percent);
2239 hw->ksz_switch->broad_per = percent;
2240}
2241
2242
2243
2244
2245
2246
2247
2248
2249static void sw_dis_prio_rate(struct ksz_hw *hw, int port)
2250{
2251 u32 addr;
2252
2253 PORT_CTRL_ADDR(port, addr);
2254 addr += KS8842_PORT_IN_RATE_OFFSET;
2255 writel(0, hw->io + addr);
2256}
2257
2258
2259
2260
2261
2262
2263
2264static void sw_init_prio_rate(struct ksz_hw *hw)
2265{
2266 int port;
2267 int prio;
2268 struct ksz_switch *sw = hw->ksz_switch;
2269
2270 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2271 for (prio = 0; prio < PRIO_QUEUES; prio++) {
2272 sw->port_cfg[port].rx_rate[prio] =
2273 sw->port_cfg[port].tx_rate[prio] = 0;
2274 }
2275 sw_dis_prio_rate(hw, port);
2276 }
2277}
2278
2279
2280
2281static inline void port_cfg_back_pressure(struct ksz_hw *hw, int p, int set)
2282{
2283 port_cfg(hw, p,
2284 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE, set);
2285}
2286
2287static inline void port_cfg_force_flow_ctrl(struct ksz_hw *hw, int p, int set)
2288{
2289 port_cfg(hw, p,
2290 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL, set);
2291}
2292
2293static inline int port_chk_back_pressure(struct ksz_hw *hw, int p)
2294{
2295 return port_chk(hw, p,
2296 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE);
2297}
2298
2299static inline int port_chk_force_flow_ctrl(struct ksz_hw *hw, int p)
2300{
2301 return port_chk(hw, p,
2302 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL);
2303}
2304
2305
2306
2307static inline void port_cfg_dis_learn(struct ksz_hw *hw, int p, int set)
2308{
2309 port_cfg(hw, p,
2310 KS8842_PORT_CTRL_2_OFFSET, PORT_LEARN_DISABLE, set);
2311}
2312
2313static inline void port_cfg_rx(struct ksz_hw *hw, int p, int set)
2314{
2315 port_cfg(hw, p,
2316 KS8842_PORT_CTRL_2_OFFSET, PORT_RX_ENABLE, set);
2317}
2318
2319static inline void port_cfg_tx(struct ksz_hw *hw, int p, int set)
2320{
2321 port_cfg(hw, p,
2322 KS8842_PORT_CTRL_2_OFFSET, PORT_TX_ENABLE, set);
2323}
2324
2325static inline void sw_cfg_fast_aging(struct ksz_hw *hw, int set)
2326{
2327 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET, SWITCH_FAST_AGING, set);
2328}
2329
2330static inline void sw_flush_dyn_mac_table(struct ksz_hw *hw)
2331{
2332 if (!(hw->overrides & FAST_AGING)) {
2333 sw_cfg_fast_aging(hw, 1);
2334 mdelay(1);
2335 sw_cfg_fast_aging(hw, 0);
2336 }
2337}
2338
2339
2340
2341static inline void port_cfg_ins_tag(struct ksz_hw *hw, int p, int insert)
2342{
2343 port_cfg(hw, p,
2344 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG, insert);
2345}
2346
2347static inline void port_cfg_rmv_tag(struct ksz_hw *hw, int p, int remove)
2348{
2349 port_cfg(hw, p,
2350 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG, remove);
2351}
2352
2353static inline int port_chk_ins_tag(struct ksz_hw *hw, int p)
2354{
2355 return port_chk(hw, p,
2356 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG);
2357}
2358
2359static inline int port_chk_rmv_tag(struct ksz_hw *hw, int p)
2360{
2361 return port_chk(hw, p,
2362 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG);
2363}
2364
2365static inline void port_cfg_dis_non_vid(struct ksz_hw *hw, int p, int set)
2366{
2367 port_cfg(hw, p,
2368 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID, set);
2369}
2370
2371static inline void port_cfg_in_filter(struct ksz_hw *hw, int p, int set)
2372{
2373 port_cfg(hw, p,
2374 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER, set);
2375}
2376
2377static inline int port_chk_dis_non_vid(struct ksz_hw *hw, int p)
2378{
2379 return port_chk(hw, p,
2380 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID);
2381}
2382
2383static inline int port_chk_in_filter(struct ksz_hw *hw, int p)
2384{
2385 return port_chk(hw, p,
2386 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER);
2387}
2388
2389
2390
2391static inline void port_cfg_mirror_sniffer(struct ksz_hw *hw, int p, int set)
2392{
2393 port_cfg(hw, p,
2394 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_SNIFFER, set);
2395}
2396
2397static inline void port_cfg_mirror_rx(struct ksz_hw *hw, int p, int set)
2398{
2399 port_cfg(hw, p,
2400 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_RX, set);
2401}
2402
2403static inline void port_cfg_mirror_tx(struct ksz_hw *hw, int p, int set)
2404{
2405 port_cfg(hw, p,
2406 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_TX, set);
2407}
2408
2409static inline void sw_cfg_mirror_rx_tx(struct ksz_hw *hw, int set)
2410{
2411 sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, SWITCH_MIRROR_RX_TX, set);
2412}
2413
2414static void sw_init_mirror(struct ksz_hw *hw)
2415{
2416 int port;
2417
2418 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2419 port_cfg_mirror_sniffer(hw, port, 0);
2420 port_cfg_mirror_rx(hw, port, 0);
2421 port_cfg_mirror_tx(hw, port, 0);
2422 }
2423 sw_cfg_mirror_rx_tx(hw, 0);
2424}
2425
2426static inline void sw_cfg_unk_def_deliver(struct ksz_hw *hw, int set)
2427{
2428 sw_cfg(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2429 SWITCH_UNK_DEF_PORT_ENABLE, set);
2430}
2431
2432static inline int sw_cfg_chk_unk_def_deliver(struct ksz_hw *hw)
2433{
2434 return sw_chk(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2435 SWITCH_UNK_DEF_PORT_ENABLE);
2436}
2437
2438static inline void sw_cfg_unk_def_port(struct ksz_hw *hw, int port, int set)
2439{
2440 port_cfg_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0, set);
2441}
2442
2443static inline int sw_chk_unk_def_port(struct ksz_hw *hw, int port)
2444{
2445 return port_chk_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0);
2446}
2447
2448
2449
2450static inline void port_cfg_diffserv(struct ksz_hw *hw, int p, int set)
2451{
2452 port_cfg(hw, p,
2453 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE, set);
2454}
2455
2456static inline void port_cfg_802_1p(struct ksz_hw *hw, int p, int set)
2457{
2458 port_cfg(hw, p,
2459 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE, set);
2460}
2461
2462static inline void port_cfg_replace_vid(struct ksz_hw *hw, int p, int set)
2463{
2464 port_cfg(hw, p,
2465 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING, set);
2466}
2467
2468static inline void port_cfg_prio(struct ksz_hw *hw, int p, int set)
2469{
2470 port_cfg(hw, p,
2471 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE, set);
2472}
2473
2474static inline int port_chk_diffserv(struct ksz_hw *hw, int p)
2475{
2476 return port_chk(hw, p,
2477 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE);
2478}
2479
2480static inline int port_chk_802_1p(struct ksz_hw *hw, int p)
2481{
2482 return port_chk(hw, p,
2483 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE);
2484}
2485
2486static inline int port_chk_replace_vid(struct ksz_hw *hw, int p)
2487{
2488 return port_chk(hw, p,
2489 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING);
2490}
2491
2492static inline int port_chk_prio(struct ksz_hw *hw, int p)
2493{
2494 return port_chk(hw, p,
2495 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE);
2496}
2497
2498
2499
2500
2501
2502
2503
2504
2505static void sw_dis_diffserv(struct ksz_hw *hw, int port)
2506{
2507 port_cfg_diffserv(hw, port, 0);
2508}
2509
2510
2511
2512
2513
2514
2515
2516
2517static void sw_dis_802_1p(struct ksz_hw *hw, int port)
2518{
2519 port_cfg_802_1p(hw, port, 0);
2520}
2521
2522
2523
2524
2525
2526
2527
2528static void sw_cfg_replace_null_vid(struct ksz_hw *hw, int set)
2529{
2530 sw_cfg(hw, KS8842_SWITCH_CTRL_3_OFFSET, SWITCH_REPLACE_NULL_VID, set);
2531}
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544static void sw_cfg_replace_vid(struct ksz_hw *hw, int port, int set)
2545{
2546 port_cfg_replace_vid(hw, port, set);
2547}
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557static void sw_cfg_port_based(struct ksz_hw *hw, int port, u8 prio)
2558{
2559 u16 data;
2560
2561 if (prio > PORT_BASED_PRIORITY_BASE)
2562 prio = PORT_BASED_PRIORITY_BASE;
2563
2564 hw->ksz_switch->port_cfg[port].port_prio = prio;
2565
2566 port_r16(hw, port, KS8842_PORT_CTRL_1_OFFSET, &data);
2567 data &= ~PORT_BASED_PRIORITY_MASK;
2568 data |= prio << PORT_BASED_PRIORITY_SHIFT;
2569 port_w16(hw, port, KS8842_PORT_CTRL_1_OFFSET, data);
2570}
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580static void sw_dis_multi_queue(struct ksz_hw *hw, int port)
2581{
2582 port_cfg_prio(hw, port, 0);
2583}
2584
2585
2586
2587
2588
2589
2590
2591static void sw_init_prio(struct ksz_hw *hw)
2592{
2593 int port;
2594 int tos;
2595 struct ksz_switch *sw = hw->ksz_switch;
2596
2597
2598
2599
2600
2601 sw->p_802_1p[0] = 0;
2602 sw->p_802_1p[1] = 0;
2603 sw->p_802_1p[2] = 1;
2604 sw->p_802_1p[3] = 1;
2605 sw->p_802_1p[4] = 2;
2606 sw->p_802_1p[5] = 2;
2607 sw->p_802_1p[6] = 3;
2608 sw->p_802_1p[7] = 3;
2609
2610
2611
2612
2613
2614 for (tos = 0; tos < DIFFSERV_ENTRIES; tos++)
2615 sw->diffserv[tos] = 0;
2616
2617
2618 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2619 sw_dis_multi_queue(hw, port);
2620 sw_dis_diffserv(hw, port);
2621 sw_dis_802_1p(hw, port);
2622 sw_cfg_replace_vid(hw, port, 0);
2623
2624 sw->port_cfg[port].port_prio = 0;
2625 sw_cfg_port_based(hw, port, sw->port_cfg[port].port_prio);
2626 }
2627 sw_cfg_replace_null_vid(hw, 0);
2628}
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638static void port_get_def_vid(struct ksz_hw *hw, int port, u16 *vid)
2639{
2640 u32 addr;
2641
2642 PORT_CTRL_ADDR(port, addr);
2643 addr += KS8842_PORT_CTRL_VID_OFFSET;
2644 *vid = readw(hw->io + addr);
2645}
2646
2647
2648
2649
2650
2651
2652
2653static void sw_init_vlan(struct ksz_hw *hw)
2654{
2655 int port;
2656 int entry;
2657 struct ksz_switch *sw = hw->ksz_switch;
2658
2659
2660 for (entry = 0; entry < VLAN_TABLE_ENTRIES; entry++) {
2661 sw_r_vlan_table(hw, entry,
2662 &sw->vlan_table[entry].vid,
2663 &sw->vlan_table[entry].fid,
2664 &sw->vlan_table[entry].member);
2665 }
2666
2667 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2668 port_get_def_vid(hw, port, &sw->port_cfg[port].vid);
2669 sw->port_cfg[port].member = PORT_MASK;
2670 }
2671}
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681static void sw_cfg_port_base_vlan(struct ksz_hw *hw, int port, u8 member)
2682{
2683 u32 addr;
2684 u8 data;
2685
2686 PORT_CTRL_ADDR(port, addr);
2687 addr += KS8842_PORT_CTRL_2_OFFSET;
2688
2689 data = readb(hw->io + addr);
2690 data &= ~PORT_VLAN_MEMBERSHIP;
2691 data |= (member & PORT_MASK);
2692 writeb(data, hw->io + addr);
2693
2694 hw->ksz_switch->port_cfg[port].member = member;
2695}
2696
2697
2698
2699
2700
2701
2702
2703
2704static inline void sw_get_addr(struct ksz_hw *hw, u8 *mac_addr)
2705{
2706 int i;
2707
2708 for (i = 0; i < 6; i += 2) {
2709 mac_addr[i] = readb(hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2710 mac_addr[1 + i] = readb(hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2711 }
2712}
2713
2714
2715
2716
2717
2718
2719
2720
2721static void sw_set_addr(struct ksz_hw *hw, u8 *mac_addr)
2722{
2723 int i;
2724
2725 for (i = 0; i < 6; i += 2) {
2726 writeb(mac_addr[i], hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2727 writeb(mac_addr[1 + i], hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2728 }
2729}
2730
2731
2732
2733
2734
2735
2736
2737static void sw_set_global_ctrl(struct ksz_hw *hw)
2738{
2739 u16 data;
2740
2741
2742 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2743 data |= SWITCH_FLOW_CTRL;
2744 writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2745
2746 data = readw(hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2747
2748
2749 data |= SWITCH_AGGR_BACKOFF;
2750
2751
2752 data |= SWITCH_AGING_ENABLE;
2753 data |= SWITCH_LINK_AUTO_AGING;
2754
2755 if (hw->overrides & FAST_AGING)
2756 data |= SWITCH_FAST_AGING;
2757 else
2758 data &= ~SWITCH_FAST_AGING;
2759 writew(data, hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2760
2761 data = readw(hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2762
2763
2764 data |= NO_EXC_COLLISION_DROP;
2765 writew(data, hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2766}
2767
2768enum {
2769 STP_STATE_DISABLED = 0,
2770 STP_STATE_LISTENING,
2771 STP_STATE_LEARNING,
2772 STP_STATE_FORWARDING,
2773 STP_STATE_BLOCKED,
2774 STP_STATE_SIMPLE
2775};
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785static void port_set_stp_state(struct ksz_hw *hw, int port, int state)
2786{
2787 u16 data;
2788
2789 port_r16(hw, port, KS8842_PORT_CTRL_2_OFFSET, &data);
2790 switch (state) {
2791 case STP_STATE_DISABLED:
2792 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2793 data |= PORT_LEARN_DISABLE;
2794 break;
2795 case STP_STATE_LISTENING:
2796
2797
2798
2799
2800 data &= ~PORT_TX_ENABLE;
2801 data |= PORT_RX_ENABLE;
2802 data |= PORT_LEARN_DISABLE;
2803 break;
2804 case STP_STATE_LEARNING:
2805 data &= ~PORT_TX_ENABLE;
2806 data |= PORT_RX_ENABLE;
2807 data &= ~PORT_LEARN_DISABLE;
2808 break;
2809 case STP_STATE_FORWARDING:
2810 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2811 data &= ~PORT_LEARN_DISABLE;
2812 break;
2813 case STP_STATE_BLOCKED:
2814
2815
2816
2817
2818 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2819 data |= PORT_LEARN_DISABLE;
2820 break;
2821 case STP_STATE_SIMPLE:
2822 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2823 data |= PORT_LEARN_DISABLE;
2824 break;
2825 }
2826 port_w16(hw, port, KS8842_PORT_CTRL_2_OFFSET, data);
2827 hw->ksz_switch->port_cfg[port].stp_state = state;
2828}
2829
2830#define STP_ENTRY 0
2831#define BROADCAST_ENTRY 1
2832#define BRIDGE_ADDR_ENTRY 2
2833#define IPV6_ADDR_ENTRY 3
2834
2835
2836
2837
2838
2839
2840
2841static void sw_clr_sta_mac_table(struct ksz_hw *hw)
2842{
2843 struct ksz_mac_table *entry;
2844 int i;
2845
2846 for (i = 0; i < STATIC_MAC_TABLE_ENTRIES; i++) {
2847 entry = &hw->ksz_switch->mac_table[i];
2848 sw_w_sta_mac_table(hw, i,
2849 entry->mac_addr, entry->ports,
2850 entry->override, 0,
2851 entry->use_fid, entry->fid);
2852 }
2853}
2854
2855
2856
2857
2858
2859
2860
2861static void sw_init_stp(struct ksz_hw *hw)
2862{
2863 struct ksz_mac_table *entry;
2864
2865 entry = &hw->ksz_switch->mac_table[STP_ENTRY];
2866 entry->mac_addr[0] = 0x01;
2867 entry->mac_addr[1] = 0x80;
2868 entry->mac_addr[2] = 0xC2;
2869 entry->mac_addr[3] = 0x00;
2870 entry->mac_addr[4] = 0x00;
2871 entry->mac_addr[5] = 0x00;
2872 entry->ports = HOST_MASK;
2873 entry->override = 1;
2874 entry->valid = 1;
2875 sw_w_sta_mac_table(hw, STP_ENTRY,
2876 entry->mac_addr, entry->ports,
2877 entry->override, entry->valid,
2878 entry->use_fid, entry->fid);
2879}
2880
2881
2882
2883
2884
2885
2886
2887static void sw_block_addr(struct ksz_hw *hw)
2888{
2889 struct ksz_mac_table *entry;
2890 int i;
2891
2892 for (i = BROADCAST_ENTRY; i <= IPV6_ADDR_ENTRY; i++) {
2893 entry = &hw->ksz_switch->mac_table[i];
2894 entry->valid = 0;
2895 sw_w_sta_mac_table(hw, i,
2896 entry->mac_addr, entry->ports,
2897 entry->override, entry->valid,
2898 entry->use_fid, entry->fid);
2899 }
2900}
2901
2902#define PHY_LINK_SUPPORT \
2903 (PHY_AUTO_NEG_ASYM_PAUSE | \
2904 PHY_AUTO_NEG_SYM_PAUSE | \
2905 PHY_AUTO_NEG_100BT4 | \
2906 PHY_AUTO_NEG_100BTX_FD | \
2907 PHY_AUTO_NEG_100BTX | \
2908 PHY_AUTO_NEG_10BT_FD | \
2909 PHY_AUTO_NEG_10BT)
2910
2911static inline void hw_r_phy_ctrl(struct ksz_hw *hw, int phy, u16 *data)
2912{
2913 *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2914}
2915
2916static inline void hw_w_phy_ctrl(struct ksz_hw *hw, int phy, u16 data)
2917{
2918 writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2919}
2920
2921static inline void hw_r_phy_link_stat(struct ksz_hw *hw, int phy, u16 *data)
2922{
2923 *data = readw(hw->io + phy + KS884X_PHY_STATUS_OFFSET);
2924}
2925
2926static inline void hw_r_phy_auto_neg(struct ksz_hw *hw, int phy, u16 *data)
2927{
2928 *data = readw(hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2929}
2930
2931static inline void hw_w_phy_auto_neg(struct ksz_hw *hw, int phy, u16 data)
2932{
2933 writew(data, hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2934}
2935
2936static inline void hw_r_phy_rem_cap(struct ksz_hw *hw, int phy, u16 *data)
2937{
2938 *data = readw(hw->io + phy + KS884X_PHY_REMOTE_CAP_OFFSET);
2939}
2940
2941static inline void hw_r_phy_crossover(struct ksz_hw *hw, int phy, u16 *data)
2942{
2943 *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2944}
2945
2946static inline void hw_w_phy_crossover(struct ksz_hw *hw, int phy, u16 data)
2947{
2948 writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2949}
2950
2951static inline void hw_r_phy_polarity(struct ksz_hw *hw, int phy, u16 *data)
2952{
2953 *data = readw(hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2954}
2955
2956static inline void hw_w_phy_polarity(struct ksz_hw *hw, int phy, u16 data)
2957{
2958 writew(data, hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2959}
2960
2961static inline void hw_r_phy_link_md(struct ksz_hw *hw, int phy, u16 *data)
2962{
2963 *data = readw(hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2964}
2965
2966static inline void hw_w_phy_link_md(struct ksz_hw *hw, int phy, u16 data)
2967{
2968 writew(data, hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2969}
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980static void hw_r_phy(struct ksz_hw *hw, int port, u16 reg, u16 *val)
2981{
2982 int phy;
2983
2984 phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
2985 *val = readw(hw->io + phy);
2986}
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997static void hw_w_phy(struct ksz_hw *hw, int port, u16 reg, u16 val)
2998{
2999 int phy;
3000
3001 phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
3002 writew(val, hw->io + phy);
3003}
3004
3005
3006
3007
3008
3009#define AT93C_CODE 0
3010#define AT93C_WR_OFF 0x00
3011#define AT93C_WR_ALL 0x10
3012#define AT93C_ER_ALL 0x20
3013#define AT93C_WR_ON 0x30
3014
3015#define AT93C_WRITE 1
3016#define AT93C_READ 2
3017#define AT93C_ERASE 3
3018
3019#define EEPROM_DELAY 4
3020
3021static inline void drop_gpio(struct ksz_hw *hw, u8 gpio)
3022{
3023 u16 data;
3024
3025 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3026 data &= ~gpio;
3027 writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3028}
3029
3030static inline void raise_gpio(struct ksz_hw *hw, u8 gpio)
3031{
3032 u16 data;
3033
3034 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3035 data |= gpio;
3036 writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3037}
3038
3039static inline u8 state_gpio(struct ksz_hw *hw, u8 gpio)
3040{
3041 u16 data;
3042
3043 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3044 return (u8)(data & gpio);
3045}
3046
3047static void eeprom_clk(struct ksz_hw *hw)
3048{
3049 raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3050 udelay(EEPROM_DELAY);
3051 drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3052 udelay(EEPROM_DELAY);
3053}
3054
3055static u16 spi_r(struct ksz_hw *hw)
3056{
3057 int i;
3058 u16 temp = 0;
3059
3060 for (i = 15; i >= 0; i--) {
3061 raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3062 udelay(EEPROM_DELAY);
3063
3064 temp |= (state_gpio(hw, EEPROM_DATA_IN)) ? 1 << i : 0;
3065
3066 drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3067 udelay(EEPROM_DELAY);
3068 }
3069 return temp;
3070}
3071
3072static void spi_w(struct ksz_hw *hw, u16 data)
3073{
3074 int i;
3075
3076 for (i = 15; i >= 0; i--) {
3077 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3078 drop_gpio(hw, EEPROM_DATA_OUT);
3079 eeprom_clk(hw);
3080 }
3081}
3082
3083static void spi_reg(struct ksz_hw *hw, u8 data, u8 reg)
3084{
3085 int i;
3086
3087
3088 raise_gpio(hw, EEPROM_DATA_OUT);
3089 eeprom_clk(hw);
3090
3091
3092 for (i = 1; i >= 0; i--) {
3093 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3094 drop_gpio(hw, EEPROM_DATA_OUT);
3095 eeprom_clk(hw);
3096 }
3097
3098
3099 for (i = 5; i >= 0; i--) {
3100 (reg & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3101 drop_gpio(hw, EEPROM_DATA_OUT);
3102 eeprom_clk(hw);
3103 }
3104}
3105
3106#define EEPROM_DATA_RESERVED 0
3107#define EEPROM_DATA_MAC_ADDR_0 1
3108#define EEPROM_DATA_MAC_ADDR_1 2
3109#define EEPROM_DATA_MAC_ADDR_2 3
3110#define EEPROM_DATA_SUBSYS_ID 4
3111#define EEPROM_DATA_SUBSYS_VEN_ID 5
3112#define EEPROM_DATA_PM_CAP 6
3113
3114
3115#define EEPROM_DATA_OTHER_MAC_ADDR 9
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126static u16 eeprom_read(struct ksz_hw *hw, u8 reg)
3127{
3128 u16 data;
3129
3130 raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3131
3132 spi_reg(hw, AT93C_READ, reg);
3133 data = spi_r(hw);
3134
3135 drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3136
3137 return data;
3138}
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148static void eeprom_write(struct ksz_hw *hw, u8 reg, u16 data)
3149{
3150 int timeout;
3151
3152 raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3153
3154
3155 spi_reg(hw, AT93C_CODE, AT93C_WR_ON);
3156 drop_gpio(hw, EEPROM_CHIP_SELECT);
3157 udelay(1);
3158
3159
3160 raise_gpio(hw, EEPROM_CHIP_SELECT);
3161 spi_reg(hw, AT93C_ERASE, reg);
3162 drop_gpio(hw, EEPROM_CHIP_SELECT);
3163 udelay(1);
3164
3165
3166 raise_gpio(hw, EEPROM_CHIP_SELECT);
3167 timeout = 8;
3168 mdelay(2);
3169 do {
3170 mdelay(1);
3171 } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3172 drop_gpio(hw, EEPROM_CHIP_SELECT);
3173 udelay(1);
3174
3175
3176 raise_gpio(hw, EEPROM_CHIP_SELECT);
3177 spi_reg(hw, AT93C_WRITE, reg);
3178 spi_w(hw, data);
3179 drop_gpio(hw, EEPROM_CHIP_SELECT);
3180 udelay(1);
3181
3182
3183 raise_gpio(hw, EEPROM_CHIP_SELECT);
3184 timeout = 8;
3185 mdelay(2);
3186 do {
3187 mdelay(1);
3188 } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3189 drop_gpio(hw, EEPROM_CHIP_SELECT);
3190 udelay(1);
3191
3192
3193 raise_gpio(hw, EEPROM_CHIP_SELECT);
3194 spi_reg(hw, AT93C_CODE, AT93C_WR_OFF);
3195
3196 drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3197}
3198
3199
3200
3201
3202
3203static u16 advertised_flow_ctrl(struct ksz_port *port, u16 ctrl)
3204{
3205 ctrl &= ~PORT_AUTO_NEG_SYM_PAUSE;
3206 switch (port->flow_ctrl) {
3207 case PHY_FLOW_CTRL:
3208 ctrl |= PORT_AUTO_NEG_SYM_PAUSE;
3209 break;
3210
3211 case PHY_TX_ONLY:
3212 case PHY_RX_ONLY:
3213 default:
3214 break;
3215 }
3216 return ctrl;
3217}
3218
3219static void set_flow_ctrl(struct ksz_hw *hw, int rx, int tx)
3220{
3221 u32 rx_cfg;
3222 u32 tx_cfg;
3223
3224 rx_cfg = hw->rx_cfg;
3225 tx_cfg = hw->tx_cfg;
3226 if (rx)
3227 hw->rx_cfg |= DMA_RX_FLOW_ENABLE;
3228 else
3229 hw->rx_cfg &= ~DMA_RX_FLOW_ENABLE;
3230 if (tx)
3231 hw->tx_cfg |= DMA_TX_FLOW_ENABLE;
3232 else
3233 hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3234 if (hw->enabled) {
3235 if (rx_cfg != hw->rx_cfg)
3236 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3237 if (tx_cfg != hw->tx_cfg)
3238 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3239 }
3240}
3241
3242static void determine_flow_ctrl(struct ksz_hw *hw, struct ksz_port *port,
3243 u16 local, u16 remote)
3244{
3245 int rx;
3246 int tx;
3247
3248 if (hw->overrides & PAUSE_FLOW_CTRL)
3249 return;
3250
3251 rx = tx = 0;
3252 if (port->force_link)
3253 rx = tx = 1;
3254 if (remote & PHY_AUTO_NEG_SYM_PAUSE) {
3255 if (local & PHY_AUTO_NEG_SYM_PAUSE) {
3256 rx = tx = 1;
3257 } else if ((remote & PHY_AUTO_NEG_ASYM_PAUSE) &&
3258 (local & PHY_AUTO_NEG_PAUSE) ==
3259 PHY_AUTO_NEG_ASYM_PAUSE) {
3260 tx = 1;
3261 }
3262 } else if (remote & PHY_AUTO_NEG_ASYM_PAUSE) {
3263 if ((local & PHY_AUTO_NEG_PAUSE) == PHY_AUTO_NEG_PAUSE)
3264 rx = 1;
3265 }
3266 if (!hw->ksz_switch)
3267 set_flow_ctrl(hw, rx, tx);
3268}
3269
3270static inline void port_cfg_change(struct ksz_hw *hw, struct ksz_port *port,
3271 struct ksz_port_info *info, u16 link_status)
3272{
3273 if ((hw->features & HALF_DUPLEX_SIGNAL_BUG) &&
3274 !(hw->overrides & PAUSE_FLOW_CTRL)) {
3275 u32 cfg = hw->tx_cfg;
3276
3277
3278 if (1 == info->duplex)
3279 hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3280 if (hw->enabled && cfg != hw->tx_cfg)
3281 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3282 }
3283}
3284
3285
3286
3287
3288
3289
3290
3291
3292static void port_get_link_speed(struct ksz_port *port)
3293{
3294 uint interrupt;
3295 struct ksz_port_info *info;
3296 struct ksz_port_info *linked = NULL;
3297 struct ksz_hw *hw = port->hw;
3298 u16 data;
3299 u16 status;
3300 u8 local;
3301 u8 remote;
3302 int i;
3303 int p;
3304 int change = 0;
3305
3306 interrupt = hw_block_intr(hw);
3307
3308 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3309 info = &hw->port_info[p];
3310 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3311 port_r16(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3312
3313
3314
3315
3316
3317 remote = status & (PORT_AUTO_NEG_COMPLETE |
3318 PORT_STATUS_LINK_GOOD);
3319 local = (u8) data;
3320
3321
3322 if (local == info->advertised && remote == info->partner)
3323 continue;
3324
3325 info->advertised = local;
3326 info->partner = remote;
3327 if (status & PORT_STATUS_LINK_GOOD) {
3328
3329
3330 if (!linked)
3331 linked = info;
3332
3333 info->tx_rate = 10 * TX_RATE_UNIT;
3334 if (status & PORT_STATUS_SPEED_100MBIT)
3335 info->tx_rate = 100 * TX_RATE_UNIT;
3336
3337 info->duplex = 1;
3338 if (status & PORT_STATUS_FULL_DUPLEX)
3339 info->duplex = 2;
3340
3341 if (media_connected != info->state) {
3342 hw_r_phy(hw, p, KS884X_PHY_AUTO_NEG_OFFSET,
3343 &data);
3344 hw_r_phy(hw, p, KS884X_PHY_REMOTE_CAP_OFFSET,
3345 &status);
3346 determine_flow_ctrl(hw, port, data, status);
3347 if (hw->ksz_switch) {
3348 port_cfg_back_pressure(hw, p,
3349 (1 == info->duplex));
3350 }
3351 change |= 1 << i;
3352 port_cfg_change(hw, port, info, status);
3353 }
3354 info->state = media_connected;
3355 } else {
3356 if (media_disconnected != info->state) {
3357 change |= 1 << i;
3358
3359
3360 hw->port_mib[p].link_down = 1;
3361 }
3362 info->state = media_disconnected;
3363 }
3364 hw->port_mib[p].state = (u8) info->state;
3365 }
3366
3367 if (linked && media_disconnected == port->linked->state)
3368 port->linked = linked;
3369
3370 hw_restore_intr(hw, interrupt);
3371}
3372
3373#define PHY_RESET_TIMEOUT 10
3374
3375
3376
3377
3378
3379
3380
3381static void port_set_link_speed(struct ksz_port *port)
3382{
3383 struct ksz_port_info *info;
3384 struct ksz_hw *hw = port->hw;
3385 u16 data;
3386 u16 cfg;
3387 u8 status;
3388 int i;
3389 int p;
3390
3391 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3392 info = &hw->port_info[p];
3393
3394 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3395 port_r8(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3396
3397 cfg = 0;
3398 if (status & PORT_STATUS_LINK_GOOD)
3399 cfg = data;
3400
3401 data |= PORT_AUTO_NEG_ENABLE;
3402 data = advertised_flow_ctrl(port, data);
3403
3404 data |= PORT_AUTO_NEG_100BTX_FD | PORT_AUTO_NEG_100BTX |
3405 PORT_AUTO_NEG_10BT_FD | PORT_AUTO_NEG_10BT;
3406
3407
3408 if (port->speed || port->duplex) {
3409 if (10 == port->speed)
3410 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3411 PORT_AUTO_NEG_100BTX);
3412 else if (100 == port->speed)
3413 data &= ~(PORT_AUTO_NEG_10BT_FD |
3414 PORT_AUTO_NEG_10BT);
3415 if (1 == port->duplex)
3416 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3417 PORT_AUTO_NEG_10BT_FD);
3418 else if (2 == port->duplex)
3419 data &= ~(PORT_AUTO_NEG_100BTX |
3420 PORT_AUTO_NEG_10BT);
3421 }
3422 if (data != cfg) {
3423 data |= PORT_AUTO_NEG_RESTART;
3424 port_w16(hw, p, KS884X_PORT_CTRL_4_OFFSET, data);
3425 }
3426 }
3427}
3428
3429
3430
3431
3432
3433
3434
3435static void port_force_link_speed(struct ksz_port *port)
3436{
3437 struct ksz_hw *hw = port->hw;
3438 u16 data;
3439 int i;
3440 int phy;
3441 int p;
3442
3443 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3444 phy = KS884X_PHY_1_CTRL_OFFSET + p * PHY_CTRL_INTERVAL;
3445 hw_r_phy_ctrl(hw, phy, &data);
3446
3447 data &= ~PHY_AUTO_NEG_ENABLE;
3448
3449 if (10 == port->speed)
3450 data &= ~PHY_SPEED_100MBIT;
3451 else if (100 == port->speed)
3452 data |= PHY_SPEED_100MBIT;
3453 if (1 == port->duplex)
3454 data &= ~PHY_FULL_DUPLEX;
3455 else if (2 == port->duplex)
3456 data |= PHY_FULL_DUPLEX;
3457 hw_w_phy_ctrl(hw, phy, data);
3458 }
3459}
3460
3461static void port_set_power_saving(struct ksz_port *port, int enable)
3462{
3463 struct ksz_hw *hw = port->hw;
3464 int i;
3465 int p;
3466
3467 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++)
3468 port_cfg(hw, p,
3469 KS884X_PORT_CTRL_4_OFFSET, PORT_POWER_DOWN, enable);
3470}
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484static int hw_chk_wol_pme_status(struct ksz_hw *hw)
3485{
3486 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3487 struct pci_dev *pdev = hw_priv->pdev;
3488 u16 data;
3489
3490 if (!pdev->pm_cap)
3491 return 0;
3492 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3493 return (data & PCI_PM_CTRL_PME_STATUS) == PCI_PM_CTRL_PME_STATUS;
3494}
3495
3496
3497
3498
3499
3500
3501
3502static void hw_clr_wol_pme_status(struct ksz_hw *hw)
3503{
3504 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3505 struct pci_dev *pdev = hw_priv->pdev;
3506 u16 data;
3507
3508 if (!pdev->pm_cap)
3509 return;
3510
3511
3512 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3513 data |= PCI_PM_CTRL_PME_STATUS;
3514 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3515}
3516
3517
3518
3519
3520
3521
3522
3523
3524static void hw_cfg_wol_pme(struct ksz_hw *hw, int set)
3525{
3526 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3527 struct pci_dev *pdev = hw_priv->pdev;
3528 u16 data;
3529
3530 if (!pdev->pm_cap)
3531 return;
3532 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3533 data &= ~PCI_PM_CTRL_STATE_MASK;
3534 if (set)
3535 data |= PCI_PM_CTRL_PME_ENABLE | PCI_D3hot;
3536 else
3537 data &= ~PCI_PM_CTRL_PME_ENABLE;
3538 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3539}
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549static void hw_cfg_wol(struct ksz_hw *hw, u16 frame, int set)
3550{
3551 u16 data;
3552
3553 data = readw(hw->io + KS8841_WOL_CTRL_OFFSET);
3554 if (set)
3555 data |= frame;
3556 else
3557 data &= ~frame;
3558 writew(data, hw->io + KS8841_WOL_CTRL_OFFSET);
3559}
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572static void hw_set_wol_frame(struct ksz_hw *hw, int i, uint mask_size,
3573 const u8 *mask, uint frame_size, const u8 *pattern)
3574{
3575 int bits;
3576 int from;
3577 int len;
3578 int to;
3579 u32 crc;
3580 u8 data[64];
3581 u8 val = 0;
3582
3583 if (frame_size > mask_size * 8)
3584 frame_size = mask_size * 8;
3585 if (frame_size > 64)
3586 frame_size = 64;
3587
3588 i *= 0x10;
3589 writel(0, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i);
3590 writel(0, hw->io + KS8841_WOL_FRAME_BYTE2_OFFSET + i);
3591
3592 bits = len = from = to = 0;
3593 do {
3594 if (bits) {
3595 if ((val & 1))
3596 data[to++] = pattern[from];
3597 val >>= 1;
3598 ++from;
3599 --bits;
3600 } else {
3601 val = mask[len];
3602 writeb(val, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i
3603 + len);
3604 ++len;
3605 if (val)
3606 bits = 8;
3607 else
3608 from += 8;
3609 }
3610 } while (from < (int) frame_size);
3611 if (val) {
3612 bits = mask[len - 1];
3613 val <<= (from % 8);
3614 bits &= ~val;
3615 writeb(bits, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i + len -
3616 1);
3617 }
3618 crc = ether_crc(to, data);
3619 writel(crc, hw->io + KS8841_WOL_FRAME_CRC_OFFSET + i);
3620}
3621
3622
3623
3624
3625
3626
3627
3628
3629static void hw_add_wol_arp(struct ksz_hw *hw, const u8 *ip_addr)
3630{
3631 static const u8 mask[6] = { 0x3F, 0xF0, 0x3F, 0x00, 0xC0, 0x03 };
3632 u8 pattern[42] = {
3633 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
3634 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3635 0x08, 0x06,
3636 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01,
3637 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3638 0x00, 0x00, 0x00, 0x00,
3639 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3640 0x00, 0x00, 0x00, 0x00 };
3641
3642 memcpy(&pattern[38], ip_addr, 4);
3643 hw_set_wol_frame(hw, 3, 6, mask, 42, pattern);
3644}
3645
3646
3647
3648
3649
3650
3651
3652static void hw_add_wol_bcast(struct ksz_hw *hw)
3653{
3654 static const u8 mask[] = { 0x3F };
3655 static const u8 pattern[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
3656
3657 hw_set_wol_frame(hw, 2, 1, mask, MAC_ADDR_LEN, pattern);
3658}
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670static void hw_add_wol_mcast(struct ksz_hw *hw)
3671{
3672 static const u8 mask[] = { 0x3F };
3673 u8 pattern[] = { 0x33, 0x33, 0xFF, 0x00, 0x00, 0x00 };
3674
3675 memcpy(&pattern[3], &hw->override_addr[3], 3);
3676 hw_set_wol_frame(hw, 1, 1, mask, 6, pattern);
3677}
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688static void hw_add_wol_ucast(struct ksz_hw *hw)
3689{
3690 static const u8 mask[] = { 0x3F };
3691
3692 hw_set_wol_frame(hw, 0, 1, mask, MAC_ADDR_LEN, hw->override_addr);
3693}
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703static void hw_enable_wol(struct ksz_hw *hw, u32 wol_enable, const u8 *net_addr)
3704{
3705 hw_cfg_wol(hw, KS8841_WOL_MAGIC_ENABLE, (wol_enable & WAKE_MAGIC));
3706 hw_cfg_wol(hw, KS8841_WOL_FRAME0_ENABLE, (wol_enable & WAKE_UCAST));
3707 hw_add_wol_ucast(hw);
3708 hw_cfg_wol(hw, KS8841_WOL_FRAME1_ENABLE, (wol_enable & WAKE_MCAST));
3709 hw_add_wol_mcast(hw);
3710 hw_cfg_wol(hw, KS8841_WOL_FRAME2_ENABLE, (wol_enable & WAKE_BCAST));
3711 hw_cfg_wol(hw, KS8841_WOL_FRAME3_ENABLE, (wol_enable & WAKE_ARP));
3712 hw_add_wol_arp(hw, net_addr);
3713}
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724static int hw_init(struct ksz_hw *hw)
3725{
3726 int rc = 0;
3727 u16 data;
3728 u16 revision;
3729
3730
3731 writew(BUS_SPEED_125_MHZ, hw->io + KS884X_BUS_CTRL_OFFSET);
3732
3733
3734 data = readw(hw->io + KS884X_CHIP_ID_OFFSET);
3735
3736 revision = (data & KS884X_REVISION_MASK) >> KS884X_REVISION_SHIFT;
3737 data &= KS884X_CHIP_ID_MASK_41;
3738 if (REG_CHIP_ID_41 == data)
3739 rc = 1;
3740 else if (REG_CHIP_ID_42 == data)
3741 rc = 2;
3742 else
3743 return 0;
3744
3745
3746 if (revision <= 1) {
3747 hw->features |= SMALL_PACKET_TX_BUG;
3748 if (1 == rc)
3749 hw->features |= HALF_DUPLEX_SIGNAL_BUG;
3750 }
3751 return rc;
3752}
3753
3754
3755
3756
3757
3758
3759
3760static void hw_reset(struct ksz_hw *hw)
3761{
3762 writew(GLOBAL_SOFTWARE_RESET, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3763
3764
3765 mdelay(10);
3766
3767
3768 writew(0, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3769}
3770
3771
3772
3773
3774
3775
3776
3777static void hw_setup(struct ksz_hw *hw)
3778{
3779#if SET_DEFAULT_LED
3780 u16 data;
3781
3782
3783 data = readw(hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3784 data &= ~LED_MODE;
3785 data |= SET_DEFAULT_LED;
3786 writew(data, hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3787#endif
3788
3789
3790 hw->tx_cfg = (DMA_TX_PAD_ENABLE | DMA_TX_CRC_ENABLE |
3791 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_TX_ENABLE);
3792
3793
3794 hw->rx_cfg = (DMA_RX_BROADCAST | DMA_RX_UNICAST |
3795 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_RX_ENABLE);
3796 hw->rx_cfg |= KS884X_DMA_RX_MULTICAST;
3797
3798
3799 hw->rx_cfg |= (DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP);
3800
3801 if (hw->all_multi)
3802 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
3803 if (hw->promiscuous)
3804 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
3805}
3806
3807
3808
3809
3810
3811
3812
3813static void hw_setup_intr(struct ksz_hw *hw)
3814{
3815 hw->intr_mask = KS884X_INT_MASK | KS884X_INT_RX_OVERRUN;
3816}
3817
3818static void ksz_check_desc_num(struct ksz_desc_info *info)
3819{
3820#define MIN_DESC_SHIFT 2
3821
3822 int alloc = info->alloc;
3823 int shift;
3824
3825 shift = 0;
3826 while (!(alloc & 1)) {
3827 shift++;
3828 alloc >>= 1;
3829 }
3830 if (alloc != 1 || shift < MIN_DESC_SHIFT) {
3831 pr_alert("Hardware descriptor numbers not right!\n");
3832 while (alloc) {
3833 shift++;
3834 alloc >>= 1;
3835 }
3836 if (shift < MIN_DESC_SHIFT)
3837 shift = MIN_DESC_SHIFT;
3838 alloc = 1 << shift;
3839 info->alloc = alloc;
3840 }
3841 info->mask = info->alloc - 1;
3842}
3843
3844static void hw_init_desc(struct ksz_desc_info *desc_info, int transmit)
3845{
3846 int i;
3847 u32 phys = desc_info->ring_phys;
3848 struct ksz_hw_desc *desc = desc_info->ring_virt;
3849 struct ksz_desc *cur = desc_info->ring;
3850 struct ksz_desc *previous = NULL;
3851
3852 for (i = 0; i < desc_info->alloc; i++) {
3853 cur->phw = desc++;
3854 phys += desc_info->size;
3855 previous = cur++;
3856 previous->phw->next = cpu_to_le32(phys);
3857 }
3858 previous->phw->next = cpu_to_le32(desc_info->ring_phys);
3859 previous->sw.buf.rx.end_of_ring = 1;
3860 previous->phw->buf.data = cpu_to_le32(previous->sw.buf.data);
3861
3862 desc_info->avail = desc_info->alloc;
3863 desc_info->last = desc_info->next = 0;
3864
3865 desc_info->cur = desc_info->ring;
3866}
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876static void hw_set_desc_base(struct ksz_hw *hw, u32 tx_addr, u32 rx_addr)
3877{
3878
3879 writel(tx_addr, hw->io + KS_DMA_TX_ADDR);
3880 writel(rx_addr, hw->io + KS_DMA_RX_ADDR);
3881}
3882
3883static void hw_reset_pkts(struct ksz_desc_info *info)
3884{
3885 info->cur = info->ring;
3886 info->avail = info->alloc;
3887 info->last = info->next = 0;
3888}
3889
3890static inline void hw_resume_rx(struct ksz_hw *hw)
3891{
3892 writel(DMA_START, hw->io + KS_DMA_RX_START);
3893}
3894
3895
3896
3897
3898
3899
3900
3901static void hw_start_rx(struct ksz_hw *hw)
3902{
3903 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3904
3905
3906 hw->intr_mask |= KS884X_INT_RX_STOPPED;
3907
3908 writel(DMA_START, hw->io + KS_DMA_RX_START);
3909 hw_ack_intr(hw, KS884X_INT_RX_STOPPED);
3910 hw->rx_stop++;
3911
3912
3913 if (0 == hw->rx_stop)
3914 hw->rx_stop = 2;
3915}
3916
3917
3918
3919
3920
3921
3922
3923static void hw_stop_rx(struct ksz_hw *hw)
3924{
3925 hw->rx_stop = 0;
3926 hw_turn_off_intr(hw, KS884X_INT_RX_STOPPED);
3927 writel((hw->rx_cfg & ~DMA_RX_ENABLE), hw->io + KS_DMA_RX_CTRL);
3928}
3929
3930
3931
3932
3933
3934
3935
3936static void hw_start_tx(struct ksz_hw *hw)
3937{
3938 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3939}
3940
3941
3942
3943
3944
3945
3946
3947static void hw_stop_tx(struct ksz_hw *hw)
3948{
3949 writel((hw->tx_cfg & ~DMA_TX_ENABLE), hw->io + KS_DMA_TX_CTRL);
3950}
3951
3952
3953
3954
3955
3956
3957
3958static void hw_disable(struct ksz_hw *hw)
3959{
3960 hw_stop_rx(hw);
3961 hw_stop_tx(hw);
3962 hw->enabled = 0;
3963}
3964
3965
3966
3967
3968
3969
3970
3971static void hw_enable(struct ksz_hw *hw)
3972{
3973 hw_start_tx(hw);
3974 hw_start_rx(hw);
3975 hw->enabled = 1;
3976}
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988static int hw_alloc_pkt(struct ksz_hw *hw, int length, int physical)
3989{
3990
3991 if (hw->tx_desc_info.avail <= 1)
3992 return 0;
3993
3994
3995 get_tx_pkt(&hw->tx_desc_info, &hw->tx_desc_info.cur);
3996 hw->tx_desc_info.cur->sw.buf.tx.first_seg = 1;
3997
3998
3999 ++hw->tx_int_cnt;
4000 hw->tx_size += length;
4001
4002
4003 if (hw->tx_size >= MAX_TX_HELD_SIZE)
4004 hw->tx_int_cnt = hw->tx_int_mask + 1;
4005
4006 if (physical > hw->tx_desc_info.avail)
4007 return 1;
4008
4009 return hw->tx_desc_info.avail;
4010}
4011
4012
4013
4014
4015
4016
4017
4018static void hw_send_pkt(struct ksz_hw *hw)
4019{
4020 struct ksz_desc *cur = hw->tx_desc_info.cur;
4021
4022 cur->sw.buf.tx.last_seg = 1;
4023
4024
4025 if (hw->tx_int_cnt > hw->tx_int_mask) {
4026 cur->sw.buf.tx.intr = 1;
4027 hw->tx_int_cnt = 0;
4028 hw->tx_size = 0;
4029 }
4030
4031
4032 cur->sw.buf.tx.dest_port = hw->dst_ports;
4033
4034 release_desc(cur);
4035
4036 writel(0, hw->io + KS_DMA_TX_START);
4037}
4038
4039static int empty_addr(u8 *addr)
4040{
4041 u32 *addr1 = (u32 *) addr;
4042 u16 *addr2 = (u16 *) &addr[4];
4043
4044 return 0 == *addr1 && 0 == *addr2;
4045}
4046
4047
4048
4049
4050
4051
4052
4053
4054static void hw_set_addr(struct ksz_hw *hw)
4055{
4056 int i;
4057
4058 for (i = 0; i < MAC_ADDR_LEN; i++)
4059 writeb(hw->override_addr[MAC_ADDR_ORDER(i)],
4060 hw->io + KS884X_ADDR_0_OFFSET + i);
4061
4062 sw_set_addr(hw, hw->override_addr);
4063}
4064
4065
4066
4067
4068
4069
4070
4071static void hw_read_addr(struct ksz_hw *hw)
4072{
4073 int i;
4074
4075 for (i = 0; i < MAC_ADDR_LEN; i++)
4076 hw->perm_addr[MAC_ADDR_ORDER(i)] = readb(hw->io +
4077 KS884X_ADDR_0_OFFSET + i);
4078
4079 if (!hw->mac_override) {
4080 memcpy(hw->override_addr, hw->perm_addr, MAC_ADDR_LEN);
4081 if (empty_addr(hw->override_addr)) {
4082 memcpy(hw->perm_addr, DEFAULT_MAC_ADDRESS,
4083 MAC_ADDR_LEN);
4084 memcpy(hw->override_addr, DEFAULT_MAC_ADDRESS,
4085 MAC_ADDR_LEN);
4086 hw->override_addr[5] += hw->id;
4087 hw_set_addr(hw);
4088 }
4089 }
4090}
4091
4092static void hw_ena_add_addr(struct ksz_hw *hw, int index, u8 *mac_addr)
4093{
4094 int i;
4095 u32 mac_addr_lo;
4096 u32 mac_addr_hi;
4097
4098 mac_addr_hi = 0;
4099 for (i = 0; i < 2; i++) {
4100 mac_addr_hi <<= 8;
4101 mac_addr_hi |= mac_addr[i];
4102 }
4103 mac_addr_hi |= ADD_ADDR_ENABLE;
4104 mac_addr_lo = 0;
4105 for (i = 2; i < 6; i++) {
4106 mac_addr_lo <<= 8;
4107 mac_addr_lo |= mac_addr[i];
4108 }
4109 index *= ADD_ADDR_INCR;
4110
4111 writel(mac_addr_lo, hw->io + index + KS_ADD_ADDR_0_LO);
4112 writel(mac_addr_hi, hw->io + index + KS_ADD_ADDR_0_HI);
4113}
4114
4115static void hw_set_add_addr(struct ksz_hw *hw)
4116{
4117 int i;
4118
4119 for (i = 0; i < ADDITIONAL_ENTRIES; i++) {
4120 if (empty_addr(hw->address[i]))
4121 writel(0, hw->io + ADD_ADDR_INCR * i +
4122 KS_ADD_ADDR_0_HI);
4123 else
4124 hw_ena_add_addr(hw, i, hw->address[i]);
4125 }
4126}
4127
4128static int hw_add_addr(struct ksz_hw *hw, u8 *mac_addr)
4129{
4130 int i;
4131 int j = ADDITIONAL_ENTRIES;
4132
4133 if (!memcmp(hw->override_addr, mac_addr, MAC_ADDR_LEN))
4134 return 0;
4135 for (i = 0; i < hw->addr_list_size; i++) {
4136 if (!memcmp(hw->address[i], mac_addr, MAC_ADDR_LEN))
4137 return 0;
4138 if (ADDITIONAL_ENTRIES == j && empty_addr(hw->address[i]))
4139 j = i;
4140 }
4141 if (j < ADDITIONAL_ENTRIES) {
4142 memcpy(hw->address[j], mac_addr, MAC_ADDR_LEN);
4143 hw_ena_add_addr(hw, j, hw->address[j]);
4144 return 0;
4145 }
4146 return -1;
4147}
4148
4149static int hw_del_addr(struct ksz_hw *hw, u8 *mac_addr)
4150{
4151 int i;
4152
4153 for (i = 0; i < hw->addr_list_size; i++) {
4154 if (!memcmp(hw->address[i], mac_addr, MAC_ADDR_LEN)) {
4155 memset(hw->address[i], 0, MAC_ADDR_LEN);
4156 writel(0, hw->io + ADD_ADDR_INCR * i +
4157 KS_ADD_ADDR_0_HI);
4158 return 0;
4159 }
4160 }
4161 return -1;
4162}
4163
4164
4165
4166
4167
4168
4169
4170static void hw_clr_multicast(struct ksz_hw *hw)
4171{
4172 int i;
4173
4174 for (i = 0; i < HW_MULTICAST_SIZE; i++) {
4175 hw->multi_bits[i] = 0;
4176
4177 writeb(0, hw->io + KS884X_MULTICAST_0_OFFSET + i);
4178 }
4179}
4180
4181
4182
4183
4184
4185
4186
4187
4188static void hw_set_grp_addr(struct ksz_hw *hw)
4189{
4190 int i;
4191 int index;
4192 int position;
4193 int value;
4194
4195 memset(hw->multi_bits, 0, sizeof(u8) * HW_MULTICAST_SIZE);
4196
4197 for (i = 0; i < hw->multi_list_size; i++) {
4198 position = (ether_crc(6, hw->multi_list[i]) >> 26) & 0x3f;
4199 index = position >> 3;
4200 value = 1 << (position & 7);
4201 hw->multi_bits[index] |= (u8) value;
4202 }
4203
4204 for (i = 0; i < HW_MULTICAST_SIZE; i++)
4205 writeb(hw->multi_bits[i], hw->io + KS884X_MULTICAST_0_OFFSET +
4206 i);
4207}
4208
4209
4210
4211
4212
4213
4214
4215
4216static void hw_set_multicast(struct ksz_hw *hw, u8 multicast)
4217{
4218
4219 hw_stop_rx(hw);
4220
4221 if (multicast)
4222 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
4223 else
4224 hw->rx_cfg &= ~DMA_RX_ALL_MULTICAST;
4225
4226 if (hw->enabled)
4227 hw_start_rx(hw);
4228}
4229
4230
4231
4232
4233
4234
4235
4236
4237static void hw_set_promiscuous(struct ksz_hw *hw, u8 prom)
4238{
4239
4240 hw_stop_rx(hw);
4241
4242 if (prom)
4243 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
4244 else
4245 hw->rx_cfg &= ~DMA_RX_PROMISCUOUS;
4246
4247 if (hw->enabled)
4248 hw_start_rx(hw);
4249}
4250
4251
4252
4253
4254
4255
4256
4257
4258static void sw_enable(struct ksz_hw *hw, int enable)
4259{
4260 int port;
4261
4262 for (port = 0; port < SWITCH_PORT_NUM; port++) {
4263 if (hw->dev_count > 1) {
4264
4265 sw_cfg_port_base_vlan(hw, port,
4266 HOST_MASK | (1 << port));
4267 port_set_stp_state(hw, port, STP_STATE_DISABLED);
4268 } else {
4269 sw_cfg_port_base_vlan(hw, port, PORT_MASK);
4270 port_set_stp_state(hw, port, STP_STATE_FORWARDING);
4271 }
4272 }
4273 if (hw->dev_count > 1)
4274 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_SIMPLE);
4275 else
4276 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_FORWARDING);
4277
4278 if (enable)
4279 enable = KS8842_START;
4280 writew(enable, hw->io + KS884X_CHIP_ID_OFFSET);
4281}
4282
4283
4284
4285
4286
4287
4288
4289static void sw_setup(struct ksz_hw *hw)
4290{
4291 int port;
4292
4293 sw_set_global_ctrl(hw);
4294
4295
4296 sw_init_broad_storm(hw);
4297 hw_cfg_broad_storm(hw, BROADCAST_STORM_PROTECTION_RATE);
4298 for (port = 0; port < SWITCH_PORT_NUM; port++)
4299 sw_ena_broad_storm(hw, port);
4300
4301 sw_init_prio(hw);
4302
4303 sw_init_mirror(hw);
4304
4305 sw_init_prio_rate(hw);
4306
4307 sw_init_vlan(hw);
4308
4309 if (hw->features & STP_SUPPORT)
4310 sw_init_stp(hw);
4311 if (!sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
4312 SWITCH_TX_FLOW_CTRL | SWITCH_RX_FLOW_CTRL))
4313 hw->overrides |= PAUSE_FLOW_CTRL;
4314 sw_enable(hw, 1);
4315}
4316
4317
4318
4319
4320
4321
4322
4323
4324static void ksz_start_timer(struct ksz_timer_info *info, int time)
4325{
4326 info->cnt = 0;
4327 info->timer.expires = jiffies + time;
4328 add_timer(&info->timer);
4329
4330
4331 info->max = -1;
4332}
4333
4334
4335
4336
4337
4338
4339
4340static void ksz_stop_timer(struct ksz_timer_info *info)
4341{
4342 if (info->max) {
4343 info->max = 0;
4344 del_timer_sync(&info->timer);
4345 }
4346}
4347
4348static void ksz_init_timer(struct ksz_timer_info *info, int period,
4349 void (*function)(unsigned long), void *data)
4350{
4351 info->max = 0;
4352 info->period = period;
4353 init_timer(&info->timer);
4354 info->timer.function = function;
4355 info->timer.data = (unsigned long) data;
4356}
4357
4358static void ksz_update_timer(struct ksz_timer_info *info)
4359{
4360 ++info->cnt;
4361 if (info->max > 0) {
4362 if (info->cnt < info->max) {
4363 info->timer.expires = jiffies + info->period;
4364 add_timer(&info->timer);
4365 } else
4366 info->max = 0;
4367 } else if (info->max < 0) {
4368 info->timer.expires = jiffies + info->period;
4369 add_timer(&info->timer);
4370 }
4371}
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383static int ksz_alloc_soft_desc(struct ksz_desc_info *desc_info, int transmit)
4384{
4385 desc_info->ring = kmalloc(sizeof(struct ksz_desc) * desc_info->alloc,
4386 GFP_KERNEL);
4387 if (!desc_info->ring)
4388 return 1;
4389 memset((void *) desc_info->ring, 0,
4390 sizeof(struct ksz_desc) * desc_info->alloc);
4391 hw_init_desc(desc_info, transmit);
4392 return 0;
4393}
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404static int ksz_alloc_desc(struct dev_info *adapter)
4405{
4406 struct ksz_hw *hw = &adapter->hw;
4407 int offset;
4408
4409
4410 adapter->desc_pool.alloc_size =
4411 hw->rx_desc_info.size * hw->rx_desc_info.alloc +
4412 hw->tx_desc_info.size * hw->tx_desc_info.alloc +
4413 DESC_ALIGNMENT;
4414
4415 adapter->desc_pool.alloc_virt =
4416 pci_alloc_consistent(
4417 adapter->pdev, adapter->desc_pool.alloc_size,
4418 &adapter->desc_pool.dma_addr);
4419 if (adapter->desc_pool.alloc_virt == NULL) {
4420 adapter->desc_pool.alloc_size = 0;
4421 return 1;
4422 }
4423 memset(adapter->desc_pool.alloc_virt, 0, adapter->desc_pool.alloc_size);
4424
4425
4426 offset = (((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT) ?
4427 (DESC_ALIGNMENT -
4428 ((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT)) : 0);
4429 adapter->desc_pool.virt = adapter->desc_pool.alloc_virt + offset;
4430 adapter->desc_pool.phys = adapter->desc_pool.dma_addr + offset;
4431
4432
4433 hw->rx_desc_info.ring_virt = (struct ksz_hw_desc *)
4434 adapter->desc_pool.virt;
4435 hw->rx_desc_info.ring_phys = adapter->desc_pool.phys;
4436 offset = hw->rx_desc_info.alloc * hw->rx_desc_info.size;
4437 hw->tx_desc_info.ring_virt = (struct ksz_hw_desc *)
4438 (adapter->desc_pool.virt + offset);
4439 hw->tx_desc_info.ring_phys = adapter->desc_pool.phys + offset;
4440
4441 if (ksz_alloc_soft_desc(&hw->rx_desc_info, 0))
4442 return 1;
4443 if (ksz_alloc_soft_desc(&hw->tx_desc_info, 1))
4444 return 1;
4445
4446 return 0;
4447}
4448
4449
4450
4451
4452
4453
4454
4455static void free_dma_buf(struct dev_info *adapter, struct ksz_dma_buf *dma_buf,
4456 int direction)
4457{
4458 pci_unmap_single(adapter->pdev, dma_buf->dma, dma_buf->len, direction);
4459 dev_kfree_skb(dma_buf->skb);
4460 dma_buf->skb = NULL;
4461 dma_buf->dma = 0;
4462}
4463
4464
4465
4466
4467
4468
4469
4470static void ksz_init_rx_buffers(struct dev_info *adapter)
4471{
4472 int i;
4473 struct ksz_desc *desc;
4474 struct ksz_dma_buf *dma_buf;
4475 struct ksz_hw *hw = &adapter->hw;
4476 struct ksz_desc_info *info = &hw->rx_desc_info;
4477
4478 for (i = 0; i < hw->rx_desc_info.alloc; i++) {
4479 get_rx_pkt(info, &desc);
4480
4481 dma_buf = DMA_BUFFER(desc);
4482 if (dma_buf->skb && dma_buf->len != adapter->mtu)
4483 free_dma_buf(adapter, dma_buf, PCI_DMA_FROMDEVICE);
4484 dma_buf->len = adapter->mtu;
4485 if (!dma_buf->skb)
4486 dma_buf->skb = alloc_skb(dma_buf->len, GFP_ATOMIC);
4487 if (dma_buf->skb && !dma_buf->dma) {
4488 dma_buf->skb->dev = adapter->dev;
4489 dma_buf->dma = pci_map_single(
4490 adapter->pdev,
4491 skb_tail_pointer(dma_buf->skb),
4492 dma_buf->len,
4493 PCI_DMA_FROMDEVICE);
4494 }
4495
4496
4497 set_rx_buf(desc, dma_buf->dma);
4498 set_rx_len(desc, dma_buf->len);
4499 release_desc(desc);
4500 }
4501}
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512static int ksz_alloc_mem(struct dev_info *adapter)
4513{
4514 struct ksz_hw *hw = &adapter->hw;
4515
4516
4517 hw->rx_desc_info.alloc = NUM_OF_RX_DESC;
4518 hw->tx_desc_info.alloc = NUM_OF_TX_DESC;
4519
4520
4521 hw->tx_int_cnt = 0;
4522 hw->tx_int_mask = NUM_OF_TX_DESC / 4;
4523 if (hw->tx_int_mask > 8)
4524 hw->tx_int_mask = 8;
4525 while (hw->tx_int_mask) {
4526 hw->tx_int_cnt++;
4527 hw->tx_int_mask >>= 1;
4528 }
4529 if (hw->tx_int_cnt) {
4530 hw->tx_int_mask = (1 << (hw->tx_int_cnt - 1)) - 1;
4531 hw->tx_int_cnt = 0;
4532 }
4533
4534
4535 hw->rx_desc_info.size =
4536 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4537 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4538 hw->tx_desc_info.size =
4539 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4540 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4541 if (hw->rx_desc_info.size != sizeof(struct ksz_hw_desc))
4542 pr_alert("Hardware descriptor size not right!\n");
4543 ksz_check_desc_num(&hw->rx_desc_info);
4544 ksz_check_desc_num(&hw->tx_desc_info);
4545
4546
4547 if (ksz_alloc_desc(adapter))
4548 return 1;
4549
4550 return 0;
4551}
4552
4553
4554
4555
4556
4557
4558
4559
4560static void ksz_free_desc(struct dev_info *adapter)
4561{
4562 struct ksz_hw *hw = &adapter->hw;
4563
4564
4565 hw->rx_desc_info.ring_virt = NULL;
4566 hw->tx_desc_info.ring_virt = NULL;
4567 hw->rx_desc_info.ring_phys = 0;
4568 hw->tx_desc_info.ring_phys = 0;
4569
4570
4571 if (adapter->desc_pool.alloc_virt)
4572 pci_free_consistent(
4573 adapter->pdev,
4574 adapter->desc_pool.alloc_size,
4575 adapter->desc_pool.alloc_virt,
4576 adapter->desc_pool.dma_addr);
4577
4578
4579 adapter->desc_pool.alloc_size = 0;
4580 adapter->desc_pool.alloc_virt = NULL;
4581
4582 kfree(hw->rx_desc_info.ring);
4583 hw->rx_desc_info.ring = NULL;
4584 kfree(hw->tx_desc_info.ring);
4585 hw->tx_desc_info.ring = NULL;
4586}
4587
4588
4589
4590
4591
4592
4593
4594
4595static void ksz_free_buffers(struct dev_info *adapter,
4596 struct ksz_desc_info *desc_info, int direction)
4597{
4598 int i;
4599 struct ksz_dma_buf *dma_buf;
4600 struct ksz_desc *desc = desc_info->ring;
4601
4602 for (i = 0; i < desc_info->alloc; i++) {
4603 dma_buf = DMA_BUFFER(desc);
4604 if (dma_buf->skb)
4605 free_dma_buf(adapter, dma_buf, direction);
4606 desc++;
4607 }
4608}
4609
4610
4611
4612
4613
4614
4615
4616static void ksz_free_mem(struct dev_info *adapter)
4617{
4618
4619 ksz_free_buffers(adapter, &adapter->hw.tx_desc_info,
4620 PCI_DMA_TODEVICE);
4621
4622
4623 ksz_free_buffers(adapter, &adapter->hw.rx_desc_info,
4624 PCI_DMA_FROMDEVICE);
4625
4626
4627 ksz_free_desc(adapter);
4628}
4629
4630static void get_mib_counters(struct ksz_hw *hw, int first, int cnt,
4631 u64 *counter)
4632{
4633 int i;
4634 int mib;
4635 int port;
4636 struct ksz_port_mib *port_mib;
4637
4638 memset(counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
4639 for (i = 0, port = first; i < cnt; i++, port++) {
4640 port_mib = &hw->port_mib[port];
4641 for (mib = port_mib->mib_start; mib < hw->mib_cnt; mib++)
4642 counter[mib] += port_mib->counter[mib];
4643 }
4644}
4645
4646
4647
4648
4649
4650
4651
4652
4653static void send_packet(struct sk_buff *skb, struct net_device *dev)
4654{
4655 struct ksz_desc *desc;
4656 struct ksz_desc *first;
4657 struct dev_priv *priv = netdev_priv(dev);
4658 struct dev_info *hw_priv = priv->adapter;
4659 struct ksz_hw *hw = &hw_priv->hw;
4660 struct ksz_desc_info *info = &hw->tx_desc_info;
4661 struct ksz_dma_buf *dma_buf;
4662 int len;
4663 int last_frag = skb_shinfo(skb)->nr_frags;
4664
4665
4666
4667
4668
4669 if (hw->dev_count > 1)
4670 hw->dst_ports = 1 << priv->port.first_port;
4671
4672
4673 len = skb->len;
4674
4675
4676 first = info->cur;
4677 desc = first;
4678
4679 dma_buf = DMA_BUFFER(desc);
4680 if (last_frag) {
4681 int frag;
4682 skb_frag_t *this_frag;
4683
4684 dma_buf->len = skb_headlen(skb);
4685
4686 dma_buf->dma = pci_map_single(
4687 hw_priv->pdev, skb->data, dma_buf->len,
4688 PCI_DMA_TODEVICE);
4689 set_tx_buf(desc, dma_buf->dma);
4690 set_tx_len(desc, dma_buf->len);
4691
4692 frag = 0;
4693 do {
4694 this_frag = &skb_shinfo(skb)->frags[frag];
4695
4696
4697 get_tx_pkt(info, &desc);
4698
4699
4700 ++hw->tx_int_cnt;
4701
4702 dma_buf = DMA_BUFFER(desc);
4703 dma_buf->len = skb_frag_size(this_frag);
4704
4705 dma_buf->dma = pci_map_single(
4706 hw_priv->pdev,
4707 skb_frag_address(this_frag),
4708 dma_buf->len,
4709 PCI_DMA_TODEVICE);
4710 set_tx_buf(desc, dma_buf->dma);
4711 set_tx_len(desc, dma_buf->len);
4712
4713 frag++;
4714 if (frag == last_frag)
4715 break;
4716
4717
4718 release_desc(desc);
4719 } while (1);
4720
4721
4722 info->cur = desc;
4723
4724
4725 release_desc(first);
4726 } else {
4727 dma_buf->len = len;
4728
4729 dma_buf->dma = pci_map_single(
4730 hw_priv->pdev, skb->data, dma_buf->len,
4731 PCI_DMA_TODEVICE);
4732 set_tx_buf(desc, dma_buf->dma);
4733 set_tx_len(desc, dma_buf->len);
4734 }
4735
4736 if (skb->ip_summed == CHECKSUM_PARTIAL) {
4737 (desc)->sw.buf.tx.csum_gen_tcp = 1;
4738 (desc)->sw.buf.tx.csum_gen_udp = 1;
4739 }
4740
4741
4742
4743
4744
4745 dma_buf->skb = skb;
4746
4747 hw_send_pkt(hw);
4748
4749
4750 dev->stats.tx_packets++;
4751 dev->stats.tx_bytes += len;
4752}
4753
4754
4755
4756
4757
4758
4759
4760static void transmit_cleanup(struct dev_info *hw_priv, int normal)
4761{
4762 int last;
4763 union desc_stat status;
4764 struct ksz_hw *hw = &hw_priv->hw;
4765 struct ksz_desc_info *info = &hw->tx_desc_info;
4766 struct ksz_desc *desc;
4767 struct ksz_dma_buf *dma_buf;
4768 struct net_device *dev = NULL;
4769
4770 spin_lock(&hw_priv->hwlock);
4771 last = info->last;
4772
4773 while (info->avail < info->alloc) {
4774
4775 desc = &info->ring[last];
4776 status.data = le32_to_cpu(desc->phw->ctrl.data);
4777 if (status.tx.hw_owned) {
4778 if (normal)
4779 break;
4780 else
4781 reset_desc(desc, status);
4782 }
4783
4784 dma_buf = DMA_BUFFER(desc);
4785 pci_unmap_single(
4786 hw_priv->pdev, dma_buf->dma, dma_buf->len,
4787 PCI_DMA_TODEVICE);
4788
4789
4790 if (dma_buf->skb) {
4791 dev = dma_buf->skb->dev;
4792
4793
4794 dev_kfree_skb_irq(dma_buf->skb);
4795 dma_buf->skb = NULL;
4796 }
4797
4798
4799 last++;
4800 last &= info->mask;
4801 info->avail++;
4802 }
4803 info->last = last;
4804 spin_unlock(&hw_priv->hwlock);
4805
4806
4807 if (dev)
4808 dev->trans_start = jiffies;
4809}
4810
4811
4812
4813
4814
4815
4816
4817
4818static void tx_done(struct dev_info *hw_priv)
4819{
4820 struct ksz_hw *hw = &hw_priv->hw;
4821 int port;
4822
4823 transmit_cleanup(hw_priv, 1);
4824
4825 for (port = 0; port < hw->dev_count; port++) {
4826 struct net_device *dev = hw->port_info[port].pdev;
4827
4828 if (netif_running(dev) && netif_queue_stopped(dev))
4829 netif_wake_queue(dev);
4830 }
4831}
4832
4833static inline void copy_old_skb(struct sk_buff *old, struct sk_buff *skb)
4834{
4835 skb->dev = old->dev;
4836 skb->protocol = old->protocol;
4837 skb->ip_summed = old->ip_summed;
4838 skb->csum = old->csum;
4839 skb_set_network_header(skb, ETH_HLEN);
4840
4841 dev_kfree_skb(old);
4842}
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853static netdev_tx_t netdev_tx(struct sk_buff *skb, struct net_device *dev)
4854{
4855 struct dev_priv *priv = netdev_priv(dev);
4856 struct dev_info *hw_priv = priv->adapter;
4857 struct ksz_hw *hw = &hw_priv->hw;
4858 int left;
4859 int num = 1;
4860 int rc = 0;
4861
4862 if (hw->features & SMALL_PACKET_TX_BUG) {
4863 struct sk_buff *org_skb = skb;
4864
4865 if (skb->len <= 48) {
4866 if (skb_end_pointer(skb) - skb->data >= 50) {
4867 memset(&skb->data[skb->len], 0, 50 - skb->len);
4868 skb->len = 50;
4869 } else {
4870 skb = dev_alloc_skb(50);
4871 if (!skb)
4872 return NETDEV_TX_BUSY;
4873 memcpy(skb->data, org_skb->data, org_skb->len);
4874 memset(&skb->data[org_skb->len], 0,
4875 50 - org_skb->len);
4876 skb->len = 50;
4877 copy_old_skb(org_skb, skb);
4878 }
4879 }
4880 }
4881
4882 spin_lock_irq(&hw_priv->hwlock);
4883
4884 num = skb_shinfo(skb)->nr_frags + 1;
4885 left = hw_alloc_pkt(hw, skb->len, num);
4886 if (left) {
4887 if (left < num ||
4888 ((CHECKSUM_PARTIAL == skb->ip_summed) &&
4889 (ETH_P_IPV6 == htons(skb->protocol)))) {
4890 struct sk_buff *org_skb = skb;
4891
4892 skb = dev_alloc_skb(org_skb->len);
4893 if (!skb) {
4894 rc = NETDEV_TX_BUSY;
4895 goto unlock;
4896 }
4897 skb_copy_and_csum_dev(org_skb, skb->data);
4898 org_skb->ip_summed = CHECKSUM_NONE;
4899 skb->len = org_skb->len;
4900 copy_old_skb(org_skb, skb);
4901 }
4902 send_packet(skb, dev);
4903 if (left <= num)
4904 netif_stop_queue(dev);
4905 } else {
4906
4907 netif_stop_queue(dev);
4908 rc = NETDEV_TX_BUSY;
4909 }
4910unlock:
4911 spin_unlock_irq(&hw_priv->hwlock);
4912
4913 return rc;
4914}
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925static void netdev_tx_timeout(struct net_device *dev)
4926{
4927 static unsigned long last_reset;
4928
4929 struct dev_priv *priv = netdev_priv(dev);
4930 struct dev_info *hw_priv = priv->adapter;
4931 struct ksz_hw *hw = &hw_priv->hw;
4932 int port;
4933
4934 if (hw->dev_count > 1) {
4935
4936
4937
4938
4939 if (jiffies - last_reset <= dev->watchdog_timeo)
4940 hw_priv = NULL;
4941 }
4942
4943 last_reset = jiffies;
4944 if (hw_priv) {
4945 hw_dis_intr(hw);
4946 hw_disable(hw);
4947
4948 transmit_cleanup(hw_priv, 0);
4949 hw_reset_pkts(&hw->rx_desc_info);
4950 hw_reset_pkts(&hw->tx_desc_info);
4951 ksz_init_rx_buffers(hw_priv);
4952
4953 hw_reset(hw);
4954
4955 hw_set_desc_base(hw,
4956 hw->tx_desc_info.ring_phys,
4957 hw->rx_desc_info.ring_phys);
4958 hw_set_addr(hw);
4959 if (hw->all_multi)
4960 hw_set_multicast(hw, hw->all_multi);
4961 else if (hw->multi_list_size)
4962 hw_set_grp_addr(hw);
4963
4964 if (hw->dev_count > 1) {
4965 hw_set_add_addr(hw);
4966 for (port = 0; port < SWITCH_PORT_NUM; port++) {
4967 struct net_device *port_dev;
4968
4969 port_set_stp_state(hw, port,
4970 STP_STATE_DISABLED);
4971
4972 port_dev = hw->port_info[port].pdev;
4973 if (netif_running(port_dev))
4974 port_set_stp_state(hw, port,
4975 STP_STATE_SIMPLE);
4976 }
4977 }
4978
4979 hw_enable(hw);
4980 hw_ena_intr(hw);
4981 }
4982
4983 dev->trans_start = jiffies;
4984 netif_wake_queue(dev);
4985}
4986
4987static inline void csum_verified(struct sk_buff *skb)
4988{
4989 unsigned short protocol;
4990 struct iphdr *iph;
4991
4992 protocol = skb->protocol;
4993 skb_reset_network_header(skb);
4994 iph = (struct iphdr *) skb_network_header(skb);
4995 if (protocol == htons(ETH_P_8021Q)) {
4996 protocol = iph->tot_len;
4997 skb_set_network_header(skb, VLAN_HLEN);
4998 iph = (struct iphdr *) skb_network_header(skb);
4999 }
5000 if (protocol == htons(ETH_P_IP)) {
5001 if (iph->protocol == IPPROTO_TCP)
5002 skb->ip_summed = CHECKSUM_UNNECESSARY;
5003 }
5004}
5005
5006static inline int rx_proc(struct net_device *dev, struct ksz_hw* hw,
5007 struct ksz_desc *desc, union desc_stat status)
5008{
5009 int packet_len;
5010 struct dev_priv *priv = netdev_priv(dev);
5011 struct dev_info *hw_priv = priv->adapter;
5012 struct ksz_dma_buf *dma_buf;
5013 struct sk_buff *skb;
5014 int rx_status;
5015
5016
5017 packet_len = status.rx.frame_len - 4;
5018
5019 dma_buf = DMA_BUFFER(desc);
5020 pci_dma_sync_single_for_cpu(
5021 hw_priv->pdev, dma_buf->dma, packet_len + 4,
5022 PCI_DMA_FROMDEVICE);
5023
5024 do {
5025
5026 skb = dev_alloc_skb(packet_len + 2);
5027 if (!skb) {
5028 dev->stats.rx_dropped++;
5029 return -ENOMEM;
5030 }
5031
5032
5033
5034
5035
5036 skb_reserve(skb, 2);
5037
5038 memcpy(skb_put(skb, packet_len),
5039 dma_buf->skb->data, packet_len);
5040 } while (0);
5041
5042 skb->protocol = eth_type_trans(skb, dev);
5043
5044 if (hw->rx_cfg & (DMA_RX_CSUM_UDP | DMA_RX_CSUM_TCP))
5045 csum_verified(skb);
5046
5047
5048 dev->stats.rx_packets++;
5049 dev->stats.rx_bytes += packet_len;
5050
5051
5052 rx_status = netif_rx(skb);
5053
5054 return 0;
5055}
5056
5057static int dev_rcv_packets(struct dev_info *hw_priv)
5058{
5059 int next;
5060 union desc_stat status;
5061 struct ksz_hw *hw = &hw_priv->hw;
5062 struct net_device *dev = hw->port_info[0].pdev;
5063 struct ksz_desc_info *info = &hw->rx_desc_info;
5064 int left = info->alloc;
5065 struct ksz_desc *desc;
5066 int received = 0;
5067
5068 next = info->next;
5069 while (left--) {
5070
5071 desc = &info->ring[next];
5072 status.data = le32_to_cpu(desc->phw->ctrl.data);
5073 if (status.rx.hw_owned)
5074 break;
5075
5076
5077 if (status.rx.last_desc && status.rx.first_desc) {
5078 if (rx_proc(dev, hw, desc, status))
5079 goto release_packet;
5080 received++;
5081 }
5082
5083release_packet:
5084 release_desc(desc);
5085 next++;
5086 next &= info->mask;
5087 }
5088 info->next = next;
5089
5090 return received;
5091}
5092
5093static int port_rcv_packets(struct dev_info *hw_priv)
5094{
5095 int next;
5096 union desc_stat status;
5097 struct ksz_hw *hw = &hw_priv->hw;
5098 struct net_device *dev = hw->port_info[0].pdev;
5099 struct ksz_desc_info *info = &hw->rx_desc_info;
5100 int left = info->alloc;
5101 struct ksz_desc *desc;
5102 int received = 0;
5103
5104 next = info->next;
5105 while (left--) {
5106
5107 desc = &info->ring[next];
5108 status.data = le32_to_cpu(desc->phw->ctrl.data);
5109 if (status.rx.hw_owned)
5110 break;
5111
5112 if (hw->dev_count > 1) {
5113
5114 int p = HW_TO_DEV_PORT(status.rx.src_port);
5115
5116 dev = hw->port_info[p].pdev;
5117 if (!netif_running(dev))
5118 goto release_packet;
5119 }
5120
5121
5122 if (status.rx.last_desc && status.rx.first_desc) {
5123 if (rx_proc(dev, hw, desc, status))
5124 goto release_packet;
5125 received++;
5126 }
5127
5128release_packet:
5129 release_desc(desc);
5130 next++;
5131 next &= info->mask;
5132 }
5133 info->next = next;
5134
5135 return received;
5136}
5137
5138static int dev_rcv_special(struct dev_info *hw_priv)
5139{
5140 int next;
5141 union desc_stat status;
5142 struct ksz_hw *hw = &hw_priv->hw;
5143 struct net_device *dev = hw->port_info[0].pdev;
5144 struct ksz_desc_info *info = &hw->rx_desc_info;
5145 int left = info->alloc;
5146 struct ksz_desc *desc;
5147 int received = 0;
5148
5149 next = info->next;
5150 while (left--) {
5151
5152 desc = &info->ring[next];
5153 status.data = le32_to_cpu(desc->phw->ctrl.data);
5154 if (status.rx.hw_owned)
5155 break;
5156
5157 if (hw->dev_count > 1) {
5158
5159 int p = HW_TO_DEV_PORT(status.rx.src_port);
5160
5161 dev = hw->port_info[p].pdev;
5162 if (!netif_running(dev))
5163 goto release_packet;
5164 }
5165
5166
5167 if (status.rx.last_desc && status.rx.first_desc) {
5168
5169
5170
5171
5172
5173 if (!status.rx.error || (status.data &
5174 KS_DESC_RX_ERROR_COND) ==
5175 KS_DESC_RX_ERROR_TOO_LONG) {
5176 if (rx_proc(dev, hw, desc, status))
5177 goto release_packet;
5178 received++;
5179 } else {
5180 struct dev_priv *priv = netdev_priv(dev);
5181
5182
5183 priv->port.counter[OID_COUNTER_RCV_ERROR]++;
5184 }
5185 }
5186
5187release_packet:
5188 release_desc(desc);
5189 next++;
5190 next &= info->mask;
5191 }
5192 info->next = next;
5193
5194 return received;
5195}
5196
5197static void rx_proc_task(unsigned long data)
5198{
5199 struct dev_info *hw_priv = (struct dev_info *) data;
5200 struct ksz_hw *hw = &hw_priv->hw;
5201
5202 if (!hw->enabled)
5203 return;
5204 if (unlikely(!hw_priv->dev_rcv(hw_priv))) {
5205
5206
5207 hw_resume_rx(hw);