Move variables to if_rayvar.h
This commit is contained in:
parent
523e20db8a
commit
79c712c181
@ -28,7 +28,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: if_ray.c,v 1.24 2000/04/24 15:49:20 dmlb Exp $
|
||||
* $Id: if_ray.c,v 1.25 2000/05/07 15:00:06 dmlb Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -340,121 +340,7 @@
|
||||
#include <i386/isa/if_rayreg.h>
|
||||
#include <i386/isa/if_raymib.h>
|
||||
#include <i386/isa/if_raydbg.h>
|
||||
|
||||
/*
|
||||
* Network parameters, used twice in sotfc to store what we want and what
|
||||
* we have.
|
||||
*
|
||||
* XXX promisc in here too?
|
||||
* XXX sc_station_addr in here too (for changing mac address)
|
||||
*/
|
||||
struct ray_nw_param {
|
||||
struct ray_cmd_net p_1;
|
||||
u_int8_t np_ap_status;
|
||||
struct ray_net_params \
|
||||
p_2;
|
||||
u_int8_t np_countrycode;
|
||||
};
|
||||
#define np_upd_param p_1.c_upd_param
|
||||
#define np_bss_id p_1.c_bss_id
|
||||
#define np_inited p_1.c_inited
|
||||
#define np_def_txrate p_1.c_def_txrate
|
||||
#define np_encrypt p_1.c_encrypt
|
||||
#define np_net_type p_2.p_net_type
|
||||
#define np_ssid p_2.p_ssid
|
||||
#define np_priv_start p_2.p_privacy_must_start
|
||||
#define np_priv_join p_2.p_privacy_can_join
|
||||
|
||||
/*
|
||||
* One of these structures per allocated device
|
||||
*/
|
||||
struct ray_softc {
|
||||
|
||||
struct arpcom arpcom; /* Ethernet common */
|
||||
struct ifmedia ifmedia; /* Ifnet common */
|
||||
struct callout_handle
|
||||
reset_timerh; /* Handle for reset timer */
|
||||
struct callout_handle
|
||||
tx_timerh; /* Handle for tx timer */
|
||||
struct callout_handle
|
||||
com_timerh; /* Handle for command timer */
|
||||
char *card_type; /* Card model name */
|
||||
char *vendor; /* Card manufacturer */
|
||||
|
||||
int unit; /* Unit number */
|
||||
u_char gone; /* 1 = Card bailed out */
|
||||
caddr_t maddr; /* Shared RAM Address */
|
||||
int flags; /* Start up flags */
|
||||
|
||||
int translation; /* Packet translation types */
|
||||
|
||||
#if (RAY_NEED_CM_REMAPPING | RAY_NEED_CM_FIXUP)
|
||||
int slotnum; /* Slot number */
|
||||
struct mem_desc md; /* Map info for common memory */
|
||||
#endif /* (RAY_NEED_CM_REMAPPING | RAY_NEED_CM_FIXUP) */
|
||||
|
||||
struct ray_ecf_startup_v5
|
||||
sc_ecf_startup; /* Startup info from card */
|
||||
|
||||
TAILQ_HEAD(ray_comq, ray_comq_entry)
|
||||
sc_comq; /* Command queue */
|
||||
|
||||
struct ray_nw_param sc_c; /* current network params */
|
||||
struct ray_nw_param sc_d; /* desired network params */
|
||||
int sc_havenet; /* true if we have a network */
|
||||
int sc_promisc; /* current set value */
|
||||
u_int8_t sc_ccsinuse[64];/* ccss' in use -- not for tx */
|
||||
|
||||
int sc_checkcounters;
|
||||
u_int64_t sc_rxoverflow; /* Number of rx overflows */
|
||||
u_int64_t sc_rxcksum; /* Number of checksum errors */
|
||||
u_int64_t sc_rxhcksum; /* Number of header checksum errors */
|
||||
u_int8_t sc_rxnoise; /* Average receiver level */
|
||||
struct ray_siglev sc_siglevs[RAY_NSIGLEVRECS]; /* Antenna/levels */
|
||||
};
|
||||
static struct ray_softc ray_softc[NRAY];
|
||||
|
||||
#define sc_station_addr sc_ecf_startup.e_station_addr
|
||||
#define sc_version sc_ecf_startup.e_fw_build_string
|
||||
#define sc_tibsize sc_ecf_startup.e_tibsize
|
||||
|
||||
/*
|
||||
* Command queue definitions
|
||||
*/
|
||||
typedef void (*ray_comqfn_t)(struct ray_softc *sc, struct ray_comq_entry *com);
|
||||
MALLOC_DECLARE(M_RAYCOM);
|
||||
MALLOC_DEFINE(M_RAYCOM, "raycom", "Raylink command queue entry");
|
||||
struct ray_comq_entry {
|
||||
TAILQ_ENTRY(ray_comq_entry) c_chain; /* Tail queue. */
|
||||
ray_comqfn_t c_function; /* Function to call */
|
||||
int c_flags; /* Flags */
|
||||
u_int8_t c_retval; /* Return value */
|
||||
void *c_wakeup; /* Sleeping on this */
|
||||
size_t c_ccs; /* CCS structure */
|
||||
struct ray_param_req
|
||||
*c_pr; /* MIB report/update */
|
||||
#if RAY_DEBUG & RAY_DBG_COM
|
||||
char *c_mesg;
|
||||
#endif /* RAY_DEBUG & RAY_DBG_COM */
|
||||
};
|
||||
#define RAY_COM_FWOK 0x0001 /* Wakeup on completion */
|
||||
#define RAY_COM_FRUNNING 0x0002 /* This one running */
|
||||
#define RAY_COM_FCOMPLETED 0x0004 /* This one completed */
|
||||
#define RAY_COM_FLAGS_PRINTFB \
|
||||
"\020" \
|
||||
"\001WOK" \
|
||||
"\002RUNNING" \
|
||||
"\003COMPLETED"
|
||||
#define RAY_COM_NEEDS_TIMO(cmd) \
|
||||
(cmd == RAY_CMD_DOWNLOAD_PARAMS) || \
|
||||
(cmd == RAY_CMD_UPDATE_PARAMS) || \
|
||||
(cmd == RAY_CMD_UPDATE_MCAST)
|
||||
|
||||
/*
|
||||
* Translation types
|
||||
*/
|
||||
/* XXX maybe better as part of the if structure? */
|
||||
#define SC_TRANSLATE_WEBGEAR 0
|
||||
#include <i386/isa/if_rayvar.h>
|
||||
|
||||
/*
|
||||
* Prototyping
|
||||
@ -533,108 +419,6 @@ static void ray_attr_mapcm (struct ray_softc *sc);
|
||||
*/
|
||||
PCCARD_MODULE(ray, ray_probe, ray_detach, ray_intr, 0, net_imask);
|
||||
|
||||
/*
|
||||
* Macro's and constants
|
||||
*/
|
||||
static int mib_info[RAY_MIB_MAX+1][3] = RAY_MIB_INFO;
|
||||
|
||||
/*
|
||||
* Indirections for reading/writing shared memory - from NetBSD/if_ray.c
|
||||
*/
|
||||
#ifndef offsetof
|
||||
#define offsetof(type, member) \
|
||||
((size_t)(&((type *)0)->member))
|
||||
#endif /* offsetof */
|
||||
|
||||
#define SRAM_READ_1(sc, off) \
|
||||
(u_int8_t)*((sc)->maddr + (off))
|
||||
/* ((u_int8_t)bus_space_read_1((sc)->sc_memt, (sc)->sc_memh, (off))) */
|
||||
|
||||
#define SRAM_READ_FIELD_1(sc, off, s, f) \
|
||||
SRAM_READ_1(sc, (off) + offsetof(struct s, f))
|
||||
|
||||
#define SRAM_READ_FIELD_2(sc, off, s, f) \
|
||||
((((u_int16_t)SRAM_READ_1(sc, (off) + offsetof(struct s, f)) << 8) \
|
||||
|(SRAM_READ_1(sc, (off) + 1 + offsetof(struct s, f)))))
|
||||
|
||||
#define SRAM_READ_FIELD_N(sc, off, s, f, p, n) \
|
||||
ray_read_region(sc, (off) + offsetof(struct s, f), (p), (n))
|
||||
|
||||
#define ray_read_region(sc, off, vp, n) \
|
||||
bcopy((sc)->maddr + (off), (vp), (n))
|
||||
|
||||
#define SRAM_WRITE_1(sc, off, val) \
|
||||
*((sc)->maddr + (off)) = (val)
|
||||
/* bus_space_write_1((sc)->sc_memt, (sc)->sc_memh, (off), (val)) */
|
||||
|
||||
#define SRAM_WRITE_FIELD_1(sc, off, s, f, v) \
|
||||
SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (v))
|
||||
|
||||
#define SRAM_WRITE_FIELD_2(sc, off, s, f, v) do { \
|
||||
SRAM_WRITE_1(sc, (off) + offsetof(struct s, f), (((v) >> 8 ) & 0xff)); \
|
||||
SRAM_WRITE_1(sc, (off) + 1 + offsetof(struct s, f), ((v) & 0xff)); \
|
||||
} while (0)
|
||||
|
||||
#define SRAM_WRITE_FIELD_N(sc, off, s, f, p, n) \
|
||||
ray_write_region(sc, (off) + offsetof(struct s, f), (p), (n))
|
||||
|
||||
#define ray_write_region(sc, off, vp, n) \
|
||||
bcopy((vp), (sc)->maddr + (off), (n))
|
||||
|
||||
#ifndef RAY_COM_TIMEOUT
|
||||
#define RAY_COM_TIMEOUT (hz / 2)
|
||||
#endif
|
||||
#ifndef RAY_RESET_TIMEOUT
|
||||
#define RAY_RESET_TIMEOUT (10 * hz)
|
||||
#endif
|
||||
#ifndef RAY_TX_TIMEOUT
|
||||
#define RAY_TX_TIMEOUT (hz / 2)
|
||||
#endif
|
||||
#define RAY_CCS_FREE(sc, ccs) \
|
||||
SRAM_WRITE_FIELD_1((sc), (ccs), ray_cmd, c_status, RAY_CCS_STATUS_FREE)
|
||||
#define RAY_ECF_READY(sc) (!(ray_read_reg(sc, RAY_ECFIR) & RAY_ECFIR_IRQ))
|
||||
#define RAY_ECF_START_CMD(sc) ray_attr_write((sc), RAY_ECFIR, RAY_ECFIR_IRQ)
|
||||
#define RAY_HCS_CLEAR_INTR(sc) ray_attr_write((sc), RAY_HCSIR, 0)
|
||||
#define RAY_HCS_INTR(sc) (ray_read_reg(sc, RAY_HCSIR) & RAY_HCSIR_IRQ)
|
||||
|
||||
#define RAY_PANIC(sc, fmt, args...) do { \
|
||||
panic("ray%d: %s(%d) " fmt "\n", \
|
||||
sc->unit, __FUNCTION__ , __LINE__ , ##args); \
|
||||
} while (0)
|
||||
|
||||
#define RAY_PRINTF(sc, fmt, args...) do { \
|
||||
printf("ray%d: %s(%d) " fmt "\n", \
|
||||
(sc)->unit, __FUNCTION__ , __LINE__ , ##args); \
|
||||
} while (0)
|
||||
|
||||
#ifndef RAY_COM_MALLOC
|
||||
#define RAY_COM_MALLOC(function, flags) ray_com_malloc((function), (flags));
|
||||
#endif /* RAY_COM_MALLOC */
|
||||
|
||||
#ifndef RAY_COM_CHECK
|
||||
#define RAY_COM_CHECK(sc, com)
|
||||
#endif /* RAY_COM_CHECK */
|
||||
|
||||
#ifndef RAY_COM_DUMP
|
||||
#define RAY_COM_DUMP(sc, com, s)
|
||||
#endif /* RAY_COM_DUMP */
|
||||
|
||||
#ifndef RAY_MBUF_DUMP
|
||||
#define RAY_MBUF_DUMP(sc, m, s)
|
||||
#endif /* RAY_MBUF_DUMP */
|
||||
|
||||
/*
|
||||
* As described in if_xe.c...
|
||||
*
|
||||
* Horrid stuff for accessing CIS tuples and remapping common memory...
|
||||
*/
|
||||
#define CARD_MAJOR 50
|
||||
#if (RAY_NEED_CM_REMAPPING | RAY_NEED_CM_FIXUP)
|
||||
#define RAY_MAP_CM(sc) ray_attr_mapcm(sc)
|
||||
#else
|
||||
#define RAY_MAP_CM(sc)
|
||||
#endif /* (RAY_NEED_CM_REMAPPING | RAY_NEED_CM_FIXUP) */
|
||||
|
||||
/*
|
||||
* Probe for the card by checking its startup results.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user