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
f54cb1a1
Commit
f54cb1a1
authored
Aug 03, 2002
by
David Mosberger
Committed by
David Mosberger
Aug 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update eepro100 net drvr to enable rx DMA without causing
unaligned accesses.
parent
36838bad
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
8 deletions
+27
-8
drivers/net/eepro100.c
drivers/net/eepro100.c
+27
-8
No files found.
drivers/net/eepro100.c
View file @
f54cb1a1
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
Disabled FC and ER, to avoid lockups when when we get FCP interrupts.
Disabled FC and ER, to avoid lockups when when we get FCP interrupts.
2000 Jul 17 Goutham Rao <goutham.rao@intel.com>
2000 Jul 17 Goutham Rao <goutham.rao@intel.com>
PCI DMA API fixes, adding pci_dma_sync_single calls where neccesary
PCI DMA API fixes, adding pci_dma_sync_single calls where neccesary
2000 Aug 31 David Mosberger <davidm@hpl.hp.com>
RX_ALIGN support: enables rx DMA without causing unaligned accesses.
*/
*/
static
const
char
*
version
=
static
const
char
*
version
=
...
@@ -41,15 +43,19 @@ static int rxfifo = 8; /* Rx FIFO threshold, default 32 bytes. */
...
@@ -41,15 +43,19 @@ static int rxfifo = 8; /* Rx FIFO threshold, default 32 bytes. */
static
int
txdmacount
=
128
;
static
int
txdmacount
=
128
;
static
int
rxdmacount
/* = 0 */
;
static
int
rxdmacount
/* = 0 */
;
/* Set the copy breakpoint for the copy-only-tiny-buffer Rx method.
#if defined(__ia64__) || defined(__alpha__) || defined(__sparc__) || defined(__mips__) || \
Lower values use more memory, but are faster. */
#if defined(__alpha__) || defined(__sparc__) || defined(__mips__) || \
defined(__arm__)
defined(__arm__)
static
int
rx_copybreak
=
1518
;
/* align rx buffers to 2 bytes so that IP header is aligned */
# define RX_ALIGN
# define RxFD_ALIGNMENT __attribute__ ((aligned (2), packed))
#else
#else
static
int
rx_copybreak
=
200
;
# define RxFD_ALIGNMENT
#endif
#endif
/* Set the copy breakpoint for the copy-only-tiny-buffer Rx method.
Lower values use more memory, but are faster. */
static
int
rx_copybreak
=
200
;
/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
/* Maximum events (Rx packets, etc.) to handle at each interrupt. */
static
int
max_interrupt_work
=
20
;
static
int
max_interrupt_work
=
20
;
...
@@ -377,18 +383,18 @@ enum SCBPort_cmds {
...
@@ -377,18 +383,18 @@ enum SCBPort_cmds {
/* The Speedo3 Rx and Tx frame/buffer descriptors. */
/* The Speedo3 Rx and Tx frame/buffer descriptors. */
struct
descriptor
{
/* A generic descriptor. */
struct
descriptor
{
/* A generic descriptor. */
s32
cmd_status
;
/* All command and status fields. */
volatile
s32
cmd_status
;
/* All command and status fields. */
u32
link
;
/* struct descriptor * */
u32
link
;
/* struct descriptor * */
unsigned
char
params
[
0
];
unsigned
char
params
[
0
];
};
};
/* The Speedo3 Rx and Tx buffer descriptors. */
/* The Speedo3 Rx and Tx buffer descriptors. */
struct
RxFD
{
/* Receive frame descriptor. */
struct
RxFD
{
/* Receive frame descriptor. */
s32
status
;
volatile
s32
status
;
u32
link
;
/* struct RxFD * */
u32
link
;
/* struct RxFD * */
u32
rx_buf_addr
;
/* void * */
u32
rx_buf_addr
;
/* void * */
u32
count
;
u32
count
;
};
}
RxFD_ALIGNMENT
;
/* Selected elements of the Tx/RxFD.status word. */
/* Selected elements of the Tx/RxFD.status word. */
enum
RxFD_bits
{
enum
RxFD_bits
{
...
@@ -523,7 +529,12 @@ static const char is_mii[] = { 0, 1, 1, 0, 1, 1, 0, 1 };
...
@@ -523,7 +529,12 @@ static const char is_mii[] = { 0, 1, 1, 0, 1, 1, 0, 1 };
static
int
eepro100_init_one
(
struct
pci_dev
*
pdev
,
static
int
eepro100_init_one
(
struct
pci_dev
*
pdev
,
const
struct
pci_device_id
*
ent
);
const
struct
pci_device_id
*
ent
);
static
void
eepro100_remove_one
(
struct
pci_dev
*
pdev
);
static
void
eepro100_remove_one
(
struct
pci_dev
*
pdev
);
#ifdef CONFIG_PM
static
int
eepro100_suspend
(
struct
pci_dev
*
pdev
,
u32
state
);
static
int
eepro100_resume
(
struct
pci_dev
*
pdev
);
#endif
static
int
do_eeprom_cmd
(
long
ioaddr
,
int
cmd
,
int
cmd_len
);
static
int
do_eeprom_cmd
(
long
ioaddr
,
int
cmd
,
int
cmd_len
);
static
int
mdio_read
(
long
ioaddr
,
int
phy_id
,
int
location
);
static
int
mdio_read
(
long
ioaddr
,
int
phy_id
,
int
location
);
...
@@ -1229,6 +1240,9 @@ speedo_init_rx_ring(struct net_device *dev)
...
@@ -1229,6 +1240,9 @@ speedo_init_rx_ring(struct net_device *dev)
for
(
i
=
0
;
i
<
RX_RING_SIZE
;
i
++
)
{
for
(
i
=
0
;
i
<
RX_RING_SIZE
;
i
++
)
{
struct
sk_buff
*
skb
;
struct
sk_buff
*
skb
;
skb
=
dev_alloc_skb
(
PKT_BUF_SZ
+
sizeof
(
struct
RxFD
));
skb
=
dev_alloc_skb
(
PKT_BUF_SZ
+
sizeof
(
struct
RxFD
));
#ifdef RX_ALIGN
skb_reserve
(
skb
,
2
);
/* Align IP on 16 byte boundary */
#endif
sp
->
rx_skbuff
[
i
]
=
skb
;
sp
->
rx_skbuff
[
i
]
=
skb
;
if
(
skb
==
NULL
)
if
(
skb
==
NULL
)
break
;
/* OK. Just initially short of Rx bufs. */
break
;
/* OK. Just initially short of Rx bufs. */
...
@@ -1620,6 +1634,9 @@ static inline struct RxFD *speedo_rx_alloc(struct net_device *dev, int entry)
...
@@ -1620,6 +1634,9 @@ static inline struct RxFD *speedo_rx_alloc(struct net_device *dev, int entry)
struct
sk_buff
*
skb
;
struct
sk_buff
*
skb
;
/* Get a fresh skbuff to replace the consumed one. */
/* Get a fresh skbuff to replace the consumed one. */
skb
=
dev_alloc_skb
(
PKT_BUF_SZ
+
sizeof
(
struct
RxFD
));
skb
=
dev_alloc_skb
(
PKT_BUF_SZ
+
sizeof
(
struct
RxFD
));
#ifdef RX_ALIGN
skb_reserve
(
skb
,
2
);
/* Align IP on 16 byte boundary */
#endif
sp
->
rx_skbuff
[
entry
]
=
skb
;
sp
->
rx_skbuff
[
entry
]
=
skb
;
if
(
skb
==
NULL
)
{
if
(
skb
==
NULL
)
{
sp
->
rx_ringp
[
entry
]
=
NULL
;
sp
->
rx_ringp
[
entry
]
=
NULL
;
...
@@ -2303,7 +2320,9 @@ static struct pci_driver eepro100_driver = {
...
@@ -2303,7 +2320,9 @@ static struct pci_driver eepro100_driver = {
name:
"eepro100"
,
name:
"eepro100"
,
id_table:
eepro100_pci_tbl
,
id_table:
eepro100_pci_tbl
,
probe:
eepro100_init_one
,
probe:
eepro100_init_one
,
# if defined(MODULE) || defined(CONFIG_HOTPLUG)
remove:
__devexit_p
(
eepro100_remove_one
),
remove:
__devexit_p
(
eepro100_remove_one
),
# endif
#ifdef CONFIG_PM
#ifdef CONFIG_PM
suspend:
eepro100_suspend
,
suspend:
eepro100_suspend
,
resume:
eepro100_resume
,
resume:
eepro100_resume
,
...
...
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