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
518d020a
Commit
518d020a
authored
Feb 23, 2011
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'r8169-davem' of
git://git.kernel.org/pub/scm/linux/kernel/git/romieu/netdev-2.6
parents
67158ceb
5d2e1957
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
19 deletions
+23
-19
drivers/net/r8169.c
drivers/net/r8169.c
+23
-19
No files found.
drivers/net/r8169.c
View file @
518d020a
...
...
@@ -617,8 +617,9 @@ static void ocp_write(struct rtl8169_private *tp, u8 mask, u16 reg, u32 data)
}
}
static
void
rtl8168_oob_notify
(
void
__iomem
*
ioaddr
,
u8
cmd
)
static
void
rtl8168_oob_notify
(
struct
rtl8169_private
*
tp
,
u8
cmd
)
{
void
__iomem
*
ioaddr
=
tp
->
mmio_addr
;
int
i
;
RTL_W8
(
ERIDR
,
cmd
);
...
...
@@ -630,7 +631,7 @@ static void rtl8168_oob_notify(void __iomem *ioaddr, u8 cmd)
break
;
}
ocp_write
(
ioaddr
,
0x1
,
0x30
,
0x00000001
);
ocp_write
(
tp
,
0x1
,
0x30
,
0x00000001
);
}
#define OOB_CMD_RESET 0x00
...
...
@@ -2868,8 +2869,11 @@ static void r8168_pll_power_down(struct rtl8169_private *tp)
{
void
__iomem
*
ioaddr
=
tp
->
mmio_addr
;
if
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_27
)
if
(((
tp
->
mac_version
==
RTL_GIGA_MAC_VER_27
)
||
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_28
))
&&
(
ocp_read
(
tp
,
0x0f
,
0x0010
)
&
0x00008000
))
{
return
;
}
if
(((
tp
->
mac_version
==
RTL_GIGA_MAC_VER_23
)
||
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_24
))
&&
...
...
@@ -2891,6 +2895,8 @@ static void r8168_pll_power_down(struct rtl8169_private *tp)
switch
(
tp
->
mac_version
)
{
case
RTL_GIGA_MAC_VER_25
:
case
RTL_GIGA_MAC_VER_26
:
case
RTL_GIGA_MAC_VER_27
:
case
RTL_GIGA_MAC_VER_28
:
RTL_W8
(
PMCH
,
RTL_R8
(
PMCH
)
&
~
0x80
);
break
;
}
...
...
@@ -2900,12 +2906,17 @@ static void r8168_pll_power_up(struct rtl8169_private *tp)
{
void
__iomem
*
ioaddr
=
tp
->
mmio_addr
;
if
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_27
)
if
(((
tp
->
mac_version
==
RTL_GIGA_MAC_VER_27
)
||
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_28
))
&&
(
ocp_read
(
tp
,
0x0f
,
0x0010
)
&
0x00008000
))
{
return
;
}
switch
(
tp
->
mac_version
)
{
case
RTL_GIGA_MAC_VER_25
:
case
RTL_GIGA_MAC_VER_26
:
case
RTL_GIGA_MAC_VER_27
:
case
RTL_GIGA_MAC_VER_28
:
RTL_W8
(
PMCH
,
RTL_R8
(
PMCH
)
|
0x80
);
break
;
}
...
...
@@ -3042,7 +3053,7 @@ rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
goto
err_out_mwi_2
;
}
tp
->
cp_cmd
=
PCIMulRW
|
RxChkSum
;
tp
->
cp_cmd
=
RxChkSum
;
if
((
sizeof
(
dma_addr_t
)
>
4
)
&&
!
pci_set_dma_mask
(
pdev
,
DMA_BIT_MASK
(
64
))
&&
use_dac
)
{
...
...
@@ -3318,7 +3329,8 @@ static void rtl8169_hw_reset(struct rtl8169_private *tp)
/* Disable interrupts */
rtl8169_irq_mask_and_ack
(
ioaddr
);
if
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_28
)
{
if
(
tp
->
mac_version
==
RTL_GIGA_MAC_VER_27
||
tp
->
mac_version
==
RTL_GIGA_MAC_VER_28
)
{
while
(
RTL_R8
(
TxPoll
)
&
NPQ
)
udelay
(
20
);
...
...
@@ -3847,8 +3859,7 @@ static void rtl_hw_start_8168(struct net_device *dev)
Cxpl_dbg_sel | \
ASF | \
PktCntrDisable | \
PCIDAC | \
PCIMulRW)
Mac_dbgo_sel)
static
void
rtl_hw_start_8102e_1
(
void
__iomem
*
ioaddr
,
struct
pci_dev
*
pdev
)
{
...
...
@@ -3878,8 +3889,6 @@ static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
if
((
cfg1
&
LEDS0
)
&&
(
cfg1
&
LEDS1
))
RTL_W8
(
Config1
,
cfg1
&
~
LEDS0
);
RTL_W16
(
CPlusCmd
,
RTL_R16
(
CPlusCmd
)
&
~
R810X_CPCMD_QUIRK_MASK
);
rtl_ephy_init
(
ioaddr
,
e_info_8102e_1
,
ARRAY_SIZE
(
e_info_8102e_1
));
}
...
...
@@ -3891,8 +3900,6 @@ static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
RTL_W8
(
Config1
,
MEMMAP
|
IOMAP
|
VPD
|
PMEnable
);
RTL_W8
(
Config3
,
RTL_R8
(
Config3
)
&
~
Beacon_en
);
RTL_W16
(
CPlusCmd
,
RTL_R16
(
CPlusCmd
)
&
~
R810X_CPCMD_QUIRK_MASK
);
}
static
void
rtl_hw_start_8102e_3
(
void
__iomem
*
ioaddr
,
struct
pci_dev
*
pdev
)
...
...
@@ -3918,6 +3925,8 @@ static void rtl_hw_start_8101(struct net_device *dev)
}
}
RTL_W8
(
Cfg9346
,
Cfg9346_Unlock
);
switch
(
tp
->
mac_version
)
{
case
RTL_GIGA_MAC_VER_07
:
rtl_hw_start_8102e_1
(
ioaddr
,
pdev
);
...
...
@@ -3932,14 +3941,13 @@ static void rtl_hw_start_8101(struct net_device *dev)
break
;
}
RTL_W8
(
Cfg9346
,
Cfg9346_
Unl
ock
);
RTL_W8
(
Cfg9346
,
Cfg9346_
L
ock
);
RTL_W8
(
MaxTxPacketSize
,
TxPacketMax
);
rtl_set_rx_max_size
(
ioaddr
,
rx_buf_sz
);
tp
->
cp_cmd
|=
rtl_rw_cpluscmd
(
ioaddr
)
|
PCIMulRW
;
tp
->
cp_cmd
&=
~
R810X_CPCMD_QUIRK_MASK
;
RTL_W16
(
CPlusCmd
,
tp
->
cp_cmd
);
RTL_W16
(
IntrMitigate
,
0x0000
);
...
...
@@ -3949,14 +3957,10 @@ static void rtl_hw_start_8101(struct net_device *dev)
RTL_W8
(
ChipCmd
,
CmdTxEnb
|
CmdRxEnb
);
rtl_set_rx_tx_config_registers
(
tp
);
RTL_W8
(
Cfg9346
,
Cfg9346_Lock
);
RTL_R8
(
IntrMask
);
rtl_set_rx_mode
(
dev
);
RTL_W8
(
ChipCmd
,
CmdTxEnb
|
CmdRxEnb
);
RTL_W16
(
MultiIntr
,
RTL_R16
(
MultiIntr
)
&
0xf000
);
RTL_W16
(
IntrMask
,
tp
->
intr_event
);
...
...
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