xref: /OK3568_Linux_fs/external/xserver/hw/xfree86/common/xf86pciBus.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun 
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Copyright (c) 1999-2003 by The XFree86 Project, Inc.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * Permission is hereby granted, free of charge, to any person obtaining a
6*4882a593Smuzhiyun  * copy of this software and associated documentation files (the "Software"),
7*4882a593Smuzhiyun  * to deal in the Software without restriction, including without limitation
8*4882a593Smuzhiyun  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9*4882a593Smuzhiyun  * and/or sell copies of the Software, and to permit persons to whom the
10*4882a593Smuzhiyun  * Software is furnished to do so, subject to the following conditions:
11*4882a593Smuzhiyun  *
12*4882a593Smuzhiyun  * The above copyright notice and this permission notice shall be included in
13*4882a593Smuzhiyun  * all copies or substantial portions of the Software.
14*4882a593Smuzhiyun  *
15*4882a593Smuzhiyun  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16*4882a593Smuzhiyun  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18*4882a593Smuzhiyun  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19*4882a593Smuzhiyun  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20*4882a593Smuzhiyun  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21*4882a593Smuzhiyun  * OTHER DEALINGS IN THE SOFTWARE.
22*4882a593Smuzhiyun  *
23*4882a593Smuzhiyun  * Except as contained in this notice, the name of the copyright holder(s)
24*4882a593Smuzhiyun  * and author(s) shall not be used in advertising or otherwise to promote
25*4882a593Smuzhiyun  * the sale, use or other dealings in this Software without prior written
26*4882a593Smuzhiyun  * authorization from the copyright holder(s) and author(s).
27*4882a593Smuzhiyun  */
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun #ifdef HAVE_XORG_CONFIG_H
30*4882a593Smuzhiyun #include <xorg-config.h>
31*4882a593Smuzhiyun #endif
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun #ifndef _XF86_PCI_BUS_H
34*4882a593Smuzhiyun #define _XF86_PCI_BUS_H
35*4882a593Smuzhiyun 
36*4882a593Smuzhiyun #include "xf86MatchDrivers.h"
37*4882a593Smuzhiyun 
38*4882a593Smuzhiyun void xf86PciProbe(void);
39*4882a593Smuzhiyun Bool xf86PciAddMatchingDev(DriverPtr drvp);
40*4882a593Smuzhiyun Bool xf86PciProbeDev(DriverPtr drvp);
41*4882a593Smuzhiyun void xf86PciIsolateDevice(const char *argument);
42*4882a593Smuzhiyun void xf86PciMatchDriver(XF86MatchedDrivers *md);
43*4882a593Smuzhiyun Bool xf86PciConfigure(void *busData, struct pci_device *pDev);
44*4882a593Smuzhiyun void xf86PciConfigureNewDev(void *busData, struct pci_device *pVideo,
45*4882a593Smuzhiyun                             GDevRec * GDev, int *chipset);
46*4882a593Smuzhiyun 
47*4882a593Smuzhiyun #define MATCH_PCI_DEVICES(x, y) (((x)->domain == (y)->domain) &&        \
48*4882a593Smuzhiyun                                  ((x)->bus == (y)->bus) &&              \
49*4882a593Smuzhiyun                                  ((x)->func == (y)->func) &&            \
50*4882a593Smuzhiyun                                  ((x)->dev == (y)->dev))
51*4882a593Smuzhiyun 
52*4882a593Smuzhiyun void
53*4882a593Smuzhiyun xf86MatchDriverFromFiles(uint16_t match_vendor, uint16_t match_chip,
54*4882a593Smuzhiyun                          XF86MatchedDrivers *md);
55*4882a593Smuzhiyun void
56*4882a593Smuzhiyun xf86VideoPtrToDriverList(struct pci_device *dev, XF86MatchedDrivers *md);
57*4882a593Smuzhiyun #endif                          /* _XF86_PCI_BUS_H */
58