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
nexedi
linux
Commits
e7c9dc43
Commit
e7c9dc43
authored
May 12, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[TG3]: Updated ASF handling for 5750.
parent
918a92d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
110 additions
and
18 deletions
+110
-18
drivers/net/tg3.c
drivers/net/tg3.c
+107
-18
drivers/net/tg3.h
drivers/net/tg3.h
+3
-0
No files found.
drivers/net/tg3.c
View file @
e7c9dc43
...
@@ -845,6 +845,12 @@ static void tg3_frob_aux_power(struct tg3 *tp)
...
@@ -845,6 +845,12 @@ static void tg3_frob_aux_power(struct tg3 *tp)
static
int
tg3_setup_phy
(
struct
tg3
*
,
int
);
static
int
tg3_setup_phy
(
struct
tg3
*
,
int
);
#define RESET_KIND_SHUTDOWN 0
#define RESET_KIND_INIT 1
#define RESET_KIND_SUSPEND 2
static
void
tg3_write_sig_post_reset
(
struct
tg3
*
,
int
);
static
int
tg3_set_power_state
(
struct
tg3
*
tp
,
int
state
)
static
int
tg3_set_power_state
(
struct
tg3
*
tp
,
int
state
)
{
{
u32
misc_host_ctrl
;
u32
misc_host_ctrl
;
...
@@ -1006,6 +1012,8 @@ static int tg3_set_power_state(struct tg3 *tp, int state)
...
@@ -1006,6 +1012,8 @@ static int tg3_set_power_state(struct tg3 *tp, int state)
/* Finally, set the new power state. */
/* Finally, set the new power state. */
pci_write_config_word
(
tp
->
pdev
,
pm
+
PCI_PM_CTRL
,
power_control
);
pci_write_config_word
(
tp
->
pdev
,
pm
+
PCI_PM_CTRL
,
power_control
);
tg3_write_sig_post_reset
(
tp
,
RESET_KIND_SHUTDOWN
);
return
0
;
return
0
;
}
}
...
@@ -3537,6 +3545,82 @@ static void tg3_nvram_unlock(struct tg3 *tp)
...
@@ -3537,6 +3545,82 @@ static void tg3_nvram_unlock(struct tg3 *tp)
tw32_f
(
NVRAM_SWARB
,
SWARB_REQ_CLR1
);
tw32_f
(
NVRAM_SWARB
,
SWARB_REQ_CLR1
);
}
}
/* tp->lock is held. */
static
void
tg3_write_sig_pre_reset
(
struct
tg3
*
tp
,
int
kind
)
{
tg3_write_mem
(
tp
,
NIC_SRAM_FIRMWARE_MBOX
,
NIC_SRAM_FIRMWARE_MBOX_MAGIC1
);
if
(
tp
->
tg3_flags2
&
TG3_FLG2_ASF_NEW_HANDSHAKE
)
{
switch
(
kind
)
{
case
RESET_KIND_INIT
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_START
);
break
;
case
RESET_KIND_SHUTDOWN
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_UNLOAD
);
break
;
case
RESET_KIND_SUSPEND
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_SUSPEND
);
break
;
default:
break
;
};
}
}
/* tp->lock is held. */
static
void
tg3_write_sig_post_reset
(
struct
tg3
*
tp
,
int
kind
)
{
if
(
tp
->
tg3_flags2
&
TG3_FLG2_ASF_NEW_HANDSHAKE
)
{
switch
(
kind
)
{
case
RESET_KIND_INIT
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_START_DONE
);
break
;
case
RESET_KIND_SHUTDOWN
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_UNLOAD_DONE
);
break
;
default:
break
;
};
}
}
/* tp->lock is held. */
static
void
tg3_write_sig_legacy
(
struct
tg3
*
tp
,
int
kind
)
{
if
(
tp
->
tg3_flags
&
TG3_FLAG_ENABLE_ASF
)
{
switch
(
kind
)
{
case
RESET_KIND_INIT
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_START
);
break
;
case
RESET_KIND_SHUTDOWN
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_UNLOAD
);
break
;
case
RESET_KIND_SUSPEND
:
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_SUSPEND
);
break
;
default:
break
;
};
}
}
/* tp->lock is held. */
/* tp->lock is held. */
static
int
tg3_chip_reset
(
struct
tg3
*
tp
)
static
int
tg3_chip_reset
(
struct
tg3
*
tp
)
{
{
...
@@ -3607,11 +3691,6 @@ static int tg3_chip_reset(struct tg3 *tp)
...
@@ -3607,11 +3691,6 @@ static int tg3_chip_reset(struct tg3 *tp)
tw32
(
TG3PCI_CLOCK_CTRL
,
tp
->
pci_clock_ctrl
);
tw32
(
TG3PCI_CLOCK_CTRL
,
tp
->
pci_clock_ctrl
);
}
}
/* Prevent PXE from restarting. */
tg3_write_mem
(
tp
,
NIC_SRAM_FIRMWARE_MBOX
,
NIC_SRAM_FIRMWARE_MBOX_MAGIC1
);
if
(
tp
->
phy_id
==
PHY_ID_SERDES
)
{
if
(
tp
->
phy_id
==
PHY_ID_SERDES
)
{
tp
->
mac_mode
=
MAC_MODE_PORT_MODE_TBI
;
tp
->
mac_mode
=
MAC_MODE_PORT_MODE_TBI
;
tw32_f
(
MAC_MODE
,
tp
->
mac_mode
);
tw32_f
(
MAC_MODE
,
tp
->
mac_mode
);
...
@@ -3636,13 +3715,17 @@ static int tg3_chip_reset(struct tg3 *tp)
...
@@ -3636,13 +3715,17 @@ static int tg3_chip_reset(struct tg3 *tp)
/* Reprobe ASF enable state. */
/* Reprobe ASF enable state. */
tp
->
tg3_flags
&=
~
TG3_FLAG_ENABLE_ASF
;
tp
->
tg3_flags
&=
~
TG3_FLAG_ENABLE_ASF
;
tp
->
tg3_flags2
&=
~
TG3_FLG2_ASF_NEW_HANDSHAKE
;
tg3_read_mem
(
tp
,
NIC_SRAM_DATA_SIG
,
&
val
);
tg3_read_mem
(
tp
,
NIC_SRAM_DATA_SIG
,
&
val
);
if
(
val
==
NIC_SRAM_DATA_SIG_MAGIC
)
{
if
(
val
==
NIC_SRAM_DATA_SIG_MAGIC
)
{
u32
nic_cfg
;
u32
nic_cfg
;
tg3_read_mem
(
tp
,
NIC_SRAM_DATA_CFG
,
&
nic_cfg
);
tg3_read_mem
(
tp
,
NIC_SRAM_DATA_CFG
,
&
nic_cfg
);
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_ASF_ENABLE
)
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_ASF_ENABLE
)
{
tp
->
tg3_flags
|=
TG3_FLAG_ENABLE_ASF
;
tp
->
tg3_flags
|=
TG3_FLAG_ENABLE_ASF
;
if
(
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5750
)
tp
->
tg3_flags2
|=
TG3_FLG2_ASF_NEW_HANDSHAKE
;
}
}
}
return
0
;
return
0
;
...
@@ -3675,15 +3758,18 @@ static int tg3_halt(struct tg3 *tp)
...
@@ -3675,15 +3758,18 @@ static int tg3_halt(struct tg3 *tp)
int
err
;
int
err
;
tg3_stop_fw
(
tp
);
tg3_stop_fw
(
tp
);
tg3_write_sig_pre_reset
(
tp
,
RESET_KIND_SHUTDOWN
);
tg3_abort_hw
(
tp
);
tg3_abort_hw
(
tp
);
err
=
tg3_chip_reset
(
tp
);
err
=
tg3_chip_reset
(
tp
);
tg3_write_sig_legacy
(
tp
,
RESET_KIND_SHUTDOWN
);
tg3_write_sig_post_reset
(
tp
,
RESET_KIND_SHUTDOWN
);
if
(
err
)
if
(
err
)
return
err
;
return
err
;
if
(
tp
->
tg3_flags
&
TG3_FLAG_ENABLE_ASF
)
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_UNLOAD
);
return
0
;
return
0
;
}
}
...
@@ -4642,6 +4728,8 @@ static int tg3_reset_hw(struct tg3 *tp)
...
@@ -4642,6 +4728,8 @@ static int tg3_reset_hw(struct tg3 *tp)
tg3_stop_fw
(
tp
);
tg3_stop_fw
(
tp
);
tg3_write_sig_pre_reset
(
tp
,
RESET_KIND_INIT
);
if
(
tp
->
tg3_flags
&
TG3_FLAG_INIT_COMPLETE
)
{
if
(
tp
->
tg3_flags
&
TG3_FLAG_INIT_COMPLETE
)
{
err
=
tg3_abort_hw
(
tp
);
err
=
tg3_abort_hw
(
tp
);
if
(
err
)
if
(
err
)
...
@@ -4652,12 +4740,7 @@ static int tg3_reset_hw(struct tg3 *tp)
...
@@ -4652,12 +4740,7 @@ static int tg3_reset_hw(struct tg3 *tp)
if
(
err
)
if
(
err
)
return
err
;
return
err
;
if
(
tp
->
tg3_flags
&
TG3_FLAG_ENABLE_ASF
)
tg3_write_sig_legacy
(
tp
,
RESET_KIND_INIT
);
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_START
);
else
tg3_write_mem
(
tp
,
NIC_SRAM_FW_DRV_STATE_MBOX
,
DRV_STATE_SUSPEND
);
/* This works around an issue with Athlon chipsets on
/* This works around an issue with Athlon chipsets on
* B3 tigon3 silicon. This bit has no effect on any
* B3 tigon3 silicon. This bit has no effect on any
...
@@ -5210,6 +5293,8 @@ static int tg3_reset_hw(struct tg3 *tp)
...
@@ -5210,6 +5293,8 @@ static int tg3_reset_hw(struct tg3 *tp)
break
;
break
;
};
};
tg3_write_sig_post_reset
(
tp
,
RESET_KIND_INIT
);
if
(
tp
->
tg3_flags
&
TG3_FLAG_INIT_COMPLETE
)
if
(
tp
->
tg3_flags
&
TG3_FLAG_INIT_COMPLETE
)
tg3_enable_ints
(
tp
);
tg3_enable_ints
(
tp
);
...
@@ -6803,8 +6888,11 @@ static int __devinit tg3_phy_probe(struct tg3 *tp)
...
@@ -6803,8 +6888,11 @@ static int __devinit tg3_phy_probe(struct tg3 *tp)
(
nic_cfg
&
NIC_SRAM_DATA_CFG_EEPROM_WP
))
(
nic_cfg
&
NIC_SRAM_DATA_CFG_EEPROM_WP
))
tp
->
tg3_flags
|=
TG3_FLAG_EEPROM_WRITE_PROT
;
tp
->
tg3_flags
|=
TG3_FLAG_EEPROM_WRITE_PROT
;
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_ASF_ENABLE
)
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_ASF_ENABLE
)
{
tp
->
tg3_flags
|=
TG3_FLAG_ENABLE_ASF
;
tp
->
tg3_flags
|=
TG3_FLAG_ENABLE_ASF
;
if
(
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5750
)
tp
->
tg3_flags2
|=
TG3_FLG2_ASF_NEW_HANDSHAKE
;
}
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_FIBER_WOL
)
if
(
nic_cfg
&
NIC_SRAM_DATA_CFG_FIBER_WOL
)
tp
->
tg3_flags
|=
TG3_FLAG_SERDES_WOL_CAP
;
tp
->
tg3_flags
|=
TG3_FLAG_SERDES_WOL_CAP
;
}
}
...
@@ -8018,7 +8106,8 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
...
@@ -8018,7 +8106,8 @@ static int __devinit tg3_init_one(struct pci_dev *pdev,
if
(
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5700
||
if
(
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5700
||
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5701
||
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
==
ASIC_REV_5701
||
tp
->
pci_chip_rev_id
==
CHIPREV_ID_5705_A0
||
tp
->
pci_chip_rev_id
==
CHIPREV_ID_5705_A0
||
(
tp
->
tg3_flags
&
TG3_FLAG_ENABLE_ASF
)
!=
0
)
{
((
tp
->
tg3_flags
&
TG3_FLAG_ENABLE_ASF
)
!=
0
&&
GET_ASIC_REV
(
tp
->
pci_chip_rev_id
)
!=
ASIC_REV_5750
))
{
tp
->
tg3_flags2
&=
~
TG3_FLG2_TSO_CAPABLE
;
tp
->
tg3_flags2
&=
~
TG3_FLG2_TSO_CAPABLE
;
}
else
{
}
else
{
tp
->
tg3_flags2
|=
TG3_FLG2_TSO_CAPABLE
;
tp
->
tg3_flags2
|=
TG3_FLG2_TSO_CAPABLE
;
...
...
drivers/net/tg3.h
View file @
e7c9dc43
...
@@ -1399,7 +1399,9 @@
...
@@ -1399,7 +1399,9 @@
#define NIC_SRAM_FW_ASF_STATUS_MBOX 0x00000c00
#define NIC_SRAM_FW_ASF_STATUS_MBOX 0x00000c00
#define NIC_SRAM_FW_DRV_STATE_MBOX 0x00000c04
#define NIC_SRAM_FW_DRV_STATE_MBOX 0x00000c04
#define DRV_STATE_START 0x00000001
#define DRV_STATE_START 0x00000001
#define DRV_STATE_START_DONE 0x80000001
#define DRV_STATE_UNLOAD 0x00000002
#define DRV_STATE_UNLOAD 0x00000002
#define DRV_STATE_UNLOAD_DONE 0x80000002
#define DRV_STATE_WOL 0x00000003
#define DRV_STATE_WOL 0x00000003
#define DRV_STATE_SUSPEND 0x00000004
#define DRV_STATE_SUSPEND 0x00000004
...
@@ -1980,6 +1982,7 @@ struct tg3 {
...
@@ -1980,6 +1982,7 @@ struct tg3 {
#define TG3_FLG2_PHY_5704_A0_BUG 0x00000080
#define TG3_FLG2_PHY_5704_A0_BUG 0x00000080
#define TG3_FLG2_PHY_BER_BUG 0x00000100
#define TG3_FLG2_PHY_BER_BUG 0x00000100
#define TG3_FLG2_PCI_EXPRESS 0x00000200
#define TG3_FLG2_PCI_EXPRESS 0x00000200
#define TG3_FLG2_ASF_NEW_HANDSHAKE 0x00000400
u32
split_mode_max_reqs
;
u32
split_mode_max_reqs
;
#define SPLIT_MODE_5704_MAX_REQ 3
#define SPLIT_MODE_5704_MAX_REQ 3
...
...
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