Home | History | Annotate | Line # | Download | only in include
isa_machdep.h revision 1.9
      1  1.9   thorpej /*	$NetBSD: isa_machdep.h,v 1.9 2000/02/07 22:07:29 thorpej Exp $	*/
      2  1.4   thorpej 
      3  1.4   thorpej /*-
      4  1.5   thorpej  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
      5  1.4   thorpej  * All rights reserved.
      6  1.4   thorpej  *
      7  1.4   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.4   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.4   thorpej  * NASA Ames Research Center.
     10  1.4   thorpej  *
     11  1.4   thorpej  * Redistribution and use in source and binary forms, with or without
     12  1.4   thorpej  * modification, are permitted provided that the following conditions
     13  1.4   thorpej  * are met:
     14  1.4   thorpej  * 1. Redistributions of source code must retain the above copyright
     15  1.4   thorpej  *    notice, this list of conditions and the following disclaimer.
     16  1.4   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.4   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18  1.4   thorpej  *    documentation and/or other materials provided with the distribution.
     19  1.4   thorpej  * 3. All advertising materials mentioning features or use of this software
     20  1.4   thorpej  *    must display the following acknowledgement:
     21  1.4   thorpej  *	This product includes software developed by the NetBSD
     22  1.4   thorpej  *	Foundation, Inc. and its contributors.
     23  1.4   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.4   thorpej  *    contributors may be used to endorse or promote products derived
     25  1.4   thorpej  *    from this software without specific prior written permission.
     26  1.4   thorpej  *
     27  1.4   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.4   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.4   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.4   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.4   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.4   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.4   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.4   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.4   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.4   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.4   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38  1.4   thorpej  */
     39  1.1  sakamoto 
     40  1.1  sakamoto /*-
     41  1.1  sakamoto  * Copyright (c) 1990 The Regents of the University of California.
     42  1.1  sakamoto  * All rights reserved.
     43  1.1  sakamoto  *
     44  1.1  sakamoto  * This code is derived from software contributed to Berkeley by
     45  1.1  sakamoto  * William Jolitz.
     46  1.1  sakamoto  *
     47  1.1  sakamoto  * Redistribution and use in source and binary forms, with or without
     48  1.1  sakamoto  * modification, are permitted provided that the following conditions
     49  1.1  sakamoto  * are met:
     50  1.1  sakamoto  * 1. Redistributions of source code must retain the above copyright
     51  1.1  sakamoto  *    notice, this list of conditions and the following disclaimer.
     52  1.1  sakamoto  * 2. Redistributions in binary form must reproduce the above copyright
     53  1.1  sakamoto  *    notice, this list of conditions and the following disclaimer in the
     54  1.1  sakamoto  *    documentation and/or other materials provided with the distribution.
     55  1.1  sakamoto  * 3. All advertising materials mentioning features or use of this software
     56  1.1  sakamoto  *    must display the following acknowledgement:
     57  1.1  sakamoto  *	This product includes software developed by the University of
     58  1.1  sakamoto  *	California, Berkeley and its contributors.
     59  1.1  sakamoto  * 4. Neither the name of the University nor the names of its contributors
     60  1.1  sakamoto  *    may be used to endorse or promote products derived from this software
     61  1.1  sakamoto  *    without specific prior written permission.
     62  1.1  sakamoto  *
     63  1.1  sakamoto  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64  1.1  sakamoto  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65  1.1  sakamoto  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66  1.1  sakamoto  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67  1.1  sakamoto  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68  1.1  sakamoto  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69  1.1  sakamoto  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70  1.1  sakamoto  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71  1.1  sakamoto  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72  1.1  sakamoto  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73  1.1  sakamoto  * SUCH DAMAGE.
     74  1.1  sakamoto  *
     75  1.1  sakamoto  *	@(#)isa.h	5.7 (Berkeley) 5/9/91
     76  1.1  sakamoto  */
     77  1.1  sakamoto 
     78  1.1  sakamoto /*
     79  1.1  sakamoto  * Various pieces of the bebox port want to include this file without
     80  1.1  sakamoto  * or in spite of using isavar.h, and should be fixed.
     81  1.1  sakamoto  */
     82  1.1  sakamoto 
     83  1.1  sakamoto #ifndef _BEBOX_ISA_MACHDEP_H_			/* XXX */
     84  1.1  sakamoto #define _BEBOX_ISA_MACHDEP_H_			/* XXX */
     85  1.1  sakamoto 
     86  1.5   thorpej #include <machine/bus.h>
     87  1.5   thorpej #include <dev/isa/isadmavar.h>
     88  1.5   thorpej 
     89  1.1  sakamoto /*
     90  1.1  sakamoto  * XXX THIS FILE IS A MESS.  copyright: berkeley's probably.
     91  1.1  sakamoto  * contents from isavar.h and isareg.h, mostly the latter.
     92  1.1  sakamoto  * perhaps charles's?
     93  1.1  sakamoto  *
     94  1.1  sakamoto  * copyright from berkeley's isa.h which is now dev/isa/isareg.h.
     95  1.1  sakamoto  */
     96  1.1  sakamoto 
     97  1.1  sakamoto /*
     98  1.1  sakamoto  * Types provided to machine-independent ISA code.
     99  1.1  sakamoto  */
    100  1.5   thorpej struct bebox_isa_chipset {
    101  1.5   thorpej 	struct isa_dma_state ic_dmastate;
    102  1.5   thorpej };
    103  1.5   thorpej 
    104  1.5   thorpej typedef struct bebox_isa_chipset *isa_chipset_tag_t;
    105  1.1  sakamoto 
    106  1.1  sakamoto struct device;			/* XXX */
    107  1.1  sakamoto struct isabus_attach_args;	/* XXX */
    108  1.1  sakamoto 
    109  1.1  sakamoto /*
    110  1.1  sakamoto  * Functions provided to machine-independent ISA code.
    111  1.1  sakamoto  */
    112  1.1  sakamoto void	isa_attach_hook __P((struct device *, struct device *,
    113  1.1  sakamoto 	    struct isabus_attach_args *));
    114  1.1  sakamoto void	*isa_intr_establish __P((isa_chipset_tag_t ic, int irq, int type,
    115  1.1  sakamoto 	    int level, int (*ih_fun)(void *), void *ih_arg));
    116  1.1  sakamoto void	isa_intr_disestablish __P((isa_chipset_tag_t ic, void *handler));
    117  1.5   thorpej 
    118  1.5   thorpej #define	isa_dmainit(ic, bst, dmat, d)					\
    119  1.5   thorpej 	_isa_dmainit(&(ic)->ic_dmastate, (bst), (dmat), (d))
    120  1.5   thorpej #define	isa_dmacascade(ic, c)						\
    121  1.5   thorpej 	_isa_dmacascade(&(ic)->ic_dmastate, (c))
    122  1.9   thorpej #define	isa_dmamaxsize(ic, c)						\
    123  1.9   thorpej 	_isa_dmamaxsize(&(ic)->ic_dmastate, (c))
    124  1.5   thorpej #define	isa_dmamap_create(ic, c, s, f)					\
    125  1.5   thorpej 	_isa_dmamap_create(&(ic)->ic_dmastate, (c), (s), (f))
    126  1.5   thorpej #define	isa_dmamap_destroy(ic, c)					\
    127  1.5   thorpej 	_isa_dmamap_destroy(&(ic)->ic_dmastate, (c))
    128  1.5   thorpej #define	isa_dmastart(ic, c, a, n, p, f, bf)				\
    129  1.5   thorpej 	_isa_dmastart(&(ic)->ic_dmastate, (c), (a), (n), (p), (f), (bf))
    130  1.5   thorpej #define	isa_dmaabort(ic, c)						\
    131  1.5   thorpej 	_isa_dmaabort(&(ic)->ic_dmastate, (c))
    132  1.5   thorpej #define	isa_dmacount(ic, c)						\
    133  1.5   thorpej 	_isa_dmacount(&(ic)->ic_dmastate, (c))
    134  1.5   thorpej #define	isa_dmafinished(ic, c)						\
    135  1.5   thorpej 	_isa_dmafinished(&(ic)->ic_dmastate, (c))
    136  1.5   thorpej #define	isa_dmadone(ic, c)						\
    137  1.5   thorpej 	_isa_dmadone(&(ic)->ic_dmastate, (c))
    138  1.6   thorpej #define	isa_dmafreeze(ic)						\
    139  1.6   thorpej 	_isa_dmafreeze(&(ic)->ic_dmastate)
    140  1.6   thorpej #define	isa_dmathaw(ic)							\
    141  1.6   thorpej 	_isa_dmathaw(&(ic)->ic_dmastate)
    142  1.5   thorpej #define	isa_dmamem_alloc(ic, c, s, ap, f)				\
    143  1.5   thorpej 	_isa_dmamem_alloc(&(ic)->ic_dmastate, (c), (s), (ap), (f))
    144  1.5   thorpej #define	isa_dmamem_free(ic, c, a, s)					\
    145  1.5   thorpej 	_isa_dmamem_free(&(ic)->ic_dmastate, (c), (a), (s))
    146  1.5   thorpej #define	isa_dmamem_map(ic, c, a, s, kp, f)				\
    147  1.5   thorpej 	_isa_dmamem_map(&(ic)->ic_dmastate, (c), (a), (s), (kp), (f))
    148  1.5   thorpej #define	isa_dmamem_unmap(ic, c, k, s)					\
    149  1.5   thorpej 	_isa_dmamem_unmap(&(ic)->ic_dmastate, (c), (k), (s))
    150  1.5   thorpej #define	isa_dmamem_mmap(ic, c, a, s, o, p, f)				\
    151  1.5   thorpej 	_isa_dmamem_mmap(&(ic)->ic_dmastate, (c), (a), (s), (o), (p), (f))
    152  1.5   thorpej #define	isa_drq_isfree(ic, c)						\
    153  1.5   thorpej 	_isa_drq_isfree(&(ic)->ic_dmastate, (c))
    154  1.5   thorpej #define	isa_malloc(ic, c, s, p, f)					\
    155  1.5   thorpej 	_isa_malloc(&(ic)->ic_dmastate, (c), (s), (p), (f))
    156  1.5   thorpej #define	isa_free(a, p)							\
    157  1.5   thorpej 	_isa_free((a), (p))
    158  1.5   thorpej #define	isa_mappage(m, o, p)						\
    159  1.5   thorpej 	_isa_mappage((m), (o), (p))
    160  1.1  sakamoto 
    161  1.1  sakamoto /*
    162  1.1  sakamoto  * ALL OF THE FOLLOWING ARE MACHINE-DEPENDENT, AND SHOULD NOT BE USED
    163  1.1  sakamoto  * BY PORTABLE CODE.
    164  1.1  sakamoto  */
    165  1.1  sakamoto 
    166  1.3  sakamoto #define	isa_outb(x,y)	outb(BEBOX_BUS_SPACE_IO + (x), y)
    167  1.3  sakamoto #define isa_inb(x)	inb(BEBOX_BUS_SPACE_IO + (x))
    168  1.2  sakamoto 
    169  1.1  sakamoto extern struct bebox_bus_dma_tag isa_bus_dma_tag;
    170  1.1  sakamoto 
    171  1.1  sakamoto /*
    172  1.1  sakamoto  * Cookie used by ISA dma.  A pointer to one of these it stashed in
    173  1.1  sakamoto  * the DMA map.
    174  1.1  sakamoto  */
    175  1.1  sakamoto struct bebox_isa_dma_cookie {
    176  1.1  sakamoto 	int	id_flags;		/* flags; see below */
    177  1.1  sakamoto 
    178  1.4   thorpej 	/*
    179  1.4   thorpej 	 * Information about the original buffer used during
    180  1.4   thorpej 	 * DMA map syncs.  Note that origbuflen is only used
    181  1.4   thorpej 	 * for ID_BUFTYPE_LINEAR.
    182  1.4   thorpej 	 */
    183  1.1  sakamoto 	void	*id_origbuf;		/* pointer to orig buffer if
    184  1.1  sakamoto 					   bouncing */
    185  1.1  sakamoto 	bus_size_t id_origbuflen;	/* ...and size */
    186  1.4   thorpej 	int	id_buftype;		/* type of buffer */
    187  1.1  sakamoto 
    188  1.1  sakamoto 	void	*id_bouncebuf;		/* pointer to the bounce buffer */
    189  1.1  sakamoto 	bus_size_t id_bouncebuflen;	/* ...and size */
    190  1.1  sakamoto 	int	id_nbouncesegs;		/* number of valid bounce segs */
    191  1.1  sakamoto 	bus_dma_segment_t id_bouncesegs[0]; /* array of bounce buffer
    192  1.1  sakamoto 					       physical memory segments */
    193  1.1  sakamoto };
    194  1.1  sakamoto 
    195  1.1  sakamoto /* id_flags */
    196  1.1  sakamoto #define	ID_MIGHT_NEED_BOUNCE	0x01	/* map could need bounce buffers */
    197  1.1  sakamoto #define	ID_HAS_BOUNCE		0x02	/* map currently has bounce buffers */
    198  1.1  sakamoto #define	ID_IS_BOUNCING		0x04	/* map is bouncing current xfer */
    199  1.1  sakamoto 
    200  1.4   thorpej /* id_buftype */
    201  1.4   thorpej #define	ID_BUFTYPE_INVALID	0
    202  1.4   thorpej #define	ID_BUFTYPE_LINEAR	1
    203  1.4   thorpej #define	ID_BUFTYPE_MBUF		2
    204  1.4   thorpej #define	ID_BUFTYPE_UIO		3
    205  1.4   thorpej #define	ID_BUFTYPE_RAW		4
    206  1.1  sakamoto 
    207  1.1  sakamoto /*
    208  1.1  sakamoto  * XXX Various seemingly PC-specific constants, some of which may be
    209  1.1  sakamoto  * unnecessary anyway.
    210  1.1  sakamoto  */
    211  1.1  sakamoto 
    212  1.1  sakamoto /*
    213  1.1  sakamoto  * stuff that used to be in pccons.c
    214  1.1  sakamoto  */
    215  1.1  sakamoto #define	MONO_BASE	0x3B4
    216  1.1  sakamoto #define	MONO_BUF	0xB0000
    217  1.1  sakamoto #define	CGA_BASE	0x3D4
    218  1.1  sakamoto #define	CGA_BUF		0xB8000
    219  1.1  sakamoto #define	IOPHYSMEM	0xA0000
    220  1.1  sakamoto 
    221  1.1  sakamoto 
    222  1.1  sakamoto /*
    223  1.1  sakamoto  * ISA DMA bounce buffers.
    224  1.1  sakamoto  * XXX should be made partially machine- and bus-mapping-independent.
    225  1.1  sakamoto  *
    226  1.1  sakamoto  * DMA_BOUNCE is the number of pages of low-addressed physical memory
    227  1.1  sakamoto  * to acquire for ISA bounce buffers.
    228  1.1  sakamoto  *
    229  1.1  sakamoto  * isaphysmem is the location of those bounce buffers.  (They are currently
    230  1.1  sakamoto  * assumed to be contiguous.
    231  1.1  sakamoto  */
    232  1.1  sakamoto 
    233  1.1  sakamoto #ifndef DMA_BOUNCE
    234  1.1  sakamoto #define	DMA_BOUNCE      8		/* one buffer per channel */
    235  1.1  sakamoto #endif
    236  1.1  sakamoto 
    237  1.7  sakamoto extern paddr_t isaphysmem;
    238  1.1  sakamoto 
    239  1.1  sakamoto /*
    240  1.1  sakamoto  * Miscellanous functions.
    241  1.1  sakamoto  */
    242  1.1  sakamoto void sysbeep __P((int, int));		/* beep with the system speaker */
    243  1.1  sakamoto 
    244  1.1  sakamoto #endif /* _BEBOX_ISA_MACHDEP_H_ XXX */
    245