1*e58a356cSchristos /* $NetBSD: eisa_machdep.h,v 1.3 2014/03/29 19:28:29 christos Exp $ */ 2b19f0d31Sgarbled 3b19f0d31Sgarbled /* 4b19f0d31Sgarbled * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. 5b19f0d31Sgarbled * 6b19f0d31Sgarbled * Redistribution and use in source and binary forms, with or without 7b19f0d31Sgarbled * modification, are permitted provided that the following conditions 8b19f0d31Sgarbled * are met: 9b19f0d31Sgarbled * 1. Redistributions of source code must retain the above copyright 10b19f0d31Sgarbled * notice, this list of conditions and the following disclaimer. 11b19f0d31Sgarbled * 2. Redistributions in binary form must reproduce the above copyright 12b19f0d31Sgarbled * notice, this list of conditions and the following disclaimer in the 13b19f0d31Sgarbled * documentation and/or other materials provided with the distribution. 14b19f0d31Sgarbled * 3. All advertising materials mentioning features or use of this software 15b19f0d31Sgarbled * must display the following acknowledgement: 16b19f0d31Sgarbled * This product includes software developed by Christopher G. Demetriou 17b19f0d31Sgarbled * for the NetBSD Project. 18b19f0d31Sgarbled * 4. The name of the author may not be used to endorse or promote products 19b19f0d31Sgarbled * derived from this software without specific prior written permission 20b19f0d31Sgarbled * 21b19f0d31Sgarbled * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22b19f0d31Sgarbled * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23b19f0d31Sgarbled * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24b19f0d31Sgarbled * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25b19f0d31Sgarbled * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26b19f0d31Sgarbled * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27b19f0d31Sgarbled * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28b19f0d31Sgarbled * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29b19f0d31Sgarbled * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30b19f0d31Sgarbled * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31b19f0d31Sgarbled */ 32b19f0d31Sgarbled 33b19f0d31Sgarbled /* 34b19f0d31Sgarbled * Machine-specific definitions for EISA autoconfiguration. 35b19f0d31Sgarbled */ 36b19f0d31Sgarbled 37b19f0d31Sgarbled /* 38b19f0d31Sgarbled * prep-specific EISA definitions. 39b19f0d31Sgarbled * NOT TO BE USED DIRECTLY BY MACHINE INDEPENDENT CODE. 40b19f0d31Sgarbled */ 41b19f0d31Sgarbled #define EISA_ID "EISA" 42b19f0d31Sgarbled #define EISA_ID_LEN (sizeof(EISA_ID) - 1) 43b19f0d31Sgarbled #define EISA_ID_PADDR 0xfffd9 44b19f0d31Sgarbled 45b19f0d31Sgarbled extern struct powerpc_bus_dma_tag eisa_bus_dma_tag; 46b19f0d31Sgarbled 47b19f0d31Sgarbled /* EISA Edge/Level trigger control registers */ 48b19f0d31Sgarbled #define ELCR0 0x4d0 /* eisa irq 0-7 */ 49b19f0d31Sgarbled #define ELCR1 0x4d1 /* eisa irq 8-15 */ 50b19f0d31Sgarbled 51b19f0d31Sgarbled /* 52b19f0d31Sgarbled * Types provided to machine-independent EISA code. 53b19f0d31Sgarbled */ 54b19f0d31Sgarbled typedef void *eisa_chipset_tag_t; 55b19f0d31Sgarbled typedef int eisa_intr_handle_t; 56b19f0d31Sgarbled 57b19f0d31Sgarbled /* 58b19f0d31Sgarbled * Functions provided to machine-independent EISA code. 59b19f0d31Sgarbled */ 6005b09539Smatt void eisa_attach_hook(device_t, device_t, 61b19f0d31Sgarbled struct eisabus_attach_args *); 62b19f0d31Sgarbled int eisa_maxslots(eisa_chipset_tag_t); 63b19f0d31Sgarbled int eisa_intr_map(eisa_chipset_tag_t, u_int, 64b19f0d31Sgarbled eisa_intr_handle_t *); 65*e58a356cSchristos const char *eisa_intr_string(eisa_chipset_tag_t, eisa_intr_handle_t, 66*e58a356cSchristos char *, size_t); 67b19f0d31Sgarbled const struct evcnt *eisa_intr_evcnt(eisa_chipset_tag_t, eisa_intr_handle_t); 68b19f0d31Sgarbled void *eisa_intr_establish(eisa_chipset_tag_t, 69b19f0d31Sgarbled eisa_intr_handle_t, int, int, int (*)(void *), void *); 70b19f0d31Sgarbled void eisa_intr_disestablish(eisa_chipset_tag_t, void *); 71b19f0d31Sgarbled int eisa_mem_alloc(bus_space_tag_t, bus_size_t, bus_size_t, 72b19f0d31Sgarbled bus_addr_t, int, bus_addr_t *, bus_space_handle_t *); 73b19f0d31Sgarbled void eisa_mem_free(bus_space_tag_t, bus_space_handle_t, 74b19f0d31Sgarbled bus_size_t); 75b19f0d31Sgarbled 76b19f0d31Sgarbled int eisa_conf_read_mem(eisa_chipset_tag_t, int, int, int, 77b19f0d31Sgarbled struct eisa_cfg_mem *); 78b19f0d31Sgarbled int eisa_conf_read_irq(eisa_chipset_tag_t, int, int, int, 79b19f0d31Sgarbled struct eisa_cfg_irq *); 80b19f0d31Sgarbled int eisa_conf_read_dma(eisa_chipset_tag_t, int, int, int, 81b19f0d31Sgarbled struct eisa_cfg_dma *); 82b19f0d31Sgarbled int eisa_conf_read_io(eisa_chipset_tag_t, int, int, int, 83b19f0d31Sgarbled struct eisa_cfg_io *); 84