2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2001-01-21 04:56:12 +00:00
|
|
|
* Copyright (c) 1999 M. Warner Losh <imp@village.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IF_CSVAR_H
|
|
|
|
#define _IF_CSVAR_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cs_softc: per line info and status
|
|
|
|
*/
|
|
|
|
struct cs_softc {
|
2005-01-28 06:45:42 +00:00
|
|
|
/* Ethernet common code */
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp;
|
2006-09-15 15:16:12 +00:00
|
|
|
device_t dev;
|
2001-01-21 04:56:12 +00:00
|
|
|
|
2005-01-28 06:45:42 +00:00
|
|
|
/* Configuration words from EEPROM */
|
|
|
|
int auto_neg_cnf; /* AutoNegotitation configuration */
|
2001-01-21 04:56:12 +00:00
|
|
|
int adapter_cnf; /* Adapter configuration */
|
2005-01-28 06:45:42 +00:00
|
|
|
int isa_config; /* ISA configuration */
|
|
|
|
int chip_type; /* Type of chip */
|
2001-01-21 04:56:12 +00:00
|
|
|
|
2006-02-11 03:50:03 +00:00
|
|
|
u_char enaddr[ETHER_ADDR_LEN];
|
2005-06-10 16:49:24 +00:00
|
|
|
|
2005-01-28 06:45:42 +00:00
|
|
|
struct ifmedia media; /* Media information */
|
2001-01-21 04:56:12 +00:00
|
|
|
|
|
|
|
int port_rid; /* resource id for port range */
|
|
|
|
struct resource* port_res; /* resource for port range */
|
2005-01-28 06:45:42 +00:00
|
|
|
int irq_rid; /* resource id for irq */
|
|
|
|
struct resource* irq_res; /* resource for irq */
|
|
|
|
void* irq_handle; /* handle for irq handler */
|
2001-01-21 04:56:12 +00:00
|
|
|
|
2005-01-28 06:35:39 +00:00
|
|
|
int flags;
|
|
|
|
#define CS_NO_IRQ 0x1
|
2001-01-21 04:56:12 +00:00
|
|
|
int send_cmd;
|
2005-01-28 06:45:42 +00:00
|
|
|
int line_ctl; /* */
|
|
|
|
int send_underrun;
|
|
|
|
void *recv_ring;
|
2001-01-21 04:56:12 +00:00
|
|
|
|
2005-01-28 06:45:42 +00:00
|
|
|
unsigned char *buffer;
|
|
|
|
int buf_len;
|
2008-06-05 14:49:35 +00:00
|
|
|
struct mtx lock;
|
|
|
|
struct callout timer;
|
|
|
|
int tx_timeout;
|
2001-01-21 04:56:12 +00:00
|
|
|
};
|
|
|
|
|
2008-06-05 14:49:35 +00:00
|
|
|
#define CS_LOCK(sc) mtx_lock(&(sc)->lock)
|
|
|
|
#define CS_UNLOCK(sc) mtx_unlock(&(sc)->lock)
|
|
|
|
#define CS_ASSERT_LOCKED(sc) mtx_assert(&(sc)->lock, MA_OWNED)
|
|
|
|
|
2001-01-21 04:56:12 +00:00
|
|
|
int cs_alloc_port(device_t dev, int rid, int size);
|
2008-06-06 05:25:24 +00:00
|
|
|
int cs_alloc_irq(device_t dev, int rid);
|
2003-10-31 18:32:15 +00:00
|
|
|
int cs_attach(device_t dev);
|
2001-01-21 04:56:12 +00:00
|
|
|
int cs_cs89x0_probe(device_t dev);
|
2005-01-27 04:51:44 +00:00
|
|
|
int cs_detach(device_t dev);
|
2001-01-21 04:56:12 +00:00
|
|
|
void cs_release_resources(device_t dev);
|
|
|
|
|
|
|
|
#endif /* _IF_CSVAR_H */
|