GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / net / ethernet / micrel / ksz884x.c
1 /**
2  * drivers/net/ethernet/micrel/ksx884x.c - Micrel KSZ8841/2 PCI Ethernet driver
3  *
4  * Copyright (c) 2009-2010 Micrel, Inc.
5  *      Tristram Ha <Tristram.Ha@micrel.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
19 #include <linux/init.h>
20 #include <linux/interrupt.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/ioport.h>
24 #include <linux/pci.h>
25 #include <linux/proc_fs.h>
26 #include <linux/mii.h>
27 #include <linux/platform_device.h>
28 #include <linux/ethtool.h>
29 #include <linux/etherdevice.h>
30 #include <linux/in.h>
31 #include <linux/ip.h>
32 #include <linux/if_vlan.h>
33 #include <linux/crc32.h>
34 #include <linux/sched.h>
35 #include <linux/slab.h>
36
37
38 /* DMA Registers */
39
40 #define KS_DMA_TX_CTRL                  0x0000
41 #define DMA_TX_ENABLE                   0x00000001
42 #define DMA_TX_CRC_ENABLE               0x00000002
43 #define DMA_TX_PAD_ENABLE               0x00000004
44 #define DMA_TX_LOOPBACK                 0x00000100
45 #define DMA_TX_FLOW_ENABLE              0x00000200
46 #define DMA_TX_CSUM_IP                  0x00010000
47 #define DMA_TX_CSUM_TCP                 0x00020000
48 #define DMA_TX_CSUM_UDP                 0x00040000
49 #define DMA_TX_BURST_SIZE               0x3F000000
50
51 #define KS_DMA_RX_CTRL                  0x0004
52 #define DMA_RX_ENABLE                   0x00000001
53 #define KS884X_DMA_RX_MULTICAST         0x00000002
54 #define DMA_RX_PROMISCUOUS              0x00000004
55 #define DMA_RX_ERROR                    0x00000008
56 #define DMA_RX_UNICAST                  0x00000010
57 #define DMA_RX_ALL_MULTICAST            0x00000020
58 #define DMA_RX_BROADCAST                0x00000040
59 #define DMA_RX_FLOW_ENABLE              0x00000200
60 #define DMA_RX_CSUM_IP                  0x00010000
61 #define DMA_RX_CSUM_TCP                 0x00020000
62 #define DMA_RX_CSUM_UDP                 0x00040000
63 #define DMA_RX_BURST_SIZE               0x3F000000
64
65 #define DMA_BURST_SHIFT                 24
66 #define DMA_BURST_DEFAULT               8
67
68 #define KS_DMA_TX_START                 0x0008
69 #define KS_DMA_RX_START                 0x000C
70 #define DMA_START                       0x00000001
71
72 #define KS_DMA_TX_ADDR                  0x0010
73 #define KS_DMA_RX_ADDR                  0x0014
74
75 #define DMA_ADDR_LIST_MASK              0xFFFFFFFC
76 #define DMA_ADDR_LIST_SHIFT             2
77
78 /* MTR0 */
79 #define KS884X_MULTICAST_0_OFFSET       0x0020
80 #define KS884X_MULTICAST_1_OFFSET       0x0021
81 #define KS884X_MULTICAST_2_OFFSET       0x0022
82 #define KS884x_MULTICAST_3_OFFSET       0x0023
83 /* MTR1 */
84 #define KS884X_MULTICAST_4_OFFSET       0x0024
85 #define KS884X_MULTICAST_5_OFFSET       0x0025
86 #define KS884X_MULTICAST_6_OFFSET       0x0026
87 #define KS884X_MULTICAST_7_OFFSET       0x0027
88
89 /* Interrupt Registers */
90
91 /* INTEN */
92 #define KS884X_INTERRUPTS_ENABLE        0x0028
93 /* INTST */
94 #define KS884X_INTERRUPTS_STATUS        0x002C
95
96 #define KS884X_INT_RX_STOPPED           0x02000000
97 #define KS884X_INT_TX_STOPPED           0x04000000
98 #define KS884X_INT_RX_OVERRUN           0x08000000
99 #define KS884X_INT_TX_EMPTY             0x10000000
100 #define KS884X_INT_RX                   0x20000000
101 #define KS884X_INT_TX                   0x40000000
102 #define KS884X_INT_PHY                  0x80000000
103
104 #define KS884X_INT_RX_MASK              \
105         (KS884X_INT_RX | KS884X_INT_RX_OVERRUN)
106 #define KS884X_INT_TX_MASK              \
107         (KS884X_INT_TX | KS884X_INT_TX_EMPTY)
108 #define KS884X_INT_MASK (KS884X_INT_RX | KS884X_INT_TX | KS884X_INT_PHY)
109
110 /* MAC Additional Station Address */
111
112 /* MAAL0 */
113 #define KS_ADD_ADDR_0_LO                0x0080
114 /* MAAH0 */
115 #define KS_ADD_ADDR_0_HI                0x0084
116 /* MAAL1 */
117 #define KS_ADD_ADDR_1_LO                0x0088
118 /* MAAH1 */
119 #define KS_ADD_ADDR_1_HI                0x008C
120 /* MAAL2 */
121 #define KS_ADD_ADDR_2_LO                0x0090
122 /* MAAH2 */
123 #define KS_ADD_ADDR_2_HI                0x0094
124 /* MAAL3 */
125 #define KS_ADD_ADDR_3_LO                0x0098
126 /* MAAH3 */
127 #define KS_ADD_ADDR_3_HI                0x009C
128 /* MAAL4 */
129 #define KS_ADD_ADDR_4_LO                0x00A0
130 /* MAAH4 */
131 #define KS_ADD_ADDR_4_HI                0x00A4
132 /* MAAL5 */
133 #define KS_ADD_ADDR_5_LO                0x00A8
134 /* MAAH5 */
135 #define KS_ADD_ADDR_5_HI                0x00AC
136 /* MAAL6 */
137 #define KS_ADD_ADDR_6_LO                0x00B0
138 /* MAAH6 */
139 #define KS_ADD_ADDR_6_HI                0x00B4
140 /* MAAL7 */
141 #define KS_ADD_ADDR_7_LO                0x00B8
142 /* MAAH7 */
143 #define KS_ADD_ADDR_7_HI                0x00BC
144 /* MAAL8 */
145 #define KS_ADD_ADDR_8_LO                0x00C0
146 /* MAAH8 */
147 #define KS_ADD_ADDR_8_HI                0x00C4
148 /* MAAL9 */
149 #define KS_ADD_ADDR_9_LO                0x00C8
150 /* MAAH9 */
151 #define KS_ADD_ADDR_9_HI                0x00CC
152 /* MAAL10 */
153 #define KS_ADD_ADDR_A_LO                0x00D0
154 /* MAAH10 */
155 #define KS_ADD_ADDR_A_HI                0x00D4
156 /* MAAL11 */
157 #define KS_ADD_ADDR_B_LO                0x00D8
158 /* MAAH11 */
159 #define KS_ADD_ADDR_B_HI                0x00DC
160 /* MAAL12 */
161 #define KS_ADD_ADDR_C_LO                0x00E0
162 /* MAAH12 */
163 #define KS_ADD_ADDR_C_HI                0x00E4
164 /* MAAL13 */
165 #define KS_ADD_ADDR_D_LO                0x00E8
166 /* MAAH13 */
167 #define KS_ADD_ADDR_D_HI                0x00EC
168 /* MAAL14 */
169 #define KS_ADD_ADDR_E_LO                0x00F0
170 /* MAAH14 */
171 #define KS_ADD_ADDR_E_HI                0x00F4
172 /* MAAL15 */
173 #define KS_ADD_ADDR_F_LO                0x00F8
174 /* MAAH15 */
175 #define KS_ADD_ADDR_F_HI                0x00FC
176
177 #define ADD_ADDR_HI_MASK                0x0000FFFF
178 #define ADD_ADDR_ENABLE                 0x80000000
179 #define ADD_ADDR_INCR                   8
180
181 /* Miscellaneous Registers */
182
183 /* MARL */
184 #define KS884X_ADDR_0_OFFSET            0x0200
185 #define KS884X_ADDR_1_OFFSET            0x0201
186 /* MARM */
187 #define KS884X_ADDR_2_OFFSET            0x0202
188 #define KS884X_ADDR_3_OFFSET            0x0203
189 /* MARH */
190 #define KS884X_ADDR_4_OFFSET            0x0204
191 #define KS884X_ADDR_5_OFFSET            0x0205
192
193 /* OBCR */
194 #define KS884X_BUS_CTRL_OFFSET          0x0210
195
196 #define BUS_SPEED_125_MHZ               0x0000
197 #define BUS_SPEED_62_5_MHZ              0x0001
198 #define BUS_SPEED_41_66_MHZ             0x0002
199 #define BUS_SPEED_25_MHZ                0x0003
200
201 /* EEPCR */
202 #define KS884X_EEPROM_CTRL_OFFSET       0x0212
203
204 #define EEPROM_CHIP_SELECT              0x0001
205 #define EEPROM_SERIAL_CLOCK             0x0002
206 #define EEPROM_DATA_OUT                 0x0004
207 #define EEPROM_DATA_IN                  0x0008
208 #define EEPROM_ACCESS_ENABLE            0x0010
209
210 /* MBIR */
211 #define KS884X_MEM_INFO_OFFSET          0x0214
212
213 #define RX_MEM_TEST_FAILED              0x0008
214 #define RX_MEM_TEST_FINISHED            0x0010
215 #define TX_MEM_TEST_FAILED              0x0800
216 #define TX_MEM_TEST_FINISHED            0x1000
217
218 /* GCR */
219 #define KS884X_GLOBAL_CTRL_OFFSET       0x0216
220 #define GLOBAL_SOFTWARE_RESET           0x0001
221
222 #define KS8841_POWER_MANAGE_OFFSET      0x0218
223
224 /* WFCR */
225 #define KS8841_WOL_CTRL_OFFSET          0x021A
226 #define KS8841_WOL_MAGIC_ENABLE         0x0080
227 #define KS8841_WOL_FRAME3_ENABLE        0x0008
228 #define KS8841_WOL_FRAME2_ENABLE        0x0004
229 #define KS8841_WOL_FRAME1_ENABLE        0x0002
230 #define KS8841_WOL_FRAME0_ENABLE        0x0001
231
232 /* WF0 */
233 #define KS8841_WOL_FRAME_CRC_OFFSET     0x0220
234 #define KS8841_WOL_FRAME_BYTE0_OFFSET   0x0224
235 #define KS8841_WOL_FRAME_BYTE2_OFFSET   0x0228
236
237 /* IACR */
238 #define KS884X_IACR_P                   0x04A0
239 #define KS884X_IACR_OFFSET              KS884X_IACR_P
240
241 /* IADR1 */
242 #define KS884X_IADR1_P                  0x04A2
243 #define KS884X_IADR2_P                  0x04A4
244 #define KS884X_IADR3_P                  0x04A6
245 #define KS884X_IADR4_P                  0x04A8
246 #define KS884X_IADR5_P                  0x04AA
247
248 #define KS884X_ACC_CTRL_SEL_OFFSET      KS884X_IACR_P
249 #define KS884X_ACC_CTRL_INDEX_OFFSET    (KS884X_ACC_CTRL_SEL_OFFSET + 1)
250
251 #define KS884X_ACC_DATA_0_OFFSET        KS884X_IADR4_P
252 #define KS884X_ACC_DATA_1_OFFSET        (KS884X_ACC_DATA_0_OFFSET + 1)
253 #define KS884X_ACC_DATA_2_OFFSET        KS884X_IADR5_P
254 #define KS884X_ACC_DATA_3_OFFSET        (KS884X_ACC_DATA_2_OFFSET + 1)
255 #define KS884X_ACC_DATA_4_OFFSET        KS884X_IADR2_P
256 #define KS884X_ACC_DATA_5_OFFSET        (KS884X_ACC_DATA_4_OFFSET + 1)
257 #define KS884X_ACC_DATA_6_OFFSET        KS884X_IADR3_P
258 #define KS884X_ACC_DATA_7_OFFSET        (KS884X_ACC_DATA_6_OFFSET + 1)
259 #define KS884X_ACC_DATA_8_OFFSET        KS884X_IADR1_P
260
261 /* P1MBCR */
262 #define KS884X_P1MBCR_P                 0x04D0
263 #define KS884X_P1MBSR_P                 0x04D2
264 #define KS884X_PHY1ILR_P                0x04D4
265 #define KS884X_PHY1IHR_P                0x04D6
266 #define KS884X_P1ANAR_P                 0x04D8
267 #define KS884X_P1ANLPR_P                0x04DA
268
269 /* P2MBCR */
270 #define KS884X_P2MBCR_P                 0x04E0
271 #define KS884X_P2MBSR_P                 0x04E2
272 #define KS884X_PHY2ILR_P                0x04E4
273 #define KS884X_PHY2IHR_P                0x04E6
274 #define KS884X_P2ANAR_P                 0x04E8
275 #define KS884X_P2ANLPR_P                0x04EA
276
277 #define KS884X_PHY_1_CTRL_OFFSET        KS884X_P1MBCR_P
278 #define PHY_CTRL_INTERVAL               (KS884X_P2MBCR_P - KS884X_P1MBCR_P)
279
280 #define KS884X_PHY_CTRL_OFFSET          0x00
281
282 /* Mode Control Register */
283 #define PHY_REG_CTRL                    0
284
285 #define PHY_RESET                       0x8000
286 #define PHY_LOOPBACK                    0x4000
287 #define PHY_SPEED_100MBIT               0x2000
288 #define PHY_AUTO_NEG_ENABLE             0x1000
289 #define PHY_POWER_DOWN                  0x0800
290 #define PHY_MII_DISABLE                 0x0400
291 #define PHY_AUTO_NEG_RESTART            0x0200
292 #define PHY_FULL_DUPLEX                 0x0100
293 #define PHY_COLLISION_TEST              0x0080
294 #define PHY_HP_MDIX                     0x0020
295 #define PHY_FORCE_MDIX                  0x0010
296 #define PHY_AUTO_MDIX_DISABLE           0x0008
297 #define PHY_REMOTE_FAULT_DISABLE        0x0004
298 #define PHY_TRANSMIT_DISABLE            0x0002
299 #define PHY_LED_DISABLE                 0x0001
300
301 #define KS884X_PHY_STATUS_OFFSET        0x02
302
303 /* Mode Status Register */
304 #define PHY_REG_STATUS                  1
305
306 #define PHY_100BT4_CAPABLE              0x8000
307 #define PHY_100BTX_FD_CAPABLE           0x4000
308 #define PHY_100BTX_CAPABLE              0x2000
309 #define PHY_10BT_FD_CAPABLE             0x1000
310 #define PHY_10BT_CAPABLE                0x0800
311 #define PHY_MII_SUPPRESS_CAPABLE        0x0040
312 #define PHY_AUTO_NEG_ACKNOWLEDGE        0x0020
313 #define PHY_REMOTE_FAULT                0x0010
314 #define PHY_AUTO_NEG_CAPABLE            0x0008
315 #define PHY_LINK_STATUS                 0x0004
316 #define PHY_JABBER_DETECT               0x0002
317 #define PHY_EXTENDED_CAPABILITY         0x0001
318
319 #define KS884X_PHY_ID_1_OFFSET          0x04
320 #define KS884X_PHY_ID_2_OFFSET          0x06
321
322 /* PHY Identifier Registers */
323 #define PHY_REG_ID_1                    2
324 #define PHY_REG_ID_2                    3
325
326 #define KS884X_PHY_AUTO_NEG_OFFSET      0x08
327
328 /* Auto-Negotiation Advertisement Register */
329 #define PHY_REG_AUTO_NEGOTIATION        4
330
331 #define PHY_AUTO_NEG_NEXT_PAGE          0x8000
332 #define PHY_AUTO_NEG_REMOTE_FAULT       0x2000
333 /* Not supported. */
334 #define PHY_AUTO_NEG_ASYM_PAUSE         0x0800
335 #define PHY_AUTO_NEG_SYM_PAUSE          0x0400
336 #define PHY_AUTO_NEG_100BT4             0x0200
337 #define PHY_AUTO_NEG_100BTX_FD          0x0100
338 #define PHY_AUTO_NEG_100BTX             0x0080
339 #define PHY_AUTO_NEG_10BT_FD            0x0040
340 #define PHY_AUTO_NEG_10BT               0x0020
341 #define PHY_AUTO_NEG_SELECTOR           0x001F
342 #define PHY_AUTO_NEG_802_3              0x0001
343
344 #define PHY_AUTO_NEG_PAUSE  (PHY_AUTO_NEG_SYM_PAUSE | PHY_AUTO_NEG_ASYM_PAUSE)
345
346 #define KS884X_PHY_REMOTE_CAP_OFFSET    0x0A
347
348 /* Auto-Negotiation Link Partner Ability Register */
349 #define PHY_REG_REMOTE_CAPABILITY       5
350
351 #define PHY_REMOTE_NEXT_PAGE            0x8000
352 #define PHY_REMOTE_ACKNOWLEDGE          0x4000
353 #define PHY_REMOTE_REMOTE_FAULT         0x2000
354 #define PHY_REMOTE_SYM_PAUSE            0x0400
355 #define PHY_REMOTE_100BTX_FD            0x0100
356 #define PHY_REMOTE_100BTX               0x0080
357 #define PHY_REMOTE_10BT_FD              0x0040
358 #define PHY_REMOTE_10BT                 0x0020
359
360 /* P1VCT */
361 #define KS884X_P1VCT_P                  0x04F0
362 #define KS884X_P1PHYCTRL_P              0x04F2
363
364 /* P2VCT */
365 #define KS884X_P2VCT_P                  0x04F4
366 #define KS884X_P2PHYCTRL_P              0x04F6
367
368 #define KS884X_PHY_SPECIAL_OFFSET       KS884X_P1VCT_P
369 #define PHY_SPECIAL_INTERVAL            (KS884X_P2VCT_P - KS884X_P1VCT_P)
370
371 #define KS884X_PHY_LINK_MD_OFFSET       0x00
372
373 #define PHY_START_CABLE_DIAG            0x8000
374 #define PHY_CABLE_DIAG_RESULT           0x6000
375 #define PHY_CABLE_STAT_NORMAL           0x0000
376 #define PHY_CABLE_STAT_OPEN             0x2000
377 #define PHY_CABLE_STAT_SHORT            0x4000
378 #define PHY_CABLE_STAT_FAILED           0x6000
379 #define PHY_CABLE_10M_SHORT             0x1000
380 #define PHY_CABLE_FAULT_COUNTER         0x01FF
381
382 #define KS884X_PHY_PHY_CTRL_OFFSET      0x02
383
384 #define PHY_STAT_REVERSED_POLARITY      0x0020
385 #define PHY_STAT_MDIX                   0x0010
386 #define PHY_FORCE_LINK                  0x0008
387 #define PHY_POWER_SAVING_DISABLE        0x0004
388 #define PHY_REMOTE_LOOPBACK             0x0002
389
390 /* SIDER */
391 #define KS884X_SIDER_P                  0x0400
392 #define KS884X_CHIP_ID_OFFSET           KS884X_SIDER_P
393 #define KS884X_FAMILY_ID_OFFSET         (KS884X_CHIP_ID_OFFSET + 1)
394
395 #define REG_FAMILY_ID                   0x88
396
397 #define REG_CHIP_ID_41                  0x8810
398 #define REG_CHIP_ID_42                  0x8800
399
400 #define KS884X_CHIP_ID_MASK_41          0xFF10
401 #define KS884X_CHIP_ID_MASK             0xFFF0
402 #define KS884X_CHIP_ID_SHIFT            4
403 #define KS884X_REVISION_MASK            0x000E
404 #define KS884X_REVISION_SHIFT           1
405 #define KS8842_START                    0x0001
406
407 #define CHIP_IP_41_M                    0x8810
408 #define CHIP_IP_42_M                    0x8800
409 #define CHIP_IP_61_M                    0x8890
410 #define CHIP_IP_62_M                    0x8880
411
412 #define CHIP_IP_41_P                    0x8850
413 #define CHIP_IP_42_P                    0x8840
414 #define CHIP_IP_61_P                    0x88D0
415 #define CHIP_IP_62_P                    0x88C0
416
417 /* SGCR1 */
418 #define KS8842_SGCR1_P                  0x0402
419 #define KS8842_SWITCH_CTRL_1_OFFSET     KS8842_SGCR1_P
420
421 #define SWITCH_PASS_ALL                 0x8000
422 #define SWITCH_TX_FLOW_CTRL             0x2000
423 #define SWITCH_RX_FLOW_CTRL             0x1000
424 #define SWITCH_CHECK_LENGTH             0x0800
425 #define SWITCH_AGING_ENABLE             0x0400
426 #define SWITCH_FAST_AGING               0x0200
427 #define SWITCH_AGGR_BACKOFF             0x0100
428 #define SWITCH_PASS_PAUSE               0x0008
429 #define SWITCH_LINK_AUTO_AGING          0x0001
430
431 /* SGCR2 */
432 #define KS8842_SGCR2_P                  0x0404
433 #define KS8842_SWITCH_CTRL_2_OFFSET     KS8842_SGCR2_P
434
435 #define SWITCH_VLAN_ENABLE              0x8000
436 #define SWITCH_IGMP_SNOOP               0x4000
437 #define IPV6_MLD_SNOOP_ENABLE           0x2000
438 #define IPV6_MLD_SNOOP_OPTION           0x1000
439 #define PRIORITY_SCHEME_SELECT          0x0800
440 #define SWITCH_MIRROR_RX_TX             0x0100
441 #define UNICAST_VLAN_BOUNDARY           0x0080
442 #define MULTICAST_STORM_DISABLE         0x0040
443 #define SWITCH_BACK_PRESSURE            0x0020
444 #define FAIR_FLOW_CTRL                  0x0010
445 #define NO_EXC_COLLISION_DROP           0x0008
446 #define SWITCH_HUGE_PACKET              0x0004
447 #define SWITCH_LEGAL_PACKET             0x0002
448 #define SWITCH_BUF_RESERVE              0x0001
449
450 /* SGCR3 */
451 #define KS8842_SGCR3_P                  0x0406
452 #define KS8842_SWITCH_CTRL_3_OFFSET     KS8842_SGCR3_P
453
454 #define BROADCAST_STORM_RATE_LO         0xFF00
455 #define SWITCH_REPEATER                 0x0080
456 #define SWITCH_HALF_DUPLEX              0x0040
457 #define SWITCH_FLOW_CTRL                0x0020
458 #define SWITCH_10_MBIT                  0x0010
459 #define SWITCH_REPLACE_NULL_VID         0x0008
460 #define BROADCAST_STORM_RATE_HI         0x0007
461
462 #define BROADCAST_STORM_RATE            0x07FF
463
464 /* SGCR4 */
465 #define KS8842_SGCR4_P                  0x0408
466
467 /* SGCR5 */
468 #define KS8842_SGCR5_P                  0x040A
469 #define KS8842_SWITCH_CTRL_5_OFFSET     KS8842_SGCR5_P
470
471 #define LED_MODE                        0x8200
472 #define LED_SPEED_DUPLEX_ACT            0x0000
473 #define LED_SPEED_DUPLEX_LINK_ACT       0x8000
474 #define LED_DUPLEX_10_100               0x0200
475
476 /* SGCR6 */
477 #define KS8842_SGCR6_P                  0x0410
478 #define KS8842_SWITCH_CTRL_6_OFFSET     KS8842_SGCR6_P
479
480 #define KS8842_PRIORITY_MASK            3
481 #define KS8842_PRIORITY_SHIFT           2
482
483 /* SGCR7 */
484 #define KS8842_SGCR7_P                  0x0412
485 #define KS8842_SWITCH_CTRL_7_OFFSET     KS8842_SGCR7_P
486
487 #define SWITCH_UNK_DEF_PORT_ENABLE      0x0008
488 #define SWITCH_UNK_DEF_PORT_3           0x0004
489 #define SWITCH_UNK_DEF_PORT_2           0x0002
490 #define SWITCH_UNK_DEF_PORT_1           0x0001
491
492 /* MACAR1 */
493 #define KS8842_MACAR1_P                 0x0470
494 #define KS8842_MACAR2_P                 0x0472
495 #define KS8842_MACAR3_P                 0x0474
496 #define KS8842_MAC_ADDR_1_OFFSET        KS8842_MACAR1_P
497 #define KS8842_MAC_ADDR_0_OFFSET        (KS8842_MAC_ADDR_1_OFFSET + 1)
498 #define KS8842_MAC_ADDR_3_OFFSET        KS8842_MACAR2_P
499 #define KS8842_MAC_ADDR_2_OFFSET        (KS8842_MAC_ADDR_3_OFFSET + 1)
500 #define KS8842_MAC_ADDR_5_OFFSET        KS8842_MACAR3_P
501 #define KS8842_MAC_ADDR_4_OFFSET        (KS8842_MAC_ADDR_5_OFFSET + 1)
502
503 /* TOSR1 */
504 #define KS8842_TOSR1_P                  0x0480
505 #define KS8842_TOSR2_P                  0x0482
506 #define KS8842_TOSR3_P                  0x0484
507 #define KS8842_TOSR4_P                  0x0486
508 #define KS8842_TOSR5_P                  0x0488
509 #define KS8842_TOSR6_P                  0x048A
510 #define KS8842_TOSR7_P                  0x0490
511 #define KS8842_TOSR8_P                  0x0492
512 #define KS8842_TOS_1_OFFSET             KS8842_TOSR1_P
513 #define KS8842_TOS_2_OFFSET             KS8842_TOSR2_P
514 #define KS8842_TOS_3_OFFSET             KS8842_TOSR3_P
515 #define KS8842_TOS_4_OFFSET             KS8842_TOSR4_P
516 #define KS8842_TOS_5_OFFSET             KS8842_TOSR5_P
517 #define KS8842_TOS_6_OFFSET             KS8842_TOSR6_P
518
519 #define KS8842_TOS_7_OFFSET             KS8842_TOSR7_P
520 #define KS8842_TOS_8_OFFSET             KS8842_TOSR8_P
521
522 /* P1CR1 */
523 #define KS8842_P1CR1_P                  0x0500
524 #define KS8842_P1CR2_P                  0x0502
525 #define KS8842_P1VIDR_P                 0x0504
526 #define KS8842_P1CR3_P                  0x0506
527 #define KS8842_P1IRCR_P                 0x0508
528 #define KS8842_P1ERCR_P                 0x050A
529 #define KS884X_P1SCSLMD_P               0x0510
530 #define KS884X_P1CR4_P                  0x0512
531 #define KS884X_P1SR_P                   0x0514
532
533 /* P2CR1 */
534 #define KS8842_P2CR1_P                  0x0520
535 #define KS8842_P2CR2_P                  0x0522
536 #define KS8842_P2VIDR_P                 0x0524
537 #define KS8842_P2CR3_P                  0x0526
538 #define KS8842_P2IRCR_P                 0x0528
539 #define KS8842_P2ERCR_P                 0x052A
540 #define KS884X_P2SCSLMD_P               0x0530
541 #define KS884X_P2CR4_P                  0x0532
542 #define KS884X_P2SR_P                   0x0534
543
544 /* P3CR1 */
545 #define KS8842_P3CR1_P                  0x0540
546 #define KS8842_P3CR2_P                  0x0542
547 #define KS8842_P3VIDR_P                 0x0544
548 #define KS8842_P3CR3_P                  0x0546
549 #define KS8842_P3IRCR_P                 0x0548
550 #define KS8842_P3ERCR_P                 0x054A
551
552 #define KS8842_PORT_1_CTRL_1            KS8842_P1CR1_P
553 #define KS8842_PORT_2_CTRL_1            KS8842_P2CR1_P
554 #define KS8842_PORT_3_CTRL_1            KS8842_P3CR1_P
555
556 #define PORT_CTRL_ADDR(port, addr)              \
557         (addr = KS8842_PORT_1_CTRL_1 + (port) * \
558                 (KS8842_PORT_2_CTRL_1 - KS8842_PORT_1_CTRL_1))
559
560 #define KS8842_PORT_CTRL_1_OFFSET       0x00
561
562 #define PORT_BROADCAST_STORM            0x0080
563 #define PORT_DIFFSERV_ENABLE            0x0040
564 #define PORT_802_1P_ENABLE              0x0020
565 #define PORT_BASED_PRIORITY_MASK        0x0018
566 #define PORT_BASED_PRIORITY_BASE        0x0003
567 #define PORT_BASED_PRIORITY_SHIFT       3
568 #define PORT_BASED_PRIORITY_0           0x0000
569 #define PORT_BASED_PRIORITY_1           0x0008
570 #define PORT_BASED_PRIORITY_2           0x0010
571 #define PORT_BASED_PRIORITY_3           0x0018
572 #define PORT_INSERT_TAG                 0x0004
573 #define PORT_REMOVE_TAG                 0x0002
574 #define PORT_PRIO_QUEUE_ENABLE          0x0001
575
576 #define KS8842_PORT_CTRL_2_OFFSET       0x02
577
578 #define PORT_INGRESS_VLAN_FILTER        0x4000
579 #define PORT_DISCARD_NON_VID            0x2000
580 #define PORT_FORCE_FLOW_CTRL            0x1000
581 #define PORT_BACK_PRESSURE              0x0800
582 #define PORT_TX_ENABLE                  0x0400
583 #define PORT_RX_ENABLE                  0x0200
584 #define PORT_LEARN_DISABLE              0x0100
585 #define PORT_MIRROR_SNIFFER             0x0080
586 #define PORT_MIRROR_RX                  0x0040
587 #define PORT_MIRROR_TX                  0x0020
588 #define PORT_USER_PRIORITY_CEILING      0x0008
589 #define PORT_VLAN_MEMBERSHIP            0x0007
590
591 #define KS8842_PORT_CTRL_VID_OFFSET     0x04
592
593 #define PORT_DEFAULT_VID                0x0001
594
595 #define KS8842_PORT_CTRL_3_OFFSET       0x06
596
597 #define PORT_INGRESS_LIMIT_MODE         0x000C
598 #define PORT_INGRESS_ALL                0x0000
599 #define PORT_INGRESS_UNICAST            0x0004
600 #define PORT_INGRESS_MULTICAST          0x0008
601 #define PORT_INGRESS_BROADCAST          0x000C
602 #define PORT_COUNT_IFG                  0x0002
603 #define PORT_COUNT_PREAMBLE             0x0001
604
605 #define KS8842_PORT_IN_RATE_OFFSET      0x08
606 #define KS8842_PORT_OUT_RATE_OFFSET     0x0A
607
608 #define PORT_PRIORITY_RATE              0x0F
609 #define PORT_PRIORITY_RATE_SHIFT        4
610
611 #define KS884X_PORT_LINK_MD             0x10
612
613 #define PORT_CABLE_10M_SHORT            0x8000
614 #define PORT_CABLE_DIAG_RESULT          0x6000
615 #define PORT_CABLE_STAT_NORMAL          0x0000
616 #define PORT_CABLE_STAT_OPEN            0x2000
617 #define PORT_CABLE_STAT_SHORT           0x4000
618 #define PORT_CABLE_STAT_FAILED          0x6000
619 #define PORT_START_CABLE_DIAG           0x1000
620 #define PORT_FORCE_LINK                 0x0800
621 #define PORT_POWER_SAVING_DISABLE       0x0400
622 #define PORT_PHY_REMOTE_LOOPBACK        0x0200
623 #define PORT_CABLE_FAULT_COUNTER        0x01FF
624
625 #define KS884X_PORT_CTRL_4_OFFSET       0x12
626
627 #define PORT_LED_OFF                    0x8000
628 #define PORT_TX_DISABLE                 0x4000
629 #define PORT_AUTO_NEG_RESTART           0x2000
630 #define PORT_REMOTE_FAULT_DISABLE       0x1000
631 #define PORT_POWER_DOWN                 0x0800
632 #define PORT_AUTO_MDIX_DISABLE          0x0400
633 #define PORT_FORCE_MDIX                 0x0200
634 #define PORT_LOOPBACK                   0x0100
635 #define PORT_AUTO_NEG_ENABLE            0x0080
636 #define PORT_FORCE_100_MBIT             0x0040
637 #define PORT_FORCE_FULL_DUPLEX          0x0020
638 #define PORT_AUTO_NEG_SYM_PAUSE         0x0010
639 #define PORT_AUTO_NEG_100BTX_FD         0x0008
640 #define PORT_AUTO_NEG_100BTX            0x0004
641 #define PORT_AUTO_NEG_10BT_FD           0x0002
642 #define PORT_AUTO_NEG_10BT              0x0001
643
644 #define KS884X_PORT_STATUS_OFFSET       0x14
645
646 #define PORT_HP_MDIX                    0x8000
647 #define PORT_REVERSED_POLARITY          0x2000
648 #define PORT_RX_FLOW_CTRL               0x0800
649 #define PORT_TX_FLOW_CTRL               0x1000
650 #define PORT_STATUS_SPEED_100MBIT       0x0400
651 #define PORT_STATUS_FULL_DUPLEX         0x0200
652 #define PORT_REMOTE_FAULT               0x0100
653 #define PORT_MDIX_STATUS                0x0080
654 #define PORT_AUTO_NEG_COMPLETE          0x0040
655 #define PORT_STATUS_LINK_GOOD           0x0020
656 #define PORT_REMOTE_SYM_PAUSE           0x0010
657 #define PORT_REMOTE_100BTX_FD           0x0008
658 #define PORT_REMOTE_100BTX              0x0004
659 #define PORT_REMOTE_10BT_FD             0x0002
660 #define PORT_REMOTE_10BT                0x0001
661
662 /*
663 #define STATIC_MAC_TABLE_ADDR           00-0000FFFF-FFFFFFFF
664 #define STATIC_MAC_TABLE_FWD_PORTS      00-00070000-00000000
665 #define STATIC_MAC_TABLE_VALID          00-00080000-00000000
666 #define STATIC_MAC_TABLE_OVERRIDE       00-00100000-00000000
667 #define STATIC_MAC_TABLE_USE_FID        00-00200000-00000000
668 #define STATIC_MAC_TABLE_FID            00-03C00000-00000000
669 */
670
671 #define STATIC_MAC_TABLE_ADDR           0x0000FFFF
672 #define STATIC_MAC_TABLE_FWD_PORTS      0x00070000
673 #define STATIC_MAC_TABLE_VALID          0x00080000
674 #define STATIC_MAC_TABLE_OVERRIDE       0x00100000
675 #define STATIC_MAC_TABLE_USE_FID        0x00200000
676 #define STATIC_MAC_TABLE_FID            0x03C00000
677
678 #define STATIC_MAC_FWD_PORTS_SHIFT      16
679 #define STATIC_MAC_FID_SHIFT            22
680
681 /*
682 #define VLAN_TABLE_VID                  00-00000000-00000FFF
683 #define VLAN_TABLE_FID                  00-00000000-0000F000
684 #define VLAN_TABLE_MEMBERSHIP           00-00000000-00070000
685 #define VLAN_TABLE_VALID                00-00000000-00080000
686 */
687
688 #define VLAN_TABLE_VID                  0x00000FFF
689 #define VLAN_TABLE_FID                  0x0000F000
690 #define VLAN_TABLE_MEMBERSHIP           0x00070000
691 #define VLAN_TABLE_VALID                0x00080000
692
693 #define VLAN_TABLE_FID_SHIFT            12
694 #define VLAN_TABLE_MEMBERSHIP_SHIFT     16
695
696 /*
697 #define DYNAMIC_MAC_TABLE_ADDR          00-0000FFFF-FFFFFFFF
698 #define DYNAMIC_MAC_TABLE_FID           00-000F0000-00000000
699 #define DYNAMIC_MAC_TABLE_SRC_PORT      00-00300000-00000000
700 #define DYNAMIC_MAC_TABLE_TIMESTAMP     00-00C00000-00000000
701 #define DYNAMIC_MAC_TABLE_ENTRIES       03-FF000000-00000000
702 #define DYNAMIC_MAC_TABLE_MAC_EMPTY     04-00000000-00000000
703 #define DYNAMIC_MAC_TABLE_RESERVED      78-00000000-00000000
704 #define DYNAMIC_MAC_TABLE_NOT_READY     80-00000000-00000000
705 */
706
707 #define DYNAMIC_MAC_TABLE_ADDR          0x0000FFFF
708 #define DYNAMIC_MAC_TABLE_FID           0x000F0000
709 #define DYNAMIC_MAC_TABLE_SRC_PORT      0x00300000
710 #define DYNAMIC_MAC_TABLE_TIMESTAMP     0x00C00000
711 #define DYNAMIC_MAC_TABLE_ENTRIES       0xFF000000
712
713 #define DYNAMIC_MAC_TABLE_ENTRIES_H     0x03
714 #define DYNAMIC_MAC_TABLE_MAC_EMPTY     0x04
715 #define DYNAMIC_MAC_TABLE_RESERVED      0x78
716 #define DYNAMIC_MAC_TABLE_NOT_READY     0x80
717
718 #define DYNAMIC_MAC_FID_SHIFT           16
719 #define DYNAMIC_MAC_SRC_PORT_SHIFT      20
720 #define DYNAMIC_MAC_TIMESTAMP_SHIFT     22
721 #define DYNAMIC_MAC_ENTRIES_SHIFT       24
722 #define DYNAMIC_MAC_ENTRIES_H_SHIFT     8
723
724 /*
725 #define MIB_COUNTER_VALUE               00-00000000-3FFFFFFF
726 #define MIB_COUNTER_VALID               00-00000000-40000000
727 #define MIB_COUNTER_OVERFLOW            00-00000000-80000000
728 */
729
730 #define MIB_COUNTER_VALUE               0x3FFFFFFF
731 #define MIB_COUNTER_VALID               0x40000000
732 #define MIB_COUNTER_OVERFLOW            0x80000000
733
734 #define MIB_PACKET_DROPPED              0x0000FFFF
735
736 #define KS_MIB_PACKET_DROPPED_TX_0      0x100
737 #define KS_MIB_PACKET_DROPPED_TX_1      0x101
738 #define KS_MIB_PACKET_DROPPED_TX        0x102
739 #define KS_MIB_PACKET_DROPPED_RX_0      0x103
740 #define KS_MIB_PACKET_DROPPED_RX_1      0x104
741 #define KS_MIB_PACKET_DROPPED_RX        0x105
742
743 /* Change default LED mode. */
744 #define SET_DEFAULT_LED                 LED_SPEED_DUPLEX_ACT
745
746 #define MAC_ADDR_ORDER(i)               (ETH_ALEN - 1 - (i))
747
748 #define MAX_ETHERNET_BODY_SIZE          1500
749 #define ETHERNET_HEADER_SIZE            (14 + VLAN_HLEN)
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
764 enum {
765         media_connected,
766         media_disconnected
767 };
768
769 enum {
770         OID_COUNTER_UNKOWN,
771
772         OID_COUNTER_FIRST,
773
774         /* total transmit errors */
775         OID_COUNTER_XMIT_ERROR,
776
777         /* total receive errors */
778         OID_COUNTER_RCV_ERROR,
779
780         OID_COUNTER_LAST
781 };
782
783 /*
784  * Hardware descriptor definitions
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
838 struct 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
876 struct 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
886 struct 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
900 struct 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
928 union desc_stat {
929         struct ksz_desc_rx_stat rx;
930         struct ksz_desc_tx_stat tx;
931         u32 data;
932 };
933
934 union desc_buf {
935         struct ksz_desc_rx_buf rx;
936         struct ksz_desc_tx_buf tx;
937         u32 data;
938 };
939
940 /**
941  * struct ksz_hw_desc - Hardware descriptor data structure
942  * @ctrl:       Descriptor control value.
943  * @buf:        Descriptor buffer value.
944  * @addr:       Physical address of memory buffer.
945  * @next:       Pointer to next hardware descriptor.
946  */
947 struct ksz_hw_desc {
948         union desc_stat ctrl;
949         union desc_buf buf;
950         u32 addr;
951         u32 next;
952 };
953
954 /**
955  * struct ksz_sw_desc - Software descriptor data structure
956  * @ctrl:       Descriptor control value.
957  * @buf:        Descriptor buffer value.
958  * @buf_size:   Current buffers size value in hardware descriptor.
959  */
960 struct ksz_sw_desc {
961         union desc_stat ctrl;
962         union desc_buf buf;
963         u32 buf_size;
964 };
965
966 /**
967  * struct ksz_dma_buf - OS dependent DMA buffer data structure
968  * @skb:        Associated socket buffer.
969  * @dma:        Associated physical DMA address.
970  * len:         Actual len used.
971  */
972 struct ksz_dma_buf {
973         struct sk_buff *skb;
974         dma_addr_t dma;
975         int len;
976 };
977
978 /**
979  * struct ksz_desc - Descriptor structure
980  * @phw:        Hardware descriptor pointer to uncached physical memory.
981  * @sw:         Cached memory to hold hardware descriptor values for
982  *              manipulation.
983  * @dma_buf:    Operating system dependent data structure to hold physical
984  *              memory buffer allocation information.
985  */
986 struct 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  * struct ksz_desc_info - Descriptor information data structure
996  * @ring:       First descriptor in the ring.
997  * @cur:        Current descriptor being manipulated.
998  * @ring_virt:  First hardware descriptor in the ring.
999  * @ring_phys:  The physical address of the first descriptor of the ring.
1000  * @size:       Size of hardware descriptor.
1001  * @alloc:      Number of descriptors allocated.
1002  * @avail:      Number of descriptors available for use.
1003  * @last:       Index for last descriptor released to hardware.
1004  * @next:       Index for next descriptor available for use.
1005  * @mask:       Mask for index wrapping.
1006  */
1007 struct 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  * KSZ8842 switch definitions
1022  */
1023
1024 enum {
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  * struct ksz_mac_table - Static MAC table data structure
1036  * @mac_addr:   MAC address to filter.
1037  * @vid:        VID value.
1038  * @fid:        FID value.
1039  * @ports:      Port membership.
1040  * @override:   Override setting.
1041  * @use_fid:    FID use setting.
1042  * @valid:      Valid setting indicating the entry is being used.
1043  */
1044 struct ksz_mac_table {
1045         u8 mac_addr[ETH_ALEN];
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  * struct ksz_vlan_table - VLAN table data structure
1058  * @vid:        VID value.
1059  * @fid:        FID value.
1060  * @member:     Port membership.
1061  */
1062 struct 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  * struct ksz_port_mib - Port MIB data structure
1122  * @cnt_ptr:    Current pointer to MIB counter index.
1123  * @link_down:  Indication the link has just gone down.
1124  * @state:      Connection status of the port.
1125  * @mib_start:  The starting counter index.  Some ports do not start at 0.
1126  * @counter:    64-bit MIB counter value.
1127  * @dropped:    Temporary buffer to remember last read packet dropped values.
1128  *
1129  * MIB counters needs to be read periodically so that counters do not get
1130  * overflowed and give incorrect values.  A right balance is needed to
1131  * satisfy this condition and not waste too much CPU time.
1132  *
1133  * It is pointless to read MIB counters when the port is disconnected.  The
1134  * @state provides the connection status so that MIB counters are read only
1135  * when the port is connected.  The @link_down indicates the port is just
1136  * disconnected so that all MIB counters are read one last time to update the
1137  * information.
1138  */
1139 struct 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  * struct ksz_port_cfg - Port configuration data structure
1151  * @vid:        VID value.
1152  * @member:     Port membership.
1153  * @port_prio:  Port priority.
1154  * @rx_rate:    Receive priority rate.
1155  * @tx_rate:    Transmit priority rate.
1156  * @stp_state:  Current Spanning Tree Protocol state.
1157  */
1158 struct 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  * struct ksz_switch - KSZ8842 switch data structure
1169  * @mac_table:  MAC table entries information.
1170  * @vlan_table: VLAN table entries information.
1171  * @port_cfg:   Port configuration information.
1172  * @diffserv:   DiffServ priority settings.  Possible values from 6-bit of ToS
1173  *              (bit7 ~ bit2) field.
1174  * @p_802_1p:   802.1P priority settings.  Possible values from 3-bit of 802.1p
1175  *              Tag priority field.
1176  * @br_addr:    Bridge address.  Used for STP.
1177  * @other_addr: Other MAC address.  Used for multiple network device mode.
1178  * @broad_per:  Broadcast storm percentage.
1179  * @member:     Current port membership.  Used for STP.
1180  */
1181 struct 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[ETH_ALEN];
1190         u8 other_addr[ETH_ALEN];
1191
1192         u8 broad_per;
1193         u8 member;
1194 };
1195
1196 #define TX_RATE_UNIT                    10000
1197
1198 /**
1199  * struct ksz_port_info - Port information data structure
1200  * @state:      Connection status of the port.
1201  * @tx_rate:    Transmit rate divided by 10000 to get Mbit.
1202  * @duplex:     Duplex mode.
1203  * @advertised: Advertised auto-negotiation setting.  Used to determine link.
1204  * @partner:    Auto-negotiation partner setting.  Used to determine link.
1205  * @port_id:    Port index to access actual hardware register.
1206  * @pdev:       Pointer to OS dependent network device.
1207  */
1208 struct 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 /* Hardware features and bug fixes. */
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 /* Software overrides. */
1228 #define PAUSE_FLOW_CTRL                 (1 << 0)
1229 #define FAST_AGING                      (1 << 1)
1230
1231 /**
1232  * struct ksz_hw - KSZ884X hardware data structure
1233  * @io:                 Virtual address assigned.
1234  * @ksz_switch:         Pointer to KSZ8842 switch.
1235  * @port_info:          Port information.
1236  * @port_mib:           Port MIB information.
1237  * @dev_count:          Number of network devices this hardware supports.
1238  * @dst_ports:          Destination ports in switch for transmission.
1239  * @id:                 Hardware ID.  Used for display only.
1240  * @mib_cnt:            Number of MIB counters this hardware has.
1241  * @mib_port_cnt:       Number of ports with MIB counters.
1242  * @tx_cfg:             Cached transmit control settings.
1243  * @rx_cfg:             Cached receive control settings.
1244  * @intr_mask:          Current interrupt mask.
1245  * @intr_set:           Current interrup set.
1246  * @intr_blocked:       Interrupt blocked.
1247  * @rx_desc_info:       Receive descriptor information.
1248  * @tx_desc_info:       Transmit descriptor information.
1249  * @tx_int_cnt:         Transmit interrupt count.  Used for TX optimization.
1250  * @tx_int_mask:        Transmit interrupt mask.  Used for TX optimization.
1251  * @tx_size:            Transmit data size.  Used for TX optimization.
1252  *                      The maximum is defined by MAX_TX_HELD_SIZE.
1253  * @perm_addr:          Permanent MAC address.
1254  * @override_addr:      Overridden MAC address.
1255  * @address:            Additional MAC address entries.
1256  * @addr_list_size:     Additional MAC address list size.
1257  * @mac_override:       Indication of MAC address overridden.
1258  * @promiscuous:        Counter to keep track of promiscuous mode set.
1259  * @all_multi:          Counter to keep track of all multicast mode set.
1260  * @multi_list:         Multicast address entries.
1261  * @multi_bits:         Cached multicast hash table settings.
1262  * @multi_list_size:    Multicast address list size.
1263  * @enabled:            Indication of hardware enabled.
1264  * @rx_stop:            Indication of receive process stop.
1265  * @features:           Hardware features to enable.
1266  * @overrides:          Hardware features to override.
1267  * @parent:             Pointer to parent, network device private structure.
1268  */
1269 struct 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[ETH_ALEN];
1295         u8 override_addr[ETH_ALEN];
1296         u8 address[ADDITIONAL_ENTRIES][ETH_ALEN];
1297         u8 addr_list_size;
1298         u8 mac_override;
1299         u8 promiscuous;
1300         u8 all_multi;
1301         u8 multi_list[MAX_MULTICAST_LIST][ETH_ALEN];
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
1315 enum {
1316         PHY_NO_FLOW_CTRL,
1317         PHY_FLOW_CTRL,
1318         PHY_TX_ONLY,
1319         PHY_RX_ONLY
1320 };
1321
1322 /**
1323  * struct ksz_port - Virtual port data structure
1324  * @duplex:             Duplex mode setting.  1 for half duplex, 2 for full
1325  *                      duplex, and 0 for auto, which normally results in full
1326  *                      duplex.
1327  * @speed:              Speed setting.  10 for 10 Mbit, 100 for 100 Mbit, and
1328  *                      0 for auto, which normally results in 100 Mbit.
1329  * @force_link:         Force link setting.  0 for auto-negotiation, and 1 for
1330  *                      force.
1331  * @flow_ctrl:          Flow control setting.  PHY_NO_FLOW_CTRL for no flow
1332  *                      control, and PHY_FLOW_CTRL for flow control.
1333  *                      PHY_TX_ONLY and PHY_RX_ONLY are not supported for 100
1334  *                      Mbit PHY.
1335  * @first_port:         Index of first port this port supports.
1336  * @mib_port_cnt:       Number of ports with MIB counters.
1337  * @port_cnt:           Number of ports this port supports.
1338  * @counter:            Port statistics counter.
1339  * @hw:                 Pointer to hardware structure.
1340  * @linked:             Pointer to port information linked to this port.
1341  */
1342 struct 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  * struct ksz_timer_info - Timer information data structure
1359  * @timer:      Kernel timer.
1360  * @cnt:        Running timer counter.
1361  * @max:        Number of times to run timer; -1 for infinity.
1362  * @period:     Timer period in jiffies.
1363  */
1364 struct ksz_timer_info {
1365         struct timer_list timer;
1366         int cnt;
1367         int max;
1368         int period;
1369 };
1370
1371 /**
1372  * struct ksz_shared_mem - OS dependent shared memory data structure
1373  * @dma_addr:   Physical DMA address allocated.
1374  * @alloc_size: Allocation size.
1375  * @phys:       Actual physical address used.
1376  * @alloc_virt: Virtual address allocated.
1377  * @virt:       Actual virtual address used.
1378  */
1379 struct 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  * struct ksz_counter_info - OS dependent counter information data structure
1389  * @counter:    Wait queue to wakeup after counters are read.
1390  * @time:       Next time in jiffies to read counter.
1391  * @read:       Indication of counters read in full or not.
1392  */
1393 struct ksz_counter_info {
1394         wait_queue_head_t counter;
1395         unsigned long time;
1396         int read;
1397 };
1398
1399 /**
1400  * struct dev_info - Network device information data structure
1401  * @dev:                Pointer to network device.
1402  * @pdev:               Pointer to PCI device.
1403  * @hw:                 Hardware structure.
1404  * @desc_pool:          Physical memory used for descriptor pool.
1405  * @hwlock:             Spinlock to prevent hardware from accessing.
1406  * @lock:               Mutex lock to prevent device from accessing.
1407  * @dev_rcv:            Receive process function used.
1408  * @last_skb:           Socket buffer allocated for descriptor rx fragments.
1409  * @skb_index:          Buffer index for receiving fragments.
1410  * @skb_len:            Buffer length for receiving fragments.
1411  * @mib_read:           Workqueue to read MIB counters.
1412  * @mib_timer_info:     Timer to read MIB counters.
1413  * @counter:            Used for MIB reading.
1414  * @mtu:                Current MTU used.  The default is REGULAR_RX_BUF_SIZE;
1415  *                      the maximum is MAX_RX_BUF_SIZE.
1416  * @opened:             Counter to keep track of device open.
1417  * @rx_tasklet:         Receive processing tasklet.
1418  * @tx_tasklet:         Transmit processing tasklet.
1419  * @wol_enable:         Wake-on-LAN enable set by ethtool.
1420  * @wol_support:        Wake-on-LAN support used by ethtool.
1421  * @pme_wait:           Used for KSZ8841 power management.
1422  */
1423 struct 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  * struct dev_priv - Network device private data structure
1456  * @adapter:            Adapter device information.
1457  * @port:               Port information.
1458  * @monitor_time_info:  Timer to monitor ports.
1459  * @proc_sem:           Semaphore for proc accessing.
1460  * @id:                 Device ID.
1461  * @mii_if:             MII interface information.
1462  * @advertising:        Temporary variable to store advertised settings.
1463  * @msg_enable:         The message flags controlling driver output.
1464  * @media_state:        The connection status of the device.
1465  * @multicast:          The all multicast state of the device.
1466  * @promiscuous:        The promiscuous state of the device.
1467  */
1468 struct 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
1490 static char version[] =
1491         "Micrel " DEVICE_NAME " " DRV_VERSION " (" DRV_RELDATE ")";
1492
1493 static u8 DEFAULT_MAC_ADDRESS[] = { 0x00, 0x10, 0xA1, 0x88, 0x42, 0x01 };
1494
1495 /*
1496  * Interrupt processing primary routines
1497  */
1498
1499 static inline void hw_ack_intr(struct ksz_hw *hw, uint interrupt)
1500 {
1501         writel(interrupt, hw->io + KS884X_INTERRUPTS_STATUS);
1502 }
1503
1504 static 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
1511 static 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
1517 static 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
1523 static inline void hw_dis_intr_bit(struct ksz_hw *hw, uint bit)
1524 {
1525         hw->intr_mask &= ~(bit);
1526 }
1527
1528 static 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  * hw_turn_on_intr - turn on specified interrupts
1540  * @hw:         The hardware instance.
1541  * @bit:        The interrupt bits to be on.
1542  *
1543  * This routine turns on the specified interrupts in the interrupt mask so that
1544  * those interrupts will be enabled.
1545  */
1546 static 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
1554 static 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
1563 static 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
1569 static inline void hw_restore_intr(struct ksz_hw *hw, uint interrupt)
1570 {
1571         if (interrupt)
1572                 hw_ena_intr(hw);
1573 }
1574
1575 /**
1576  * hw_block_intr - block hardware interrupts
1577  *
1578  * This function blocks all interrupts of the hardware and returns the current
1579  * interrupt enable mask so that interrupts can be restored later.
1580  *
1581  * Return the current interrupt enable mask.
1582  */
1583 static 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  * Hardware descriptor routines
1596  */
1597
1598 static 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
1604 static 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
1614 static 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
1623 static inline void set_rx_buf(struct ksz_desc *desc, u32 addr)
1624 {
1625         desc->phw->addr = cpu_to_le32(addr);
1626 }
1627
1628 static inline void set_rx_len(struct ksz_desc *desc, u32 len)
1629 {
1630         desc->sw.buf.rx.buf_size = len;
1631 }
1632
1633 static 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
1643 static inline void set_tx_buf(struct ksz_desc *desc, u32 addr)
1644 {
1645         desc->phw->addr = cpu_to_le32(addr);
1646 }
1647
1648 static inline void set_tx_len(struct ksz_desc *desc, u32 len)
1649 {
1650         desc->sw.buf.tx.buf_size = len;
1651 }
1652
1653 /* Switch functions */
1654
1655 #define TABLE_READ                      0x10
1656 #define TABLE_SEL_SHIFT                 2
1657
1658 #define HW_DELAY(hw, reg)                       \
1659         do {                                    \
1660                 readw(hw->io + reg);            \
1661         } while (0)
1662
1663 /**
1664  * sw_r_table - read 4 bytes of data from switch table
1665  * @hw:         The hardware instance.
1666  * @table:      The table selector.
1667  * @addr:       The address of the table entry.
1668  * @data:       Buffer to store the read data.
1669  *
1670  * This routine reads 4 bytes of data from the table of the switch.
1671  * Hardware interrupts are disabled to minimize corruption of read data.
1672  */
1673 static void sw_r_table(struct ksz_hw *hw, int table, u16 addr, u32 *data)
1674 {
1675         u16 ctrl_addr;
1676         uint interrupt;
1677
1678         ctrl_addr = (((table << TABLE_SEL_SHIFT) | TABLE_READ) << 8) | addr;
1679
1680         interrupt = hw_block_intr(hw);
1681
1682         writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1683         HW_DELAY(hw, KS884X_IACR_OFFSET);
1684         *data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1685
1686         hw_restore_intr(hw, interrupt);
1687 }
1688
1689 /**
1690  * sw_w_table_64 - write 8 bytes of data to the switch table
1691  * @hw:         The hardware instance.
1692  * @table:      The table selector.
1693  * @addr:       The address of the table entry.
1694  * @data_hi:    The high part of data to be written (bit63 ~ bit32).
1695  * @data_lo:    The low part of data to be written (bit31 ~ bit0).
1696  *
1697  * This routine writes 8 bytes of data to the table of the switch.
1698  * Hardware interrupts are disabled to minimize corruption of written data.
1699  */
1700 static void sw_w_table_64(struct ksz_hw *hw, int table, u16 addr, u32 data_hi,
1701         u32 data_lo)
1702 {
1703         u16 ctrl_addr;
1704         uint interrupt;
1705
1706         ctrl_addr = ((table << TABLE_SEL_SHIFT) << 8) | addr;
1707
1708         interrupt = hw_block_intr(hw);
1709
1710         writel(data_hi, hw->io + KS884X_ACC_DATA_4_OFFSET);
1711         writel(data_lo, hw->io + KS884X_ACC_DATA_0_OFFSET);
1712
1713         writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1714         HW_DELAY(hw, KS884X_IACR_OFFSET);
1715
1716         hw_restore_intr(hw, interrupt);
1717 }
1718
1719 /**
1720  * sw_w_sta_mac_table - write to the static MAC table
1721  * @hw:         The hardware instance.
1722  * @addr:       The address of the table entry.
1723  * @mac_addr:   The MAC address.
1724  * @ports:      The port members.
1725  * @override:   The flag to override the port receive/transmit settings.
1726  * @valid:      The flag to indicate entry is valid.
1727  * @use_fid:    The flag to indicate the FID is valid.
1728  * @fid:        The FID value.
1729  *
1730  * This routine writes an entry of the static MAC table of the switch.  It
1731  * calls sw_w_table_64() to write the data.
1732  */
1733 static void sw_w_sta_mac_table(struct ksz_hw *hw, u16 addr, u8 *mac_addr,
1734         u8 ports, int override, int valid, int use_fid, u8 fid)
1735 {
1736         u32 data_hi;
1737         u32 data_lo;
1738
1739         data_lo = ((u32) mac_addr[2] << 24) |
1740                 ((u32) mac_addr[3] << 16) |
1741                 ((u32) mac_addr[4] << 8) | mac_addr[5];
1742         data_hi = ((u32) mac_addr[0] << 8) | mac_addr[1];
1743         data_hi |= (u32) ports << STATIC_MAC_FWD_PORTS_SHIFT;
1744
1745         if (override)
1746                 data_hi |= STATIC_MAC_TABLE_OVERRIDE;
1747         if (use_fid) {
1748                 data_hi |= STATIC_MAC_TABLE_USE_FID;
1749                 data_hi |= (u32) fid << STATIC_MAC_FID_SHIFT;
1750         }
1751         if (valid)
1752                 data_hi |= STATIC_MAC_TABLE_VALID;
1753
1754         sw_w_table_64(hw, TABLE_STATIC_MAC, addr, data_hi, data_lo);
1755 }
1756
1757 /**
1758  * sw_r_vlan_table - read from the VLAN table
1759  * @hw:         The hardware instance.
1760  * @addr:       The address of the table entry.
1761  * @vid:        Buffer to store the VID.
1762  * @fid:        Buffer to store the VID.
1763  * @member:     Buffer to store the port membership.
1764  *
1765  * This function reads an entry of the VLAN table of the switch.  It calls
1766  * sw_r_table() to get the data.
1767  *
1768  * Return 0 if the entry is valid; otherwise -1.
1769  */
1770 static int sw_r_vlan_table(struct ksz_hw *hw, u16 addr, u16 *vid, u8 *fid,
1771         u8 *member)
1772 {
1773         u32 data;
1774
1775         sw_r_table(hw, TABLE_VLAN, addr, &data);
1776         if (data & VLAN_TABLE_VALID) {
1777                 *vid = (u16)(data & VLAN_TABLE_VID);
1778                 *fid = (u8)((data & VLAN_TABLE_FID) >> VLAN_TABLE_FID_SHIFT);
1779                 *member = (u8)((data & VLAN_TABLE_MEMBERSHIP) >>
1780                         VLAN_TABLE_MEMBERSHIP_SHIFT);
1781                 return 0;
1782         }
1783         return -1;
1784 }
1785
1786 /**
1787  * port_r_mib_cnt - read MIB counter
1788  * @hw:         The hardware instance.
1789  * @port:       The port index.
1790  * @addr:       The address of the counter.
1791  * @cnt:        Buffer to store the counter.
1792  *
1793  * This routine reads a MIB counter of the port.
1794  * Hardware interrupts are disabled to minimize corruption of read data.
1795  */
1796 static void port_r_mib_cnt(struct ksz_hw *hw, int port, u16 addr, u64 *cnt)
1797 {
1798         u32 data;
1799         u16 ctrl_addr;
1800         uint interrupt;
1801         int timeout;
1802
1803         ctrl_addr = addr + PORT_COUNTER_NUM * port;
1804
1805         interrupt = hw_block_intr(hw);
1806
1807         ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ) << 8);
1808         writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1809         HW_DELAY(hw, KS884X_IACR_OFFSET);
1810
1811         for (timeout = 100; timeout > 0; timeout--) {
1812                 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1813
1814                 if (data & MIB_COUNTER_VALID) {
1815                         if (data & MIB_COUNTER_OVERFLOW)
1816                                 *cnt += MIB_COUNTER_VALUE + 1;
1817                         *cnt += data & MIB_COUNTER_VALUE;
1818                         break;
1819                 }
1820         }
1821
1822         hw_restore_intr(hw, interrupt);
1823 }
1824
1825 /**
1826  * port_r_mib_pkt - read dropped packet counts
1827  * @hw:         The hardware instance.
1828  * @port:       The port index.
1829  * @cnt:        Buffer to store the receive and transmit dropped packet counts.
1830  *
1831  * This routine reads the dropped packet counts of the port.
1832  * Hardware interrupts are disabled to minimize corruption of read data.
1833  */
1834 static void port_r_mib_pkt(struct ksz_hw *hw, int port, u32 *last, u64 *cnt)
1835 {
1836         u32 cur;
1837         u32 data;
1838         u16 ctrl_addr;
1839         uint interrupt;
1840         int index;
1841
1842         index = KS_MIB_PACKET_DROPPED_RX_0 + port;
1843         do {
1844                 interrupt = hw_block_intr(hw);
1845
1846                 ctrl_addr = (u16) index;
1847                 ctrl_addr |= (((TABLE_MIB << TABLE_SEL_SHIFT) | TABLE_READ)
1848                         << 8);
1849                 writew(ctrl_addr, hw->io + KS884X_IACR_OFFSET);
1850                 HW_DELAY(hw, KS884X_IACR_OFFSET);
1851                 data = readl(hw->io + KS884X_ACC_DATA_0_OFFSET);
1852
1853                 hw_restore_intr(hw, interrupt);
1854
1855                 data &= MIB_PACKET_DROPPED;
1856                 cur = *last;
1857                 if (data != cur) {
1858                         *last = data;
1859                         if (data < cur)
1860                                 data += MIB_PACKET_DROPPED + 1;
1861                         data -= cur;
1862                         *cnt += data;
1863                 }
1864                 ++last;
1865                 ++cnt;
1866                 index -= KS_MIB_PACKET_DROPPED_TX -
1867                         KS_MIB_PACKET_DROPPED_TX_0 + 1;
1868         } while (index >= KS_MIB_PACKET_DROPPED_TX_0 + port);
1869 }
1870
1871 /**
1872  * port_r_cnt - read MIB counters periodically
1873  * @hw:         The hardware instance.
1874  * @port:       The port index.
1875  *
1876  * This routine is used to read the counters of the port periodically to avoid
1877  * counter overflow.  The hardware should be acquired first before calling this
1878  * routine.
1879  *
1880  * Return non-zero when not all counters not read.
1881  */
1882 static int port_r_cnt(struct ksz_hw *hw, int port)
1883 {
1884         struct ksz_port_mib *mib = &hw->port_mib[port];
1885
1886         if (mib->mib_start < PORT_COUNTER_NUM)
1887                 while (mib->cnt_ptr < PORT_COUNTER_NUM) {
1888                         port_r_mib_cnt(hw, port, mib->cnt_ptr,
1889                                 &mib->counter[mib->cnt_ptr]);
1890                         ++mib->cnt_ptr;
1891                 }
1892         if (hw->mib_cnt > PORT_COUNTER_NUM)
1893                 port_r_mib_pkt(hw, port, mib->dropped,
1894                         &mib->counter[PORT_COUNTER_NUM]);
1895         mib->cnt_ptr = 0;
1896         return 0;
1897 }
1898
1899 /**
1900  * port_init_cnt - initialize MIB counter values
1901  * @hw:         The hardware instance.
1902  * @port:       The port index.
1903  *
1904  * This routine is used to initialize all counters to zero if the hardware
1905  * cannot do it after reset.
1906  */
1907 static void port_init_cnt(struct ksz_hw *hw, int port)
1908 {
1909         struct ksz_port_mib *mib = &hw->port_mib[port];
1910
1911         mib->cnt_ptr = 0;
1912         if (mib->mib_start < PORT_COUNTER_NUM)
1913                 do {
1914                         port_r_mib_cnt(hw, port, mib->cnt_ptr,
1915                                 &mib->counter[mib->cnt_ptr]);
1916                         ++mib->cnt_ptr;
1917                 } while (mib->cnt_ptr < PORT_COUNTER_NUM);
1918         if (hw->mib_cnt > PORT_COUNTER_NUM)
1919                 port_r_mib_pkt(hw, port, mib->dropped,
1920                         &mib->counter[PORT_COUNTER_NUM]);
1921         memset((void *) mib->counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
1922         mib->cnt_ptr = 0;
1923 }
1924
1925 /*
1926  * Port functions
1927  */
1928
1929 /**
1930  * port_chk - check port register bits
1931  * @hw:         The hardware instance.
1932  * @port:       The port index.
1933  * @offset:     The offset of the port register.
1934  * @bits:       The data bits to check.
1935  *
1936  * This function checks whether the specified bits of the port register are set
1937  * or not.
1938  *
1939  * Return 0 if the bits are not set.
1940  */
1941 static int port_chk(struct ksz_hw *hw, int port, int offset, u16 bits)
1942 {
1943         u32 addr;
1944         u16 data;
1945
1946         PORT_CTRL_ADDR(port, addr);
1947         addr += offset;
1948         data = readw(hw->io + addr);
1949         return (data & bits) == bits;
1950 }
1951
1952 /**
1953  * port_cfg - set port register bits
1954  * @hw:         The hardware instance.
1955  * @port:       The port index.
1956  * @offset:     The offset of the port register.
1957  * @bits:       The data bits to set.
1958  * @set:        The flag indicating whether the bits are to be set or not.
1959  *
1960  * This routine sets or resets the specified bits of the port register.
1961  */
1962 static void port_cfg(struct ksz_hw *hw, int port, int offset, u16 bits,
1963         int set)
1964 {
1965         u32 addr;
1966         u16 data;
1967
1968         PORT_CTRL_ADDR(port, addr);
1969         addr += offset;
1970         data = readw(hw->io + addr);
1971         if (set)
1972                 data |= bits;
1973         else
1974                 data &= ~bits;
1975         writew(data, hw->io + addr);
1976 }
1977
1978 /**
1979  * port_chk_shift - check port bit
1980  * @hw:         The hardware instance.
1981  * @port:       The port index.
1982  * @offset:     The offset of the register.
1983  * @shift:      Number of bits to shift.
1984  *
1985  * This function checks whether the specified port is set in the register or
1986  * not.
1987  *
1988  * Return 0 if the port is not set.
1989  */
1990 static int port_chk_shift(struct ksz_hw *hw, int port, u32 addr, int shift)
1991 {
1992         u16 data;
1993         u16 bit = 1 << port;
1994
1995         data = readw(hw->io + addr);
1996         data >>= shift;
1997         return (data & bit) == bit;
1998 }
1999
2000 /**
2001  * port_cfg_shift - set port bit
2002  * @hw:         The hardware instance.
2003  * @port:       The port index.
2004  * @offset:     The offset of the register.
2005  * @shift:      Number of bits to shift.
2006  * @set:        The flag indicating whether the port is to be set or not.
2007  *
2008  * This routine sets or resets the specified port in the register.
2009  */
2010 static void port_cfg_shift(struct ksz_hw *hw, int port, u32 addr, int shift,
2011         int set)
2012 {
2013         u16 data;
2014         u16 bits = 1 << port;
2015
2016         data = readw(hw->io + addr);
2017         bits <<= shift;
2018         if (set)
2019                 data |= bits;
2020         else
2021                 data &= ~bits;
2022         writew(data, hw->io + addr);
2023 }
2024
2025 /**
2026  * port_r8 - read byte from port register
2027  * @hw:         The hardware instance.
2028  * @port:       The port index.
2029  * @offset:     The offset of the port register.
2030  * @data:       Buffer to store the data.
2031  *
2032  * This routine reads a byte from the port register.
2033  */
2034 static void port_r8(struct ksz_hw *hw, int port, int offset, u8 *data)
2035 {
2036         u32 addr;
2037
2038         PORT_CTRL_ADDR(port, addr);
2039         addr += offset;
2040         *data = readb(hw->io + addr);
2041 }
2042
2043 /**
2044  * port_r16 - read word from port register.
2045  * @hw:         The hardware instance.
2046  * @port:       The port index.
2047  * @offset:     The offset of the port register.
2048  * @data:       Buffer to store the data.
2049  *
2050  * This routine reads a word from the port register.
2051  */
2052 static void port_r16(struct ksz_hw *hw, int port, int offset, u16 *data)
2053 {
2054         u32 addr;
2055
2056         PORT_CTRL_ADDR(port, addr);
2057         addr += offset;
2058         *data = readw(hw->io + addr);
2059 }
2060
2061 /**
2062  * port_w16 - write word to port register.
2063  * @hw:         The hardware instance.
2064  * @port:       The port index.
2065  * @offset:     The offset of the port register.
2066  * @data:       Data to write.
2067  *
2068  * This routine writes a word to the port register.
2069  */
2070 static void port_w16(struct ksz_hw *hw, int port, int offset, u16 data)
2071 {
2072         u32 addr;
2073
2074         PORT_CTRL_ADDR(port, addr);
2075         addr += offset;
2076         writew(data, hw->io + addr);
2077 }
2078
2079 /**
2080  * sw_chk - check switch register bits
2081  * @hw:         The hardware instance.
2082  * @addr:       The address of the switch register.
2083  * @bits:       The data bits to check.
2084  *
2085  * This function checks whether the specified bits of the switch register are
2086  * set or not.
2087  *
2088  * Return 0 if the bits are not set.
2089  */
2090 static int sw_chk(struct ksz_hw *hw, u32 addr, u16 bits)
2091 {
2092         u16 data;
2093
2094         data = readw(hw->io + addr);
2095         return (data & bits) == bits;
2096 }
2097
2098 /**
2099  * sw_cfg - set switch register bits
2100  * @hw:         The hardware instance.
2101  * @addr:       The address of the switch register.
2102  * @bits:       The data bits to set.
2103  * @set:        The flag indicating whether the bits are to be set or not.
2104  *
2105  * This function sets or resets the specified bits of the switch register.
2106  */
2107 static void sw_cfg(struct ksz_hw *hw, u32 addr, u16 bits, int set)
2108 {
2109         u16 data;
2110
2111         data = readw(hw->io + addr);
2112         if (set)
2113                 data |= bits;
2114         else
2115                 data &= ~bits;
2116         writew(data, hw->io + addr);
2117 }
2118
2119 /* Bandwidth */
2120
2121 static inline void port_cfg_broad_storm(struct ksz_hw *hw, int p, int set)
2122 {
2123         port_cfg(hw, p,
2124                 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM, set);
2125 }
2126
2127 static inline int port_chk_broad_storm(struct ksz_hw *hw, int p)
2128 {
2129         return port_chk(hw, p,
2130                 KS8842_PORT_CTRL_1_OFFSET, PORT_BROADCAST_STORM);
2131 }
2132
2133 /* Driver set switch broadcast storm protection at 10% rate. */
2134 #define BROADCAST_STORM_PROTECTION_RATE 10
2135
2136 /* 148,800 frames * 67 ms / 100 */
2137 #define BROADCAST_STORM_VALUE           9969
2138
2139 /**
2140  * sw_cfg_broad_storm - configure broadcast storm threshold
2141  * @hw:         The hardware instance.
2142  * @percent:    Broadcast storm threshold in percent of transmit rate.
2143  *
2144  * This routine configures the broadcast storm threshold of the switch.
2145  */
2146 static void sw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2147 {
2148         u16 data;
2149         u32 value = ((u32) BROADCAST_STORM_VALUE * (u32) percent / 100);
2150
2151         if (value > BROADCAST_STORM_RATE)
2152                 value = BROADCAST_STORM_RATE;
2153
2154         data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2155         data &= ~(BROADCAST_STORM_RATE_LO | BROADCAST_STORM_RATE_HI);
2156         data |= ((value & 0x00FF) << 8) | ((value & 0xFF00) >> 8);
2157         writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2158 }
2159
2160 /**
2161  * sw_get_board_storm - get broadcast storm threshold
2162  * @hw:         The hardware instance.
2163  * @percent:    Buffer to store the broadcast storm threshold percentage.
2164  *
2165  * This routine retrieves the broadcast storm threshold of the switch.
2166  */
2167 static void sw_get_broad_storm(struct ksz_hw *hw, u8 *percent)
2168 {
2169         int num;
2170         u16 data;
2171
2172         data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2173         num = (data & BROADCAST_STORM_RATE_HI);
2174         num <<= 8;
2175         num |= (data & BROADCAST_STORM_RATE_LO) >> 8;
2176         num = (num * 100 + BROADCAST_STORM_VALUE / 2) / BROADCAST_STORM_VALUE;
2177         *percent = (u8) num;
2178 }
2179
2180 /**
2181  * sw_dis_broad_storm - disable broadstorm
2182  * @hw:         The hardware instance.
2183  * @port:       The port index.
2184  *
2185  * This routine disables the broadcast storm limit function of the switch.
2186  */
2187 static void sw_dis_broad_storm(struct ksz_hw *hw, int port)
2188 {
2189         port_cfg_broad_storm(hw, port, 0);
2190 }
2191
2192 /**
2193  * sw_ena_broad_storm - enable broadcast storm
2194  * @hw:         The hardware instance.
2195  * @port:       The port index.
2196  *
2197  * This routine enables the broadcast storm limit function of the switch.
2198  */
2199 static void sw_ena_broad_storm(struct ksz_hw *hw, int port)
2200 {
2201         sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2202         port_cfg_broad_storm(hw, port, 1);
2203 }
2204
2205 /**
2206  * sw_init_broad_storm - initialize broadcast storm
2207  * @hw:         The hardware instance.
2208  *
2209  * This routine initializes the broadcast storm limit function of the switch.
2210  */
2211 static void sw_init_broad_storm(struct ksz_hw *hw)
2212 {
2213         int port;
2214
2215         hw->ksz_switch->broad_per = 1;
2216         sw_cfg_broad_storm(hw, hw->ksz_switch->broad_per);
2217         for (port = 0; port < TOTAL_PORT_NUM; port++)
2218                 sw_dis_broad_storm(hw, port);
2219         sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, MULTICAST_STORM_DISABLE, 1);
2220 }
2221
2222 /**
2223  * hw_cfg_broad_storm - configure broadcast storm
2224  * @hw:         The hardware instance.
2225  * @percent:    Broadcast storm threshold in percent of transmit rate.
2226  *
2227  * This routine configures the broadcast storm threshold of the switch.
2228  * It is called by user functions.  The hardware should be acquired first.
2229  */
2230 static void hw_cfg_broad_storm(struct ksz_hw *hw, u8 percent)
2231 {
2232         if (percent > 100)
2233                 percent = 100;
2234
2235         sw_cfg_broad_storm(hw, percent);
2236         sw_get_broad_storm(hw, &percent);
2237         hw->ksz_switch->broad_per = percent;
2238 }
2239
2240 /**
2241  * sw_dis_prio_rate - disable switch priority rate
2242  * @hw:         The hardware instance.
2243  * @port:       The port index.
2244  *
2245  * This routine disables the priority rate function of the switch.
2246  */
2247 static void sw_dis_prio_rate(struct ksz_hw *hw, int port)
2248 {
2249         u32 addr;
2250
2251         PORT_CTRL_ADDR(port, addr);
2252         addr += KS8842_PORT_IN_RATE_OFFSET;
2253         writel(0, hw->io + addr);
2254 }
2255
2256 /**
2257  * sw_init_prio_rate - initialize switch prioirty rate
2258  * @hw:         The hardware instance.
2259  *
2260  * This routine initializes the priority rate function of the switch.
2261  */
2262 static void sw_init_prio_rate(struct ksz_hw *hw)
2263 {
2264         int port;
2265         int prio;
2266         struct ksz_switch *sw = hw->ksz_switch;
2267
2268         for (port = 0; port < TOTAL_PORT_NUM; port++) {
2269                 for (prio = 0; prio < PRIO_QUEUES; prio++) {
2270                         sw->port_cfg[port].rx_rate[prio] =
2271                         sw->port_cfg[port].tx_rate[prio] = 0;
2272                 }
2273                 sw_dis_prio_rate(hw, port);
2274         }
2275 }
2276
2277 /* Communication */
2278
2279 static inline void port_cfg_back_pressure(struct ksz_hw *hw, int p, int set)
2280 {
2281         port_cfg(hw, p,
2282                 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE, set);
2283 }
2284
2285 static inline void port_cfg_force_flow_ctrl(struct ksz_hw *hw, int p, int set)
2286 {
2287         port_cfg(hw, p,
2288                 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL, set);
2289 }
2290
2291 static inline int port_chk_back_pressure(struct ksz_hw *hw, int p)
2292 {
2293         return port_chk(hw, p,
2294                 KS8842_PORT_CTRL_2_OFFSET, PORT_BACK_PRESSURE);
2295 }
2296
2297 static inline int port_chk_force_flow_ctrl(struct ksz_hw *hw, int p)
2298 {
2299         return port_chk(hw, p,
2300                 KS8842_PORT_CTRL_2_OFFSET, PORT_FORCE_FLOW_CTRL);
2301 }
2302
2303 /* Spanning Tree */
2304
2305 static inline void port_cfg_rx(struct ksz_hw *hw, int p, int set)
2306 {
2307         port_cfg(hw, p,
2308                 KS8842_PORT_CTRL_2_OFFSET, PORT_RX_ENABLE, set);
2309 }
2310
2311 static inline void port_cfg_tx(struct ksz_hw *hw, int p, int set)
2312 {
2313         port_cfg(hw, p,
2314                 KS8842_PORT_CTRL_2_OFFSET, PORT_TX_ENABLE, set);
2315 }
2316
2317 static inline void sw_cfg_fast_aging(struct ksz_hw *hw, int set)
2318 {
2319         sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET, SWITCH_FAST_AGING, set);
2320 }
2321
2322 static inline void sw_flush_dyn_mac_table(struct ksz_hw *hw)
2323 {
2324         if (!(hw->overrides & FAST_AGING)) {
2325                 sw_cfg_fast_aging(hw, 1);
2326                 mdelay(1);
2327                 sw_cfg_fast_aging(hw, 0);
2328         }
2329 }
2330
2331 /* VLAN */
2332
2333 static inline void port_cfg_ins_tag(struct ksz_hw *hw, int p, int insert)
2334 {
2335         port_cfg(hw, p,
2336                 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG, insert);
2337 }
2338
2339 static inline void port_cfg_rmv_tag(struct ksz_hw *hw, int p, int remove)
2340 {
2341         port_cfg(hw, p,
2342                 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG, remove);
2343 }
2344
2345 static inline int port_chk_ins_tag(struct ksz_hw *hw, int p)
2346 {
2347         return port_chk(hw, p,
2348                 KS8842_PORT_CTRL_1_OFFSET, PORT_INSERT_TAG);
2349 }
2350
2351 static inline int port_chk_rmv_tag(struct ksz_hw *hw, int p)
2352 {
2353         return port_chk(hw, p,
2354                 KS8842_PORT_CTRL_1_OFFSET, PORT_REMOVE_TAG);
2355 }
2356
2357 static inline void port_cfg_dis_non_vid(struct ksz_hw *hw, int p, int set)
2358 {
2359         port_cfg(hw, p,
2360                 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID, set);
2361 }
2362
2363 static inline void port_cfg_in_filter(struct ksz_hw *hw, int p, int set)
2364 {
2365         port_cfg(hw, p,
2366                 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER, set);
2367 }
2368
2369 static inline int port_chk_dis_non_vid(struct ksz_hw *hw, int p)
2370 {
2371         return port_chk(hw, p,
2372                 KS8842_PORT_CTRL_2_OFFSET, PORT_DISCARD_NON_VID);
2373 }
2374
2375 static inline int port_chk_in_filter(struct ksz_hw *hw, int p)
2376 {
2377         return port_chk(hw, p,
2378                 KS8842_PORT_CTRL_2_OFFSET, PORT_INGRESS_VLAN_FILTER);
2379 }
2380
2381 /* Mirroring */
2382
2383 static inline void port_cfg_mirror_sniffer(struct ksz_hw *hw, int p, int set)
2384 {
2385         port_cfg(hw, p,
2386                 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_SNIFFER, set);
2387 }
2388
2389 static inline void port_cfg_mirror_rx(struct ksz_hw *hw, int p, int set)
2390 {
2391         port_cfg(hw, p,
2392                 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_RX, set);
2393 }
2394
2395 static inline void port_cfg_mirror_tx(struct ksz_hw *hw, int p, int set)
2396 {
2397         port_cfg(hw, p,
2398                 KS8842_PORT_CTRL_2_OFFSET, PORT_MIRROR_TX, set);
2399 }
2400
2401 static inline void sw_cfg_mirror_rx_tx(struct ksz_hw *hw, int set)
2402 {
2403         sw_cfg(hw, KS8842_SWITCH_CTRL_2_OFFSET, SWITCH_MIRROR_RX_TX, set);
2404 }
2405
2406 static void sw_init_mirror(struct ksz_hw *hw)
2407 {
2408         int port;
2409
2410         for (port = 0; port < TOTAL_PORT_NUM; port++) {
2411                 port_cfg_mirror_sniffer(hw, port, 0);
2412                 port_cfg_mirror_rx(hw, port, 0);
2413                 port_cfg_mirror_tx(hw, port, 0);
2414         }
2415         sw_cfg_mirror_rx_tx(hw, 0);
2416 }
2417
2418 static inline void sw_cfg_unk_def_deliver(struct ksz_hw *hw, int set)
2419 {
2420         sw_cfg(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2421                 SWITCH_UNK_DEF_PORT_ENABLE, set);
2422 }
2423
2424 static inline int sw_cfg_chk_unk_def_deliver(struct ksz_hw *hw)
2425 {
2426         return sw_chk(hw, KS8842_SWITCH_CTRL_7_OFFSET,
2427                 SWITCH_UNK_DEF_PORT_ENABLE);
2428 }
2429
2430 static inline void sw_cfg_unk_def_port(struct ksz_hw *hw, int port, int set)
2431 {
2432         port_cfg_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0, set);
2433 }
2434
2435 static inline int sw_chk_unk_def_port(struct ksz_hw *hw, int port)
2436 {
2437         return port_chk_shift(hw, port, KS8842_SWITCH_CTRL_7_OFFSET, 0);
2438 }
2439
2440 /* Priority */
2441
2442 static inline void port_cfg_diffserv(struct ksz_hw *hw, int p, int set)
2443 {
2444         port_cfg(hw, p,
2445                 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE, set);
2446 }
2447
2448 static inline void port_cfg_802_1p(struct ksz_hw *hw, int p, int set)
2449 {
2450         port_cfg(hw, p,
2451                 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE, set);
2452 }
2453
2454 static inline void port_cfg_replace_vid(struct ksz_hw *hw, int p, int set)
2455 {
2456         port_cfg(hw, p,
2457                 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING, set);
2458 }
2459
2460 static inline void port_cfg_prio(struct ksz_hw *hw, int p, int set)
2461 {
2462         port_cfg(hw, p,
2463                 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE, set);
2464 }
2465
2466 static inline int port_chk_diffserv(struct ksz_hw *hw, int p)
2467 {
2468         return port_chk(hw, p,
2469                 KS8842_PORT_CTRL_1_OFFSET, PORT_DIFFSERV_ENABLE);
2470 }
2471
2472 static inline int port_chk_802_1p(struct ksz_hw *hw, int p)
2473 {
2474         return port_chk(hw, p,
2475                 KS8842_PORT_CTRL_1_OFFSET, PORT_802_1P_ENABLE);
2476 }
2477
2478 static inline int port_chk_replace_vid(struct ksz_hw *hw, int p)
2479 {
2480         return port_chk(hw, p,
2481                 KS8842_PORT_CTRL_2_OFFSET, PORT_USER_PRIORITY_CEILING);
2482 }
2483
2484 static inline int port_chk_prio(struct ksz_hw *hw, int p)
2485 {
2486         return port_chk(hw, p,
2487                 KS8842_PORT_CTRL_1_OFFSET, PORT_PRIO_QUEUE_ENABLE);
2488 }
2489
2490 /**
2491  * sw_dis_diffserv - disable switch DiffServ priority
2492  * @hw:         The hardware instance.
2493  * @port:       The port index.
2494  *
2495  * This routine disables the DiffServ priority function of the switch.
2496  */
2497 static void sw_dis_diffserv(struct ksz_hw *hw, int port)
2498 {
2499         port_cfg_diffserv(hw, port, 0);
2500 }
2501
2502 /**
2503  * sw_dis_802_1p - disable switch 802.1p priority
2504  * @hw:         The hardware instance.
2505  * @port:       The port index.
2506  *
2507  * This routine disables the 802.1p priority function of the switch.
2508  */
2509 static void sw_dis_802_1p(struct ksz_hw *hw, int port)
2510 {
2511         port_cfg_802_1p(hw, port, 0);
2512 }
2513
2514 /**
2515  * sw_cfg_replace_null_vid -
2516  * @hw:         The hardware instance.
2517  * @set:        The flag to disable or enable.
2518  *
2519  */
2520 static void sw_cfg_replace_null_vid(struct ksz_hw *hw, int set)
2521 {
2522         sw_cfg(hw, KS8842_SWITCH_CTRL_3_OFFSET, SWITCH_REPLACE_NULL_VID, set);
2523 }
2524
2525 /**
2526  * sw_cfg_replace_vid - enable switch 802.10 priority re-mapping
2527  * @hw:         The hardware instance.
2528  * @port:       The port index.
2529  * @set:        The flag to disable or enable.
2530  *
2531  * This routine enables the 802.1p priority re-mapping function of the switch.
2532  * That allows 802.1p priority field to be replaced with the port's default
2533  * tag's priority value if the ingress packet's 802.1p priority has a higher
2534  * priority than port's default tag's priority.
2535  */
2536 static void sw_cfg_replace_vid(struct ksz_hw *hw, int port, int set)
2537 {
2538         port_cfg_replace_vid(hw, port, set);
2539 }
2540
2541 /**
2542  * sw_cfg_port_based - configure switch port based priority
2543  * @hw:         The hardware instance.
2544  * @port:       The port index.
2545  * @prio:       The priority to set.
2546  *
2547  * This routine configures the port based priority of the switch.
2548  */
2549 static void sw_cfg_port_based(struct ksz_hw *hw, int port, u8 prio)
2550 {
2551         u16 data;
2552
2553         if (prio > PORT_BASED_PRIORITY_BASE)
2554                 prio = PORT_BASED_PRIORITY_BASE;
2555
2556         hw->ksz_switch->port_cfg[port].port_prio = prio;
2557
2558         port_r16(hw, port, KS8842_PORT_CTRL_1_OFFSET, &data);
2559         data &= ~PORT_BASED_PRIORITY_MASK;
2560         data |= prio << PORT_BASED_PRIORITY_SHIFT;
2561         port_w16(hw, port, KS8842_PORT_CTRL_1_OFFSET, data);
2562 }
2563
2564 /**
2565  * sw_dis_multi_queue - disable transmit multiple queues
2566  * @hw:         The hardware instance.
2567  * @port:       The port index.
2568  *
2569  * This routine disables the transmit multiple queues selection of the switch
2570  * port.  Only single transmit queue on the port.
2571  */
2572 static void sw_dis_multi_queue(struct ksz_hw *hw, int port)
2573 {
2574         port_cfg_prio(hw, port, 0);
2575 }
2576
2577 /**
2578  * sw_init_prio - initialize switch priority
2579  * @hw:         The hardware instance.
2580  *
2581  * This routine initializes the switch QoS priority functions.
2582  */
2583 static void sw_init_prio(struct ksz_hw *hw)
2584 {
2585         int port;
2586         int tos;
2587         struct ksz_switch *sw = hw->ksz_switch;
2588
2589         /*
2590          * Init all the 802.1p tag priority value to be assigned to different
2591          * priority queue.
2592          */
2593         sw->p_802_1p[0] = 0;
2594         sw->p_802_1p[1] = 0;
2595         sw->p_802_1p[2] = 1;
2596         sw->p_802_1p[3] = 1;
2597         sw->p_802_1p[4] = 2;
2598         sw->p_802_1p[5] = 2;
2599         sw->p_802_1p[6] = 3;
2600         sw->p_802_1p[7] = 3;
2601
2602         /*
2603          * Init all the DiffServ priority value to be assigned to priority
2604          * queue 0.
2605          */
2606         for (tos = 0; tos < DIFFSERV_ENTRIES; tos++)
2607                 sw->diffserv[tos] = 0;
2608
2609         /* All QoS functions disabled. */
2610         for (port = 0; port < TOTAL_PORT_NUM; port++) {
2611                 sw_dis_multi_queue(hw, port);
2612                 sw_dis_diffserv(hw, port);
2613                 sw_dis_802_1p(hw, port);
2614                 sw_cfg_replace_vid(hw, port, 0);
2615
2616                 sw->port_cfg[port].port_prio = 0;
2617                 sw_cfg_port_based(hw, port, sw->port_cfg[port].port_prio);
2618         }
2619         sw_cfg_replace_null_vid(hw, 0);
2620 }
2621
2622 /**
2623  * port_get_def_vid - get port default VID.
2624  * @hw:         The hardware instance.
2625  * @port:       The port index.
2626  * @vid:        Buffer to store the VID.
2627  *
2628  * This routine retrieves the default VID of the port.
2629  */
2630 static void port_get_def_vid(struct ksz_hw *hw, int port, u16 *vid)
2631 {
2632         u32 addr;
2633
2634         PORT_CTRL_ADDR(port, addr);
2635         addr += KS8842_PORT_CTRL_VID_OFFSET;
2636         *vid = readw(hw->io + addr);
2637 }
2638
2639 /**
2640  * sw_init_vlan - initialize switch VLAN
2641  * @hw:         The hardware instance.
2642  *
2643  * This routine initializes the VLAN function of the switch.
2644  */
2645 static void sw_init_vlan(struct ksz_hw *hw)
2646 {
2647         int port;
2648         int entry;
2649         struct ksz_switch *sw = hw->ksz_switch;
2650
2651         /* Read 16 VLAN entries from device's VLAN table. */
2652         for (entry = 0; entry < VLAN_TABLE_ENTRIES; entry++) {
2653                 sw_r_vlan_table(hw, entry,
2654                         &sw->vlan_table[entry].vid,
2655                         &sw->vlan_table[entry].fid,
2656                         &sw->vlan_table[entry].member);
2657         }
2658
2659         for (port = 0; port < TOTAL_PORT_NUM; port++) {
2660                 port_get_def_vid(hw, port, &sw->port_cfg[port].vid);
2661                 sw->port_cfg[port].member = PORT_MASK;
2662         }
2663 }
2664
2665 /**
2666  * sw_cfg_port_base_vlan - configure port-based VLAN membership
2667  * @hw:         The hardware instance.
2668  * @port:       The port index.
2669  * @member:     The port-based VLAN membership.
2670  *
2671  * This routine configures the port-based VLAN membership of the port.
2672  */
2673 static void sw_cfg_port_base_vlan(struct ksz_hw *hw, int port, u8 member)
2674 {
2675         u32 addr;
2676         u8 data;
2677
2678         PORT_CTRL_ADDR(port, addr);
2679         addr += KS8842_PORT_CTRL_2_OFFSET;
2680
2681         data = readb(hw->io + addr);
2682         data &= ~PORT_VLAN_MEMBERSHIP;
2683         data |= (member & PORT_MASK);
2684         writeb(data, hw->io + addr);
2685
2686         hw->ksz_switch->port_cfg[port].member = member;
2687 }
2688
2689 /**
2690  * sw_get_addr - get the switch MAC address.
2691  * @hw:         The hardware instance.
2692  * @mac_addr:   Buffer to store the MAC address.
2693  *
2694  * This function retrieves the MAC address of the switch.
2695  */
2696 static inline void sw_get_addr(struct ksz_hw *hw, u8 *mac_addr)
2697 {
2698         int i;
2699
2700         for (i = 0; i < 6; i += 2) {
2701                 mac_addr[i] = readb(hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2702                 mac_addr[1 + i] = readb(hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2703         }
2704 }
2705
2706 /**
2707  * sw_set_addr - configure switch MAC address
2708  * @hw:         The hardware instance.
2709  * @mac_addr:   The MAC address.
2710  *
2711  * This function configures the MAC address of the switch.
2712  */
2713 static void sw_set_addr(struct ksz_hw *hw, u8 *mac_addr)
2714 {
2715         int i;
2716
2717         for (i = 0; i < 6; i += 2) {
2718                 writeb(mac_addr[i], hw->io + KS8842_MAC_ADDR_0_OFFSET + i);
2719                 writeb(mac_addr[1 + i], hw->io + KS8842_MAC_ADDR_1_OFFSET + i);
2720         }
2721 }
2722
2723 /**
2724  * sw_set_global_ctrl - set switch global control
2725  * @hw:         The hardware instance.
2726  *
2727  * This routine sets the global control of the switch function.
2728  */
2729 static void sw_set_global_ctrl(struct ksz_hw *hw)
2730 {
2731         u16 data;
2732
2733         /* Enable switch MII flow control. */
2734         data = readw(hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2735         data |= SWITCH_FLOW_CTRL;
2736         writew(data, hw->io + KS8842_SWITCH_CTRL_3_OFFSET);
2737
2738         data = readw(hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2739
2740         /* Enable aggressive back off algorithm in half duplex mode. */
2741         data |= SWITCH_AGGR_BACKOFF;
2742
2743         /* Enable automatic fast aging when link changed detected. */
2744         data |= SWITCH_AGING_ENABLE;
2745         data |= SWITCH_LINK_AUTO_AGING;
2746
2747         if (hw->overrides & FAST_AGING)
2748                 data |= SWITCH_FAST_AGING;
2749         else
2750                 data &= ~SWITCH_FAST_AGING;
2751         writew(data, hw->io + KS8842_SWITCH_CTRL_1_OFFSET);
2752
2753         data = readw(hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2754
2755         /* Enable no excessive collision drop. */
2756         data |= NO_EXC_COLLISION_DROP;
2757         writew(data, hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
2758 }
2759
2760 enum {
2761         STP_STATE_DISABLED = 0,
2762         STP_STATE_LISTENING,
2763         STP_STATE_LEARNING,
2764         STP_STATE_FORWARDING,
2765         STP_STATE_BLOCKED,
2766         STP_STATE_SIMPLE
2767 };
2768
2769 /**
2770  * port_set_stp_state - configure port spanning tree state
2771  * @hw:         The hardware instance.
2772  * @port:       The port index.
2773  * @state:      The spanning tree state.
2774  *
2775  * This routine configures the spanning tree state of the port.
2776  */
2777 static void port_set_stp_state(struct ksz_hw *hw, int port, int state)
2778 {
2779         u16 data;
2780
2781         port_r16(hw, port, KS8842_PORT_CTRL_2_OFFSET, &data);
2782         switch (state) {
2783         case STP_STATE_DISABLED:
2784                 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2785                 data |= PORT_LEARN_DISABLE;
2786                 break;
2787         case STP_STATE_LISTENING:
2788 /*
2789  * No need to turn on transmit because of port direct mode.
2790  * Turning on receive is required if static MAC table is not setup.
2791  */
2792                 data &= ~PORT_TX_ENABLE;
2793                 data |= PORT_RX_ENABLE;
2794                 data |= PORT_LEARN_DISABLE;
2795                 break;
2796         case STP_STATE_LEARNING:
2797                 data &= ~PORT_TX_ENABLE;
2798                 data |= PORT_RX_ENABLE;
2799                 data &= ~PORT_LEARN_DISABLE;
2800                 break;
2801         case STP_STATE_FORWARDING:
2802                 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2803                 data &= ~PORT_LEARN_DISABLE;
2804                 break;
2805         case STP_STATE_BLOCKED:
2806 /*
2807  * Need to setup static MAC table with override to keep receiving BPDU
2808  * messages.  See sw_init_stp routine.
2809  */
2810                 data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE);
2811                 data |= PORT_LEARN_DISABLE;
2812                 break;
2813         case STP_STATE_SIMPLE:
2814                 data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
2815                 data |= PORT_LEARN_DISABLE;
2816                 break;
2817         }
2818         port_w16(hw, port, KS8842_PORT_CTRL_2_OFFSET, data);
2819         hw->ksz_switch->port_cfg[port].stp_state = state;
2820 }
2821
2822 #define STP_ENTRY                       0
2823 #define BROADCAST_ENTRY                 1
2824 #define BRIDGE_ADDR_ENTRY               2
2825 #define IPV6_ADDR_ENTRY                 3
2826
2827 /**
2828  * sw_clr_sta_mac_table - clear static MAC table
2829  * @hw:         The hardware instance.
2830  *
2831  * This routine clears the static MAC table.
2832  */
2833 static void sw_clr_sta_mac_table(struct ksz_hw *hw)
2834 {
2835         struct ksz_mac_table *entry;
2836         int i;
2837
2838         for (i = 0; i < STATIC_MAC_TABLE_ENTRIES; i++) {
2839                 entry = &hw->ksz_switch->mac_table[i];
2840                 sw_w_sta_mac_table(hw, i,
2841                         entry->mac_addr, entry->ports,
2842                         entry->override, 0,
2843                         entry->use_fid, entry->fid);
2844         }
2845 }
2846
2847 /**
2848  * sw_init_stp - initialize switch spanning tree support
2849  * @hw:         The hardware instance.
2850  *
2851  * This routine initializes the spanning tree support of the switch.
2852  */
2853 static void sw_init_stp(struct ksz_hw *hw)
2854 {
2855         struct ksz_mac_table *entry;
2856
2857         entry = &hw->ksz_switch->mac_table[STP_ENTRY];
2858         entry->mac_addr[0] = 0x01;
2859         entry->mac_addr[1] = 0x80;
2860         entry->mac_addr[2] = 0xC2;
2861         entry->mac_addr[3] = 0x00;
2862         entry->mac_addr[4] = 0x00;
2863         entry->mac_addr[5] = 0x00;
2864         entry->ports = HOST_MASK;
2865         entry->override = 1;
2866         entry->valid = 1;
2867         sw_w_sta_mac_table(hw, STP_ENTRY,
2868                 entry->mac_addr, entry->ports,
2869                 entry->override, entry->valid,
2870                 entry->use_fid, entry->fid);
2871 }
2872
2873 /**
2874  * sw_block_addr - block certain packets from the host port
2875  * @hw:         The hardware instance.
2876  *
2877  * This routine blocks certain packets from reaching to the host port.
2878  */
2879 static void sw_block_addr(struct ksz_hw *hw)
2880 {
2881         struct ksz_mac_table *entry;
2882         int i;
2883
2884         for (i = BROADCAST_ENTRY; i <= IPV6_ADDR_ENTRY; i++) {
2885                 entry = &hw->ksz_switch->mac_table[i];
2886                 entry->valid = 0;
2887                 sw_w_sta_mac_table(hw, i,
2888                         entry->mac_addr, entry->ports,
2889                         entry->override, entry->valid,
2890                         entry->use_fid, entry->fid);
2891         }
2892 }
2893
2894 #define PHY_LINK_SUPPORT                \
2895         (PHY_AUTO_NEG_ASYM_PAUSE |      \
2896         PHY_AUTO_NEG_SYM_PAUSE |        \
2897         PHY_AUTO_NEG_100BT4 |           \
2898         PHY_AUTO_NEG_100BTX_FD |        \
2899         PHY_AUTO_NEG_100BTX |           \
2900         PHY_AUTO_NEG_10BT_FD |          \
2901         PHY_AUTO_NEG_10BT)
2902
2903 static inline void hw_r_phy_ctrl(struct ksz_hw *hw, int phy, u16 *data)
2904 {
2905         *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2906 }
2907
2908 static inline void hw_w_phy_ctrl(struct ksz_hw *hw, int phy, u16 data)
2909 {
2910         writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2911 }
2912
2913 static inline void hw_r_phy_link_stat(struct ksz_hw *hw, int phy, u16 *data)
2914 {
2915         *data = readw(hw->io + phy + KS884X_PHY_STATUS_OFFSET);
2916 }
2917
2918 static inline void hw_r_phy_auto_neg(struct ksz_hw *hw, int phy, u16 *data)
2919 {
2920         *data = readw(hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2921 }
2922
2923 static inline void hw_w_phy_auto_neg(struct ksz_hw *hw, int phy, u16 data)
2924 {
2925         writew(data, hw->io + phy + KS884X_PHY_AUTO_NEG_OFFSET);
2926 }
2927
2928 static inline void hw_r_phy_rem_cap(struct ksz_hw *hw, int phy, u16 *data)
2929 {
2930         *data = readw(hw->io + phy + KS884X_PHY_REMOTE_CAP_OFFSET);
2931 }
2932
2933 static inline void hw_r_phy_crossover(struct ksz_hw *hw, int phy, u16 *data)
2934 {
2935         *data = readw(hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2936 }
2937
2938 static inline void hw_w_phy_crossover(struct ksz_hw *hw, int phy, u16 data)
2939 {
2940         writew(data, hw->io + phy + KS884X_PHY_CTRL_OFFSET);
2941 }
2942
2943 static inline void hw_r_phy_polarity(struct ksz_hw *hw, int phy, u16 *data)
2944 {
2945         *data = readw(hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2946 }
2947
2948 static inline void hw_w_phy_polarity(struct ksz_hw *hw, int phy, u16 data)
2949 {
2950         writew(data, hw->io + phy + KS884X_PHY_PHY_CTRL_OFFSET);
2951 }
2952
2953 static inline void hw_r_phy_link_md(struct ksz_hw *hw, int phy, u16 *data)
2954 {
2955         *data = readw(hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2956 }
2957
2958 static inline void hw_w_phy_link_md(struct ksz_hw *hw, int phy, u16 data)
2959 {
2960         writew(data, hw->io + phy + KS884X_PHY_LINK_MD_OFFSET);
2961 }
2962
2963 /**
2964  * hw_r_phy - read data from PHY register
2965  * @hw:         The hardware instance.
2966  * @port:       Port to read.
2967  * @reg:        PHY register to read.
2968  * @val:        Buffer to store the read data.
2969  *
2970  * This routine reads data from the PHY register.
2971  */
2972 static void hw_r_phy(struct ksz_hw *hw, int port, u16 reg, u16 *val)
2973 {
2974         int phy;
2975
2976         phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
2977         *val = readw(hw->io + phy);
2978 }
2979
2980 /**
2981  * port_w_phy - write data to PHY register
2982  * @hw:         The hardware instance.
2983  * @port:       Port to write.
2984  * @reg:        PHY register to write.
2985  * @val:        Word data to write.
2986  *
2987  * This routine writes data to the PHY register.
2988  */
2989 static void hw_w_phy(struct ksz_hw *hw, int port, u16 reg, u16 val)
2990 {
2991         int phy;
2992
2993         phy = KS884X_PHY_1_CTRL_OFFSET + port * PHY_CTRL_INTERVAL + reg;
2994         writew(val, hw->io + phy);
2995 }
2996
2997 /*
2998  * EEPROM access functions
2999  */
3000
3001 #define AT93C_CODE                      0
3002 #define AT93C_WR_OFF                    0x00
3003 #define AT93C_WR_ALL                    0x10
3004 #define AT93C_ER_ALL                    0x20
3005 #define AT93C_WR_ON                     0x30
3006
3007 #define AT93C_WRITE                     1
3008 #define AT93C_READ                      2
3009 #define AT93C_ERASE                     3
3010
3011 #define EEPROM_DELAY                    4
3012
3013 static inline void drop_gpio(struct ksz_hw *hw, u8 gpio)
3014 {
3015         u16 data;
3016
3017         data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3018         data &= ~gpio;
3019         writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3020 }
3021
3022 static inline void raise_gpio(struct ksz_hw *hw, u8 gpio)
3023 {
3024         u16 data;
3025
3026         data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3027         data |= gpio;
3028         writew(data, hw->io + KS884X_EEPROM_CTRL_OFFSET);
3029 }
3030
3031 static inline u8 state_gpio(struct ksz_hw *hw, u8 gpio)
3032 {
3033         u16 data;
3034
3035         data = readw(hw->io + KS884X_EEPROM_CTRL_OFFSET);
3036         return (u8)(data & gpio);
3037 }
3038
3039 static void eeprom_clk(struct ksz_hw *hw)
3040 {
3041         raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3042         udelay(EEPROM_DELAY);
3043         drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3044         udelay(EEPROM_DELAY);
3045 }
3046
3047 static u16 spi_r(struct ksz_hw *hw)
3048 {
3049         int i;
3050         u16 temp = 0;
3051
3052         for (i = 15; i >= 0; i--) {
3053                 raise_gpio(hw, EEPROM_SERIAL_CLOCK);
3054                 udelay(EEPROM_DELAY);
3055
3056                 temp |= (state_gpio(hw, EEPROM_DATA_IN)) ? 1 << i : 0;
3057
3058                 drop_gpio(hw, EEPROM_SERIAL_CLOCK);
3059                 udelay(EEPROM_DELAY);
3060         }
3061         return temp;
3062 }
3063
3064 static void spi_w(struct ksz_hw *hw, u16 data)
3065 {
3066         int i;
3067
3068         for (i = 15; i >= 0; i--) {
3069                 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3070                         drop_gpio(hw, EEPROM_DATA_OUT);
3071                 eeprom_clk(hw);
3072         }
3073 }
3074
3075 static void spi_reg(struct ksz_hw *hw, u8 data, u8 reg)
3076 {
3077         int i;
3078
3079         /* Initial start bit */
3080         raise_gpio(hw, EEPROM_DATA_OUT);
3081         eeprom_clk(hw);
3082
3083         /* AT93C operation */
3084         for (i = 1; i >= 0; i--) {
3085                 (data & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3086                         drop_gpio(hw, EEPROM_DATA_OUT);
3087                 eeprom_clk(hw);
3088         }
3089
3090         /* Address location */
3091         for (i = 5; i >= 0; i--) {
3092                 (reg & (0x01 << i)) ? raise_gpio(hw, EEPROM_DATA_OUT) :
3093                         drop_gpio(hw, EEPROM_DATA_OUT);
3094                 eeprom_clk(hw);
3095         }
3096 }
3097
3098 #define EEPROM_DATA_RESERVED            0
3099 #define EEPROM_DATA_MAC_ADDR_0          1
3100 #define EEPROM_DATA_MAC_ADDR_1          2
3101 #define EEPROM_DATA_MAC_ADDR_2          3
3102 #define EEPROM_DATA_SUBSYS_ID           4
3103 #define EEPROM_DATA_SUBSYS_VEN_ID       5
3104 #define EEPROM_DATA_PM_CAP              6
3105
3106 /* User defined EEPROM data */
3107 #define EEPROM_DATA_OTHER_MAC_ADDR      9
3108
3109 /**
3110  * eeprom_read - read from AT93C46 EEPROM
3111  * @hw:         The hardware instance.
3112  * @reg:        The register offset.
3113  *
3114  * This function reads a word from the AT93C46 EEPROM.
3115  *
3116  * Return the data value.
3117  */
3118 static u16 eeprom_read(struct ksz_hw *hw, u8 reg)
3119 {
3120         u16 data;
3121
3122         raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3123
3124         spi_reg(hw, AT93C_READ, reg);
3125         data = spi_r(hw);
3126
3127         drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3128
3129         return data;
3130 }
3131
3132 /**
3133  * eeprom_write - write to AT93C46 EEPROM
3134  * @hw:         The hardware instance.
3135  * @reg:        The register offset.
3136  * @data:       The data value.
3137  *
3138  * This procedure writes a word to the AT93C46 EEPROM.
3139  */
3140 static void eeprom_write(struct ksz_hw *hw, u8 reg, u16 data)
3141 {
3142         int timeout;
3143
3144         raise_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3145
3146         /* Enable write. */
3147         spi_reg(hw, AT93C_CODE, AT93C_WR_ON);
3148         drop_gpio(hw, EEPROM_CHIP_SELECT);
3149         udelay(1);
3150
3151         /* Erase the register. */
3152         raise_gpio(hw, EEPROM_CHIP_SELECT);
3153         spi_reg(hw, AT93C_ERASE, reg);
3154         drop_gpio(hw, EEPROM_CHIP_SELECT);
3155         udelay(1);
3156
3157         /* Check operation complete. */
3158         raise_gpio(hw, EEPROM_CHIP_SELECT);
3159         timeout = 8;
3160         mdelay(2);
3161         do {
3162                 mdelay(1);
3163         } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3164         drop_gpio(hw, EEPROM_CHIP_SELECT);
3165         udelay(1);
3166
3167         /* Write the register. */
3168         raise_gpio(hw, EEPROM_CHIP_SELECT);
3169         spi_reg(hw, AT93C_WRITE, reg);
3170         spi_w(hw, data);
3171         drop_gpio(hw, EEPROM_CHIP_SELECT);
3172         udelay(1);
3173
3174         /* Check operation complete. */
3175         raise_gpio(hw, EEPROM_CHIP_SELECT);
3176         timeout = 8;
3177         mdelay(2);
3178         do {
3179                 mdelay(1);
3180         } while (!state_gpio(hw, EEPROM_DATA_IN) && --timeout);
3181         drop_gpio(hw, EEPROM_CHIP_SELECT);
3182         udelay(1);
3183
3184         /* Disable write. */
3185         raise_gpio(hw, EEPROM_CHIP_SELECT);
3186         spi_reg(hw, AT93C_CODE, AT93C_WR_OFF);
3187
3188         drop_gpio(hw, EEPROM_ACCESS_ENABLE | EEPROM_CHIP_SELECT);
3189 }
3190
3191 /*
3192  * Link detection routines
3193  */
3194
3195 static u16 advertised_flow_ctrl(struct ksz_port *port, u16 ctrl)
3196 {
3197         ctrl &= ~PORT_AUTO_NEG_SYM_PAUSE;
3198         switch (port->flow_ctrl) {
3199         case PHY_FLOW_CTRL:
3200                 ctrl |= PORT_AUTO_NEG_SYM_PAUSE;
3201                 break;
3202         /* Not supported. */
3203         case PHY_TX_ONLY:
3204         case PHY_RX_ONLY:
3205         default:
3206                 break;
3207         }
3208         return ctrl;
3209 }
3210
3211 static void set_flow_ctrl(struct ksz_hw *hw, int rx, int tx)
3212 {
3213         u32 rx_cfg;
3214         u32 tx_cfg;
3215
3216         rx_cfg = hw->rx_cfg;
3217         tx_cfg = hw->tx_cfg;
3218         if (rx)
3219                 hw->rx_cfg |= DMA_RX_FLOW_ENABLE;
3220         else
3221                 hw->rx_cfg &= ~DMA_RX_FLOW_ENABLE;
3222         if (tx)
3223                 hw->tx_cfg |= DMA_TX_FLOW_ENABLE;
3224         else
3225                 hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3226         if (hw->enabled) {
3227                 if (rx_cfg != hw->rx_cfg)
3228                         writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3229                 if (tx_cfg != hw->tx_cfg)
3230                         writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3231         }
3232 }
3233
3234 static void determine_flow_ctrl(struct ksz_hw *hw, struct ksz_port *port,
3235         u16 local, u16 remote)
3236 {
3237         int rx;
3238         int tx;
3239
3240         if (hw->overrides & PAUSE_FLOW_CTRL)
3241                 return;
3242
3243         rx = tx = 0;
3244         if (port->force_link)
3245                 rx = tx = 1;
3246         if (remote & PHY_AUTO_NEG_SYM_PAUSE) {
3247                 if (local & PHY_AUTO_NEG_SYM_PAUSE) {
3248                         rx = tx = 1;
3249                 } else if ((remote & PHY_AUTO_NEG_ASYM_PAUSE) &&
3250                                 (local & PHY_AUTO_NEG_PAUSE) ==
3251                                 PHY_AUTO_NEG_ASYM_PAUSE) {
3252                         tx = 1;
3253                 }
3254         } else if (remote & PHY_AUTO_NEG_ASYM_PAUSE) {
3255                 if ((local & PHY_AUTO_NEG_PAUSE) == PHY_AUTO_NEG_PAUSE)
3256                         rx = 1;
3257         }
3258         if (!hw->ksz_switch)
3259                 set_flow_ctrl(hw, rx, tx);
3260 }
3261
3262 static inline void port_cfg_change(struct ksz_hw *hw, struct ksz_port *port,
3263         struct ksz_port_info *info, u16 link_status)
3264 {
3265         if ((hw->features & HALF_DUPLEX_SIGNAL_BUG) &&
3266                         !(hw->overrides & PAUSE_FLOW_CTRL)) {
3267                 u32 cfg = hw->tx_cfg;
3268
3269                 /* Disable flow control in the half duplex mode. */
3270                 if (1 == info->duplex)
3271                         hw->tx_cfg &= ~DMA_TX_FLOW_ENABLE;
3272                 if (hw->enabled && cfg != hw->tx_cfg)
3273                         writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3274         }
3275 }
3276
3277 /**
3278  * port_get_link_speed - get current link status
3279  * @port:       The port instance.
3280  *
3281  * This routine reads PHY registers to determine the current link status of the
3282  * switch ports.
3283  */
3284 static void port_get_link_speed(struct ksz_port *port)
3285 {
3286         uint interrupt;
3287         struct ksz_port_info *info;
3288         struct ksz_port_info *linked = NULL;
3289         struct ksz_hw *hw = port->hw;
3290         u16 data;
3291         u16 status;
3292         u8 local;
3293         u8 remote;
3294         int i;
3295         int p;
3296         int change = 0;
3297
3298         interrupt = hw_block_intr(hw);
3299
3300         for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3301                 info = &hw->port_info[p];
3302                 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3303                 port_r16(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3304
3305                 /*
3306                  * Link status is changing all the time even when there is no
3307                  * cable connection!
3308                  */
3309                 remote = status & (PORT_AUTO_NEG_COMPLETE |
3310                         PORT_STATUS_LINK_GOOD);
3311                 local = (u8) data;
3312
3313                 /* No change to status. */
3314                 if (local == info->advertised && remote == info->partner)
3315                         continue;
3316
3317                 info->advertised = local;
3318                 info->partner = remote;
3319                 if (status & PORT_STATUS_LINK_GOOD) {
3320
3321                         /* Remember the first linked port. */
3322                         if (!linked)
3323                                 linked = info;
3324
3325                         info->tx_rate = 10 * TX_RATE_UNIT;
3326                         if (status & PORT_STATUS_SPEED_100MBIT)
3327                                 info->tx_rate = 100 * TX_RATE_UNIT;
3328
3329                         info->duplex = 1;
3330                         if (status & PORT_STATUS_FULL_DUPLEX)
3331                                 info->duplex = 2;
3332
3333                         if (media_connected != info->state) {
3334                                 hw_r_phy(hw, p, KS884X_PHY_AUTO_NEG_OFFSET,
3335                                         &data);
3336                                 hw_r_phy(hw, p, KS884X_PHY_REMOTE_CAP_OFFSET,
3337                                         &status);
3338                                 determine_flow_ctrl(hw, port, data, status);
3339                                 if (hw->ksz_switch) {
3340                                         port_cfg_back_pressure(hw, p,
3341                                                 (1 == info->duplex));
3342                                 }
3343                                 change |= 1 << i;
3344                                 port_cfg_change(hw, port, info, status);
3345                         }
3346                         info->state = media_connected;
3347                 } else {
3348                         if (media_disconnected != info->state) {
3349                                 change |= 1 << i;
3350
3351                                 /* Indicate the link just goes down. */
3352                                 hw->port_mib[p].link_down = 1;
3353                         }
3354                         info->state = media_disconnected;
3355                 }
3356                 hw->port_mib[p].state = (u8) info->state;
3357         }
3358
3359         if (linked && media_disconnected == port->linked->state)
3360                 port->linked = linked;
3361
3362         hw_restore_intr(hw, interrupt);
3363 }
3364
3365 #define PHY_RESET_TIMEOUT               10
3366
3367 /**
3368  * port_set_link_speed - set port speed
3369  * @port:       The port instance.
3370  *
3371  * This routine sets the link speed of the switch ports.
3372  */
3373 static void port_set_link_speed(struct ksz_port *port)
3374 {
3375         struct ksz_hw *hw = port->hw;
3376         u16 data;
3377         u16 cfg;
3378         u8 status;
3379         int i;
3380         int p;
3381
3382         for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3383                 port_r16(hw, p, KS884X_PORT_CTRL_4_OFFSET, &data);
3384                 port_r8(hw, p, KS884X_PORT_STATUS_OFFSET, &status);
3385
3386                 cfg = 0;
3387                 if (status & PORT_STATUS_LINK_GOOD)
3388                         cfg = data;
3389
3390                 data |= PORT_AUTO_NEG_ENABLE;
3391                 data = advertised_flow_ctrl(port, data);
3392
3393                 data |= PORT_AUTO_NEG_100BTX_FD | PORT_AUTO_NEG_100BTX |
3394                         PORT_AUTO_NEG_10BT_FD | PORT_AUTO_NEG_10BT;
3395
3396                 /* Check if manual configuration is specified by the user. */
3397                 if (port->speed || port->duplex) {
3398                         if (10 == port->speed)
3399                                 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3400                                         PORT_AUTO_NEG_100BTX);
3401                         else if (100 == port->speed)
3402                                 data &= ~(PORT_AUTO_NEG_10BT_FD |
3403                                         PORT_AUTO_NEG_10BT);
3404                         if (1 == port->duplex)
3405                                 data &= ~(PORT_AUTO_NEG_100BTX_FD |
3406                                         PORT_AUTO_NEG_10BT_FD);
3407                         else if (2 == port->duplex)
3408                                 data &= ~(PORT_AUTO_NEG_100BTX |
3409                                         PORT_AUTO_NEG_10BT);
3410                 }
3411                 if (data != cfg) {
3412                         data |= PORT_AUTO_NEG_RESTART;
3413                         port_w16(hw, p, KS884X_PORT_CTRL_4_OFFSET, data);
3414                 }
3415         }
3416 }
3417
3418 /**
3419  * port_force_link_speed - force port speed
3420  * @port:       The port instance.
3421  *
3422  * This routine forces the link speed of the switch ports.
3423  */
3424 static void port_force_link_speed(struct ksz_port *port)
3425 {
3426         struct ksz_hw *hw = port->hw;
3427         u16 data;
3428         int i;
3429         int phy;
3430         int p;
3431
3432         for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
3433                 phy = KS884X_PHY_1_CTRL_OFFSET + p * PHY_CTRL_INTERVAL;
3434                 hw_r_phy_ctrl(hw, phy, &data);
3435
3436                 data &= ~PHY_AUTO_NEG_ENABLE;
3437
3438                 if (10 == port->speed)
3439                         data &= ~PHY_SPEED_100MBIT;
3440                 else if (100 == port->speed)
3441                         data |= PHY_SPEED_100MBIT;
3442                 if (1 == port->duplex)
3443                         data &= ~PHY_FULL_DUPLEX;
3444                 else if (2 == port->duplex)
3445                         data |= PHY_FULL_DUPLEX;
3446                 hw_w_phy_ctrl(hw, phy, data);
3447         }
3448 }
3449
3450 static void port_set_power_saving(struct ksz_port *port, int enable)
3451 {
3452         struct ksz_hw *hw = port->hw;
3453         int i;
3454         int p;
3455
3456         for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++)
3457                 port_cfg(hw, p,
3458                         KS884X_PORT_CTRL_4_OFFSET, PORT_POWER_DOWN, enable);
3459 }
3460
3461 /*
3462  * KSZ8841 power management functions
3463  */
3464
3465 /**
3466  * hw_chk_wol_pme_status - check PMEN pin
3467  * @hw:         The hardware instance.
3468  *
3469  * This function is used to check PMEN pin is asserted.
3470  *
3471  * Return 1 if PMEN pin is asserted; otherwise, 0.
3472  */
3473 static int hw_chk_wol_pme_status(struct ksz_hw *hw)
3474 {
3475         struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3476         struct pci_dev *pdev = hw_priv->pdev;
3477         u16 data;
3478
3479         if (!pdev->pm_cap)
3480                 return 0;
3481         pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3482         return (data & PCI_PM_CTRL_PME_STATUS) == PCI_PM_CTRL_PME_STATUS;
3483 }
3484
3485 /**
3486  * hw_clr_wol_pme_status - clear PMEN pin
3487  * @hw:         The hardware instance.
3488  *
3489  * This routine is used to clear PME_Status to deassert PMEN pin.
3490  */
3491 static void hw_clr_wol_pme_status(struct ksz_hw *hw)
3492 {
3493         struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3494         struct pci_dev *pdev = hw_priv->pdev;
3495         u16 data;
3496
3497         if (!pdev->pm_cap)
3498                 return;
3499
3500         /* Clear PME_Status to deassert PMEN pin. */
3501         pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3502         data |= PCI_PM_CTRL_PME_STATUS;
3503         pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3504 }
3505
3506 /**
3507  * hw_cfg_wol_pme - enable or disable Wake-on-LAN
3508  * @hw:         The hardware instance.
3509  * @set:        The flag indicating whether to enable or disable.
3510  *
3511  * This routine is used to enable or disable Wake-on-LAN.
3512  */
3513 static void hw_cfg_wol_pme(struct ksz_hw *hw, int set)
3514 {
3515         struct dev_info *hw_priv = container_of(hw, struct dev_info, hw);
3516         struct pci_dev *pdev = hw_priv->pdev;
3517         u16 data;
3518
3519         if (!pdev->pm_cap)
3520                 return;
3521         pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &data);
3522         data &= ~PCI_PM_CTRL_STATE_MASK;
3523         if (set)
3524                 data |= PCI_PM_CTRL_PME_ENABLE | PCI_D3hot;
3525         else
3526                 data &= ~PCI_PM_CTRL_PME_ENABLE;
3527         pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, data);
3528 }
3529
3530 /**
3531  * hw_cfg_wol - configure Wake-on-LAN features
3532  * @hw:         The hardware instance.
3533  * @frame:      The pattern frame bit.
3534  * @set:        The flag indicating whether to enable or disable.
3535  *
3536  * This routine is used to enable or disable certain Wake-on-LAN features.
3537  */
3538 static void hw_cfg_wol(struct ksz_hw *hw, u16 frame, int set)
3539 {
3540         u16 data;
3541
3542         data = readw(hw->io + KS8841_WOL_CTRL_OFFSET);
3543         if (set)
3544                 data |= frame;
3545         else
3546                 data &= ~frame;
3547         writew(data, hw->io + KS8841_WOL_CTRL_OFFSET);
3548 }
3549
3550 /**
3551  * hw_set_wol_frame - program Wake-on-LAN pattern
3552  * @hw:         The hardware instance.
3553  * @i:          The frame index.
3554  * @mask_size:  The size of the mask.
3555  * @mask:       Mask to ignore certain bytes in the pattern.
3556  * @frame_size: The size of the frame.
3557  * @pattern:    The frame data.
3558  *
3559  * This routine is used to program Wake-on-LAN pattern.
3560  */
3561 static void hw_set_wol_frame(struct ksz_hw *hw, int i, uint mask_size,
3562         const u8 *mask, uint frame_size, const u8 *pattern)
3563 {
3564         int bits;
3565         int from;
3566         int len;
3567         int to;
3568         u32 crc;
3569         u8 data[64];
3570         u8 val = 0;
3571
3572         if (frame_size > mask_size * 8)
3573                 frame_size = mask_size * 8;
3574         if (frame_size > 64)
3575                 frame_size = 64;
3576
3577         i *= 0x10;
3578         writel(0, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i);
3579         writel(0, hw->io + KS8841_WOL_FRAME_BYTE2_OFFSET + i);
3580
3581         bits = len = from = to = 0;
3582         do {
3583                 if (bits) {
3584                         if ((val & 1))
3585                                 data[to++] = pattern[from];
3586                         val >>= 1;
3587                         ++from;
3588                         --bits;
3589                 } else {
3590                         val = mask[len];
3591                         writeb(val, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i
3592                                 + len);
3593                         ++len;
3594                         if (val)
3595                                 bits = 8;
3596                         else
3597                                 from += 8;
3598                 }
3599         } while (from < (int) frame_size);
3600         if (val) {
3601                 bits = mask[len - 1];
3602                 val <<= (from % 8);
3603                 bits &= ~val;
3604                 writeb(bits, hw->io + KS8841_WOL_FRAME_BYTE0_OFFSET + i + len -
3605                         1);
3606         }
3607         crc = ether_crc(to, data);
3608         writel(crc, hw->io + KS8841_WOL_FRAME_CRC_OFFSET + i);
3609 }
3610
3611 /**
3612  * hw_add_wol_arp - add ARP pattern
3613  * @hw:         The hardware instance.
3614  * @ip_addr:    The IPv4 address assigned to the device.
3615  *
3616  * This routine is used to add ARP pattern for waking up the host.
3617  */
3618 static void hw_add_wol_arp(struct ksz_hw *hw, const u8 *ip_addr)
3619 {
3620         static const u8 mask[6] = { 0x3F, 0xF0, 0x3F, 0x00, 0xC0, 0x03 };
3621         u8 pattern[42] = {
3622                 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
3623                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3624                 0x08, 0x06,
3625                 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01,
3626                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3627                 0x00, 0x00, 0x00, 0x00,
3628                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3629                 0x00, 0x00, 0x00, 0x00 };
3630
3631         memcpy(&pattern[38], ip_addr, 4);
3632         hw_set_wol_frame(hw, 3, 6, mask, 42, pattern);
3633 }
3634
3635 /**
3636  * hw_add_wol_bcast - add broadcast pattern
3637  * @hw:         The hardware instance.
3638  *
3639  * This routine is used to add broadcast pattern for waking up the host.
3640  */
3641 static void hw_add_wol_bcast(struct ksz_hw *hw)
3642 {
3643         static const u8 mask[] = { 0x3F };
3644         static const u8 pattern[] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
3645
3646         hw_set_wol_frame(hw, 2, 1, mask, ETH_ALEN, pattern);
3647 }
3648
3649 /**
3650  * hw_add_wol_mcast - add multicast pattern
3651  * @hw:         The hardware instance.
3652  *
3653  * This routine is used to add multicast pattern for waking up the host.
3654  *
3655  * It is assumed the multicast packet is the ICMPv6 neighbor solicitation used
3656  * by IPv6 ping command.  Note that multicast packets are filtred through the
3657  * multicast hash table, so not all multicast packets can wake up the host.
3658  */
3659 static void hw_add_wol_mcast(struct ksz_hw *hw)
3660 {
3661         static const u8 mask[] = { 0x3F };
3662         u8 pattern[] = { 0x33, 0x33, 0xFF, 0x00, 0x00, 0x00 };
3663
3664         memcpy(&pattern[3], &hw->override_addr[3], 3);
3665         hw_set_wol_frame(hw, 1, 1, mask, 6, pattern);
3666 }
3667
3668 /**
3669  * hw_add_wol_ucast - add unicast pattern
3670  * @hw:         The hardware instance.
3671  *
3672  * This routine is used to add unicast pattern to wakeup the host.
3673  *
3674  * It is assumed the unicast packet is directed to the device, as the hardware
3675  * can only receive them in normal case.
3676  */
3677 static void hw_add_wol_ucast(struct ksz_hw *hw)
3678 {
3679         static const u8 mask[] = { 0x3F };
3680
3681         hw_set_wol_frame(hw, 0, 1, mask, ETH_ALEN, hw->override_addr);
3682 }
3683
3684 /**
3685  * hw_enable_wol - enable Wake-on-LAN
3686  * @hw:         The hardware instance.
3687  * @wol_enable: The Wake-on-LAN settings.
3688  * @net_addr:   The IPv4 address assigned to the device.
3689  *
3690  * This routine is used to enable Wake-on-LAN depending on driver settings.
3691  */
3692 static void hw_enable_wol(struct ksz_hw *hw, u32 wol_enable, const u8 *net_addr)
3693 {
3694         hw_cfg_wol(hw, KS8841_WOL_MAGIC_ENABLE, (wol_enable & WAKE_MAGIC));
3695         hw_cfg_wol(hw, KS8841_WOL_FRAME0_ENABLE, (wol_enable & WAKE_UCAST));
3696         hw_add_wol_ucast(hw);
3697         hw_cfg_wol(hw, KS8841_WOL_FRAME1_ENABLE, (wol_enable & WAKE_MCAST));
3698         hw_add_wol_mcast(hw);
3699         hw_cfg_wol(hw, KS8841_WOL_FRAME2_ENABLE, (wol_enable & WAKE_BCAST));
3700         hw_cfg_wol(hw, KS8841_WOL_FRAME3_ENABLE, (wol_enable & WAKE_ARP));
3701         hw_add_wol_arp(hw, net_addr);
3702 }
3703
3704 /**
3705  * hw_init - check driver is correct for the hardware
3706  * @hw:         The hardware instance.
3707  *
3708  * This function checks the hardware is correct for this driver and sets the
3709  * hardware up for proper initialization.
3710  *
3711  * Return number of ports or 0 if not right.
3712  */
3713 static int hw_init(struct ksz_hw *hw)
3714 {
3715         int rc = 0;
3716         u16 data;
3717         u16 revision;
3718
3719         /* Set bus speed to 125MHz. */
3720         writew(BUS_SPEED_125_MHZ, hw->io + KS884X_BUS_CTRL_OFFSET);
3721
3722         /* Check KSZ884x chip ID. */
3723         data = readw(hw->io + KS884X_CHIP_ID_OFFSET);
3724
3725         revision = (data & KS884X_REVISION_MASK) >> KS884X_REVISION_SHIFT;
3726         data &= KS884X_CHIP_ID_MASK_41;
3727         if (REG_CHIP_ID_41 == data)
3728                 rc = 1;
3729         else if (REG_CHIP_ID_42 == data)
3730                 rc = 2;
3731         else
3732                 return 0;
3733
3734         /* Setup hardware features or bug workarounds. */
3735         if (revision <= 1) {
3736                 hw->features |= SMALL_PACKET_TX_BUG;
3737                 if (1 == rc)
3738                         hw->features |= HALF_DUPLEX_SIGNAL_BUG;
3739         }
3740         return rc;
3741 }
3742
3743 /**
3744  * hw_reset - reset the hardware
3745  * @hw:         The hardware instance.
3746  *
3747  * This routine resets the hardware.
3748  */
3749 static void hw_reset(struct ksz_hw *hw)
3750 {
3751         writew(GLOBAL_SOFTWARE_RESET, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3752
3753         /* Wait for device to reset. */
3754         mdelay(10);
3755
3756         /* Write 0 to clear device reset. */
3757         writew(0, hw->io + KS884X_GLOBAL_CTRL_OFFSET);
3758 }
3759
3760 /**
3761  * hw_setup - setup the hardware
3762  * @hw:         The hardware instance.
3763  *
3764  * This routine setup the hardware for proper operation.
3765  */
3766 static void hw_setup(struct ksz_hw *hw)
3767 {
3768 #if SET_DEFAULT_LED
3769         u16 data;
3770
3771         /* Change default LED mode. */
3772         data = readw(hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3773         data &= ~LED_MODE;
3774         data |= SET_DEFAULT_LED;
3775         writew(data, hw->io + KS8842_SWITCH_CTRL_5_OFFSET);
3776 #endif
3777
3778         /* Setup transmit control. */
3779         hw->tx_cfg = (DMA_TX_PAD_ENABLE | DMA_TX_CRC_ENABLE |
3780                 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_TX_ENABLE);
3781
3782         /* Setup receive control. */
3783         hw->rx_cfg = (DMA_RX_BROADCAST | DMA_RX_UNICAST |
3784                 (DMA_BURST_DEFAULT << DMA_BURST_SHIFT) | DMA_RX_ENABLE);
3785         hw->rx_cfg |= KS884X_DMA_RX_MULTICAST;
3786
3787         /* Hardware cannot handle UDP packet in IP fragments. */
3788         hw->rx_cfg |= (DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP);
3789
3790         if (hw->all_multi)
3791                 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
3792         if (hw->promiscuous)
3793                 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
3794 }
3795
3796 /**
3797  * hw_setup_intr - setup interrupt mask
3798  * @hw:         The hardware instance.
3799  *
3800  * This routine setup the interrupt mask for proper operation.
3801  */
3802 static void hw_setup_intr(struct ksz_hw *hw)
3803 {
3804         hw->intr_mask = KS884X_INT_MASK | KS884X_INT_RX_OVERRUN;
3805 }
3806
3807 static void ksz_check_desc_num(struct ksz_desc_info *info)
3808 {
3809 #define MIN_DESC_SHIFT  2
3810
3811         int alloc = info->alloc;
3812         int shift;
3813
3814         shift = 0;
3815         while (!(alloc & 1)) {
3816                 shift++;
3817                 alloc >>= 1;
3818         }
3819         if (alloc != 1 || shift < MIN_DESC_SHIFT) {
3820                 pr_alert("Hardware descriptor numbers not right!\n");
3821                 while (alloc) {
3822                         shift++;
3823                         alloc >>= 1;
3824                 }
3825                 if (shift < MIN_DESC_SHIFT)
3826                         shift = MIN_DESC_SHIFT;
3827                 alloc = 1 << shift;
3828                 info->alloc = alloc;
3829         }
3830         info->mask = info->alloc - 1;
3831 }
3832
3833 static void hw_init_desc(struct ksz_desc_info *desc_info, int transmit)
3834 {
3835         int i;
3836         u32 phys = desc_info->ring_phys;
3837         struct ksz_hw_desc *desc = desc_info->ring_virt;
3838         struct ksz_desc *cur = desc_info->ring;
3839         struct ksz_desc *previous = NULL;
3840
3841         for (i = 0; i < desc_info->alloc; i++) {
3842                 cur->phw = desc++;
3843                 phys += desc_info->size;
3844                 previous = cur++;
3845                 previous->phw->next = cpu_to_le32(phys);
3846         }
3847         previous->phw->next = cpu_to_le32(desc_info->ring_phys);
3848         previous->sw.buf.rx.end_of_ring = 1;
3849         previous->phw->buf.data = cpu_to_le32(previous->sw.buf.data);
3850
3851         desc_info->avail = desc_info->alloc;
3852         desc_info->last = desc_info->next = 0;
3853
3854         desc_info->cur = desc_info->ring;
3855 }
3856
3857 /**
3858  * hw_set_desc_base - set descriptor base addresses
3859  * @hw:         The hardware instance.
3860  * @tx_addr:    The transmit descriptor base.
3861  * @rx_addr:    The receive descriptor base.
3862  *
3863  * This routine programs the descriptor base addresses after reset.
3864  */
3865 static void hw_set_desc_base(struct ksz_hw *hw, u32 tx_addr, u32 rx_addr)
3866 {
3867         /* Set base address of Tx/Rx descriptors. */
3868         writel(tx_addr, hw->io + KS_DMA_TX_ADDR);
3869         writel(rx_addr, hw->io + KS_DMA_RX_ADDR);
3870 }
3871
3872 static void hw_reset_pkts(struct ksz_desc_info *info)
3873 {
3874         info->cur = info->ring;
3875         info->avail = info->alloc;
3876         info->last = info->next = 0;
3877 }
3878
3879 static inline void hw_resume_rx(struct ksz_hw *hw)
3880 {
3881         writel(DMA_START, hw->io + KS_DMA_RX_START);
3882 }
3883
3884 /**
3885  * hw_start_rx - start receiving
3886  * @hw:         The hardware instance.
3887  *
3888  * This routine starts the receive function of the hardware.
3889  */
3890 static void hw_start_rx(struct ksz_hw *hw)
3891 {
3892         writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
3893
3894         /* Notify when the receive stops. */
3895         hw->intr_mask |= KS884X_INT_RX_STOPPED;
3896
3897         writel(DMA_START, hw->io + KS_DMA_RX_START);
3898         hw_ack_intr(hw, KS884X_INT_RX_STOPPED);
3899         hw->rx_stop++;
3900
3901         /* Variable overflows. */
3902         if (0 == hw->rx_stop)
3903                 hw->rx_stop = 2;
3904 }
3905
3906 /**
3907  * hw_stop_rx - stop receiving
3908  * @hw:         The hardware instance.
3909  *
3910  * This routine stops the receive function of the hardware.
3911  */
3912 static void hw_stop_rx(struct ksz_hw *hw)
3913 {
3914         hw->rx_stop = 0;
3915         hw_turn_off_intr(hw, KS884X_INT_RX_STOPPED);
3916         writel((hw->rx_cfg & ~DMA_RX_ENABLE), hw->io + KS_DMA_RX_CTRL);
3917 }
3918
3919 /**
3920  * hw_start_tx - start transmitting
3921  * @hw:         The hardware instance.
3922  *
3923  * This routine starts the transmit function of the hardware.
3924  */
3925 static void hw_start_tx(struct ksz_hw *hw)
3926 {
3927         writel(hw->tx_cfg, hw->io + KS_DMA_TX_CTRL);
3928 }
3929
3930 /**
3931  * hw_stop_tx - stop transmitting
3932  * @hw:         The hardware instance.
3933  *
3934  * This routine stops the transmit function of the hardware.
3935  */
3936 static void hw_stop_tx(struct ksz_hw *hw)
3937 {
3938         writel((hw->tx_cfg & ~DMA_TX_ENABLE), hw->io + KS_DMA_TX_CTRL);
3939 }
3940
3941 /**
3942  * hw_disable - disable hardware
3943  * @hw:         The hardware instance.
3944  *
3945  * This routine disables the hardware.
3946  */
3947 static void hw_disable(struct ksz_hw *hw)
3948 {
3949         hw_stop_rx(hw);
3950         hw_stop_tx(hw);
3951         hw->enabled = 0;
3952 }
3953
3954 /**
3955  * hw_enable - enable hardware
3956  * @hw:         The hardware instance.
3957  *
3958  * This routine enables the hardware.
3959  */
3960 static void hw_enable(struct ksz_hw *hw)
3961 {
3962         hw_start_tx(hw);
3963         hw_start_rx(hw);
3964         hw->enabled = 1;
3965 }
3966
3967 /**
3968  * hw_alloc_pkt - allocate enough descriptors for transmission
3969  * @hw:         The hardware instance.
3970  * @length:     The length of the packet.
3971  * @physical:   Number of descriptors required.
3972  *
3973  * This function allocates descriptors for transmission.
3974  *
3975  * Return 0 if not successful; 1 for buffer copy; or number of descriptors.
3976  */
3977 static int hw_alloc_pkt(struct ksz_hw *hw, int length, int physical)
3978 {
3979         /* Always leave one descriptor free. */
3980         if (hw->tx_desc_info.avail <= 1)
3981                 return 0;
3982
3983         /* Allocate a descriptor for transmission and mark it current. */
3984         get_tx_pkt(&hw->tx_desc_info, &hw->tx_desc_info.cur);
3985         hw->tx_desc_info.cur->sw.buf.tx.first_seg = 1;
3986
3987         /* Keep track of number of transmit descriptors used so far. */
3988         ++hw->tx_int_cnt;
3989         hw->tx_size += length;
3990
3991         /* Cannot hold on too much data. */
3992         if (hw->tx_size >= MAX_TX_HELD_SIZE)
3993                 hw->tx_int_cnt = hw->tx_int_mask + 1;
3994
3995         if (physical > hw->tx_desc_info.avail)
3996                 return 1;
3997
3998         return hw->tx_desc_info.avail;
3999 }
4000
4001 /**
4002  * hw_send_pkt - mark packet for transmission
4003  * @hw:         The hardware instance.
4004  *
4005  * This routine marks the packet for transmission in PCI version.
4006  */
4007 static void hw_send_pkt(struct ksz_hw *hw)
4008 {
4009         struct ksz_desc *cur = hw->tx_desc_info.cur;
4010
4011         cur->sw.buf.tx.last_seg = 1;
4012
4013         /* Interrupt only after specified number of descriptors used. */
4014         if (hw->tx_int_cnt > hw->tx_int_mask) {
4015                 cur->sw.buf.tx.intr = 1;
4016                 hw->tx_int_cnt = 0;
4017                 hw->tx_size = 0;
4018         }
4019
4020         /* KSZ8842 supports port directed transmission. */
4021         cur->sw.buf.tx.dest_port = hw->dst_ports;
4022
4023         release_desc(cur);
4024
4025         writel(0, hw->io + KS_DMA_TX_START);
4026 }
4027
4028 static int empty_addr(u8 *addr)
4029 {
4030         u32 *addr1 = (u32 *) addr;
4031         u16 *addr2 = (u16 *) &addr[4];
4032
4033         return 0 == *addr1 && 0 == *addr2;
4034 }
4035
4036 /**
4037  * hw_set_addr - set MAC address
4038  * @hw:         The hardware instance.
4039  *
4040  * This routine programs the MAC address of the hardware when the address is
4041  * overridden.
4042  */
4043 static void hw_set_addr(struct ksz_hw *hw)
4044 {
4045         int i;
4046
4047         for (i = 0; i < ETH_ALEN; i++)
4048                 writeb(hw->override_addr[MAC_ADDR_ORDER(i)],
4049                         hw->io + KS884X_ADDR_0_OFFSET + i);
4050
4051         sw_set_addr(hw, hw->override_addr);
4052 }
4053
4054 /**
4055  * hw_read_addr - read MAC address
4056  * @hw:         The hardware instance.
4057  *
4058  * This routine retrieves the MAC address of the hardware.
4059  */
4060 static void hw_read_addr(struct ksz_hw *hw)
4061 {
4062         int i;
4063
4064         for (i = 0; i < ETH_ALEN; i++)
4065                 hw->perm_addr[MAC_ADDR_ORDER(i)] = readb(hw->io +
4066                         KS884X_ADDR_0_OFFSET + i);
4067
4068         if (!hw->mac_override) {
4069                 memcpy(hw->override_addr, hw->perm_addr, ETH_ALEN);
4070                 if (empty_addr(hw->override_addr)) {
4071                         memcpy(hw->perm_addr, DEFAULT_MAC_ADDRESS, ETH_ALEN);
4072                         memcpy(hw->override_addr, DEFAULT_MAC_ADDRESS,
4073                                ETH_ALEN);
4074                         hw->override_addr[5] += hw->id;
4075                         hw_set_addr(hw);
4076                 }
4077         }
4078 }
4079
4080 static void hw_ena_add_addr(struct ksz_hw *hw, int index, u8 *mac_addr)
4081 {
4082         int i;
4083         u32 mac_addr_lo;
4084         u32 mac_addr_hi;
4085
4086         mac_addr_hi = 0;
4087         for (i = 0; i < 2; i++) {
4088                 mac_addr_hi <<= 8;
4089                 mac_addr_hi |= mac_addr[i];
4090         }
4091         mac_addr_hi |= ADD_ADDR_ENABLE;
4092         mac_addr_lo = 0;
4093         for (i = 2; i < 6; i++) {
4094                 mac_addr_lo <<= 8;
4095                 mac_addr_lo |= mac_addr[i];
4096         }
4097         index *= ADD_ADDR_INCR;
4098
4099         writel(mac_addr_lo, hw->io + index + KS_ADD_ADDR_0_LO);
4100         writel(mac_addr_hi, hw->io + index + KS_ADD_ADDR_0_HI);
4101 }
4102
4103 static void hw_set_add_addr(struct ksz_hw *hw)
4104 {
4105         int i;
4106
4107         for (i = 0; i < ADDITIONAL_ENTRIES; i++) {
4108                 if (empty_addr(hw->address[i]))
4109                         writel(0, hw->io + ADD_ADDR_INCR * i +
4110                                 KS_ADD_ADDR_0_HI);
4111                 else
4112                         hw_ena_add_addr(hw, i, hw->address[i]);
4113         }
4114 }
4115
4116 static int hw_add_addr(struct ksz_hw *hw, u8 *mac_addr)
4117 {
4118         int i;
4119         int j = ADDITIONAL_ENTRIES;
4120
4121         if (ether_addr_equal(hw->override_addr, mac_addr))
4122                 return 0;
4123         for (i = 0; i < hw->addr_list_size; i++) {
4124                 if (ether_addr_equal(hw->address[i], mac_addr))
4125                         return 0;
4126                 if (ADDITIONAL_ENTRIES == j && empty_addr(hw->address[i]))
4127                         j = i;
4128         }
4129         if (j < ADDITIONAL_ENTRIES) {
4130                 memcpy(hw->address[j], mac_addr, ETH_ALEN);
4131                 hw_ena_add_addr(hw, j, hw->address[j]);
4132                 return 0;
4133         }
4134         return -1;
4135 }
4136
4137 static int hw_del_addr(struct ksz_hw *hw, u8 *mac_addr)
4138 {
4139         int i;
4140
4141         for (i = 0; i < hw->addr_list_size; i++) {
4142                 if (ether_addr_equal(hw->address[i], mac_addr)) {
4143                         eth_zero_addr(hw->address[i]);
4144                         writel(0, hw->io + ADD_ADDR_INCR * i +
4145                                 KS_ADD_ADDR_0_HI);
4146                         return 0;
4147                 }
4148         }
4149         return -1;
4150 }
4151
4152 /**
4153  * hw_clr_multicast - clear multicast addresses
4154  * @hw:         The hardware instance.
4155  *
4156  * This routine removes all multicast addresses set in the hardware.
4157  */
4158 static void hw_clr_multicast(struct ksz_hw *hw)
4159 {
4160         int i;
4161
4162         for (i = 0; i < HW_MULTICAST_SIZE; i++) {
4163                 hw->multi_bits[i] = 0;
4164
4165                 writeb(0, hw->io + KS884X_MULTICAST_0_OFFSET + i);
4166         }
4167 }
4168
4169 /**
4170  * hw_set_grp_addr - set multicast addresses
4171  * @hw:         The hardware instance.
4172  *
4173  * This routine programs multicast addresses for the hardware to accept those
4174  * addresses.
4175  */
4176 static void hw_set_grp_addr(struct ksz_hw *hw)
4177 {
4178         int i;
4179         int index;
4180         int position;
4181         int value;
4182
4183         memset(hw->multi_bits, 0, sizeof(u8) * HW_MULTICAST_SIZE);
4184
4185         for (i = 0; i < hw->multi_list_size; i++) {
4186                 position = (ether_crc(6, hw->multi_list[i]) >> 26) & 0x3f;
4187                 index = position >> 3;
4188                 value = 1 << (position & 7);
4189                 hw->multi_bits[index] |= (u8) value;
4190         }
4191
4192         for (i = 0; i < HW_MULTICAST_SIZE; i++)
4193                 writeb(hw->multi_bits[i], hw->io + KS884X_MULTICAST_0_OFFSET +
4194                         i);
4195 }
4196
4197 /**
4198  * hw_set_multicast - enable or disable all multicast receiving
4199  * @hw:         The hardware instance.
4200  * @multicast:  To turn on or off the all multicast feature.
4201  *
4202  * This routine enables/disables the hardware to accept all multicast packets.
4203  */
4204 static void hw_set_multicast(struct ksz_hw *hw, u8 multicast)
4205 {
4206         /* Stop receiving for reconfiguration. */
4207         hw_stop_rx(hw);
4208
4209         if (multicast)
4210                 hw->rx_cfg |= DMA_RX_ALL_MULTICAST;
4211         else
4212                 hw->rx_cfg &= ~DMA_RX_ALL_MULTICAST;
4213
4214         if (hw->enabled)
4215                 hw_start_rx(hw);
4216 }
4217
4218 /**
4219  * hw_set_promiscuous - enable or disable promiscuous receiving
4220  * @hw:         The hardware instance.
4221  * @prom:       To turn on or off the promiscuous feature.
4222  *
4223  * This routine enables/disables the hardware to accept all packets.
4224  */
4225 static void hw_set_promiscuous(struct ksz_hw *hw, u8 prom)
4226 {
4227         /* Stop receiving for reconfiguration. */
4228         hw_stop_rx(hw);
4229
4230         if (prom)
4231                 hw->rx_cfg |= DMA_RX_PROMISCUOUS;
4232         else
4233                 hw->rx_cfg &= ~DMA_RX_PROMISCUOUS;
4234
4235         if (hw->enabled)
4236                 hw_start_rx(hw);
4237 }
4238
4239 /**
4240  * sw_enable - enable the switch
4241  * @hw:         The hardware instance.
4242  * @enable:     The flag to enable or disable the switch
4243  *
4244  * This routine is used to enable/disable the switch in KSZ8842.
4245  */
4246 static void sw_enable(struct ksz_hw *hw, int enable)
4247 {
4248         int port;
4249
4250         for (port = 0; port < SWITCH_PORT_NUM; port++) {
4251                 if (hw->dev_count > 1) {
4252                         /* Set port-base vlan membership with host port. */
4253                         sw_cfg_port_base_vlan(hw, port,
4254                                 HOST_MASK | (1 << port));
4255                         port_set_stp_state(hw, port, STP_STATE_DISABLED);
4256                 } else {
4257                         sw_cfg_port_base_vlan(hw, port, PORT_MASK);
4258                         port_set_stp_state(hw, port, STP_STATE_FORWARDING);
4259                 }
4260         }
4261         if (hw->dev_count > 1)
4262                 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_SIMPLE);
4263         else
4264                 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_FORWARDING);
4265
4266         if (enable)
4267                 enable = KS8842_START;
4268         writew(enable, hw->io + KS884X_CHIP_ID_OFFSET);
4269 }
4270
4271 /**
4272  * sw_setup - setup the switch
4273  * @hw:         The hardware instance.
4274  *
4275  * This routine setup the hardware switch engine for default operation.
4276  */
4277 static void sw_setup(struct ksz_hw *hw)
4278 {
4279         int port;
4280
4281         sw_set_global_ctrl(hw);
4282
4283         /* Enable switch broadcast storm protection at 10% percent rate. */
4284         sw_init_broad_storm(hw);
4285         hw_cfg_broad_storm(hw, BROADCAST_STORM_PROTECTION_RATE);
4286         for (port = 0; port < SWITCH_PORT_NUM; port++)
4287                 sw_ena_broad_storm(hw, port);
4288
4289         sw_init_prio(hw);
4290
4291         sw_init_mirror(hw);
4292
4293         sw_init_prio_rate(hw);
4294
4295         sw_init_vlan(hw);
4296
4297         if (hw->features & STP_SUPPORT)
4298                 sw_init_stp(hw);
4299         if (!sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
4300                         SWITCH_TX_FLOW_CTRL | SWITCH_RX_FLOW_CTRL))
4301                 hw->overrides |= PAUSE_FLOW_CTRL;
4302         sw_enable(hw, 1);
4303 }
4304
4305 /**
4306  * ksz_start_timer - start kernel timer
4307  * @info:       Kernel timer information.
4308  * @time:       The time tick.
4309  *
4310  * This routine starts the kernel timer after the specified time tick.
4311  */
4312 static void ksz_start_timer(struct ksz_timer_info *info, int time)
4313 {
4314         info->cnt = 0;
4315         info->timer.expires = jiffies + time;
4316         add_timer(&info->timer);
4317
4318         /* infinity */
4319         info->max = -1;
4320 }
4321
4322 /**
4323  * ksz_stop_timer - stop kernel timer
4324  * @info:       Kernel timer information.
4325  *
4326  * This routine stops the kernel timer.
4327  */
4328 static void ksz_stop_timer(struct ksz_timer_info *info)
4329 {
4330         if (info->max) {
4331                 info->max = 0;
4332                 del_timer_sync(&info->timer);
4333         }
4334 }
4335
4336 static void ksz_init_timer(struct ksz_timer_info *info, int period,
4337         void (*function)(struct timer_list *))
4338 {
4339         info->max = 0;
4340         info->period = period;
4341         timer_setup(&info->timer, function, 0);
4342 }
4343
4344 static void ksz_update_timer(struct ksz_timer_info *info)
4345 {
4346         ++info->cnt;
4347         if (info->max > 0) {
4348                 if (info->cnt < info->max) {
4349                         info->timer.expires = jiffies + info->period;
4350                         add_timer(&info->timer);
4351                 } else
4352                         info->max = 0;
4353         } else if (info->max < 0) {
4354                 info->timer.expires = jiffies + info->period;
4355                 add_timer(&info->timer);
4356         }
4357 }
4358
4359 /**
4360  * ksz_alloc_soft_desc - allocate software descriptors
4361  * @desc_info:  Descriptor information structure.
4362  * @transmit:   Indication that descriptors are for transmit.
4363  *
4364  * This local function allocates software descriptors for manipulation in
4365  * memory.
4366  *
4367  * Return 0 if successful.
4368  */
4369 static int ksz_alloc_soft_desc(struct ksz_desc_info *desc_info, int transmit)
4370 {
4371         desc_info->ring = kcalloc(desc_info->alloc, sizeof(struct ksz_desc),
4372                                   GFP_KERNEL);
4373         if (!desc_info->ring)
4374                 return 1;
4375         hw_init_desc(desc_info, transmit);
4376         return 0;
4377 }
4378
4379 /**
4380  * ksz_alloc_desc - allocate hardware descriptors
4381  * @adapter:    Adapter information structure.
4382  *
4383  * This local function allocates hardware descriptors for receiving and
4384  * transmitting.
4385  *
4386  * Return 0 if successful.
4387  */
4388 static int ksz_alloc_desc(struct dev_info *adapter)
4389 {
4390         struct ksz_hw *hw = &adapter->hw;
4391         int offset;
4392
4393         /* Allocate memory for RX & TX descriptors. */
4394         adapter->desc_pool.alloc_size =
4395                 hw->rx_desc_info.size * hw->rx_desc_info.alloc +
4396                 hw->tx_desc_info.size * hw->tx_desc_info.alloc +
4397                 DESC_ALIGNMENT;
4398
4399         adapter->desc_pool.alloc_virt =
4400                 pci_zalloc_consistent(adapter->pdev,
4401                                       adapter->desc_pool.alloc_size,
4402                                       &adapter->desc_pool.dma_addr);
4403         if (adapter->desc_pool.alloc_virt == NULL) {
4404                 adapter->desc_pool.alloc_size = 0;
4405                 return 1;
4406         }
4407
4408         /* Align to the next cache line boundary. */
4409         offset = (((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT) ?
4410                 (DESC_ALIGNMENT -
4411                 ((ulong) adapter->desc_pool.alloc_virt % DESC_ALIGNMENT)) : 0);
4412         adapter->desc_pool.virt = adapter->desc_pool.alloc_virt + offset;
4413         adapter->desc_pool.phys = adapter->desc_pool.dma_addr + offset;
4414
4415         /* Allocate receive/transmit descriptors. */
4416         hw->rx_desc_info.ring_virt = (struct ksz_hw_desc *)
4417                 adapter->desc_pool.virt;
4418         hw->rx_desc_info.ring_phys = adapter->desc_pool.phys;
4419         offset = hw->rx_desc_info.alloc * hw->rx_desc_info.size;
4420         hw->tx_desc_info.ring_virt = (struct ksz_hw_desc *)
4421                 (adapter->desc_pool.virt + offset);
4422         hw->tx_desc_info.ring_phys = adapter->desc_pool.phys + offset;
4423
4424         if (ksz_alloc_soft_desc(&hw->rx_desc_info, 0))
4425                 return 1;
4426         if (ksz_alloc_soft_desc(&hw->tx_desc_info, 1))
4427                 return 1;
4428
4429         return 0;
4430 }
4431
4432 /**
4433  * free_dma_buf - release DMA buffer resources
4434  * @adapter:    Adapter information structure.
4435  *
4436  * This routine is just a helper function to release the DMA buffer resources.
4437  */
4438 static void free_dma_buf(struct dev_info *adapter, struct ksz_dma_buf *dma_buf,
4439         int direction)
4440 {
4441         pci_unmap_single(adapter->pdev, dma_buf->dma, dma_buf->len, direction);
4442         dev_kfree_skb(dma_buf->skb);
4443         dma_buf->skb = NULL;
4444         dma_buf->dma = 0;
4445 }
4446
4447 /**
4448  * ksz_init_rx_buffers - initialize receive descriptors
4449  * @adapter:    Adapter information structure.
4450  *
4451  * This routine initializes DMA buffers for receiving.
4452  */
4453 static void ksz_init_rx_buffers(struct dev_info *adapter)
4454 {
4455         int i;
4456         struct ksz_desc *desc;
4457         struct ksz_dma_buf *dma_buf;
4458         struct ksz_hw *hw = &adapter->hw;
4459         struct ksz_desc_info *info = &hw->rx_desc_info;
4460
4461         for (i = 0; i < hw->rx_desc_info.alloc; i++) {
4462                 get_rx_pkt(info, &desc);
4463
4464                 dma_buf = DMA_BUFFER(desc);
4465                 if (dma_buf->skb && dma_buf->len != adapter->mtu)
4466                         free_dma_buf(adapter, dma_buf, PCI_DMA_FROMDEVICE);
4467                 dma_buf->len = adapter->mtu;
4468                 if (!dma_buf->skb)
4469                         dma_buf->skb = alloc_skb(dma_buf->len, GFP_ATOMIC);
4470                 if (dma_buf->skb && !dma_buf->dma)
4471                         dma_buf->dma = pci_map_single(
4472                                 adapter->pdev,
4473                                 skb_tail_pointer(dma_buf->skb),
4474                                 dma_buf->len,
4475                                 PCI_DMA_FROMDEVICE);
4476
4477                 /* Set descriptor. */
4478                 set_rx_buf(desc, dma_buf->dma);
4479                 set_rx_len(desc, dma_buf->len);
4480                 release_desc(desc);
4481         }
4482 }
4483
4484 /**
4485  * ksz_alloc_mem - allocate memory for hardware descriptors
4486  * @adapter:    Adapter information structure.
4487  *
4488  * This function allocates memory for use by hardware descriptors for receiving
4489  * and transmitting.
4490  *
4491  * Return 0 if successful.
4492  */
4493 static int ksz_alloc_mem(struct dev_info *adapter)
4494 {
4495         struct ksz_hw *hw = &adapter->hw;
4496
4497         /* Determine the number of receive and transmit descriptors. */
4498         hw->rx_desc_info.alloc = NUM_OF_RX_DESC;
4499         hw->tx_desc_info.alloc = NUM_OF_TX_DESC;
4500
4501         /* Determine how many descriptors to skip transmit interrupt. */
4502         hw->tx_int_cnt = 0;
4503         hw->tx_int_mask = NUM_OF_TX_DESC / 4;
4504         if (hw->tx_int_mask > 8)
4505                 hw->tx_int_mask = 8;
4506         while (hw->tx_int_mask) {
4507                 hw->tx_int_cnt++;
4508                 hw->tx_int_mask >>= 1;
4509         }
4510         if (hw->tx_int_cnt) {
4511                 hw->tx_int_mask = (1 << (hw->tx_int_cnt - 1)) - 1;
4512                 hw->tx_int_cnt = 0;
4513         }
4514
4515         /* Determine the descriptor size. */
4516         hw->rx_desc_info.size =
4517                 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4518                 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4519         hw->tx_desc_info.size =
4520                 (((sizeof(struct ksz_hw_desc) + DESC_ALIGNMENT - 1) /
4521                 DESC_ALIGNMENT) * DESC_ALIGNMENT);
4522         if (hw->rx_desc_info.size != sizeof(struct ksz_hw_desc))
4523                 pr_alert("Hardware descriptor size not right!\n");
4524         ksz_check_desc_num(&hw->rx_desc_info);
4525         ksz_check_desc_num(&hw->tx_desc_info);
4526
4527         /* Allocate descriptors. */
4528         if (ksz_alloc_desc(adapter))
4529                 return 1;
4530
4531         return 0;
4532 }
4533
4534 /**
4535  * ksz_free_desc - free software and hardware descriptors
4536  * @adapter:    Adapter information structure.
4537  *
4538  * This local routine frees the software and hardware descriptors allocated by
4539  * ksz_alloc_desc().
4540  */
4541 static void ksz_free_desc(struct dev_info *adapter)
4542 {
4543         struct ksz_hw *hw = &adapter->hw;
4544
4545         /* Reset descriptor. */
4546         hw->rx_desc_info.ring_virt = NULL;
4547         hw->tx_desc_info.ring_virt = NULL;
4548         hw->rx_desc_info.ring_phys = 0;
4549         hw->tx_desc_info.ring_phys = 0;
4550
4551         /* Free memory. */
4552         if (adapter->desc_pool.alloc_virt)
4553                 pci_free_consistent(
4554                         adapter->pdev,
4555                         adapter->desc_pool.alloc_size,
4556                         adapter->desc_pool.alloc_virt,
4557                         adapter->desc_pool.dma_addr);
4558
4559         /* Reset resource pool. */
4560         adapter->desc_pool.alloc_size = 0;
4561         adapter->desc_pool.alloc_virt = NULL;
4562
4563         kfree(hw->rx_desc_info.ring);
4564         hw->rx_desc_info.ring = NULL;
4565         kfree(hw->tx_desc_info.ring);
4566         hw->tx_desc_info.ring = NULL;
4567 }
4568
4569 /**
4570  * ksz_free_buffers - free buffers used in the descriptors
4571  * @adapter:    Adapter information structure.
4572  * @desc_info:  Descriptor information structure.
4573  *
4574  * This local routine frees buffers used in the DMA buffers.
4575  */
4576 static void ksz_free_buffers(struct dev_info *adapter,
4577         struct ksz_desc_info *desc_info, int direction)
4578 {
4579         int i;
4580         struct ksz_dma_buf *dma_buf;
4581         struct ksz_desc *desc = desc_info->ring;
4582
4583         for (i = 0; i < desc_info->alloc; i++) {
4584                 dma_buf = DMA_BUFFER(desc);
4585                 if (dma_buf->skb)
4586                         free_dma_buf(adapter, dma_buf, direction);
4587                 desc++;
4588         }
4589 }
4590
4591 /**
4592  * ksz_free_mem - free all resources used by descriptors
4593  * @adapter:    Adapter information structure.
4594  *
4595  * This local routine frees all the resources allocated by ksz_alloc_mem().
4596  */
4597 static void ksz_free_mem(struct dev_info *adapter)
4598 {
4599         /* Free transmit buffers. */
4600         ksz_free_buffers(adapter, &adapter->hw.tx_desc_info,
4601                 PCI_DMA_TODEVICE);
4602
4603         /* Free receive buffers. */
4604         ksz_free_buffers(adapter, &adapter->hw.rx_desc_info,
4605                 PCI_DMA_FROMDEVICE);
4606
4607         /* Free descriptors. */
4608         ksz_free_desc(adapter);
4609 }
4610
4611 static void get_mib_counters(struct ksz_hw *hw, int first, int cnt,
4612         u64 *counter)
4613 {
4614         int i;
4615         int mib;
4616         int port;
4617         struct ksz_port_mib *port_mib;
4618
4619         memset(counter, 0, sizeof(u64) * TOTAL_PORT_COUNTER_NUM);
4620         for (i = 0, port = first; i < cnt; i++, port++) {
4621                 port_mib = &hw->port_mib[port];
4622                 for (mib = port_mib->mib_start; mib < hw->mib_cnt; mib++)
4623                         counter[mib] += port_mib->counter[mib];
4624         }
4625 }
4626
4627 /**
4628  * send_packet - send packet
4629  * @skb:        Socket buffer.
4630  * @dev:        Network device.
4631  *
4632  * This routine is used to send a packet out to the network.
4633  */
4634 static void send_packet(struct sk_buff *skb, struct net_device *dev)
4635 {
4636         struct ksz_desc *desc;
4637         struct ksz_desc *first;
4638         struct dev_priv *priv = netdev_priv(dev);
4639         struct dev_info *hw_priv = priv->adapter;
4640         struct ksz_hw *hw = &hw_priv->hw;
4641         struct ksz_desc_info *info = &hw->tx_desc_info;
4642         struct ksz_dma_buf *dma_buf;
4643         int len;
4644         int last_frag = skb_shinfo(skb)->nr_frags;
4645
4646         /*
4647          * KSZ8842 with multiple device interfaces needs to be told which port
4648          * to send.
4649          */
4650         if (hw->dev_count > 1)
4651                 hw->dst_ports = 1 << priv->port.first_port;
4652
4653         /* Hardware will pad the length to 60. */
4654         len = skb->len;
4655
4656         /* Remember the very first descriptor. */
4657         first = info->cur;
4658         desc = first;
4659
4660         dma_buf = DMA_BUFFER(desc);
4661         if (last_frag) {
4662                 int frag;
4663                 skb_frag_t *this_frag;
4664
4665                 dma_buf->len = skb_headlen(skb);
4666
4667                 dma_buf->dma = pci_map_single(
4668                         hw_priv->pdev, skb->data, dma_buf->len,
4669                         PCI_DMA_TODEVICE);
4670                 set_tx_buf(desc, dma_buf->dma);
4671                 set_tx_len(desc, dma_buf->len);
4672
4673                 frag = 0;
4674                 do {
4675                         this_frag = &skb_shinfo(skb)->frags[frag];
4676
4677                         /* Get a new descriptor. */
4678                         get_tx_pkt(info, &desc);
4679
4680                         /* Keep track of descriptors used so far. */
4681                         ++hw->tx_int_cnt;
4682
4683                         dma_buf = DMA_BUFFER(desc);
4684                         dma_buf->len = skb_frag_size(this_frag);
4685
4686                         dma_buf->dma = pci_map_single(
4687                                 hw_priv->pdev,
4688                                 skb_frag_address(this_frag),
4689                                 dma_buf->len,
4690                                 PCI_DMA_TODEVICE);
4691                         set_tx_buf(desc, dma_buf->dma);
4692                         set_tx_len(desc, dma_buf->len);
4693
4694                         frag++;
4695                         if (frag == last_frag)
4696                                 break;
4697
4698                         /* Do not release the last descriptor here. */
4699                         release_desc(desc);
4700                 } while (1);
4701
4702                 /* current points to the last descriptor. */
4703                 info->cur = desc;
4704
4705                 /* Release the first descriptor. */
4706                 release_desc(first);
4707         } else {
4708                 dma_buf->len = len;
4709
4710                 dma_buf->dma = pci_map_single(
4711                         hw_priv->pdev, skb->data, dma_buf->len,
4712                         PCI_DMA_TODEVICE);
4713                 set_tx_buf(desc, dma_buf->dma);
4714                 set_tx_len(desc, dma_buf->len);
4715         }
4716
4717         if (skb->ip_summed == CHECKSUM_PARTIAL) {
4718                 (desc)->sw.buf.tx.csum_gen_tcp = 1;
4719                 (desc)->sw.buf.tx.csum_gen_udp = 1;
4720         }
4721
4722         /*
4723          * The last descriptor holds the packet so that it can be returned to
4724          * network subsystem after all descriptors are transmitted.
4725          */
4726         dma_buf->skb = skb;
4727
4728         hw_send_pkt(hw);
4729
4730         /* Update transmit statistics. */
4731         dev->stats.tx_packets++;
4732         dev->stats.tx_bytes += len;
4733 }
4734
4735 /**
4736  * transmit_cleanup - clean up transmit descriptors
4737  * @dev:        Network device.
4738  *
4739  * This routine is called to clean up the transmitted buffers.
4740  */
4741 static void transmit_cleanup(struct dev_info *hw_priv, int normal)
4742 {
4743         int last;
4744         union desc_stat status;
4745         struct ksz_hw *hw = &hw_priv->hw;
4746         struct ksz_desc_info *info = &hw->tx_desc_info;
4747         struct ksz_desc *desc;
4748         struct ksz_dma_buf *dma_buf;
4749         struct net_device *dev = NULL;
4750
4751         spin_lock_irq(&hw_priv->hwlock);
4752         last = info->last;
4753
4754         while (info->avail < info->alloc) {
4755                 /* Get next descriptor which is not hardware owned. */
4756                 desc = &info->ring[last];
4757                 status.data = le32_to_cpu(desc->phw->ctrl.data);
4758                 if (status.tx.hw_owned) {
4759                         if (normal)
4760                                 break;
4761                         else
4762                                 reset_desc(desc, status);
4763                 }
4764
4765                 dma_buf = DMA_BUFFER(desc);
4766                 pci_unmap_single(
4767                         hw_priv->pdev, dma_buf->dma, dma_buf->len,
4768                         PCI_DMA_TODEVICE);
4769
4770                 /* This descriptor contains the last buffer in the packet. */
4771                 if (dma_buf->skb) {
4772                         dev = dma_buf->skb->dev;
4773
4774                         /* Release the packet back to network subsystem. */
4775                         dev_kfree_skb_irq(dma_buf->skb);
4776                         dma_buf->skb = NULL;
4777                 }
4778
4779                 /* Free the transmitted descriptor. */
4780                 last++;
4781                 last &= info->mask;
4782                 info->avail++;
4783         }
4784         info->last = last;
4785         spin_unlock_irq(&hw_priv->hwlock);
4786
4787         /* Notify the network subsystem that the packet has been sent. */
4788         if (dev)
4789                 netif_trans_update(dev);
4790 }
4791
4792 /**
4793  * transmit_done - transmit done processing
4794  * @dev:        Network device.
4795  *
4796  * This routine is called when the transmit interrupt is triggered, indicating
4797  * either a packet is sent successfully or there are transmit errors.
4798  */
4799 static void tx_done(struct dev_info *hw_priv)
4800 {
4801         struct ksz_hw *hw = &hw_priv->hw;
4802         int port;
4803
4804         transmit_cleanup(hw_priv, 1);
4805
4806         for (port = 0; port < hw->dev_count; port++) {
4807                 struct net_device *dev = hw->port_info[port].pdev;
4808
4809                 if (netif_running(dev) && netif_queue_stopped(dev))
4810                         netif_wake_queue(dev);
4811         }
4812 }
4813
4814 static inline void copy_old_skb(struct sk_buff *old, struct sk_buff *skb)
4815 {
4816         skb->dev = old->dev;
4817         skb->protocol = old->protocol;
4818         skb->ip_summed = old->ip_summed;
4819         skb->csum = old->csum;
4820         skb_set_network_header(skb, ETH_HLEN);
4821
4822         dev_consume_skb_any(old);
4823 }
4824
4825 /**
4826  * netdev_tx - send out packet
4827  * @skb:        Socket buffer.
4828  * @dev:        Network device.
4829  *
4830  * This function is used by the upper network layer to send out a packet.
4831  *
4832  * Return 0 if successful; otherwise an error code indicating failure.
4833  */
4834 static netdev_tx_t netdev_tx(struct sk_buff *skb, struct net_device *dev)
4835 {
4836         struct dev_priv *priv = netdev_priv(dev);
4837         struct dev_info *hw_priv = priv->adapter;
4838         struct ksz_hw *hw = &hw_priv->hw;
4839         int left;
4840         int num = 1;
4841         int rc = 0;
4842
4843         if (hw->features & SMALL_PACKET_TX_BUG) {
4844                 struct sk_buff *org_skb = skb;
4845
4846                 if (skb->len <= 48) {
4847                         if (skb_end_pointer(skb) - skb->data >= 50) {
4848                                 memset(&skb->data[skb->len], 0, 50 - skb->len);
4849                                 skb->len = 50;
4850                         } else {
4851                                 skb = netdev_alloc_skb(dev, 50);
4852                                 if (!skb)
4853                                         return NETDEV_TX_BUSY;
4854                                 memcpy(skb->data, org_skb->data, org_skb->len);
4855                                 memset(&skb->data[org_skb->len], 0,
4856                                         50 - org_skb->len);
4857                                 skb->len = 50;
4858                                 copy_old_skb(org_skb, skb);
4859                         }
4860                 }
4861         }
4862
4863         spin_lock_irq(&hw_priv->hwlock);
4864
4865         num = skb_shinfo(skb)->nr_frags + 1;
4866         left = hw_alloc_pkt(hw, skb->len, num);
4867         if (left) {
4868                 if (left < num ||
4869                     (CHECKSUM_PARTIAL == skb->ip_summed &&
4870                      skb->protocol == htons(ETH_P_IPV6))) {
4871                         struct sk_buff *org_skb = skb;
4872
4873                         skb = netdev_alloc_skb(dev, org_skb->len);
4874                         if (!skb) {
4875                                 rc = NETDEV_TX_BUSY;
4876                                 goto unlock;
4877                         }
4878                         skb_copy_and_csum_dev(org_skb, skb->data);
4879                         org_skb->ip_summed = CHECKSUM_NONE;
4880                         skb->len = org_skb->len;
4881                         copy_old_skb(org_skb, skb);
4882                 }
4883                 send_packet(skb, dev);
4884                 if (left <= num)
4885                         netif_stop_queue(dev);
4886         } else {
4887                 /* Stop the transmit queue until packet is allocated. */
4888                 netif_stop_queue(dev);
4889                 rc = NETDEV_TX_BUSY;
4890         }
4891 unlock:
4892         spin_unlock_irq(&hw_priv->hwlock);
4893
4894         return rc;
4895 }
4896
4897 /**
4898  * netdev_tx_timeout - transmit timeout processing
4899  * @dev:        Network device.
4900  *
4901  * This routine is called when the transmit timer expires.  That indicates the
4902  * hardware is not running correctly because transmit interrupts are not
4903  * triggered to free up resources so that the transmit routine can continue
4904  * sending out packets.  The hardware is reset to correct the problem.
4905  */
4906 static void netdev_tx_timeout(struct net_device *dev)
4907 {
4908         static unsigned long last_reset;
4909
4910         struct dev_priv *priv = netdev_priv(dev);
4911         struct dev_info *hw_priv = priv->adapter;
4912         struct ksz_hw *hw = &hw_priv->hw;
4913         int port;
4914
4915         if (hw->dev_count > 1) {
4916                 /*
4917                  * Only reset the hardware if time between calls is long
4918                  * enough.
4919                  */
4920                 if (time_before_eq(jiffies, last_reset + dev->watchdog_timeo))
4921                         hw_priv = NULL;
4922         }
4923
4924         last_reset = jiffies;
4925         if (hw_priv) {
4926                 hw_dis_intr(hw);
4927                 hw_disable(hw);
4928
4929                 transmit_cleanup(hw_priv, 0);
4930                 hw_reset_pkts(&hw->rx_desc_info);
4931                 hw_reset_pkts(&hw->tx_desc_info);
4932                 ksz_init_rx_buffers(hw_priv);
4933
4934                 hw_reset(hw);
4935
4936                 hw_set_desc_base(hw,
4937                         hw->tx_desc_info.ring_phys,
4938                         hw->rx_desc_info.ring_phys);
4939                 hw_set_addr(hw);
4940                 if (hw->all_multi)
4941                         hw_set_multicast(hw, hw->all_multi);
4942                 else if (hw->multi_list_size)
4943                         hw_set_grp_addr(hw);
4944
4945                 if (hw->dev_count > 1) {
4946                         hw_set_add_addr(hw);
4947                         for (port = 0; port < SWITCH_PORT_NUM; port++) {
4948                                 struct net_device *port_dev;
4949
4950                                 port_set_stp_state(hw, port,
4951                                         STP_STATE_DISABLED);
4952
4953                                 port_dev = hw->port_info[port].pdev;
4954                                 if (netif_running(port_dev))
4955                                         port_set_stp_state(hw, port,
4956                                                 STP_STATE_SIMPLE);
4957                         }
4958                 }
4959
4960                 hw_enable(hw);
4961                 hw_ena_intr(hw);
4962         }
4963
4964         netif_trans_update(dev);
4965         netif_wake_queue(dev);
4966 }
4967
4968 static inline void csum_verified(struct sk_buff *skb)
4969 {
4970         unsigned short protocol;
4971         struct iphdr *iph;
4972
4973         protocol = skb->protocol;
4974         skb_reset_network_header(skb);
4975         iph = (struct iphdr *) skb_network_header(skb);
4976         if (protocol == htons(ETH_P_8021Q)) {
4977                 protocol = iph->tot_len;
4978                 skb_set_network_header(skb, VLAN_HLEN);
4979                 iph = (struct iphdr *) skb_network_header(skb);
4980         }
4981         if (protocol == htons(ETH_P_IP)) {
4982                 if (iph->protocol == IPPROTO_TCP)
4983                         skb->ip_summed = CHECKSUM_UNNECESSARY;
4984         }
4985 }
4986
4987 static inline int rx_proc(struct net_device *dev, struct ksz_hw* hw,
4988         struct ksz_desc *desc, union desc_stat status)
4989 {
4990         int packet_len;
4991         struct dev_priv *priv = netdev_priv(dev);
4992         struct dev_info *hw_priv = priv->adapter;
4993         struct ksz_dma_buf *dma_buf;
4994         struct sk_buff *skb;
4995         int rx_status;
4996
4997         /* Received length includes 4-byte CRC. */
4998         packet_len = status.rx.frame_len - 4;
4999
5000         dma_buf = DMA_BUFFER(desc);
5001         pci_dma_sync_single_for_cpu(
5002                 hw_priv->pdev, dma_buf->dma, packet_len + 4,
5003                 PCI_DMA_FROMDEVICE);
5004
5005         do {
5006                 /* skb->data != skb->head */
5007                 skb = netdev_alloc_skb(dev, packet_len + 2);
5008                 if (!skb) {
5009                         dev->stats.rx_dropped++;
5010                         return -ENOMEM;
5011                 }
5012
5013                 /*
5014                  * Align socket buffer in 4-byte boundary for better
5015                  * performance.
5016                  */
5017                 skb_reserve(skb, 2);
5018
5019                 skb_put_data(skb, dma_buf->skb->data, packet_len);
5020         } while (0);
5021
5022         skb->protocol = eth_type_trans(skb, dev);
5023
5024         if (hw->rx_cfg & (DMA_RX_CSUM_UDP | DMA_RX_CSUM_TCP))
5025                 csum_verified(skb);
5026
5027         /* Update receive statistics. */
5028         dev->stats.rx_packets++;
5029         dev->stats.rx_bytes += packet_len;
5030
5031         /* Notify upper layer for received packet. */
5032         rx_status = netif_rx(skb);
5033
5034         return 0;
5035 }
5036
5037 static int dev_rcv_packets(struct dev_info *hw_priv)
5038 {
5039         int next;
5040         union desc_stat status;
5041         struct ksz_hw *hw = &hw_priv->hw;
5042         struct net_device *dev = hw->port_info[0].pdev;
5043         struct ksz_desc_info *info = &hw->rx_desc_info;
5044         int left = info->alloc;
5045         struct ksz_desc *desc;
5046         int received = 0;
5047
5048         next = info->next;
5049         while (left--) {
5050                 /* Get next descriptor which is not hardware owned. */
5051                 desc = &info->ring[next];
5052                 status.data = le32_to_cpu(desc->phw->ctrl.data);
5053                 if (status.rx.hw_owned)
5054                         break;
5055
5056                 /* Status valid only when last descriptor bit is set. */
5057                 if (status.rx.last_desc && status.rx.first_desc) {
5058                         if (rx_proc(dev, hw, desc, status))
5059                                 goto release_packet;
5060                         received++;
5061                 }
5062
5063 release_packet:
5064                 release_desc(desc);
5065                 next++;
5066                 next &= info->mask;
5067         }
5068         info->next = next;
5069
5070         return received;
5071 }
5072
5073 static int port_rcv_packets(struct dev_info *hw_priv)
5074 {
5075         int next;
5076         union desc_stat status;
5077         struct ksz_hw *hw = &hw_priv->hw;
5078         struct net_device *dev = hw->port_info[0].pdev;
5079         struct ksz_desc_info *info = &hw->rx_desc_info;
5080         int left = info->alloc;
5081         struct ksz_desc *desc;
5082         int received = 0;
5083
5084         next = info->next;
5085         while (left--) {
5086                 /* Get next descriptor which is not hardware owned. */
5087                 desc = &info->ring[next];
5088                 status.data = le32_to_cpu(desc->phw->ctrl.data);
5089                 if (status.rx.hw_owned)
5090                         break;
5091
5092                 if (hw->dev_count > 1) {
5093                         /* Get received port number. */
5094                         int p = HW_TO_DEV_PORT(status.rx.src_port);
5095
5096                         dev = hw->port_info[p].pdev;
5097                         if (!netif_running(dev))
5098                                 goto release_packet;
5099                 }
5100
5101                 /* Status valid only when last descriptor bit is set. */
5102                 if (status.rx.last_desc && status.rx.first_desc) {
5103                         if (rx_proc(dev, hw, desc, status))
5104                                 goto release_packet;
5105                         received++;
5106                 }
5107
5108 release_packet:
5109                 release_desc(desc);
5110                 next++;
5111                 next &= info->mask;
5112         }
5113         info->next = next;
5114
5115         return received;
5116 }
5117
5118 static int dev_rcv_special(struct dev_info *hw_priv)
5119 {
5120         int next;
5121         union desc_stat status;
5122         struct ksz_hw *hw = &hw_priv->hw;
5123         struct net_device *dev = hw->port_info[0].pdev;
5124         struct ksz_desc_info *info = &hw->rx_desc_info;
5125         int left = info->alloc;
5126         struct ksz_desc *desc;
5127         int received = 0;
5128
5129         next = info->next;
5130         while (left--) {
5131                 /* Get next descriptor which is not hardware owned. */
5132                 desc = &info->ring[next];
5133                 status.data = le32_to_cpu(desc->phw->ctrl.data);
5134                 if (status.rx.hw_owned)
5135                         break;
5136
5137                 if (hw->dev_count > 1) {
5138                         /* Get received port number. */
5139                         int p = HW_TO_DEV_PORT(status.rx.src_port);
5140
5141                         dev = hw->port_info[p].pdev;
5142                         if (!netif_running(dev))
5143                                 goto release_packet;
5144                 }
5145
5146                 /* Status valid only when last descriptor bit is set. */
5147                 if (status.rx.last_desc && status.rx.first_desc) {
5148                         /*
5149                          * Receive without error.  With receive errors
5150                          * disabled, packets with receive errors will be
5151                          * dropped, so no need to check the error bit.
5152                          */
5153                         if (!status.rx.error || (status.data &
5154                                         KS_DESC_RX_ERROR_COND) ==
5155                                         KS_DESC_RX_ERROR_TOO_LONG) {
5156                                 if (rx_proc(dev, hw, desc, status))
5157                                         goto release_packet;
5158                                 received++;
5159                         } else {
5160                                 struct dev_priv *priv = netdev_priv(dev);
5161
5162                                 /* Update receive error statistics. */
5163                                 priv->port.counter[OID_COUNTER_RCV_ERROR]++;
5164                         }
5165                 }
5166
5167 release_packet:
5168                 release_desc(desc);
5169                 next++;
5170                 next &= info->mask;
5171         }
5172         info->next = next;
5173
5174         return received;
5175 }
5176
5177 static void rx_proc_task(unsigned long data)
5178 {
5179         struct dev_info *hw_priv = (struct dev_info *) data;
5180         struct ksz_hw *hw = &hw_priv->hw;
5181
5182         if (!hw->enabled)
5183                 return;
5184         if (unlikely(!hw_priv->dev_rcv(hw_priv))) {
5185
5186                 /* In case receive process is suspended because of overrun. */
5187                 hw_resume_rx(hw);
5188
5189                 /* tasklets are interruptible. */
5190                 spin_lock_irq(&hw_priv->hwlock);
5191                 hw_turn_on_intr(hw, KS884X_INT_RX_MASK);
5192                 spin_unlock_irq(&hw_priv->hwlock);
5193         } else {
5194                 hw_ack_intr(hw, KS884X_INT_RX);
5195                 tasklet_schedule(&hw_priv->rx_tasklet);
5196         }
5197 }
5198
5199 static void tx_proc_task(unsigned long data)
5200 {
5201         struct dev_info *hw_priv = (struct dev_info *) data;
5202         struct ksz_hw *hw = &hw_priv->hw;
5203
5204         hw_ack_intr(hw, KS884X_INT_TX_MASK);
5205
5206         tx_done(hw_priv);
5207
5208         /* tasklets are interruptible. */
5209         spin_lock_irq(&hw_priv->hwlock);
5210         hw_turn_on_intr(hw, KS884X_INT_TX);
5211         spin_unlock_irq(&hw_priv->hwlock);
5212 }
5213
5214 static inline void handle_rx_stop(struct ksz_hw *hw)
5215 {
5216         /* Receive just has been stopped. */
5217         if (0 == hw->rx_stop)
5218                 hw->intr_mask &= ~KS884X_INT_RX_STOPPED;
5219         else if (hw->rx_stop > 1) {
5220                 if (hw->enabled && (hw->rx_cfg & DMA_RX_ENABLE)) {
5221                         hw_start_rx(hw);
5222                 } else {
5223                         hw->intr_mask &= ~KS884X_INT_RX_STOPPED;
5224                         hw->rx_stop = 0;
5225                 }
5226         } else
5227                 /* Receive just has been started. */
5228                 hw->rx_stop++;
5229 }
5230
5231 /**
5232  * netdev_intr - interrupt handling
5233  * @irq:        Interrupt number.
5234  * @dev_id:     Network device.
5235  *
5236  * This function is called by upper network layer to signal interrupt.
5237  *
5238  * Return IRQ_HANDLED if interrupt is handled.
5239  */
5240 static irqreturn_t netdev_intr(int irq, void *dev_id)
5241 {
5242         uint int_enable = 0;
5243         struct net_device *dev = (struct net_device *) dev_id;
5244         struct dev_priv *priv = netdev_priv(dev);
5245         struct dev_info *hw_priv = priv->adapter;
5246         struct ksz_hw *hw = &hw_priv->hw;
5247
5248         spin_lock(&hw_priv->hwlock);
5249
5250         hw_read_intr(hw, &int_enable);
5251
5252         /* Not our interrupt! */
5253         if (!int_enable) {
5254                 spin_unlock(&hw_priv->hwlock);
5255                 return IRQ_NONE;
5256         }
5257
5258         do {
5259                 hw_ack_intr(hw, int_enable);
5260                 int_enable &= hw->intr_mask;
5261
5262                 if (unlikely(int_enable & KS884X_INT_TX_MASK)) {
5263                         hw_dis_intr_bit(hw, KS884X_INT_TX_MASK);
5264                         tasklet_schedule(&hw_priv->tx_tasklet);
5265                 }
5266
5267                 if (likely(int_enable & KS884X_INT_RX)) {
5268                         hw_dis_intr_bit(hw, KS884X_INT_RX);
5269                         tasklet_schedule(&hw_priv->rx_tasklet);
5270                 }
5271
5272                 if (unlikely(int_enable & KS884X_INT_RX_OVERRUN)) {
5273                         dev->stats.rx_fifo_errors++;
5274                         hw_resume_rx(hw);
5275                 }
5276
5277                 if (unlikely(int_enable & KS884X_INT_PHY)) {
5278                         struct ksz_port *port = &priv->port;
5279
5280                         hw->features |= LINK_INT_WORKING;
5281                         port_get_link_speed(port);
5282                 }
5283
5284                 if (unlikely(int_enable & KS884X_INT_RX_STOPPED)) {
5285                         handle_rx_stop(hw);
5286                         break;
5287                 }
5288
5289                 if (unlikely(int_enable & KS884X_INT_TX_STOPPED)) {
5290                         u32 data;
5291
5292                         hw->intr_mask &= ~KS884X_INT_TX_STOPPED;
5293                         pr_info("Tx stopped\n");
5294                         data = readl(hw->io + KS_DMA_TX_CTRL);
5295                         if (!(data & DMA_TX_ENABLE))
5296                                 pr_info("Tx disabled\n");
5297                         break;
5298                 }
5299         } while (0);
5300
5301         hw_ena_intr(hw);
5302
5303         spin_unlock(&hw_priv->hwlock);
5304
5305         return IRQ_HANDLED;
5306 }
5307
5308 /*
5309  * Linux network device functions
5310  */
5311
5312 static unsigned long next_jiffies;
5313
5314 #ifdef CONFIG_NET_POLL_CONTROLLER
5315 static void netdev_netpoll(struct net_device *dev)
5316 {
5317         struct dev_priv *priv = netdev_priv(dev);
5318         struct dev_info *hw_priv = priv->adapter;
5319
5320         hw_dis_intr(&hw_priv->hw);
5321         netdev_intr(dev->irq, dev);
5322 }
5323 #endif
5324
5325 static void bridge_change(struct ksz_hw *hw)
5326 {
5327         int port;
5328         u8  member;
5329         struct ksz_switch *sw = hw->ksz_switch;
5330
5331         /* No ports in forwarding state. */
5332         if (!sw->member) {
5333                 port_set_stp_state(hw, SWITCH_PORT_NUM, STP_STATE_SIMPLE);
5334                 sw_block_addr(hw);
5335         }
5336         for (port = 0; port < SWITCH_PORT_NUM; port++) {
5337                 if (STP_STATE_FORWARDING == sw->port_cfg[port].stp_state)
5338                         member = HOST_MASK | sw->member;
5339                 else
5340                         member = HOST_MASK | (1 << port);
5341                 if (member != sw->port_cfg[port].member)
5342                         sw_cfg_port_base_vlan(hw, port, member);
5343         }
5344 }
5345
5346 /**
5347  * netdev_close - close network device
5348  * @dev:        Network device.
5349  *
5350  * This function process the close operation of network device.  This is caused
5351  * by the user command "ifconfig ethX down."
5352  *
5353  * Return 0 if successful; otherwise an error code indicating failure.
5354  */
5355 static int netdev_close(struct net_device *dev)
5356 {
5357         struct dev_priv *priv = netdev_priv(dev);
5358         struct dev_info *hw_priv = priv->adapter;
5359         struct ksz_port *port = &priv->port;
5360         struct ksz_hw *hw = &hw_priv->hw;
5361         int pi;
5362
5363         netif_stop_queue(dev);
5364
5365         ksz_stop_timer(&priv->monitor_timer_info);
5366
5367         /* Need to shut the port manually in multiple device interfaces mode. */
5368         if (hw->dev_count > 1) {
5369                 port_set_stp_state(hw, port->first_port, STP_STATE_DISABLED);
5370
5371                 /* Port is closed.  Need to change bridge setting. */
5372                 if (hw->features & STP_SUPPORT) {
5373                         pi = 1 << port->first_port;
5374                         if (hw->ksz_switch->member & pi) {
5375                                 hw->ksz_switch->member &= ~pi;
5376                                 bridge_change(hw);
5377                         }
5378                 }
5379         }
5380         if (port->first_port > 0)
5381                 hw_del_addr(hw, dev->dev_addr);
5382         if (!hw_priv->wol_enable)
5383                 port_set_power_saving(port, true);
5384
5385         if (priv->multicast)
5386                 --hw->all_multi;
5387         if (priv->promiscuous)
5388                 --hw->promiscuous;
5389
5390         hw_priv->opened--;
5391         if (!(hw_priv->opened)) {
5392                 ksz_stop_timer(&hw_priv->mib_timer_info);
5393                 flush_work(&hw_priv->mib_read);
5394
5395                 hw_dis_intr(hw);
5396                 hw_disable(hw);
5397                 hw_clr_multicast(hw);
5398
5399                 /* Delay for receive task to stop scheduling itself. */
5400                 msleep(2000 / HZ);
5401
5402                 tasklet_kill(&hw_priv->rx_tasklet);
5403                 tasklet_kill(&hw_priv->tx_tasklet);
5404                 free_irq(dev->irq, hw_priv->dev);
5405
5406                 transmit_cleanup(hw_priv, 0);
5407                 hw_reset_pkts(&hw->rx_desc_info);
5408                 hw_reset_pkts(&hw->tx_desc_info);
5409
5410                 /* Clean out static MAC table when the switch is shutdown. */
5411                 if (hw->features & STP_SUPPORT)
5412                         sw_clr_sta_mac_table(hw);
5413         }
5414
5415         return 0;
5416 }
5417
5418 static void hw_cfg_huge_frame(struct dev_info *hw_priv, struct ksz_hw *hw)
5419 {
5420         if (hw->ksz_switch) {
5421                 u32 data;
5422
5423                 data = readw(hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
5424                 if (hw->features & RX_HUGE_FRAME)
5425                         data |= SWITCH_HUGE_PACKET;
5426                 else
5427                         data &= ~SWITCH_HUGE_PACKET;
5428                 writew(data, hw->io + KS8842_SWITCH_CTRL_2_OFFSET);
5429         }
5430         if (hw->features & RX_HUGE_FRAME) {
5431                 hw->rx_cfg |= DMA_RX_ERROR;
5432                 hw_priv->dev_rcv = dev_rcv_special;
5433         } else {
5434                 hw->rx_cfg &= ~DMA_RX_ERROR;
5435                 if (hw->dev_count > 1)
5436                         hw_priv->dev_rcv = port_rcv_packets;
5437                 else
5438                         hw_priv->dev_rcv = dev_rcv_packets;
5439         }
5440 }
5441
5442 static int prepare_hardware(struct net_device *dev)
5443 {
5444         struct dev_priv *priv = netdev_priv(dev);
5445         struct dev_info *hw_priv = priv->adapter;
5446         struct ksz_hw *hw = &hw_priv->hw;
5447         int rc = 0;
5448
5449         /* Remember the network device that requests interrupts. */
5450         hw_priv->dev = dev;
5451         rc = request_irq(dev->irq, netdev_intr, IRQF_SHARED, dev->name, dev);
5452         if (rc)
5453                 return rc;
5454         tasklet_init(&hw_priv->rx_tasklet, rx_proc_task,
5455                      (unsigned long) hw_priv);
5456         tasklet_init(&hw_priv->tx_tasklet, tx_proc_task,
5457                      (unsigned long) hw_priv);
5458
5459         hw->promiscuous = 0;
5460         hw->all_multi = 0;
5461         hw->multi_list_size = 0;
5462
5463         hw_reset(hw);
5464
5465         hw_set_desc_base(hw,
5466                 hw->tx_desc_info.ring_phys, hw->rx_desc_info.ring_phys);
5467         hw_set_addr(hw);
5468         hw_cfg_huge_frame(hw_priv, hw);
5469         ksz_init_rx_buffers(hw_priv);
5470         return 0;
5471 }
5472
5473 static void set_media_state(struct net_device *dev, int media_state)
5474 {
5475         struct dev_priv *priv = netdev_priv(dev);
5476
5477         if (media_state == priv->media_state)
5478                 netif_carrier_on(dev);
5479         else
5480                 netif_carrier_off(dev);
5481         netif_info(priv, link, dev, "link %s\n",
5482                    media_state == priv->media_state ? "on" : "off");
5483 }
5484
5485 /**
5486  * netdev_open - open network device
5487  * @dev:        Network device.
5488  *
5489  * This function process the open operation of network device.  This is caused
5490  * by the user command "ifconfig ethX up."
5491  *
5492  * Return 0 if successful; otherwise an error code indicating failure.
5493  */
5494 static int netdev_open(struct net_device *dev)
5495 {
5496         struct dev_priv *priv = netdev_priv(dev);
5497         struct dev_info *hw_priv = priv->adapter;
5498         struct ksz_hw *hw = &hw_priv->hw;
5499         struct ksz_port *port = &priv->port;
5500         int i;
5501         int p;
5502         int rc = 0;
5503
5504         priv->multicast = 0;
5505         priv->promiscuous = 0;
5506
5507         /* Reset device statistics. */
5508         memset(&dev->stats, 0, sizeof(struct net_device_stats));
5509         memset((void *) port->counter, 0,
5510                 (sizeof(u64) * OID_COUNTER_LAST));
5511
5512         if (!(hw_priv->opened)) {
5513                 rc = prepare_hardware(dev);
5514                 if (rc)
5515                         return rc;
5516                 for (i = 0; i < hw->mib_port_cnt; i++) {
5517                         if (next_jiffies < jiffies)
5518                                 next_jiffies = jiffies + HZ * 2;
5519                         else
5520                                 next_jiffies += HZ * 1;
5521                         hw_priv->counter[i].time = next_jiffies;
5522                         hw->port_mib[i].state = media_disconnected;
5523                         port_init_cnt(hw, i);
5524                 }
5525                 if (hw->ksz_switch)
5526                         hw->port_mib[HOST_PORT].state = media_connected;
5527                 else {
5528                         hw_add_wol_bcast(hw);
5529                         hw_cfg_wol_pme(hw, 0);
5530                         hw_clr_wol_pme_status(&hw_priv->hw);
5531                 }
5532         }
5533         port_set_power_saving(port, false);
5534
5535         for (i = 0, p = port->first_port; i < port->port_cnt; i++, p++) {
5536                 /*
5537                  * Initialize to invalid value so that link detection
5538                  * is done.
5539                  */
5540                 hw->port_info[p].partner = 0xFF;
5541                 hw->port_info[p].state = media_disconnected;
5542         }
5543
5544         /* Need to open the port in multiple device interfaces mode. */
5545         if (hw->dev_count > 1) {
5546                 port_set_stp_state(hw, port->first_port, STP_STATE_SIMPLE);
5547                 if (port->first_port > 0)
5548                         hw_add_addr(hw, dev->dev_addr);
5549         }
5550
5551         port_get_link_speed(port);
5552         if (port->force_link)
5553                 port_force_link_speed(port);
5554         else
5555                 port_set_link_speed(port);
5556
5557         if (!(hw_priv->opened)) {
5558                 hw_setup_intr(hw);
5559                 hw_enable(hw);
5560                 hw_ena_intr(hw);
5561
5562                 if (hw->mib_port_cnt)
5563                         ksz_start_timer(&hw_priv->mib_timer_info,
5564                                 hw_priv->mib_timer_info.period);
5565         }
5566
5567         hw_priv->opened++;
5568
5569         ksz_start_timer(&priv->monitor_timer_info,
5570                 priv->monitor_timer_info.period);
5571
5572         priv->media_state = port->linked->state;
5573
5574         set_media_state(dev, media_connected);
5575         netif_start_queue(dev);
5576
5577         return 0;
5578 }
5579
5580 /* RX errors = rx_errors */
5581 /* RX dropped = rx_dropped */
5582 /* RX overruns = rx_fifo_errors */
5583 /* RX frame = rx_crc_errors + rx_frame_errors + rx_length_errors */
5584 /* TX errors = tx_errors */
5585 /* TX dropped = tx_dropped */
5586 /* TX overruns = tx_fifo_errors */
5587 /* TX carrier = tx_aborted_errors + tx_carrier_errors + tx_window_errors */
5588 /* collisions = collisions */
5589
5590 /**
5591  * netdev_query_statistics - query network device statistics
5592  * @dev:        Network device.
5593  *
5594  * This function returns the statistics of the network device.  The device
5595  * needs not be opened.
5596  *
5597  * Return network device statistics.
5598  */
5599 static struct net_device_stats *netdev_query_statistics(struct net_device *dev)
5600 {
5601         struct dev_priv *priv = netdev_priv(dev);
5602         struct ksz_port *port = &priv->port;
5603         struct ksz_hw *hw = &priv->adapter->hw;
5604         struct ksz_port_mib *mib;
5605         int i;
5606         int p;
5607
5608         dev->stats.rx_errors = port->counter[OID_COUNTER_RCV_ERROR];
5609         dev->stats.tx_errors = port->counter[OID_COUNTER_XMIT_ERROR];
5610
5611         /* Reset to zero to add count later. */
5612         dev->stats.multicast = 0;
5613         dev->stats.collisions = 0;
5614         dev->stats.rx_length_errors = 0;
5615         dev->stats.rx_crc_errors = 0;
5616         dev->stats.rx_frame_errors = 0;
5617         dev->stats.tx_window_errors = 0;
5618
5619         for (i = 0, p = port->first_port; i < port->mib_port_cnt; i++, p++) {
5620                 mib = &hw->port_mib[p];
5621
5622                 dev->stats.multicast += (unsigned long)
5623                         mib->counter[MIB_COUNTER_RX_MULTICAST];
5624
5625                 dev->stats.collisions += (unsigned long)
5626                         mib->counter[MIB_COUNTER_TX_TOTAL_COLLISION];
5627
5628                 dev->stats.rx_length_errors += (unsigned long)(
5629                         mib->counter[MIB_COUNTER_RX_UNDERSIZE] +
5630                         mib->counter[MIB_COUNTER_RX_FRAGMENT] +
5631                         mib->counter[MIB_COUNTER_RX_OVERSIZE] +
5632                         mib->counter[MIB_COUNTER_RX_JABBER]);
5633                 dev->stats.rx_crc_errors += (unsigned long)
5634                         mib->counter[MIB_COUNTER_RX_CRC_ERR];
5635                 dev->stats.rx_frame_errors += (unsigned long)(
5636                         mib->counter[MIB_COUNTER_RX_ALIGNMENT_ERR] +
5637                         mib->counter[MIB_COUNTER_RX_SYMBOL_ERR]);
5638
5639                 dev->stats.tx_window_errors += (unsigned long)
5640                         mib->counter[MIB_COUNTER_TX_LATE_COLLISION];
5641         }
5642
5643         return &dev->stats;
5644 }
5645
5646 /**
5647  * netdev_set_mac_address - set network device MAC address
5648  * @dev:        Network device.
5649  * @addr:       Buffer of MAC address.
5650  *
5651  * This function is used to set the MAC address of the network device.
5652  *
5653  * Return 0 to indicate success.
5654  */
5655 static int netdev_set_mac_address(struct net_device *dev, void *addr)
5656 {
5657         struct dev_priv *priv = netdev_priv(dev);
5658         struct dev_info *hw_priv = priv->adapter;
5659         struct ksz_hw *hw = &hw_priv->hw;
5660         struct sockaddr *mac = addr;
5661         uint interrupt;
5662
5663         if (priv->port.first_port > 0)
5664                 hw_del_addr(hw, dev->dev_addr);
5665         else {
5666                 hw->mac_override = 1;
5667                 memcpy(hw->override_addr, mac->sa_data, ETH_ALEN);
5668         }
5669
5670         memcpy(dev->dev_addr, mac->sa_data, ETH_ALEN);
5671
5672         interrupt = hw_block_intr(hw);
5673
5674         if (priv->port.first_port > 0)
5675                 hw_add_addr(hw, dev->dev_addr);
5676         else
5677                 hw_set_addr(hw);
5678         hw_restore_intr(hw, interrupt);
5679
5680         return 0;
5681 }
5682
5683 static void dev_set_promiscuous(struct net_device *dev, struct dev_priv *priv,
5684         struct ksz_hw *hw, int promiscuous)
5685 {
5686         if (promiscuous != priv->promiscuous) {
5687                 u8 prev_state = hw->promiscuous;
5688
5689                 if (promiscuous)
5690                         ++hw->promiscuous;
5691                 else
5692                         --hw->promiscuous;
5693                 priv->promiscuous = promiscuous;
5694
5695                 /* Turn on/off promiscuous mode. */
5696                 if (hw->promiscuous <= 1 && prev_state <= 1)
5697                         hw_set_promiscuous(hw, hw->promiscuous);
5698
5699                 /*
5700                  * Port is not in promiscuous mode, meaning it is released
5701                  * from the bridge.
5702                  */
5703                 if ((hw->features & STP_SUPPORT) && !promiscuous &&
5704                     (dev->priv_flags & IFF_BRIDGE_PORT)) {
5705                         struct ksz_switch *sw = hw->ksz_switch;
5706                         int port = priv->port.first_port;
5707
5708                         port_set_stp_state(hw, port, STP_STATE_DISABLED);
5709                         port = 1 << port;
5710                         if (sw->member & port) {
5711                                 sw->member &= ~port;
5712                                 bridge_change(hw);
5713                         }
5714                 }
5715         }
5716 }
5717
5718 static void dev_set_multicast(struct dev_priv *priv, struct ksz_hw *hw,
5719         int multicast)
5720 {
5721         if (multicast != priv->multicast) {
5722                 u8 all_multi = hw->all_multi;
5723
5724                 if (multicast)
5725                         ++hw->all_multi;
5726                 else
5727                         --hw->all_multi;
5728                 priv->multicast = multicast;
5729
5730                 /* Turn on/off all multicast mode. */
5731                 if (hw->all_multi <= 1 && all_multi <= 1)
5732                         hw_set_multicast(hw, hw->all_multi);
5733         }
5734 }
5735
5736 /**
5737  * netdev_set_rx_mode
5738  * @dev:        Network device.
5739  *
5740  * This routine is used to set multicast addresses or put the network device
5741  * into promiscuous mode.
5742  */
5743 static void netdev_set_rx_mode(struct net_device *dev)
5744 {
5745         struct dev_priv *priv = netdev_priv(dev);
5746         struct dev_info *hw_priv = priv->adapter;
5747         struct ksz_hw *hw = &hw_priv->hw;
5748         struct netdev_hw_addr *ha;
5749         int multicast = (dev->flags & IFF_ALLMULTI);
5750
5751         dev_set_promiscuous(dev, priv, hw, (dev->flags & IFF_PROMISC));
5752
5753         if (hw_priv->hw.dev_count > 1)
5754                 multicast |= (dev->flags & IFF_MULTICAST);
5755         dev_set_multicast(priv, hw, multicast);
5756
5757         /* Cannot use different hashes in multiple device interfaces mode. */
5758         if (hw_priv->hw.dev_count > 1)
5759                 return;
5760
5761         if ((dev->flags & IFF_MULTICAST) && !netdev_mc_empty(dev)) {
5762                 int i = 0;
5763
5764                 /* List too big to support so turn on all multicast mode. */
5765                 if (netdev_mc_count(dev) > MAX_MULTICAST_LIST) {
5766                         if (MAX_MULTICAST_LIST != hw->multi_list_size) {
5767                                 hw->multi_list_size = MAX_MULTICAST_LIST;
5768                                 ++hw->all_multi;
5769                                 hw_set_multicast(hw, hw->all_multi);
5770                         }
5771                         return;
5772                 }
5773
5774                 netdev_for_each_mc_addr(ha, dev) {
5775                         if (i >= MAX_MULTICAST_LIST)
5776                                 break;
5777                         memcpy(hw->multi_list[i++], ha->addr, ETH_ALEN);
5778                 }
5779                 hw->multi_list_size = (u8) i;
5780                 hw_set_grp_addr(hw);
5781         } else {
5782                 if (MAX_MULTICAST_LIST == hw->multi_list_size) {
5783                         --hw->all_multi;
5784                         hw_set_multicast(hw, hw->all_multi);
5785                 }
5786                 hw->multi_list_size = 0;
5787                 hw_clr_multicast(hw);
5788         }
5789 }
5790
5791 static int netdev_change_mtu(struct net_device *dev, int new_mtu)
5792 {
5793         struct dev_priv *priv = netdev_priv(dev);
5794         struct dev_info *hw_priv = priv->adapter;
5795         struct ksz_hw *hw = &hw_priv->hw;
5796         int hw_mtu;
5797
5798         if (netif_running(dev))
5799                 return -EBUSY;
5800
5801         /* Cannot use different MTU in multiple device interfaces mode. */
5802         if (hw->dev_count > 1)
5803                 if (dev != hw_priv->dev)
5804                         return 0;
5805
5806         hw_mtu = new_mtu + ETHERNET_HEADER_SIZE + 4;
5807         if (hw_mtu > REGULAR_RX_BUF_SIZE) {
5808                 hw->features |= RX_HUGE_FRAME;
5809                 hw_mtu = MAX_RX_BUF_SIZE;
5810         } else {
5811                 hw->features &= ~RX_HUGE_FRAME;
5812                 hw_mtu = REGULAR_RX_BUF_SIZE;
5813         }
5814         hw_mtu = (hw_mtu + 3) & ~3;
5815         hw_priv->mtu = hw_mtu;
5816         dev->mtu = new_mtu;
5817
5818         return 0;
5819 }
5820
5821 /**
5822  * netdev_ioctl - I/O control processing
5823  * @dev:        Network device.
5824  * @ifr:        Interface request structure.
5825  * @cmd:        I/O control code.
5826  *
5827  * This function is used to process I/O control calls.
5828  *
5829  * Return 0 to indicate success.
5830  */
5831 static int netdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
5832 {
5833         struct dev_priv *priv = netdev_priv(dev);
5834         struct dev_info *hw_priv = priv->adapter;
5835         struct ksz_hw *hw = &hw_priv->hw;
5836         struct ksz_port *port = &priv->port;
5837         int result = 0;
5838         struct mii_ioctl_data *data = if_mii(ifr);
5839
5840         if (down_interruptible(&priv->proc_sem))
5841                 return -ERESTARTSYS;
5842
5843         switch (cmd) {
5844         /* Get address of MII PHY in use. */
5845         case SIOCGMIIPHY:
5846                 data->phy_id = priv->id;
5847
5848                 /* Fallthrough... */
5849
5850         /* Read MII PHY register. */
5851         case SIOCGMIIREG:
5852                 if (data->phy_id != priv->id || data->reg_num >= 6)
5853                         result = -EIO;
5854                 else
5855                         hw_r_phy(hw, port->linked->port_id, data->reg_num,
5856                                 &data->val_out);
5857                 break;
5858
5859         /* Write MII PHY register. */
5860         case SIOCSMIIREG:
5861                 if (!capable(CAP_NET_ADMIN))
5862                         result = -EPERM;
5863                 else if (data->phy_id != priv->id || data->reg_num >= 6)
5864                         result = -EIO;
5865                 else
5866                         hw_w_phy(hw, port->linked->port_id, data->reg_num,
5867                                 data->val_in);
5868                 break;
5869
5870         default:
5871                 result = -EOPNOTSUPP;
5872         }
5873
5874         up(&priv->proc_sem);
5875
5876         return result;
5877 }
5878
5879 /*
5880  * MII support
5881  */
5882
5883 /**
5884  * mdio_read - read PHY register
5885  * @dev:        Network device.
5886  * @phy_id:     The PHY id.
5887  * @reg_num:    The register number.
5888  *
5889  * This function returns the PHY register value.
5890  *
5891  * Return the register value.
5892  */
5893 static int mdio_read(struct net_device *dev, int phy_id, int reg_num)
5894 {
5895         struct dev_priv *priv = netdev_priv(dev);
5896         struct ksz_port *port = &priv->port;
5897         struct ksz_hw *hw = port->hw;
5898         u16 val_out;
5899
5900         hw_r_phy(hw, port->linked->port_id, reg_num << 1, &val_out);
5901         return val_out;
5902 }
5903
5904 /**
5905  * mdio_write - set PHY register
5906  * @dev:        Network device.
5907  * @phy_id:     The PHY id.
5908  * @reg_num:    The register number.
5909  * @val:        The register value.
5910  *
5911  * This procedure sets the PHY register value.
5912  */
5913 static void mdio_write(struct net_device *dev, int phy_id, int reg_num, int val)
5914 {
5915         struct dev_priv *priv = netdev_priv(dev);
5916         struct ksz_port *port = &priv->port;
5917         struct ksz_hw *hw = port->hw;
5918         int i;
5919         int pi;
5920
5921         for (i = 0, pi = port->first_port; i < port->port_cnt; i++, pi++)
5922                 hw_w_phy(hw, pi, reg_num << 1, val);
5923 }
5924
5925 /*
5926  * ethtool support
5927  */
5928
5929 #define EEPROM_SIZE                     0x40
5930
5931 static u16 eeprom_data[EEPROM_SIZE] = { 0 };
5932
5933 #define ADVERTISED_ALL                  \
5934         (ADVERTISED_10baseT_Half |      \
5935         ADVERTISED_10baseT_Full |       \
5936         ADVERTISED_100baseT_Half |      \
5937         ADVERTISED_100baseT_Full)
5938
5939 /* These functions use the MII functions in mii.c. */
5940
5941 /**
5942  * netdev_get_link_ksettings - get network device settings
5943  * @dev:        Network device.
5944  * @cmd:        Ethtool command.
5945  *
5946  * This function queries the PHY and returns its state in the ethtool command.
5947  *
5948  * Return 0 if successful; otherwise an error code.
5949  */
5950 static int netdev_get_link_ksettings(struct net_device *dev,
5951                                      struct ethtool_link_ksettings *cmd)
5952 {
5953         struct dev_priv *priv = netdev_priv(dev);
5954         struct dev_info *hw_priv = priv->adapter;
5955
5956         mutex_lock(&hw_priv->lock);
5957         mii_ethtool_get_link_ksettings(&priv->mii_if, cmd);
5958         ethtool_link_ksettings_add_link_mode(cmd, advertising, TP);
5959         mutex_unlock(&hw_priv->lock);
5960
5961         /* Save advertised settings for workaround in next function. */
5962         ethtool_convert_link_mode_to_legacy_u32(&priv->advertising,
5963                                                 cmd->link_modes.advertising);
5964
5965         return 0;
5966 }
5967
5968 /**
5969  * netdev_set_link_ksettings - set network device settings
5970  * @dev:        Network device.
5971  * @cmd:        Ethtool command.
5972  *
5973  * This function sets the PHY according to the ethtool command.
5974  *
5975  * Return 0 if successful; otherwise an error code.
5976  */
5977 static int netdev_set_link_ksettings(struct net_device *dev,
5978                                      const struct ethtool_link_ksettings *cmd)
5979 {
5980         struct dev_priv *priv = netdev_priv(dev);
5981         struct dev_info *hw_priv = priv->adapter;
5982         struct ksz_port *port = &priv->port;
5983         struct ethtool_link_ksettings copy_cmd;
5984         u32 speed = cmd->base.speed;
5985         u32 advertising;
5986         int rc;
5987
5988         ethtool_convert_link_mode_to_legacy_u32(&advertising,
5989                                                 cmd->link_modes.advertising);
5990
5991         /*
5992          * ethtool utility does not change advertised setting if auto
5993          * negotiation is not specified explicitly.
5994          */
5995         if (cmd->base.autoneg && priv->advertising == advertising) {
5996                 advertising |= ADVERTISED_ALL;
5997                 if (10 == speed)
5998                         advertising &=
5999                                 ~(ADVERTISED_100baseT_Full |
6000                                 ADVERTISED_100baseT_Half);
6001                 else if (100 == speed)
6002                         advertising &=
6003                                 ~(ADVERTISED_10baseT_Full |
6004                                 ADVERTISED_10baseT_Half);
6005                 if (0 == cmd->base.duplex)
6006                         advertising &=
6007                                 ~(ADVERTISED_100baseT_Full |
6008                                 ADVERTISED_10baseT_Full);
6009                 else if (1 == cmd->base.duplex)
6010                         advertising &=
6011                                 ~(ADVERTISED_100baseT_Half |
6012                                 ADVERTISED_10baseT_Half);
6013         }
6014         mutex_lock(&hw_priv->lock);
6015         if (cmd->base.autoneg &&
6016             (advertising & ADVERTISED_ALL) == ADVERTISED_ALL) {
6017                 port->duplex = 0;
6018                 port->speed = 0;
6019                 port->force_link = 0;
6020         } else {
6021                 port->duplex = cmd->base.duplex + 1;
6022                 if (1000 != speed)
6023                         port->speed = speed;
6024                 if (cmd->base.autoneg)
6025                         port->force_link = 0;
6026                 else
6027                         port->force_link = 1;
6028         }
6029
6030         memcpy(&copy_cmd, cmd, sizeof(copy_cmd));
6031         ethtool_convert_legacy_u32_to_link_mode(copy_cmd.link_modes.advertising,
6032                                                 advertising);
6033         rc = mii_ethtool_set_link_ksettings(
6034                 &priv->mii_if,
6035                 (const struct ethtool_link_ksettings *)&copy_cmd);
6036         mutex_unlock(&hw_priv->lock);
6037         return rc;
6038 }
6039
6040 /**
6041  * netdev_nway_reset - restart auto-negotiation
6042  * @dev:        Network device.
6043  *
6044  * This function restarts the PHY for auto-negotiation.
6045  *
6046  * Return 0 if successful; otherwise an error code.
6047  */
6048 static int netdev_nway_reset(struct net_device *dev)
6049 {
6050         struct dev_priv *priv = netdev_priv(dev);
6051         struct dev_info *hw_priv = priv->adapter;
6052         int rc;
6053
6054         mutex_lock(&hw_priv->lock);
6055         rc = mii_nway_restart(&priv->mii_if);
6056         mutex_unlock(&hw_priv->lock);
6057         return rc;
6058 }
6059
6060 /**
6061  * netdev_get_link - get network device link status
6062  * @dev:        Network device.
6063  *
6064  * This function gets the link status from the PHY.
6065  *
6066  * Return true if PHY is linked and false otherwise.
6067  */
6068 static u32 netdev_get_link(struct net_device *dev)
6069 {
6070         struct dev_priv *priv = netdev_priv(dev);
6071         int rc;
6072
6073         rc = mii_link_ok(&priv->mii_if);
6074         return rc;
6075 }
6076
6077 /**
6078  * netdev_get_drvinfo - get network driver information
6079  * @dev:        Network device.
6080  * @info:       Ethtool driver info data structure.
6081  *
6082  * This procedure returns the driver information.
6083  */
6084 static void netdev_get_drvinfo(struct net_device *dev,
6085         struct ethtool_drvinfo *info)
6086 {
6087         struct dev_priv *priv = netdev_priv(dev);
6088         struct dev_info *hw_priv = priv->adapter;
6089
6090         strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
6091         strlcpy(info->version, DRV_VERSION, sizeof(info->version));
6092         strlcpy(info->bus_info, pci_name(hw_priv->pdev),
6093                 sizeof(info->bus_info));
6094 }
6095
6096 /**
6097  * netdev_get_regs_len - get length of register dump
6098  * @dev:        Network device.
6099  *
6100  * This function returns the length of the register dump.
6101  *
6102  * Return length of the register dump.
6103  */
6104 static struct hw_regs {
6105         int start;
6106         int end;
6107 } hw_regs_range[] = {
6108         { KS_DMA_TX_CTRL,       KS884X_INTERRUPTS_STATUS },
6109         { KS_ADD_ADDR_0_LO,     KS_ADD_ADDR_F_HI },
6110         { KS884X_ADDR_0_OFFSET, KS8841_WOL_FRAME_BYTE2_OFFSET },
6111         { KS884X_SIDER_P,       KS8842_SGCR7_P },
6112         { KS8842_MACAR1_P,      KS8842_TOSR8_P },
6113         { KS884X_P1MBCR_P,      KS8842_P3ERCR_P },
6114         { 0, 0 }
6115 };
6116
6117 static int netdev_get_regs_len(struct net_device *dev)
6118 {
6119         struct hw_regs *range = hw_regs_range;
6120         int regs_len = 0x10 * sizeof(u32);
6121
6122         while (range->end > range->start) {
6123                 regs_len += (range->end - range->start + 3) / 4 * 4;
6124                 range++;
6125         }
6126         return regs_len;
6127 }
6128
6129 /**
6130  * netdev_get_regs - get register dump
6131  * @dev:        Network device.
6132  * @regs:       Ethtool registers data structure.
6133  * @ptr:        Buffer to store the register values.
6134  *
6135  * This procedure dumps the register values in the provided buffer.
6136  */
6137 static void netdev_get_regs(struct net_device *dev, struct ethtool_regs *regs,
6138         void *ptr)
6139 {
6140         struct dev_priv *priv = netdev_priv(dev);
6141         struct dev_info *hw_priv = priv->adapter;
6142         struct ksz_hw *hw = &hw_priv->hw;
6143         int *buf = (int *) ptr;
6144         struct hw_regs *range = hw_regs_range;
6145         int len;
6146
6147         mutex_lock(&hw_priv->lock);
6148         regs->version = 0;
6149         for (len = 0; len < 0x40; len += 4) {
6150                 pci_read_config_dword(hw_priv->pdev, len, buf);
6151                 buf++;
6152         }
6153         while (range->end > range->start) {
6154                 for (len = range->start; len < range->end; len += 4) {
6155                         *buf = readl(hw->io + len);
6156                         buf++;
6157                 }
6158                 range++;
6159         }
6160         mutex_unlock(&hw_priv->lock);
6161 }
6162
6163 #define WOL_SUPPORT                     \
6164         (WAKE_PHY | WAKE_MAGIC |        \
6165         WAKE_UCAST | WAKE_MCAST |       \
6166         WAKE_BCAST | WAKE_ARP)
6167
6168 /**
6169  * netdev_get_wol - get Wake-on-LAN support
6170  * @dev:        Network device.
6171  * @wol:        Ethtool Wake-on-LAN data structure.
6172  *
6173  * This procedure returns Wake-on-LAN support.
6174  */
6175 static void netdev_get_wol(struct net_device *dev,
6176         struct ethtool_wolinfo *wol)
6177 {
6178         struct dev_priv *priv = netdev_priv(dev);
6179         struct dev_info *hw_priv = priv->adapter;
6180
6181         wol->supported = hw_priv->wol_support;
6182         wol->wolopts = hw_priv->wol_enable;
6183         memset(&wol->sopass, 0, sizeof(wol->sopass));
6184 }
6185
6186 /**
6187  * netdev_set_wol - set Wake-on-LAN support
6188  * @dev:        Network device.
6189  * @wol:        Ethtool Wake-on-LAN data structure.
6190  *
6191  * This function sets Wake-on-LAN support.
6192  *
6193  * Return 0 if successful; otherwise an error code.
6194  */
6195 static int netdev_set_wol(struct net_device *dev,
6196         struct ethtool_wolinfo *wol)
6197 {
6198         struct dev_priv *priv = netdev_priv(dev);
6199         struct dev_info *hw_priv = priv->adapter;
6200
6201         /* Need to find a way to retrieve the device IP address. */
6202         static const u8 net_addr[] = { 192, 168, 1, 1 };
6203
6204         if (wol->wolopts & ~hw_priv->wol_support)
6205                 return -EINVAL;
6206
6207         hw_priv->wol_enable = wol->wolopts;
6208
6209         /* Link wakeup cannot really be disabled. */
6210         if (wol->wolopts)
6211                 hw_priv->wol_enable |= WAKE_PHY;
6212         hw_enable_wol(&hw_priv->hw, hw_priv->wol_enable, net_addr);
6213         return 0;
6214 }
6215
6216 /**
6217  * netdev_get_msglevel - get debug message level
6218  * @dev:        Network device.
6219  *
6220  * This function returns current debug message level.
6221  *
6222  * Return current debug message flags.
6223  */
6224 static u32 netdev_get_msglevel(struct net_device *dev)
6225 {
6226         struct dev_priv *priv = netdev_priv(dev);
6227
6228         return priv->msg_enable;
6229 }
6230
6231 /**
6232  * netdev_set_msglevel - set debug message level
6233  * @dev:        Network device.
6234  * @value:      Debug message flags.
6235  *
6236  * This procedure sets debug message level.
6237  */
6238 static void netdev_set_msglevel(struct net_device *dev, u32 value)
6239 {
6240         struct dev_priv *priv = netdev_priv(dev);
6241
6242         priv->msg_enable = value;
6243 }
6244
6245 /**
6246  * netdev_get_eeprom_len - get EEPROM length
6247  * @dev:        Network device.
6248  *
6249  * This function returns the length of the EEPROM.
6250  *
6251  * Return length of the EEPROM.
6252  */
6253 static int netdev_get_eeprom_len(struct net_device *dev)
6254 {
6255         return EEPROM_SIZE * 2;
6256 }
6257
6258 /**
6259  * netdev_get_eeprom - get EEPROM data
6260  * @dev:        Network device.
6261  * @eeprom:     Ethtool EEPROM data structure.
6262  * @data:       Buffer to store the EEPROM data.
6263  *
6264  * This function dumps the EEPROM data in the provided buffer.
6265  *
6266  * Return 0 if successful; otherwise an error code.
6267  */
6268 #define EEPROM_MAGIC                    0x10A18842
6269
6270 static int netdev_get_eeprom(struct net_device *dev,
6271         struct ethtool_eeprom *eeprom, u8 *data)
6272 {
6273         struct dev_priv *priv = netdev_priv(dev);
6274         struct dev_info *hw_priv = priv->adapter;
6275         u8 *eeprom_byte = (u8 *) eeprom_data;
6276         int i;
6277         int len;
6278
6279         len = (eeprom->offset + eeprom->len + 1) / 2;
6280         for (i = eeprom->offset / 2; i < len; i++)
6281                 eeprom_data[i] = eeprom_read(&hw_priv->hw, i);
6282         eeprom->magic = EEPROM_MAGIC;
6283         memcpy(data, &eeprom_byte[eeprom->offset], eeprom->len);
6284
6285         return 0;
6286 }
6287
6288 /**
6289  * netdev_set_eeprom - write EEPROM data
6290  * @dev:        Network device.
6291  * @eeprom:     Ethtool EEPROM data structure.
6292  * @data:       Data buffer.
6293  *
6294  * This function modifies the EEPROM data one byte at a time.
6295  *
6296  * Return 0 if successful; otherwise an error code.
6297  */
6298 static int netdev_set_eeprom(struct net_device *dev,
6299         struct ethtool_eeprom *eeprom, u8 *data)
6300 {
6301         struct dev_priv *priv = netdev_priv(dev);
6302         struct dev_info *hw_priv = priv->adapter;
6303         u16 eeprom_word[EEPROM_SIZE];
6304         u8 *eeprom_byte = (u8 *) eeprom_word;
6305         int i;
6306         int len;
6307
6308         if (eeprom->magic != EEPROM_MAGIC)
6309                 return -EINVAL;
6310
6311         len = (eeprom->offset + eeprom->len + 1) / 2;
6312         for (i = eeprom->offset / 2; i < len; i++)
6313                 eeprom_data[i] = eeprom_read(&hw_priv->hw, i);
6314         memcpy(eeprom_word, eeprom_data, EEPROM_SIZE * 2);
6315         memcpy(&eeprom_byte[eeprom->offset], data, eeprom->len);
6316         for (i = 0; i < EEPROM_SIZE; i++)
6317                 if (eeprom_word[i] != eeprom_data[i]) {
6318                         eeprom_data[i] = eeprom_word[i];
6319                         eeprom_write(&hw_priv->hw, i, eeprom_data[i]);
6320         }
6321
6322         return 0;
6323 }
6324
6325 /**
6326  * netdev_get_pauseparam - get flow control parameters
6327  * @dev:        Network device.
6328  * @pause:      Ethtool PAUSE settings data structure.
6329  *
6330  * This procedure returns the PAUSE control flow settings.
6331  */
6332 static void netdev_get_pauseparam(struct net_device *dev,
6333         struct ethtool_pauseparam *pause)
6334 {
6335         struct dev_priv *priv = netdev_priv(dev);
6336         struct dev_info *hw_priv = priv->adapter;
6337         struct ksz_hw *hw = &hw_priv->hw;
6338
6339         pause->autoneg = (hw->overrides & PAUSE_FLOW_CTRL) ? 0 : 1;
6340         if (!hw->ksz_switch) {
6341                 pause->rx_pause =
6342                         (hw->rx_cfg & DMA_RX_FLOW_ENABLE) ? 1 : 0;
6343                 pause->tx_pause =
6344                         (hw->tx_cfg & DMA_TX_FLOW_ENABLE) ? 1 : 0;
6345         } else {
6346                 pause->rx_pause =
6347                         (sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6348                                 SWITCH_RX_FLOW_CTRL)) ? 1 : 0;
6349                 pause->tx_pause =
6350                         (sw_chk(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6351                                 SWITCH_TX_FLOW_CTRL)) ? 1 : 0;
6352         }
6353 }
6354
6355 /**
6356  * netdev_set_pauseparam - set flow control parameters
6357  * @dev:        Network device.
6358  * @pause:      Ethtool PAUSE settings data structure.
6359  *
6360  * This function sets the PAUSE control flow settings.
6361  * Not implemented yet.
6362  *
6363  * Return 0 if successful; otherwise an error code.
6364  */
6365 static int netdev_set_pauseparam(struct net_device *dev,
6366         struct ethtool_pauseparam *pause)
6367 {
6368         struct dev_priv *priv = netdev_priv(dev);
6369         struct dev_info *hw_priv = priv->adapter;
6370         struct ksz_hw *hw = &hw_priv->hw;
6371         struct ksz_port *port = &priv->port;
6372
6373         mutex_lock(&hw_priv->lock);
6374         if (pause->autoneg) {
6375                 if (!pause->rx_pause && !pause->tx_pause)
6376                         port->flow_ctrl = PHY_NO_FLOW_CTRL;
6377                 else
6378                         port->flow_ctrl = PHY_FLOW_CTRL;
6379                 hw->overrides &= ~PAUSE_FLOW_CTRL;
6380                 port->force_link = 0;
6381                 if (hw->ksz_switch) {
6382                         sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6383                                 SWITCH_RX_FLOW_CTRL, 1);
6384                         sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6385                                 SWITCH_TX_FLOW_CTRL, 1);
6386                 }
6387                 port_set_link_speed(port);
6388         } else {
6389                 hw->overrides |= PAUSE_FLOW_CTRL;
6390                 if (hw->ksz_switch) {
6391                         sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6392                                 SWITCH_RX_FLOW_CTRL, pause->rx_pause);
6393                         sw_cfg(hw, KS8842_SWITCH_CTRL_1_OFFSET,
6394                                 SWITCH_TX_FLOW_CTRL, pause->tx_pause);
6395                 } else
6396                         set_flow_ctrl(hw, pause->rx_pause, pause->tx_pause);
6397         }
6398         mutex_unlock(&hw_priv->lock);
6399
6400         return 0;
6401 }
6402
6403 /**
6404  * netdev_get_ringparam - get tx/rx ring parameters
6405  * @dev:        Network device.
6406  * @pause:      Ethtool RING settings data structure.
6407  *
6408  * This procedure returns the TX/RX ring settings.
6409  */
6410 static void netdev_get_ringparam(struct net_device *dev,
6411         struct ethtool_ringparam *ring)
6412 {
6413         struct dev_priv *priv = netdev_priv(dev);
6414         struct dev_info *hw_priv = priv->adapter;
6415         struct ksz_hw *hw = &hw_priv->hw;
6416
6417         ring->tx_max_pending = (1 << 9);
6418         ring->tx_pending = hw->tx_desc_info.alloc;
6419         ring->rx_max_pending = (1 << 9);
6420         ring->rx_pending = hw->rx_desc_info.alloc;
6421 }
6422
6423 #define STATS_LEN                       (TOTAL_PORT_COUNTER_NUM)
6424
6425 static struct {
6426         char string[ETH_GSTRING_LEN];
6427 } ethtool_stats_keys[STATS_LEN] = {
6428         { "rx_lo_priority_octets" },
6429         { "rx_hi_priority_octets" },
6430         { "rx_undersize_packets" },
6431         { "rx_fragments" },
6432         { "rx_oversize_packets" },
6433         { "rx_jabbers" },
6434         { "rx_symbol_errors" },
6435         { "rx_crc_errors" },
6436         { "rx_align_errors" },
6437         { "rx_mac_ctrl_packets" },
6438         { "rx_pause_packets" },
6439         { "rx_bcast_packets" },
6440         { "rx_mcast_packets" },
6441         { "rx_ucast_packets" },
6442         { "rx_64_or_less_octet_packets" },
6443         { "rx_65_to_127_octet_packets" },
6444         { "rx_128_to_255_octet_packets" },
6445         { "rx_256_to_511_octet_packets" },
6446         { "rx_512_to_1023_octet_packets" },
6447         { "rx_1024_to_1522_octet_packets" },
6448
6449         { "tx_lo_priority_octets" },
6450         { "tx_hi_priority_octets" },
6451         { "tx_late_collisions" },
6452         { "tx_pause_packets" },
6453         { "tx_bcast_packets" },
6454         { "tx_mcast_packets" },
6455         { "tx_ucast_packets" },
6456         { "tx_deferred" },
6457         { "tx_total_collisions" },
6458         { "tx_excessive_collisions" },
6459         { "tx_single_collisions" },
6460         { "tx_mult_collisions" },
6461
6462         { "rx_discards" },
6463         { "tx_discards" },
6464 };
6465
6466 /**
6467  * netdev_get_strings - get statistics identity strings
6468  * @dev:        Network device.
6469  * @stringset:  String set identifier.
6470  * @buf:        Buffer to store the strings.
6471  *
6472  * This procedure returns the strings used to identify the statistics.
6473  */
6474 static void netdev_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
6475 {
6476         struct dev_priv *priv = netdev_priv(dev);
6477         struct dev_info *hw_priv = priv->adapter;
6478         struct ksz_hw *hw = &hw_priv->hw;
6479
6480         if (ETH_SS_STATS == stringset)
6481                 memcpy(buf, &ethtool_stats_keys,
6482                         ETH_GSTRING_LEN * hw->mib_cnt);
6483 }
6484
6485 /**
6486  * netdev_get_sset_count - get statistics size
6487  * @dev:        Network device.
6488  * @sset:       The statistics set number.
6489  *
6490  * This function returns the size of the statistics to be reported.
6491  *
6492  * Return size of the statistics to be reported.
6493  */
6494 static int netdev_get_sset_count(struct net_device *dev, int sset)
6495 {
6496         struct dev_priv *priv = netdev_priv(dev);
6497         struct dev_info *hw_priv = priv->adapter;
6498         struct ksz_hw *hw = &hw_priv->hw;
6499
6500         switch (sset) {
6501         case ETH_SS_STATS:
6502                 return hw->mib_cnt;
6503         default:
6504                 return -EOPNOTSUPP;
6505         }
6506 }
6507
6508 /**
6509  * netdev_get_ethtool_stats - get network device statistics
6510  * @dev:        Network device.
6511  * @stats:      Ethtool statistics data structure.
6512  * @data:       Buffer to store the statistics.
6513  *
6514  * This procedure returns the statistics.
6515  */
6516 static void netdev_get_ethtool_stats(struct net_device *dev,
6517         struct ethtool_stats *stats, u64 *data)
6518 {
6519         struct dev_priv *priv = netdev_priv(dev);
6520         struct dev_info *hw_priv = priv->adapter;
6521         struct ksz_hw *hw = &hw_priv->hw;
6522         struct ksz_port *port = &priv->port;
6523         int n_stats = stats->n_stats;
6524         int i;
6525         int n;
6526         int p;
6527         int rc;
6528         u64 counter[TOTAL_PORT_COUNTER_NUM];
6529
6530         mutex_lock(&hw_priv->lock);
6531         n = SWITCH_PORT_NUM;
6532         for (i = 0, p = port->first_port; i < port->mib_port_cnt; i++, p++) {
6533                 if (media_connected == hw->port_mib[p].state) {
6534                         hw_priv->counter[p].read = 1;
6535
6536                         /* Remember first port that requests read. */
6537                         if (n == SWITCH_PORT_NUM)
6538                                 n = p;
6539                 }
6540         }
6541         mutex_unlock(&hw_priv->lock);
6542
6543         if (n < SWITCH_PORT_NUM)
6544                 schedule_work(&hw_priv->mib_read);
6545
6546         if (1 == port->mib_port_cnt && n < SWITCH_PORT_NUM) {
6547                 p = n;
6548                 rc = wait_event_interruptible_timeout(
6549                         hw_priv->counter[p].counter,
6550                         2 == hw_priv->counter[p].read,
6551                         HZ * 1);
6552         } else
6553                 for (i = 0, p = n; i < port->mib_port_cnt - n; i++, p++) {
6554                         if (0 == i) {
6555                                 rc = wait_event_interruptible_timeout(
6556                                         hw_priv->counter[p].counter,
6557                                         2 == hw_priv->counter[p].read,
6558                                         HZ * 2);
6559                         } else if (hw->port_mib[p].cnt_ptr) {
6560                                 rc = wait_event_interruptible_timeout(
6561                                         hw_priv->counter[p].counter,
6562                                         2 == hw_priv->counter[p].read,
6563                                         HZ * 1);
6564                         }
6565                 }
6566
6567         get_mib_counters(hw, port->first_port, port->mib_port_cnt, counter);
6568         n = hw->mib_cnt;
6569         if (n > n_stats)
6570                 n = n_stats;
6571         n_stats -= n;
6572         for (i = 0; i < n; i++)
6573                 *data++ = counter[i];
6574 }
6575
6576 /**
6577  * netdev_set_features - set receive checksum support
6578  * @dev:        Network device.
6579  * @features:   New device features (offloads).
6580  *
6581  * This function sets receive checksum support setting.
6582  *
6583  * Return 0 if successful; otherwise an error code.
6584  */
6585 static int netdev_set_features(struct net_device *dev,
6586         netdev_features_t features)
6587 {
6588         struct dev_priv *priv = netdev_priv(dev);
6589         struct dev_info *hw_priv = priv->adapter;
6590         struct ksz_hw *hw = &hw_priv->hw;
6591
6592         mutex_lock(&hw_priv->lock);
6593
6594         /* see note in hw_setup() */
6595         if (features & NETIF_F_RXCSUM)
6596                 hw->rx_cfg |= DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP;
6597         else
6598                 hw->rx_cfg &= ~(DMA_RX_CSUM_TCP | DMA_RX_CSUM_IP);
6599
6600         if (hw->enabled)
6601                 writel(hw->rx_cfg, hw->io + KS_DMA_RX_CTRL);
6602
6603         mutex_unlock(&hw_priv->lock);
6604
6605         return 0;
6606 }
6607
6608 static const struct ethtool_ops netdev_ethtool_ops = {
6609         .nway_reset             = netdev_nway_reset,
6610         .get_link               = netdev_get_link,
6611         .get_drvinfo            = netdev_get_drvinfo,
6612         .get_regs_len           = netdev_get_regs_len,
6613         .get_regs               = netdev_get_regs,
6614         .get_wol                = netdev_get_wol,
6615         .set_wol                = netdev_set_wol,
6616         .get_msglevel           = netdev_get_msglevel,
6617         .set_msglevel           = netdev_set_msglevel,
6618         .get_eeprom_len         = netdev_get_eeprom_len,
6619         .get_eeprom             = netdev_get_eeprom,
6620         .set_eeprom             = netdev_set_eeprom,
6621         .get_pauseparam         = netdev_get_pauseparam,
6622         .set_pauseparam         = netdev_set_pauseparam,
6623         .get_ringparam          = netdev_get_ringparam,
6624         .get_strings            = netdev_get_strings,
6625         .get_sset_count         = netdev_get_sset_count,
6626         .get_ethtool_stats      = netdev_get_ethtool_stats,
6627         .get_link_ksettings     = netdev_get_link_ksettings,
6628         .set_link_ksettings     = netdev_set_link_ksettings,
6629 };
6630
6631 /*
6632  * Hardware monitoring
6633  */
6634
6635 static void update_link(struct net_device *dev, struct dev_priv *priv,
6636         struct ksz_port *port)
6637 {
6638         if (priv->media_state != port->linked->state) {
6639                 priv->media_state = port->linked->state;
6640                 if (netif_running(dev))
6641                         set_media_state(dev, media_connected);
6642         }
6643 }
6644
6645 static void mib_read_work(struct work_struct *work)
6646 {
6647         struct dev_info *hw_priv =
6648                 container_of(work, struct dev_info, mib_read);
6649         struct ksz_hw *hw = &hw_priv->hw;
6650         struct ksz_port_mib *mib;
6651         int i;
6652
6653         next_jiffies = jiffies;
6654         for (i = 0; i < hw->mib_port_cnt; i++) {
6655                 mib = &hw->port_mib[i];
6656
6657                 /* Reading MIB counters or requested to read. */
6658                 if (mib->cnt_ptr || 1 == hw_priv->counter[i].read) {
6659
6660                         /* Need to process receive interrupt. */
6661                         if (port_r_cnt(hw, i))
6662                                 break;
6663                         hw_priv->counter[i].read = 0;
6664
6665                         /* Finish reading counters. */
6666                         if (0 == mib->cnt_ptr) {
6667                                 hw_priv->counter[i].read = 2;
6668                                 wake_up_interruptible(
6669                                         &hw_priv->counter[i].counter);
6670                         }
6671                 } else if (time_after_eq(jiffies, hw_priv->counter[i].time)) {
6672                         /* Only read MIB counters when the port is connected. */
6673                         if (media_connected == mib->state)
6674                                 hw_priv->counter[i].read = 1;
6675                         next_jiffies += HZ * 1 * hw->mib_port_cnt;
6676                         hw_priv->counter[i].time = next_jiffies;
6677
6678                 /* Port is just disconnected. */
6679                 } else if (mib->link_down) {
6680                         mib->link_down = 0;
6681
6682                         /* Read counters one last time after link is lost. */
6683                         hw_priv->counter[i].read = 1;
6684                 }
6685         }
6686 }
6687
6688 static void mib_monitor(struct timer_list *t)
6689 {
6690         struct dev_info *hw_priv = from_timer(hw_priv, t, mib_timer_info.timer);
6691
6692         mib_read_work(&hw_priv->mib_read);
6693
6694         /* This is used to verify Wake-on-LAN is working. */
6695         if (hw_priv->pme_wait) {
6696                 if (time_is_before_eq_jiffies(hw_priv->pme_wait)) {
6697                         hw_clr_wol_pme_status(&hw_priv->hw);
6698                         hw_priv->pme_wait = 0;
6699                 }
6700         } else if (hw_chk_wol_pme_status(&hw_priv->hw)) {
6701
6702                 /* PME is asserted.  Wait 2 seconds to clear it. */
6703                 hw_priv->pme_wait = jiffies + HZ * 2;
6704         }
6705
6706         ksz_update_timer(&hw_priv->mib_timer_info);
6707 }
6708
6709 /**
6710  * dev_monitor - periodic monitoring
6711  * @ptr:        Network device pointer.
6712  *
6713  * This routine is run in a kernel timer to monitor the network device.
6714  */
6715 static void dev_monitor(struct timer_list *t)
6716 {
6717         struct dev_priv *priv = from_timer(priv, t, monitor_timer_info.timer);
6718         struct net_device *dev = priv->mii_if.dev;
6719         struct dev_info *hw_priv = priv->adapter;
6720         struct ksz_hw *hw = &hw_priv->hw;
6721         struct ksz_port *port = &priv->port;
6722
6723         if (!(hw->features & LINK_INT_WORKING))
6724                 port_get_link_speed(port);
6725         update_link(dev, priv, port);
6726
6727         ksz_update_timer(&priv->monitor_timer_info);
6728 }
6729
6730 /*
6731  * Linux network device interface functions
6732  */
6733
6734 /* Driver exported variables */
6735
6736 static int msg_enable;
6737
6738 static char *macaddr = ":";
6739 static char *mac1addr = ":";
6740
6741 /*
6742  * This enables multiple network device mode for KSZ8842, which contains a
6743  * switch with two physical ports.  Some users like to take control of the
6744  * ports for running Spanning Tree Protocol.  The driver will create an
6745  * additional eth? device for the other port.
6746  *
6747  * Some limitations are the network devices cannot have different MTU and
6748  * multicast hash tables.
6749  */
6750 static int multi_dev;
6751
6752 /*
6753  * As most users select multiple network device mode to use Spanning Tree
6754  * Protocol, this enables a feature in which most unicast and multicast packets
6755  * are forwarded inside the switch and not passed to the host.  Only packets
6756  * that need the host's attention are passed to it.  This prevents the host
6757  * wasting CPU time to examine each and every incoming packets and do the
6758  * forwarding itself.
6759  *
6760  * As the hack requires the private bridge header, the driver cannot compile
6761  * with just the kernel headers.
6762  *
6763  * Enabling STP support also turns on multiple network device mode.
6764  */
6765 static int stp;
6766
6767 /*
6768  * This enables fast aging in the KSZ8842 switch.  Not sure what situation
6769  * needs that.  However, fast aging is used to flush the dynamic MAC table when
6770  * STP support is enabled.
6771  */
6772 static int fast_aging;
6773
6774 /**
6775  * netdev_init - initialize network device.
6776  * @dev:        Network device.
6777  *
6778  * This function initializes the network device.
6779  *
6780  * Return 0 if successful; otherwise an error code indicating failure.
6781  */
6782 static int __init netdev_init(struct net_device *dev)
6783 {
6784         struct dev_priv *priv = netdev_priv(dev);
6785
6786         /* 500 ms timeout */
6787         ksz_init_timer(&priv->monitor_timer_info, 500 * HZ / 1000,
6788                 dev_monitor);
6789
6790         /* 500 ms timeout */
6791         dev->watchdog_timeo = HZ / 2;
6792
6793         dev->hw_features = NETIF_F_IP_CSUM | NETIF_F_SG | NETIF_F_RXCSUM;
6794
6795         /*
6796          * Hardware does not really support IPv6 checksum generation, but
6797          * driver actually runs faster with this on.
6798          */
6799         dev->hw_features |= NETIF_F_IPV6_CSUM;
6800
6801         dev->features |= dev->hw_features;
6802
6803         sema_init(&priv->proc_sem, 1);
6804
6805         priv->mii_if.phy_id_mask = 0x1;
6806         priv->mii_if.reg_num_mask = 0x7;
6807         priv->mii_if.dev = dev;
6808         priv->mii_if.mdio_read = mdio_read;
6809         priv->mii_if.mdio_write = mdio_write;
6810         priv->mii_if.phy_id = priv->port.first_port + 1;
6811
6812         priv->msg_enable = netif_msg_init(msg_enable,
6813                 (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK));
6814
6815         return 0;
6816 }
6817
6818 static const struct net_device_ops netdev_ops = {
6819         .ndo_init               = netdev_init,
6820         .ndo_open               = netdev_open,
6821         .ndo_stop               = netdev_close,
6822         .ndo_get_stats          = netdev_query_statistics,
6823         .ndo_start_xmit         = netdev_tx,
6824         .ndo_tx_timeout         = netdev_tx_timeout,
6825         .ndo_change_mtu         = netdev_change_mtu,
6826         .ndo_set_features       = netdev_set_features,
6827         .ndo_set_mac_address    = netdev_set_mac_address,
6828         .ndo_validate_addr      = eth_validate_addr,
6829         .ndo_do_ioctl           = netdev_ioctl,
6830         .ndo_set_rx_mode        = netdev_set_rx_mode,
6831 #ifdef CONFIG_NET_POLL_CONTROLLER
6832         .ndo_poll_controller    = netdev_netpoll,
6833 #endif
6834 };
6835
6836 static void netdev_free(struct net_device *dev)
6837 {
6838         if (dev->watchdog_timeo)
6839                 unregister_netdev(dev);
6840
6841         free_netdev(dev);
6842 }
6843
6844 struct platform_info {
6845         struct dev_info dev_info;
6846         struct net_device *netdev[SWITCH_PORT_NUM];
6847 };
6848
6849 static int net_device_present;
6850
6851 static void get_mac_addr(struct dev_info *hw_priv, u8 *macaddr, int port)
6852 {
6853         int i;
6854         int j;
6855         int got_num;
6856         int num;
6857
6858         i = j = num = got_num = 0;
6859         while (j < ETH_ALEN) {
6860                 if (macaddr[i]) {
6861                         int digit;
6862
6863                         got_num = 1;
6864                         digit = hex_to_bin(macaddr[i]);
6865                         if (digit >= 0)
6866                                 num = num * 16 + digit;
6867                         else if (':' == macaddr[i])
6868                                 got_num = 2;
6869                         else
6870                                 break;
6871                 } else if (got_num)
6872                         got_num = 2;
6873                 else
6874                         break;
6875                 if (2 == got_num) {
6876                         if (MAIN_PORT == port) {
6877                                 hw_priv->hw.override_addr[j++] = (u8) num;
6878                                 hw_priv->hw.override_addr[5] +=
6879                                         hw_priv->hw.id;
6880                         } else {
6881                                 hw_priv->hw.ksz_switch->other_addr[j++] =
6882                                         (u8) num;
6883                                 hw_priv->hw.ksz_switch->other_addr[5] +=
6884                                         hw_priv->hw.id;
6885                         }
6886                         num = got_num = 0;
6887                 }
6888                 i++;
6889         }
6890         if (ETH_ALEN == j) {
6891                 if (MAIN_PORT == port)
6892                         hw_priv->hw.mac_override = 1;
6893         }
6894 }
6895
6896 #define KS884X_DMA_MASK                 (~0x0UL)
6897
6898 static void read_other_addr(struct ksz_hw *hw)
6899 {
6900         int i;
6901         u16 data[3];
6902         struct ksz_switch *sw = hw->ksz_switch;
6903
6904         for (i = 0; i < 3; i++)
6905                 data[i] = eeprom_read(hw, i + EEPROM_DATA_OTHER_MAC_ADDR);
6906         if ((data[0] || data[1] || data[2]) && data[0] != 0xffff) {
6907                 sw->other_addr[5] = (u8) data[0];
6908                 sw->other_addr[4] = (u8)(data[0] >> 8);
6909                 sw->other_addr[3] = (u8) data[1];
6910                 sw->other_addr[2] = (u8)(data[1] >> 8);
6911                 sw->other_addr[1] = (u8) data[2];
6912                 sw->other_addr[0] = (u8)(data[2] >> 8);
6913         }
6914 }
6915
6916 #ifndef PCI_VENDOR_ID_MICREL_KS
6917 #define PCI_VENDOR_ID_MICREL_KS         0x16c6
6918 #endif
6919
6920 static int pcidev_init(struct pci_dev *pdev, const struct pci_device_id *id)
6921 {
6922         struct net_device *dev;
6923         struct dev_priv *priv;
6924         struct dev_info *hw_priv;
6925         struct ksz_hw *hw;
6926         struct platform_info *info;
6927         struct ksz_port *port;
6928         unsigned long reg_base;
6929         unsigned long reg_len;
6930         int cnt;
6931         int i;
6932         int mib_port_count;
6933         int pi;
6934         int port_count;
6935         int result;
6936         char banner[sizeof(version)];
6937         struct ksz_switch *sw = NULL;
6938
6939         result = pcim_enable_device(pdev);
6940         if (result)
6941                 return result;
6942
6943         result = -ENODEV;
6944
6945         if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) ||
6946                         pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)))
6947                 return result;
6948
6949         reg_base = pci_resource_start(pdev, 0);
6950         reg_len = pci_resource_len(pdev, 0);
6951         if ((pci_resource_flags(pdev, 0) & IORESOURCE_IO) != 0)
6952                 return result;
6953
6954         if (!request_mem_region(reg_base, reg_len, DRV_NAME))
6955                 return result;
6956         pci_set_master(pdev);
6957
6958         result = -ENOMEM;
6959
6960         info = kzalloc(sizeof(struct platform_info), GFP_KERNEL);
6961         if (!info)
6962                 goto pcidev_init_dev_err;
6963
6964         hw_priv = &info->dev_info;
6965         hw_priv->pdev = pdev;
6966
6967         hw = &hw_priv->hw;
6968
6969         hw->io = ioremap(reg_base, reg_len);
6970         if (!hw->io)
6971                 goto pcidev_init_io_err;
6972
6973         cnt = hw_init(hw);
6974         if (!cnt) {
6975                 if (msg_enable & NETIF_MSG_PROBE)
6976                         pr_alert("chip not detected\n");
6977                 result = -ENODEV;
6978                 goto pcidev_init_alloc_err;
6979         }
6980
6981         snprintf(banner, sizeof(banner), "%s", version);
6982         banner[13] = cnt + '0';         /* Replace x in "Micrel KSZ884x" */
6983         dev_info(&hw_priv->pdev->dev, "%s\n", banner);
6984         dev_dbg(&hw_priv->pdev->dev, "Mem = %p; IRQ = %d\n", hw->io, pdev->irq);
6985
6986         /* Assume device is KSZ8841. */
6987         hw->dev_count = 1;
6988         port_count = 1;
6989         mib_port_count = 1;
6990         hw->addr_list_size = 0;
6991         hw->mib_cnt = PORT_COUNTER_NUM;
6992         hw->mib_port_cnt = 1;
6993
6994         /* KSZ8842 has a switch with multiple ports. */
6995         if (2 == cnt) {
6996                 if (fast_aging)
6997                         hw->overrides |= FAST_AGING;
6998
6999                 hw->mib_cnt = TOTAL_PORT_COUNTER_NUM;
7000
7001                 /* Multiple network device interfaces are required. */
7002                 if (multi_dev) {
7003                         hw->dev_count = SWITCH_PORT_NUM;
7004                         hw->addr_list_size = SWITCH_PORT_NUM - 1;
7005                 }
7006
7007                 /* Single network device has multiple ports. */
7008                 if (1 == hw->dev_count) {
7009                         port_count = SWITCH_PORT_NUM;
7010                         mib_port_count = SWITCH_PORT_NUM;
7011                 }
7012                 hw->mib_port_cnt = TOTAL_PORT_NUM;
7013                 hw->ksz_switch = kzalloc(sizeof(struct ksz_switch), GFP_KERNEL);
7014                 if (!hw->ksz_switch)
7015                         goto pcidev_init_alloc_err;
7016
7017                 sw = hw->ksz_switch;
7018         }
7019         for (i = 0; i < hw->mib_port_cnt; i++)
7020                 hw->port_mib[i].mib_start = 0;
7021
7022         hw->parent = hw_priv;
7023
7024         /* Default MTU is 1500. */
7025         hw_priv->mtu = (REGULAR_RX_BUF_SIZE + 3) & ~3;
7026
7027         if (ksz_alloc_mem(hw_priv))
7028                 goto pcidev_init_mem_err;
7029
7030         hw_priv->hw.id = net_device_present;
7031
7032         spin_lock_init(&hw_priv->hwlock);
7033         mutex_init(&hw_priv->lock);
7034
7035         for (i = 0; i < TOTAL_PORT_NUM; i++)
7036                 init_waitqueue_head(&hw_priv->counter[i].counter);
7037
7038         if (macaddr[0] != ':')
7039                 get_mac_addr(hw_priv, macaddr, MAIN_PORT);
7040
7041         /* Read MAC address and initialize override address if not overridden. */
7042         hw_read_addr(hw);
7043
7044         /* Multiple device interfaces mode requires a second MAC address. */
7045         if (hw->dev_count > 1) {
7046                 memcpy(sw->other_addr, hw->override_addr, ETH_ALEN);
7047                 read_other_addr(hw);
7048                 if (mac1addr[0] != ':')
7049                         get_mac_addr(hw_priv, mac1addr, OTHER_PORT);
7050         }
7051
7052         hw_setup(hw);
7053         if (hw->ksz_switch)
7054                 sw_setup(hw);
7055         else {
7056                 hw_priv->wol_support = WOL_SUPPORT;
7057                 hw_priv->wol_enable = 0;
7058         }
7059
7060         INIT_WORK(&hw_priv->mib_read, mib_read_work);
7061
7062         /* 500 ms timeout */
7063         ksz_init_timer(&hw_priv->mib_timer_info, 500 * HZ / 1000,
7064                 mib_monitor);
7065
7066         for (i = 0; i < hw->dev_count; i++) {
7067                 dev = alloc_etherdev(sizeof(struct dev_priv));
7068                 if (!dev)
7069                         goto pcidev_init_reg_err;
7070                 SET_NETDEV_DEV(dev, &pdev->dev);
7071                 info->netdev[i] = dev;
7072
7073                 priv = netdev_priv(dev);
7074                 priv->adapter = hw_priv;
7075                 priv->id = net_device_present++;
7076
7077                 port = &priv->port;
7078                 port->port_cnt = port_count;
7079                 port->mib_port_cnt = mib_port_count;
7080                 port->first_port = i;
7081                 port->flow_ctrl = PHY_FLOW_CTRL;
7082
7083                 port->hw = hw;
7084                 port->linked = &hw->port_info[port->first_port];
7085
7086                 for (cnt = 0, pi = i; cnt < port_count; cnt++, pi++) {
7087                         hw->port_info[pi].port_id = pi;
7088                         hw->port_info[pi].pdev = dev;
7089                         hw->port_info[pi].state = media_disconnected;
7090                 }
7091
7092                 dev->mem_start = (unsigned long) hw->io;
7093                 dev->mem_end = dev->mem_start + reg_len - 1;
7094                 dev->irq = pdev->irq;
7095                 if (MAIN_PORT == i)
7096                         memcpy(dev->dev_addr, hw_priv->hw.override_addr,
7097                                ETH_ALEN);
7098                 else {
7099                         memcpy(dev->dev_addr, sw->other_addr, ETH_ALEN);
7100                         if (ether_addr_equal(sw->other_addr, hw->override_addr))
7101                                 dev->dev_addr[5] += port->first_port;
7102                 }
7103
7104                 dev->netdev_ops = &netdev_ops;
7105                 dev->ethtool_ops = &netdev_ethtool_ops;
7106
7107                 /* MTU range: 60 - 1894 */
7108                 dev->min_mtu = ETH_ZLEN;
7109                 dev->max_mtu = MAX_RX_BUF_SIZE -
7110                                (ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN);
7111
7112                 if (register_netdev(dev))
7113                         goto pcidev_init_reg_err;
7114                 port_set_power_saving(port, true);
7115         }
7116
7117         pci_dev_get(hw_priv->pdev);
7118         pci_set_drvdata(pdev, info);
7119         return 0;
7120
7121 pcidev_init_reg_err:
7122         for (i = 0; i < hw->dev_count; i++) {
7123                 if (info->netdev[i]) {
7124                         netdev_free(info->netdev[i]);
7125                         info->netdev[i] = NULL;
7126                 }
7127         }
7128
7129 pcidev_init_mem_err:
7130         ksz_free_mem(hw_priv);
7131         kfree(hw->ksz_switch);
7132
7133 pcidev_init_alloc_err:
7134         iounmap(hw->io);
7135
7136 pcidev_init_io_err:
7137         kfree(info);
7138
7139 pcidev_init_dev_err:
7140         release_mem_region(reg_base, reg_len);
7141
7142         return result;
7143 }
7144
7145 static void pcidev_exit(struct pci_dev *pdev)
7146 {
7147         int i;
7148         struct platform_info *info = pci_get_drvdata(pdev);
7149         struct dev_info *hw_priv = &info->dev_info;
7150
7151         release_mem_region(pci_resource_start(pdev, 0),
7152                 pci_resource_len(pdev, 0));
7153         for (i = 0; i < hw_priv->hw.dev_count; i++) {
7154                 if (info->netdev[i])
7155                         netdev_free(info->netdev[i]);
7156         }
7157         if (hw_priv->hw.io)
7158                 iounmap(hw_priv->hw.io);
7159         ksz_free_mem(hw_priv);
7160         kfree(hw_priv->hw.ksz_switch);
7161         pci_dev_put(hw_priv->pdev);
7162         kfree(info);
7163 }
7164
7165 #ifdef CONFIG_PM
7166 static int pcidev_resume(struct pci_dev *pdev)
7167 {
7168         int i;
7169         struct platform_info *info = pci_get_drvdata(pdev);
7170         struct dev_info *hw_priv = &info->dev_info;
7171         struct ksz_hw *hw = &hw_priv->hw;
7172
7173         pci_set_power_state(pdev, PCI_D0);
7174         pci_restore_state(pdev);
7175         pci_enable_wake(pdev, PCI_D0, 0);
7176
7177         if (hw_priv->wol_enable)
7178                 hw_cfg_wol_pme(hw, 0);
7179         for (i = 0; i < hw->dev_count; i++) {
7180                 if (info->netdev[i]) {
7181                         struct net_device *dev = info->netdev[i];
7182
7183                         if (netif_running(dev)) {
7184                                 netdev_open(dev);
7185                                 netif_device_attach(dev);
7186                         }
7187                 }
7188         }
7189         return 0;
7190 }
7191
7192 static int pcidev_suspend(struct pci_dev *pdev, pm_message_t state)
7193 {
7194         int i;
7195         struct platform_info *info = pci_get_drvdata(pdev);
7196         struct dev_info *hw_priv = &info->dev_info;
7197         struct ksz_hw *hw = &hw_priv->hw;
7198
7199         /* Need to find a way to retrieve the device IP address. */
7200         static const u8 net_addr[] = { 192, 168, 1, 1 };
7201
7202         for (i = 0; i < hw->dev_count; i++) {
7203                 if (info->netdev[i]) {
7204                         struct net_device *dev = info->netdev[i];
7205
7206                         if (netif_running(dev)) {
7207                                 netif_device_detach(dev);
7208                                 netdev_close(dev);
7209                         }
7210                 }
7211         }
7212         if (hw_priv->wol_enable) {
7213                 hw_enable_wol(hw, hw_priv->wol_enable, net_addr);
7214                 hw_cfg_wol_pme(hw, 1);
7215         }
7216
7217         pci_save_state(pdev);
7218         pci_enable_wake(pdev, pci_choose_state(pdev, state), 1);
7219         pci_set_power_state(pdev, pci_choose_state(pdev, state));
7220         return 0;
7221 }
7222 #endif
7223
7224 static char pcidev_name[] = "ksz884xp";
7225
7226 static const struct pci_device_id pcidev_table[] = {
7227         { PCI_VENDOR_ID_MICREL_KS, 0x8841,
7228                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
7229         { PCI_VENDOR_ID_MICREL_KS, 0x8842,
7230                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
7231         { 0 }
7232 };
7233
7234 MODULE_DEVICE_TABLE(pci, pcidev_table);
7235
7236 static struct pci_driver pci_device_driver = {
7237 #ifdef CONFIG_PM
7238         .suspend        = pcidev_suspend,
7239         .resume         = pcidev_resume,
7240 #endif
7241         .name           = pcidev_name,
7242         .id_table       = pcidev_table,
7243         .probe          = pcidev_init,
7244         .remove         = pcidev_exit
7245 };
7246
7247 module_pci_driver(pci_device_driver);
7248
7249 MODULE_DESCRIPTION("KSZ8841/2 PCI network driver");
7250 MODULE_AUTHOR("Tristram Ha <Tristram.Ha@micrel.com>");
7251 MODULE_LICENSE("GPL");
7252
7253 module_param_named(message, msg_enable, int, 0);
7254 MODULE_PARM_DESC(message, "Message verbosity level (0=none, 31=all)");
7255
7256 module_param(macaddr, charp, 0);
7257 module_param(mac1addr, charp, 0);
7258 module_param(fast_aging, int, 0);
7259 module_param(multi_dev, int, 0);
7260 module_param(stp, int, 0);
7261 MODULE_PARM_DESC(macaddr, "MAC address");
7262 MODULE_PARM_DESC(mac1addr, "Second MAC address");
7263 MODULE_PARM_DESC(fast_aging, "Fast aging");
7264 MODULE_PARM_DESC(multi_dev, "Multiple device interfaces");
7265 MODULE_PARM_DESC(stp, "STP support");