7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23 #include <aros/debug.h>
27 #include <exec/types.h>
28 #include <exec/libraries.h>
29 #include <exec/semaphores.h>
30 #include <exec/devices.h>
31 #include <exec/interrupts.h>
34 #include <devices/timer.h>
35 #include <devices/sana2.h>
36 #include <devices/sana2specialstats.h>
38 #include <proto/exec.h>
39 #include <proto/oop.h>
45 #include LC_LIBDEFS_FILE
61 #define __iomem volatile
63 #define e1000_TASK_NAME "%s.task"
64 #define e1000_PORT_NAME "%s.port"
68 struct Device e1kb_Device
;
71 OOP_AttrBase e1kb_PCIDeviceAttrBase
;
74 struct List e1kb_Units
;
79 struct MsgPort
*e1ksm_SyncPort
;
80 struct e1000Unit
*e1ksm_Unit
;
83 #undef HiddPCIDeviceAttrBase
84 #define HiddPCIDeviceAttrBase (LIBBASE->e1kb_PCIDeviceAttrBase)
97 struct MsgPort read_port
;
98 BOOL (*rx_function
)(APTR
, APTR
, ULONG
);
99 BOOL (*tx_function
)(APTR
, APTR
, ULONG
);
100 struct Hook
*filter_hook
;
101 struct MinList initial_stats
;
108 struct Sana2PacketTypeStats stats
;
116 struct Sana2PacketTypeStats stats
;
125 UBYTE lower_bound
[6];
126 UBYTE upper_bound
[6];
129 /* Standard interface flags (netdevice->flags). */
130 #define IFF_UP 0x1 /* interface is up */
131 #define IFF_BROADCAST 0x2 /* broadcast address valid */
132 #define IFF_DEBUG 0x4 /* turn on debugging */
133 #define IFF_LOOPBACK 0x8 /* is a loopback net */
134 #define IFF_POINTOPOINT 0x10 /* interface is has p-p link */
135 #define IFF_NOTRAILERS 0x20 /* avoid use of trailers */
136 #define IFF_RUNNING 0x40 /* resources allocated */
137 #define IFF_NOARP 0x80 /* no ARP protocol */
138 #define IFF_PROMISC 0x100 /* receive all packets */
139 #define IFF_ALLMULTI 0x200 /* receive all multicast packets*/
141 #define IFF_MASTER 0x400 /* master of a load balancer */
142 #define IFF_SLAVE 0x800 /* slave of a load balancer */
144 #define IFF_MULTICAST 0x1000 /* Supports multicast */
146 #define IFF_VOLATILE (IFF_LOOPBACK|IFF_POINTOPOINT|IFF_BROADCAST|IFF_MASTER|IFF_SLAVE|IFF_RUNNING)
148 #define IFF_PORTSEL 0x2000 /* can set media type */
149 #define IFF_AUTOMEDIA 0x4000 /* auto media select active */
150 #define IFF_DYNAMIC 0x8000 /* dialup device with changing addresses*/
151 #define IFF_SHARED 0x10000 /* interface may be shared */
152 #define IFF_CONFIGURED 0x20000 /* interface already configured */
155 * We tag multicasts with these structures.
158 #define MAX_ADDR_LEN 32
162 struct dev_mc_list
*next
;
163 UBYTE dmi_addr
[MAX_ADDR_LEN
];
164 unsigned char dmi_addrlen
;
169 #define pci_name(unit) (unit->e1ku_name)
174 #define ETH_DATA_LEN 1500
176 #define ETH_ADDRESSSIZE 6
177 #define ETH_HEADERSIZE 14
178 #define ETH_CRCSIZE 4
179 #define ETH_MTU (ETH_DATA_LEN)
180 #define ETH_MAXPACKETSIZE ((ETH_HEADERSIZE) + (ETH_MTU) + (ETH_CRCSIZE))
182 #define ETH_PACKET_DEST 0
183 #define ETH_PACKET_SOURCE 6
184 #define ETH_PACKET_TYPE 12
185 #define ETH_PACKET_IEEELEN 12
186 #define ETH_PACKET_SNAPTYPE 20
187 #define ETH_PACKET_DATA 14
188 #define ETH_PACKET_CRC (ETH_PACKET_DATA + ETH_MTU)
190 #define RXTX_ALLOC_BUFSIZE (ETH_MAXPACKETSIZE + 26)
192 #define TX_LIMIT_STOP 63
193 #define TX_LIMIT_START 62
196 UBYTE eth_packet_dest
[6];
197 UBYTE eth_packet_source
[6];
198 UWORD eth_packet_type
;
199 UBYTE eth_packet_data
[ETH_MTU
];
200 UBYTE eth_packet_crc
[4];
201 UBYTE eth_pad
[RXTX_ALLOC_BUFSIZE
- ETH_MAXPACKETSIZE
];
202 } __attribute__((packed
));
203 #define eth_packet_ieeelen eth_packet_type
205 /* Media selection options. */
216 /* These flag bits are private to the generic network queueing
217 * layer, they may not be explicitly referenced by any other
225 __LINK_STATE_PRESENT
,
227 __LINK_STATE_NOCARRIER
,
228 __LINK_STATE_RX_SCHED
,
229 __LINK_STATE_LINKWATCH_PENDING
232 #include "e1000_hw.h"
234 struct e1000_buffer
{
241 struct e1000_rx_buffer
{
246 struct e1000_tx_ring
{
247 /* pointer to the descriptor ring memory */
248 struct e1000_tx_desc
*desc
;
249 /* physical address of the descriptor ring */
251 /* length of descriptor ring in bytes */
253 /* number of descriptors in the ring */
255 /* next descriptor to associate a buffer with */
256 unsigned int next_to_use
;
257 /* next descriptor to check for DD status bit */
258 unsigned int next_to_clean
;
259 struct e1000_buffer
*buffer_info
;
265 struct e1000_rx_ring
{
266 /* pointer to the descriptor ring memory */
267 struct e1000_rx_desc
*desc
;
268 /* physical address of the descriptor ring */
270 /* length of descriptor ring in bytes */
272 /* number of descriptors in the ring */
274 /* next descriptor to associate a buffer with */
275 unsigned int next_to_use
;
276 /* next descriptor to check for DD status bit */
277 unsigned int next_to_clean
;
278 struct e1000_rx_buffer
*buffer_info
;
284 void handle_request(LIBBASETYPEPTR
, struct IOSana2Req
*);
286 #endif /* _E1000_H_ */