i915_drv.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630
  1. /* i915_drv.c -- i830,i845,i855,i865,i915 driver -*- linux-c -*-
  2. */
  3. /*
  4. *
  5. * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
  6. * All Rights Reserved.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a
  9. * copy of this software and associated documentation files (the
  10. * "Software"), to deal in the Software without restriction, including
  11. * without limitation the rights to use, copy, modify, merge, publish,
  12. * distribute, sub license, and/or sell copies of the Software, and to
  13. * permit persons to whom the Software is furnished to do so, subject to
  14. * the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the
  17. * next paragraph) shall be included in all copies or substantial portions
  18. * of the Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  21. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
  23. * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
  24. * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  25. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  26. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  27. *
  28. */
  29. #include <linux/device.h>
  30. #include "drmP.h"
  31. #include "drm.h"
  32. #include "i915_drm.h"
  33. #include "i915_drv.h"
  34. #include <linux/console.h>
  35. #include "drm_crtc_helper.h"
  36. static int i915_modeset = -1;
  37. module_param_named(modeset, i915_modeset, int, 0400);
  38. unsigned int i915_fbpercrtc = 0;
  39. module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
  40. unsigned int i915_powersave = 1;
  41. module_param_named(powersave, i915_powersave, int, 0400);
  42. unsigned int i915_lvds_downclock = 0;
  43. module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
  44. static struct drm_driver driver;
  45. extern int intel_agp_enabled;
  46. #define INTEL_VGA_DEVICE(id, info) { \
  47. .class = PCI_CLASS_DISPLAY_VGA << 8, \
  48. .class_mask = 0xffff00, \
  49. .vendor = 0x8086, \
  50. .device = id, \
  51. .subvendor = PCI_ANY_ID, \
  52. .subdevice = PCI_ANY_ID, \
  53. .driver_data = (unsigned long) info }
  54. static const struct intel_device_info intel_i830_info = {
  55. .gen = 2, .is_i8xx = 1, .is_mobile = 1, .cursor_needs_physical = 1,
  56. .has_overlay = 1, .overlay_needs_physical = 1,
  57. };
  58. static const struct intel_device_info intel_845g_info = {
  59. .gen = 2, .is_i8xx = 1,
  60. .has_overlay = 1, .overlay_needs_physical = 1,
  61. };
  62. static const struct intel_device_info intel_i85x_info = {
  63. .gen = 2, .is_i8xx = 1, .is_i85x = 1, .is_mobile = 1,
  64. .cursor_needs_physical = 1,
  65. .has_overlay = 1, .overlay_needs_physical = 1,
  66. };
  67. static const struct intel_device_info intel_i865g_info = {
  68. .gen = 2, .is_i8xx = 1,
  69. .has_overlay = 1, .overlay_needs_physical = 1,
  70. };
  71. static const struct intel_device_info intel_i915g_info = {
  72. .gen = 3, .is_i915g = 1, .is_i9xx = 1, .cursor_needs_physical = 1,
  73. .has_overlay = 1, .overlay_needs_physical = 1,
  74. };
  75. static const struct intel_device_info intel_i915gm_info = {
  76. .gen = 3, .is_i9xx = 1, .is_mobile = 1,
  77. .cursor_needs_physical = 1,
  78. .has_overlay = 1, .overlay_needs_physical = 1,
  79. };
  80. static const struct intel_device_info intel_i945g_info = {
  81. .gen = 3, .is_i9xx = 1, .has_hotplug = 1, .cursor_needs_physical = 1,
  82. .has_overlay = 1, .overlay_needs_physical = 1,
  83. };
  84. static const struct intel_device_info intel_i945gm_info = {
  85. .gen = 3, .is_i945gm = 1, .is_i9xx = 1, .is_mobile = 1,
  86. .has_hotplug = 1, .cursor_needs_physical = 1,
  87. .has_overlay = 1, .overlay_needs_physical = 1,
  88. };
  89. static const struct intel_device_info intel_i965g_info = {
  90. .gen = 4, .is_broadwater = 1, .is_i965g = 1, .is_i9xx = 1,
  91. .has_hotplug = 1,
  92. .has_overlay = 1,
  93. };
  94. static const struct intel_device_info intel_i965gm_info = {
  95. .gen = 4, .is_crestline = 1, .is_i965g = 1, .is_i965gm = 1, .is_i9xx = 1,
  96. .is_mobile = 1, .has_fbc = 1, .has_rc6 = 1, .has_hotplug = 1,
  97. .has_overlay = 1,
  98. };
  99. static const struct intel_device_info intel_g33_info = {
  100. .gen = 3, .is_g33 = 1, .is_i9xx = 1,
  101. .need_gfx_hws = 1, .has_hotplug = 1,
  102. .has_overlay = 1,
  103. };
  104. static const struct intel_device_info intel_g45_info = {
  105. .gen = 4, .is_i965g = 1, .is_g4x = 1, .is_i9xx = 1, .need_gfx_hws = 1,
  106. .has_pipe_cxsr = 1, .has_hotplug = 1,
  107. };
  108. static const struct intel_device_info intel_gm45_info = {
  109. .gen = 4, .is_i965g = 1, .is_g4x = 1, .is_i9xx = 1,
  110. .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1, .has_rc6 = 1,
  111. .has_pipe_cxsr = 1, .has_hotplug = 1,
  112. };
  113. static const struct intel_device_info intel_pineview_info = {
  114. .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .is_i9xx = 1,
  115. .need_gfx_hws = 1, .has_hotplug = 1,
  116. .has_overlay = 1,
  117. };
  118. static const struct intel_device_info intel_ironlake_d_info = {
  119. .gen = 5, .is_ironlake = 1, .is_i965g = 1, .is_i9xx = 1,
  120. .need_gfx_hws = 1, .has_pipe_cxsr = 1, .has_hotplug = 1,
  121. };
  122. static const struct intel_device_info intel_ironlake_m_info = {
  123. .gen = 5, .is_ironlake = 1, .is_mobile = 1, .is_i965g = 1, .is_i9xx = 1,
  124. .need_gfx_hws = 1, .has_fbc = 1, .has_rc6 = 1, .has_hotplug = 1,
  125. };
  126. static const struct intel_device_info intel_sandybridge_d_info = {
  127. .gen = 6, .is_i965g = 1, .is_i9xx = 1,
  128. .need_gfx_hws = 1, .has_hotplug = 1,
  129. };
  130. static const struct intel_device_info intel_sandybridge_m_info = {
  131. .gen = 6, .is_i965g = 1, .is_mobile = 1, .is_i9xx = 1,
  132. .need_gfx_hws = 1, .has_hotplug = 1,
  133. };
  134. static const struct pci_device_id pciidlist[] = { /* aka */
  135. INTEL_VGA_DEVICE(0x3577, &intel_i830_info), /* I830_M */
  136. INTEL_VGA_DEVICE(0x2562, &intel_845g_info), /* 845_G */
  137. INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), /* I855_GM */
  138. INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),
  139. INTEL_VGA_DEVICE(0x2572, &intel_i865g_info), /* I865_G */
  140. INTEL_VGA_DEVICE(0x2582, &intel_i915g_info), /* I915_G */
  141. INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), /* E7221_G */
  142. INTEL_VGA_DEVICE(0x2592, &intel_i915gm_info), /* I915_GM */
  143. INTEL_VGA_DEVICE(0x2772, &intel_i945g_info), /* I945_G */
  144. INTEL_VGA_DEVICE(0x27a2, &intel_i945gm_info), /* I945_GM */
  145. INTEL_VGA_DEVICE(0x27ae, &intel_i945gm_info), /* I945_GME */
  146. INTEL_VGA_DEVICE(0x2972, &intel_i965g_info), /* I946_GZ */
  147. INTEL_VGA_DEVICE(0x2982, &intel_i965g_info), /* G35_G */
  148. INTEL_VGA_DEVICE(0x2992, &intel_i965g_info), /* I965_Q */
  149. INTEL_VGA_DEVICE(0x29a2, &intel_i965g_info), /* I965_G */
  150. INTEL_VGA_DEVICE(0x29b2, &intel_g33_info), /* Q35_G */
  151. INTEL_VGA_DEVICE(0x29c2, &intel_g33_info), /* G33_G */
  152. INTEL_VGA_DEVICE(0x29d2, &intel_g33_info), /* Q33_G */
  153. INTEL_VGA_DEVICE(0x2a02, &intel_i965gm_info), /* I965_GM */
  154. INTEL_VGA_DEVICE(0x2a12, &intel_i965gm_info), /* I965_GME */
  155. INTEL_VGA_DEVICE(0x2a42, &intel_gm45_info), /* GM45_G */
  156. INTEL_VGA_DEVICE(0x2e02, &intel_g45_info), /* IGD_E_G */
  157. INTEL_VGA_DEVICE(0x2e12, &intel_g45_info), /* Q45_G */
  158. INTEL_VGA_DEVICE(0x2e22, &intel_g45_info), /* G45_G */
  159. INTEL_VGA_DEVICE(0x2e32, &intel_g45_info), /* G41_G */
  160. INTEL_VGA_DEVICE(0x2e42, &intel_g45_info), /* B43_G */
  161. INTEL_VGA_DEVICE(0xa001, &intel_pineview_info),
  162. INTEL_VGA_DEVICE(0xa011, &intel_pineview_info),
  163. INTEL_VGA_DEVICE(0x0042, &intel_ironlake_d_info),
  164. INTEL_VGA_DEVICE(0x0046, &intel_ironlake_m_info),
  165. INTEL_VGA_DEVICE(0x0102, &intel_sandybridge_d_info),
  166. INTEL_VGA_DEVICE(0x0112, &intel_sandybridge_d_info),
  167. INTEL_VGA_DEVICE(0x0122, &intel_sandybridge_d_info),
  168. INTEL_VGA_DEVICE(0x0106, &intel_sandybridge_m_info),
  169. INTEL_VGA_DEVICE(0x0116, &intel_sandybridge_m_info),
  170. INTEL_VGA_DEVICE(0x0126, &intel_sandybridge_m_info),
  171. INTEL_VGA_DEVICE(0x010A, &intel_sandybridge_d_info),
  172. {0, 0, 0}
  173. };
  174. #if defined(CONFIG_DRM_I915_KMS)
  175. MODULE_DEVICE_TABLE(pci, pciidlist);
  176. #endif
  177. #define INTEL_PCH_DEVICE_ID_MASK 0xff00
  178. #define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00
  179. void intel_detect_pch (struct drm_device *dev)
  180. {
  181. struct drm_i915_private *dev_priv = dev->dev_private;
  182. struct pci_dev *pch;
  183. /*
  184. * The reason to probe ISA bridge instead of Dev31:Fun0 is to
  185. * make graphics device passthrough work easy for VMM, that only
  186. * need to expose ISA bridge to let driver know the real hardware
  187. * underneath. This is a requirement from virtualization team.
  188. */
  189. pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
  190. if (pch) {
  191. if (pch->vendor == PCI_VENDOR_ID_INTEL) {
  192. int id;
  193. id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
  194. if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
  195. dev_priv->pch_type = PCH_CPT;
  196. DRM_DEBUG_KMS("Found CougarPoint PCH\n");
  197. }
  198. }
  199. pci_dev_put(pch);
  200. }
  201. }
  202. static int i915_drm_freeze(struct drm_device *dev)
  203. {
  204. struct drm_i915_private *dev_priv = dev->dev_private;
  205. pci_save_state(dev->pdev);
  206. /* If KMS is active, we do the leavevt stuff here */
  207. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  208. int error = i915_gem_idle(dev);
  209. if (error) {
  210. dev_err(&dev->pdev->dev,
  211. "GEM idle failed, resume might fail\n");
  212. return error;
  213. }
  214. drm_irq_uninstall(dev);
  215. }
  216. i915_save_state(dev);
  217. intel_opregion_fini(dev);
  218. /* Modeset on resume, not lid events */
  219. dev_priv->modeset_on_lid = 0;
  220. return 0;
  221. }
  222. int i915_suspend(struct drm_device *dev, pm_message_t state)
  223. {
  224. int error;
  225. if (!dev || !dev->dev_private) {
  226. DRM_ERROR("dev: %p\n", dev);
  227. DRM_ERROR("DRM not initialized, aborting suspend.\n");
  228. return -ENODEV;
  229. }
  230. if (state.event == PM_EVENT_PRETHAW)
  231. return 0;
  232. error = i915_drm_freeze(dev);
  233. if (error)
  234. return error;
  235. if (state.event == PM_EVENT_SUSPEND) {
  236. /* Shut down the device */
  237. pci_disable_device(dev->pdev);
  238. pci_set_power_state(dev->pdev, PCI_D3hot);
  239. }
  240. return 0;
  241. }
  242. static int i915_drm_thaw(struct drm_device *dev)
  243. {
  244. struct drm_i915_private *dev_priv = dev->dev_private;
  245. int error = 0;
  246. i915_restore_state(dev);
  247. intel_opregion_setup(dev);
  248. /* KMS EnterVT equivalent */
  249. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  250. mutex_lock(&dev->struct_mutex);
  251. dev_priv->mm.suspended = 0;
  252. error = i915_gem_init_ringbuffer(dev);
  253. mutex_unlock(&dev->struct_mutex);
  254. drm_irq_install(dev);
  255. /* Resume the modeset for every activated CRTC */
  256. drm_helper_resume_force_mode(dev);
  257. }
  258. intel_opregion_init(dev);
  259. dev_priv->modeset_on_lid = 0;
  260. return error;
  261. }
  262. int i915_resume(struct drm_device *dev)
  263. {
  264. if (pci_enable_device(dev->pdev))
  265. return -EIO;
  266. pci_set_master(dev->pdev);
  267. return i915_drm_thaw(dev);
  268. }
  269. /**
  270. * i965_reset - reset chip after a hang
  271. * @dev: drm device to reset
  272. * @flags: reset domains
  273. *
  274. * Reset the chip. Useful if a hang is detected. Returns zero on successful
  275. * reset or otherwise an error code.
  276. *
  277. * Procedure is fairly simple:
  278. * - reset the chip using the reset reg
  279. * - re-init context state
  280. * - re-init hardware status page
  281. * - re-init ring buffer
  282. * - re-init interrupt state
  283. * - re-init display
  284. */
  285. int i965_reset(struct drm_device *dev, u8 flags)
  286. {
  287. drm_i915_private_t *dev_priv = dev->dev_private;
  288. unsigned long timeout;
  289. u8 gdrst;
  290. /*
  291. * We really should only reset the display subsystem if we actually
  292. * need to
  293. */
  294. bool need_display = true;
  295. mutex_lock(&dev->struct_mutex);
  296. /*
  297. * Clear request list
  298. */
  299. i915_gem_retire_requests(dev);
  300. if (need_display)
  301. i915_save_display(dev);
  302. if (IS_I965G(dev) || IS_G4X(dev)) {
  303. /*
  304. * Set the domains we want to reset, then the reset bit (bit 0).
  305. * Clear the reset bit after a while and wait for hardware status
  306. * bit (bit 1) to be set
  307. */
  308. pci_read_config_byte(dev->pdev, GDRST, &gdrst);
  309. pci_write_config_byte(dev->pdev, GDRST, gdrst | flags | ((flags == GDRST_FULL) ? 0x1 : 0x0));
  310. udelay(50);
  311. pci_write_config_byte(dev->pdev, GDRST, gdrst & 0xfe);
  312. /* ...we don't want to loop forever though, 500ms should be plenty */
  313. timeout = jiffies + msecs_to_jiffies(500);
  314. do {
  315. udelay(100);
  316. pci_read_config_byte(dev->pdev, GDRST, &gdrst);
  317. } while ((gdrst & 0x1) && time_after(timeout, jiffies));
  318. if (gdrst & 0x1) {
  319. WARN(true, "i915: Failed to reset chip\n");
  320. mutex_unlock(&dev->struct_mutex);
  321. return -EIO;
  322. }
  323. } else {
  324. DRM_ERROR("Error occurred. Don't know how to reset this chip.\n");
  325. mutex_unlock(&dev->struct_mutex);
  326. return -ENODEV;
  327. }
  328. /* Ok, now get things going again... */
  329. /*
  330. * Everything depends on having the GTT running, so we need to start
  331. * there. Fortunately we don't need to do this unless we reset the
  332. * chip at a PCI level.
  333. *
  334. * Next we need to restore the context, but we don't use those
  335. * yet either...
  336. *
  337. * Ring buffer needs to be re-initialized in the KMS case, or if X
  338. * was running at the time of the reset (i.e. we weren't VT
  339. * switched away).
  340. */
  341. if (drm_core_check_feature(dev, DRIVER_MODESET) ||
  342. !dev_priv->mm.suspended) {
  343. struct intel_ring_buffer *ring = &dev_priv->render_ring;
  344. dev_priv->mm.suspended = 0;
  345. ring->init(dev, ring);
  346. mutex_unlock(&dev->struct_mutex);
  347. drm_irq_uninstall(dev);
  348. drm_irq_install(dev);
  349. mutex_lock(&dev->struct_mutex);
  350. }
  351. /*
  352. * Display needs restore too...
  353. */
  354. if (need_display)
  355. i915_restore_display(dev);
  356. mutex_unlock(&dev->struct_mutex);
  357. return 0;
  358. }
  359. static int __devinit
  360. i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  361. {
  362. return drm_get_pci_dev(pdev, ent, &driver);
  363. }
  364. static void
  365. i915_pci_remove(struct pci_dev *pdev)
  366. {
  367. struct drm_device *dev = pci_get_drvdata(pdev);
  368. drm_put_dev(dev);
  369. }
  370. static int i915_pm_suspend(struct device *dev)
  371. {
  372. struct pci_dev *pdev = to_pci_dev(dev);
  373. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  374. int error;
  375. if (!drm_dev || !drm_dev->dev_private) {
  376. dev_err(dev, "DRM not initialized, aborting suspend.\n");
  377. return -ENODEV;
  378. }
  379. error = i915_drm_freeze(drm_dev);
  380. if (error)
  381. return error;
  382. pci_disable_device(pdev);
  383. pci_set_power_state(pdev, PCI_D3hot);
  384. return 0;
  385. }
  386. static int i915_pm_resume(struct device *dev)
  387. {
  388. struct pci_dev *pdev = to_pci_dev(dev);
  389. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  390. return i915_resume(drm_dev);
  391. }
  392. static int i915_pm_freeze(struct device *dev)
  393. {
  394. struct pci_dev *pdev = to_pci_dev(dev);
  395. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  396. if (!drm_dev || !drm_dev->dev_private) {
  397. dev_err(dev, "DRM not initialized, aborting suspend.\n");
  398. return -ENODEV;
  399. }
  400. return i915_drm_freeze(drm_dev);
  401. }
  402. static int i915_pm_thaw(struct device *dev)
  403. {
  404. struct pci_dev *pdev = to_pci_dev(dev);
  405. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  406. return i915_drm_thaw(drm_dev);
  407. }
  408. static int i915_pm_poweroff(struct device *dev)
  409. {
  410. struct pci_dev *pdev = to_pci_dev(dev);
  411. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  412. return i915_drm_freeze(drm_dev);
  413. }
  414. static const struct dev_pm_ops i915_pm_ops = {
  415. .suspend = i915_pm_suspend,
  416. .resume = i915_pm_resume,
  417. .freeze = i915_pm_freeze,
  418. .thaw = i915_pm_thaw,
  419. .poweroff = i915_pm_poweroff,
  420. .restore = i915_pm_resume,
  421. };
  422. static struct vm_operations_struct i915_gem_vm_ops = {
  423. .fault = i915_gem_fault,
  424. .open = drm_gem_vm_open,
  425. .close = drm_gem_vm_close,
  426. };
  427. static struct drm_driver driver = {
  428. /* don't use mtrr's here, the Xserver or user space app should
  429. * deal with them for intel hardware.
  430. */
  431. .driver_features =
  432. DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR |*/
  433. DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM,
  434. .load = i915_driver_load,
  435. .unload = i915_driver_unload,
  436. .open = i915_driver_open,
  437. .lastclose = i915_driver_lastclose,
  438. .preclose = i915_driver_preclose,
  439. .postclose = i915_driver_postclose,
  440. /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
  441. .suspend = i915_suspend,
  442. .resume = i915_resume,
  443. .device_is_agp = i915_driver_device_is_agp,
  444. .enable_vblank = i915_enable_vblank,
  445. .disable_vblank = i915_disable_vblank,
  446. .irq_preinstall = i915_driver_irq_preinstall,
  447. .irq_postinstall = i915_driver_irq_postinstall,
  448. .irq_uninstall = i915_driver_irq_uninstall,
  449. .irq_handler = i915_driver_irq_handler,
  450. .reclaim_buffers = drm_core_reclaim_buffers,
  451. .master_create = i915_master_create,
  452. .master_destroy = i915_master_destroy,
  453. #if defined(CONFIG_DEBUG_FS)
  454. .debugfs_init = i915_debugfs_init,
  455. .debugfs_cleanup = i915_debugfs_cleanup,
  456. #endif
  457. .gem_init_object = i915_gem_init_object,
  458. .gem_free_object = i915_gem_free_object,
  459. .gem_vm_ops = &i915_gem_vm_ops,
  460. .ioctls = i915_ioctls,
  461. .fops = {
  462. .owner = THIS_MODULE,
  463. .open = drm_open,
  464. .release = drm_release,
  465. .unlocked_ioctl = drm_ioctl,
  466. .mmap = drm_gem_mmap,
  467. .poll = drm_poll,
  468. .fasync = drm_fasync,
  469. .read = drm_read,
  470. #ifdef CONFIG_COMPAT
  471. .compat_ioctl = i915_compat_ioctl,
  472. #endif
  473. },
  474. .pci_driver = {
  475. .name = DRIVER_NAME,
  476. .id_table = pciidlist,
  477. .probe = i915_pci_probe,
  478. .remove = i915_pci_remove,
  479. .driver.pm = &i915_pm_ops,
  480. },
  481. .name = DRIVER_NAME,
  482. .desc = DRIVER_DESC,
  483. .date = DRIVER_DATE,
  484. .major = DRIVER_MAJOR,
  485. .minor = DRIVER_MINOR,
  486. .patchlevel = DRIVER_PATCHLEVEL,
  487. };
  488. static int __init i915_init(void)
  489. {
  490. if (!intel_agp_enabled) {
  491. DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
  492. return -ENODEV;
  493. }
  494. driver.num_ioctls = i915_max_ioctl;
  495. i915_gem_shrinker_init();
  496. /*
  497. * If CONFIG_DRM_I915_KMS is set, default to KMS unless
  498. * explicitly disabled with the module pararmeter.
  499. *
  500. * Otherwise, just follow the parameter (defaulting to off).
  501. *
  502. * Allow optional vga_text_mode_force boot option to override
  503. * the default behavior.
  504. */
  505. #if defined(CONFIG_DRM_I915_KMS)
  506. if (i915_modeset != 0)
  507. driver.driver_features |= DRIVER_MODESET;
  508. #endif
  509. if (i915_modeset == 1)
  510. driver.driver_features |= DRIVER_MODESET;
  511. #ifdef CONFIG_VGA_CONSOLE
  512. if (vgacon_text_force() && i915_modeset == -1)
  513. driver.driver_features &= ~DRIVER_MODESET;
  514. #endif
  515. if (!(driver.driver_features & DRIVER_MODESET)) {
  516. driver.suspend = i915_suspend;
  517. driver.resume = i915_resume;
  518. }
  519. return drm_init(&driver);
  520. }
  521. static void __exit i915_exit(void)
  522. {
  523. i915_gem_shrinker_exit();
  524. drm_exit(&driver);
  525. }
  526. module_init(i915_init);
  527. module_exit(i915_exit);
  528. MODULE_AUTHOR(DRIVER_AUTHOR);
  529. MODULE_DESCRIPTION(DRIVER_DESC);
  530. MODULE_LICENSE("GPL and additional rights");