2 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 * Author: Alan Hourihane <alanh@tungstengraphics.com>
27 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
31 #include "../../state_trackers/xorg/xorg_winsys.h"
33 static void intel_xorg_identify(int flags
);
34 static Bool
intel_xorg_pci_probe(DriverPtr driver
,
36 struct pci_device
*device
,
39 static const struct pci_id_match intel_xorg_device_match
[] = {
40 {0x8086, PCI_MATCH_ANY
, PCI_MATCH_ANY
, PCI_MATCH_ANY
, 0, 0, 0},
44 static SymTabRec intel_xorg_chipsets
[] = {
45 {PCI_MATCH_ANY
, "Intel Graphics Device"},
49 static PciChipsets intel_xorg_pci_devices
[] = {
50 {PCI_MATCH_ANY
, PCI_MATCH_ANY
, NULL
},
54 static XF86ModuleVersionInfo intel_xorg_version
= {
60 0, 1, 0, /* major, minor, patch */
68 * Xorg driver exported structures
71 _X_EXPORT DriverRec modesetting
= {
76 xorg_tracker_available_options
,
80 intel_xorg_device_match
,
84 static MODULESETUPPROTO(intel_xorg_setup
);
86 _X_EXPORT XF86ModuleData modesettingModuleData
= {
93 * Xorg driver functions
97 intel_xorg_setup(pointer module
, pointer opts
, int *errmaj
, int *errmin
)
99 static Bool setupDone
= 0;
101 /* This module should be loaded only once, but check to be sure.
105 xf86AddDriver(&modesetting
, module
, HaveDriverFuncs
);
108 * The return value must be non-NULL on success even though there
109 * is no TearDownProc.
114 *errmaj
= LDR_ONCEONLY
;
120 intel_xorg_identify(int flags
)
122 xf86PrintChipsets("modesetting", "Driver for Modesetting Kernel Drivers",
123 intel_xorg_chipsets
);
127 intel_xorg_pci_probe(DriverPtr driver
,
128 int entity_num
, struct pci_device
*device
, intptr_t match_data
)
130 ScrnInfoPtr scrn
= NULL
;
131 EntityInfoPtr entity
;
133 scrn
= xf86ConfigPciEntity(scrn
, 0, entity_num
, intel_xorg_pci_devices
,
134 NULL
, NULL
, NULL
, NULL
, NULL
);
136 scrn
->driverVersion
= 1;
137 scrn
->driverName
= "i965";
138 scrn
->name
= "modesetting";
141 entity
= xf86GetEntityInfo(entity_num
);
143 /* Use all the functions from the xorg tracker */
144 xorg_tracker_set_functions(scrn
);