2000-07-26 16:41:40 +04:00
|
|
|
/* $NetBSD: bivar.h,v 1.8 2000/07/26 12:41:40 ragge Exp $ */
|
1999-07-12 17:42:55 +04:00
|
|
|
/*
|
1999-08-04 23:12:22 +04:00
|
|
|
* Copyright (c) 1996, 1999 Ludd, University of Lule}, Sweden.
|
1999-07-12 17:42:55 +04:00
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1999-08-04 23:12:22 +04:00
|
|
|
* This product includes software developed at Ludd, University of
|
|
|
|
* Lule}, Sweden and its contributors.
|
1999-07-12 17:42:55 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* per-BI-adapter state.
|
|
|
|
*/
|
|
|
|
struct bi_softc {
|
1999-08-04 23:12:22 +04:00
|
|
|
struct device sc_dev;
|
|
|
|
bus_space_tag_t sc_iot; /* Space tag for the BI bus */
|
|
|
|
bus_dma_tag_t sc_dmat;
|
|
|
|
bus_addr_t sc_addr; /* Address base address for this bus */
|
|
|
|
int sc_busnr; /* (Physical) number of this bus */
|
|
|
|
int sc_lastiv; /* last available interrupt vector */
|
2000-03-26 15:45:04 +04:00
|
|
|
int sc_intcpu;
|
1999-07-12 17:42:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Struct used for autoconfiguration; attaching of BI nodes.
|
|
|
|
*/
|
|
|
|
struct bi_attach_args {
|
1999-08-04 23:12:22 +04:00
|
|
|
bus_space_tag_t ba_iot;
|
|
|
|
bus_space_handle_t ba_ioh; /* Base address for this node */
|
|
|
|
bus_dma_tag_t ba_dmat;
|
|
|
|
int ba_busnr;
|
|
|
|
int ba_nodenr;
|
1999-07-12 17:42:55 +04:00
|
|
|
int ba_intcpu; /* Mask of which cpus to interrupt */
|
1999-08-04 23:12:22 +04:00
|
|
|
int ba_ivec; /* Interrupt vector to use */
|
2000-03-26 15:45:04 +04:00
|
|
|
void *ba_icookie;
|
1999-07-12 17:42:55 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* BI node list.
|
|
|
|
*/
|
|
|
|
struct bi_list {
|
|
|
|
u_short bl_nr; /* Unit ID# */
|
1999-08-04 23:12:22 +04:00
|
|
|
u_short bl_havedriver; /* Have device driver (informal) */
|
1999-07-12 17:42:55 +04:00
|
|
|
char *bl_name; /* DEC name */
|
|
|
|
};
|
1999-08-04 23:12:22 +04:00
|
|
|
|
2000-07-26 16:41:40 +04:00
|
|
|
/* bl_havedriver field meaning */
|
|
|
|
#define DT_UNSUPP 0 /* pseudo define */
|
|
|
|
#define DT_HAVDRV 1 /* device have driver */
|
|
|
|
#define DT_ADAPT 2 /* is an adapter */
|
|
|
|
#define DT_QUIET 4 /* don't complain when not conf'ed */
|
|
|
|
#define DT_VEC 8 /* uses a interrupt vector */
|
|
|
|
|
1999-08-04 23:12:22 +04:00
|
|
|
/* Prototype */
|
2000-06-04 06:14:42 +04:00
|
|
|
void bi_attach (struct bi_softc *);
|
2000-06-04 10:16:53 +04:00
|
|
|
void bi_intr_establish (void *, int, void (*)(void *), void *, struct evcnt *);
|