Home | History | Annotate | Line # | Download | only in include
isa_machdep.h revision 1.19
      1  1.19  tshiozak /*	$NetBSD: isa_machdep.h,v 1.19 2002/06/18 07:56:14 tshiozak Exp $	*/
      2   1.7   thorpej 
      3   1.7   thorpej /*-
      4  1.10   thorpej  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
      5   1.7   thorpej  * All rights reserved.
      6   1.7   thorpej  *
      7   1.7   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.7   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9   1.7   thorpej  * NASA Ames Research Center.
     10   1.7   thorpej  *
     11   1.7   thorpej  * Redistribution and use in source and binary forms, with or without
     12   1.7   thorpej  * modification, are permitted provided that the following conditions
     13   1.7   thorpej  * are met:
     14   1.7   thorpej  * 1. Redistributions of source code must retain the above copyright
     15   1.7   thorpej  *    notice, this list of conditions and the following disclaimer.
     16   1.7   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.7   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18   1.7   thorpej  *    documentation and/or other materials provided with the distribution.
     19   1.7   thorpej  * 3. All advertising materials mentioning features or use of this software
     20   1.7   thorpej  *    must display the following acknowledgement:
     21   1.7   thorpej  *	This product includes software developed by the NetBSD
     22   1.7   thorpej  *	Foundation, Inc. and its contributors.
     23   1.7   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.7   thorpej  *    contributors may be used to endorse or promote products derived
     25   1.7   thorpej  *    from this software without specific prior written permission.
     26   1.7   thorpej  *
     27   1.7   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.7   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.7   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.7   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.7   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.7   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.7   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.7   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.7   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.7   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.7   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38   1.7   thorpej  */
     39   1.1       cgd 
     40   1.1       cgd /*-
     41   1.1       cgd  * Copyright (c) 1990 The Regents of the University of California.
     42   1.1       cgd  * All rights reserved.
     43   1.1       cgd  *
     44   1.1       cgd  * This code is derived from software contributed to Berkeley by
     45   1.1       cgd  * William Jolitz.
     46   1.1       cgd  *
     47   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     48   1.1       cgd  * modification, are permitted provided that the following conditions
     49   1.1       cgd  * are met:
     50   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     51   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     52   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     53   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     54   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     55   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     56   1.1       cgd  *    must display the following acknowledgement:
     57   1.1       cgd  *	This product includes software developed by the University of
     58   1.1       cgd  *	California, Berkeley and its contributors.
     59   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     60   1.1       cgd  *    may be used to endorse or promote products derived from this software
     61   1.1       cgd  *    without specific prior written permission.
     62   1.1       cgd  *
     63   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73   1.1       cgd  * SUCH DAMAGE.
     74   1.1       cgd  *
     75   1.1       cgd  *	@(#)isa.h	5.7 (Berkeley) 5/9/91
     76   1.1       cgd  */
     77   1.1       cgd 
     78   1.1       cgd /*
     79   1.5       cgd  * Various pieces of the i386 port want to include this file without
     80   1.5       cgd  * or in spite of using isavar.h, and should be fixed.
     81   1.5       cgd  */
     82   1.5       cgd 
     83   1.5       cgd #ifndef _I386_ISA_MACHDEP_H_			/* XXX */
     84   1.5       cgd #define _I386_ISA_MACHDEP_H_			/* XXX */
     85   1.5       cgd 
     86   1.7   thorpej #include <machine/bus.h>
     87  1.10   thorpej #include <dev/isa/isadmavar.h>
     88   1.7   thorpej 
     89   1.5       cgd /*
     90   1.1       cgd  * XXX THIS FILE IS A MESS.  copyright: berkeley's probably.
     91   1.1       cgd  * contents from isavar.h and isareg.h, mostly the latter.
     92   1.1       cgd  * perhaps charles's?
     93   1.1       cgd  *
     94   1.1       cgd  * copyright from berkeley's isa.h which is now dev/isa/isareg.h.
     95   1.1       cgd  */
     96   1.1       cgd 
     97   1.5       cgd /*
     98   1.5       cgd  * Types provided to machine-independent ISA code.
     99   1.5       cgd  */
    100  1.10   thorpej struct i386_isa_chipset {
    101  1.10   thorpej 	struct isa_dma_state ic_dmastate;
    102  1.10   thorpej };
    103  1.10   thorpej 
    104  1.10   thorpej typedef struct i386_isa_chipset *isa_chipset_tag_t;
    105   1.5       cgd 
    106   1.5       cgd struct device;			/* XXX */
    107   1.5       cgd struct isabus_attach_args;	/* XXX */
    108   1.1       cgd 
    109   1.1       cgd /*
    110   1.5       cgd  * Functions provided to machine-independent ISA code.
    111   1.5       cgd  */
    112  1.15       cgd void	isa_attach_hook(struct device *, struct device *,
    113  1.15       cgd 	    struct isabus_attach_args *);
    114  1.15       cgd int	isa_intr_alloc(isa_chipset_tag_t, int, int, int *);
    115  1.16       cgd const struct evcnt *isa_intr_evcnt(isa_chipset_tag_t ic, int irq);
    116  1.15       cgd void	*isa_intr_establish(isa_chipset_tag_t ic, int irq, int type,
    117  1.15       cgd 	    int level, int (*ih_fun)(void *), void *ih_arg);
    118  1.15       cgd void	isa_intr_disestablish(isa_chipset_tag_t ic, void *handler);
    119  1.15       cgd int	isa_mem_alloc(bus_space_tag_t, bus_size_t, bus_size_t,
    120  1.15       cgd 	    bus_addr_t, int, bus_addr_t *, bus_space_handle_t *);
    121  1.15       cgd void	isa_mem_free(bus_space_tag_t, bus_space_handle_t, bus_size_t);
    122  1.10   thorpej 
    123  1.10   thorpej #define	isa_dmainit(ic, bst, dmat, d)					\
    124  1.10   thorpej 	_isa_dmainit(&(ic)->ic_dmastate, (bst), (dmat), (d))
    125  1.10   thorpej #define	isa_dmacascade(ic, c)						\
    126  1.10   thorpej 	_isa_dmacascade(&(ic)->ic_dmastate, (c))
    127  1.14   thorpej #define	isa_dmamaxsize(ic, c)						\
    128  1.14   thorpej 	_isa_dmamaxsize(&(ic)->ic_dmastate, (c))
    129  1.10   thorpej #define	isa_dmamap_create(ic, c, s, f)					\
    130  1.10   thorpej 	_isa_dmamap_create(&(ic)->ic_dmastate, (c), (s), (f))
    131  1.10   thorpej #define	isa_dmamap_destroy(ic, c)					\
    132  1.10   thorpej 	_isa_dmamap_destroy(&(ic)->ic_dmastate, (c))
    133  1.10   thorpej #define	isa_dmastart(ic, c, a, n, p, f, bf)				\
    134  1.10   thorpej 	_isa_dmastart(&(ic)->ic_dmastate, (c), (a), (n), (p), (f), (bf))
    135  1.10   thorpej #define	isa_dmaabort(ic, c)						\
    136  1.10   thorpej 	_isa_dmaabort(&(ic)->ic_dmastate, (c))
    137  1.10   thorpej #define	isa_dmacount(ic, c)						\
    138  1.10   thorpej 	_isa_dmacount(&(ic)->ic_dmastate, (c))
    139  1.10   thorpej #define	isa_dmafinished(ic, c)						\
    140  1.10   thorpej 	_isa_dmafinished(&(ic)->ic_dmastate, (c))
    141  1.10   thorpej #define	isa_dmadone(ic, c)						\
    142  1.10   thorpej 	_isa_dmadone(&(ic)->ic_dmastate, (c))
    143  1.11   thorpej #define	isa_dmafreeze(ic)						\
    144  1.11   thorpej 	_isa_dmafreeze(&(ic)->ic_dmastate)
    145  1.11   thorpej #define	isa_dmathaw(ic)							\
    146  1.11   thorpej 	_isa_dmathaw(&(ic)->ic_dmastate)
    147  1.10   thorpej #define	isa_dmamem_alloc(ic, c, s, ap, f)				\
    148  1.10   thorpej 	_isa_dmamem_alloc(&(ic)->ic_dmastate, (c), (s), (ap), (f))
    149  1.10   thorpej #define	isa_dmamem_free(ic, c, a, s)					\
    150  1.10   thorpej 	_isa_dmamem_free(&(ic)->ic_dmastate, (c), (a), (s))
    151  1.10   thorpej #define	isa_dmamem_map(ic, c, a, s, kp, f)				\
    152  1.10   thorpej 	_isa_dmamem_map(&(ic)->ic_dmastate, (c), (a), (s), (kp), (f))
    153  1.10   thorpej #define	isa_dmamem_unmap(ic, c, k, s)					\
    154  1.10   thorpej 	_isa_dmamem_unmap(&(ic)->ic_dmastate, (c), (k), (s))
    155  1.10   thorpej #define	isa_dmamem_mmap(ic, c, a, s, o, p, f)				\
    156  1.10   thorpej 	_isa_dmamem_mmap(&(ic)->ic_dmastate, (c), (a), (s), (o), (p), (f))
    157  1.10   thorpej #define	isa_drq_isfree(ic, c)						\
    158  1.10   thorpej 	_isa_drq_isfree(&(ic)->ic_dmastate, (c))
    159  1.10   thorpej #define	isa_malloc(ic, c, s, p, f)					\
    160  1.10   thorpej 	_isa_malloc(&(ic)->ic_dmastate, (c), (s), (p), (f))
    161  1.10   thorpej #define	isa_free(a, p)							\
    162  1.10   thorpej 	_isa_free((a), (p))
    163  1.10   thorpej #define	isa_mappage(m, o, p)						\
    164  1.10   thorpej 	_isa_mappage((m), (o), (p))
    165  1.19  tshiozak 
    166  1.19  tshiozak /*
    167  1.19  tshiozak  * for ACPI code
    168  1.19  tshiozak  */
    169  1.19  tshiozak 
    170  1.19  tshiozak void	isa_reinit_irq(void);
    171   1.5       cgd 
    172   1.5       cgd /*
    173   1.5       cgd  * ALL OF THE FOLLOWING ARE MACHINE-DEPENDENT, AND SHOULD NOT BE USED
    174   1.5       cgd  * BY PORTABLE CODE.
    175   1.5       cgd  */
    176   1.7   thorpej 
    177   1.7   thorpej extern struct i386_bus_dma_tag isa_bus_dma_tag;
    178   1.7   thorpej 
    179   1.5       cgd /*
    180   1.1       cgd  * XXX Various seemingly PC-specific constants, some of which may be
    181   1.1       cgd  * unnecessary anyway.
    182   1.1       cgd  */
    183   1.1       cgd 
    184   1.1       cgd /*
    185   1.1       cgd  * RAM Physical Address Space (ignoring the above mentioned "hole")
    186   1.1       cgd  */
    187   1.1       cgd #define	RAM_BEGIN	0x0000000	/* Start of RAM Memory */
    188   1.1       cgd #define	RAM_END		0x1000000	/* End of RAM Memory */
    189   1.1       cgd #define	RAM_SIZE	(RAM_END - RAM_BEGIN)
    190   1.1       cgd 
    191   1.1       cgd /*
    192   1.1       cgd  * Oddball Physical Memory Addresses
    193   1.1       cgd  */
    194   1.1       cgd #define	COMPAQ_RAMRELOC	0x80c00000	/* Compaq RAM relocation/diag */
    195   1.1       cgd #define	COMPAQ_RAMSETUP	0x80c00002	/* Compaq RAM setup */
    196   1.1       cgd #define	WEITEK_FPU	0xC0000000	/* WTL 2167 */
    197   1.1       cgd #define	CYRIX_EMC	0xC0000000	/* Cyrix EMC */
    198   1.1       cgd 
    199   1.1       cgd /*
    200   1.1       cgd  * stuff that used to be in pccons.c
    201   1.1       cgd  */
    202   1.1       cgd #define	MONO_BASE	0x3B4
    203   1.2   mycroft #define	MONO_BUF	0xB0000
    204   1.1       cgd #define	CGA_BASE	0x3D4
    205   1.2   mycroft #define	CGA_BUF		0xB8000
    206   1.1       cgd 
    207   1.1       cgd /*
    208   1.1       cgd  * Interrupt handler chains.  isa_intr_establish() inserts a handler into
    209   1.1       cgd  * the list.  The handler is called with its (single) argument.
    210   1.1       cgd  */
    211   1.1       cgd 
    212   1.1       cgd struct intrhand {
    213  1.15       cgd 	int	(*ih_fun)(void *);
    214   1.1       cgd 	void	*ih_arg;
    215   1.1       cgd 	u_long	ih_count;
    216   1.1       cgd 	struct	intrhand *ih_next;
    217   1.1       cgd 	int	ih_level;
    218   1.1       cgd 	int	ih_irq;
    219   1.1       cgd };
    220   1.1       cgd 
    221   1.1       cgd /*
    222   1.1       cgd  * Variables and macros to deal with the ISA I/O hole.
    223   1.1       cgd  * XXX These should be converted to machine- and bus-mapping-independent
    224   1.1       cgd  * function definitions, invoked through the softc.
    225   1.1       cgd  */
    226   1.1       cgd 
    227   1.3   mycroft extern u_long atdevbase;           /* kernel virtual address of "hole" */
    228   1.1       cgd 
    229   1.1       cgd /*
    230   1.1       cgd  * Given a kernel virtual address for some location
    231   1.1       cgd  * in the "hole" I/O space, return a physical address.
    232   1.1       cgd  */
    233   1.3   mycroft #define ISA_PHYSADDR(v) ((void *) ((u_long)(v) - atdevbase + IOM_BEGIN))
    234   1.1       cgd 
    235   1.1       cgd /*
    236   1.1       cgd  * Given a physical address in the "hole",
    237   1.1       cgd  * return a kernel virtual address.
    238   1.1       cgd  */
    239   1.3   mycroft #define ISA_HOLE_VADDR(p)  ((void *) ((u_long)(p) - IOM_BEGIN + atdevbase))
    240   1.1       cgd 
    241   1.1       cgd 
    242   1.1       cgd /*
    243   1.1       cgd  * Miscellanous functions.
    244   1.1       cgd  */
    245  1.15       cgd void sysbeep(int, int);		/* beep with the system speaker */
    246   1.5       cgd 
    247   1.5       cgd #endif /* _I386_ISA_MACHDEP_H_ XXX */
    248