Home | History | Annotate | Line # | Download | only in marvell
gtpcivar.h revision 1.9
      1  1.9  kiyohara /*	$NetBSD: gtpcivar.h,v 1.9 2010/04/28 13:51:56 kiyohara Exp $	*/
      2  1.1      matt /*
      3  1.9  kiyohara  * Copyright (c) 2008 KIYOHARA Takashi
      4  1.1      matt  * All rights reserved.
      5  1.1      matt  *
      6  1.1      matt  * Redistribution and use in source and binary forms, with or without
      7  1.1      matt  * modification, are permitted provided that the following conditions
      8  1.1      matt  * are met:
      9  1.1      matt  * 1. Redistributions of source code must retain the above copyright
     10  1.1      matt  *    notice, this list of conditions and the following disclaimer.
     11  1.1      matt  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1      matt  *    notice, this list of conditions and the following disclaimer in the
     13  1.1      matt  *    documentation and/or other materials provided with the distribution.
     14  1.1      matt  *
     15  1.9  kiyohara  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16  1.9  kiyohara  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     17  1.9  kiyohara  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18  1.9  kiyohara  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     19  1.9  kiyohara  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     20  1.9  kiyohara  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21  1.9  kiyohara  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22  1.9  kiyohara  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     23  1.9  kiyohara  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     24  1.9  kiyohara  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25  1.1      matt  * POSSIBILITY OF SUCH DAMAGE.
     26  1.1      matt  */
     27  1.1      matt 
     28  1.9  kiyohara #ifndef	_GTPCIVAR_H_
     29  1.9  kiyohara #define	_GTPCIVAR_H_
     30  1.1      matt 
     31  1.9  kiyohara struct gtpci_softc {
     32  1.9  kiyohara 	device_t sc_dev;
     33  1.9  kiyohara 	int sc_model;
     34  1.9  kiyohara 	int sc_rev;
     35  1.9  kiyohara 	int sc_unit;
     36  1.9  kiyohara 
     37  1.9  kiyohara 	bus_space_tag_t sc_iot;
     38  1.9  kiyohara 	bus_space_handle_t sc_ioh;
     39  1.9  kiyohara 	pci_chipset_tag_t sc_pc;
     40  1.2      matt };
     41  1.1      matt 
     42  1.9  kiyohara #if NPCI > 0
     43  1.9  kiyohara void gtpci_attach_hook(device_t, device_t, struct pcibus_attach_args *);
     44  1.9  kiyohara int gtpci_bus_maxdevs(void *, int);
     45  1.9  kiyohara pcitag_t gtpci_make_tag(void *, int, int, int);
     46  1.9  kiyohara void gtpci_decompose_tag(void *, pcitag_t, int *, int *, int *);
     47  1.9  kiyohara pcireg_t gtpci_conf_read(void *, pcitag_t, int);
     48  1.9  kiyohara void gtpci_conf_write(void *, pcitag_t, int, pcireg_t);
     49  1.9  kiyohara int gtpci_conf_hook(pci_chipset_tag_t, int, int, int, pcireg_t);
     50  1.9  kiyohara int gtpci_intr_map(struct pci_attach_args *, pci_intr_handle_t *);
     51  1.9  kiyohara const char *gtpci_intr_string(void *, pci_intr_handle_t);
     52  1.9  kiyohara const struct evcnt *gtpci_intr_evcnt(void *, pci_intr_handle_t);
     53  1.9  kiyohara void *gtpci_intr_establish(void *, pci_intr_handle_t, int, int (*)(void *),
     54  1.9  kiyohara 			   void *);
     55  1.9  kiyohara void gtpci_intr_disestablish(void *, void *);
     56  1.9  kiyohara #endif
     57  1.2      matt 
     58  1.9  kiyohara #endif	/* _GTPCIVAR_H_ */
     59