Home | History | Annotate | Line # | Download | only in dev
      1  1.5     matt /*	$NetBSD: mainbus.h,v 1.5 2011/06/22 18:06:32 matt Exp $	*/
      2  1.2  garbled 
      3  1.2  garbled /*
      4  1.2  garbled  * Copyright (c) 2002 The NetBSD Foundation, Inc.
      5  1.2  garbled  * All rights reserved.
      6  1.2  garbled  *
      7  1.2  garbled  * This code is derived from software contributed to The NetBSD Foundation
      8  1.2  garbled  * by Lennart Augustsson (lennart (at) augustsson.net) at Sandburst Corp.
      9  1.2  garbled  *
     10  1.2  garbled  * Redistribution and use in source and binary forms, with or without
     11  1.2  garbled  * modification, are permitted provided that the following conditions
     12  1.2  garbled  * are met:
     13  1.2  garbled  * 1. Redistributions of source code must retain the above copyright
     14  1.2  garbled  *    notice, this list of conditions and the following disclaimer.
     15  1.2  garbled  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.2  garbled  *    notice, this list of conditions and the following disclaimer in the
     17  1.2  garbled  *    documentation and/or other materials provided with the distribution.
     18  1.2  garbled  *
     19  1.2  garbled  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.2  garbled  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.2  garbled  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.2  garbled  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.2  garbled  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.2  garbled  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.2  garbled  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.2  garbled  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.2  garbled  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.2  garbled  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.2  garbled  * POSSIBILITY OF SUCH DAMAGE.
     30  1.2  garbled  */
     31  1.2  garbled 
     32  1.4     matt #ifndef _PMPPC_DEV_MAINBUS_H_
     33  1.4     matt #define _PMPPC_DEV_MAINBUS_H_
     34  1.4     matt 
     35  1.4     matt #include <dev/pci/pcivar.h>
     36  1.4     matt #include <machine/pci_machdep.h>
     37  1.4     matt 
     38  1.2  garbled struct mainbus_attach_args {
     39  1.2  garbled 	const char *mb_name;
     40  1.2  garbled 	u_long mb_addr;
     41  1.2  garbled 	int mb_irq;
     42  1.2  garbled 	bus_space_tag_t mb_bt;		/* Bus space tag */
     43  1.2  garbled 	bus_dma_tag_t mb_dmat;		/* DMA tag */
     44  1.2  garbled 
     45  1.2  garbled 	union {
     46  1.2  garbled 		struct {
     47  1.2  garbled 			u_int size;
     48  1.2  garbled 			u_int width;
     49  1.2  garbled 		} mb_flash;
     50  1.2  garbled 	} u;
     51  1.2  garbled };
     52  1.2  garbled 
     53  1.2  garbled extern struct powerpc_bus_space pmppc_mem_tag;
     54  1.2  garbled extern struct powerpc_bus_space pmppc_pci_io_tag;
     55  1.4     matt extern struct powerpc_bus_dma_tag pci_bus_dma_tag;
     56  1.4     matt 
     57  1.4     matt int pmppc_pci_intr_map(const struct pci_attach_args *, pci_intr_handle_t *);
     58  1.5     matt void pmppc_pci_conf_interrupt(void *, int, int, int, int, int *);
     59  1.4     matt void pmppc_pci_get_chipset_tag(pci_chipset_tag_t);
     60  1.4     matt 
     61  1.4     matt #endif /* _PMPPC_DEV_MAINBUS_H_ */
     62