This source file includes following definitions.
- igb_check_reset_block
- igb_get_phy_id
- igb_phy_reset_dsp
- igb_read_phy_reg_mdic
- igb_write_phy_reg_mdic
- igb_read_phy_reg_i2c
- igb_write_phy_reg_i2c
- igb_read_sfp_data_byte
- igb_read_phy_reg_igp
- igb_write_phy_reg_igp
- igb_copper_link_setup_82580
- igb_copper_link_setup_m88
- igb_copper_link_setup_m88_gen2
- igb_copper_link_setup_igp
- igb_copper_link_autoneg
- igb_phy_setup_autoneg
- igb_setup_copper_link
- igb_phy_force_speed_duplex_igp
- igb_phy_force_speed_duplex_m88
- igb_phy_force_speed_duplex_setup
- igb_set_d3_lplu_state
- igb_check_downshift
- igb_check_polarity_m88
- igb_check_polarity_igp
- igb_wait_autoneg
- igb_phy_has_link
- igb_get_cable_length_m88
- igb_get_cable_length_m88_gen2
- igb_get_cable_length_igp_2
- igb_get_phy_info_m88
- igb_get_phy_info_igp
- igb_phy_sw_reset
- igb_phy_hw_reset
- igb_phy_init_script_igp3
- igb_initialize_M88E1512_phy
- igb_initialize_M88E1543_phy
- igb_power_up_phy_copper
- igb_power_down_phy_copper
- igb_check_polarity_82580
- igb_phy_force_speed_duplex_82580
- igb_get_phy_info_82580
- igb_get_cable_length_82580
- igb_set_master_slave_mode
1
2
3
4 #include <linux/if_ether.h>
5 #include <linux/delay.h>
6
7 #include "e1000_mac.h"
8 #include "e1000_phy.h"
9
10 static s32 igb_phy_setup_autoneg(struct e1000_hw *hw);
11 static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw,
12 u16 *phy_ctrl);
13 static s32 igb_wait_autoneg(struct e1000_hw *hw);
14 static s32 igb_set_master_slave_mode(struct e1000_hw *hw);
15
16
17 static const u16 e1000_m88_cable_length_table[] = {
18 0, 50, 80, 110, 140, 140, E1000_CABLE_LENGTH_UNDEFINED };
19
20 static const u16 e1000_igp_2_cable_length_table[] = {
21 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 11, 13, 16, 18, 21,
22 0, 0, 0, 3, 6, 10, 13, 16, 19, 23, 26, 29, 32, 35, 38, 41,
23 6, 10, 14, 18, 22, 26, 30, 33, 37, 41, 44, 48, 51, 54, 58, 61,
24 21, 26, 31, 35, 40, 44, 49, 53, 57, 61, 65, 68, 72, 75, 79, 82,
25 40, 45, 51, 56, 61, 66, 70, 75, 79, 83, 87, 91, 94, 98, 101, 104,
26 60, 66, 72, 77, 82, 87, 92, 96, 100, 104, 108, 111, 114, 117, 119, 121,
27 83, 89, 95, 100, 105, 109, 113, 116, 119, 122, 124,
28 104, 109, 114, 118, 121, 124};
29
30
31
32
33
34
35
36
37
38 s32 igb_check_reset_block(struct e1000_hw *hw)
39 {
40 u32 manc;
41
42 manc = rd32(E1000_MANC);
43
44 return (manc & E1000_MANC_BLK_PHY_RST_ON_IDE) ? E1000_BLK_PHY_RESET : 0;
45 }
46
47
48
49
50
51
52
53
54 s32 igb_get_phy_id(struct e1000_hw *hw)
55 {
56 struct e1000_phy_info *phy = &hw->phy;
57 s32 ret_val = 0;
58 u16 phy_id;
59
60
61 if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211))
62 phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0);
63
64 ret_val = phy->ops.read_reg(hw, PHY_ID1, &phy_id);
65 if (ret_val)
66 goto out;
67
68 phy->id = (u32)(phy_id << 16);
69 udelay(20);
70 ret_val = phy->ops.read_reg(hw, PHY_ID2, &phy_id);
71 if (ret_val)
72 goto out;
73
74 phy->id |= (u32)(phy_id & PHY_REVISION_MASK);
75 phy->revision = (u32)(phy_id & ~PHY_REVISION_MASK);
76
77 out:
78 return ret_val;
79 }
80
81
82
83
84
85
86
87 static s32 igb_phy_reset_dsp(struct e1000_hw *hw)
88 {
89 s32 ret_val = 0;
90
91 if (!(hw->phy.ops.write_reg))
92 goto out;
93
94 ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0xC1);
95 if (ret_val)
96 goto out;
97
98 ret_val = hw->phy.ops.write_reg(hw, M88E1000_PHY_GEN_CONTROL, 0);
99
100 out:
101 return ret_val;
102 }
103
104
105
106
107
108
109
110
111
112
113 s32 igb_read_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 *data)
114 {
115 struct e1000_phy_info *phy = &hw->phy;
116 u32 i, mdic = 0;
117 s32 ret_val = 0;
118
119 if (offset > MAX_PHY_REG_ADDRESS) {
120 hw_dbg("PHY Address %d is out of range\n", offset);
121 ret_val = -E1000_ERR_PARAM;
122 goto out;
123 }
124
125
126
127
128
129 mdic = ((offset << E1000_MDIC_REG_SHIFT) |
130 (phy->addr << E1000_MDIC_PHY_SHIFT) |
131 (E1000_MDIC_OP_READ));
132
133 wr32(E1000_MDIC, mdic);
134
135
136
137
138
139 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
140 udelay(50);
141 mdic = rd32(E1000_MDIC);
142 if (mdic & E1000_MDIC_READY)
143 break;
144 }
145 if (!(mdic & E1000_MDIC_READY)) {
146 hw_dbg("MDI Read did not complete\n");
147 ret_val = -E1000_ERR_PHY;
148 goto out;
149 }
150 if (mdic & E1000_MDIC_ERROR) {
151 hw_dbg("MDI Error\n");
152 ret_val = -E1000_ERR_PHY;
153 goto out;
154 }
155 *data = (u16) mdic;
156
157 out:
158 return ret_val;
159 }
160
161
162
163
164
165
166
167
168
169 s32 igb_write_phy_reg_mdic(struct e1000_hw *hw, u32 offset, u16 data)
170 {
171 struct e1000_phy_info *phy = &hw->phy;
172 u32 i, mdic = 0;
173 s32 ret_val = 0;
174
175 if (offset > MAX_PHY_REG_ADDRESS) {
176 hw_dbg("PHY Address %d is out of range\n", offset);
177 ret_val = -E1000_ERR_PARAM;
178 goto out;
179 }
180
181
182
183
184
185 mdic = (((u32)data) |
186 (offset << E1000_MDIC_REG_SHIFT) |
187 (phy->addr << E1000_MDIC_PHY_SHIFT) |
188 (E1000_MDIC_OP_WRITE));
189
190 wr32(E1000_MDIC, mdic);
191
192
193
194
195
196 for (i = 0; i < (E1000_GEN_POLL_TIMEOUT * 3); i++) {
197 udelay(50);
198 mdic = rd32(E1000_MDIC);
199 if (mdic & E1000_MDIC_READY)
200 break;
201 }
202 if (!(mdic & E1000_MDIC_READY)) {
203 hw_dbg("MDI Write did not complete\n");
204 ret_val = -E1000_ERR_PHY;
205 goto out;
206 }
207 if (mdic & E1000_MDIC_ERROR) {
208 hw_dbg("MDI Error\n");
209 ret_val = -E1000_ERR_PHY;
210 goto out;
211 }
212
213 out:
214 return ret_val;
215 }
216
217
218
219
220
221
222
223
224
225
226 s32 igb_read_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 *data)
227 {
228 struct e1000_phy_info *phy = &hw->phy;
229 u32 i, i2ccmd = 0;
230
231
232
233
234
235 i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
236 (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
237 (E1000_I2CCMD_OPCODE_READ));
238
239 wr32(E1000_I2CCMD, i2ccmd);
240
241
242 for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
243 udelay(50);
244 i2ccmd = rd32(E1000_I2CCMD);
245 if (i2ccmd & E1000_I2CCMD_READY)
246 break;
247 }
248 if (!(i2ccmd & E1000_I2CCMD_READY)) {
249 hw_dbg("I2CCMD Read did not complete\n");
250 return -E1000_ERR_PHY;
251 }
252 if (i2ccmd & E1000_I2CCMD_ERROR) {
253 hw_dbg("I2CCMD Error bit set\n");
254 return -E1000_ERR_PHY;
255 }
256
257
258 *data = ((i2ccmd >> 8) & 0x00FF) | ((i2ccmd << 8) & 0xFF00);
259
260 return 0;
261 }
262
263
264
265
266
267
268
269
270
271 s32 igb_write_phy_reg_i2c(struct e1000_hw *hw, u32 offset, u16 data)
272 {
273 struct e1000_phy_info *phy = &hw->phy;
274 u32 i, i2ccmd = 0;
275 u16 phy_data_swapped;
276
277
278 if ((hw->phy.addr == 0) || (hw->phy.addr > 7)) {
279 hw_dbg("PHY I2C Address %d is out of range.\n",
280 hw->phy.addr);
281 return -E1000_ERR_CONFIG;
282 }
283
284
285 phy_data_swapped = ((data >> 8) & 0x00FF) | ((data << 8) & 0xFF00);
286
287
288
289
290
291 i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
292 (phy->addr << E1000_I2CCMD_PHY_ADDR_SHIFT) |
293 E1000_I2CCMD_OPCODE_WRITE |
294 phy_data_swapped);
295
296 wr32(E1000_I2CCMD, i2ccmd);
297
298
299 for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
300 udelay(50);
301 i2ccmd = rd32(E1000_I2CCMD);
302 if (i2ccmd & E1000_I2CCMD_READY)
303 break;
304 }
305 if (!(i2ccmd & E1000_I2CCMD_READY)) {
306 hw_dbg("I2CCMD Write did not complete\n");
307 return -E1000_ERR_PHY;
308 }
309 if (i2ccmd & E1000_I2CCMD_ERROR) {
310 hw_dbg("I2CCMD Error bit set\n");
311 return -E1000_ERR_PHY;
312 }
313
314 return 0;
315 }
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330 s32 igb_read_sfp_data_byte(struct e1000_hw *hw, u16 offset, u8 *data)
331 {
332 u32 i = 0;
333 u32 i2ccmd = 0;
334 u32 data_local = 0;
335
336 if (offset > E1000_I2CCMD_SFP_DIAG_ADDR(255)) {
337 hw_dbg("I2CCMD command address exceeds upper limit\n");
338 return -E1000_ERR_PHY;
339 }
340
341
342
343
344
345 i2ccmd = ((offset << E1000_I2CCMD_REG_ADDR_SHIFT) |
346 E1000_I2CCMD_OPCODE_READ);
347
348 wr32(E1000_I2CCMD, i2ccmd);
349
350
351 for (i = 0; i < E1000_I2CCMD_PHY_TIMEOUT; i++) {
352 udelay(50);
353 data_local = rd32(E1000_I2CCMD);
354 if (data_local & E1000_I2CCMD_READY)
355 break;
356 }
357 if (!(data_local & E1000_I2CCMD_READY)) {
358 hw_dbg("I2CCMD Read did not complete\n");
359 return -E1000_ERR_PHY;
360 }
361 if (data_local & E1000_I2CCMD_ERROR) {
362 hw_dbg("I2CCMD Error bit set\n");
363 return -E1000_ERR_PHY;
364 }
365 *data = (u8) data_local & 0xFF;
366
367 return 0;
368 }
369
370
371
372
373
374
375
376
377
378
379
380 s32 igb_read_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 *data)
381 {
382 s32 ret_val = 0;
383
384 if (!(hw->phy.ops.acquire))
385 goto out;
386
387 ret_val = hw->phy.ops.acquire(hw);
388 if (ret_val)
389 goto out;
390
391 if (offset > MAX_PHY_MULTI_PAGE_REG) {
392 ret_val = igb_write_phy_reg_mdic(hw,
393 IGP01E1000_PHY_PAGE_SELECT,
394 (u16)offset);
395 if (ret_val) {
396 hw->phy.ops.release(hw);
397 goto out;
398 }
399 }
400
401 ret_val = igb_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
402 data);
403
404 hw->phy.ops.release(hw);
405
406 out:
407 return ret_val;
408 }
409
410
411
412
413
414
415
416
417
418
419 s32 igb_write_phy_reg_igp(struct e1000_hw *hw, u32 offset, u16 data)
420 {
421 s32 ret_val = 0;
422
423 if (!(hw->phy.ops.acquire))
424 goto out;
425
426 ret_val = hw->phy.ops.acquire(hw);
427 if (ret_val)
428 goto out;
429
430 if (offset > MAX_PHY_MULTI_PAGE_REG) {
431 ret_val = igb_write_phy_reg_mdic(hw,
432 IGP01E1000_PHY_PAGE_SELECT,
433 (u16)offset);
434 if (ret_val) {
435 hw->phy.ops.release(hw);
436 goto out;
437 }
438 }
439
440 ret_val = igb_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & offset,
441 data);
442
443 hw->phy.ops.release(hw);
444
445 out:
446 return ret_val;
447 }
448
449
450
451
452
453
454
455 s32 igb_copper_link_setup_82580(struct e1000_hw *hw)
456 {
457 struct e1000_phy_info *phy = &hw->phy;
458 s32 ret_val;
459 u16 phy_data;
460
461 if (phy->reset_disable) {
462 ret_val = 0;
463 goto out;
464 }
465
466 if (phy->type == e1000_phy_82580) {
467 ret_val = hw->phy.ops.reset(hw);
468 if (ret_val) {
469 hw_dbg("Error resetting the PHY.\n");
470 goto out;
471 }
472 }
473
474
475 ret_val = phy->ops.read_reg(hw, I82580_CFG_REG, &phy_data);
476 if (ret_val)
477 goto out;
478
479 phy_data |= I82580_CFG_ASSERT_CRS_ON_TX;
480
481
482 phy_data |= I82580_CFG_ENABLE_DOWNSHIFT;
483
484 ret_val = phy->ops.write_reg(hw, I82580_CFG_REG, phy_data);
485 if (ret_val)
486 goto out;
487
488
489 ret_val = phy->ops.read_reg(hw, I82580_PHY_CTRL_2, &phy_data);
490 if (ret_val)
491 goto out;
492 phy_data &= ~I82580_PHY_CTRL2_MDIX_CFG_MASK;
493
494
495
496
497
498 switch (hw->phy.mdix) {
499 case 1:
500 break;
501 case 2:
502 phy_data |= I82580_PHY_CTRL2_MANUAL_MDIX;
503 break;
504 case 0:
505 default:
506 phy_data |= I82580_PHY_CTRL2_AUTO_MDI_MDIX;
507 break;
508 }
509 ret_val = hw->phy.ops.write_reg(hw, I82580_PHY_CTRL_2, phy_data);
510
511 out:
512 return ret_val;
513 }
514
515
516
517
518
519
520
521
522 s32 igb_copper_link_setup_m88(struct e1000_hw *hw)
523 {
524 struct e1000_phy_info *phy = &hw->phy;
525 s32 ret_val;
526 u16 phy_data;
527
528 if (phy->reset_disable) {
529 ret_val = 0;
530 goto out;
531 }
532
533
534 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
535 if (ret_val)
536 goto out;
537
538 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
539
540
541
542
543
544
545
546
547 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
548
549 switch (phy->mdix) {
550 case 1:
551 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
552 break;
553 case 2:
554 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
555 break;
556 case 3:
557 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
558 break;
559 case 0:
560 default:
561 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
562 break;
563 }
564
565
566
567
568
569
570
571 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
572 if (phy->disable_polarity_correction == 1)
573 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
574
575 ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
576 if (ret_val)
577 goto out;
578
579 if (phy->revision < E1000_REVISION_4) {
580
581
582
583 ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
584 &phy_data);
585 if (ret_val)
586 goto out;
587
588 phy_data |= M88E1000_EPSCR_TX_CLK_25;
589
590 if ((phy->revision == E1000_REVISION_2) &&
591 (phy->id == M88E1111_I_PHY_ID)) {
592
593 phy_data &= ~M88EC018_EPSCR_DOWNSHIFT_COUNTER_MASK;
594 phy_data |= M88EC018_EPSCR_DOWNSHIFT_COUNTER_5X;
595 } else {
596
597 phy_data &= ~(M88E1000_EPSCR_MASTER_DOWNSHIFT_MASK |
598 M88E1000_EPSCR_SLAVE_DOWNSHIFT_MASK);
599 phy_data |= (M88E1000_EPSCR_MASTER_DOWNSHIFT_1X |
600 M88E1000_EPSCR_SLAVE_DOWNSHIFT_1X);
601 }
602 ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL,
603 phy_data);
604 if (ret_val)
605 goto out;
606 }
607
608
609 ret_val = igb_phy_sw_reset(hw);
610 if (ret_val) {
611 hw_dbg("Error committing the PHY changes\n");
612 goto out;
613 }
614
615 out:
616 return ret_val;
617 }
618
619
620
621
622
623
624
625
626 s32 igb_copper_link_setup_m88_gen2(struct e1000_hw *hw)
627 {
628 struct e1000_phy_info *phy = &hw->phy;
629 s32 ret_val;
630 u16 phy_data;
631
632 if (phy->reset_disable)
633 return 0;
634
635
636 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
637 if (ret_val)
638 return ret_val;
639
640
641
642
643
644
645
646
647 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
648
649 switch (phy->mdix) {
650 case 1:
651 phy_data |= M88E1000_PSCR_MDI_MANUAL_MODE;
652 break;
653 case 2:
654 phy_data |= M88E1000_PSCR_MDIX_MANUAL_MODE;
655 break;
656 case 3:
657
658 if (phy->id != M88E1112_E_PHY_ID) {
659 phy_data |= M88E1000_PSCR_AUTO_X_1000T;
660 break;
661 }
662
663 case 0:
664 default:
665 phy_data |= M88E1000_PSCR_AUTO_X_MODE;
666 break;
667 }
668
669
670
671
672
673
674
675 phy_data &= ~M88E1000_PSCR_POLARITY_REVERSAL;
676 if (phy->disable_polarity_correction == 1)
677 phy_data |= M88E1000_PSCR_POLARITY_REVERSAL;
678
679
680 if (phy->id == M88E1543_E_PHY_ID) {
681 phy_data &= ~I347AT4_PSCR_DOWNSHIFT_ENABLE;
682 ret_val =
683 phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
684 if (ret_val)
685 return ret_val;
686
687 ret_val = igb_phy_sw_reset(hw);
688 if (ret_val) {
689 hw_dbg("Error committing the PHY changes\n");
690 return ret_val;
691 }
692 }
693
694 phy_data &= ~I347AT4_PSCR_DOWNSHIFT_MASK;
695 phy_data |= I347AT4_PSCR_DOWNSHIFT_6X;
696 phy_data |= I347AT4_PSCR_DOWNSHIFT_ENABLE;
697
698 ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
699 if (ret_val)
700 return ret_val;
701
702
703 ret_val = igb_phy_sw_reset(hw);
704 if (ret_val) {
705 hw_dbg("Error committing the PHY changes\n");
706 return ret_val;
707 }
708 ret_val = igb_set_master_slave_mode(hw);
709 if (ret_val)
710 return ret_val;
711
712 return 0;
713 }
714
715
716
717
718
719
720
721
722 s32 igb_copper_link_setup_igp(struct e1000_hw *hw)
723 {
724 struct e1000_phy_info *phy = &hw->phy;
725 s32 ret_val;
726 u16 data;
727
728 if (phy->reset_disable) {
729 ret_val = 0;
730 goto out;
731 }
732
733 ret_val = phy->ops.reset(hw);
734 if (ret_val) {
735 hw_dbg("Error resetting the PHY.\n");
736 goto out;
737 }
738
739
740
741
742 msleep(100);
743
744
745
746
747 if (phy->type == e1000_phy_igp) {
748
749 if (phy->ops.set_d3_lplu_state)
750 ret_val = phy->ops.set_d3_lplu_state(hw, false);
751 if (ret_val) {
752 hw_dbg("Error Disabling LPLU D3\n");
753 goto out;
754 }
755 }
756
757
758 ret_val = phy->ops.set_d0_lplu_state(hw, false);
759 if (ret_val) {
760 hw_dbg("Error Disabling LPLU D0\n");
761 goto out;
762 }
763
764 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &data);
765 if (ret_val)
766 goto out;
767
768 data &= ~IGP01E1000_PSCR_AUTO_MDIX;
769
770 switch (phy->mdix) {
771 case 1:
772 data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
773 break;
774 case 2:
775 data |= IGP01E1000_PSCR_FORCE_MDI_MDIX;
776 break;
777 case 0:
778 default:
779 data |= IGP01E1000_PSCR_AUTO_MDIX;
780 break;
781 }
782 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, data);
783 if (ret_val)
784 goto out;
785
786
787 if (hw->mac.autoneg) {
788
789
790
791
792 if (phy->autoneg_advertised == ADVERTISE_1000_FULL) {
793
794 ret_val = phy->ops.read_reg(hw,
795 IGP01E1000_PHY_PORT_CONFIG,
796 &data);
797 if (ret_val)
798 goto out;
799
800 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
801 ret_val = phy->ops.write_reg(hw,
802 IGP01E1000_PHY_PORT_CONFIG,
803 data);
804 if (ret_val)
805 goto out;
806
807
808 ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data);
809 if (ret_val)
810 goto out;
811
812 data &= ~CR_1000T_MS_ENABLE;
813 ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data);
814 if (ret_val)
815 goto out;
816 }
817
818 ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL, &data);
819 if (ret_val)
820 goto out;
821
822
823 phy->original_ms_type = (data & CR_1000T_MS_ENABLE) ?
824 ((data & CR_1000T_MS_VALUE) ?
825 e1000_ms_force_master :
826 e1000_ms_force_slave) :
827 e1000_ms_auto;
828
829 switch (phy->ms_type) {
830 case e1000_ms_force_master:
831 data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
832 break;
833 case e1000_ms_force_slave:
834 data |= CR_1000T_MS_ENABLE;
835 data &= ~(CR_1000T_MS_VALUE);
836 break;
837 case e1000_ms_auto:
838 data &= ~CR_1000T_MS_ENABLE;
839 default:
840 break;
841 }
842 ret_val = phy->ops.write_reg(hw, PHY_1000T_CTRL, data);
843 if (ret_val)
844 goto out;
845 }
846
847 out:
848 return ret_val;
849 }
850
851
852
853
854
855
856
857
858
859
860 static s32 igb_copper_link_autoneg(struct e1000_hw *hw)
861 {
862 struct e1000_phy_info *phy = &hw->phy;
863 s32 ret_val;
864 u16 phy_ctrl;
865
866
867
868
869 phy->autoneg_advertised &= phy->autoneg_mask;
870
871
872
873
874 if (phy->autoneg_advertised == 0)
875 phy->autoneg_advertised = phy->autoneg_mask;
876
877 hw_dbg("Reconfiguring auto-neg advertisement params\n");
878 ret_val = igb_phy_setup_autoneg(hw);
879 if (ret_val) {
880 hw_dbg("Error Setting up Auto-Negotiation\n");
881 goto out;
882 }
883 hw_dbg("Restarting Auto-Neg\n");
884
885
886
887
888 ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_ctrl);
889 if (ret_val)
890 goto out;
891
892 phy_ctrl |= (MII_CR_AUTO_NEG_EN | MII_CR_RESTART_AUTO_NEG);
893 ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_ctrl);
894 if (ret_val)
895 goto out;
896
897
898
899
900 if (phy->autoneg_wait_to_complete) {
901 ret_val = igb_wait_autoneg(hw);
902 if (ret_val) {
903 hw_dbg("Error while waiting for autoneg to complete\n");
904 goto out;
905 }
906 }
907
908 hw->mac.get_link_status = true;
909
910 out:
911 return ret_val;
912 }
913
914
915
916
917
918
919
920
921
922
923 static s32 igb_phy_setup_autoneg(struct e1000_hw *hw)
924 {
925 struct e1000_phy_info *phy = &hw->phy;
926 s32 ret_val;
927 u16 mii_autoneg_adv_reg;
928 u16 mii_1000t_ctrl_reg = 0;
929
930 phy->autoneg_advertised &= phy->autoneg_mask;
931
932
933 ret_val = phy->ops.read_reg(hw, PHY_AUTONEG_ADV, &mii_autoneg_adv_reg);
934 if (ret_val)
935 goto out;
936
937 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
938
939 ret_val = phy->ops.read_reg(hw, PHY_1000T_CTRL,
940 &mii_1000t_ctrl_reg);
941 if (ret_val)
942 goto out;
943 }
944
945
946
947
948
949
950
951
952
953
954
955
956 mii_autoneg_adv_reg &= ~(NWAY_AR_100TX_FD_CAPS |
957 NWAY_AR_100TX_HD_CAPS |
958 NWAY_AR_10T_FD_CAPS |
959 NWAY_AR_10T_HD_CAPS);
960 mii_1000t_ctrl_reg &= ~(CR_1000T_HD_CAPS | CR_1000T_FD_CAPS);
961
962 hw_dbg("autoneg_advertised %x\n", phy->autoneg_advertised);
963
964
965 if (phy->autoneg_advertised & ADVERTISE_10_HALF) {
966 hw_dbg("Advertise 10mb Half duplex\n");
967 mii_autoneg_adv_reg |= NWAY_AR_10T_HD_CAPS;
968 }
969
970
971 if (phy->autoneg_advertised & ADVERTISE_10_FULL) {
972 hw_dbg("Advertise 10mb Full duplex\n");
973 mii_autoneg_adv_reg |= NWAY_AR_10T_FD_CAPS;
974 }
975
976
977 if (phy->autoneg_advertised & ADVERTISE_100_HALF) {
978 hw_dbg("Advertise 100mb Half duplex\n");
979 mii_autoneg_adv_reg |= NWAY_AR_100TX_HD_CAPS;
980 }
981
982
983 if (phy->autoneg_advertised & ADVERTISE_100_FULL) {
984 hw_dbg("Advertise 100mb Full duplex\n");
985 mii_autoneg_adv_reg |= NWAY_AR_100TX_FD_CAPS;
986 }
987
988
989 if (phy->autoneg_advertised & ADVERTISE_1000_HALF)
990 hw_dbg("Advertise 1000mb Half duplex request denied!\n");
991
992
993 if (phy->autoneg_advertised & ADVERTISE_1000_FULL) {
994 hw_dbg("Advertise 1000mb Full duplex\n");
995 mii_1000t_ctrl_reg |= CR_1000T_FD_CAPS;
996 }
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015 switch (hw->fc.current_mode) {
1016 case e1000_fc_none:
1017
1018
1019
1020 mii_autoneg_adv_reg &= ~(NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1021 break;
1022 case e1000_fc_rx_pause:
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1033 break;
1034 case e1000_fc_tx_pause:
1035
1036
1037
1038 mii_autoneg_adv_reg |= NWAY_AR_ASM_DIR;
1039 mii_autoneg_adv_reg &= ~NWAY_AR_PAUSE;
1040 break;
1041 case e1000_fc_full:
1042
1043
1044
1045 mii_autoneg_adv_reg |= (NWAY_AR_ASM_DIR | NWAY_AR_PAUSE);
1046 break;
1047 default:
1048 hw_dbg("Flow control param set incorrectly\n");
1049 ret_val = -E1000_ERR_CONFIG;
1050 goto out;
1051 }
1052
1053 ret_val = phy->ops.write_reg(hw, PHY_AUTONEG_ADV, mii_autoneg_adv_reg);
1054 if (ret_val)
1055 goto out;
1056
1057 hw_dbg("Auto-Neg Advertising %x\n", mii_autoneg_adv_reg);
1058
1059 if (phy->autoneg_mask & ADVERTISE_1000_FULL) {
1060 ret_val = phy->ops.write_reg(hw,
1061 PHY_1000T_CTRL,
1062 mii_1000t_ctrl_reg);
1063 if (ret_val)
1064 goto out;
1065 }
1066
1067 out:
1068 return ret_val;
1069 }
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080 s32 igb_setup_copper_link(struct e1000_hw *hw)
1081 {
1082 s32 ret_val;
1083 bool link;
1084
1085 if (hw->mac.autoneg) {
1086
1087
1088
1089 ret_val = igb_copper_link_autoneg(hw);
1090 if (ret_val)
1091 goto out;
1092 } else {
1093
1094
1095
1096 hw_dbg("Forcing Speed and Duplex\n");
1097 ret_val = hw->phy.ops.force_speed_duplex(hw);
1098 if (ret_val) {
1099 hw_dbg("Error Forcing Speed and Duplex\n");
1100 goto out;
1101 }
1102 }
1103
1104
1105
1106
1107 ret_val = igb_phy_has_link(hw, COPPER_LINK_UP_LIMIT, 10, &link);
1108 if (ret_val)
1109 goto out;
1110
1111 if (link) {
1112 hw_dbg("Valid link established!!!\n");
1113 igb_config_collision_dist(hw);
1114 ret_val = igb_config_fc_after_link_up(hw);
1115 } else {
1116 hw_dbg("Unable to establish link!!!\n");
1117 }
1118
1119 out:
1120 return ret_val;
1121 }
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131 s32 igb_phy_force_speed_duplex_igp(struct e1000_hw *hw)
1132 {
1133 struct e1000_phy_info *phy = &hw->phy;
1134 s32 ret_val;
1135 u16 phy_data;
1136 bool link;
1137
1138 ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
1139 if (ret_val)
1140 goto out;
1141
1142 igb_phy_force_speed_duplex_setup(hw, &phy_data);
1143
1144 ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
1145 if (ret_val)
1146 goto out;
1147
1148
1149
1150
1151 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CTRL, &phy_data);
1152 if (ret_val)
1153 goto out;
1154
1155 phy_data &= ~IGP01E1000_PSCR_AUTO_MDIX;
1156 phy_data &= ~IGP01E1000_PSCR_FORCE_MDI_MDIX;
1157
1158 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CTRL, phy_data);
1159 if (ret_val)
1160 goto out;
1161
1162 hw_dbg("IGP PSCR: %X\n", phy_data);
1163
1164 udelay(1);
1165
1166 if (phy->autoneg_wait_to_complete) {
1167 hw_dbg("Waiting for forced speed/duplex link on IGP phy.\n");
1168
1169 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 10000, &link);
1170 if (ret_val)
1171 goto out;
1172
1173 if (!link)
1174 hw_dbg("Link taking longer than expected.\n");
1175
1176
1177 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 10000, &link);
1178 if (ret_val)
1179 goto out;
1180 }
1181
1182 out:
1183 return ret_val;
1184 }
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196 s32 igb_phy_force_speed_duplex_m88(struct e1000_hw *hw)
1197 {
1198 struct e1000_phy_info *phy = &hw->phy;
1199 s32 ret_val;
1200 u16 phy_data;
1201 bool link;
1202
1203
1204 if (phy->type != e1000_phy_i210) {
1205
1206
1207
1208 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL,
1209 &phy_data);
1210 if (ret_val)
1211 goto out;
1212
1213 phy_data &= ~M88E1000_PSCR_AUTO_X_MODE;
1214 ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL,
1215 phy_data);
1216 if (ret_val)
1217 goto out;
1218
1219 hw_dbg("M88E1000 PSCR: %X\n", phy_data);
1220 }
1221
1222 ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
1223 if (ret_val)
1224 goto out;
1225
1226 igb_phy_force_speed_duplex_setup(hw, &phy_data);
1227
1228 ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
1229 if (ret_val)
1230 goto out;
1231
1232
1233 ret_val = igb_phy_sw_reset(hw);
1234 if (ret_val)
1235 goto out;
1236
1237 if (phy->autoneg_wait_to_complete) {
1238 hw_dbg("Waiting for forced speed/duplex link on M88 phy.\n");
1239
1240 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
1241 if (ret_val)
1242 goto out;
1243
1244 if (!link) {
1245 bool reset_dsp = true;
1246
1247 switch (hw->phy.id) {
1248 case I347AT4_E_PHY_ID:
1249 case M88E1112_E_PHY_ID:
1250 case M88E1543_E_PHY_ID:
1251 case M88E1512_E_PHY_ID:
1252 case I210_I_PHY_ID:
1253 reset_dsp = false;
1254 break;
1255 default:
1256 if (hw->phy.type != e1000_phy_m88)
1257 reset_dsp = false;
1258 break;
1259 }
1260 if (!reset_dsp) {
1261 hw_dbg("Link taking longer than expected.\n");
1262 } else {
1263
1264
1265
1266 ret_val = phy->ops.write_reg(hw,
1267 M88E1000_PHY_PAGE_SELECT,
1268 0x001d);
1269 if (ret_val)
1270 goto out;
1271 ret_val = igb_phy_reset_dsp(hw);
1272 if (ret_val)
1273 goto out;
1274 }
1275 }
1276
1277
1278 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT,
1279 100000, &link);
1280 if (ret_val)
1281 goto out;
1282 }
1283
1284 if (hw->phy.type != e1000_phy_m88 ||
1285 hw->phy.id == I347AT4_E_PHY_ID ||
1286 hw->phy.id == M88E1112_E_PHY_ID ||
1287 hw->phy.id == M88E1543_E_PHY_ID ||
1288 hw->phy.id == M88E1512_E_PHY_ID ||
1289 hw->phy.id == I210_I_PHY_ID)
1290 goto out;
1291
1292 ret_val = phy->ops.read_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, &phy_data);
1293 if (ret_val)
1294 goto out;
1295
1296
1297
1298
1299
1300 phy_data |= M88E1000_EPSCR_TX_CLK_25;
1301 ret_val = phy->ops.write_reg(hw, M88E1000_EXT_PHY_SPEC_CTRL, phy_data);
1302 if (ret_val)
1303 goto out;
1304
1305
1306
1307
1308 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1309 if (ret_val)
1310 goto out;
1311
1312 phy_data |= M88E1000_PSCR_ASSERT_CRS_ON_TX;
1313 ret_val = phy->ops.write_reg(hw, M88E1000_PHY_SPEC_CTRL, phy_data);
1314
1315 out:
1316 return ret_val;
1317 }
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331 static void igb_phy_force_speed_duplex_setup(struct e1000_hw *hw,
1332 u16 *phy_ctrl)
1333 {
1334 struct e1000_mac_info *mac = &hw->mac;
1335 u32 ctrl;
1336
1337
1338 hw->fc.current_mode = e1000_fc_none;
1339
1340
1341 ctrl = rd32(E1000_CTRL);
1342 ctrl |= (E1000_CTRL_FRCSPD | E1000_CTRL_FRCDPX);
1343 ctrl &= ~E1000_CTRL_SPD_SEL;
1344
1345
1346 ctrl &= ~E1000_CTRL_ASDE;
1347
1348
1349 *phy_ctrl &= ~MII_CR_AUTO_NEG_EN;
1350
1351
1352 if (mac->forced_speed_duplex & E1000_ALL_HALF_DUPLEX) {
1353 ctrl &= ~E1000_CTRL_FD;
1354 *phy_ctrl &= ~MII_CR_FULL_DUPLEX;
1355 hw_dbg("Half Duplex\n");
1356 } else {
1357 ctrl |= E1000_CTRL_FD;
1358 *phy_ctrl |= MII_CR_FULL_DUPLEX;
1359 hw_dbg("Full Duplex\n");
1360 }
1361
1362
1363 if (mac->forced_speed_duplex & E1000_ALL_100_SPEED) {
1364 ctrl |= E1000_CTRL_SPD_100;
1365 *phy_ctrl |= MII_CR_SPEED_100;
1366 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_10);
1367 hw_dbg("Forcing 100mb\n");
1368 } else {
1369 ctrl &= ~(E1000_CTRL_SPD_1000 | E1000_CTRL_SPD_100);
1370 *phy_ctrl |= MII_CR_SPEED_10;
1371 *phy_ctrl &= ~(MII_CR_SPEED_1000 | MII_CR_SPEED_100);
1372 hw_dbg("Forcing 10mb\n");
1373 }
1374
1375 igb_config_collision_dist(hw);
1376
1377 wr32(E1000_CTRL, ctrl);
1378 }
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394 s32 igb_set_d3_lplu_state(struct e1000_hw *hw, bool active)
1395 {
1396 struct e1000_phy_info *phy = &hw->phy;
1397 s32 ret_val = 0;
1398 u16 data;
1399
1400 if (!(hw->phy.ops.read_reg))
1401 goto out;
1402
1403 ret_val = phy->ops.read_reg(hw, IGP02E1000_PHY_POWER_MGMT, &data);
1404 if (ret_val)
1405 goto out;
1406
1407 if (!active) {
1408 data &= ~IGP02E1000_PM_D3_LPLU;
1409 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
1410 data);
1411 if (ret_val)
1412 goto out;
1413
1414
1415
1416
1417
1418 if (phy->smart_speed == e1000_smart_speed_on) {
1419 ret_val = phy->ops.read_reg(hw,
1420 IGP01E1000_PHY_PORT_CONFIG,
1421 &data);
1422 if (ret_val)
1423 goto out;
1424
1425 data |= IGP01E1000_PSCFR_SMART_SPEED;
1426 ret_val = phy->ops.write_reg(hw,
1427 IGP01E1000_PHY_PORT_CONFIG,
1428 data);
1429 if (ret_val)
1430 goto out;
1431 } else if (phy->smart_speed == e1000_smart_speed_off) {
1432 ret_val = phy->ops.read_reg(hw,
1433 IGP01E1000_PHY_PORT_CONFIG,
1434 &data);
1435 if (ret_val)
1436 goto out;
1437
1438 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1439 ret_val = phy->ops.write_reg(hw,
1440 IGP01E1000_PHY_PORT_CONFIG,
1441 data);
1442 if (ret_val)
1443 goto out;
1444 }
1445 } else if ((phy->autoneg_advertised == E1000_ALL_SPEED_DUPLEX) ||
1446 (phy->autoneg_advertised == E1000_ALL_NOT_GIG) ||
1447 (phy->autoneg_advertised == E1000_ALL_10_SPEED)) {
1448 data |= IGP02E1000_PM_D3_LPLU;
1449 ret_val = phy->ops.write_reg(hw, IGP02E1000_PHY_POWER_MGMT,
1450 data);
1451 if (ret_val)
1452 goto out;
1453
1454
1455 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1456 &data);
1457 if (ret_val)
1458 goto out;
1459
1460 data &= ~IGP01E1000_PSCFR_SMART_SPEED;
1461 ret_val = phy->ops.write_reg(hw, IGP01E1000_PHY_PORT_CONFIG,
1462 data);
1463 }
1464
1465 out:
1466 return ret_val;
1467 }
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477 s32 igb_check_downshift(struct e1000_hw *hw)
1478 {
1479 struct e1000_phy_info *phy = &hw->phy;
1480 s32 ret_val;
1481 u16 phy_data, offset, mask;
1482
1483 switch (phy->type) {
1484 case e1000_phy_i210:
1485 case e1000_phy_m88:
1486 case e1000_phy_gg82563:
1487 offset = M88E1000_PHY_SPEC_STATUS;
1488 mask = M88E1000_PSSR_DOWNSHIFT;
1489 break;
1490 case e1000_phy_igp_2:
1491 case e1000_phy_igp:
1492 case e1000_phy_igp_3:
1493 offset = IGP01E1000_PHY_LINK_HEALTH;
1494 mask = IGP01E1000_PLHR_SS_DOWNGRADE;
1495 break;
1496 default:
1497
1498 phy->speed_downgraded = false;
1499 ret_val = 0;
1500 goto out;
1501 }
1502
1503 ret_val = phy->ops.read_reg(hw, offset, &phy_data);
1504
1505 if (!ret_val)
1506 phy->speed_downgraded = (phy_data & mask) ? true : false;
1507
1508 out:
1509 return ret_val;
1510 }
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520 s32 igb_check_polarity_m88(struct e1000_hw *hw)
1521 {
1522 struct e1000_phy_info *phy = &hw->phy;
1523 s32 ret_val;
1524 u16 data;
1525
1526 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &data);
1527
1528 if (!ret_val)
1529 phy->cable_polarity = (data & M88E1000_PSSR_REV_POLARITY)
1530 ? e1000_rev_polarity_reversed
1531 : e1000_rev_polarity_normal;
1532
1533 return ret_val;
1534 }
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545 static s32 igb_check_polarity_igp(struct e1000_hw *hw)
1546 {
1547 struct e1000_phy_info *phy = &hw->phy;
1548 s32 ret_val;
1549 u16 data, offset, mask;
1550
1551
1552
1553
1554 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data);
1555 if (ret_val)
1556 goto out;
1557
1558 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
1559 IGP01E1000_PSSR_SPEED_1000MBPS) {
1560 offset = IGP01E1000_PHY_PCS_INIT_REG;
1561 mask = IGP01E1000_PHY_POLARITY_MASK;
1562 } else {
1563
1564
1565
1566 offset = IGP01E1000_PHY_PORT_STATUS;
1567 mask = IGP01E1000_PSSR_POLARITY_REVERSED;
1568 }
1569
1570 ret_val = phy->ops.read_reg(hw, offset, &data);
1571
1572 if (!ret_val)
1573 phy->cable_polarity = (data & mask)
1574 ? e1000_rev_polarity_reversed
1575 : e1000_rev_polarity_normal;
1576
1577 out:
1578 return ret_val;
1579 }
1580
1581
1582
1583
1584
1585
1586
1587
1588 static s32 igb_wait_autoneg(struct e1000_hw *hw)
1589 {
1590 s32 ret_val = 0;
1591 u16 i, phy_status;
1592
1593
1594 for (i = PHY_AUTO_NEG_LIMIT; i > 0; i--) {
1595 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1596 if (ret_val)
1597 break;
1598 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1599 if (ret_val)
1600 break;
1601 if (phy_status & MII_SR_AUTONEG_COMPLETE)
1602 break;
1603 msleep(100);
1604 }
1605
1606
1607
1608
1609 return ret_val;
1610 }
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621 s32 igb_phy_has_link(struct e1000_hw *hw, u32 iterations,
1622 u32 usec_interval, bool *success)
1623 {
1624 s32 ret_val = 0;
1625 u16 i, phy_status;
1626
1627 for (i = 0; i < iterations; i++) {
1628
1629
1630
1631
1632 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1633 if (ret_val && usec_interval > 0) {
1634
1635
1636
1637
1638 if (usec_interval >= 1000)
1639 mdelay(usec_interval/1000);
1640 else
1641 udelay(usec_interval);
1642 }
1643 ret_val = hw->phy.ops.read_reg(hw, PHY_STATUS, &phy_status);
1644 if (ret_val)
1645 break;
1646 if (phy_status & MII_SR_LINK_STATUS)
1647 break;
1648 if (usec_interval >= 1000)
1649 mdelay(usec_interval/1000);
1650 else
1651 udelay(usec_interval);
1652 }
1653
1654 *success = (i < iterations) ? true : false;
1655
1656 return ret_val;
1657 }
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674 s32 igb_get_cable_length_m88(struct e1000_hw *hw)
1675 {
1676 struct e1000_phy_info *phy = &hw->phy;
1677 s32 ret_val;
1678 u16 phy_data, index;
1679
1680 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1681 if (ret_val)
1682 goto out;
1683
1684 index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
1685 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
1686 if (index >= ARRAY_SIZE(e1000_m88_cable_length_table) - 1) {
1687 ret_val = -E1000_ERR_PHY;
1688 goto out;
1689 }
1690
1691 phy->min_cable_length = e1000_m88_cable_length_table[index];
1692 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
1693
1694 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1695
1696 out:
1697 return ret_val;
1698 }
1699
1700 s32 igb_get_cable_length_m88_gen2(struct e1000_hw *hw)
1701 {
1702 struct e1000_phy_info *phy = &hw->phy;
1703 s32 ret_val;
1704 u16 phy_data, phy_data2, index, default_page, is_cm;
1705 int len_tot = 0;
1706 u16 len_min;
1707 u16 len_max;
1708
1709 switch (hw->phy.id) {
1710 case M88E1543_E_PHY_ID:
1711 case M88E1512_E_PHY_ID:
1712 case I347AT4_E_PHY_ID:
1713 case I210_I_PHY_ID:
1714
1715 ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT,
1716 &default_page);
1717 if (ret_val)
1718 goto out;
1719
1720 ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x07);
1721 if (ret_val)
1722 goto out;
1723
1724
1725 ret_val = phy->ops.read_reg(hw, I347AT4_PCDC, &phy_data2);
1726 if (ret_val)
1727 goto out;
1728
1729 is_cm = !(phy_data2 & I347AT4_PCDC_CABLE_LENGTH_UNIT);
1730
1731
1732 ret_val = phy->ops.read_reg(hw, I347AT4_PCDL0, &phy_data);
1733 if (ret_val)
1734 goto out;
1735
1736 phy->pair_length[0] = phy_data / (is_cm ? 100 : 1);
1737 len_tot = phy->pair_length[0];
1738 len_min = phy->pair_length[0];
1739 len_max = phy->pair_length[0];
1740
1741
1742 ret_val = phy->ops.read_reg(hw, I347AT4_PCDL1, &phy_data);
1743 if (ret_val)
1744 goto out;
1745
1746 phy->pair_length[1] = phy_data / (is_cm ? 100 : 1);
1747 len_tot += phy->pair_length[1];
1748 len_min = min(len_min, phy->pair_length[1]);
1749 len_max = max(len_max, phy->pair_length[1]);
1750
1751
1752 ret_val = phy->ops.read_reg(hw, I347AT4_PCDL2, &phy_data);
1753 if (ret_val)
1754 goto out;
1755
1756 phy->pair_length[2] = phy_data / (is_cm ? 100 : 1);
1757 len_tot += phy->pair_length[2];
1758 len_min = min(len_min, phy->pair_length[2]);
1759 len_max = max(len_max, phy->pair_length[2]);
1760
1761
1762 ret_val = phy->ops.read_reg(hw, I347AT4_PCDL3, &phy_data);
1763 if (ret_val)
1764 goto out;
1765
1766 phy->pair_length[3] = phy_data / (is_cm ? 100 : 1);
1767 len_tot += phy->pair_length[3];
1768 len_min = min(len_min, phy->pair_length[3]);
1769 len_max = max(len_max, phy->pair_length[3]);
1770
1771
1772 phy->min_cable_length = len_min;
1773 phy->max_cable_length = len_max;
1774 phy->cable_length = len_tot / 4;
1775
1776
1777 ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT,
1778 default_page);
1779 if (ret_val)
1780 goto out;
1781 break;
1782 case M88E1112_E_PHY_ID:
1783
1784 ret_val = phy->ops.read_reg(hw, I347AT4_PAGE_SELECT,
1785 &default_page);
1786 if (ret_val)
1787 goto out;
1788
1789 ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT, 0x05);
1790 if (ret_val)
1791 goto out;
1792
1793 ret_val = phy->ops.read_reg(hw, M88E1112_VCT_DSP_DISTANCE,
1794 &phy_data);
1795 if (ret_val)
1796 goto out;
1797
1798 index = (phy_data & M88E1000_PSSR_CABLE_LENGTH) >>
1799 M88E1000_PSSR_CABLE_LENGTH_SHIFT;
1800 if (index >= ARRAY_SIZE(e1000_m88_cable_length_table) - 1) {
1801 ret_val = -E1000_ERR_PHY;
1802 goto out;
1803 }
1804
1805 phy->min_cable_length = e1000_m88_cable_length_table[index];
1806 phy->max_cable_length = e1000_m88_cable_length_table[index + 1];
1807
1808 phy->cable_length = (phy->min_cable_length +
1809 phy->max_cable_length) / 2;
1810
1811
1812 ret_val = phy->ops.write_reg(hw, I347AT4_PAGE_SELECT,
1813 default_page);
1814 if (ret_val)
1815 goto out;
1816
1817 break;
1818 default:
1819 ret_val = -E1000_ERR_PHY;
1820 goto out;
1821 }
1822
1823 out:
1824 return ret_val;
1825 }
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838 s32 igb_get_cable_length_igp_2(struct e1000_hw *hw)
1839 {
1840 struct e1000_phy_info *phy = &hw->phy;
1841 s32 ret_val = 0;
1842 u16 phy_data, i, agc_value = 0;
1843 u16 cur_agc_index, max_agc_index = 0;
1844 u16 min_agc_index = ARRAY_SIZE(e1000_igp_2_cable_length_table) - 1;
1845 static const u16 agc_reg_array[IGP02E1000_PHY_CHANNEL_NUM] = {
1846 IGP02E1000_PHY_AGC_A,
1847 IGP02E1000_PHY_AGC_B,
1848 IGP02E1000_PHY_AGC_C,
1849 IGP02E1000_PHY_AGC_D
1850 };
1851
1852
1853 for (i = 0; i < IGP02E1000_PHY_CHANNEL_NUM; i++) {
1854 ret_val = phy->ops.read_reg(hw, agc_reg_array[i], &phy_data);
1855 if (ret_val)
1856 goto out;
1857
1858
1859
1860
1861
1862
1863 cur_agc_index = (phy_data >> IGP02E1000_AGC_LENGTH_SHIFT) &
1864 IGP02E1000_AGC_LENGTH_MASK;
1865
1866
1867 if ((cur_agc_index >= ARRAY_SIZE(e1000_igp_2_cable_length_table)) ||
1868 (cur_agc_index == 0)) {
1869 ret_val = -E1000_ERR_PHY;
1870 goto out;
1871 }
1872
1873
1874 if (e1000_igp_2_cable_length_table[min_agc_index] >
1875 e1000_igp_2_cable_length_table[cur_agc_index])
1876 min_agc_index = cur_agc_index;
1877 if (e1000_igp_2_cable_length_table[max_agc_index] <
1878 e1000_igp_2_cable_length_table[cur_agc_index])
1879 max_agc_index = cur_agc_index;
1880
1881 agc_value += e1000_igp_2_cable_length_table[cur_agc_index];
1882 }
1883
1884 agc_value -= (e1000_igp_2_cable_length_table[min_agc_index] +
1885 e1000_igp_2_cable_length_table[max_agc_index]);
1886 agc_value /= (IGP02E1000_PHY_CHANNEL_NUM - 2);
1887
1888
1889 phy->min_cable_length = ((agc_value - IGP02E1000_AGC_RANGE) > 0) ?
1890 (agc_value - IGP02E1000_AGC_RANGE) : 0;
1891 phy->max_cable_length = agc_value + IGP02E1000_AGC_RANGE;
1892
1893 phy->cable_length = (phy->min_cable_length + phy->max_cable_length) / 2;
1894
1895 out:
1896 return ret_val;
1897 }
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909 s32 igb_get_phy_info_m88(struct e1000_hw *hw)
1910 {
1911 struct e1000_phy_info *phy = &hw->phy;
1912 s32 ret_val;
1913 u16 phy_data;
1914 bool link;
1915
1916 if (phy->media_type != e1000_media_type_copper) {
1917 hw_dbg("Phy info is only valid for copper media\n");
1918 ret_val = -E1000_ERR_CONFIG;
1919 goto out;
1920 }
1921
1922 ret_val = igb_phy_has_link(hw, 1, 0, &link);
1923 if (ret_val)
1924 goto out;
1925
1926 if (!link) {
1927 hw_dbg("Phy info is only valid if link is up\n");
1928 ret_val = -E1000_ERR_CONFIG;
1929 goto out;
1930 }
1931
1932 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_CTRL, &phy_data);
1933 if (ret_val)
1934 goto out;
1935
1936 phy->polarity_correction = (phy_data & M88E1000_PSCR_POLARITY_REVERSAL)
1937 ? true : false;
1938
1939 ret_val = igb_check_polarity_m88(hw);
1940 if (ret_val)
1941 goto out;
1942
1943 ret_val = phy->ops.read_reg(hw, M88E1000_PHY_SPEC_STATUS, &phy_data);
1944 if (ret_val)
1945 goto out;
1946
1947 phy->is_mdix = (phy_data & M88E1000_PSSR_MDIX) ? true : false;
1948
1949 if ((phy_data & M88E1000_PSSR_SPEED) == M88E1000_PSSR_1000MBS) {
1950 ret_val = phy->ops.get_cable_length(hw);
1951 if (ret_val)
1952 goto out;
1953
1954 ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &phy_data);
1955 if (ret_val)
1956 goto out;
1957
1958 phy->local_rx = (phy_data & SR_1000T_LOCAL_RX_STATUS)
1959 ? e1000_1000t_rx_status_ok
1960 : e1000_1000t_rx_status_not_ok;
1961
1962 phy->remote_rx = (phy_data & SR_1000T_REMOTE_RX_STATUS)
1963 ? e1000_1000t_rx_status_ok
1964 : e1000_1000t_rx_status_not_ok;
1965 } else {
1966
1967 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
1968 phy->local_rx = e1000_1000t_rx_status_undefined;
1969 phy->remote_rx = e1000_1000t_rx_status_undefined;
1970 }
1971
1972 out:
1973 return ret_val;
1974 }
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985 s32 igb_get_phy_info_igp(struct e1000_hw *hw)
1986 {
1987 struct e1000_phy_info *phy = &hw->phy;
1988 s32 ret_val;
1989 u16 data;
1990 bool link;
1991
1992 ret_val = igb_phy_has_link(hw, 1, 0, &link);
1993 if (ret_val)
1994 goto out;
1995
1996 if (!link) {
1997 hw_dbg("Phy info is only valid if link is up\n");
1998 ret_val = -E1000_ERR_CONFIG;
1999 goto out;
2000 }
2001
2002 phy->polarity_correction = true;
2003
2004 ret_val = igb_check_polarity_igp(hw);
2005 if (ret_val)
2006 goto out;
2007
2008 ret_val = phy->ops.read_reg(hw, IGP01E1000_PHY_PORT_STATUS, &data);
2009 if (ret_val)
2010 goto out;
2011
2012 phy->is_mdix = (data & IGP01E1000_PSSR_MDIX) ? true : false;
2013
2014 if ((data & IGP01E1000_PSSR_SPEED_MASK) ==
2015 IGP01E1000_PSSR_SPEED_1000MBPS) {
2016 ret_val = phy->ops.get_cable_length(hw);
2017 if (ret_val)
2018 goto out;
2019
2020 ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data);
2021 if (ret_val)
2022 goto out;
2023
2024 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2025 ? e1000_1000t_rx_status_ok
2026 : e1000_1000t_rx_status_not_ok;
2027
2028 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2029 ? e1000_1000t_rx_status_ok
2030 : e1000_1000t_rx_status_not_ok;
2031 } else {
2032 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2033 phy->local_rx = e1000_1000t_rx_status_undefined;
2034 phy->remote_rx = e1000_1000t_rx_status_undefined;
2035 }
2036
2037 out:
2038 return ret_val;
2039 }
2040
2041
2042
2043
2044
2045
2046
2047
2048 s32 igb_phy_sw_reset(struct e1000_hw *hw)
2049 {
2050 s32 ret_val = 0;
2051 u16 phy_ctrl;
2052
2053 if (!(hw->phy.ops.read_reg))
2054 goto out;
2055
2056 ret_val = hw->phy.ops.read_reg(hw, PHY_CONTROL, &phy_ctrl);
2057 if (ret_val)
2058 goto out;
2059
2060 phy_ctrl |= MII_CR_RESET;
2061 ret_val = hw->phy.ops.write_reg(hw, PHY_CONTROL, phy_ctrl);
2062 if (ret_val)
2063 goto out;
2064
2065 udelay(1);
2066
2067 out:
2068 return ret_val;
2069 }
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080 s32 igb_phy_hw_reset(struct e1000_hw *hw)
2081 {
2082 struct e1000_phy_info *phy = &hw->phy;
2083 s32 ret_val;
2084 u32 ctrl;
2085
2086 ret_val = igb_check_reset_block(hw);
2087 if (ret_val) {
2088 ret_val = 0;
2089 goto out;
2090 }
2091
2092 ret_val = phy->ops.acquire(hw);
2093 if (ret_val)
2094 goto out;
2095
2096 ctrl = rd32(E1000_CTRL);
2097 wr32(E1000_CTRL, ctrl | E1000_CTRL_PHY_RST);
2098 wrfl();
2099
2100 udelay(phy->reset_delay_us);
2101
2102 wr32(E1000_CTRL, ctrl);
2103 wrfl();
2104
2105 udelay(150);
2106
2107 phy->ops.release(hw);
2108
2109 ret_val = phy->ops.get_cfg_done(hw);
2110
2111 out:
2112 return ret_val;
2113 }
2114
2115
2116
2117
2118
2119
2120
2121 s32 igb_phy_init_script_igp3(struct e1000_hw *hw)
2122 {
2123 hw_dbg("Running IGP 3 PHY init script\n");
2124
2125
2126
2127 hw->phy.ops.write_reg(hw, 0x2F5B, 0x9018);
2128
2129 hw->phy.ops.write_reg(hw, 0x2F52, 0x0000);
2130
2131 hw->phy.ops.write_reg(hw, 0x2FB1, 0x8B24);
2132
2133 hw->phy.ops.write_reg(hw, 0x2FB2, 0xF8F0);
2134
2135 hw->phy.ops.write_reg(hw, 0x2010, 0x10B0);
2136
2137 hw->phy.ops.write_reg(hw, 0x2011, 0x0000);
2138
2139 hw->phy.ops.write_reg(hw, 0x20DD, 0x249A);
2140
2141 hw->phy.ops.write_reg(hw, 0x20DE, 0x00D3);
2142
2143 hw->phy.ops.write_reg(hw, 0x28B4, 0x04CE);
2144
2145 hw->phy.ops.write_reg(hw, 0x2F70, 0x29E4);
2146
2147 hw->phy.ops.write_reg(hw, 0x0000, 0x0140);
2148
2149 hw->phy.ops.write_reg(hw, 0x1F30, 0x1606);
2150
2151 hw->phy.ops.write_reg(hw, 0x1F31, 0xB814);
2152
2153 hw->phy.ops.write_reg(hw, 0x1F35, 0x002A);
2154
2155 hw->phy.ops.write_reg(hw, 0x1F3E, 0x0067);
2156
2157 hw->phy.ops.write_reg(hw, 0x1F54, 0x0065);
2158
2159 hw->phy.ops.write_reg(hw, 0x1F55, 0x002A);
2160
2161 hw->phy.ops.write_reg(hw, 0x1F56, 0x002A);
2162
2163 hw->phy.ops.write_reg(hw, 0x1F72, 0x3FB0);
2164
2165 hw->phy.ops.write_reg(hw, 0x1F76, 0xC0FF);
2166
2167 hw->phy.ops.write_reg(hw, 0x1F77, 0x1DEC);
2168
2169 hw->phy.ops.write_reg(hw, 0x1F78, 0xF9EF);
2170
2171 hw->phy.ops.write_reg(hw, 0x1F79, 0x0210);
2172
2173 hw->phy.ops.write_reg(hw, 0x1895, 0x0003);
2174
2175 hw->phy.ops.write_reg(hw, 0x1796, 0x0008);
2176
2177 hw->phy.ops.write_reg(hw, 0x1798, 0xD008);
2178
2179
2180
2181 hw->phy.ops.write_reg(hw, 0x1898, 0xD918);
2182
2183 hw->phy.ops.write_reg(hw, 0x187A, 0x0800);
2184
2185
2186
2187 hw->phy.ops.write_reg(hw, 0x0019, 0x008D);
2188
2189 hw->phy.ops.write_reg(hw, 0x001B, 0x2080);
2190
2191 hw->phy.ops.write_reg(hw, 0x0014, 0x0045);
2192
2193 hw->phy.ops.write_reg(hw, 0x0000, 0x1340);
2194
2195 return 0;
2196 }
2197
2198
2199
2200
2201
2202
2203
2204 s32 igb_initialize_M88E1512_phy(struct e1000_hw *hw)
2205 {
2206 struct e1000_phy_info *phy = &hw->phy;
2207 s32 ret_val = 0;
2208
2209
2210 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FF);
2211 if (ret_val)
2212 goto out;
2213
2214 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x214B);
2215 if (ret_val)
2216 goto out;
2217
2218 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2144);
2219 if (ret_val)
2220 goto out;
2221
2222 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x0C28);
2223 if (ret_val)
2224 goto out;
2225
2226 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2146);
2227 if (ret_val)
2228 goto out;
2229
2230 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xB233);
2231 if (ret_val)
2232 goto out;
2233
2234 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x214D);
2235 if (ret_val)
2236 goto out;
2237
2238 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xCC0C);
2239 if (ret_val)
2240 goto out;
2241
2242 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2159);
2243 if (ret_val)
2244 goto out;
2245
2246
2247 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FB);
2248 if (ret_val)
2249 goto out;
2250
2251 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_3, 0x000D);
2252 if (ret_val)
2253 goto out;
2254
2255
2256 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x12);
2257 if (ret_val)
2258 goto out;
2259
2260
2261 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_MODE, 0x8001);
2262 if (ret_val)
2263 goto out;
2264
2265
2266 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
2267 if (ret_val)
2268 goto out;
2269
2270 ret_val = igb_phy_sw_reset(hw);
2271 if (ret_val) {
2272 hw_dbg("Error committing the PHY changes\n");
2273 return ret_val;
2274 }
2275
2276
2277 usleep_range(1000, 2000);
2278 out:
2279 return ret_val;
2280 }
2281
2282
2283
2284
2285
2286
2287
2288 s32 igb_initialize_M88E1543_phy(struct e1000_hw *hw)
2289 {
2290 struct e1000_phy_info *phy = &hw->phy;
2291 s32 ret_val = 0;
2292
2293
2294 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FF);
2295 if (ret_val)
2296 goto out;
2297
2298 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x214B);
2299 if (ret_val)
2300 goto out;
2301
2302 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2144);
2303 if (ret_val)
2304 goto out;
2305
2306 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0x0C28);
2307 if (ret_val)
2308 goto out;
2309
2310 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2146);
2311 if (ret_val)
2312 goto out;
2313
2314 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xB233);
2315 if (ret_val)
2316 goto out;
2317
2318 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x214D);
2319 if (ret_val)
2320 goto out;
2321
2322 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_2, 0xDC0C);
2323 if (ret_val)
2324 goto out;
2325
2326 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_1, 0x2159);
2327 if (ret_val)
2328 goto out;
2329
2330
2331 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x00FB);
2332 if (ret_val)
2333 goto out;
2334
2335 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_CFG_REG_3, 0x0C0D);
2336 if (ret_val)
2337 goto out;
2338
2339
2340 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x12);
2341 if (ret_val)
2342 goto out;
2343
2344
2345 ret_val = phy->ops.write_reg(hw, E1000_M88E1512_MODE, 0x8001);
2346 if (ret_val)
2347 goto out;
2348
2349
2350 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0x1);
2351 if (ret_val)
2352 goto out;
2353
2354
2355 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_FIBER_CTRL, 0x9140);
2356 if (ret_val)
2357 goto out;
2358
2359
2360 ret_val = phy->ops.write_reg(hw, E1000_M88E1543_PAGE_ADDR, 0);
2361 if (ret_val)
2362 goto out;
2363
2364 ret_val = igb_phy_sw_reset(hw);
2365 if (ret_val) {
2366 hw_dbg("Error committing the PHY changes\n");
2367 return ret_val;
2368 }
2369
2370
2371 usleep_range(1000, 2000);
2372 out:
2373 return ret_val;
2374 }
2375
2376
2377
2378
2379
2380
2381
2382
2383 void igb_power_up_phy_copper(struct e1000_hw *hw)
2384 {
2385 u16 mii_reg = 0;
2386
2387
2388 hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg);
2389 mii_reg &= ~MII_CR_POWER_DOWN;
2390 hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg);
2391 }
2392
2393
2394
2395
2396
2397
2398
2399
2400 void igb_power_down_phy_copper(struct e1000_hw *hw)
2401 {
2402 u16 mii_reg = 0;
2403
2404
2405 hw->phy.ops.read_reg(hw, PHY_CONTROL, &mii_reg);
2406 mii_reg |= MII_CR_POWER_DOWN;
2407 hw->phy.ops.write_reg(hw, PHY_CONTROL, mii_reg);
2408 usleep_range(1000, 2000);
2409 }
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419 static s32 igb_check_polarity_82580(struct e1000_hw *hw)
2420 {
2421 struct e1000_phy_info *phy = &hw->phy;
2422 s32 ret_val;
2423 u16 data;
2424
2425
2426 ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data);
2427
2428 if (!ret_val)
2429 phy->cable_polarity = (data & I82580_PHY_STATUS2_REV_POLARITY)
2430 ? e1000_rev_polarity_reversed
2431 : e1000_rev_polarity_normal;
2432
2433 return ret_val;
2434 }
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444 s32 igb_phy_force_speed_duplex_82580(struct e1000_hw *hw)
2445 {
2446 struct e1000_phy_info *phy = &hw->phy;
2447 s32 ret_val;
2448 u16 phy_data;
2449 bool link;
2450
2451 ret_val = phy->ops.read_reg(hw, PHY_CONTROL, &phy_data);
2452 if (ret_val)
2453 goto out;
2454
2455 igb_phy_force_speed_duplex_setup(hw, &phy_data);
2456
2457 ret_val = phy->ops.write_reg(hw, PHY_CONTROL, phy_data);
2458 if (ret_val)
2459 goto out;
2460
2461
2462
2463
2464 ret_val = phy->ops.read_reg(hw, I82580_PHY_CTRL_2, &phy_data);
2465 if (ret_val)
2466 goto out;
2467
2468 phy_data &= ~I82580_PHY_CTRL2_MDIX_CFG_MASK;
2469
2470 ret_val = phy->ops.write_reg(hw, I82580_PHY_CTRL_2, phy_data);
2471 if (ret_val)
2472 goto out;
2473
2474 hw_dbg("I82580_PHY_CTRL_2: %X\n", phy_data);
2475
2476 udelay(1);
2477
2478 if (phy->autoneg_wait_to_complete) {
2479 hw_dbg("Waiting for forced speed/duplex link on 82580 phy\n");
2480
2481 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
2482 if (ret_val)
2483 goto out;
2484
2485 if (!link)
2486 hw_dbg("Link taking longer than expected.\n");
2487
2488
2489 ret_val = igb_phy_has_link(hw, PHY_FORCE_LIMIT, 100000, &link);
2490 if (ret_val)
2491 goto out;
2492 }
2493
2494 out:
2495 return ret_val;
2496 }
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507 s32 igb_get_phy_info_82580(struct e1000_hw *hw)
2508 {
2509 struct e1000_phy_info *phy = &hw->phy;
2510 s32 ret_val;
2511 u16 data;
2512 bool link;
2513
2514 ret_val = igb_phy_has_link(hw, 1, 0, &link);
2515 if (ret_val)
2516 goto out;
2517
2518 if (!link) {
2519 hw_dbg("Phy info is only valid if link is up\n");
2520 ret_val = -E1000_ERR_CONFIG;
2521 goto out;
2522 }
2523
2524 phy->polarity_correction = true;
2525
2526 ret_val = igb_check_polarity_82580(hw);
2527 if (ret_val)
2528 goto out;
2529
2530 ret_val = phy->ops.read_reg(hw, I82580_PHY_STATUS_2, &data);
2531 if (ret_val)
2532 goto out;
2533
2534 phy->is_mdix = (data & I82580_PHY_STATUS2_MDIX) ? true : false;
2535
2536 if ((data & I82580_PHY_STATUS2_SPEED_MASK) ==
2537 I82580_PHY_STATUS2_SPEED_1000MBPS) {
2538 ret_val = hw->phy.ops.get_cable_length(hw);
2539 if (ret_val)
2540 goto out;
2541
2542 ret_val = phy->ops.read_reg(hw, PHY_1000T_STATUS, &data);
2543 if (ret_val)
2544 goto out;
2545
2546 phy->local_rx = (data & SR_1000T_LOCAL_RX_STATUS)
2547 ? e1000_1000t_rx_status_ok
2548 : e1000_1000t_rx_status_not_ok;
2549
2550 phy->remote_rx = (data & SR_1000T_REMOTE_RX_STATUS)
2551 ? e1000_1000t_rx_status_ok
2552 : e1000_1000t_rx_status_not_ok;
2553 } else {
2554 phy->cable_length = E1000_CABLE_LENGTH_UNDEFINED;
2555 phy->local_rx = e1000_1000t_rx_status_undefined;
2556 phy->remote_rx = e1000_1000t_rx_status_undefined;
2557 }
2558
2559 out:
2560 return ret_val;
2561 }
2562
2563
2564
2565
2566
2567
2568
2569
2570 s32 igb_get_cable_length_82580(struct e1000_hw *hw)
2571 {
2572 struct e1000_phy_info *phy = &hw->phy;
2573 s32 ret_val;
2574 u16 phy_data, length;
2575
2576 ret_val = phy->ops.read_reg(hw, I82580_PHY_DIAG_STATUS, &phy_data);
2577 if (ret_val)
2578 goto out;
2579
2580 length = (phy_data & I82580_DSTATUS_CABLE_LENGTH) >>
2581 I82580_DSTATUS_CABLE_LENGTH_SHIFT;
2582
2583 if (length == E1000_CABLE_LENGTH_UNDEFINED)
2584 ret_val = -E1000_ERR_PHY;
2585
2586 phy->cable_length = length;
2587
2588 out:
2589 return ret_val;
2590 }
2591
2592
2593
2594
2595
2596
2597
2598 static s32 igb_set_master_slave_mode(struct e1000_hw *hw)
2599 {
2600 s32 ret_val;
2601 u16 phy_data;
2602
2603
2604 ret_val = hw->phy.ops.read_reg(hw, PHY_1000T_CTRL, &phy_data);
2605 if (ret_val)
2606 return ret_val;
2607
2608
2609 hw->phy.original_ms_type = (phy_data & CR_1000T_MS_ENABLE) ?
2610 ((phy_data & CR_1000T_MS_VALUE) ?
2611 e1000_ms_force_master :
2612 e1000_ms_force_slave) : e1000_ms_auto;
2613
2614 switch (hw->phy.ms_type) {
2615 case e1000_ms_force_master:
2616 phy_data |= (CR_1000T_MS_ENABLE | CR_1000T_MS_VALUE);
2617 break;
2618 case e1000_ms_force_slave:
2619 phy_data |= CR_1000T_MS_ENABLE;
2620 phy_data &= ~(CR_1000T_MS_VALUE);
2621 break;
2622 case e1000_ms_auto:
2623 phy_data &= ~CR_1000T_MS_ENABLE;
2624
2625 default:
2626 break;
2627 }
2628
2629 return hw->phy.ops.write_reg(hw, PHY_1000T_CTRL, phy_data);
2630 }