2005-03-08 18:53:11 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NIC_H
|
|
|
|
#define NIC_H
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
DISABLE = 0,
|
|
|
|
ENABLE,
|
|
|
|
FORCE
|
|
|
|
} irq_action_t;
|
|
|
|
|
2005-04-13 00:16:42 +00:00
|
|
|
typedef enum duplex {
|
|
|
|
HALF_DUPLEX = 1,
|
|
|
|
FULL_DUPLEX
|
|
|
|
} duplex_t;
|
|
|
|
|
2005-03-08 18:53:11 +00:00
|
|
|
/*
|
|
|
|
* Structure returned from eth_probe and passed to other driver
|
|
|
|
* functions.
|
|
|
|
*/
|
2005-04-12 16:54:09 +00:00
|
|
|
struct nic {
|
|
|
|
struct nic_operations *nic_op;
|
2005-03-08 18:53:11 +00:00
|
|
|
int flags; /* driver specific flags */
|
|
|
|
unsigned char *node_addr;
|
|
|
|
unsigned char *packet;
|
|
|
|
unsigned int packetlen;
|
|
|
|
unsigned int ioaddr;
|
|
|
|
unsigned char irqno;
|
2005-04-13 00:16:42 +00:00
|
|
|
unsigned int mbps;
|
|
|
|
duplex_t duplex;
|
2005-03-08 18:53:11 +00:00
|
|
|
void *priv_data; /* driver can hang private data here */
|
|
|
|
};
|
|
|
|
|
2005-04-12 16:54:09 +00:00
|
|
|
struct nic_operations {
|
|
|
|
int ( *connect ) ( struct nic * );
|
|
|
|
int ( *poll ) ( struct nic *, int retrieve );
|
|
|
|
void ( *transmit ) ( struct nic *, const char *,
|
|
|
|
unsigned int, unsigned int, const char * );
|
|
|
|
void ( *irq ) ( struct nic *, irq_action_t );
|
|
|
|
void ( *disable ) ( struct nic * );
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function prototypes
|
|
|
|
*
|
|
|
|
*/
|
2005-04-12 18:21:38 +00:00
|
|
|
struct dev;
|
2005-04-12 16:54:09 +00:00
|
|
|
extern struct nic * nic_device ( struct dev * dev );
|
2005-04-12 19:11:13 +00:00
|
|
|
extern int dummy_connect ( struct nic *nic );
|
|
|
|
extern int dummy_irq ( struct nic *nic );
|
2005-04-12 16:54:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions that implicitly operate on the current boot device
|
|
|
|
*
|
|
|
|
* "nic" always points to &dev.nic
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern struct nic *nic;
|
|
|
|
|
|
|
|
static inline int eth_connect ( void ) {
|
|
|
|
return nic->nic_op->connect ( nic );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int eth_poll ( int retrieve ) {
|
|
|
|
return nic->nic_op->poll ( nic, retrieve );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void eth_transmit ( const char *dest, unsigned int type,
|
|
|
|
unsigned int size, const void *packet ) {
|
|
|
|
nic->nic_op->transmit ( nic, dest, type, size, packet );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void eth_irq ( irq_action_t action ) {
|
|
|
|
nic->nic_op->irq ( nic, action );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Should be using disable() rather than eth_disable() */
|
|
|
|
static inline void eth_disable ( void ) __attribute__ (( deprecated ));
|
|
|
|
static inline void eth_disable ( void ) {
|
|
|
|
nic->nic_op->disable ( nic );
|
|
|
|
}
|
2005-03-08 18:53:11 +00:00
|
|
|
|
2005-04-12 18:15:12 +00:00
|
|
|
/* dev.h needs declarations from nic.h */
|
|
|
|
#include "dev.h"
|
2005-04-12 18:21:38 +00:00
|
|
|
/* to get global "dev" */
|
|
|
|
#include "main.h"
|
2005-04-12 18:15:12 +00:00
|
|
|
|
2005-03-08 18:53:11 +00:00
|
|
|
#endif /* NIC_H */
|