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
105adfc6
Commit
105adfc6
authored
Jun 04, 2005
by
Committed by
Jeff Garzik
Jun 04, 2005
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of /spare/repo/netdev-2.6 branch viro
parents
7f6a57a9
99417769
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
drivers/net/arm/etherh.c
drivers/net/arm/etherh.c
+9
-7
drivers/net/pcmcia/pcnet_cs.c
drivers/net/pcmcia/pcnet_cs.c
+9
-8
No files found.
drivers/net/arm/etherh.c
View file @
105adfc6
...
...
@@ -68,6 +68,7 @@ struct etherh_priv {
void
__iomem
*
dma_base
;
unsigned
int
id
;
void
__iomem
*
ctrl_port
;
void
__iomem
*
base
;
unsigned
char
ctrl
;
u32
supported
;
};
...
...
@@ -177,7 +178,7 @@ etherh_setif(struct net_device *dev)
switch
(
etherh_priv
(
dev
)
->
id
)
{
case
PROD_I3_ETHERLAN600
:
case
PROD_I3_ETHERLAN600A
:
addr
=
(
void
*
)
dev
->
base_addr
+
EN0_RCNTHI
;
addr
=
etherh_priv
(
dev
)
->
base
+
EN0_RCNTHI
;
switch
(
dev
->
if_port
)
{
case
IF_PORT_10BASE2
:
...
...
@@ -218,7 +219,7 @@ etherh_getifstat(struct net_device *dev)
switch
(
etherh_priv
(
dev
)
->
id
)
{
case
PROD_I3_ETHERLAN600
:
case
PROD_I3_ETHERLAN600A
:
addr
=
(
void
*
)
dev
->
base_addr
+
EN0_RCNTHI
;
addr
=
etherh_priv
(
dev
)
->
base
+
EN0_RCNTHI
;
switch
(
dev
->
if_port
)
{
case
IF_PORT_10BASE2
:
stat
=
1
;
...
...
@@ -281,7 +282,7 @@ static void
etherh_reset
(
struct
net_device
*
dev
)
{
struct
ei_device
*
ei_local
=
netdev_priv
(
dev
);
void
__iomem
*
addr
=
(
void
*
)
dev
->
base_addr
;
void
__iomem
*
addr
=
etherh_priv
(
dev
)
->
base
;
writeb
(
E8390_NODMA
+
E8390_PAGE0
+
E8390_STOP
,
addr
);
...
...
@@ -327,7 +328,7 @@ etherh_block_output (struct net_device *dev, int count, const unsigned char *buf
ei_local
->
dmaing
=
1
;
addr
=
(
void
*
)
dev
->
base_addr
;
addr
=
etherh_priv
(
dev
)
->
base
;
dma_base
=
etherh_priv
(
dev
)
->
dma_base
;
count
=
(
count
+
1
)
&
~
1
;
...
...
@@ -387,7 +388,7 @@ etherh_block_input (struct net_device *dev, int count, struct sk_buff *skb, int
ei_local
->
dmaing
=
1
;
addr
=
(
void
*
)
dev
->
base_addr
;
addr
=
etherh_priv
(
dev
)
->
base
;
dma_base
=
etherh_priv
(
dev
)
->
dma_base
;
buf
=
skb
->
data
;
...
...
@@ -427,7 +428,7 @@ etherh_get_header (struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_p
ei_local
->
dmaing
=
1
;
addr
=
(
void
*
)
dev
->
base_addr
;
addr
=
etherh_priv
(
dev
)
->
base
;
dma_base
=
etherh_priv
(
dev
)
->
dma_base
;
writeb
(
E8390_NODMA
|
E8390_PAGE0
|
E8390_START
,
addr
+
E8390_CMD
);
...
...
@@ -696,7 +697,8 @@ etherh_probe(struct expansion_card *ec, const struct ecard_id *id)
eh
->
ctrl_port
=
eh
->
ioc_fast
;
}
dev
->
base_addr
=
(
unsigned
long
)
eh
->
memc
+
data
->
ns8390_offset
;
eh
->
base
=
eh
->
memc
+
data
->
ns8390_offset
;
dev
->
base_addr
=
(
unsigned
long
)
eh
->
base
;
eh
->
dma_base
=
eh
->
memc
+
data
->
dataport_offset
;
eh
->
ctrl_port
+=
data
->
ctrlport_offset
;
...
...
drivers/net/pcmcia/pcnet_cs.c
View file @
105adfc6
...
...
@@ -1537,20 +1537,20 @@ static void shmem_get_8390_hdr(struct net_device *dev,
static
void
shmem_block_input
(
struct
net_device
*
dev
,
int
count
,
struct
sk_buff
*
skb
,
int
ring_offset
)
{
void
__iomem
*
xfer_start
=
ei_status
.
mem
+
(
TX_PAGES
<<
8
)
+
ring_offset
void
__iomem
*
base
=
ei_status
.
mem
;
unsigned
long
offset
=
(
TX_PAGES
<<
8
)
+
ring_offset
-
(
ei_status
.
rx_start_page
<<
8
);
char
*
buf
=
skb
->
data
;
if
(
xfer_start
+
count
>
(
void
__iomem
*
)
ei_status
.
rmem_end
)
{
if
(
offset
+
count
>
ei_status
.
priv
)
{
/* We must wrap the input move. */
int
semi_count
=
(
void
__iomem
*
)
ei_status
.
rmem_end
-
xfer_star
t
;
copyin
(
buf
,
xfer_star
t
,
semi_count
);
int
semi_count
=
ei_status
.
priv
-
offse
t
;
copyin
(
buf
,
base
+
offse
t
,
semi_count
);
buf
+=
semi_count
;
xfer_start
=
ei_status
.
mem
+
(
TX_PAGES
<<
8
)
;
offset
=
TX_PAGES
<<
8
;
count
-=
semi_count
;
}
copyin
(
buf
,
xfer_star
t
,
count
);
copyin
(
buf
,
base
+
offse
t
,
count
);
}
/*====================================================================*/
...
...
@@ -1611,8 +1611,9 @@ static int setup_shmem_window(dev_link_t *link, int start_pg,
}
ei_status
.
mem
=
info
->
base
+
offset
;
ei_status
.
priv
=
req
.
Size
;
dev
->
mem_start
=
(
u_long
)
ei_status
.
mem
;
dev
->
mem_end
=
ei_status
.
rmem_end
=
(
u_long
)
info
->
base
+
req
.
Size
;
dev
->
mem_end
=
dev
->
mem_start
+
req
.
Size
;
ei_status
.
tx_start_page
=
start_pg
;
ei_status
.
rx_start_page
=
start_pg
+
TX_PAGES
;
...
...
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