2003-08-15 11:17:21 +04:00
|
|
|
/* $NetBSD: pcivar.h,v 1.59 2003/08/15 07:17:21 itojun Exp $ */
|
1994-10-27 07:14:23 +03:00
|
|
|
|
1994-08-09 04:47:46 +04:00
|
|
|
/*
|
1997-04-11 03:12:16 +04:00
|
|
|
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
|
1998-08-15 07:02:31 +04:00
|
|
|
* Copyright (c) 1994 Charles M. Hannum. All rights reserved.
|
1994-08-09 04:47:46 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1998-08-15 07:02:31 +04:00
|
|
|
* This product includes software developed by Charles M. Hannum.
|
1994-08-09 04:47:46 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1996-03-08 23:25:22 +03:00
|
|
|
#ifndef _DEV_PCI_PCIVAR_H_
|
|
|
|
#define _DEV_PCI_PCIVAR_H_
|
|
|
|
|
1994-08-09 04:47:46 +04:00
|
|
|
/*
|
|
|
|
* Definitions for PCI autoconfiguration.
|
|
|
|
*
|
|
|
|
* This file describes types and functions which are used for PCI
|
|
|
|
* configuration. Some of this information is machine-specific, and is
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
* provided by pci_machdep.h.
|
1994-08-09 04:47:46 +04:00
|
|
|
*/
|
|
|
|
|
2001-09-14 01:49:40 +04:00
|
|
|
#include <sys/device.h>
|
1996-03-08 23:25:22 +03:00
|
|
|
#include <machine/bus.h>
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
#include <dev/pci/pcireg.h>
|
1996-03-08 23:25:22 +03:00
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
/*
|
|
|
|
* Structures and definitions needed by the machine-dependent header.
|
|
|
|
*/
|
|
|
|
typedef u_int32_t pcireg_t; /* configuration space register XXX */
|
|
|
|
struct pcibus_attach_args;
|
2002-05-16 05:01:28 +04:00
|
|
|
struct pci_softc;
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
|
2001-09-14 01:49:40 +04:00
|
|
|
#ifdef _KERNEL
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
/*
|
|
|
|
* Machine-dependent definitions.
|
|
|
|
*/
|
1999-03-19 06:37:52 +03:00
|
|
|
#include <machine/pci_machdep.h>
|
1995-01-27 08:44:29 +03:00
|
|
|
|
1996-02-28 04:44:41 +03:00
|
|
|
/*
|
|
|
|
* PCI bus attach arguments.
|
|
|
|
*/
|
|
|
|
struct pcibus_attach_args {
|
1997-04-11 03:12:16 +04:00
|
|
|
char *pba_busname; /* XXX should be common */
|
1996-10-22 02:56:24 +04:00
|
|
|
bus_space_tag_t pba_iot; /* pci i/o space tag */
|
|
|
|
bus_space_tag_t pba_memt; /* pci mem space tag */
|
1997-06-07 03:43:45 +04:00
|
|
|
bus_dma_tag_t pba_dmat; /* DMA tag */
|
2003-06-16 03:08:53 +04:00
|
|
|
bus_dma_tag_t pba_dmat64; /* DMA tag */
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pci_chipset_tag_t pba_pc;
|
1997-04-11 03:12:16 +04:00
|
|
|
int pba_flags; /* flags; see below */
|
1996-02-28 04:44:41 +03:00
|
|
|
|
|
|
|
int pba_bus; /* PCI bus number */
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
|
2002-05-16 05:01:28 +04:00
|
|
|
/*
|
|
|
|
* Pointer to the pcitag of our parent bridge. If there is no
|
|
|
|
* parent bridge, then we assume we are a root bus.
|
|
|
|
*/
|
|
|
|
pcitag_t *pba_bridgetag;
|
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
/*
|
|
|
|
* Interrupt swizzling information. These fields
|
|
|
|
* are only used by secondary busses.
|
|
|
|
*/
|
|
|
|
u_int pba_intrswiz; /* how to swizzle pins */
|
|
|
|
pcitag_t pba_intrtag; /* intr. appears to come from here */
|
1996-02-28 04:44:41 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCI device attach arguments.
|
|
|
|
*/
|
1994-08-09 04:47:46 +04:00
|
|
|
struct pci_attach_args {
|
1996-10-22 02:56:24 +04:00
|
|
|
bus_space_tag_t pa_iot; /* pci i/o space tag */
|
|
|
|
bus_space_tag_t pa_memt; /* pci mem space tag */
|
1997-06-07 03:43:45 +04:00
|
|
|
bus_dma_tag_t pa_dmat; /* DMA tag */
|
2003-06-16 03:08:53 +04:00
|
|
|
bus_dma_tag_t pa_dmat64; /* DMA tag */
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pci_chipset_tag_t pa_pc;
|
1997-04-11 03:12:16 +04:00
|
|
|
int pa_flags; /* flags; see below */
|
1996-03-08 23:25:22 +03:00
|
|
|
|
2001-05-04 19:13:17 +04:00
|
|
|
u_int pa_bus;
|
1996-03-28 05:16:23 +03:00
|
|
|
u_int pa_device;
|
|
|
|
u_int pa_function;
|
1996-02-28 04:44:41 +03:00
|
|
|
pcitag_t pa_tag;
|
|
|
|
pcireg_t pa_id, pa_class;
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Interrupt information.
|
|
|
|
*
|
|
|
|
* "Intrline" is used on systems whose firmware puts
|
|
|
|
* the right routing data into the line register in
|
|
|
|
* configuration space. The rest are used on systems
|
|
|
|
* that do not.
|
|
|
|
*/
|
|
|
|
u_int pa_intrswiz; /* how to swizzle pins if ppb */
|
|
|
|
pcitag_t pa_intrtag; /* intr. appears to come from here */
|
|
|
|
pci_intr_pin_t pa_intrpin; /* intr. appears on this pin */
|
|
|
|
pci_intr_line_t pa_intrline; /* intr. routing information */
|
2002-05-19 01:40:41 +04:00
|
|
|
pci_intr_pin_t pa_rawintrpin; /* unswizzled pin */
|
1994-08-09 04:47:46 +04:00
|
|
|
};
|
|
|
|
|
1997-04-11 03:12:16 +04:00
|
|
|
/*
|
|
|
|
* Flags given in the bus and device attachment args.
|
|
|
|
*/
|
|
|
|
#define PCI_FLAGS_IO_ENABLED 0x01 /* I/O space is enabled */
|
|
|
|
#define PCI_FLAGS_MEM_ENABLED 0x02 /* memory space is enabled */
|
1999-10-01 00:30:06 +04:00
|
|
|
#define PCI_FLAGS_MRL_OKAY 0x04 /* Memory Read Line okay */
|
|
|
|
#define PCI_FLAGS_MRM_OKAY 0x08 /* Memory Read Multiple okay */
|
|
|
|
#define PCI_FLAGS_MWI_OKAY 0x10 /* Memory Write and Invalidate
|
|
|
|
okay */
|
1997-04-11 03:12:16 +04:00
|
|
|
|
1998-05-31 10:07:59 +04:00
|
|
|
/*
|
|
|
|
* PCI device 'quirks'.
|
|
|
|
*
|
|
|
|
* In general strange behaviour which can be handled by a driver (e.g.
|
|
|
|
* a bridge's inability to pass a type of access correctly) should be.
|
|
|
|
* The quirks table should only contain information which impacts
|
|
|
|
* the operation of the MI PCI code and which can't be pushed lower
|
|
|
|
* (e.g. because it's unacceptable to require a driver to be present
|
|
|
|
* for the information to be known).
|
|
|
|
*/
|
|
|
|
struct pci_quirkdata {
|
|
|
|
pci_vendor_id_t vendor; /* Vendor ID */
|
|
|
|
pci_product_id_t product; /* Product ID */
|
|
|
|
int quirks; /* quirks; see below */
|
|
|
|
};
|
|
|
|
#define PCI_QUIRK_MULTIFUNCTION 1
|
2003-08-15 11:17:21 +04:00
|
|
|
#define PCI_QUIRK_MONOFUNCTION 2
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC(n) (4 << n)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC0 PCI_QUIRK_SKIP_FUNC(0)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC1 PCI_QUIRK_SKIP_FUNC(1)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC2 PCI_QUIRK_SKIP_FUNC(2)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC3 PCI_QUIRK_SKIP_FUNC(3)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC4 PCI_QUIRK_SKIP_FUNC(4)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC5 PCI_QUIRK_SKIP_FUNC(5)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC6 PCI_QUIRK_SKIP_FUNC(6)
|
|
|
|
#define PCI_QUIRK_SKIP_FUNC7 PCI_QUIRK_SKIP_FUNC(7)
|
1998-05-31 10:07:59 +04:00
|
|
|
|
2001-09-14 01:49:40 +04:00
|
|
|
struct pci_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
bus_space_tag_t sc_iot, sc_memt;
|
2002-05-19 01:40:41 +04:00
|
|
|
bus_dma_tag_t sc_dmat;
|
2003-06-16 03:08:53 +04:00
|
|
|
bus_dma_tag_t sc_dmat64;
|
2002-05-19 01:40:41 +04:00
|
|
|
pci_chipset_tag_t sc_pc;
|
2001-09-14 01:49:40 +04:00
|
|
|
int sc_bus, sc_maxndevs;
|
2002-05-16 05:01:28 +04:00
|
|
|
pcitag_t *sc_bridgetag;
|
2001-09-14 01:49:40 +04:00
|
|
|
u_int sc_intrswiz;
|
|
|
|
pcitag_t sc_intrtag;
|
|
|
|
int sc_flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct cfdriver pci_cd;
|
1997-07-17 05:01:06 +04:00
|
|
|
|
1996-03-14 05:35:32 +03:00
|
|
|
/*
|
|
|
|
* Locators devices that attach to 'pcibus', as specified to config.
|
|
|
|
*/
|
1997-07-17 05:01:06 +04:00
|
|
|
#define pcibuscf_bus cf_loc[PCIBUSCF_BUS]
|
|
|
|
#define PCIBUS_UNK_BUS PCIBUSCF_BUS_DEFAULT /* wildcarded 'bus' */
|
1996-03-14 05:35:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Locators for PCI devices, as specified to config.
|
|
|
|
*/
|
1997-07-17 05:01:06 +04:00
|
|
|
#define pcicf_dev cf_loc[PCICF_DEV]
|
|
|
|
#define PCI_UNK_DEV PCICF_DEV_DEFAULT /* wildcarded 'dev' */
|
1996-03-14 05:35:32 +03:00
|
|
|
|
1997-07-17 05:01:06 +04:00
|
|
|
#define pcicf_function cf_loc[PCICF_FUNCTION]
|
|
|
|
#define PCI_UNK_FUNCTION PCICF_FUNCTION_DEFAULT /* wildcarded 'function' */
|
1996-03-14 05:35:32 +03:00
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
/*
|
|
|
|
* Configuration space access and utility functions. (Note that most,
|
|
|
|
* e.g. make_tag, conf_read, conf_write are declared by pci_machdep.h.)
|
|
|
|
*/
|
2002-05-30 16:06:43 +04:00
|
|
|
int pci_mapreg_probe __P((pci_chipset_tag_t, pcitag_t, int, pcireg_t *));
|
2000-05-10 20:58:42 +04:00
|
|
|
pcireg_t pci_mapreg_type __P((pci_chipset_tag_t, pcitag_t, int));
|
1997-10-07 01:01:23 +04:00
|
|
|
int pci_mapreg_info __P((pci_chipset_tag_t, pcitag_t, int, pcireg_t,
|
|
|
|
bus_addr_t *, bus_size_t *, int *));
|
1997-04-14 00:14:20 +04:00
|
|
|
int pci_mapreg_map __P((struct pci_attach_args *, int, pcireg_t, int,
|
1997-04-13 23:46:01 +04:00
|
|
|
bus_space_tag_t *, bus_space_handle_t *, bus_addr_t *,
|
1996-10-22 02:56:24 +04:00
|
|
|
bus_size_t *));
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
|
1998-11-07 19:47:22 +03:00
|
|
|
int pci_get_capability __P((pci_chipset_tag_t, pcitag_t, int,
|
|
|
|
int *, pcireg_t *));
|
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
/*
|
|
|
|
* Helper functions for autoconfiguration.
|
|
|
|
*/
|
2002-05-15 22:13:00 +04:00
|
|
|
int pci_enumerate_bus_generic(struct pci_softc *,
|
|
|
|
int (*)(struct pci_attach_args *), struct pci_attach_args *);
|
|
|
|
int pci_probe_device(struct pci_softc *, pcitag_t tag,
|
|
|
|
int (*)(struct pci_attach_args *), struct pci_attach_args *);
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
void pci_devinfo __P((pcireg_t, pcireg_t, int, char *));
|
1998-05-18 21:25:17 +04:00
|
|
|
void pci_conf_print __P((pci_chipset_tag_t, pcitag_t,
|
|
|
|
void (*)(pci_chipset_tag_t, pcitag_t, const pcireg_t *)));
|
1998-05-31 10:07:59 +04:00
|
|
|
const struct pci_quirkdata *
|
|
|
|
pci_lookup_quirkdata __P((pci_vendor_id_t, pci_product_id_t));
|
1996-03-08 23:25:22 +03:00
|
|
|
|
2001-09-14 01:49:40 +04:00
|
|
|
/*
|
|
|
|
* Helper functions for user access to the PCI bus.
|
|
|
|
*/
|
|
|
|
struct proc;
|
|
|
|
int pci_devioctl __P((pci_chipset_tag_t, pcitag_t, u_long, caddr_t,
|
2003-06-30 02:28:00 +04:00
|
|
|
int flag, struct proc *));
|
2001-09-14 01:49:40 +04:00
|
|
|
|
2002-06-18 17:18:37 +04:00
|
|
|
/*
|
|
|
|
* Power Management (PCI 2.2)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PCI_PWR_D0 0
|
|
|
|
#define PCI_PWR_D1 1
|
|
|
|
#define PCI_PWR_D2 2
|
|
|
|
#define PCI_PWR_D3 3
|
|
|
|
int pci_set_powerstate __P((pci_chipset_tag_t, pcitag_t, int));
|
|
|
|
int pci_get_powerstate __P((pci_chipset_tag_t, pcitag_t));
|
|
|
|
|
2003-03-26 00:56:20 +03:00
|
|
|
/*
|
|
|
|
* Vital Product Data (PCI 2.2)
|
|
|
|
*/
|
|
|
|
int pci_vpd_read __P((pci_chipset_tag_t, pcitag_t, int, int, pcireg_t *));
|
|
|
|
int pci_vpd_write __P((pci_chipset_tag_t, pcitag_t, int, int, pcireg_t *));
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
/*
|
|
|
|
* Misc.
|
|
|
|
*/
|
|
|
|
char *pci_findvendor __P((pcireg_t));
|
2001-09-10 14:04:49 +04:00
|
|
|
int pci_find_device(struct pci_attach_args *pa,
|
|
|
|
int (*match)(struct pci_attach_args *));
|
2003-06-16 03:08:53 +04:00
|
|
|
int pci_dma64_available(struct pci_attach_args *);
|
|
|
|
|
2001-09-10 14:04:49 +04:00
|
|
|
|
2001-09-14 01:49:40 +04:00
|
|
|
#endif /* _KERNEL */
|
1998-07-12 23:51:55 +04:00
|
|
|
|
1996-03-08 23:25:22 +03:00
|
|
|
#endif /* _DEV_PCI_PCIVAR_H_ */
|