Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
796c3187
Commit
796c3187
authored
Jun 11, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tigon3: More fiber PHY tweaks.
parent
6fbbef95
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
9 deletions
+24
-9
drivers/net/tg3.c
drivers/net/tg3.c
+23
-9
drivers/net/tg3.h
drivers/net/tg3.h
+1
-0
No files found.
drivers/net/tg3.c
View file @
796c3187
...
@@ -1338,7 +1338,7 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
...
@@ -1338,7 +1338,7 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
tg3_writephy
(
tp
,
0x16
,
0x8007
);
tg3_writephy
(
tp
,
0x16
,
0x8007
);
/* SW reset */
/* SW reset */
tg3_writephy
(
tp
,
0x00
,
0x8000
);
tg3_writephy
(
tp
,
MII_BMCR
,
BMCR_RESET
);
/* Wait for reset to complete. */
/* Wait for reset to complete. */
/* XXX schedule_timeout() ... */
/* XXX schedule_timeout() ... */
...
@@ -1382,7 +1382,8 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
...
@@ -1382,7 +1382,8 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
current_link_up
=
0
;
current_link_up
=
0
;
if
(
tr32
(
MAC_STATUS
)
&
MAC_STATUS_PCS_SYNCED
)
{
if
(
tr32
(
MAC_STATUS
)
&
MAC_STATUS_PCS_SYNCED
)
{
if
(
tp
->
link_config
.
autoneg
==
AUTONEG_ENABLE
)
{
if
(
tp
->
link_config
.
autoneg
==
AUTONEG_ENABLE
&&
!
(
tp
->
tg3_flags
&
TG3_FLAG_GOT_SERDES_FLOWCTL
))
{
struct
tg3_fiber_aneginfo
aninfo
;
struct
tg3_fiber_aneginfo
aninfo
;
int
status
=
ANEG_FAILED
;
int
status
=
ANEG_FAILED
;
unsigned
int
tick
;
unsigned
int
tick
;
...
@@ -1429,6 +1430,8 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
...
@@ -1429,6 +1430,8 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
tg3_setup_flow_control
(
tp
,
local_adv
,
remote_adv
);
tg3_setup_flow_control
(
tp
,
local_adv
,
remote_adv
);
tp
->
tg3_flags
|=
TG3_FLAG_GOT_SERDES_FLOWCTL
;
current_link_up
=
1
;
current_link_up
=
1
;
}
}
for
(
i
=
0
;
i
<
60
;
i
++
)
{
for
(
i
=
0
;
i
<
60
;
i
++
)
{
...
@@ -1461,11 +1464,12 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
...
@@ -1461,11 +1464,12 @@ static int tg3_setup_fiber_phy(struct tg3 *tp)
(
tp
->
hw_status
->
status
&
~
SD_STATUS_LINK_CHG
));
(
tp
->
hw_status
->
status
&
~
SD_STATUS_LINK_CHG
));
for
(
i
=
0
;
i
<
100
;
i
++
)
{
for
(
i
=
0
;
i
<
100
;
i
++
)
{
udelay
(
20
);
tw32
(
MAC_STATUS
,
tw32
(
MAC_STATUS
,
(
MAC_STATUS_SYNC_CHANGED
|
(
MAC_STATUS_SYNC_CHANGED
|
MAC_STATUS_CFG_CHANGED
));
MAC_STATUS_CFG_CHANGED
));
udelay
(
5
);
udelay
(
20
);
if
((
tr32
(
MAC_STATUS
)
&
if
((
tr32
(
MAC_STATUS
)
&
(
MAC_STATUS_SYNC_CHANGED
|
(
MAC_STATUS_SYNC_CHANGED
|
MAC_STATUS_CFG_CHANGED
))
==
0
)
MAC_STATUS_CFG_CHANGED
))
==
0
)
...
@@ -3840,18 +3844,25 @@ static void tg3_timer(unsigned long __opaque)
...
@@ -3840,18 +3844,25 @@ static void tg3_timer(unsigned long __opaque)
if
(
phy_event
)
if
(
phy_event
)
tg3_setup_phy
(
tp
);
tg3_setup_phy
(
tp
);
}
else
if
(
tp
->
tg3_flags
&
TG3_FLAG_POLL_SERDES
)
{
}
else
if
(
tp
->
tg3_flags
&
TG3_FLAG_POLL_SERDES
)
{
u32
mac_stat
=
tr32
(
MAC_STATUS
);
u32
mac_stat
=
tr32
(
MAC_STATUS
);
int
need_setup
=
0
;
int
need_setup
=
0
;
if
(
netif_carrier_ok
(
tp
->
dev
)
&&
if
(
netif_carrier_ok
(
tp
->
dev
)
&&
(
mac_stat
&
MAC_STATUS_LNKSTATE_CHANGED
))
(
mac_stat
&
MAC_STATUS_LNKSTATE_CHANGED
))
{
need_setup
=
1
;
need_setup
=
1
;
}
if
(
!
netif_carrier_ok
(
tp
->
dev
)
&&
if
(
!
netif_carrier_ok
(
tp
->
dev
)
&&
(
mac_stat
&
MAC_STATUS_PCS_SYNCED
))
(
mac_stat
&
MAC_STATUS_PCS_SYNCED
))
{
need_setup
=
1
;
need_setup
=
1
;
}
if
(
need_setup
)
if
(
need_setup
)
{
tw32
(
MAC_MODE
,
(
tp
->
mac_mode
&
~
MAC_MODE_PORT_MODE_MASK
));
udelay
(
40
);
tw32
(
MAC_MODE
,
tp
->
mac_mode
);
tg3_setup_phy
(
tp
);
tg3_setup_phy
(
tp
);
}
}
}
tp
->
timer_counter
=
tp
->
timer_multiplier
;
tp
->
timer_counter
=
tp
->
timer_multiplier
;
...
@@ -4207,7 +4218,10 @@ static int tg3_close(struct net_device *dev)
...
@@ -4207,7 +4218,10 @@ static int tg3_close(struct net_device *dev)
tg3_halt
(
tp
);
tg3_halt
(
tp
);
tg3_free_rings
(
tp
);
tg3_free_rings
(
tp
);
tp
->
tg3_flags
&=
~
TG3_FLAG_INIT_COMPLETE
;
tp
->
tg3_flags
&=
~
(
TG3_FLAG_INIT_COMPLETE
|
TG3_FLAG_GOT_SERDES_FLOWCTL
);
netif_carrier_off
(
tp
->
dev
);
spin_unlock_irq
(
&
tp
->
lock
);
spin_unlock_irq
(
&
tp
->
lock
);
...
...
drivers/net/tg3.h
View file @
796c3187
...
@@ -1791,6 +1791,7 @@ struct tg3 {
...
@@ -1791,6 +1791,7 @@ struct tg3 {
#define TG3_FLAG_PAUSE_RX 0x04000000
#define TG3_FLAG_PAUSE_RX 0x04000000
#define TG3_FLAG_PAUSE_TX 0x08000000
#define TG3_FLAG_PAUSE_TX 0x08000000
#define TG3_FLAG_BROKEN_CHECKSUMS 0x10000000
#define TG3_FLAG_BROKEN_CHECKSUMS 0x10000000
#define TG3_FLAG_GOT_SERDES_FLOWCTL 0x20000000
#define TG3_FLAG_INIT_COMPLETE 0x80000000
#define TG3_FLAG_INIT_COMPLETE 0x80000000
u32
msg_enable
;
u32
msg_enable
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment