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/kernel.h>
21#include <linux/module.h>
22#include <linux/ioport.h>
23#include <linux/pci.h>
24#include <linux/proc_fs.h>
25#include <linux/mii.h>
26#include <linux/platform_device.h>
27#include <linux/ethtool.h>
28#include <linux/etherdevice.h>
29#include <linux/in.h>
30#include <linux/ip.h>
31#include <linux/if_vlan.h>
32#include <linux/crc32.h>
33#include <linux/sched.h>
34#include <linux/slab.h>
35
36
37
38
39#define KS_DMA_TX_CTRL 0x0000
40#define DMA_TX_ENABLE 0x00000001
41#define DMA_TX_CRC_ENABLE 0x00000002
42#define DMA_TX_PAD_ENABLE 0x00000004
43#define DMA_TX_LOOPBACK 0x00000100
44#define DMA_TX_FLOW_ENABLE 0x00000200
45#define DMA_TX_CSUM_IP 0x00010000
46#define DMA_TX_CSUM_TCP 0x00020000
47#define DMA_TX_CSUM_UDP 0x00040000
48#define DMA_TX_BURST_SIZE 0x3F000000
49
50#define KS_DMA_RX_CTRL 0x0004
51#define DMA_RX_ENABLE 0x00000001
52#define KS884X_DMA_RX_MULTICAST 0x00000002
53#define DMA_RX_PROMISCUOUS 0x00000004
54#define DMA_RX_ERROR 0x00000008
55#define DMA_RX_UNICAST 0x00000010
56#define DMA_RX_ALL_MULTICAST 0x00000020
57#define DMA_RX_BROADCAST 0x00000040
58#define DMA_RX_FLOW_ENABLE 0x00000200
59#define DMA_RX_CSUM_IP 0x00010000
60#define DMA_RX_CSUM_TCP 0x00020000
61#define DMA_RX_CSUM_UDP 0x00040000
62#define DMA_RX_BURST_SIZE 0x3F000000
63
64#define DMA_BURST_SHIFT 24
65#define DMA_BURST_DEFAULT 8
66
67#define KS_DMA_TX_START 0x0008
68#define KS_DMA_RX_START 0x000C
69#define DMA_START 0x00000001
70
71#define KS_DMA_TX_ADDR 0x0010
72#define KS_DMA_RX_ADDR 0x0014
73
74#define DMA_ADDR_LIST_MASK 0xFFFFFFFC
75#define DMA_ADDR_LIST_SHIFT 2
76
77
78#define KS884X_MULTICAST_0_OFFSET 0x0020
79#define KS884X_MULTICAST_1_OFFSET 0x0021
80#define KS884X_MULTICAST_2_OFFSET 0x0022
81#define KS884x_MULTICAST_3_OFFSET 0x0023
82
83#define KS884X_MULTICAST_4_OFFSET 0x0024
84#define KS884X_MULTICAST_5_OFFSET 0x0025
85#define KS884X_MULTICAST_6_OFFSET 0x0026
86#define KS884X_MULTICAST_7_OFFSET 0x0027
87
88
89
90
91#define KS884X_INTERRUPTS_ENABLE 0x0028
92
93#define KS884X_INTERRUPTS_STATUS 0x002C
94
95#define KS884X_INT_RX_STOPPED 0x02000000
96#define KS884X_INT_TX_STOPPED 0x04000000
97#define KS884X_INT_RX_OVERRUN 0x08000000
98#define KS884X_INT_TX_EMPTY 0x10000000
99#define KS884X_INT_RX 0x20000000
100#define KS884X_INT_TX 0x40000000
101#define KS884X_INT_PHY 0x80000000
102
103#define KS884X_INT_RX_MASK \
104 (KS884X_INT_RX | KS884X_INT_RX_OVERRUN)
105#define KS884X_INT_TX_MASK \
106 (KS884X_INT_TX | KS884X_INT_TX_EMPTY)
107#define KS884X_INT_MASK (KS884X_INT_RX | KS884X_INT_TX | KS884X_INT_PHY)
108
109
110
111
112#define KS_ADD_ADDR_0_LO 0x0080
113
114#define KS_ADD_ADDR_0_HI 0x0084
115
116#define KS_ADD_ADDR_1_LO 0x0088
117
118#define KS_ADD_ADDR_1_HI 0x008C
119
120#define KS_ADD_ADDR_2_LO 0x0090
121
122#define KS_ADD_ADDR_2_HI 0x0094
123
124#define KS_ADD_ADDR_3_LO 0x0098
125
126#define KS_ADD_ADDR_3_HI 0x009C
127
128#define KS_ADD_ADDR_4_LO 0x00A0
129
130#define KS_ADD_ADDR_4_HI 0x00A4
131
132#define KS_ADD_ADDR_5_LO 0x00A8
133
134#define KS_ADD_ADDR_5_HI 0x00AC
135
136#define KS_ADD_ADDR_6_LO 0x00B0
137
138#define KS_ADD_ADDR_6_HI 0x00B4
139
140#define KS_ADD_ADDR_7_LO 0x00B8
141
142#define KS_ADD_ADDR_7_HI 0x00BC
143
144#define KS_ADD_ADDR_8_LO 0x00C0
145
146#define KS_ADD_ADDR_8_HI 0x00C4
147
148#define KS_ADD_ADDR_9_LO 0x00C8
149
150#define KS_ADD_ADDR_9_HI 0x00CC
151
152#define KS_ADD_ADDR_A_LO 0x00D0
153
154#define KS_ADD_ADDR_A_HI 0x00D4
155
156#define KS_ADD_ADDR_B_LO 0x00D8
157
158#define KS_ADD_ADDR_B_HI 0x00DC
159
160#define KS_ADD_ADDR_C_LO 0x00E0
161
162#define KS_ADD_ADDR_C_HI 0x00E4
163
164#define KS_ADD_ADDR_D_LO 0x00E8
165
166#define KS_ADD_ADDR_D_HI 0x00EC
167
168#define KS_ADD_ADDR_E_LO 0x00F0
169
170#define KS_ADD_ADDR_E_HI 0x00F4
171
172#define KS_ADD_ADDR_F_LO 0x00F8
173
174#define KS_ADD_ADDR_F_HI 0x00FC
175
176#define ADD_ADDR_HI_MASK 0x0000FFFF
177#define ADD_ADDR_ENABLE 0x80000000
178#define ADD_ADDR_INCR 8
179
180
181
182
183#define KS884X_ADDR_0_OFFSET 0x0200
184#define KS884X_ADDR_1_OFFSET 0x0201
185
186#define KS884X_ADDR_2_OFFSET 0x0202
187#define KS884X_ADDR_3_OFFSET 0x0203
188
189#define KS884X_ADDR_4_OFFSET 0x0204
190#define KS884X_ADDR_5_OFFSET 0x0205
191
192
193#define KS884X_BUS_CTRL_OFFSET 0x0210
194
195#define BUS_SPEED_125_MHZ 0x0000
196#define BUS_SPEED_62_5_MHZ 0x0001
197#define BUS_SPEED_41_66_MHZ 0x0002
198#define BUS_SPEED_25_MHZ 0x0003
199
200
201#define KS884X_EEPROM_CTRL_OFFSET 0x0212
202
203#define EEPROM_CHIP_SELECT 0x0001
204#define EEPROM_SERIAL_CLOCK 0x0002
205#define EEPROM_DATA_OUT 0x0004
206#define EEPROM_DATA_IN 0x0008
207#define EEPROM_ACCESS_ENABLE 0x0010
208
209
210#define KS884X_MEM_INFO_OFFSET 0x0214
211
212#define RX_MEM_TEST_FAILED 0x0008
213#define RX_MEM_TEST_FINISHED 0x0010
214#define TX_MEM_TEST_FAILED 0x0800
215#define TX_MEM_TEST_FINISHED 0x1000
216
217
218#define KS884X_GLOBAL_CTRL_OFFSET 0x0216
219#define GLOBAL_SOFTWARE_RESET 0x0001
220
221#define KS8841_POWER_MANAGE_OFFSET 0x0218
222
223
224#define KS8841_WOL_CTRL_OFFSET 0x021A
225#define KS8841_WOL_MAGIC_ENABLE 0x0080
226#define KS8841_WOL_FRAME3_ENABLE 0x0008
227#define KS8841_WOL_FRAME2_ENABLE 0x0004
228#define KS8841_WOL_FRAME1_ENABLE 0x0002
229#define KS8841_WOL_FRAME0_ENABLE 0x0001
230
231
232#define KS8841_WOL_FRAME_CRC_OFFSET 0x0220
233#define KS8841_WOL_FRAME_BYTE0_OFFSET 0x0224
234#define KS8841_WOL_FRAME_BYTE2_OFFSET 0x0228
235
236
237#define KS884X_IACR_P 0x04A0
238#define KS884X_IACR_OFFSET KS884X_IACR_P
239
240
241#define KS884X_IADR1_P 0x04A2
242#define KS884X_IADR2_P 0x04A4
243#define KS884X_IADR3_P 0x04A6
244#define KS884X_IADR4_P 0x04A8
245#define KS884X_IADR5_P 0x04AA
246
247#define KS884X_ACC_CTRL_SEL_OFFSET KS884X_IACR_P
248#define KS884X_ACC_CTRL_INDEX_OFFSET (KS884X_ACC_CTRL_SEL_OFFSET + 1)
249
250#define KS884X_ACC_DATA_0_OFFSET KS884X_IADR4_P
251#define KS884X_ACC_DATA_1_OFFSET (KS884X_ACC_DATA_0_OFFSET + 1)
252#define KS884X_ACC_DATA_2_OFFSET KS884X_IADR5_P
253#define KS884X_ACC_DATA_3_OFFSET (KS884X_ACC_DATA_2_OFFSET + 1)
254#define KS884X_ACC_DATA_4_OFFSET KS884X_IADR2_P
255#define KS884X_ACC_DATA_5_OFFSET (KS884X_ACC_DATA_4_OFFSET + 1)
256#define KS884X_ACC_DATA_6_OFFSET KS884X_IADR3_P
257#define KS884X_ACC_DATA_7_OFFSET (KS884X_ACC_DATA_6_OFFSET + 1)
258#define KS884X_ACC_DATA_8_OFFSET KS884X_IADR1_P
259
260
261#define KS884X_P1MBCR_P 0x04D0
262#define KS884X_P1MBSR_P 0x04D2
263#define KS884X_PHY1ILR_P 0x04D4
264#define KS884X_PHY1IHR_P 0x04D6
265#define KS884X_P1ANAR_P 0x04D8
266#define KS884X_P1ANLPR_P 0x04DA
267
268
269#define KS884X_P2MBCR_P 0x04E0
270#define KS884X_P2MBSR_P 0x04E2
271#define KS884X_PHY2ILR_P 0x04E4
272#define KS884X_PHY2IHR_P 0x04E6
273#define KS884X_P2ANAR_P 0x04E8
274#define KS884X_P2ANLPR_P 0x04EA
275
276#define KS884X_PHY_1_CTRL_OFFSET KS884X_P1MBCR_P
277#define PHY_CTRL_INTERVAL (KS884X_P2MBCR_P - KS884X_P1MBCR_P)
278
279#define KS884X_PHY_CTRL_OFFSET 0x00
280
281
282#define PHY_REG_CTRL 0
283
284#define PHY_RESET 0x8000
285#define PHY_LOOPBACK 0x4000
286#define PHY_SPEED_100MBIT 0x2000
287#define PHY_AUTO_NEG_ENABLE 0x1000
288#define PHY_POWER_DOWN 0x0800
289#define PHY_MII_DISABLE 0x0400
290#define PHY_AUTO_NEG_RESTART 0x0200
291#define PHY_FULL_DUPLEX 0x0100
292#define PHY_COLLISION_TEST 0x0080
293#define PHY_HP_MDIX 0x0020
294#define PHY_FORCE_MDIX 0x0010
295#define PHY_AUTO_MDIX_DISABLE 0x0008
296#define PHY_REMOTE_FAULT_DISABLE 0x0004
297#define PHY_TRANSMIT_DISABLE 0x0002
298#define PHY_LED_DISABLE 0x0001
299
300#define KS884X_PHY_STATUS_OFFSET 0x02
301
302
303#define PHY_REG_STATUS 1
304
305#define PHY_100BT4_CAPABLE 0x8000
306#define PHY_100BTX_FD_CAPABLE 0x4000
307#define PHY_100BTX_CAPABLE 0x2000
308#define PHY_10BT_FD_CAPABLE 0x1000
309#define PHY_10BT_CAPABLE 0x0800
310#define PHY_MII_SUPPRESS_CAPABLE 0x0040
311#define PHY_AUTO_NEG_ACKNOWLEDGE 0x0020
312#define PHY_REMOTE_FAULT 0x0010
313#define PHY_AUTO_NEG_CAPABLE 0x0008
314#define PHY_LINK_STATUS 0x0004
315#define PHY_JABBER_DETECT 0x0002
316#define PHY_EXTENDED_CAPABILITY 0x0001
317
318#define KS884X_PHY_ID_1_OFFSET 0x04
319#define KS884X_PHY_ID_2_OFFSET 0x06
320
321
322#define PHY_REG_ID_1 2
323#define PHY_REG_ID_2 3
324
325#define KS884X_PHY_AUTO_NEG_OFFSET 0x08
326
327
328#define PHY_REG_AUTO_NEGOTIATION 4
329
330#define PHY_AUTO_NEG_NEXT_PAGE 0x8000
331#define PHY_AUTO_NEG_REMOTE_FAULT 0x2000
332
333#define PHY_AUTO_NEG_ASYM_PAUSE 0x0800
334#define PHY_AUTO_NEG_SYM_PAUSE 0x0400
335#define PHY_AUTO_NEG_100BT4 0x0200
336#define PHY_AUTO_NEG_100BTX_FD 0x0100
337#define PHY_AUTO_NEG_100BTX 0x0080
338#define PHY_AUTO_NEG_10BT_FD 0x0040
339#define PHY_AUTO_NEG_10BT 0x0020
340#define PHY_AUTO_NEG_SELECTOR 0x001F
341#define PHY_AUTO_NEG_802_3 0x0001
342
343#define PHY_AUTO_NEG_PAUSE (PHY_AUTO_NEG_SYM_PAUSE | PHY_AUTO_NEG_ASYM_PAUSE)
344
345#define KS884X_PHY_REMOTE_CAP_OFFSET 0x0A
346
347
348#define PHY_REG_REMOTE_CAPABILITY 5
349
350#define PHY_REMOTE_NEXT_PAGE 0x8000
351#define PHY_REMOTE_ACKNOWLEDGE 0x4000
352#define PHY_REMOTE_REMOTE_FAULT 0x2000
353#define PHY_REMOTE_SYM_PAUSE 0x0400
354#define PHY_REMOTE_100BTX_FD 0x0100
355#define PHY_REMOTE_100BTX 0x0080
356#define PHY_REMOTE_10BT_FD 0x0040
357#define PHY_REMOTE_10BT 0x0020
358
359
360#define KS884X_P1VCT_P 0x04F0
361#define KS884X_P1PHYCTRL_P 0x04F2
362
363
364#define KS884X_P2VCT_P 0x04F4
365#define KS884X_P2PHYCTRL_P 0x04F6
366
367#define KS884X_PHY_SPECIAL_OFFSET KS884X_P1VCT_P
368#define PHY_SPECIAL_INTERVAL (KS884X_P2VCT_P - KS884X_P1VCT_P)
369
370#define KS884X_PHY_LINK_MD_OFFSET 0x00
371
372#define PHY_START_CABLE_DIAG 0x8000
373#define PHY_CABLE_DIAG_RESULT 0x6000
374#define PHY_CABLE_STAT_NORMAL 0x0000
375#define PHY_CABLE_STAT_OPEN 0x2000
376#define PHY_CABLE_STAT_SHORT 0x4000
377#define PHY_CABLE_STAT_FAILED 0x6000
378#define PHY_CABLE_10M_SHORT 0x1000
379#define PHY_CABLE_FAULT_COUNTER 0x01FF
380
381#define KS884X_PHY_PHY_CTRL_OFFSET 0x02
382
383#define PHY_STAT_REVERSED_POLARITY 0x0020
384#define PHY_STAT_MDIX 0x0010
385#define PHY_FORCE_LINK 0x0008
386#define PHY_POWER_SAVING_DISABLE 0x0004
387#define PHY_REMOTE_LOOPBACK 0x0002
388
389
390#define KS884X_SIDER_P 0x0400
391#define KS884X_CHIP_ID_OFFSET KS884X_SIDER_P
392#define KS884X_FAMILY_ID_OFFSET (KS884X_CHIP_ID_OFFSET + 1)
393
394#define REG_FAMILY_ID 0x88
395
396#define REG_CHIP_ID_41 0x8810
397#define REG_CHIP_ID_42 0x8800
398
399#define KS884X_CHIP_ID_MASK_41 0xFF10
400#define KS884X_CHIP_ID_MASK 0xFFF0
401#define KS884X_CHIP_ID_SHIFT 4
402#define KS884X_REVISION_MASK 0x000E
403#define KS884X_REVISION_SHIFT 1
404#define KS8842_START 0x0001
405
406#define CHIP_IP_41_M 0x8810
407#define CHIP_IP_42_M 0x8800
408#define CHIP_IP_61_M 0x8890
409#define CHIP_IP_62_M 0x8880
410
411#define CHIP_IP_41_P 0x8850
412#define CHIP_IP_42_P 0x8840
413#define CHIP_IP_61_P 0x88D0
414#define CHIP_IP_62_P 0x88C0
415
416
417#define KS8842_SGCR1_P 0x0402
418#define KS8842_SWITCH_CTRL_1_OFFSET KS8842_SGCR1_P
419
420#define SWITCH_PASS_ALL 0x8000
421#define SWITCH_TX_FLOW_CTRL 0x2000
422#define SWITCH_RX_FLOW_CTRL 0x1000
423#define SWITCH_CHECK_LENGTH 0x0800
424#define SWITCH_AGING_ENABLE 0x0400
425#define SWITCH_FAST_AGING 0x0200
426#define SWITCH_AGGR_BACKOFF 0x0100
427#define SWITCH_PASS_PAUSE 0x0008
428#define SWITCH_LINK_AUTO_AGING 0x0001
429
430
431#define KS8842_SGCR2_P 0x0404
432#define KS8842_SWITCH_CTRL_2_OFFSET KS8842_SGCR2_P
433
434#define SWITCH_VLAN_ENABLE 0x8000
435#define SWITCH_IGMP_SNOOP 0x4000
436#define IPV6_MLD_SNOOP_ENABLE 0x2000
437#define IPV6_MLD_SNOOP_OPTION 0x1000
438#define PRIORITY_SCHEME_SELECT 0x0800
439#define SWITCH_MIRROR_RX_TX 0x0100
440#define UNICAST_VLAN_BOUNDARY 0x0080
441#define MULTICAST_STORM_DISABLE 0x0040
442#define SWITCH_BACK_PRESSURE 0x0020
443#define FAIR_FLOW_CTRL 0x0010
444#define NO_EXC_COLLISION_DROP 0x0008
445#define SWITCH_HUGE_PACKET 0x0004
446#define SWITCH_LEGAL_PACKET 0x0002
447#define SWITCH_BUF_RESERVE 0x0001
448
449
450#define KS8842_SGCR3_P 0x0406
451#define KS8842_SWITCH_CTRL_3_OFFSET KS8842_SGCR3_P
452
453#define BROADCAST_STORM_RATE_LO 0xFF00
454#define SWITCH_REPEATER 0x0080
455#define SWITCH_HALF_DUPLEX 0x0040
456#define SWITCH_FLOW_CTRL 0x0020
457#define SWITCH_10_MBIT 0x0010
458#define SWITCH_REPLACE_NULL_VID 0x0008
459#define BROADCAST_STORM_RATE_HI 0x0007
460
461#define BROADCAST_STORM_RATE 0x07FF
462
463
464#define KS8842_SGCR4_P 0x0408
465
466
467#define KS8842_SGCR5_P 0x040A
468#define KS8842_SWITCH_CTRL_5_OFFSET KS8842_SGCR5_P
469
470#define LED_MODE 0x8200
471#define LED_SPEED_DUPLEX_ACT 0x0000
472#define LED_SPEED_DUPLEX_LINK_ACT 0x8000
473#define LED_DUPLEX_10_100 0x0200
474
475
476#define KS8842_SGCR6_P 0x0410
477#define KS8842_SWITCH_CTRL_6_OFFSET KS8842_SGCR6_P
478
479#define KS8842_PRIORITY_MASK 3
480#define KS8842_PRIORITY_SHIFT 2
481
482
483#define KS8842_SGCR7_P 0x0412
484#define KS8842_SWITCH_CTRL_7_OFFSET KS8842_SGCR7_P
485
486#define SWITCH_UNK_DEF_PORT_ENABLE 0x0008
487#define SWITCH_UNK_DEF_PORT_3 0x0004
488#define SWITCH_UNK_DEF_PORT_2 0x0002
489#define SWITCH_UNK_DEF_PORT_1 0x0001
490
491
492#define KS8842_MACAR1_P 0x0470
493#define KS8842_MACAR2_P 0x0472
494#define KS8842_MACAR3_P 0x0474
495#define KS8842_MAC_ADDR_1_OFFSET KS8842_MACAR1_P
496#define KS8842_MAC_ADDR_0_OFFSET (KS8842_MAC_ADDR_1_OFFSET + 1)
497#define KS8842_MAC_ADDR_3_OFFSET KS8842_MACAR2_P
498#define KS8842_MAC_ADDR_2_OFFSET (KS8842_MAC_ADDR_3_OFFSET + 1)
499#define KS8842_MAC_ADDR_5_OFFSET KS8842_MACAR3_P
500#define KS8842_MAC_ADDR_4_OFFSET (KS8842_MAC_ADDR_5_OFFSET + 1)
501
502
503#define KS8842_TOSR1_P 0x0480
504#define KS8842_TOSR2_P 0x0482
505#define KS8842_TOSR3_P 0x0484
506#define KS8842_TOSR4_P 0x0486
507#define KS8842_TOSR5_P 0x0488
508#define KS8842_TOSR6_P 0x048A
509#define KS8842_TOSR7_P 0x0490
510#define KS8842_TOSR8_P 0x0492
511#define KS8842_TOS_1_OFFSET KS8842_TOSR1_P
512#define KS8842_TOS_2_OFFSET KS8842_TOSR2_P
513#define KS8842_TOS_3_OFFSET KS8842_TOSR3_P
514#define KS8842_TOS_4_OFFSET KS8842_TOSR4_P
515#define KS8842_TOS_5_OFFSET KS8842_TOSR5_P
516#define KS8842_TOS_6_OFFSET KS8842_TOSR6_P
517
518#define KS8842_TOS_7_OFFSET KS8842_TOSR7_P
519#define KS8842_TOS_8_OFFSET KS8842_TOSR8_P
520
521
522#define KS8842_P1CR1_P 0x0500
523#define KS8842_P1CR2_P 0x0502
524#define KS8842_P1VIDR_P 0x0504
525#define KS8842_P1CR3_P 0x0506
526#define KS8842_P1IRCR_P 0x0508
527#define KS8842_P1ERCR_P 0x050A
528#define KS884X_P1SCSLMD_P 0x0510
529#define KS884X_P1CR4_P 0x0512
530#define KS884X_P1SR_P 0x0514
531
532
533#define KS8842_P2CR1_P 0x0520
534#define KS8842_P2CR2_P 0x0522
535#define KS8842_P2VIDR_P 0x0524
536#define KS8842_P2CR3_P 0x0526
537#define KS8842_P2IRCR_P 0x0528
538#define KS8842_P2ERCR_P 0x052A
539#define KS884X_P2SCSLMD_P 0x0530
540#define KS884X_P2CR4_P 0x0532
541#define KS884X_P2SR_P 0x0534
542
543
544#define KS8842_P3CR1_P 0x0540
545#define KS8842_P3CR2_P 0x0542
546#define KS8842_P3VIDR_P 0x0544
547#define KS8842_P3CR3_P 0x0546
548#define KS8842_P3IRCR_P 0x0548
549#define KS8842_P3ERCR_P 0x054A
550
551#define KS8842_PORT_1_CTRL_1 KS8842_P1CR1_P
552#define KS8842_PORT_2_CTRL_1 KS8842_P2CR1_P
553#define KS8842_PORT_3_CTRL_1 KS8842_P3CR1_P
554
555#define PORT_CTRL_ADDR(port, addr) \
556 (addr = KS8842_PORT_1_CTRL_1 + (port) * \
557 (KS8842_PORT_2_CTRL_1 - KS8842_PORT_1_CTRL_1))
558
559#define KS8842_PORT_CTRL_1_OFFSET 0x00
560
561#define PORT_BROADCAST_STORM 0x0080
562#define PORT_DIFFSERV_ENABLE 0x0040
563#define PORT_802_1P_ENABLE 0x0020
564#define PORT_BASED_PRIORITY_MASK 0x0018
565#define PORT_BASED_PRIORITY_BASE 0x0003
566#define PORT_BASED_PRIORITY_SHIFT 3
567#define PORT_BASED_PRIORITY_0 0x0000
568#define PORT_BASED_PRIORITY_1 0x0008
569#define PORT_BASED_PRIORITY_2 0x0010
570#define PORT_BASED_PRIORITY_3 0x0018
571#define PORT_INSERT_TAG 0x0004
572#define PORT_REMOVE_TAG 0x0002
573#define PORT_PRIO_QUEUE_ENABLE 0x0001
574
575#define KS8842_PORT_CTRL_2_OFFSET 0x02
576
577#define PORT_INGRESS_VLAN_FILTER 0x4000
578#define PORT_DISCARD_NON_VID 0x2000
579#define PORT_FORCE_FLOW_CTRL 0x1000
580#define PORT_BACK_PRESSURE 0x0800
581#define PORT_TX_ENABLE 0x0400
582#define PORT_RX_ENABLE 0x0200
583#define PORT_LEARN_DISABLE 0x0100
584#define PORT_MIRROR_SNIFFER 0x0080
585#define PORT_MIRROR_RX 0x0040
586#define PORT_MIRROR_TX 0x0020
587#define PORT_USER_PRIORITY_CEILING 0x0008
588#define PORT_VLAN_MEMBERSHIP 0x0007
589
590#define KS8842_PORT_CTRL_VID_OFFSET 0x04
591
592#define PORT_DEFAULT_VID 0x0001
593
594#define KS8842_PORT_CTRL_3_OFFSET 0x06
595
596#define PORT_INGRESS_LIMIT_MODE 0x000C
597#define PORT_INGRESS_ALL 0x0000
598#define PORT_INGRESS_UNICAST 0x0004
599#define PORT_INGRESS_MULTICAST 0x0008
600#define PORT_INGRESS_BROADCAST 0x000C
601#define PORT_COUNT_IFG 0x0002
602#define PORT_COUNT_PREAMBLE 0x0001
603
604#define KS8842_PORT_IN_RATE_OFFSET 0x08
605#define KS8842_PORT_OUT_RATE_OFFSET 0x0A
606
607#define PORT_PRIORITY_RATE 0x0F
608#define PORT_PRIORITY_RATE_SHIFT 4
609
610#define KS884X_PORT_LINK_MD 0x10
611
612#define PORT_CABLE_10M_SHORT 0x8000
613#define PORT_CABLE_DIAG_RESULT 0x6000
614#define PORT_CABLE_STAT_NORMAL 0x0000
615#define PORT_CABLE_STAT_OPEN 0x2000
616#define PORT_CABLE_STAT_SHORT 0x4000
617#define PORT_CABLE_STAT_FAILED 0x6000
618#define PORT_START_CABLE_DIAG 0x1000
619#define PORT_FORCE_LINK 0x0800
620#define PORT_POWER_SAVING_DISABLE 0x0400
621#define PORT_PHY_REMOTE_LOOPBACK 0x0200
622#define PORT_CABLE_FAULT_COUNTER 0x01FF
623
624#define KS884X_PORT_CTRL_4_OFFSET 0x12
625
626#define PORT_LED_OFF 0x8000
627#define PORT_TX_DISABLE 0x4000
628#define PORT_AUTO_NEG_RESTART 0x2000
629#define PORT_REMOTE_FAULT_DISABLE 0x1000
630#define PORT_POWER_DOWN 0x0800
631#define PORT_AUTO_MDIX_DISABLE 0x0400
632#define PORT_FORCE_MDIX 0x0200
633#define PORT_LOOPBACK 0x0100
634#define PORT_AUTO_NEG_ENABLE 0x0080
635#define PORT_FORCE_100_MBIT 0x0040
636#define PORT_FORCE_FULL_DUPLEX 0x0020
637#define PORT_AUTO_NEG_SYM_PAUSE 0x0010
638#define PORT_AUTO_NEG_100BTX_FD 0x0008
639#define PORT_AUTO_NEG_100BTX 0x0004
640#define PORT_AUTO_NEG_10BT_FD 0x0002
641#define PORT_AUTO_NEG_10BT 0x0001
642
643#define KS884X_PORT_STATUS_OFFSET 0x14
644
645#define PORT_HP_MDIX 0x8000
646#define PORT_REVERSED_POLARITY 0x2000
647#define PORT_RX_FLOW_CTRL 0x0800
648#define PORT_TX_FLOW_CTRL 0x1000
649#define PORT_STATUS_SPEED_100MBIT 0x0400
650#define PORT_STATUS_FULL_DUPLEX 0x0200
651#define PORT_REMOTE_FAULT 0x0100
652#define PORT_MDIX_STATUS 0x0080
653#define PORT_AUTO_NEG_COMPLETE 0x0040
654#define PORT_STATUS_LINK_GOOD 0x0020
655#define PORT_REMOTE_SYM_PAUSE 0x0010
656#define PORT_REMOTE_100BTX_FD 0x0008
657#define PORT_REMOTE_100BTX 0x0004
658#define PORT_REMOTE_10BT_FD 0x0002
659#define PORT_REMOTE_10BT 0x0001
660
661
662
663
664
665
666
667
668
669
670#define STATIC_MAC_TABLE_ADDR 0x0000FFFF
671#define STATIC_MAC_TABLE_FWD_PORTS 0x00070000
672#define STATIC_MAC_TABLE_VALID 0x00080000
673#define STATIC_MAC_TABLE_OVERRIDE 0x00100000
674#define STATIC_MAC_TABLE_USE_FID 0x00200000
675#define STATIC_MAC_TABLE_FID 0x03C00000
676
677#define STATIC_MAC_FWD_PORTS_SHIFT 16
678#define STATIC_MAC_FID_SHIFT 22
679
680
681
682
683
684
685
686
687#define VLAN_TABLE_VID 0x00000FFF
688#define VLAN_TABLE_FID 0x0000F000
689#define VLAN_TABLE_MEMBERSHIP 0x00070000
690#define VLAN_TABLE_VALID 0x00080000
691
692#define VLAN_TABLE_FID_SHIFT 12
693#define VLAN_TABLE_MEMBERSHIP_SHIFT 16
694
695
696
697
698
699
700
701
702
703
704
705
706#define DYNAMIC_MAC_TABLE_ADDR 0x0000FFFF
707#define DYNAMIC_MAC_TABLE_FID 0x000F0000
708#define DYNAMIC_MAC_TABLE_SRC_PORT 0x00300000
709#define DYNAMIC_MAC_TABLE_TIMESTAMP 0x00C00000
710#define DYNAMIC_MAC_TABLE_ENTRIES 0xFF000000
711
712#define DYNAMIC_MAC_TABLE_ENTRIES_H 0x03
713#define DYNAMIC_MAC_TABLE_MAC_EMPTY 0x04
714#define DYNAMIC_MAC_TABLE_RESERVED 0x78
715#define DYNAMIC_MAC_TABLE_NOT_READY 0x80
716
717#define DYNAMIC_MAC_FID_SHIFT 16
718#define DYNAMIC_MAC_SRC_PORT_SHIFT 20
719#define DYNAMIC_MAC_TIMESTAMP_SHIFT 22
720#define DYNAMIC_MAC_ENTRIES_SHIFT 24
721#define DYNAMIC_MAC_ENTRIES_H_SHIFT 8
722
723
724
725
726
727
728
729#define MIB_COUNTER_VALUE 0x3FFFFFFF
730#define MIB_COUNTER_VALID 0x40000000
731#define MIB_COUNTER_OVERFLOW 0x80000000
732
733#define MIB_PACKET_DROPPED 0x0000FFFF
734
735#define KS_MIB_PACKET_DROPPED_TX_0 0x100
736#define KS_MIB_PACKET_DROPPED_TX_1 0x101
737#define KS_MIB_PACKET_DROPPED_TX 0x102
738#define KS_MIB_PACKET_DROPPED_RX_0 0x103
739#define KS_MIB_PACKET_DROPPED_RX_1 0x104
740#define KS_MIB_PACKET_DROPPED_RX 0x105
741
742
743#define SET_DEFAULT_LED LED_SPEED_DUPLEX_ACT
744
745#define MAC_ADDR_LEN 6
746#define MAC_ADDR_ORDER(i) (MAC_ADDR_LEN - 1 - (i))
747
748#define MAX_ETHERNET_BODY_SIZE 1500
749#define ETHERNET_HEADER_SIZE 14
750
751#define MAX_ETHERNET_PACKET_SIZE \
752 (MAX_ETHERNET_BODY_SIZE + ETHERNET_HEADER_SIZE)
753
754#define REGULAR_RX_BUF_SIZE (MAX_ETHERNET_PACKET_SIZE + 4)
755#define MAX_RX_BUF_SIZE (1912 + 4)
756
757#define ADDITIONAL_ENTRIES 16
758#define MAX_MULTICAST_LIST 32
759
760#define HW_MULTICAST_SIZE 8
761
762#define HW_TO_DEV_PORT(port) (port - 1)
763
764enum {
765 media_connected,
766 media_disconnected
767};
768
769enum {
770 OID_COUNTER_UNKOWN,
771
772 OID_COUNTER_FIRST,
773
774
775 OID_COUNTER_XMIT_ERROR,
776
777
778 OID_COUNTER_RCV_ERROR,
779
780 OID_COUNTER_LAST
781};
782
783
784
785
786
787#define DESC_ALIGNMENT 16
788#define BUFFER_ALIGNMENT 8
789
790#define NUM_OF_RX_DESC 64
791#define NUM_OF_TX_DESC 64
792
793#define KS_DESC_RX_FRAME_LEN 0x000007FF
794#define KS_DESC_RX_FRAME_TYPE 0x00008000
795#define KS_DESC_RX_ERROR_CRC 0x00010000
796#define KS_DESC_RX_ERROR_RUNT 0x00020000
797#define KS_DESC_RX_ERROR_TOO_LONG 0x00040000
798#define KS_DESC_RX_ERROR_PHY 0x00080000
799#define KS884X_DESC_RX_PORT_MASK 0x00300000
800#define KS_DESC_RX_MULTICAST 0x01000000
801#define KS_DESC_RX_ERROR 0x02000000
802#define KS_DESC_RX_ERROR_CSUM_UDP 0x04000000
803#define KS_DESC_RX_ERROR_CSUM_TCP 0x08000000
804#define KS_DESC_RX_ERROR_CSUM_IP 0x10000000
805#define KS_DESC_RX_LAST 0x20000000
806#define KS_DESC_RX_FIRST 0x40000000
807#define KS_DESC_RX_ERROR_COND \
808 (KS_DESC_RX_ERROR_CRC | \
809 KS_DESC_RX_ERROR_RUNT | \
810 KS_DESC_RX_ERROR_PHY | \
811 KS_DESC_RX_ERROR_TOO_LONG)
812
813#define KS_DESC_HW_OWNED 0x80000000
814
815#define KS_DESC_BUF_SIZE 0x000007FF
816#define KS884X_DESC_TX_PORT_MASK 0x00300000
817#define KS_DESC_END_OF_RING 0x02000000
818#define KS_DESC_TX_CSUM_GEN_UDP 0x04000000
819#define KS_DESC_TX_CSUM_GEN_TCP 0x08000000
820#define KS_DESC_TX_CSUM_GEN_IP 0x10000000
821#define KS_DESC_TX_LAST 0x20000000
822#define KS_DESC_TX_FIRST 0x40000000
823#define KS_DESC_TX_INTERRUPT 0x80000000
824
825#define KS_DESC_PORT_SHIFT 20
826
827#define KS_DESC_RX_MASK (KS_DESC_BUF_SIZE)
828
829#define KS_DESC_TX_MASK \
830 (KS_DESC_TX_INTERRUPT | \
831 KS_DESC_TX_FIRST | \
832 KS_DESC_TX_LAST | \
833 KS_DESC_TX_CSUM_GEN_IP | \
834 KS_DESC_TX_CSUM_GEN_TCP | \
835 KS_DESC_TX_CSUM_GEN_UDP | \
836 KS_DESC_BUF_SIZE)
837
838struct ksz_desc_rx_stat {
839#ifdef __BIG_ENDIAN_BITFIELD
840 u32 hw_owned:1;
841 u32 first_desc:1;
842 u32 last_desc:1;
843 u32 csum_err_ip:1;
844 u32 csum_err_tcp:1;
845 u32 csum_err_udp:1;
846 u32 error:1;
847 u32 multicast:1;
848 u32 src_port:4;
849 u32 err_phy:1;
850 u32 err_too_long:1;
851 u32 err_runt:1;
852 u32 err_crc:1;
853 u32 frame_type:1;
854 u32 reserved1:4;
855 u32 frame_len:11;
856#else
857 u32 frame_len:11;
858 u32 reserved1:4;
859 u32 frame_type:1;
860 u32 err_crc:1;
861 u32 err_runt:1;
862 u32 err_too_long:1;
863 u32 err_phy:1;
864 u32 src_port:4;
865 u32 multicast:1;
866 u32 error:1;
867 u32 csum_err_udp:1;
868 u32 csum_err_tcp:1;
869 u32 csum_err_ip:1;
870 u32 last_desc:1;
871 u32 first_desc:1;
872 u32 hw_owned:1;
873#endif
874};
875
876struct ksz_desc_tx_stat {
877#ifdef __BIG_ENDIAN_BITFIELD
878 u32 hw_owned:1;
879 u32 reserved1:31;
880#else
881 u32 reserved1:31;
882 u32 hw_owned:1;
883#endif
884};
885
886struct ksz_desc_rx_buf {
887#ifdef __BIG_ENDIAN_BITFIELD
888 u32 reserved4:6;
889 u32 end_of_ring:1;
890 u32 reserved3:14;
891 u32 buf_size:11;
892#else
893 u32 buf_size:11;
894 u32 reserved3:14;
895 u32 end_of_ring:1;
896 u32 reserved4:6;
897#endif
898};
899
900struct ksz_desc_tx_buf {
901#ifdef __BIG_ENDIAN_BITFIELD
902 u32 intr:1;
903 u32 first_seg:1;
904 u32 last_seg:1;
905 u32 csum_gen_ip:1;
906 u32 csum_gen_tcp:1;
907 u32 csum_gen_udp:1;
908 u32 end_of_ring:1;
909 u32 reserved4:1;
910 u32 dest_port:4;
911 u32 reserved3:9;
912 u32 buf_size:11;
913#else
914 u32 buf_size:11;
915 u32 reserved3:9;
916 u32 dest_port:4;
917 u32 reserved4:1;
918 u32 end_of_ring:1;
919 u32 csum_gen_udp:1;
920 u32 csum_gen_tcp:1;
921 u32 csum_gen_ip:1;
922 u32 last_seg:1;
923 u32 first_seg:1;
924 u32 intr:1;
925#endif
926};
927
928union desc_stat {
929 struct ksz_desc_rx_stat rx;
930 struct ksz_desc_tx_stat tx;
931 u32 data;
932};
933
934union desc_buf {
935 struct ksz_desc_rx_buf rx;
936 struct ksz_desc_tx_buf tx;
937 u32 data;
938};
939
940
941
942
943
944
945
946
947struct ksz_hw_desc {
948 union desc_stat ctrl;
949 union desc_buf buf;
950 u32 addr;
951 u32 next;
952};
953
954
955
956
957
958
959
960struct ksz_sw_desc {
961 union desc_stat ctrl;
962 union desc_buf buf;
963 u32 buf_size;
964};
965
966
967
968
969
970
971
972struct ksz_dma_buf {
973 struct sk_buff *skb;
974 dma_addr_t dma;
975 int len;
976};
977
978
979
980
981
982
983
984
985
986struct ksz_desc {
987 struct ksz_hw_desc *phw;
988 struct ksz_sw_desc sw;
989 struct ksz_dma_buf dma_buf;
990};
991
992#define DMA_BUFFER(desc) ((struct ksz_dma_buf *)(&(desc)->dma_buf))
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007struct ksz_desc_info {
1008 struct ksz_desc *ring;
1009 struct ksz_desc *cur;
1010 struct ksz_hw_desc *ring_virt;
1011 u32 ring_phys;
1012 int size;
1013 int alloc;
1014 int avail;
1015 int last;
1016 int next;
1017 int mask;
1018};
1019
1020
1021
1022
1023
1024enum {
1025 TABLE_STATIC_MAC = 0,
1026 TABLE_VLAN,
1027 TABLE_DYNAMIC_MAC,
1028 TABLE_MIB
1029};
1030
1031#define LEARNED_MAC_TABLE_ENTRIES 1024
1032#define STATIC_MAC_TABLE_ENTRIES 8
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044struct ksz_mac_table {
1045 u8 mac_addr[MAC_ADDR_LEN];
1046 u16 vid;
1047 u8 fid;
1048 u8 ports;
1049 u8 override:1;
1050 u8 use_fid:1;
1051 u8 valid:1;
1052};
1053
1054#define VLAN_TABLE_ENTRIES 16
1055
1056
1057
1058
1059
1060
1061
1062struct ksz_vlan_table {
1063 u16 vid;
1064 u8 fid;
1065 u8 member;
1066};
1067
1068#define DIFFSERV_ENTRIES 64
1069#define PRIO_802_1P_ENTRIES 8
1070#define PRIO_QUEUES 4
1071
1072#define SWITCH_PORT_NUM 2
1073#define TOTAL_PORT_NUM (SWITCH_PORT_NUM + 1)
1074#define HOST_MASK (1 << SWITCH_PORT_NUM)
1075#define PORT_MASK 7
1076
1077#define MAIN_PORT 0
1078#define OTHER_PORT 1
1079#define HOST_PORT SWITCH_PORT_NUM
1080
1081#define PORT_COUNTER_NUM 0x20
1082#define TOTAL_PORT_COUNTER_NUM (PORT_COUNTER_NUM + 2)
1083
1084#define MIB_COUNTER_RX_LO_PRIORITY 0x00
1085#define MIB_COUNTER_RX_HI_PRIORITY 0x01
1086#define MIB_COUNTER_RX_UNDERSIZE 0x02
1087#define MIB_COUNTER_RX_FRAGMENT 0x03
1088#define MIB_COUNTER_RX_OVERSIZE 0x04
1089#define MIB_COUNTER_RX_JABBER 0x05
1090#define MIB_COUNTER_RX_SYMBOL_ERR 0x06
1091#define MIB_COUNTER_RX_CRC_ERR 0x07
1092#define MIB_COUNTER_RX_ALIGNMENT_ERR 0x08
1093#define MIB_COUNTER_RX_CTRL_8808 0x09
1094#define MIB_COUNTER_RX_PAUSE 0x0A
1095#define MIB_COUNTER_RX_BROADCAST 0x0B
1096#define MIB_COUNTER_RX_MULTICAST 0x0C
1097#define MIB_COUNTER_RX_UNICAST 0x0D
1098#define MIB_COUNTER_RX_OCTET_64 0x0E
1099#define MIB_COUNTER_RX_OCTET_65_127 0x0F
1100#define MIB_COUNTER_RX_OCTET_128_255 0x10
1101#define MIB_COUNTER_RX_OCTET_256_511 0x11
1102#define MIB_COUNTER_RX_OCTET_512_1023 0x12
1103#define MIB_COUNTER_RX_OCTET_1024_1522 0x13
1104#define MIB_COUNTER_TX_LO_PRIORITY 0x14
1105#define MIB_COUNTER_TX_HI_PRIORITY 0x15
1106#define MIB_COUNTER_TX_LATE_COLLISION 0x16
1107#define MIB_COUNTER_TX_PAUSE 0x17
1108#define MIB_COUNTER_TX_BROADCAST 0x18
1109#define MIB_COUNTER_TX_MULTICAST 0x19
1110#define MIB_COUNTER_TX_UNICAST 0x1A
1111#define MIB_COUNTER_TX_DEFERRED 0x1B
1112#define MIB_COUNTER_TX_TOTAL_COLLISION 0x1C
1113#define MIB_COUNTER_TX_EXCESS_COLLISION 0x1D
1114#define MIB_COUNTER_TX_SINGLE_COLLISION 0x1E
1115#define MIB_COUNTER_TX_MULTI_COLLISION 0x1F
1116
1117#define MIB_COUNTER_RX_DROPPED_PACKET 0x20
1118#define MIB_COUNTER_TX_DROPPED_PACKET 0x21
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139struct ksz_port_mib {
1140 u8 cnt_ptr;
1141 u8 link_down;
1142 u8 state;
1143 u8 mib_start;
1144
1145 u64 counter[TOTAL_PORT_COUNTER_NUM];
1146 u32 dropped[2];
1147};
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158struct ksz_port_cfg {
1159 u16 vid;
1160 u8 member;
1161 u8 port_prio;
1162 u32 rx_rate[PRIO_QUEUES];
1163 u32 tx_rate[PRIO_QUEUES];
1164 int stp_state;
1165};
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181struct ksz_switch {
1182 struct ksz_mac_table mac_table[STATIC_MAC_TABLE_ENTRIES];
1183 struct ksz_vlan_table vlan_table[VLAN_TABLE_ENTRIES];
1184 struct ksz_port_cfg port_cfg[TOTAL_PORT_NUM];
1185
1186 u8 diffserv[DIFFSERV_ENTRIES];
1187 u8 p_802_1p[PRIO_802_1P_ENTRIES];
1188
1189 u8 br_addr[MAC_ADDR_LEN];
1190 u8 other_addr[MAC_ADDR_LEN];
1191
1192 u8 broad_per;
1193 u8 member;
1194};
1195
1196#define TX_RATE_UNIT 10000
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208struct ksz_port_info {
1209 uint state;
1210 uint tx_rate;
1211 u8 duplex;
1212 u8 advertised;
1213 u8 partner;
1214 u8 port_id;
1215 void *pdev;
1216};
1217
1218#define MAX_TX_HELD_SIZE 52000
1219
1220
1221#define LINK_INT_WORKING (1 << 0)
1222#define SMALL_PACKET_TX_BUG (1 << 1)
1223#define HALF_DUPLEX_SIGNAL_BUG (1 << 2)
1224#define RX_HUGE_FRAME (1 << 4)
1225#define STP_SUPPORT (1 << 8)
1226
1227
1228#define PAUSE_FLOW_CTRL (1 << 0)
1229#define FAST_AGING (1 << 1)
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269struct ksz_hw {
1270 void __iomem *io;
1271
1272 struct ksz_switch *ksz_switch;
1273 struct ksz_port_info port_info[SWITCH_PORT_NUM];
1274 struct ksz_port_mib port_mib[TOTAL_PORT_NUM];
1275 int dev_count;
1276 int dst_ports;
1277 int id;
1278 int mib_cnt;
1279 int mib_port_cnt;
1280
1281 u32 tx_cfg;
1282 u32 rx_cfg;
1283 u32 intr_mask;
1284 u32 intr_set;
1285 uint intr_blocked;
1286
1287 struct ksz_desc_info rx_desc_info;
1288 struct ksz_desc_info tx_desc_info;
1289
1290 int tx_int_cnt;
1291 int tx_int_mask;
1292 int tx_size;
1293
1294 u8 perm_addr[MAC_ADDR_LEN];
1295 u8 override_addr[MAC_ADDR_LEN];
1296 u8 address[ADDITIONAL_ENTRIES][MAC_ADDR_LEN];
1297 u8 addr_list_size;
1298 u8 mac_override;
1299 u8 promiscuous;
1300 u8 all_multi;
1301 u8 multi_list[MAX_MULTICAST_LIST][MAC_ADDR_LEN];
1302 u8 multi_bits[HW_MULTICAST_SIZE];
1303 u8 multi_list_size;
1304
1305 u8 enabled;
1306 u8 rx_stop;
1307 u8 reserved2[1];
1308
1309 uint features;
1310 uint overrides;
1311
1312 void *parent;
1313};
1314
1315enum {
1316 PHY_NO_FLOW_CTRL,
1317 PHY_FLOW_CTRL,
1318 PHY_TX_ONLY,
1319 PHY_RX_ONLY
1320};
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342struct ksz_port {
1343 u8 duplex;
1344 u8 speed;
1345 u8 force_link;
1346 u8 flow_ctrl;
1347
1348 int first_port;
1349 int mib_port_cnt;
1350 int port_cnt;
1351 u64 counter[OID_COUNTER_LAST];
1352
1353 struct ksz_hw *hw;
1354 struct ksz_port_info *linked;
1355};
1356
1357
1358
1359
1360
1361
1362
1363
1364struct ksz_timer_info {
1365 struct timer_list timer;
1366 int cnt;
1367 int max;
1368 int period;
1369};
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379struct ksz_shared_mem {
1380 dma_addr_t dma_addr;
1381 uint alloc_size;
1382 uint phys;
1383 u8 *alloc_virt;
1384 u8 *virt;
1385};
1386
1387
1388
1389
1390
1391
1392
1393struct ksz_counter_info {
1394 wait_queue_head_t counter;
1395 unsigned long time;
1396 int read;
1397};
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
1423struct dev_info {
1424 struct net_device *dev;
1425 struct pci_dev *pdev;
1426
1427 struct ksz_hw hw;
1428 struct ksz_shared_mem desc_pool;
1429
1430 spinlock_t hwlock;
1431 struct mutex lock;
1432
1433 int (*dev_rcv)(struct dev_info *);
1434
1435 struct sk_buff *last_skb;
1436 int skb_index;
1437 int skb_len;
1438
1439 struct work_struct mib_read;
1440 struct ksz_timer_info mib_timer_info;
1441 struct ksz_counter_info counter[TOTAL_PORT_NUM];
1442
1443 int mtu;
1444 int opened;
1445
1446 struct tasklet_struct rx_tasklet;
1447 struct tasklet_struct tx_tasklet;
1448
1449 int wol_enable;
1450 int wol_support;
1451 unsigned long pme_wait;
1452};
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468struct dev_priv {
1469 struct dev_info *adapter;
1470 struct ksz_port port;
1471 struct ksz_timer_info monitor_timer_info;
1472
1473 struct semaphore proc_sem;
1474 int id;
1475
1476 struct mii_if_info mii_if;
1477 u32 advertising;
1478
1479 u32 msg_enable;
1480 int media_state;
1481 int multicast;
1482 int promiscuous;
1483};
1484
1485#define DRV_NAME "KSZ884X PCI"
1486#define DEVICE_NAME "KSZ884x PCI"
1487#define DRV_VERSION "1.0.0"
1488#define DRV_RELDATE "Feb 8, 2010"
1489
1490static char version[] __devinitdata =
1491 "Micrel " DEVICE_NAME " " DRV_VERSION " (" DRV_RELDATE ")";
1492
1493static u8 DEFAULT_MAC_ADDRESS[] = { 0x00, 0x10, 0xA1, 0x88, 0x42, 0x01 };
1494
1495
1496
1497
1498
1499static inline void hw_ack_intr(struct ksz_hw *hw, uint interrupt)
1500{
1501 writel(interrupt, hw->io + KS884X_INTERRUPTS_STATUS);
1502}
1503
1504static inline void hw_dis_intr(struct ksz_hw *hw)
1505{
1506 hw->intr_blocked = hw->intr_mask;
1507 writel(0, hw->io + KS884X_INTERRUPTS_ENABLE);
1508 hw->intr_set = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1509}
1510
1511static inline void hw_set_intr(struct ksz_hw *hw, uint interrupt)
1512{
1513 hw->intr_set = interrupt;
1514 writel(interrupt, hw->io + KS884X_INTERRUPTS_ENABLE);
1515}
1516
1517static inline void hw_ena_intr(struct ksz_hw *hw)
1518{
1519 hw->intr_blocked = 0;
1520 hw_set_intr(hw, hw->intr_mask);
1521}
1522
1523static inline void hw_dis_intr_bit(struct ksz_hw *hw, uint bit)
1524{
1525 hw->intr_mask &= ~(bit);
1526}
1527
1528static inline void hw_turn_off_intr(struct ksz_hw *hw, uint interrupt)
1529{
1530 u32 read_intr;
1531
1532 read_intr = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1533 hw->intr_set = read_intr & ~interrupt;
1534 writel(hw->intr_set, hw->io + KS884X_INTERRUPTS_ENABLE);
1535 hw_dis_intr_bit(hw, interrupt);
1536}
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546static void hw_turn_on_intr(struct ksz_hw *hw, u32 bit)
1547{
1548 hw->intr_mask |= bit;
1549
1550 if (!hw->intr_blocked)
1551 hw_set_intr(hw, hw->intr_mask);
1552}
1553
1554static inline void hw_ena_intr_bit(struct ksz_hw *hw, uint interrupt)
1555{
1556 u32 read_intr;
1557
1558 read_intr = readl(hw->io + KS884X_INTERRUPTS_ENABLE);
1559 hw->intr_set = read_intr | interrupt;
1560 writel(hw->intr_set, hw->io + KS884X_INTERRUPTS_ENABLE);
1561}
1562
1563static inline void hw_read_intr(struct ksz_hw *hw, uint *status)
1564{
1565 *status = readl(hw->io + KS884X_INTERRUPTS_STATUS);
1566 *status = *status & hw->intr_set;
1567}
1568
1569static inline void hw_restore_intr(struct ksz_hw *hw, uint interrupt)
1570{
1571 if (interrupt)
1572 hw_ena_intr(hw);
1573}
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583static uint hw_block_intr(struct ksz_hw *hw)
1584{
1585 uint interrupt = 0;
1586
1587 if (!hw->intr_blocked) {
1588 hw_dis_intr(hw);
1589 interrupt = hw->intr_blocked;
1590 }
1591 return interrupt;
1592}
1593
1594
1595
1596
1597
1598static inline void reset_desc(struct ksz_desc *desc, union desc_stat status)
1599{
1600 status.rx.hw_owned = 0;
1601 desc->phw->ctrl.data = cpu_to_le32(status.data);
1602}
1603
1604static inline void release_desc(struct ksz_desc *desc)
1605{
1606 desc->sw.ctrl.tx.hw_owned = 1;
1607 if (desc->sw.buf_size != desc->sw.buf.data) {
1608 desc->sw.buf_size = desc->sw.buf.data;
1609 desc->phw->buf.data = cpu_to_le32(desc->sw.buf.data);
1610 }
1611 desc->phw->ctrl.data = cpu_to_le32(desc->sw.ctrl.data);
1612}
1613
1614static void get_rx_pkt(struct ksz_desc_info *info, struct ksz_desc **desc)
1615{
1616 *desc = &info->ring[info->last];
1617 info->last++;
1618 info->last &= info->mask;
1619 info->avail--;
1620 (*desc)->sw.buf.data &= ~KS_DESC_RX_MASK;
1621}
1622
1623static inline void set_rx_buf(struct ksz_desc *desc, u32 addr)
1624{
1625 desc->phw->addr = cpu_to_le32(addr);
1626}
1627
1628static inline void set_rx_len(struct ksz_desc *desc, u32 len)
1629{
1630 desc->sw.buf.rx.buf_size = len;
1631}
1632
1633static inline void get_tx_pkt(struct ksz_desc_info *info,
1634 struct ksz_desc **desc)
1635{
1636 *desc = &info->ring[info->next];
1637 info->next++;
1638 info->next &= info->mask;
1639 info->avail--;
1640 (*desc)->sw.buf.data &= ~KS_DESC_TX_MASK;
1641}
1642
1643static inline void set_tx_buf(struct ksz_desc *desc, u32 addr)
1644{
1645 desc->phw->addr = cpu_to_le32(addr);
1646}
1647
1648static inline void set_tx_len(struct ksz_desc *desc, u32 len)
1649{
1650 desc->sw.buf.tx.buf_size = len;
1651}
1652
1653
1654
1655#define TABLE_READ 0x10
1656#define TABLE_SEL_SHIFT 2
1657
1658#define HW_DELAY(hw, reg) \
1659 do { \
1660 u16 dummy; \
1661 dummy = readw(hw->io + reg); \
1662 } while (0)
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674static void sw_r_table(struct ksz_hw *hw, int table, u16 addr, u32 *data)
1675{
1676 u16 ctrl_addr;
1677 uint interrupt;
1678
1679 ctrl_addr = (((table << TABLE_SEL_SHIFT) | TABLE_READ) << 8) | addr;
1680
1681 interrupt = hw_block_intr(hw);
1682
1683 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1684 HW_DELAY(hw, KS884X_IACR_OFFSET);
1685 *data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1686
1687 hw_restore_intr(hw, interrupt);
1688}
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701static void sw_w_table_64(struct ksz_hw *hw, int table, u16 addr, u32 data_hi,
1702 u32 data_lo)
1703{
1704 u16 ctrl_addr;
1705 uint interrupt;
1706
1707 ctrl_addr = ((table << TABLE_SEL_SHIFT) << 8) | addr;
1708
1709 interrupt = hw_block_intr(hw);
1710
1711 writel(data_hi, hw->io + KS884X_ACC_DATA_4_OFFSET);
1712 writel(data_lo, hw->io + KS884X_ACC_DATA_0_OFFSET);
1713
1714 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1715 HW_DELAY(hw, KS884X_IACR_OFFSET);
1716
1717 hw_restore_intr(hw, interrupt);
1718}
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734static void sw_w_sta_mac_table(struct ksz_hw *hw, u16 addr, u8 *mac_addr,
1735 u8 ports, int override, int valid, int use_fid, u8 fid)
1736{
1737 u32 data_hi;
1738 u32 data_lo;
1739
1740 data_lo = ((u32) mac_addr[2] << 24) |
1741 ((u32) mac_addr[3] << 16) |
1742 ((u32) mac_addr[4] << 8) | mac_addr[5];
1743 data_hi = ((u32) mac_addr[0] << 8) | mac_addr[1];
1744 data_hi |= (u32) ports << STATIC_MAC_FWD_PORTS_SHIFT;
1745
1746 if (override)
1747 data_hi |= STATIC_MAC_TABLE_OVERRIDE;
1748 if (use_fid) {
1749 data_hi |= STATIC_MAC_TABLE_USE_FID;
1750 data_hi |= (u32) fid << STATIC_MAC_FID_SHIFT;
1751 }
1752 if (valid)
1753 data_hi |= STATIC_MAC_TABLE_VALID;
1754
1755 sw_w_table_64(hw, TABLE_STATIC_MAC, addr, data_hi, data_lo);
1756}
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771static int sw_r_vlan_table(struct ksz_hw *hw, u16 addr, u16 *vid, u8 *fid,
1772 u8 *member)
1773{
1774 u32 data;
1775
1776 sw_r_table(hw, TABLE_VLAN, addr, &data);
1777 if (data & VLAN_TABLE_VALID) {
1778 *vid = (u16)(data & VLAN_TABLE_VID);
1779 *fid = (u8)((data & VLAN_TABLE_FID) >> VLAN_TABLE_FID_SHIFT);
1780 *member = (u8)((data & VLAN_TABLE_MEMBERSHIP) >>
1781 VLAN_TABLE_MEMBERSHIP_SHIFT);
1782 return 0;
1783 }
1784 return -1;
1785}
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797static void port_r_mib_cnt(struct ksz_hw *hw, int port, u16 addr, u64 *cnt)
1798{
1799 u32 data;
1800 u16 ctrl_addr;
1801 uint interrupt;
1802 int timeout;
1803
1804 ctrl_addr = addr + PORT_COUNTER_NUM * port;
1805
1806 interrupt = hw_block_intr(hw);
1807
1808 ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ) << 8);
1809 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1810 HW_DELAY(hw, KS884X_IACR_OFFSET);
1811
1812 for (timeout = 100; timeout > 0; timeout--) {
1813 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1814
1815 if (data & MIB_COUNTER_VALID) {
1816 if (data & MIB_COUNTER_OVERFLOW)
1817 *cnt += MIB_COUNTER_VALUE + 1;
1818 *cnt += data & MIB_COUNTER_VALUE;
1819 break;
1820 }
1821 }
1822
1823 hw_restore_intr(hw, interrupt);
1824}
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835static void port_r_mib_pkt(struct ksz_hw *hw, int port, u32 *last, u64 *cnt)
1836{
1837 u32 cur;
1838 u32 data;
1839 u16 ctrl_addr;
1840 uint interrupt;
1841 int index;
1842
1843 index = KS_MIB_PACKET_DROPPED_RX_0 + port;
1844 do {
1845 interrupt = hw_block_intr(hw);
1846
1847 ctrl_addr = (u16) index;
1848 ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ)
1849 << 8);
1850 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1851 HW_DELAY(hw, KS884X_IACR_OFFSET);
1852 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1853
1854 hw_restore_intr(hw, interrupt);
1855
1856 data &= MIB_PACKET_DROPPED;
1857 cur = *last;
1858 if (data != cur) {
1859 *last = data;
1860 if (data < cur)
1861 data += MIB_PACKET_DROPPED + 1;
1862 data -= cur;
1863 *cnt += data;
1864 }
1865 ++last;
1866 ++cnt;
1867 index -= KS_MIB_PACKET_DROPPED_TX -
1868 KS_MIB_PACKET_DROPPED_TX_0 + 1;
1869 } while (index >= KS_MIB_PACKET_DROPPED_TX_0 + port);
1870}
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883static int port_r_cnt(struct ksz_hw *hw, int port)
1884{
1885 struct ksz_port_mib *mib = &hw->port_mib[port];
1886
1887 if (mib->mib_start < PORT_COUNTER_NUM)
1888 while (mib->cnt_ptr < PORT_COUNTER_NUM) {
1889 port_r_mib_cnt(hw, port, mib->cnt_ptr,
1890 &mib->counter[mib->cnt_ptr]);
1891 ++mib->cnt_ptr;
1892 }
1893 if (hw->mib_cnt > PORT_COUNTER_NUM)
1894 port_r_mib_pkt(hw, port, mib->dropped,
1895 &mib->counter[PORT_COUNTER_NUM]);
1896 mib->cnt_ptr = 0;
1897 return 0;
1898}
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908static void port_init_cnt(struct ksz_hw *hw, int port)
1909{
1910 struct ksz_port_mib *mib = &hw->port_mib[port];
1911
1912 mib->cnt_ptr = 0;
1913 if (mib->mib_start < PORT_COUNTER_NUM)
1914 do {
1915 port_r_mib_cnt(hw, port, mib->cnt_ptr,
1916 &mib->counter[mib->cnt_ptr]);
1917 ++mib->cnt_ptr;
1918 } while (mib->cnt_ptr < PORT_COUNTER_NUM);
1919 if (hw->mib_cnt > PORT_COUNTER_NUM)
1920 port_r_mib_pkt(hw, port, mib->dropped,
1921 &mib->counter[PORT_COUNTER_NUM]);
1922 memset((void *) mib->counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
1923 mib->cnt_ptr = 0;
1924}
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942static int port_chk(struct ksz_hw *hw, int port, int offset, u16 bits)
1943{
1944 u32 addr;
1945 u16 data;
1946
1947 PORT_CTRL_ADDR(port, addr);
1948 addr += offset;
1949 data = readw(hw->io + addr);
1950 return (data & bits) == bits;
1951}
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963static void port_cfg(struct ksz_hw *hw, int port, int offset, u16 bits,
1964 int set)
1965{
1966 u32 addr;
1967 u16 data;
1968
1969 PORT_CTRL_ADDR(port, addr);
1970 addr += offset;
1971 data = readw(hw->io + addr);
1972 if (set)
1973 data |= bits;
1974 else
1975 data &= ~bits;
1976 writew(data, hw->io + addr);
1977}
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991static int port_chk_shift(struct ksz_hw *hw, int port, u32 addr, int shift)
1992{
1993 u16 data;
1994 u16 bit = 1 << port;
1995
1996 data = readw(hw->io + addr);
1997 data >>= shift;
1998 return (data & bit) == bit;
1999}
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011static void port_cfg_shift(struct ksz_hw *hw, int port, u32 addr, int shift,
2012 int set)
2013{
2014 u16 data;
2015 u16 bits = 1 << port;
2016
2017 data = readw(hw->io + addr);
2018 bits <<= shift;
2019 if (set)
2020 data |= bits;
2021 else
2022 data &= ~bits;
2023 writew(data, hw->io + addr);
2024}
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035static void port_r8(struct ksz_hw *hw, int port, int offset, u8 *data)
2036{
2037 u32 addr;
2038
2039 PORT_CTRL_ADDR(port, addr);
2040 addr += offset;
2041 *data = readb(hw->io + addr);
2042}
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053static void port_r16(struct ksz_hw *hw, int port, int offset, u16 *data)
2054{
2055 u32 addr;
2056
2057 PORT_CTRL_ADDR(port, addr);
2058 addr += offset;
2059 *data = readw(hw->io + addr);
2060}
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071static void port_w16(struct ksz_hw *hw, int port, int offset, u16 data)
2072{
2073 u32 addr;
2074
2075 PORT_CTRL_ADDR(port, addr);
2076 addr += offset;
2077 writew(data, hw->io + addr);
2078}
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091static int sw_chk(struct ksz_hw *hw, u32 addr, u16 bits)
2092{
2093 u16 data;
2094
2095 data = readw(hw->io + addr);
2096 return (data & bits) == bits;
2097}
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108static void sw_cfg(struct ksz_hw *hw, u32 addr, u16 bits, int set)
2109{
2110 u16 data;
2111
2112 data = readw(hw->io + addr);
2113 if (set)
2114 data |= bits;
2115 else
2116 data &= ~bits;
2117 writew(data, hw->io + addr);
2118}
2119
2120
2121
2122static inline void port_cfg_broad_storm(struct ksz_hw *hw, int p, int set)
2123{
2124 port_cfg(hw, p,
2125 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM, set);
2126}
2127
2128static inline int port_chk_broad_storm(struct ksz_hw *hw, int p)
2129{
2130 return port_chk(hw, p,
2131 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM);
2132}
2133
2134
2135#define BROADCAST_STORM_PROTECTION_RATE 10
2136
2137
2138#define BROADCAST_STORM_VALUE 9969
2139
2140
2141
2142
2143
2144
2145
2146
2147static void sw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2148{
2149 u16 data;
2150 u32 value = ((u32) BROADCAST_STORM_VALUE * (u32) percent / 100);
2151
2152 if (value > BROADCAST_STORM_RATE)
2153 value = BROADCAST_STORM_RATE;
2154
2155 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2156 data &= ~(BROADCAST_STORM_RATE_LO | BROADCAST_STORM_RATE_HI);
2157 data |= ((value & 0x00FF) << 8) | ((value & 0xFF00) >> 8);
2158 writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2159}
2160
2161
2162
2163
2164
2165
2166
2167
2168static void sw_get_broad_storm(struct ksz_hw *hw, u8 *percent)
2169{
2170 int num;
2171 u16 data;
2172
2173 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2174 num = (data & BROADCAST_STORM_RATE_HI);
2175 num <<= 8;
2176 num |= (data & BROADCAST_STORM_RATE_LO) >> 8;
2177 num = (num * 100 + BROADCAST_STORM_VALUE / 2) / BROADCAST_STORM_VALUE;
2178 *percent = (u8) num;
2179}
2180
2181
2182
2183
2184
2185
2186
2187
2188static void sw_dis_broad_storm(struct ksz_hw *hw, int port)
2189{
2190 port_cfg_broad_storm(hw, port, 0);
2191}
2192
2193
2194
2195
2196
2197
2198
2199
2200static void sw_ena_broad_storm(struct ksz_hw *hw, int port)
2201{
2202 sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2203 port_cfg_broad_storm(hw, port, 1);
2204}
2205
2206
2207
2208
2209
2210
2211
2212static void sw_init_broad_storm(struct ksz_hw *hw)
2213{
2214 int port;
2215
2216 hw->ksz_switch->broad_per = 1;
2217 sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2218 for (port = 0; port < TOTAL_PORT_NUM; port++)
2219 sw_dis_broad_storm(hw, port);
2220 sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, MULTICAST_STORM_DISABLE, 1);
2221}
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231static void hw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2232{
2233 if (percent > 100)
2234 percent = 100;
2235
2236 sw_cfg_broad_storm(hw, percent);
2237 sw_get_broad_storm(hw, &percent);
2238 hw->ksz_switch->broad_per = percent;
2239}
2240
2241
2242
2243
2244
2245
2246
2247
2248static void sw_dis_prio_rate(struct ksz_hw *hw, int port)
2249{
2250 u32 addr;
2251
2252 PORT_CTRL_ADDR(port, addr);
2253 addr += KS8842_PORT_IN_RATE_OFFSET;
2254 writel(0, hw->io + addr);
2255}
2256
2257
2258
2259
2260
2261
2262
2263static void sw_init_prio_rate(struct ksz_hw *hw)
2264{
2265 int port;
2266 int prio;
2267 struct ksz_switch *sw = hw->ksz_switch;
2268
2269 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2270 for (prio = 0; prio < PRIO_QUEUES; prio++) {
2271 sw->port_cfg[port].rx_rate[prio] =
2272 sw->port_cfg[port].tx_rate[prio] = 0;
2273 }
2274 sw_dis_prio_rate(hw, port);
2275 }
2276}
2277
2278
2279
2280static inline void port_cfg_back_pressure(struct ksz_hw *hw, int p, int set)
2281{
2282 port_cfg(hw, p,
2283 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE, set);
2284}
2285
2286static inline void port_cfg_force_flow_ctrl(struct ksz_hw *hw, int p, int set)
2287{
2288 port_cfg(hw, p,
2289 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL, set);
2290}
2291
2292static inline int port_chk_back_pressure(struct ksz_hw *hw, int p)
2293{
2294 return port_chk(hw, p,
2295 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE);
2296}
2297
2298static inline int port_chk_force_flow_ctrl(struct ksz_hw *hw, int p)
2299{
2300 return port_chk(hw, p,
2301 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL);
2302}
2303
2304
2305
2306static inline void port_cfg_dis_learn(struct ksz_hw *hw, int p, int set)
2307{
2308 port_cfg(hw, p,
2309 KS8842_PORT_CTRL_2_OFFSET, PORT_LEARN_DISABLE, set);
2310}
2311
2312static inline void port_cfg_rx(struct ksz_hw *hw, int p, int set)
2313{
2314 port_cfg(hw, p,
2315 KS8842_PORT_CTRL_2_OFFSET, PORT_RX_ENABLE, set);
2316}
2317
2318static inline void port_cfg_tx(struct ksz_hw *hw, int p, int set)
2319{
2320 port_cfg(hw, p,
2321 KS8842_PORT_CTRL_2_OFFSET, PORT_TX_ENABLE, set);
2322}
2323
2324static inline void sw_cfg_fast_aging(struct ksz_hw *hw, int set)
2325{
2326 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET, SWITCH_FAST_AGING, set);
2327}
2328
2329static inline void sw_flush_dyn_mac_table(struct ksz_hw *hw)
2330{
2331 if (!(hw->overrides & FAST_AGING)) {
2332 sw_cfg_fast_aging(hw, 1);
2333 mdelay(1);
2334 sw_cfg_fast_aging(hw, 0);
2335 }
2336}
2337
2338
2339
2340static inline void port_cfg_ins_tag(struct ksz_hw *hw, int p, int insert)
2341{
2342 port_cfg(hw, p,
2343 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG, insert);
2344}
2345
2346static inline void port_cfg_rmv_tag(struct ksz_hw *hw, int p, int remove)
2347{
2348 port_cfg(hw, p,
2349 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG, remove);
2350}
2351
2352static inline int port_chk_ins_tag(struct ksz_hw *hw, int p)
2353{
2354 return port_chk(hw, p,
2355 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG);
2356}
2357
2358static inline int port_chk_rmv_tag(struct ksz_hw *hw, int p)
2359{
2360 return port_chk(hw, p,
2361 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG);
2362}
2363
2364static inline void port_cfg_dis_non_vid(struct ksz_hw *hw, int p, int set)
2365{
2366 port_cfg(hw, p,
2367 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID, set);
2368}
2369
2370static inline void port_cfg_in_filter(struct ksz_hw *hw, int p, int set)
2371{
2372 port_cfg(hw, p,
2373 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER, set);
2374}
2375
2376static inline int port_chk_dis_non_vid(struct ksz_hw *hw, int p)
2377{
2378 return port_chk(hw, p,
2379 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID);
2380}
2381
2382static inline int port_chk_in_filter(struct ksz_hw *hw, int p)
2383{
2384 return port_chk(hw, p,
2385 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER);
2386}
2387
2388
2389
2390static inline void port_cfg_mirror_sniffer(struct ksz_hw *hw, int p, int set)
2391{
2392 port_cfg(hw, p,
2393 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_SNIFFER, set);
2394}
2395
2396static inline void port_cfg_mirror_rx(struct ksz_hw *hw, int p, int set)
2397{
2398 port_cfg(hw, p,
2399 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_RX, set);
2400}
2401
2402static inline void port_cfg_mirror_tx(struct ksz_hw *hw, int p, int set)
2403{
2404 port_cfg(hw, p,
2405 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_TX, set);
2406}
2407
2408static inline void sw_cfg_mirror_rx_tx(struct ksz_hw *hw, int set)
2409{
2410 sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, SWITCH_MIRROR_RX_TX, set);
2411}
2412
2413static void sw_init_mirror(struct ksz_hw *hw)
2414{
2415 int port;
2416
2417 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2418 port_cfg_mirror_sniffer(hw, port, 0);
2419 port_cfg_mirror_rx(hw, port, 0);
2420 port_cfg_mirror_tx(hw, port, 0);
2421 }
2422 sw_cfg_mirror_rx_tx(hw, 0);
2423}
2424
2425static inline void sw_cfg_unk_def_deliver(struct ksz_hw *hw, int set)
2426{
2427 sw_cfg(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2428 SWITCH_UNK_DEF_PORT_ENABLE, set);
2429}
2430
2431static inline int sw_cfg_chk_unk_def_deliver(struct ksz_hw *hw)
2432{
2433 return sw_chk(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2434 SWITCH_UNK_DEF_PORT_ENABLE);
2435}
2436
2437static inline void sw_cfg_unk_def_port(struct ksz_hw *hw, int port, int set)
2438{
2439 port_cfg_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0, set);
2440}
2441
2442static inline int sw_chk_unk_def_port(struct ksz_hw *hw, int port)
2443{
2444 return port_chk_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0);
2445}
2446
2447
2448
2449static inline void port_cfg_diffserv(struct ksz_hw *hw, int p, int set)
2450{
2451 port_cfg(hw, p,
2452 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE, set);
2453}
2454
2455static inline void port_cfg_802_1p(struct ksz_hw *hw, int p, int set)
2456{
2457 port_cfg(hw, p,
2458 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE, set);
2459}
2460
2461static inline void port_cfg_replace_vid(struct ksz_hw *hw, int p, int set)
2462{
2463 port_cfg(hw, p,
2464 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING, set);
2465}
2466
2467static inline void port_cfg_prio(struct ksz_hw *hw, int p, int set)
2468{
2469 port_cfg(hw, p,
2470 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE, set);
2471}
2472
2473static inline int port_chk_diffserv(struct ksz_hw *hw, int p)
2474{
2475 return port_chk(hw, p,
2476 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE);
2477}
2478
2479static inline int port_chk_802_1p(struct ksz_hw *hw, int p)
2480{
2481 return port_chk(hw, p,
2482 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE);
2483}
2484
2485static inline int port_chk_replace_vid(struct ksz_hw *hw, int p)
2486{
2487 return port_chk(hw, p,
2488 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING);
2489}
2490
2491static inline int port_chk_prio(struct ksz_hw *hw, int p)
2492{
2493 return port_chk(hw, p,
2494 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE);
2495}
2496
2497
2498
2499
2500
2501
2502
2503
2504static void sw_dis_diffserv(struct ksz_hw *hw, int port)
2505{
2506 port_cfg_diffserv(hw, port, 0);
2507}
2508
2509
2510
2511
2512
2513
2514
2515
2516static void sw_dis_802_1p(struct ksz_hw *hw, int port)
2517{
2518 port_cfg_802_1p(hw, port, 0);
2519}
2520
2521
2522
2523
2524
2525
2526
2527static void sw_cfg_replace_null_vid(struct ksz_hw *hw, int set)
2528{
2529 sw_cfg(hw, KS8842_SWITCH_CTRL_3_OFFSET, SWITCH_REPLACE_NULL_VID, set);
2530}
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543static void sw_cfg_replace_vid(struct ksz_hw *hw, int port, int set)
2544{
2545 port_cfg_replace_vid(hw, port, set);
2546}
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556static void sw_cfg_port_based(struct ksz_hw *hw, int port, u8 prio)
2557{
2558 u16 data;
2559
2560 if (prio > PORT_BASED_PRIORITY_BASE)
2561 prio = PORT_BASED_PRIORITY_BASE;
2562
2563 hw->ksz_switch->port_cfg[port].port_prio = prio;
2564
2565 port_r16(hw, port, KS8842_PORT_CTRL_1_OFFSET, &data);
2566 data &= ~PORT_BASED_PRIORITY_MASK;
2567 data |= prio << PORT_BASED_PRIORITY_SHIFT;
2568 port_w16(hw, port, KS8842_PORT_CTRL_1_OFFSET, data);
2569}
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579static void sw_dis_multi_queue(struct ksz_hw *hw, int port)
2580{
2581 port_cfg_prio(hw, port, 0);
2582}
2583
2584
2585
2586
2587
2588
2589
2590static void sw_init_prio(struct ksz_hw *hw)
2591{
2592 int port;
2593 int tos;
2594 struct ksz_switch *sw = hw->ksz_switch;
2595
2596
2597
2598
2599
2600 sw->p_802_1p[0] = 0;
2601 sw->p_802_1p[1] = 0;
2602 sw->p_802_1p[2] = 1;
2603 sw->p_802_1p[3] = 1;
2604 sw->p_802_1p[4] = 2;
2605 sw->p_802_1p[5] = 2;
2606 sw->p_802_1p[6] = 3;
2607 sw->p_802_1p[7] = 3;
2608
2609
2610
2611
2612
2613 for (tos = 0; tos < DIFFSERV_ENTRIES; tos++)
2614 sw->diffserv[tos] = 0;
2615
2616
2617 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2618 sw_dis_multi_queue(hw, port);
2619 sw_dis_diffserv(hw, port);
2620 sw_dis_802_1p(hw, port);
2621 sw_cfg_replace_vid(hw, port, 0);
2622
2623 sw->port_cfg[port].port_prio = 0;
2624 sw_cfg_port_based(hw, port, sw->port_cfg[port].port_prio);
2625 }
2626 sw_cfg_replace_null_vid(hw, 0);
2627}
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637static void port_get_def_vid(struct ksz_hw *hw, int port, u16 *vid)
2638{
2639 u32 addr;
2640
2641 PORT_CTRL_ADDR(port, addr);
2642 addr += KS8842_PORT_CTRL_VID_OFFSET;
2643 *vid = readw(hw->io + addr);
2644}
2645
2646
2647
2648
2649
2650
2651
2652static void sw_init_vlan(struct ksz_hw *hw)
2653{
2654 int port;
2655 int entry;
2656 struct ksz_switch *sw = hw->ksz_switch;
2657
2658
2659 for (entry = 0; entry < VLAN_TABLE_ENTRIES; entry++) {
2660 sw_r_vlan_table(hw, entry,
2661 &sw->vlan_table[entry].vid,
2662 &sw->vlan_table[entry].fid,
2663 &sw->vlan_table[entry].member);
2664 }
2665
2666 for (port = 0; port < TOTAL_PORT_NUM; port++) {
2667 port_get_def_vid(hw, port, &sw->port_cfg[port].vid);
2668 sw->port_cfg[port].member = PORT_MASK;
2669 }
2670}
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680static void sw_cfg_port_base_vlan(struct ksz_hw *hw, int port, u8 member)
2681{
2682 u32 addr;
2683 u8 data;
2684
2685 PORT_CTRL_ADDR(port, addr);
2686 addr += KS8842_PORT_CTRL_2_OFFSET;
2687
2688 data = readb(hw->io + addr);
2689 data &= ~PORT_VLAN_MEMBERSHIP;
2690 data |= (member & PORT_MASK);
2691 writeb(data, hw->io + addr);
2692
2693 hw->ksz_switch->port_cfg[port].member = member;
2694}
2695
2696
2697
2698
2699
2700
2701
2702
2703static inline void sw_get_addr(struct ksz_hw *hw, u8 *mac_addr)
2704{
2705 int i;
2706
2707 for (i = 0; i < 6; i += 2) {
2708 mac_addr[i] = readb(hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2709 mac_addr[1 + i] = readb(hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2710 }
2711}
2712
2713
2714
2715
2716
2717
2718
2719
2720static void sw_set_addr(struct ksz_hw *hw, u8 *mac_addr)
2721{
2722 int i;
2723
2724 for (i = 0; i < 6; i += 2) {
2725 writeb(mac_addr[i], hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2726 writeb(mac_addr[1 + i], hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2727 }
2728}
2729
2730
2731
2732
2733
2734
2735
2736static void sw_set_global_ctrl(struct ksz_hw *hw)
2737{
2738 u16 data;
2739
2740
2741 data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2742 data |= SWITCH_FLOW_CTRL;
2743 writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2744
2745 data = readw(hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2746
2747
2748 data |= SWITCH_AGGR_BACKOFF;
2749
2750
2751 data |= SWITCH_AGING_ENABLE;
2752 data |= SWITCH_LINK_AUTO_AGING;
2753
2754 if (hw->overrides & FAST_AGING)
2755 data |= SWITCH_FAST_AGING;
2756 else
2757 data &= ~SWITCH_FAST_AGING;
2758 writew(data, hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2759
2760 data = readw(hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2761
2762
2763 data |= NO_EXC_COLLISION_DROP;
2764 writew(data, hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2765}
2766
2767enum {
2768 STP_STATE_DISABLED = 0,
2769 STP_STATE_LISTENING,
2770 STP_STATE_LEARNING,
2771 STP_STATE_FORWARDING,
2772 STP_STATE_BLOCKED,
2773 STP_STATE_SIMPLE
2774};
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784static void port_set_stp_state(struct ksz_hw *hw, int port, int state)
2785{
2786 u16 data;
2787
2788 port_r16(hw, port, KS8842_PORT_CTRL_2_OFFSET, &data);
2789 switch (state) {
2790 case STP_STATE_DISABLED:
2791 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2792 data |= PORT_LEARN_DISABLE;
2793 break;
2794 case STP_STATE_LISTENING:
2795
2796
2797
2798
2799 data &= ~PORT_TX_ENABLE;
2800 data |= PORT_RX_ENABLE;
2801 data |= PORT_LEARN_DISABLE;
2802 break;
2803 case STP_STATE_LEARNING:
2804 data &= ~PORT_TX_ENABLE;
2805 data |= PORT_RX_ENABLE;
2806 data &= ~PORT_LEARN_DISABLE;
2807 break;
2808 case STP_STATE_FORWARDING:
2809 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2810 data &= ~PORT_LEARN_DISABLE;
2811 break;
2812 case STP_STATE_BLOCKED:
2813
2814
2815
2816
2817 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2818 data |= PORT_LEARN_DISABLE;
2819 break;
2820 case STP_STATE_SIMPLE:
2821 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2822 data |= PORT_LEARN_DISABLE;
2823 break;
2824 }
2825 port_w16(hw, port, KS8842_PORT_CTRL_2_OFFSET, data);
2826 hw->ksz_switch->port_cfg[port].stp_state = state;
2827}
2828
2829#define STP_ENTRY 0
2830#define BROADCAST_ENTRY 1
2831#define BRIDGE_ADDR_ENTRY 2
2832#define IPV6_ADDR_ENTRY 3
2833
2834
2835
2836
2837
2838
2839
2840static void sw_clr_sta_mac_table(struct ksz_hw *hw)
2841{
2842 struct ksz_mac_table *entry;
2843 int i;
2844
2845 for (i = 0; i < STATIC_MAC_TABLE_ENTRIES; i++) {
2846 entry = &hw->ksz_switch->mac_table[i];
2847 sw_w_sta_mac_table(hw, i,
2848 entry->mac_addr, entry->ports,
2849 entry->override, 0,
2850 entry->use_fid, entry->fid);
2851 }
2852}
2853
2854
2855
2856
2857
2858
2859
2860static void sw_init_stp(struct ksz_hw *hw)
2861{
2862 struct ksz_mac_table *entry;
2863
2864 entry = &hw->ksz_switch->mac_table[STP_ENTRY];
2865 entry->mac_addr[0] = 0x01;
2866 entry->mac_addr[1] = 0x80;
2867 entry->mac_addr[2] = 0xC2;
2868 entry->mac_addr[3] = 0x00;
2869 entry->mac_addr[4] = 0x00;
2870 entry->mac_addr[5] = 0x00;
2871 entry->ports = HOST_MASK;
2872 entry->override = 1;
2873 entry->valid = 1;
2874 sw_w_sta_mac_table(hw, STP_ENTRY,
2875 entry->mac_addr, entry->ports,
2876 entry->override, entry->valid,
2877 entry->use_fid, entry->fid);
2878}
2879
2880
2881
2882
2883
2884
2885
2886static void sw_block_addr(struct ksz_hw *hw)
2887{
2888 struct ksz_mac_table *entry;
2889 int i;
2890
2891 for (i = BROADCAST_ENTRY; i <= IPV6_ADDR_ENTRY; i++) {
2892 entry = &hw->ksz_switch->mac_table[i];
2893 entry->valid = 0;
2894 sw_w_sta_mac_table(hw, i,
2895 entry->mac_addr, entry->ports,
2896 entry->override, entry->valid,
2897 entry->use_fid, entry->fid);
2898 }
2899}
2900
2901#define PHY_LINK_SUPPORT \
2902 (PHY_AUTO_NEG_ASYM_PAUSE | \
2903 PHY_AUTO_NEG_SYM_PAUSE | \
2904 PHY_AUTO_NEG_100BT4 | \
2905 PHY_AUTO_NEG_100BTX_FD | \
2906 PHY_AUTO_NEG_100BTX | \
2907 PHY_AUTO_NEG_10BT_FD | \
2908 PHY_AUTO_NEG_10BT)
2909
2910static inline void hw_r_phy_ctrl(struct ksz_hw *hw, int phy, u16 *data)
2911{
2912 *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2913}
2914
2915static inline void hw_w_phy_ctrl(struct ksz_hw *hw, int phy, u16 data)
2916{
2917 writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2918}
2919
2920static inline void hw_r_phy_link_stat(struct ksz_hw *hw, int phy, u16 *data)
2921{
2922 *data = readw(hw->io + phy + KS884X_PHY_STATUS_OFFSET);
2923}
2924
2925static inline void hw_r_phy_auto_neg(struct ksz_hw *hw, int phy, u16 *data)
2926{
2927 *data = readw(hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2928}
2929
2930static inline void hw_w_phy_auto_neg(struct ksz_hw *hw, int phy, u16 data)
2931{
2932 writew(data, hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2933}
2934
2935static inline void hw_r_phy_rem_cap(struct ksz_hw *hw, int phy, u16 *data)
2936{
2937 *data = readw(hw->io + phy + KS884X_PHY_REMOTE_CAP_OFFSET);
2938}
2939
2940static inline void hw_r_phy_crossover(struct ksz_hw *hw, int phy, u16 *data)
2941{
2942 *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2943}
2944
2945static inline void hw_w_phy_crossover(struct ksz_hw *hw, int phy, u16 data)
2946{
2947 writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2948}
2949
2950static inline void hw_r_phy_polarity(struct ksz_hw *hw, int phy, u16 *data)
2951{
2952 *data = readw(hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2953}
2954
2955static inline void hw_w_phy_polarity(struct ksz_hw *hw, int phy, u16 data)
2956{
2957 writew(data, hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2958}
2959
2960static inline void hw_r_phy_link_md(struct ksz_hw *hw, int phy, u16 *data)
2961{
2962 *data = readw(hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2963}
2964
2965static inline void hw_w_phy_link_md(struct ksz_hw *hw, int phy, u16 data)
2966{
2967 writew(data, hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2968}
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979static void hw_r_phy(struct ksz_hw *hw, int port, u16 reg, u16 *val)
2980{
2981 int phy;
2982
2983 phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
2984 *val = readw(hw->io + phy);
2985}
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996static void hw_w_phy(struct ksz_hw *hw, int port, u16 reg, u16 val)
2997{
2998 int phy;
2999
3000 phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
3001 writew(val, hw->io + phy);
3002}
3003
3004
3005
3006
3007
3008#define AT93C_CODE 0
3009#define AT93C_WR_OFF 0x00
3010#define AT93C_WR_ALL 0x10
3011#define AT93C_ER_ALL 0x20
3012#define AT93C_WR_ON 0x30
3013
3014#define AT93C_WRITE 1
3015#define AT93C_READ 2
3016#define AT93C_ERASE 3
3017
3018#define EEPROM_DELAY 4
3019
3020static inline void drop_gpio(struct ksz_hw *hw, u8 gpio)
3021{
3022 u16 data;
3023
3024 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3025 data &= ~gpio;
3026 writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3027}
3028
3029static inline void raise_gpio(struct ksz_hw *hw, u8 gpio)
3030{
3031 u16 data;
3032
3033 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3034 data |= gpio;
3035 writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3036}
3037
3038static inline u8 state_gpio(struct ksz_hw *hw, u8 gpio)
3039{
3040 u16 data;
3041
3042 data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3043 return (u8)(data & gpio);
3044}
3045
3046static void eeprom_clk(struct ksz_hw *hw)
3047{
3048 raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3049 udelay(EEPROM_DELAY);
3050 drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3051 udelay(EEPROM_DELAY);
3052}
3053
3054static u16 spi_r(struct ksz_hw *hw)
3055{
3056 int i;
3057 u16 temp = 0;
3058
3059 for (i = 15; i >= 0; i--) {
3060 raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3061 udelay(EEPROM_DELAY);
3062
3063 temp |= (state_gpio(hw, EEPROM_DATA_IN)) ? 1 << i : 0;
3064
3065 drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3066 udelay(EEPROM_DELAY);
3067 }
3068 return temp;
3069}
3070
3071static void spi_w(struct ksz_hw *hw, u16 data)
3072{
3073 int i;
3074
3075 for (i = 15; i >= 0; i--) {
3076 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3077 drop_gpio(hw, EEPROM_DATA_OUT);
3078 eeprom_clk(hw);
3079 }
3080}
3081
3082static void spi_reg(struct ksz_hw *hw, u8 data, u8 reg)
3083{
3084 int i;
3085
3086
3087 raise_gpio(hw, EEPROM_DATA_OUT);
3088 eeprom_clk(hw);
3089
3090
3091 for (i = 1; i >= 0; i--) {
3092 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3093 drop_gpio(hw, EEPROM_DATA_OUT);
3094 eeprom_clk(hw);
3095 }
3096
3097
3098 for (i = 5; i >= 0; i--) {
3099 (reg & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3100 drop_gpio(hw, EEPROM_DATA_OUT);
3101 eeprom_clk(hw);
3102 }
3103}
3104
3105#define EEPROM_DATA_RESERVED 0
3106#define EEPROM_DATA_MAC_ADDR_0 1
3107#define EEPROM_DATA_MAC_ADDR_1 2
3108#define EEPROM_DATA_MAC_ADDR_2 3
3109#define EEPROM_DATA_SUBSYS_ID 4
3110#define EEPROM_DATA_SUBSYS_VEN_ID 5
3111#define EEPROM_DATA_PM_CAP 6
3112
3113
3114#define EEPROM_DATA_OTHER_MAC_ADDR 9
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125static u16 eeprom_read(struct ksz_hw *hw, u8 reg)
3126{
3127 u16 data;
3128
3129 raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3130
3131 spi_reg(hw, AT93C_READ, reg);
3132 data = spi_r(hw);
3133
3134 drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3135
3136 return data;
3137}
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147static void eeprom_write(struct ksz_hw *hw, u8 reg, u16 data)
3148{
3149 int timeout;
3150
3151 raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3152
3153
3154 spi_reg(hw, AT93C_CODE, AT93C_WR_ON);
3155 drop_gpio(hw, EEPROM_CHIP_SELECT);
3156 udelay(1);
3157
3158
3159 raise_gpio(hw, EEPROM_CHIP_SELECT);
3160 spi_reg(hw, AT93C_ERASE, reg);
3161 drop_gpio(hw, EEPROM_CHIP_SELECT);
3162 udelay(1);
3163
3164
3165 raise_gpio(hw, EEPROM_CHIP_SELECT);
3166 timeout = 8;
3167 mdelay(2);
3168 do {
3169 mdelay(1);
3170 } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3171 drop_gpio(hw, EEPROM_CHIP_SELECT);
3172 udelay(1);
3173
3174
3175 raise_gpio(hw, EEPROM_CHIP_SELECT);
3176 spi_reg(hw, AT93C_WRITE, reg);
3177 spi_w(hw, data);
3178 drop_gpio(hw, EEPROM_CHIP_SELECT);
3179 udelay(1);
3180
3181
3182 raise_gpio(hw, EEPROM_CHIP_SELECT);
3183 timeout = 8;
3184 mdelay(2);
3185 do {
3186 mdelay(1);
3187 } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3188 drop_gpio(hw, EEPROM_CHIP_SELECT);
3189 udelay(1);
3190
3191
3192 raise_gpio(hw, EEPROM_CHIP_SELECT);
3193 spi_reg(hw, AT93C_CODE, AT93C_WR_OFF);
3194
3195 drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3196}
3197
3198
3199
3200
3201
3202static u16 advertised_flow_ctrl(struct ksz_port *port, u16 ctrl)
3203{
3204 ctrl &= ~PORT_AUTO_NEG_SYM_PAUSE;
3205 switch (port->flow_ctrl) {
3206 case PHY_FLOW_CTRL:
3207 ctrl |= PORT_AUTO_NEG_SYM_PAUSE;
3208 break;
3209
3210 case PHY_TX_ONLY:
3211 case PHY_RX_ONLY:
3212 default:
3213 break;
3214 }
3215 return ctrl;
3216}
3217
3218static void set_flow_ctrl(struct ksz_hw *hw, int rx, int tx)
3219{
3220 u32 rx_cfg;
3221 u32 tx_cfg;
3222
3223 rx_cfg = hw->rx_cfg;
3224 tx_cfg = hw->tx_cfg;
3225 if (rx)
3226 hw->rx_cfg |= DMA_RX_FLOW_ENABLE;
3227 else
3228 hw->rx_cfg &= ~DMA_RX_FLOW_ENABLE;
3229 if (tx)
3230 hw->tx_cfg |= DMA_TX_FLOW_ENABLE;
3231 else
3232 hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3233 if (hw->enabled) {
3234 if (rx_cfg != hw->rx_cfg)
3235 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3236 if (tx_cfg != hw->tx_cfg)
3237 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3238 }
3239}
3240
3241static void determine_flow_ctrl(struct ksz_hw *hw, struct ksz_port *port,
3242 u16 local, u16 remote)
3243{
3244 int rx;
3245 int tx;
3246
3247 if (hw->overrides & PAUSE_FLOW_CTRL)
3248 return;
3249
3250 rx = tx = 0;
3251 if (port->force_link)
3252 rx = tx = 1;
3253 if (remote & PHY_AUTO_NEG_SYM_PAUSE) {
3254 if (local & PHY_AUTO_NEG_SYM_PAUSE) {
3255 rx = tx = 1;
3256 } else if ((remote & PHY_AUTO_NEG_ASYM_PAUSE) &&
3257 (local & PHY_AUTO_NEG_PAUSE) ==
3258 PHY_AUTO_NEG_ASYM_PAUSE) {
3259 tx = 1;
3260 }
3261 } else if (remote & PHY_AUTO_NEG_ASYM_PAUSE) {
3262 if ((local & PHY_AUTO_NEG_PAUSE) == PHY_AUTO_NEG_PAUSE)
3263 rx = 1;
3264 }
3265 if (!hw->ksz_switch)
3266 set_flow_ctrl(hw, rx, tx);
3267}
3268
3269static inline void port_cfg_change(struct ksz_hw *hw, struct ksz_port *port,
3270 struct ksz_port_info *info, u16 link_status)
3271{
3272 if ((hw->features & HALF_DUPLEX_SIGNAL_BUG) &&
3273 !(hw->overrides & PAUSE_FLOW_CTRL)) {
3274 u32 cfg = hw->tx_cfg;
3275
3276
3277 if (1 == info->duplex)
3278 hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3279 if (hw->enabled && cfg != hw->tx_cfg)
3280 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3281 }
3282}
3283
3284
3285
3286
3287
3288
3289
3290
3291static void port_get_link_speed(struct ksz_port *port)
3292{
3293 uint interrupt;
3294 struct ksz_port_info *info;
3295 struct ksz_port_info *linked = NULL;
3296 struct ksz_hw *hw = port->hw;
3297 u16 data;
3298 u16 status;
3299 u8 local;
3300 u8 remote;
3301 int i;
3302 int p;
3303 int change = 0;
3304
3305 interrupt = hw_block_intr(hw);
3306
3307 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3308 info = &hw->port_info[p];
3309 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3310 port_r16(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3311
3312
3313
3314
3315
3316 remote = status & (PORT_AUTO_NEG_COMPLETE |
3317 PORT_STATUS_LINK_GOOD);
3318 local = (u8) data;
3319
3320
3321 if (local == info->advertised && remote == info->partner)
3322 continue;
3323
3324 info->advertised = local;
3325 info->partner = remote;
3326 if (status & PORT_STATUS_LINK_GOOD) {
3327
3328
3329 if (!linked)
3330 linked = info;
3331
3332 info->tx_rate = 10 * TX_RATE_UNIT;
3333 if (status & PORT_STATUS_SPEED_100MBIT)
3334 info->tx_rate = 100 * TX_RATE_UNIT;
3335
3336 info->duplex = 1;
3337 if (status & PORT_STATUS_FULL_DUPLEX)
3338 info->duplex = 2;
3339
3340 if (media_connected != info->state) {
3341 hw_r_phy(hw, p, KS884X_PHY_AUTO_NEG_OFFSET,
3342 &data);
3343 hw_r_phy(hw, p, KS884X_PHY_REMOTE_CAP_OFFSET,
3344 &status);
3345 determine_flow_ctrl(hw, port, data, status);
3346 if (hw->ksz_switch) {
3347 port_cfg_back_pressure(hw, p,
3348 (1 == info->duplex));
3349 }
3350 change |= 1 << i;
3351 port_cfg_change(hw, port, info, status);
3352 }
3353 info->state = media_connected;
3354 } else {
3355 if (media_disconnected != info->state) {
3356 change |= 1 << i;
3357
3358
3359 hw->port_mib[p].link_down = 1;
3360 }
3361 info->state = media_disconnected;
3362 }
3363 hw->port_mib[p].state = (u8) info->state;
3364 }
3365
3366 if (linked && media_disconnected == port->linked->state)
3367 port->linked = linked;
3368
3369 hw_restore_intr(hw, interrupt);
3370}
3371
3372#define PHY_RESET_TIMEOUT 10
3373
3374
3375
3376
3377
3378
3379
3380static void port_set_link_speed(struct ksz_port *port)
3381{
3382 struct ksz_port_info *info;
3383 struct ksz_hw *hw = port->hw;
3384 u16 data;
3385 u16 cfg;
3386 u8 status;
3387 int i;
3388 int p;
3389
3390 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3391 info = &hw->port_info[p];
3392
3393 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3394 port_r8(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3395
3396 cfg = 0;
3397 if (status & PORT_STATUS_LINK_GOOD)
3398 cfg = data;
3399
3400 data |= PORT_AUTO_NEG_ENABLE;
3401 data = advertised_flow_ctrl(port, data);
3402
3403 data |= PORT_AUTO_NEG_100BTX_FD | PORT_AUTO_NEG_100BTX |
3404 PORT_AUTO_NEG_10BT_FD | PORT_AUTO_NEG_10BT;
3405
3406
3407 if (port->speed || port->duplex) {
3408 if (10 == port->speed)
3409 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3410 PORT_AUTO_NEG_100BTX);
3411 else if (100 == port->speed)
3412 data &= ~(PORT_AUTO_NEG_10BT_FD |
3413 PORT_AUTO_NEG_10BT);
3414 if (1 == port->duplex)
3415 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3416 PORT_AUTO_NEG_10BT_FD);
3417 else if (2 == port->duplex)
3418 data &= ~(PORT_AUTO_NEG_100BTX |
3419 PORT_AUTO_NEG_10BT);
3420 }
3421 if (data != cfg) {
3422 data |= PORT_AUTO_NEG_RESTART;
3423 port_w16(hw, p, KS884X_PORT_CTRL_4_OFFSET, data);
3424 }
3425 }
3426}
3427
3428
3429
3430
3431
3432
3433
3434static void port_force_link_speed(struct ksz_port *port)
3435{
3436 struct ksz_hw *hw = port->hw;
3437 u16 data;
3438 int i;
3439 int phy;
3440 int p;
3441
3442 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3443 phy = KS884X_PHY_1_CTRL_OFFSET + p * PHY_CTRL_INTERVAL;
3444 hw_r_phy_ctrl(hw, phy, &data);
3445
3446 data &= ~PHY_AUTO_NEG_ENABLE;
3447
3448 if (10 == port->speed)
3449 data &= ~PHY_SPEED_100MBIT;
3450 else if (100 == port->speed)
3451 data |= PHY_SPEED_100MBIT;
3452 if (1 == port->duplex)
3453 data &= ~PHY_FULL_DUPLEX;
3454 else if (2 == port->duplex)
3455 data |= PHY_FULL_DUPLEX;
3456 hw_w_phy_ctrl(hw, phy, data);
3457 }
3458}
3459
3460static void port_set_power_saving(struct ksz_port *port, int enable)
3461{
3462 struct ksz_hw *hw = port->hw;
3463 int i;
3464 int p;
3465
3466 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++)
3467 port_cfg(hw, p,
3468 KS884X_PORT_CTRL_4_OFFSET, PORT_POWER_DOWN, enable);
3469}
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483static int hw_chk_wol_pme_status(struct ksz_hw *hw)
3484{
3485 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3486 struct pci_dev *pdev = hw_priv->pdev;
3487 u16 data;
3488
3489 if (!pdev->pm_cap)
3490 return 0;
3491 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3492 return (data & PCI_PM_CTRL_PME_STATUS) == PCI_PM_CTRL_PME_STATUS;
3493}
3494
3495
3496
3497
3498
3499
3500
3501static void hw_clr_wol_pme_status(struct ksz_hw *hw)
3502{
3503 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3504 struct pci_dev *pdev = hw_priv->pdev;
3505 u16 data;
3506
3507 if (!pdev->pm_cap)
3508 return;
3509
3510
3511 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3512 data |= PCI_PM_CTRL_PME_STATUS;
3513 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3514}
3515
3516
3517
3518
3519
3520
3521
3522
3523static void hw_cfg_wol_pme(struct ksz_hw *hw, int set)
3524{
3525 struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3526 struct pci_dev *pdev = hw_priv->pdev;
3527 u16 data;
3528
3529 if (!pdev->pm_cap)
3530 return;
3531 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3532 data &= ~PCI_PM_CTRL_STATE_MASK;
3533 if (set)
3534 data |= PCI_PM_CTRL_PME_ENABLE | PCI_D3hot;
3535 else
3536 data &= ~PCI_PM_CTRL_PME_ENABLE;
3537 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3538}
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548static void hw_cfg_wol(struct ksz_hw *hw, u16 frame, int set)
3549{
3550 u16 data;
3551
3552 data = readw(hw->io + KS8841_WOL_CTRL_OFFSET);
3553 if (set)
3554 data |= frame;
3555 else
3556 data &= ~frame;
3557 writew(data, hw->io + KS8841_WOL_CTRL_OFFSET);
3558}
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571static void hw_set_wol_frame(struct ksz_hw *hw, int i, uint mask_size,
3572 const u8 *mask, uint frame_size, const u8 *pattern)
3573{
3574 int bits;
3575 int from;
3576 int len;
3577 int to;
3578 u32 crc;
3579 u8 data[64];
3580 u8 val = 0;
3581
3582 if (frame_size > mask_size * 8)
3583 frame_size = mask_size * 8;
3584 if (frame_size > 64)
3585 frame_size = 64;
3586
3587 i *= 0x10;
3588 writel(0, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i);
3589 writel(0, hw->io + KS8841_WOL_FRAME_BYTE2_OFFSET + i);
3590
3591 bits = len = from = to = 0;
3592 do {
3593 if (bits) {
3594 if ((val & 1))
3595 data[to++] = pattern[from];
3596 val >>= 1;
3597 ++from;
3598 --bits;
3599 } else {
3600 val = mask[len];
3601 writeb(val, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i
3602 + len);
3603 ++len;
3604 if (val)
3605 bits = 8;
3606 else
3607 from += 8;
3608 }
3609 } while (from < (int) frame_size);
3610 if (val) {
3611 bits = mask[len - 1];
3612 val <<= (from % 8);
3613 bits &= ~val;
3614 writeb(bits, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i + len -
3615 1);
3616 }
3617 crc = ether_crc(to, data);
3618 writel(crc, hw->io + KS8841_WOL_FRAME_CRC_OFFSET + i);
3619}
3620
3621
3622
3623
3624
3625
3626
3627
3628static void hw_add_wol_arp(struct ksz_hw *hw, const u8 *ip_addr)
3629{
3630 static const u8 mask[6] = { 0x3F, 0xF0, 0x3F, 0x00, 0xC0, 0x03 };
3631 u8 pattern[42] = {
3632 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
3633 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3634 0x08, 0x06,
3635 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01,
3636 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3637 0x00, 0x00, 0x00, 0x00,
3638 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3639 0x00, 0x00, 0x00, 0x00 };
3640
3641 memcpy(&pattern[38], ip_addr, 4);
3642 hw_set_wol_frame(hw, 3, 6, mask, 42, pattern);
3643}
3644
3645
3646
3647
3648
3649
3650
3651static void hw_add_wol_bcast(struct ksz_hw *hw)
3652{
3653 static const u8 mask[] = { 0x3F };
3654 static const u8 pattern[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
3655
3656 hw_set_wol_frame(hw, 2, 1, mask, MAC_ADDR_LEN, pattern);
3657}
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669static void hw_add_wol_mcast(struct ksz_hw *hw)
3670{
3671 static const u8 mask[] = { 0x3F };
3672 u8 pattern[] = { 0x33, 0x33, 0xFF, 0x00, 0x00, 0x00 };
3673
3674 memcpy(&pattern[3], &hw->override_addr[3], 3);
3675 hw_set_wol_frame(hw, 1, 1, mask, 6, pattern);
3676}
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687static void hw_add_wol_ucast(struct ksz_hw *hw)
3688{
3689 static const u8 mask[] = { 0x3F };
3690
3691 hw_set_wol_frame(hw, 0, 1, mask, MAC_ADDR_LEN, hw->override_addr);
3692}
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702static void hw_enable_wol(struct ksz_hw *hw, u32 wol_enable, const u8 *net_addr)
3703{
3704 hw_cfg_wol(hw, KS8841_WOL_MAGIC_ENABLE, (wol_enable & WAKE_MAGIC));
3705 hw_cfg_wol(hw, KS8841_WOL_FRAME0_ENABLE, (wol_enable & WAKE_UCAST));
3706 hw_add_wol_ucast(hw);
3707 hw_cfg_wol(hw, KS8841_WOL_FRAME1_ENABLE, (wol_enable & WAKE_MCAST));
3708 hw_add_wol_mcast(hw);
3709 hw_cfg_wol(hw, KS8841_WOL_FRAME2_ENABLE, (wol_enable & WAKE_BCAST));
3710 hw_cfg_wol(hw, KS8841_WOL_FRAME3_ENABLE, (wol_enable & WAKE_ARP));
3711 hw_add_wol_arp(hw, net_addr);
3712}
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723static int hw_init(struct ksz_hw *hw)
3724{
3725 int rc = 0;
3726 u16 data;
3727 u16 revision;
3728
3729
3730 writew(BUS_SPEED_125_MHZ, hw->io + KS884X_BUS_CTRL_OFFSET);
3731
3732
3733 data = readw(hw->io + KS884X_CHIP_ID_OFFSET);
3734
3735 revision = (data & KS884X_REVISION_MASK) >> KS884X_REVISION_SHIFT;
3736 data &= KS884X_CHIP_ID_MASK_41;
3737 if (REG_CHIP_ID_41 == data)
3738 rc = 1;
3739 else if (REG_CHIP_ID_42 == data)
3740 rc = 2;
3741 else
3742 return 0;
3743
3744
3745 if (revision <= 1) {
3746 hw->features |= SMALL_PACKET_TX_BUG;
3747 if (1 == rc)
3748 hw->features |= HALF_DUPLEX_SIGNAL_BUG;
3749 }
3750 return rc;
3751}
3752
3753
3754
3755
3756
3757
3758
3759static void hw_reset(struct ksz_hw *hw)
3760{
3761 writew(GLOBAL_SOFTWARE_RESET, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3762
3763
3764 mdelay(10);
3765
3766
3767 writew(0, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3768}
3769
3770
3771
3772
3773
3774
3775
3776static void hw_setup(struct ksz_hw *hw)
3777{
3778#if SET_DEFAULT_LED
3779 u16 data;
3780
3781
3782 data = readw(hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3783 data &= ~LED_MODE;
3784 data |= SET_DEFAULT_LED;
3785 writew(data, hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3786#endif
3787
3788
3789 hw->tx_cfg = (DMA_TX_PAD_ENABLE | DMA_TX_CRC_ENABLE |
3790 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_TX_ENABLE);
3791
3792
3793 hw->rx_cfg = (DMA_RX_BROADCAST | DMA_RX_UNICAST |
3794 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_RX_ENABLE);
3795 hw->rx_cfg |= KS884X_DMA_RX_MULTICAST;
3796
3797
3798 hw->rx_cfg |= (DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP);
3799
3800 if (hw->all_multi)
3801 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
3802 if (hw->promiscuous)
3803 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
3804}
3805
3806
3807
3808
3809
3810
3811
3812static void hw_setup_intr(struct ksz_hw *hw)
3813{
3814 hw->intr_mask = KS884X_INT_MASK | KS884X_INT_RX_OVERRUN;
3815}
3816
3817static void ksz_check_desc_num(struct ksz_desc_info *info)
3818{
3819#define MIN_DESC_SHIFT 2
3820
3821 int alloc = info->alloc;
3822 int shift;
3823
3824 shift = 0;
3825 while (!(alloc & 1)) {
3826 shift++;
3827 alloc >>= 1;
3828 }
3829 if (alloc != 1 || shift < MIN_DESC_SHIFT) {
3830 pr_alert("Hardware descriptor numbers not right!\n");
3831 while (alloc) {
3832 shift++;
3833 alloc >>= 1;
3834 }
3835 if (shift < MIN_DESC_SHIFT)
3836 shift = MIN_DESC_SHIFT;
3837 alloc = 1 << shift;
3838 info->alloc = alloc;
3839 }
3840 info->mask = info->alloc - 1;
3841}
3842
3843static void hw_init_desc(struct ksz_desc_info *desc_info, int transmit)
3844{
3845 int i;
3846 u32 phys = desc_info->ring_phys;
3847 struct ksz_hw_desc *desc = desc_info->ring_virt;
3848 struct ksz_desc *cur = desc_info->ring;
3849 struct ksz_desc *previous = NULL;
3850
3851 for (i = 0; i < desc_info->alloc; i++) {
3852 cur->phw = desc++;
3853 phys += desc_info->size;
3854 previous = cur++;
3855 previous->phw->next = cpu_to_le32(phys);
3856 }
3857 previous->phw->next = cpu_to_le32(desc_info->ring_phys);
3858 previous->sw.buf.rx.end_of_ring = 1;
3859 previous->phw->buf.data = cpu_to_le32(previous->sw.buf.data);
3860
3861 desc_info->avail = desc_info->alloc;
3862 desc_info->last = desc_info->next = 0;
3863
3864 desc_info->cur = desc_info->ring;
3865}
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875static void hw_set_desc_base(struct ksz_hw *hw, u32 tx_addr, u32 rx_addr)
3876{
3877
3878 writel(tx_addr, hw->io + KS_DMA_TX_ADDR);
3879 writel(rx_addr, hw->io + KS_DMA_RX_ADDR);
3880}
3881
3882static void hw_reset_pkts(struct ksz_desc_info *info)
3883{
3884 info->cur = info->ring;
3885 info->avail = info->alloc;
3886 info->last = info->next = 0;
3887}
3888
3889static inline void hw_resume_rx(struct ksz_hw *hw)
3890{
3891 writel(DMA_START, hw->io + KS_DMA_RX_START);
3892}
3893
3894
3895
3896
3897
3898
3899
3900static void hw_start_rx(struct ksz_hw *hw)
3901{
3902 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3903
3904
3905 hw->intr_mask |= KS884X_INT_RX_STOPPED;
3906
3907 writel(DMA_START, hw->io + KS_DMA_RX_START);
3908 hw_ack_intr(hw, KS884X_INT_RX_STOPPED);
3909 hw->rx_stop++;
3910
3911
3912 if (0 == hw->rx_stop)
3913 hw->rx_stop = 2;
3914}
3915
3916
3917
3918
3919
3920
3921
3922static void hw_stop_rx(struct ksz_hw *hw)
3923{
3924 hw->rx_stop = 0;
3925 hw_turn_off_intr(hw, KS884X_INT_RX_STOPPED);
3926 writel((hw->rx_cfg & ~DMA_RX_ENABLE), hw->io + KS_DMA_RX_CTRL);
3927}
3928
3929
3930
3931
3932
3933
3934
3935static void hw_start_tx(struct ksz_hw *hw)
3936{
3937 writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3938}
3939
3940
3941
3942
3943
3944
3945
3946static void hw_stop_tx(struct ksz_hw *hw)
3947{
3948 writel((hw->tx_cfg & ~DMA_TX_ENABLE), hw->io + KS_DMA_TX_CTRL);
3949}
3950
3951
3952
3953
3954
3955
3956
3957static void hw_disable(struct ksz_hw *hw)
3958{
3959 hw_stop_rx(hw);
3960 hw_stop_tx(hw);
3961 hw->enabled = 0;
3962}
3963
3964
3965
3966
3967
3968
3969
3970static void hw_enable(struct ksz_hw *hw)
3971{
3972 hw_start_tx(hw);
3973 hw_start_rx(hw);
3974 hw->enabled = 1;
3975}
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987static int hw_alloc_pkt(struct ksz_hw *hw, int length, int physical)
3988{
3989
3990 if (hw->tx_desc_info.avail <= 1)
3991 return 0;
3992
3993
3994 get_tx_pkt(&hw->tx_desc_info, &hw->tx_desc_info.cur);
3995 hw->tx_desc_info.cur->sw.buf.tx.first_seg = 1;
3996
3997
3998 ++hw->tx_int_cnt;
3999 hw->tx_size += length;
4000
4001
4002 if (hw->tx_size >= MAX_TX_HELD_SIZE)
4003 hw->tx_int_cnt = hw->tx_int_mask + 1;
4004
4005 if (physical > hw->tx_desc_info.avail)
4006 return 1;
4007
4008 return hw->tx_desc_info.avail;
4009}
4010
4011
4012
4013
4014
4015
4016
4017static void hw_send_pkt(struct ksz_hw *hw)
4018{
4019 struct ksz_desc *cur = hw->tx_desc_info.cur;
4020
4021 cur->sw.buf.tx.last_seg = 1;
4022
4023
4024 if (hw->tx_int_cnt > hw->tx_int_mask) {
4025 cur->sw.buf.tx.intr = 1;
4026 hw->tx_int_cnt = 0;
4027 hw->tx_size = 0;
4028 }
4029
4030
4031 cur->sw.buf.tx.dest_port = hw->dst_ports;
4032
4033 release_desc(cur);
4034
4035 writel(0, hw->io + KS_DMA_TX_START);
4036}
4037
4038static int empty_addr(u8 *addr)
4039{
4040 u32 *addr1 = (u32 *) addr;
4041 u16 *addr2 = (u16 *) &addr[4];
4042
4043 return 0 == *addr1 && 0 == *addr2;
4044}
4045
4046
4047
4048
4049
4050
4051
4052
4053static void hw_set_addr(struct ksz_hw *hw)
4054{
4055 int i;
4056
4057 for (i = 0; i < MAC_ADDR_LEN; i++)
4058 writeb(hw->override_addr[MAC_ADDR_ORDER(i)],
4059 hw->io + KS884X_ADDR_0_OFFSET + i);
4060
4061 sw_set_addr(hw, hw->override_addr);
4062}
4063
4064
4065
4066
4067
4068
4069
4070static void hw_read_addr(struct ksz_hw *hw)
4071{
4072 int i;
4073
4074 for (i = 0; i < MAC_ADDR_LEN; i++)
4075 hw->perm_addr[MAC_ADDR_ORDER(i)] = readb(hw->io +
4076 KS884X_ADDR_0_OFFSET + i);
4077
4078 if (!hw->mac_override) {
4079 memcpy(hw->override_addr, hw->perm_addr, MAC_ADDR_LEN);
4080 if (empty_addr(hw->override_addr)) {
4081 memcpy(hw->perm_addr, DEFAULT_MAC_ADDRESS,
4082 MAC_ADDR_LEN);
4083 memcpy(hw->override_addr, DEFAULT_MAC_ADDRESS,
4084 MAC_ADDR_LEN);
4085 hw->override_addr[5] += hw->id;
4086 hw_set_addr(hw);
4087 }
4088 }
4089}
4090
4091static void hw_ena_add_addr(struct ksz_hw *hw, int index, u8 *mac_addr)
4092{
4093 int i;
4094 u32 mac_addr_lo;
4095 u32 mac_addr_hi;
4096
4097 mac_addr_hi = 0;
4098 for (i = 0; i < 2; i++) {
4099 mac_addr_hi <<= 8;
4100 mac_addr_hi |= mac_addr[i];
4101 }
4102 mac_addr_hi |= ADD_ADDR_ENABLE;
4103 mac_addr_lo = 0;
4104 for (i = 2; i < 6; i++) {
4105 mac_addr_lo <<= 8;
4106 mac_addr_lo |= mac_addr[i];
4107 }
4108 index *= ADD_ADDR_INCR;
4109
4110 writel(mac_addr_lo, hw->io + index + KS_ADD_ADDR_0_LO);
4111 writel(mac_addr_hi, hw->io + index + KS_ADD_ADDR_0_HI);
4112}
4113
4114static void hw_set_add_addr(struct ksz_hw *hw)
4115{
4116 int i;
4117
4118 for (i = 0; i < ADDITIONAL_ENTRIES; i++) {
4119 if (empty_addr(hw->address[i]))
4120 writel(0, hw->io + ADD_ADDR_INCR * i +
4121 KS_ADD_ADDR_0_HI);
4122 else
4123 hw_ena_add_addr(hw, i, hw->address[i]);
4124 }
4125}
4126
4127static int hw_add_addr(struct ksz_hw *hw, u8 *mac_addr)
4128{
4129 int i;
4130 int j = ADDITIONAL_ENTRIES;
4131
4132 if (!memcmp(hw->override_addr, mac_addr, MAC_ADDR_LEN))
4133 return 0;
4134 for (i = 0; i < hw->addr_list_size; i++) {
4135 if (!memcmp(hw->address[i], mac_addr, MAC_ADDR_LEN))
4136 return 0;
4137 if (ADDITIONAL_ENTRIES == j && empty_addr(hw->address[i]))
4138 j = i;
4139 }
4140 if (j < ADDITIONAL_ENTRIES) {
4141 memcpy(hw->address[j], mac_addr, MAC_ADDR_LEN);
4142 hw_ena_add_addr(hw, j, hw->address[j]);
4143 return 0;
4144 }
4145 return -1;
4146}
4147
4148static int hw_del_addr(struct ksz_hw *hw, u8 *mac_addr)
4149{
4150 int i;
4151
4152 for (i = 0; i < hw->addr_list_size; i++) {
4153 if (!memcmp(hw->address[i], mac_addr, MAC_ADDR_LEN)) {
4154 memset(hw->address[i], 0, MAC_ADDR_LEN);
4155 writel(0, hw->io + ADD_ADDR_INCR * i +
4156 KS_ADD_ADDR_0_HI);
4157 return 0;
4158 }
4159 }
4160 return -1;
4161}
4162
4163
4164
4165
4166
4167
4168
4169static void hw_clr_multicast(struct ksz_hw *hw)
4170{
4171 int i;
4172
4173 for (i = 0; i < HW_MULTICAST_SIZE; i++) {
4174 hw->multi_bits[i] = 0;
4175
4176 writeb(0, hw->io + KS884X_MULTICAST_0_OFFSET + i);
4177 }
4178}
4179
4180
4181
4182
4183
4184
4185
4186
4187static void hw_set_grp_addr(struct ksz_hw *hw)
4188{
4189 int i;
4190 int index;
4191 int position;
4192 int value;
4193
4194 memset(hw->multi_bits, 0, sizeof(u8) * HW_MULTICAST_SIZE);
4195
4196 for (i = 0; i < hw->multi_list_size; i++) {
4197 position = (ether_crc(6, hw->multi_list[i]) >> 26) & 0x3f;
4198 index = position >> 3;
4199 value = 1 << (position & 7);
4200 hw->multi_bits[index] |= (u8) value;
4201 }
4202
4203 for (i = 0; i < HW_MULTICAST_SIZE; i++)
4204 writeb(hw->multi_bits[i], hw->io + KS884X_MULTICAST_0_OFFSET +
4205 i);
4206}
4207
4208
4209
4210
4211
4212
4213
4214
4215static void hw_set_multicast(struct ksz_hw *hw, u8 multicast)
4216{
4217
4218 hw_stop_rx(hw);
4219
4220 if (multicast)
4221 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
4222 else
4223 hw->rx_cfg &= ~DMA_RX_ALL_MULTICAST;
4224
4225 if (hw->enabled)
4226 hw_start_rx(hw);
4227}
4228
4229
4230
4231
4232
4233
4234
4235
4236static void hw_set_promiscuous(struct ksz_hw *hw, u8 prom)
4237{
4238
4239 hw_stop_rx(hw);
4240
4241 if (prom)
4242 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
4243 else
4244 hw->rx_cfg &= ~DMA_RX_PROMISCUOUS;
4245
4246 if (hw->enabled)
4247 hw_start_rx(hw);
4248}
4249
4250
4251
4252
4253
4254
4255
4256
4257static void sw_enable(struct ksz_hw *hw, int enable)
4258{
4259 int port;
4260
4261 for (port = 0; port < SWITCH_PORT_NUM; port++) {
4262 if (hw->dev_count > 1) {
4263
4264 sw_cfg_port_base_vlan(hw, port,
4265 HOST_MASK | (1 << port));
4266 port_set_stp_state(hw, port, STP_STATE_DISABLED);
4267 } else {
4268 sw_cfg_port_base_vlan(hw, port, PORT_MASK);
4269 port_set_stp_state(hw, port, STP_STATE_FORWARDING);
4270 }
4271 }
4272 if (hw->dev_count > 1)
4273 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_SIMPLE);
4274 else
4275 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_FORWARDING);
4276
4277 if (enable)
4278 enable = KS8842_START;
4279 writew(enable, hw->io + KS884X_CHIP_ID_OFFSET);
4280}
4281
4282
4283
4284
4285
4286
4287
4288static void sw_setup(struct ksz_hw *hw)
4289{
4290 int port;
4291
4292 sw_set_global_ctrl(hw);
4293
4294
4295 sw_init_broad_storm(hw);
4296 hw_cfg_broad_storm(hw, BROADCAST_STORM_PROTECTION_RATE);
4297 for (port = 0; port < SWITCH_PORT_NUM; port++)
4298 sw_ena_broad_storm(hw, port);
4299
4300 sw_init_prio(hw);
4301
4302 sw_init_mirror(hw);
4303
4304 sw_init_prio_rate(hw);
4305
4306 sw_init_vlan(hw);
4307
4308 if (hw->features & STP_SUPPORT)
4309 sw_init_stp(hw);
4310 if (!sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
4311 SWITCH_TX_FLOW_CTRL | SWITCH_RX_FLOW_CTRL))
4312 hw->overrides |= PAUSE_FLOW_CTRL;
4313 sw_enable(hw, 1);
4314}
4315
4316
4317
4318
4319
4320
4321
4322
4323static void ksz_start_timer(struct ksz_timer_info *info, int time)
4324{
4325 info->cnt = 0;
4326 info->timer.expires = jiffies + time;
4327 add_timer(&info->timer);
4328
4329
4330 info->max = -1;
4331}
4332
4333
4334
4335
4336
4337
4338
4339static void ksz_stop_timer(struct ksz_timer_info *info)
4340{
4341 if (info->max) {
4342 info->max = 0;
4343 del_timer_sync(&info->timer);
4344 }
4345}
4346
4347static void ksz_init_timer(struct ksz_timer_info *info, int period,
4348 void (*function)(unsigned long), void *data)
4349{
4350 info->max = 0;
4351 info->period = period;
4352 init_timer(&info->timer);
4353 info->timer.function = function;
4354 info->timer.data = (unsigned long) data;
4355}
4356
4357static void ksz_update_timer(struct ksz_timer_info *info)
4358{
4359 ++info->cnt;
4360 if (info->max > 0) {
4361 if (info->cnt < info->max) {
4362 info->timer.expires = jiffies + info->period;
4363 add_timer(&info->timer);
4364 } else
4365 info->max = 0;
4366 } else if (info->max < 0) {
4367 info->timer.expires = jiffies + info->period;
4368 add_timer(&info->timer);
4369 }
4370}
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382static int ksz_alloc_soft_desc(struct ksz_desc_info *desc_info, int transmit)
4383{
4384 desc_info->ring = kmalloc(sizeof(struct ksz_desc) * desc_info->alloc,
4385 GFP_KERNEL);
4386 if (!desc_info->ring)
4387 return 1;
4388 memset((void *) desc_info->ring, 0,
4389 sizeof(struct ksz_desc) * desc_info->alloc);
4390 hw_init_desc(desc_info, transmit);
4391 return 0;
4392}
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403static int ksz_alloc_desc(struct dev_info *adapter)
4404{
4405 struct ksz_hw *hw = &adapter->hw;
4406 int offset;
4407
4408
4409 adapter->desc_pool.alloc_size =
4410 hw->rx_desc_info.size * hw->rx_desc_info.alloc +
4411 hw->tx_desc_info.size * hw->tx_desc_info.alloc +
4412 DESC_ALIGNMENT;
4413
4414 adapter->desc_pool.alloc_virt =
4415 pci_alloc_consistent(
4416 adapter->pdev, adapter->desc_pool.alloc_size,
4417 &adapter->desc_pool.dma_addr);
4418 if (adapter->desc_pool.alloc_virt == NULL) {
4419 adapter->desc_pool.alloc_size = 0;
4420 return 1;
4421 }
4422 memset(adapter->desc_pool.alloc_virt, 0, adapter->desc_pool.alloc_size);
4423
4424
4425 offset = (((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT) ?
4426 (DESC_ALIGNMENT -
4427 ((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT)) : 0);
4428 adapter->desc_pool.virt = adapter->desc_pool.alloc_virt + offset;
4429 adapter->desc_pool.phys = adapter->desc_pool.dma_addr + offset;
4430
4431
4432 hw->rx_desc_info.ring_virt = (struct ksz_hw_desc *)
4433 adapter->desc_pool.virt;
4434 hw->rx_desc_info.ring_phys = adapter->desc_pool.phys;
4435 offset = hw->rx_desc_info.alloc * hw->rx_desc_info.size;
4436 hw->tx_desc_info.ring_virt = (struct ksz_hw_desc *)
4437 (adapter->desc_pool.virt + offset);
4438 hw->tx_desc_info.ring_phys = adapter->desc_pool.phys + offset;
4439
4440 if (ksz_alloc_soft_desc(&hw->rx_desc_info, 0))
4441 return 1;
4442 if (ksz_alloc_soft_desc(&hw->tx_desc_info, 1))
4443 return 1;
4444
4445 return 0;
4446}
4447
4448
4449
4450
4451
4452
4453
4454static void free_dma_buf(struct dev_info *adapter, struct ksz_dma_buf *dma_buf,
4455 int direction)
4456{
4457 pci_unmap_single(adapter->pdev, dma_buf->dma, dma_buf->len, direction);
4458 dev_kfree_skb(dma_buf->skb);
4459 dma_buf->skb = NULL;
4460 dma_buf->dma = 0;
4461}
4462
4463
4464
4465
4466
4467
4468
4469static void ksz_init_rx_buffers(struct dev_info *adapter)
4470{
4471 int i;
4472 struct ksz_desc *desc;
4473 struct ksz_dma_buf *dma_buf;
4474 struct ksz_hw *hw = &adapter->hw;
4475 struct ksz_desc_info *info = &hw->rx_desc_info;
4476
4477 for (i = 0; i < hw->rx_desc_info.alloc; i++) {
4478 get_rx_pkt(info, &desc);
4479
4480 dma_buf = DMA_BUFFER(desc);
4481 if (dma_buf->skb && dma_buf->len != adapter->mtu)
4482 free_dma_buf(adapter, dma_buf, PCI_DMA_FROMDEVICE);
4483 dma_buf->len = adapter->mtu;
4484 if (!dma_buf->skb)
4485 dma_buf->skb = alloc_skb(dma_buf->len, GFP_ATOMIC);
4486 if (dma_buf->skb && !dma_buf->dma) {
4487 dma_buf->skb->dev = adapter->dev;
4488 dma_buf->dma = pci_map_single(
4489 adapter->pdev,
4490 skb_tail_pointer(dma_buf->skb),
4491 dma_buf->len,
4492 PCI_DMA_FROMDEVICE);
4493 }
4494
4495
4496 set_rx_buf(desc, dma_buf->dma);
4497 set_rx_len(desc, dma_buf->len);
4498 release_desc(desc);
4499 }
4500}
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511static int ksz_alloc_mem(struct dev_info *adapter)
4512{
4513 struct ksz_hw *hw = &adapter->hw;
4514
4515
4516 hw->rx_desc_info.alloc = NUM_OF_RX_DESC;
4517 hw->tx_desc_info.alloc = NUM_OF_TX_DESC;
4518
4519
4520 hw->tx_int_cnt = 0;
4521 hw->tx_int_mask = NUM_OF_TX_DESC / 4;
4522 if (hw->tx_int_mask > 8)
4523 hw->tx_int_mask = 8;
4524 while (hw->tx_int_mask) {
4525 hw->tx_int_cnt++;
4526 hw->tx_int_mask >>= 1;
4527 }
4528 if (hw->tx_int_cnt) {
4529 hw->tx_int_mask = (1 << (hw->tx_int_cnt - 1)) - 1;
4530 hw->tx_int_cnt = 0;
4531 }
4532
4533
4534 hw->rx_desc_info.size =
4535 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4536 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4537 hw->tx_desc_info.size =
4538 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4539 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4540 if (hw->rx_desc_info.size != sizeof(struct ksz_hw_desc))
4541 pr_alert("Hardware descriptor size not right!\n");
4542 ksz_check_desc_num(&hw->rx_desc_info);
4543 ksz_check_desc_num(&hw->tx_desc_info);
4544
4545
4546 if (ksz_alloc_desc(adapter))
4547 return 1;
4548
4549 return 0;
4550}
4551
4552
4553
4554
4555
4556
4557
4558
4559static void ksz_free_desc(struct dev_info *adapter)
4560{
4561 struct ksz_hw *hw = &adapter->hw;
4562
4563
4564 hw->rx_desc_info.ring_virt = NULL;
4565 hw->tx_desc_info.ring_virt = NULL;
4566 hw->rx_desc_info.ring_phys = 0;
4567 hw->tx_desc_info.ring_phys = 0;
4568
4569
4570 if (adapter->desc_pool.alloc_virt)
4571 pci_free_consistent(
4572 adapter->pdev,
4573 adapter->desc_pool.alloc_size,
4574 adapter->desc_pool.alloc_virt,
4575 adapter->desc_pool.dma_addr);
4576
4577
4578 adapter->desc_pool.alloc_size = 0;
4579 adapter->desc_pool.alloc_virt = NULL;
4580
4581 kfree(hw->rx_desc_info.ring);
4582 hw->rx_desc_info.ring = NULL;
4583 kfree(hw->tx_desc_info.ring);
4584 hw->tx_desc_info.ring = NULL;
4585}
4586
4587
4588
4589
4590
4591
4592
4593
4594static void ksz_free_buffers(struct dev_info *adapter,
4595 struct ksz_desc_info *desc_info, int direction)
4596{
4597 int i;
4598 struct ksz_dma_buf *dma_buf;
4599 struct ksz_desc *desc = desc_info->ring;
4600
4601 for (i = 0; i < desc_info->alloc; i++) {
4602 dma_buf = DMA_BUFFER(desc);
4603 if (dma_buf->skb)
4604 free_dma_buf(adapter, dma_buf, direction);
4605 desc++;
4606 }
4607}
4608
4609
4610
4611
4612
4613
4614
4615static void ksz_free_mem(struct dev_info *adapter)
4616{
4617
4618 ksz_free_buffers(adapter, &adapter->hw.tx_desc_info,
4619 PCI_DMA_TODEVICE);
4620
4621
4622 ksz_free_buffers(adapter, &adapter->hw.rx_desc_info,
4623 PCI_DMA_FROMDEVICE);
4624
4625
4626 ksz_free_desc(adapter);
4627}
4628
4629static void get_mib_counters(struct ksz_hw *hw, int first, int cnt,
4630 u64 *counter)
4631{
4632 int i;
4633 int mib;
4634 int port;
4635 struct ksz_port_mib *port_mib;
4636
4637 memset(counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
4638 for (i = 0, port = first; i < cnt; i++, port++) {
4639 port_mib = &hw->port_mib[port];
4640 for (mib = port_mib->mib_start; mib < hw->mib_cnt; mib++)
4641 counter[mib] += port_mib->counter[mib];
4642 }
4643}
4644
4645
4646
4647
4648
4649
4650
4651
4652static void send_packet(struct sk_buff *skb, struct net_device *dev)
4653{
4654 struct ksz_desc *desc;
4655 struct ksz_desc *first;
4656 struct dev_priv *priv = netdev_priv(dev);
4657 struct dev_info *hw_priv = priv->adapter;
4658 struct ksz_hw *hw = &hw_priv->hw;
4659 struct ksz_desc_info *info = &hw->tx_desc_info;
4660 struct ksz_dma_buf *dma_buf;
4661 int len;
4662 int last_frag = skb_shinfo(skb)->nr_frags;
4663
4664
4665
4666
4667
4668 if (hw->dev_count > 1)
4669 hw->dst_ports = 1 << priv->port.first_port;
4670
4671
4672 len = skb->len;
4673
4674
4675 first = info->cur;
4676 desc = first;
4677
4678 dma_buf = DMA_BUFFER(desc);
4679 if (last_frag) {
4680 int frag;
4681 skb_frag_t *this_frag;
4682
4683 dma_buf->len = skb_headlen(skb);
4684
4685 dma_buf->dma = pci_map_single(
4686 hw_priv->pdev, skb->data, dma_buf->len,
4687 PCI_DMA_TODEVICE);
4688 set_tx_buf(desc, dma_buf->dma);
4689 set_tx_len(desc, dma_buf->len);
4690
4691 frag = 0;
4692 do {
4693 this_frag = &skb_shinfo(skb)->frags[frag];
4694
4695
4696 get_tx_pkt(info, &desc);
4697
4698
4699 ++hw->tx_int_cnt;
4700
4701 dma_buf = DMA_BUFFER(desc);
4702 dma_buf->len = this_frag->size;
4703
4704 dma_buf->dma = pci_map_single(
4705 hw_priv->pdev,
4706 page_address(this_frag->page) +
4707 this_frag->page_offset,
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);
5208
5209
5210 spin_lock_irq(&hw_priv->hwlock);
5211 hw_turn_on_intr(hw, KS884X_INT_RX_MASK);
5212 spin_unlock_irq(&hw_priv->hwlock);
5213 } else {
5214 hw_ack_intr(hw, KS884X_INT_RX);
5215 tasklet_schedule(&hw_priv->rx_tasklet);
5216 }
5217}
5218
5219static void tx_proc_task(unsigned long data)
5220{
5221 struct dev_info *hw_priv = (struct dev_info *) data;
5222 struct ksz_hw *hw = &hw_priv->hw;
5223
5224 hw_ack_intr(hw, KS884X_INT_TX_MASK);
5225
5226 tx_done(hw_priv);
5227
5228
5229 spin_lock_irq(&hw_priv->hwlock);
5230 hw_turn_on_intr(hw, KS884X_INT_TX);
5231 spin_unlock_irq(&hw_priv->hwlock);
5232}
5233
5234static inline void handle_rx_stop(struct ksz_hw *hw)
5235{
5236
5237 if (0 == hw->rx_stop)
5238 hw->intr_mask &= ~KS884X_INT_RX_STOPPED;
5239 else if (hw->rx_stop > 1) {
5240 if (hw->enabled && (hw->rx_cfg & DMA_RX_ENABLE)) {
5241 hw_start_rx(hw);
5242 } else {
5243 hw->intr_mask &= ~KS884X_INT_RX_STOPPED;
5244 hw->rx_stop = 0;
5245 }
5246 } else
5247
5248 hw->rx_stop++;
5249}
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260static irqreturn_t netdev_intr(int irq, void *dev_id)
5261{
5262 uint int_enable = 0;
5263 struct net_device *dev = (struct net_device *) dev_id;
5264 struct dev_priv *priv = netdev_priv(dev);
5265 struct dev_info *hw_priv = priv->adapter;
5266 struct ksz_hw *hw = &hw_priv->hw;
5267
5268 hw_read_intr(hw, &int_enable);
5269
5270
5271 if (!int_enable)
5272 return IRQ_NONE;
5273
5274 do {
5275 hw_ack_intr(hw, int_enable);
5276 int_enable &= hw->intr_mask;
5277
5278 if (unlikely(int_enable & KS884X_INT_TX_MASK)) {
5279 hw_dis_intr_bit(hw, KS884X_INT_TX_MASK);
5280 tasklet_schedule(&hw_priv->tx_tasklet);
5281 }
5282
5283 if (likely(int_enable & KS884X_INT_RX)) {
5284 hw_dis_intr_bit(hw, KS884X_INT_RX);
5285 tasklet_schedule(&hw_priv->rx_tasklet);
5286 }
5287
5288 if (unlikely(int_enable & KS884X_INT_RX_OVERRUN)) {
5289 dev->stats.rx_fifo_errors++;
5290 hw_resume_rx(hw);
5291 }
5292
5293 if (unlikely(int_enable & KS884X_INT_PHY)) {
5294 struct ksz_port *port = &priv->port;
5295
5296 hw->features |= LINK_INT_WORKING;
5297 port_get_link_speed(port);
5298 }
5299
5300 if (unlikely(int_enable & KS884X_INT_RX_STOPPED)) {
5301 handle_rx_stop(hw);
5302 break;
5303 }
5304
5305 if (unlikely(int_enable & KS884X_INT_TX_STOPPED)) {
5306 u32 data;
5307
5308 hw->intr_mask &= ~KS884X_INT_TX_STOPPED;
5309 pr_info("Tx stopped\n");
5310 data = readl(hw->io + KS_DMA_TX_CTRL);
5311 if (!(data & DMA_TX_ENABLE))
5312 pr_info("Tx disabled\n");
5313 break;
5314 }
5315 } while (0);
5316
5317 hw_ena_intr(hw);
5318
5319 return IRQ_HANDLED;
5320}
5321
5322
5323
5324
5325
5326static unsigned long next_jiffies;
5327
5328#ifdef CONFIG_NET_POLL_CONTROLLER
5329static void netdev_netpoll(struct net_device *dev)
5330{
5331 struct dev_priv *priv = netdev_priv(dev);
5332 struct dev_info *hw_priv = priv->adapter;
5333
5334 hw_dis_intr(&hw_priv->hw);
5335 netdev_intr(dev->irq, dev);
5336}
5337#endif
5338
5339static void bridge_change(struct ksz_hw *hw)
5340{
5341 int port;
5342 u8 member;
5343 struct ksz_switch *sw = hw->ksz_switch;
5344
5345
5346 if (!sw->member) {
5347 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_SIMPLE);
5348 sw_block_addr(hw);
5349 }
5350 for (port = 0; port < SWITCH_PORT_NUM; port++) {
5351 if (STP_STATE_FORWARDING == sw->port_cfg[port].stp_state)
5352 member = HOST_MASK | sw->member;
5353 else
5354 member = HOST_MASK | (1 << port);
5355 if (member != sw->port_cfg[port].member)
5356 sw_cfg_port_base_vlan(hw, port, member);
5357 }
5358}
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369static int netdev_close(struct net_device *dev)
5370{
5371 struct dev_priv *priv = netdev_priv(dev);
5372 struct dev_info *hw_priv = priv->adapter;
5373 struct ksz_port *port = &priv->port;
5374 struct ksz_hw *hw = &hw_priv->hw;
5375 int pi;
5376
5377 netif_stop_queue(dev);
5378
5379 ksz_stop_timer(&priv->monitor_timer_info);
5380
5381
5382 if (hw->dev_count > 1) {
5383 port_set_stp_state(hw, port->first_port, STP_STATE_DISABLED);
5384
5385
5386 if (hw->features & STP_SUPPORT) {
5387 pi = 1 << port->first_port;
5388 if (hw->ksz_switch->member & pi) {
5389 hw->ksz_switch->member &= ~pi;
5390 bridge_change(hw);
5391 }
5392 }
5393 }
5394 if (port->first_port > 0)
5395 hw_del_addr(hw, dev->dev_addr);
5396 if (!hw_priv->wol_enable)
5397 port_set_power_saving(port, true);
5398
5399 if (priv->multicast)
5400 --hw->all_multi;
5401 if (priv->promiscuous)
5402 --hw->promiscuous;
5403
5404 hw_priv->opened--;
5405 if (!(hw_priv->opened)) {
5406 ksz_stop_timer(&hw_priv->mib_timer_info);
5407 flush_work(&hw_priv->mib_read);
5408
5409 hw_dis_intr(hw);
5410 hw_disable(hw);
5411 hw_clr_multicast(hw);
5412
5413
5414 msleep(2000 / HZ);
5415
5416 tasklet_disable(&hw_priv->rx_tasklet);
5417 tasklet_disable(&hw_priv->tx_tasklet);
5418 free_irq(dev->irq, hw_priv->dev);
5419
5420 transmit_cleanup(hw_priv, 0);
5421 hw_reset_pkts(&hw->rx_desc_info);
5422 hw_reset_pkts(&hw->tx_desc_info);
5423
5424
5425 if (hw->features & STP_SUPPORT)
5426 sw_clr_sta_mac_table(hw);
5427 }
5428
5429 return 0;
5430}
5431
5432static void hw_cfg_huge_frame(struct dev_info *hw_priv, struct ksz_hw *hw)
5433{
5434 if (hw->ksz_switch) {
5435 u32 data;
5436
5437 data = readw(hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
5438 if (hw->features & RX_HUGE_FRAME)
5439 data |= SWITCH_HUGE_PACKET;
5440 else
5441 data &= ~SWITCH_HUGE_PACKET;
5442 writew(data, hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
5443 }
5444 if (hw->features & RX_HUGE_FRAME) {
5445 hw->rx_cfg |= DMA_RX_ERROR;
5446 hw_priv->dev_rcv = dev_rcv_special;
5447 } else {
5448 hw->rx_cfg &= ~DMA_RX_ERROR;
5449 if (hw->dev_count > 1)
5450 hw_priv->dev_rcv = port_rcv_packets;
5451 else
5452 hw_priv->dev_rcv = dev_rcv_packets;
5453 }
5454}
5455
5456static int prepare_hardware(struct net_device *dev)
5457{
5458 struct dev_priv *priv = netdev_priv(dev);
5459 struct dev_info *hw_priv = priv->adapter;
5460 struct ksz_hw *hw = &hw_priv->hw;
5461 int rc = 0;
5462
5463
5464 hw_priv->dev = dev;
5465 rc = request_irq(dev->irq, netdev_intr, IRQF_SHARED, dev->name, dev);
5466 if (rc)
5467 return rc;
5468 tasklet_enable(&hw_priv->rx_tasklet);
5469 tasklet_enable(&hw_priv->tx_tasklet);
5470
5471 hw->promiscuous = 0;
5472 hw->all_multi = 0;
5473 hw->multi_list_size = 0;
5474
5475 hw_reset(hw);
5476
5477 hw_set_desc_base(hw,
5478 hw->tx_desc_info.ring_phys, hw->rx_desc_info.ring_phys);
5479 hw_set_addr(hw);
5480 hw_cfg_huge_frame(hw_priv, hw);
5481 ksz_init_rx_buffers(hw_priv);
5482 return 0;
5483}
5484
5485static void set_media_state(struct net_device *dev, int media_state)
5486{
5487 struct dev_priv *priv = netdev_priv(dev);
5488
5489 if (media_state == priv->media_state)
5490 netif_carrier_on(dev);
5491 else
5492 netif_carrier_off(dev);
5493 netif_info(priv, link, dev, "link %s\n",
5494 media_state == priv->media_state ? "on" : "off");
5495}
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506static int netdev_open(struct net_device *dev)
5507{
5508 struct dev_priv *priv = netdev_priv(dev);
5509 struct dev_info *hw_priv = priv->adapter;
5510 struct ksz_hw *hw = &hw_priv->hw;
5511 struct ksz_port *port = &priv->port;
5512 int i;
5513 int p;
5514 int rc = 0;
5515
5516 priv->multicast = 0;
5517 priv->promiscuous = 0;
5518
5519
5520 memset(&dev->stats, 0, sizeof(struct net_device_stats));
5521 memset((void *) port->counter, 0,
5522 (sizeof(u64) * OID_COUNTER_LAST));
5523
5524 if (!(hw_priv->opened)) {
5525 rc = prepare_hardware(dev);
5526 if (rc)
5527 return rc;
5528 for (i = 0; i < hw->mib_port_cnt; i++) {
5529 if (next_jiffies < jiffies)
5530 next_jiffies = jiffies + HZ * 2;
5531 else
5532 next_jiffies += HZ * 1;
5533 hw_priv->counter[i].time = next_jiffies;
5534 hw->port_mib[i].state = media_disconnected;
5535 port_init_cnt(hw, i);
5536 }
5537 if (hw->ksz_switch)
5538 hw->port_mib[HOST_PORT].state = media_connected;
5539 else {
5540 hw_add_wol_bcast(hw);
5541 hw_cfg_wol_pme(hw, 0);
5542 hw_clr_wol_pme_status(&hw_priv->hw);
5543 }
5544 }
5545 port_set_power_saving(port, false);
5546
5547 for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
5548
5549
5550
5551
5552 hw->port_info[p].partner = 0xFF;
5553 hw->port_info[p].state = media_disconnected;
5554 }
5555
5556
5557 if (hw->dev_count > 1) {
5558 port_set_stp_state(hw, port->first_port, STP_STATE_SIMPLE);
5559 if (port->first_port > 0)
5560 hw_add_addr(hw, dev->dev_addr);
5561 }
5562
5563 port_get_link_speed(port);
5564 if (port->force_link)
5565 port_force_link_speed(port);
5566 else
5567 port_set_link_speed(port);
5568
5569 if (!(hw_priv->opened)) {
5570 hw_setup_intr(hw);
5571 hw_enable(hw);
5572 hw_ena_intr(hw);
5573
5574 if (hw->mib_port_cnt)
5575 ksz_start_timer(&hw_priv->mib_timer_info,
5576 hw_priv->mib_timer_info.period);
5577 }
5578
5579 hw_priv->opened++;
5580
5581 ksz_start_timer(&priv->monitor_timer_info,
5582 priv->monitor_timer_info.period);
5583
5584 priv->media_state = port->linked->state;
5585
5586 set_media_state(dev, media_connected);
5587 netif_start_queue(dev);
5588
5589 return 0;
5590}
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611static struct net_device_stats *netdev_query_statistics(struct net_device *dev)
5612{
5613 struct dev_priv *priv = netdev_priv(dev);
5614 struct ksz_port *port = &priv->port;
5615 struct ksz_hw *hw = &priv->adapter->hw;
5616 struct ksz_port_mib *mib;
5617 int i;
5618 int p;
5619
5620 dev->stats.rx_errors = port->counter[OID_COUNTER_RCV_ERROR];
5621 dev->stats.tx_errors = port->counter[OID_COUNTER_XMIT_ERROR];
5622
5623
5624 dev->stats.multicast = 0;
5625 dev->stats.collisions = 0;
5626 dev->stats.rx_length_errors = 0;
5627 dev->stats.rx_crc_errors = 0;
5628 dev->stats.rx_frame_errors = 0;
5629 dev->stats.tx_window_errors = 0;
5630
5631 for (i = 0, p = port->first_port; i < port->mib_port_cnt; i++, p++) {
5632 mib = &hw->port_mib[p];
5633
5634 dev->stats.multicast += (unsigned long)
5635 mib->counter[MIB_COUNTER_RX_MULTICAST];
5636
5637 dev->stats.collisions += (unsigned long)
5638 mib->counter[MIB_COUNTER_TX_TOTAL_COLLISION];
5639
5640 dev->stats.rx_length_errors += (unsigned long)(
5641 mib->counter[MIB_COUNTER_RX_UNDERSIZE] +
5642 mib->counter[MIB_COUNTER_RX_FRAGMENT] +
5643 mib->counter[MIB_COUNTER_RX_OVERSIZE] +
5644 mib->counter[MIB_COUNTER_RX_JABBER]);
5645 dev->stats.rx_crc_errors += (unsigned long)
5646 mib->counter[MIB_COUNTER_RX_CRC_ERR];
5647 dev->stats.rx_frame_errors += (unsigned long)(
5648 mib->counter[MIB_COUNTER_RX_ALIGNMENT_ERR] +
5649 mib->counter[MIB_COUNTER_RX_SYMBOL_ERR]);
5650
5651 dev->stats.tx_window_errors += (unsigned long)
5652 mib->counter[MIB_COUNTER_TX_LATE_COLLISION];
5653 }
5654
5655 return &dev->stats;
5656}
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667static int netdev_set_mac_address(struct net_device *dev, void *addr)
5668{
5669 struct dev_priv *priv = netdev_priv(dev);
5670 struct dev_info *hw_priv = priv->adapter;
5671 struct ksz_hw *hw = &hw_priv->hw;
5672 struct sockaddr *mac = addr;
5673 uint interrupt;
5674
5675 if (priv->port.first_port > 0)
5676 hw_del_addr(hw, dev->dev_addr);
5677 else {
5678 hw->mac_override = 1;
5679 memcpy(hw->override_addr, mac->sa_data, MAC_ADDR_LEN);
5680 }
5681
5682 memcpy(dev->dev_addr, mac->sa_data, MAX_ADDR_LEN);
5683
5684 interrupt = hw_block_intr(hw);
5685
5686 if (priv->port.first_port > 0)
5687 hw_add_addr(hw, dev->dev_addr);
5688 else
5689 hw_set_addr(hw);
5690 hw_restore_intr(hw, interrupt);
5691
5692 return 0;
5693}
5694
5695static void dev_set_promiscuous(struct net_device *dev, struct dev_priv *priv,
5696 struct ksz_hw *hw, int promiscuous)
5697{
5698 if (promiscuous != priv->promiscuous) {
5699 u8 prev_state = hw->promiscuous;
5700
5701 if (promiscuous)
5702 ++hw->promiscuous;
5703 else
5704 --hw->promiscuous;
5705 priv->promiscuous = promiscuous;
5706
5707
5708 if (hw->promiscuous <= 1 && prev_state <= 1)
5709 hw_set_promiscuous(hw, hw->promiscuous);
5710
5711
5712
5713
5714
5715 if ((hw->features & STP_SUPPORT) && !promiscuous &&
5716 (dev->priv_flags & IFF_BRIDGE_PORT)) {
5717 struct ksz_switch *sw = hw->ksz_switch;
5718 int port = priv->port.first_port;
5719
5720 port_set_stp_state(hw, port, STP_STATE_DISABLED);
5721 port = 1 << port;
5722 if (sw->member & port) {
5723 sw->member &= ~port;
5724 bridge_change(hw);
5725 }
5726 }
5727 }
5728}
5729
5730static void dev_set_multicast(struct dev_priv *priv, struct ksz_hw *hw,
5731 int multicast)
5732{
5733 if (multicast != priv->multicast) {
5734 u8 all_multi = hw->all_multi;
5735
5736 if (multicast)
5737 ++hw->all_multi;
5738 else
5739 --hw->all_multi;
5740 priv->multicast = multicast;
5741
5742
5743 if (hw->all_multi <= 1 && all_multi <= 1)
5744 hw_set_multicast(hw, hw->all_multi);
5745 }
5746}
5747
5748
5749
5750
5751
5752
5753
5754
5755static void netdev_set_rx_mode(struct net_device *dev)
5756{
5757 struct dev_priv *priv = netdev_priv(dev);
5758 struct dev_info *hw_priv = priv->adapter;
5759 struct ksz_hw *hw = &hw_priv->hw;
5760 struct netdev_hw_addr *ha;
5761 int multicast = (dev->flags & IFF_ALLMULTI);
5762
5763 dev_set_promiscuous(dev, priv, hw, (dev->flags & IFF_PROMISC));
5764
5765 if (hw_priv->hw.dev_count > 1)
5766 multicast |= (dev->flags & IFF_MULTICAST);
5767 dev_set_multicast(priv, hw, multicast);
5768
5769
5770 if (hw_priv->hw.dev_count > 1)
5771 return;
5772
5773 if ((dev->flags & IFF_MULTICAST) && !netdev_mc_empty(dev)) {
5774 int i = 0;
5775
5776
5777 if (netdev_mc_count(dev) > MAX_MULTICAST_LIST) {
5778 if (MAX_MULTICAST_LIST != hw->multi_list_size) {
5779 hw->multi_list_size = MAX_MULTICAST_LIST;
5780 ++hw->all_multi;
5781 hw_set_multicast(hw, hw->all_multi);
5782 }
5783 return;
5784 }
5785
5786 netdev_for_each_mc_addr(ha, dev) {
5787 if (!(*ha->addr & 1))
5788 continue;
5789 if (i >= MAX_MULTICAST_LIST)
5790 break;
5791 memcpy(hw->multi_list[i++], ha->addr, MAC_ADDR_LEN);
5792 }
5793 hw->multi_list_size = (u8) i;
5794 hw_set_grp_addr(hw);
5795 } else {
5796 if (MAX_MULTICAST_LIST == hw->multi_list_size) {
5797 --hw->all_multi;
5798 hw_set_multicast(hw, hw->all_multi);
5799 }
5800 hw->multi_list_size = 0;
5801 hw_clr_multicast(hw);
5802 }
5803}
5804
5805static int netdev_change_mtu(struct net_device *dev, int new_mtu)
5806{
5807 struct dev_priv *priv = netdev_priv(dev);
5808 struct dev_info *hw_priv = priv->adapter;
5809 struct ksz_hw *hw = &hw_priv->hw;
5810 int hw_mtu;
5811
5812 if (netif_running(dev))
5813 return -EBUSY;
5814
5815
5816 if (hw->dev_count > 1)
5817 if (dev != hw_priv->dev)
5818 return 0;
5819 if (new_mtu < 60)
5820 return -EINVAL;
5821
5822 if (dev->mtu != new_mtu) {
5823 hw_mtu = new_mtu + ETHERNET_HEADER_SIZE + 4;
5824 if (hw_mtu > MAX_RX_BUF_SIZE)
5825 return -EINVAL;
5826 if (hw_mtu > REGULAR_RX_BUF_SIZE) {
5827 hw->features |= RX_HUGE_FRAME;
5828 hw_mtu = MAX_RX_BUF_SIZE;
5829 } else {
5830 hw->features &= ~RX_HUGE_FRAME;
5831 hw_mtu = REGULAR_RX_BUF_SIZE;
5832 }
5833 hw_mtu = (hw_mtu + 3) & ~3;
5834 hw_priv->mtu = hw_mtu;
5835 dev->mtu = new_mtu;
5836 }
5837 return 0;
5838}
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850static int netdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
5851{
5852 struct dev_priv *priv = netdev_priv(dev);
5853 struct dev_info *hw_priv = priv->adapter;
5854 struct ksz_hw *hw = &hw_priv->hw;
5855 struct ksz_port *port = &priv->port;
5856 int rc;
5857 int result = 0;
5858 struct mii_ioctl_data *data = if_mii(ifr);
5859
5860 if (down_interruptible(&priv->proc_sem))
5861 return -ERESTARTSYS;
5862
5863
5864 rc = 0;
5865 switch (cmd) {
5866
5867 case SIOCGMIIPHY:
5868 data->phy_id = priv->id;
5869
5870
5871
5872
5873 case SIOCGMIIREG:
5874 if (data->phy_id != priv->id || data->reg_num >= 6)
5875 result = -EIO;
5876 else
5877 hw_r_phy(hw, port->linked->port_id, data->reg_num,
5878 &data->val_out);
5879 break;
5880
5881
5882 case SIOCSMIIREG:
5883 if (!capable(CAP_NET_ADMIN))
5884 result = -EPERM;
5885 else if (data->phy_id != priv->id || data->reg_num >= 6)
5886 result = -EIO;
5887 else
5888 hw_w_phy(hw, port->linked->port_id, data->reg_num,
5889 data->val_in);
5890 break;
5891
5892 default:
5893 result = -EOPNOTSUPP;
5894 }
5895
5896 up(&priv->proc_sem);
5897
5898 return result;
5899}
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
5916{
5917 struct dev_priv *priv = netdev_priv(dev);
5918 struct ksz_port *port = &priv->port;
5919 struct ksz_hw *hw = port->hw;
5920 u16 val_out;
5921
5922 hw_r_phy(hw, port->linked->port_id, reg_num << 1, &val_out);
5923 return val_out;
5924}
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
5936{
5937 struct dev_priv *priv = netdev_priv(dev);
5938 struct ksz_port *port = &priv->port;
5939 struct ksz_hw *hw = port->hw;
5940 int i;
5941 int pi;
5942
5943 for (i = 0, pi = port->first_port; i < port->port_cnt; i++, pi++)
5944 hw_w_phy(hw, pi, reg_num << 1, val);
5945}
5946
5947
5948
5949
5950
5951#define EEPROM_SIZE 0x40
5952
5953static u16 eeprom_data[EEPROM_SIZE] = { 0 };
5954
5955#define ADVERTISED_ALL \
5956 (ADVERTISED_10baseT_Half | \
5957 ADVERTISED_10baseT_Full | \
5958 ADVERTISED_100baseT_Half | \
5959 ADVERTISED_100baseT_Full)
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
5973{
5974 struct dev_priv *priv = netdev_priv(dev);
5975 struct dev_info *hw_priv = priv->adapter;
5976
5977 mutex_lock(&hw_priv->lock);
5978 mii_ethtool_gset(&priv->mii_if, cmd);
5979 cmd->advertising |= SUPPORTED_TP;
5980 mutex_unlock(&hw_priv->lock);
5981
5982
5983 priv->advertising = cmd->advertising;
5984 return 0;
5985}
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996static int netdev_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
5997{
5998 struct dev_priv *priv = netdev_priv(dev);
5999 struct dev_info *hw_priv = priv->adapter;
6000 struct ksz_port *port = &priv->port;
6001 u32 speed = ethtool_cmd_speed(cmd);
6002 int rc;
6003
6004
6005
6006
6007
6008 if (cmd->autoneg && priv->advertising == cmd->advertising) {
6009 cmd->advertising |= ADVERTISED_ALL;
6010 if (10 == speed)
6011 cmd->advertising &=
6012 ~(ADVERTISED_100baseT_Full |
6013 ADVERTISED_100baseT_Half);
6014 else if (100 == speed)
6015 cmd->advertising &=
6016 ~(ADVERTISED_10baseT_Full |
6017 ADVERTISED_10baseT_Half);
6018 if (0 == cmd->duplex)
6019 cmd->advertising &=
6020 ~(ADVERTISED_100baseT_Full |
6021 ADVERTISED_10baseT_Full);
6022 else if (1 == cmd->duplex)
6023 cmd->advertising &=
6024 ~(ADVERTISED_100baseT_Half |
6025 ADVERTISED_10baseT_Half);
6026 }
6027 mutex_lock(&hw_priv->lock);
6028 if (cmd->autoneg &&
6029 (cmd->advertising & ADVERTISED_ALL) ==
6030 ADVERTISED_ALL) {
6031 port->duplex = 0;
6032 port->speed = 0;
6033 port->force_link = 0;
6034 } else {
6035 port->duplex = cmd->duplex + 1;
6036 if (1000 != speed)
6037 port->speed = speed;
6038 if (cmd->autoneg)
6039 port->force_link = 0;
6040 else
6041 port->force_link = 1;
6042 }
6043 rc = mii_ethtool_sset(&priv->mii_if, cmd);
6044 mutex_unlock(&hw_priv->lock);
6045 return rc;
6046}
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056static int netdev_nway_reset(struct net_device *dev)
6057{
6058 struct dev_priv *priv = netdev_priv(dev);
6059 struct dev_info *hw_priv = priv->adapter;
6060 int rc;
6061
6062 mutex_lock(&hw_priv->lock);
6063 rc = mii_nway_restart(&priv->mii_if);
6064 mutex_unlock(&hw_priv->lock);
6065 return rc;
6066}
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076static u32 netdev_get_link(struct net_device *dev)
6077{
6078 struct dev_priv *priv = netdev_priv(dev);
6079 int rc;
6080
6081 rc = mii_link_ok(&priv->mii_if);
6082 return rc;
6083}
6084
6085
6086
6087
6088
6089
6090
6091
6092static void netdev_get_drvinfo(struct net_device *dev,
6093 struct ethtool_drvinfo *info)
6094{
6095 struct dev_priv *priv = netdev_priv(dev);
6096 struct dev_info *hw_priv = priv->adapter;
6097
6098 strcpy(info->driver, DRV_NAME);
6099 strcpy(info->version, DRV_VERSION);
6100 strcpy(info->bus_info, pci_name(hw_priv->pdev));
6101}
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111static struct hw_regs {
6112 int start;
6113 int end;
6114} hw_regs_range[] = {
6115 { KS_DMA_TX_CTRL, KS884X_INTERRUPTS_STATUS },
6116 { KS_ADD_ADDR_0_LO, KS_ADD_ADDR_F_HI },
6117 { KS884X_ADDR_0_OFFSET, KS8841_WOL_FRAME_BYTE2_OFFSET },
6118 { KS884X_SIDER_P, KS8842_SGCR7_P },
6119 { KS8842_MACAR1_P, KS8842_TOSR8_P },
6120 { KS884X_P1MBCR_P, KS8842_P3ERCR_P },
6121 { 0, 0 }
6122};
6123
6124static int netdev_get_regs_len(struct net_device *dev)
6125{
6126 struct hw_regs *range = hw_regs_range;
6127 int regs_len = 0x10 * sizeof(u32);
6128
6129 while (range->end > range->start) {
6130 regs_len += (range->end - range->start + 3) / 4 * 4;
6131 range++;
6132 }
6133 return regs_len;
6134}
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144static void netdev_get_regs(struct net_device *dev, struct ethtool_regs *regs,
6145 void *ptr)
6146{
6147 struct dev_priv *priv = netdev_priv(dev);
6148 struct dev_info *hw_priv = priv->adapter;
6149 struct ksz_hw *hw = &hw_priv->hw;
6150 int *buf = (int *) ptr;
6151 struct hw_regs *range = hw_regs_range;
6152 int len;
6153
6154 mutex_lock(&hw_priv->lock);
6155 regs->version = 0;
6156 for (len = 0; len < 0x40; len += 4) {
6157 pci_read_config_dword(hw_priv->pdev, len, buf);
6158 buf++;
6159 }
6160 while (range->end > range->start) {
6161 for (len = range->start; len < range->end; len += 4) {
6162 *buf = readl(hw->io + len);
6163 buf++;
6164 }
6165 range++;
6166 }
6167 mutex_unlock(&hw_priv->lock);
6168}
6169
6170#define WOL_SUPPORT \
6171 (WAKE_PHY | WAKE_MAGIC | \
6172 WAKE_UCAST | WAKE_MCAST | \
6173 WAKE_BCAST | WAKE_ARP)
6174
6175
6176
6177
6178
6179
6180
6181
6182static void netdev_get_wol(struct net_device *dev,
6183 struct ethtool_wolinfo *wol)
6184{
6185 struct dev_priv *priv = netdev_priv(dev);
6186 struct dev_info *hw_priv = priv->adapter;
6187
6188 wol->supported = hw_priv->wol_support;
6189 wol->wolopts = hw_priv->wol_enable;
6190 memset(&wol->sopass, 0, sizeof(wol->sopass));
6191}
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202static int netdev_set_wol(struct net_device *dev,
6203 struct ethtool_wolinfo *wol)
6204{
6205 struct dev_priv *priv = netdev_priv(dev);
6206 struct dev_info *hw_priv = priv->adapter;
6207
6208
6209 static const u8 net_addr[] = { 192, 168, 1, 1 };
6210
6211 if (wol->wolopts & ~hw_priv->wol_support)
6212 return -EINVAL;
6213
6214 hw_priv->wol_enable = wol->wolopts;
6215
6216
6217 if (wol->wolopts)
6218 hw_priv->wol_enable |= WAKE_PHY;
6219 hw_enable_wol(&hw_priv->hw, hw_priv->wol_enable, net_addr);
6220 return 0;
6221}
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231static u32 netdev_get_msglevel(struct net_device *dev)
6232{
6233 struct dev_priv *priv = netdev_priv(dev);
6234
6235 return priv->msg_enable;
6236}
6237
6238
6239
6240
6241
6242
6243
6244
6245static void netdev_set_msglevel(struct net_device *dev, u32 value)
6246{
6247 struct dev_priv *priv = netdev_priv(dev);
6248
6249 priv->msg_enable = value;
6250}
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260static int netdev_get_eeprom_len(struct net_device *dev)
6261{
6262 return EEPROM_SIZE * 2;
6263}
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275#define EEPROM_MAGIC 0x10A18842
6276
6277static int netdev_get_eeprom(struct net_device *dev,
6278 struct ethtool_eeprom *eeprom, u8 *data)
6279{
6280 struct dev_priv *priv = netdev_priv(dev);
6281 struct dev_info *hw_priv = priv->adapter;
6282 u8 *eeprom_byte = (u8 *) eeprom_data;
6283 int i;
6284 int len;
6285
6286 len = (eeprom->offset + eeprom->len + 1) / 2;
6287 for (i = eeprom->offset / 2; i < len; i++)
6288 eeprom_data[i] = eeprom_read(&hw_priv->hw, i);
6289 eeprom->magic = EEPROM_MAGIC;
6290 memcpy(data, &eeprom_byte[eeprom->offset], eeprom->len);
6291
6292 return 0;
6293}
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305static int netdev_set_eeprom(struct net_device *dev,
6306 struct ethtool_eeprom *eeprom, u8 *data)
6307{
6308 struct dev_priv *priv = netdev_priv(dev);
6309 struct dev_info *hw_priv = priv->adapter;
6310 u16 eeprom_word[EEPROM_SIZE];
6311 u8 *eeprom_byte = (u8 *) eeprom_word;
6312 int i;
6313 int len;
6314
6315 if (eeprom->magic != EEPROM_MAGIC)
6316 return -EINVAL;
6317
6318 len = (eeprom->offset + eeprom->len + 1) / 2;
6319 for (i = eeprom->offset / 2; i < len; i++)
6320 eeprom_data[i] = eeprom_read(&hw_priv->hw, i);
6321 memcpy(eeprom_word, eeprom_data, EEPROM_SIZE * 2);
6322 memcpy(&eeprom_byte[eeprom->offset], data, eeprom->len);
6323 for (i = 0; i < EEPROM_SIZE; i++)
6324 if (eeprom_word[i] != eeprom_data[i]) {
6325 eeprom_data[i] = eeprom_word[i];
6326 eeprom_write(&hw_priv->hw, i, eeprom_data[i]);
6327 }
6328
6329 return 0;
6330}
6331
6332
6333
6334
6335
6336
6337
6338
6339static void netdev_get_pauseparam(struct net_device *dev,
6340 struct ethtool_pauseparam *pause)
6341{
6342 struct dev_priv *priv = netdev_priv(dev);
6343 struct dev_info *hw_priv = priv->adapter;
6344 struct ksz_hw *hw = &hw_priv->hw;
6345
6346 pause->autoneg = (hw->overrides & PAUSE_FLOW_CTRL) ? 0 : 1;
6347 if (!hw->ksz_switch) {
6348 pause->rx_pause =
6349 (hw->rx_cfg & DMA_RX_FLOW_ENABLE) ? 1 : 0;
6350 pause->tx_pause =
6351 (hw->tx_cfg & DMA_TX_FLOW_ENABLE) ? 1 : 0;
6352 } else {
6353 pause->rx_pause =
6354 (sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6355 SWITCH_RX_FLOW_CTRL)) ? 1 : 0;
6356 pause->tx_pause =
6357 (sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6358 SWITCH_TX_FLOW_CTRL)) ? 1 : 0;
6359 }
6360}
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372static int netdev_set_pauseparam(struct net_device *dev,
6373 struct ethtool_pauseparam *pause)
6374{
6375 struct dev_priv *priv = netdev_priv(dev);
6376 struct dev_info *hw_priv = priv->adapter;
6377 struct ksz_hw *hw = &hw_priv->hw;
6378 struct ksz_port *port = &priv->port;
6379
6380 mutex_lock(&hw_priv->lock);
6381 if (pause->autoneg) {
6382 if (!pause->rx_pause && !pause->tx_pause)
6383 port->flow_ctrl = PHY_NO_FLOW_CTRL;
6384 else
6385 port->flow_ctrl = PHY_FLOW_CTRL;
6386 hw->overrides &= ~PAUSE_FLOW_CTRL;
6387 port->force_link = 0;
6388 if (hw->ksz_switch) {
6389 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6390 SWITCH_RX_FLOW_CTRL, 1);
6391 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6392 SWITCH_TX_FLOW_CTRL, 1);
6393 }
6394 port_set_link_speed(port);
6395 } else {
6396 hw->overrides |= PAUSE_FLOW_CTRL;
6397 if (hw->ksz_switch) {
6398 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6399 SWITCH_RX_FLOW_CTRL, pause->rx_pause);
6400 sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6401 SWITCH_TX_FLOW_CTRL, pause->tx_pause);
6402 } else
6403 set_flow_ctrl(hw, pause->rx_pause, pause->tx_pause);
6404 }
6405 mutex_unlock(&hw_priv->lock);
6406
6407 return 0;
6408}
6409
6410
6411
6412
6413
6414
6415
6416
6417static void netdev_get_ringparam(struct net_device *dev,
6418 struct ethtool_ringparam *ring)
6419{
6420 struct dev_priv *priv = netdev_priv(dev);
6421 struct dev_info *hw_priv = priv->adapter;
6422 struct ksz_hw *hw = &hw_priv->hw;
6423
6424 ring->tx_max_pending = (1 << 9);
6425 ring->tx_pending = hw->tx_desc_info.alloc;
6426 ring->rx_max_pending = (1 << 9);
6427 ring->rx_pending = hw->rx_desc_info.alloc;
6428}
6429
6430#define STATS_LEN (TOTAL_PORT_COUNTER_NUM)
6431
6432static struct {
6433 char string[ETH_GSTRING_LEN];
6434} ethtool_stats_keys[STATS_LEN] = {
6435 { "rx_lo_priority_octets" },
6436 { "rx_hi_priority_octets" },
6437 { "rx_undersize_packets" },
6438 { "rx_fragments" },
6439 { "rx_oversize_packets" },
6440 { "rx_jabbers" },
6441 { "rx_symbol_errors" },
6442 { "rx_crc_errors" },
6443 { "rx_align_errors" },
6444 { "rx_mac_ctrl_packets" },
6445 { "rx_pause_packets" },
6446 { "rx_bcast_packets" },
6447 { "rx_mcast_packets" },
6448 { "rx_ucast_packets" },
6449 { "rx_64_or_less_octet_packets" },
6450 { "rx_65_to_127_octet_packets" },
6451 { "rx_128_to_255_octet_packets" },
6452 { "rx_256_to_511_octet_packets" },
6453 { "rx_512_to_1023_octet_packets" },
6454 { "rx_1024_to_1522_octet_packets" },
6455
6456 { "tx_lo_priority_octets" },
6457 { "tx_hi_priority_octets" },
6458 { "tx_late_collisions" },
6459 { "tx_pause_packets" },
6460 { "tx_bcast_packets" },
6461 { "tx_mcast_packets" },
6462 { "tx_ucast_packets" },
6463 { "tx_deferred" },
6464 { "tx_total_collisions" },
6465 { "tx_excessive_collisions" },
6466 { "tx_single_collisions" },
6467 { "tx_mult_collisions" },
6468
6469 { "rx_discards" },
6470 { "tx_discards" },
6471};
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481static void netdev_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
6482{
6483 struct dev_priv *priv = netdev_priv(dev);
6484 struct dev_info *hw_priv = priv->adapter;
6485 struct ksz_hw *hw = &hw_priv->hw;
6486
6487 if (ETH_SS_STATS == stringset)
6488 memcpy(buf, ðtool_stats_keys,
6489 ETH_GSTRING_LEN * hw->mib_cnt);
6490}
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501static int netdev_get_sset_count(struct net_device *dev, int sset)
6502{
6503 struct dev_priv *priv = netdev_priv(dev);
6504 struct dev_info *hw_priv = priv->adapter;
6505 struct ksz_hw *hw = &hw_priv->hw;
6506
6507 switch (sset) {
6508 case ETH_SS_STATS:
6509 return hw->mib_cnt;
6510 default:
6511 return -EOPNOTSUPP;
6512 }
6513}
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523static void netdev_get_ethtool_stats(struct net_device *dev,
6524 struct ethtool_stats *stats, u64 *data)
6525{
6526 struct dev_priv *priv = netdev_priv(dev);
6527 struct dev_info *hw_priv = priv->adapter;
6528 struct ksz_hw *hw = &hw_priv->hw;
6529 struct ksz_port *port = &priv->port;
6530 int n_stats = stats->n_stats;
6531 int i;
6532 int n;
6533 int p;
6534 int rc;
6535 u64 counter[TOTAL_PORT_COUNTER_NUM];
6536
6537 mutex_lock(&hw_priv->lock);
6538 n = SWITCH_PORT_NUM;
6539 for (i = 0, p = port->first_port; i < port->mib_port_cnt; i++, p++) {
6540 if (media_connected == hw->port_mib[p].state) {
6541 hw_priv->counter[p].read = 1;
6542
6543
6544 if (n == SWITCH_PORT_NUM)
6545 n = p;
6546 }
6547 }
6548 mutex_unlock(&hw_priv->lock);
6549
6550 if (n < SWITCH_PORT_NUM)
6551 schedule_work(&hw_priv->mib_read);
6552
6553 if (1 == port->mib_port_cnt && n < SWITCH_PORT_NUM) {
6554 p = n;
6555 rc = wait_event_interruptible_timeout(
6556 hw_priv->counter[p].counter,
6557 2 == hw_priv->counter[p].read,
6558 HZ * 1);
6559 } else
6560 for (i = 0, p = n; i < port->mib_port_cnt - n; i++, p++) {
6561 if (0 == i) {
6562 rc = wait_event_interruptible_timeout(
6563 hw_priv->counter[p].counter,
6564 2 == hw_priv->counter[p].read,
6565 HZ * 2);
6566 } else if (hw->port_mib[p].cnt_ptr) {
6567 rc = wait_event_interruptible_timeout(
6568 hw_priv->counter[p].counter,
6569 2 == hw_priv->counter[p].read,
6570 HZ * 1);
6571 }
6572 }
6573
6574 get_mib_counters(hw, port->first_port, port->mib_port_cnt, counter);
6575 n = hw->mib_cnt;
6576 if (n > n_stats)
6577 n = n_stats;
6578 n_stats -= n;
6579 for (i = 0; i < n; i++)
6580 *data++ = counter[i];
6581}
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592static int netdev_set_features(struct net_device *dev, u32 features)
6593{
6594 struct dev_priv *priv = netdev_priv(dev);
6595 struct dev_info *hw_priv = priv->adapter;
6596 struct ksz_hw *hw = &hw_priv->hw;
6597
6598 mutex_lock(&hw_priv->lock);
6599
6600
6601 if (features & NETIF_F_RXCSUM)
6602 hw->rx_cfg |= DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP;
6603 else
6604 hw->rx_cfg &= ~(DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP);
6605
6606 if (hw->enabled)
6607 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
6608
6609 mutex_unlock(&hw_priv->lock);
6610
6611 return 0;
6612}
6613
6614static struct ethtool_ops netdev_ethtool_ops = {
6615 .get_settings = netdev_get_settings,
6616 .set_settings = netdev_set_settings,
6617 .nway_reset = netdev_nway_reset,
6618 .get_link = netdev_get_link,
6619 .get_drvinfo = netdev_get_drvinfo,
6620 .get_regs_len = netdev_get_regs_len,
6621 .get_regs = netdev_get_regs,
6622 .get_wol = netdev_get_wol,
6623 .set_wol = netdev_set_wol,
6624 .get_msglevel = netdev_get_msglevel,
6625 .set_msglevel = netdev_set_msglevel,
6626 .get_eeprom_len = netdev_get_eeprom_len,
6627 .get_eeprom = netdev_get_eeprom,
6628 .set_eeprom = netdev_set_eeprom,
6629 .get_pauseparam = netdev_get_pauseparam,
6630 .set_pauseparam = netdev_set_pauseparam,
6631 .get_ringparam = netdev_get_ringparam,
6632 .get_strings = netdev_get_strings,
6633 .get_sset_count = netdev_get_sset_count,
6634 .get_ethtool_stats = netdev_get_ethtool_stats,
6635};
6636
6637
6638
6639
6640
6641static void update_link(struct net_device *dev, struct dev_priv *priv,
6642 struct ksz_port *port)
6643{
6644 if (priv->media_state != port->linked->state) {
6645 priv->media_state = port->linked->state;
6646 if (netif_running(dev))
6647 set_media_state(dev, media_connected);
6648 }
6649}
6650
6651static void mib_read_work(struct work_struct *work)
6652{
6653 struct dev_info *hw_priv =
6654 container_of(work, struct dev_info, mib_read);
6655 struct ksz_hw *hw = &hw_priv->hw;
6656 struct ksz_port_mib *mib;
6657 int i;
6658
6659 next_jiffies = jiffies;
6660 for (i = 0; i < hw->mib_port_cnt; i++) {
6661 mib = &hw->port_mib[i];
6662
6663
6664 if (mib->cnt_ptr || 1 == hw_priv->counter[i].read) {
6665
6666
6667 if (port_r_cnt(hw, i))
6668 break;
6669 hw_priv->counter[i].read = 0;
6670
6671
6672 if (0 == mib->cnt_ptr) {
6673 hw_priv->counter[i].read = 2;
6674 wake_up_interruptible(
6675 &hw_priv->counter[i].counter);
6676 }
6677 } else if (jiffies >= hw_priv->counter[i].time) {
6678
6679 if (media_connected == mib->state)
6680 hw_priv->counter[i].read = 1;
6681 next_jiffies += HZ * 1 * hw->mib_port_cnt;
6682 hw_priv->counter[i].time = next_jiffies;
6683
6684
6685 } else if (mib->link_down) {
6686 mib->link_down = 0;
6687
6688
6689 hw_priv->counter[i].read = 1;
6690 }
6691 }
6692}
6693
6694static void mib_monitor(unsigned long ptr)
6695{
6696 struct dev_info *hw_priv = (struct dev_info *) ptr;
6697
6698 mib_read_work(&hw_priv->mib_read);
6699
6700
6701 if (hw_priv->pme_wait) {
6702 if (hw_priv->pme_wait <= jiffies) {
6703 hw_clr_wol_pme_status(&hw_priv->hw);
6704 hw_priv->pme_wait = 0;
6705 }
6706 } else if (hw_chk_wol_pme_status(&hw_priv->hw)) {
6707
6708
6709 hw_priv->pme_wait = jiffies + HZ * 2;
6710 }
6711
6712 ksz_update_timer(&hw_priv->mib_timer_info);
6713}
6714
6715
6716
6717
6718
6719
6720
6721static void dev_monitor(unsigned long ptr)
6722{
6723 struct net_device *dev = (struct net_device *) ptr;
6724 struct dev_priv *priv = netdev_priv(dev);
6725 struct dev_info *hw_priv = priv->adapter;
6726 struct ksz_hw *hw = &hw_priv->hw;
6727 struct ksz_port *port = &priv->port;
6728
6729 if (!(hw->features & LINK_INT_WORKING))
6730 port_get_link_speed(port);
6731 update_link(dev, priv, port);
6732
6733 ksz_update_timer(&priv->monitor_timer_info);
6734}
6735
6736
6737
6738
6739
6740
6741
6742static int msg_enable;
6743
6744static char *macaddr = ":";
6745static char *mac1addr = ":";
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756static int multi_dev;
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771static int stp;
6772
6773
6774
6775
6776
6777
6778static int fast_aging;
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788static int __init netdev_init(struct net_device *dev)
6789{
6790 struct dev_priv *priv = netdev_priv(dev);
6791
6792
6793 ksz_init_timer(&priv->monitor_timer_info, 500 * HZ / 1000,
6794 dev_monitor, dev);
6795
6796
6797 dev->watchdog_timeo = HZ / 2;
6798
6799 dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_RXCSUM;
6800
6801
6802
6803
6804
6805 dev->hw_features |= NETIF_F_IPV6_CSUM;
6806
6807 dev->features |= dev->hw_features;
6808
6809 sema_init(&priv->proc_sem, 1);
6810
6811 priv->mii_if.phy_id_mask = 0x1;
6812 priv->mii_if.reg_num_mask = 0x7;
6813 priv->mii_if.dev = dev;
6814 priv->mii_if.mdio_read = mdio_read;
6815 priv->mii_if.mdio_write = mdio_write;
6816 priv->mii_if.phy_id = priv->port.first_port + 1;
6817
6818 priv->msg_enable = netif_msg_init(msg_enable,
6819 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK));
6820
6821 return 0;
6822}
6823
6824static const struct net_device_ops netdev_ops = {
6825 .ndo_init = netdev_init,
6826 .ndo_open = netdev_open,
6827 .ndo_stop = netdev_close,
6828 .ndo_get_stats = netdev_query_statistics,
6829 .ndo_start_xmit = netdev_tx,
6830 .ndo_tx_timeout = netdev_tx_timeout,
6831 .ndo_change_mtu = netdev_change_mtu,
6832 .ndo_set_features = netdev_set_features,
6833 .ndo_set_mac_address = netdev_set_mac_address,
6834 .ndo_validate_addr = eth_validate_addr,
6835 .ndo_do_ioctl = netdev_ioctl,
6836 .ndo_set_rx_mode = netdev_set_rx_mode,
6837#ifdef CONFIG_NET_POLL_CONTROLLER
6838 .ndo_poll_controller = netdev_netpoll,
6839#endif
6840};
6841
6842static void netdev_free(struct net_device *dev)
6843{
6844 if (dev->watchdog_timeo)
6845 unregister_netdev(dev);
6846
6847 free_netdev(dev);
6848}
6849
6850struct platform_info {
6851 struct dev_info dev_info;
6852 struct net_device *netdev[SWITCH_PORT_NUM];
6853};
6854
6855static int net_device_present;
6856
6857static void get_mac_addr(struct dev_info *hw_priv, u8 *macaddr, int port)
6858{
6859 int i;
6860 int j;
6861 int got_num;
6862 int num;
6863
6864 i = j = num = got_num = 0;
6865 while (j < MAC_ADDR_LEN) {
6866 if (macaddr[i]) {
6867 int digit;
6868
6869 got_num = 1;
6870 digit = hex_to_bin(macaddr[i]);
6871 if (digit >= 0)
6872 num = num * 16 + digit;
6873 else if (':' == macaddr[i])
6874 got_num = 2;
6875 else
6876 break;
6877 } else if (got_num)
6878 got_num = 2;
6879 else
6880 break;
6881 if (2 == got_num) {
6882 if (MAIN_PORT == port) {
6883 hw_priv->hw.override_addr[j++] = (u8) num;
6884 hw_priv->hw.override_addr[5] +=
6885 hw_priv->hw.id;
6886 } else {
6887 hw_priv->hw.ksz_switch->other_addr[j++] =
6888 (u8) num;
6889 hw_priv->hw.ksz_switch->other_addr[5] +=
6890 hw_priv->hw.id;
6891 }
6892 num = got_num = 0;
6893 }
6894 i++;
6895 }
6896 if (MAC_ADDR_LEN == j) {
6897 if (MAIN_PORT == port)
6898 hw_priv->hw.mac_override = 1;
6899 }
6900}
6901
6902#define KS884X_DMA_MASK (~0x0UL)
6903
6904static void read_other_addr(struct ksz_hw *hw)
6905{
6906 int i;
6907 u16 data[3];
6908 struct ksz_switch *sw = hw->ksz_switch;
6909
6910 for (i = 0; i < 3; i++)
6911 data[i] = eeprom_read(hw, i + EEPROM_DATA_OTHER_MAC_ADDR);
6912 if ((data[0] || data[1] || data[2]) && data[0] != 0xffff) {
6913 sw->other_addr[5] = (u8) data[0];
6914 sw->other_addr[4] = (u8)(data[0] >> 8);
6915 sw->other_addr[3] = (u8) data[1];
6916 sw->other_addr[2] = (u8)(data[1] >> 8);
6917 sw->other_addr[1] = (u8) data[2];
6918 sw->other_addr[0] = (u8)(data[2] >> 8);
6919 }
6920}
6921
6922#ifndef PCI_VENDOR_ID_MICREL_KS
6923#define PCI_VENDOR_ID_MICREL_KS 0x16c6
6924#endif
6925
6926static int __devinit pcidev_init(struct pci_dev *pdev,
6927 const struct pci_device_id *id)
6928{
6929 struct net_device *dev;
6930 struct dev_priv *priv;
6931 struct dev_info *hw_priv;
6932 struct ksz_hw *hw;
6933 struct platform_info *info;
6934 struct ksz_port *port;
6935 unsigned long reg_base;
6936 unsigned long reg_len;
6937 int cnt;
6938 int i;
6939 int mib_port_count;
6940 int pi;
6941 int port_count;
6942 int result;
6943 char banner[sizeof(version)];
6944 struct ksz_switch *sw = NULL;
6945
6946 result = pci_enable_device(pdev);
6947 if (result)
6948 return result;
6949
6950 result = -ENODEV;
6951
6952 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) ||
6953 pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))
6954 return result;
6955
6956 reg_base = pci_resource_start(pdev, 0);
6957 reg_len = pci_resource_len(pdev, 0);
6958 if ((pci_resource_flags(pdev, 0) & IORESOURCE_IO) != 0)
6959 return result;
6960
6961 if (!request_mem_region(reg_base, reg_len, DRV_NAME))
6962 return result;
6963 pci_set_master(pdev);
6964
6965 result = -ENOMEM;
6966
6967 info = kzalloc(sizeof(struct platform_info), GFP_KERNEL);
6968 if (!info)
6969 goto pcidev_init_dev_err;
6970
6971 hw_priv = &info->dev_info;
6972 hw_priv->pdev = pdev;
6973
6974 hw = &hw_priv->hw;
6975
6976 hw->io = ioremap(reg_base, reg_len);
6977 if (!hw->io)
6978 goto pcidev_init_io_err;
6979
6980 cnt = hw_init(hw);
6981 if (!cnt) {
6982 if (msg_enable & NETIF_MSG_PROBE)
6983 pr_alert("chip not detected\n");
6984 result = -ENODEV;
6985 goto pcidev_init_alloc_err;
6986 }
6987
6988 snprintf(banner, sizeof(banner), "%s", version);
6989 banner[13] = cnt + '0';
6990 dev_info(&hw_priv->pdev->dev, "%s\n", banner);
6991 dev_dbg(&hw_priv->pdev->dev, "Mem = %p; IRQ = %d\n", hw->io, pdev->irq);
6992
6993
6994 hw->dev_count = 1;
6995 port_count = 1;
6996 mib_port_count = 1;
6997 hw->addr_list_size = 0;
6998 hw->mib_cnt = PORT_COUNTER_NUM;
6999 hw->mib_port_cnt = 1;
7000
7001
7002 if (2 == cnt) {
7003 if (fast_aging)
7004 hw->overrides |= FAST_AGING;
7005
7006 hw->mib_cnt = TOTAL_PORT_COUNTER_NUM;
7007
7008
7009 if (multi_dev) {
7010 hw->dev_count = SWITCH_PORT_NUM;
7011 hw->addr_list_size = SWITCH_PORT_NUM - 1;
7012 }
7013
7014
7015 if (1 == hw->dev_count) {
7016 port_count = SWITCH_PORT_NUM;
7017 mib_port_count = SWITCH_PORT_NUM;
7018 }
7019 hw->mib_port_cnt = TOTAL_PORT_NUM;
7020 hw->ksz_switch = kzalloc(sizeof(struct ksz_switch), GFP_KERNEL);
7021 if (!hw->ksz_switch)
7022 goto pcidev_init_alloc_err;
7023
7024 sw = hw->ksz_switch;
7025 }
7026 for (i = 0; i < hw->mib_port_cnt; i++)
7027 hw->port_mib[i].mib_start = 0;
7028
7029 hw->parent = hw_priv;
7030
7031
7032 hw_priv->mtu = (REGULAR_RX_BUF_SIZE + 3) & ~3;
7033
7034 if (ksz_alloc_mem(hw_priv))
7035 goto pcidev_init_mem_err;
7036
7037 hw_priv->hw.id = net_device_present;
7038
7039 spin_lock_init(&hw_priv->hwlock);
7040 mutex_init(&hw_priv->lock);
7041
7042
7043 tasklet_init(&hw_priv->rx_tasklet, rx_proc_task,
7044 (unsigned long) hw_priv);
7045 tasklet_init(&hw_priv->tx_tasklet, tx_proc_task,
7046 (unsigned long) hw_priv);
7047
7048
7049 tasklet_disable(&hw_priv->rx_tasklet);
7050 tasklet_disable(&hw_priv->tx_tasklet);
7051
7052 for (i = 0; i < TOTAL_PORT_NUM; i++)
7053 init_waitqueue_head(&hw_priv->counter[i].counter);
7054
7055 if (macaddr[0] != ':')
7056 get_mac_addr(hw_priv, macaddr, MAIN_PORT);
7057
7058
7059 hw_read_addr(hw);
7060
7061
7062 if (hw->dev_count > 1) {
7063 memcpy(sw->other_addr, hw->override_addr, MAC_ADDR_LEN);
7064 read_other_addr(hw);
7065 if (mac1addr[0] != ':')
7066 get_mac_addr(hw_priv, mac1addr, OTHER_PORT);
7067 }
7068
7069 hw_setup(hw);
7070 if (hw->ksz_switch)
7071 sw_setup(hw);
7072 else {
7073 hw_priv->wol_support = WOL_SUPPORT;
7074 hw_priv->wol_enable = 0;
7075 }
7076
7077 INIT_WORK(&hw_priv->mib_read, mib_read_work);
7078
7079
7080 ksz_init_timer(&hw_priv->mib_timer_info, 500 * HZ / 1000,
7081 mib_monitor, hw_priv);
7082
7083 for (i = 0; i < hw->dev_count; i++) {
7084 dev = alloc_etherdev(sizeof(struct dev_priv));
7085 if (!dev)
7086 goto pcidev_init_reg_err;
7087 info->netdev[i] = dev;
7088
7089 priv = netdev_priv(dev);
7090 priv->adapter = hw_priv;
7091 priv->id = net_device_present++;
7092
7093 port = &priv->port;
7094 port->port_cnt = port_count;
7095 port->mib_port_cnt = mib_port_count;
7096 port->first_port = i;
7097 port->flow_ctrl = PHY_FLOW_CTRL;
7098
7099 port->hw = hw;
7100 port->linked = &hw->port_info[port->first_port];
7101
7102 for (cnt = 0, pi = i; cnt < port_count; cnt++, pi++) {
7103 hw->port_info[pi].port_id = pi;
7104 hw->port_info[pi].pdev = dev;
7105 hw->port_info[pi].state = media_disconnected;
7106 }
7107
7108 dev->mem_start = (unsigned long) hw->io;
7109 dev->mem_end = dev->mem_start + reg_len - 1;
7110 dev->irq = pdev->irq;
7111 if (MAIN_PORT == i)
7112 memcpy(dev->dev_addr, hw_priv->hw.override_addr,
7113 MAC_ADDR_LEN);
7114 else {
7115 memcpy(dev->dev_addr, sw->other_addr,
7116 MAC_ADDR_LEN);
7117 if (!memcmp(sw->other_addr, hw->override_addr,
7118 MAC_ADDR_LEN))
7119 dev->dev_addr[5] += port->first_port;
7120 }
7121
7122 dev->netdev_ops = &netdev_ops;
7123 SET_ETHTOOL_OPS(dev, &netdev_ethtool_ops);
7124 if (register_netdev(dev))
7125 goto pcidev_init_reg_err;
7126 port_set_power_saving(port, true);
7127 }
7128
7129 pci_dev_get(hw_priv->pdev);
7130 pci_set_drvdata(pdev, info);
7131 return 0;
7132
7133pcidev_init_reg_err:
7134 for (i = 0; i < hw->dev_count; i++) {
7135 if (info->netdev[i]) {
7136 netdev_free(info->netdev[i]);
7137 info->netdev[i] = NULL;
7138 }
7139 }
7140
7141pcidev_init_mem_err:
7142 ksz_free_mem(hw_priv);
7143 kfree(hw->ksz_switch);
7144
7145pcidev_init_alloc_err:
7146 iounmap(hw->io);
7147
7148pcidev_init_io_err:
7149 kfree(info);
7150
7151pcidev_init_dev_err:
7152 release_mem_region(reg_base, reg_len);
7153
7154 return result;
7155}
7156
7157static void pcidev_exit(struct pci_dev *pdev)
7158{
7159 int i;
7160 struct platform_info *info = pci_get_drvdata(pdev);
7161 struct dev_info *hw_priv = &info->dev_info;
7162
7163 pci_set_drvdata(pdev, NULL);
7164
7165 release_mem_region(pci_resource_start(pdev, 0),
7166 pci_resource_len(pdev, 0));
7167 for (i = 0; i < hw_priv->hw.dev_count; i++) {
7168 if (info->netdev[i])
7169 netdev_free(info->netdev[i]);
7170 }
7171 if (hw_priv->hw.io)
7172 iounmap(hw_priv->hw.io);
7173 ksz_free_mem(hw_priv);
7174 kfree(hw_priv->hw.ksz_switch);
7175 pci_dev_put(hw_priv->pdev);
7176 kfree(info);
7177}
7178
7179#ifdef CONFIG_PM
7180static int pcidev_resume(struct pci_dev *pdev)
7181{
7182 int i;
7183 struct platform_info *info = pci_get_drvdata(pdev);
7184 struct dev_info *hw_priv = &info->dev_info;
7185 struct ksz_hw *hw = &hw_priv->hw;
7186
7187 pci_set_power_state(pdev, PCI_D0);
7188 pci_restore_state(pdev);
7189 pci_enable_wake(pdev, PCI_D0, 0);
7190
7191 if (hw_priv->wol_enable)
7192 hw_cfg_wol_pme(hw, 0);
7193 for (i = 0; i < hw->dev_count; i++) {
7194 if (info->netdev[i]) {
7195 struct net_device *dev = info->netdev[i];
7196
7197 if (netif_running(dev)) {
7198 netdev_open(dev);
7199 netif_device_attach(dev);
7200 }
7201 }
7202 }
7203 return 0;
7204}
7205
7206static int pcidev_suspend(struct pci_dev *pdev, pm_message_t state)
7207{
7208 int i;
7209 struct platform_info *info = pci_get_drvdata(pdev);
7210 struct dev_info *hw_priv = &info->dev_info;
7211 struct ksz_hw *hw = &hw_priv->hw;
7212
7213
7214 static const u8 net_addr[] = { 192, 168, 1, 1 };
7215
7216 for (i = 0; i < hw->dev_count; i++) {
7217 if (info->netdev[i]) {
7218 struct net_device *dev = info->netdev[i];
7219
7220 if (netif_running(dev)) {
7221 netif_device_detach(dev);
7222 netdev_close(dev);
7223 }
7224 }
7225 }
7226 if (hw_priv->wol_enable) {
7227 hw_enable_wol(hw, hw_priv->wol_enable, net_addr);
7228 hw_cfg_wol_pme(hw, 1);
7229 }
7230
7231 pci_save_state(pdev);
7232 pci_enable_wake(pdev, pci_choose_state(pdev, state), 1);
7233 pci_set_power_state(pdev, pci_choose_state(pdev, state));
7234 return 0;
7235}
7236#endif
7237
7238static char pcidev_name[] = "ksz884xp";
7239
7240static struct pci_device_id pcidev_table[] = {
7241 { PCI_VENDOR_ID_MICREL_KS, 0x8841,
7242 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
7243 { PCI_VENDOR_ID_MICREL_KS, 0x8842,
7244 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
7245 { 0 }
7246};
7247
7248MODULE_DEVICE_TABLE(pci, pcidev_table);
7249
7250static struct pci_driver pci_device_driver = {
7251#ifdef CONFIG_PM
7252 .suspend = pcidev_suspend,
7253 .resume = pcidev_resume,
7254#endif
7255 .name = pcidev_name,
7256 .id_table = pcidev_table,
7257 .probe = pcidev_init,
7258 .remove = pcidev_exit
7259};
7260
7261static int __init ksz884x_init_module(void)
7262{
7263 return pci_register_driver(&pci_device_driver);
7264}
7265
7266static void __exit ksz884x_cleanup_module(void)
7267{
7268 pci_unregister_driver(&pci_device_driver);
7269}
7270
7271module_init(ksz884x_init_module);
7272module_exit(ksz884x_cleanup_module);
7273
7274MODULE_DESCRIPTION("KSZ8841/2 PCI network driver");
7275MODULE_AUTHOR("Tristram Ha <Tristram.Ha@micrel.com>");
7276MODULE_LICENSE("GPL");
7277
7278module_param_named(message, msg_enable, int, 0);
7279MODULE_PARM_DESC(message, "Message verbosity level (0=none, 31=all)");
7280
7281module_param(macaddr, charp, 0);
7282module_param(mac1addr, charp, 0);
7283module_param(fast_aging, int, 0);
7284module_param(multi_dev, int, 0);
7285module_param(stp, int, 0);
7286MODULE_PARM_DESC(macaddr, "MAC address");
7287MODULE_PARM_DESC(mac1addr, "Second MAC address");
7288MODULE_PARM_DESC(fast_aging, "Fast aging");
7289MODULE_PARM_DESC(multi_dev, "Multiple device interfaces");
7290MODULE_PARM_DESC(stp, "STP support");
7291