i915_drv.c 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317
  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 <drm/drmP.h>
  31. #include <drm/i915_drm.h>
  32. #include "i915_drv.h"
  33. #include "i915_trace.h"
  34. #include "intel_drv.h"
  35. #include <linux/console.h>
  36. #include <linux/module.h>
  37. #include <drm/drm_crtc_helper.h>
  38. static int i915_modeset __read_mostly = -1;
  39. module_param_named(modeset, i915_modeset, int, 0400);
  40. MODULE_PARM_DESC(modeset,
  41. "Use kernel modesetting [KMS] (0=DRM_I915_KMS from .config, "
  42. "1=on, -1=force vga console preference [default])");
  43. unsigned int i915_fbpercrtc __always_unused = 0;
  44. module_param_named(fbpercrtc, i915_fbpercrtc, int, 0400);
  45. int i915_panel_ignore_lid __read_mostly = 1;
  46. module_param_named(panel_ignore_lid, i915_panel_ignore_lid, int, 0600);
  47. MODULE_PARM_DESC(panel_ignore_lid,
  48. "Override lid status (0=autodetect, 1=autodetect disabled [default], "
  49. "-1=force lid closed, -2=force lid open)");
  50. unsigned int i915_powersave __read_mostly = 1;
  51. module_param_named(powersave, i915_powersave, int, 0600);
  52. MODULE_PARM_DESC(powersave,
  53. "Enable powersavings, fbc, downclocking, etc. (default: true)");
  54. int i915_semaphores __read_mostly = -1;
  55. module_param_named(semaphores, i915_semaphores, int, 0600);
  56. MODULE_PARM_DESC(semaphores,
  57. "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))");
  58. int i915_enable_rc6 __read_mostly = -1;
  59. module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0400);
  60. MODULE_PARM_DESC(i915_enable_rc6,
  61. "Enable power-saving render C-state 6. "
  62. "Different stages can be selected via bitmask values "
  63. "(0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). "
  64. "For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. "
  65. "default: -1 (use per-chip default)");
  66. int i915_enable_fbc __read_mostly = -1;
  67. module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);
  68. MODULE_PARM_DESC(i915_enable_fbc,
  69. "Enable frame buffer compression for power savings "
  70. "(default: -1 (use per-chip default))");
  71. unsigned int i915_lvds_downclock __read_mostly = 0;
  72. module_param_named(lvds_downclock, i915_lvds_downclock, int, 0400);
  73. MODULE_PARM_DESC(lvds_downclock,
  74. "Use panel (LVDS/eDP) downclocking for power savings "
  75. "(default: false)");
  76. int i915_lvds_channel_mode __read_mostly;
  77. module_param_named(lvds_channel_mode, i915_lvds_channel_mode, int, 0600);
  78. MODULE_PARM_DESC(lvds_channel_mode,
  79. "Specify LVDS channel mode "
  80. "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)");
  81. int i915_panel_use_ssc __read_mostly = -1;
  82. module_param_named(lvds_use_ssc, i915_panel_use_ssc, int, 0600);
  83. MODULE_PARM_DESC(lvds_use_ssc,
  84. "Use Spread Spectrum Clock with panels [LVDS/eDP] "
  85. "(default: auto from VBT)");
  86. int i915_vbt_sdvo_panel_type __read_mostly = -1;
  87. module_param_named(vbt_sdvo_panel_type, i915_vbt_sdvo_panel_type, int, 0600);
  88. MODULE_PARM_DESC(vbt_sdvo_panel_type,
  89. "Override/Ignore selection of SDVO panel mode in the VBT "
  90. "(-2=ignore, -1=auto [default], index in VBT BIOS table)");
  91. static bool i915_try_reset __read_mostly = true;
  92. module_param_named(reset, i915_try_reset, bool, 0600);
  93. MODULE_PARM_DESC(reset, "Attempt GPU resets (default: true)");
  94. bool i915_enable_hangcheck __read_mostly = true;
  95. module_param_named(enable_hangcheck, i915_enable_hangcheck, bool, 0644);
  96. MODULE_PARM_DESC(enable_hangcheck,
  97. "Periodically check GPU activity for detecting hangs. "
  98. "WARNING: Disabling this can cause system wide hangs. "
  99. "(default: true)");
  100. int i915_enable_ppgtt __read_mostly = -1;
  101. module_param_named(i915_enable_ppgtt, i915_enable_ppgtt, int, 0600);
  102. MODULE_PARM_DESC(i915_enable_ppgtt,
  103. "Enable PPGTT (default: true)");
  104. unsigned int i915_preliminary_hw_support __read_mostly = 0;
  105. module_param_named(preliminary_hw_support, i915_preliminary_hw_support, int, 0600);
  106. MODULE_PARM_DESC(preliminary_hw_support,
  107. "Enable preliminary hardware support. (default: false)");
  108. int i915_disable_power_well __read_mostly = 0;
  109. module_param_named(disable_power_well, i915_disable_power_well, int, 0600);
  110. MODULE_PARM_DESC(disable_power_well,
  111. "Disable the power well when possible (default: false)");
  112. static struct drm_driver driver;
  113. extern int intel_agp_enabled;
  114. #define INTEL_VGA_DEVICE(id, info) { \
  115. .class = PCI_BASE_CLASS_DISPLAY << 16, \
  116. .class_mask = 0xff0000, \
  117. .vendor = 0x8086, \
  118. .device = id, \
  119. .subvendor = PCI_ANY_ID, \
  120. .subdevice = PCI_ANY_ID, \
  121. .driver_data = (unsigned long) info }
  122. #define INTEL_QUANTA_VGA_DEVICE(info) { \
  123. .class = PCI_BASE_CLASS_DISPLAY << 16, \
  124. .class_mask = 0xff0000, \
  125. .vendor = 0x8086, \
  126. .device = 0x16a, \
  127. .subvendor = 0x152d, \
  128. .subdevice = 0x8990, \
  129. .driver_data = (unsigned long) info }
  130. static const struct intel_device_info intel_i830_info = {
  131. .gen = 2, .is_mobile = 1, .cursor_needs_physical = 1, .num_pipes = 2,
  132. .has_overlay = 1, .overlay_needs_physical = 1,
  133. };
  134. static const struct intel_device_info intel_845g_info = {
  135. .gen = 2, .num_pipes = 1,
  136. .has_overlay = 1, .overlay_needs_physical = 1,
  137. };
  138. static const struct intel_device_info intel_i85x_info = {
  139. .gen = 2, .is_i85x = 1, .is_mobile = 1, .num_pipes = 2,
  140. .cursor_needs_physical = 1,
  141. .has_overlay = 1, .overlay_needs_physical = 1,
  142. };
  143. static const struct intel_device_info intel_i865g_info = {
  144. .gen = 2, .num_pipes = 1,
  145. .has_overlay = 1, .overlay_needs_physical = 1,
  146. };
  147. static const struct intel_device_info intel_i915g_info = {
  148. .gen = 3, .is_i915g = 1, .cursor_needs_physical = 1, .num_pipes = 2,
  149. .has_overlay = 1, .overlay_needs_physical = 1,
  150. };
  151. static const struct intel_device_info intel_i915gm_info = {
  152. .gen = 3, .is_mobile = 1, .num_pipes = 2,
  153. .cursor_needs_physical = 1,
  154. .has_overlay = 1, .overlay_needs_physical = 1,
  155. .supports_tv = 1,
  156. };
  157. static const struct intel_device_info intel_i945g_info = {
  158. .gen = 3, .has_hotplug = 1, .cursor_needs_physical = 1, .num_pipes = 2,
  159. .has_overlay = 1, .overlay_needs_physical = 1,
  160. };
  161. static const struct intel_device_info intel_i945gm_info = {
  162. .gen = 3, .is_i945gm = 1, .is_mobile = 1, .num_pipes = 2,
  163. .has_hotplug = 1, .cursor_needs_physical = 1,
  164. .has_overlay = 1, .overlay_needs_physical = 1,
  165. .supports_tv = 1,
  166. };
  167. static const struct intel_device_info intel_i965g_info = {
  168. .gen = 4, .is_broadwater = 1, .num_pipes = 2,
  169. .has_hotplug = 1,
  170. .has_overlay = 1,
  171. };
  172. static const struct intel_device_info intel_i965gm_info = {
  173. .gen = 4, .is_crestline = 1, .num_pipes = 2,
  174. .is_mobile = 1, .has_fbc = 1, .has_hotplug = 1,
  175. .has_overlay = 1,
  176. .supports_tv = 1,
  177. };
  178. static const struct intel_device_info intel_g33_info = {
  179. .gen = 3, .is_g33 = 1, .num_pipes = 2,
  180. .need_gfx_hws = 1, .has_hotplug = 1,
  181. .has_overlay = 1,
  182. };
  183. static const struct intel_device_info intel_g45_info = {
  184. .gen = 4, .is_g4x = 1, .need_gfx_hws = 1, .num_pipes = 2,
  185. .has_pipe_cxsr = 1, .has_hotplug = 1,
  186. .has_bsd_ring = 1,
  187. };
  188. static const struct intel_device_info intel_gm45_info = {
  189. .gen = 4, .is_g4x = 1, .num_pipes = 2,
  190. .is_mobile = 1, .need_gfx_hws = 1, .has_fbc = 1,
  191. .has_pipe_cxsr = 1, .has_hotplug = 1,
  192. .supports_tv = 1,
  193. .has_bsd_ring = 1,
  194. };
  195. static const struct intel_device_info intel_pineview_info = {
  196. .gen = 3, .is_g33 = 1, .is_pineview = 1, .is_mobile = 1, .num_pipes = 2,
  197. .need_gfx_hws = 1, .has_hotplug = 1,
  198. .has_overlay = 1,
  199. };
  200. static const struct intel_device_info intel_ironlake_d_info = {
  201. .gen = 5, .num_pipes = 2,
  202. .need_gfx_hws = 1, .has_hotplug = 1,
  203. .has_bsd_ring = 1,
  204. };
  205. static const struct intel_device_info intel_ironlake_m_info = {
  206. .gen = 5, .is_mobile = 1, .num_pipes = 2,
  207. .need_gfx_hws = 1, .has_hotplug = 1,
  208. .has_fbc = 1,
  209. .has_bsd_ring = 1,
  210. };
  211. static const struct intel_device_info intel_sandybridge_d_info = {
  212. .gen = 6, .num_pipes = 2,
  213. .need_gfx_hws = 1, .has_hotplug = 1,
  214. .has_bsd_ring = 1,
  215. .has_blt_ring = 1,
  216. .has_llc = 1,
  217. .has_force_wake = 1,
  218. };
  219. static const struct intel_device_info intel_sandybridge_m_info = {
  220. .gen = 6, .is_mobile = 1, .num_pipes = 2,
  221. .need_gfx_hws = 1, .has_hotplug = 1,
  222. .has_fbc = 1,
  223. .has_bsd_ring = 1,
  224. .has_blt_ring = 1,
  225. .has_llc = 1,
  226. .has_force_wake = 1,
  227. };
  228. #define GEN7_FEATURES \
  229. .gen = 7, .num_pipes = 3, \
  230. .need_gfx_hws = 1, .has_hotplug = 1, \
  231. .has_bsd_ring = 1, \
  232. .has_blt_ring = 1, \
  233. .has_llc = 1, \
  234. .has_force_wake = 1
  235. static const struct intel_device_info intel_ivybridge_d_info = {
  236. GEN7_FEATURES,
  237. .is_ivybridge = 1,
  238. };
  239. static const struct intel_device_info intel_ivybridge_m_info = {
  240. GEN7_FEATURES,
  241. .is_ivybridge = 1,
  242. .is_mobile = 1,
  243. };
  244. static const struct intel_device_info intel_ivybridge_q_info = {
  245. GEN7_FEATURES,
  246. .is_ivybridge = 1,
  247. .num_pipes = 0, /* legal, last one wins */
  248. };
  249. static const struct intel_device_info intel_valleyview_m_info = {
  250. GEN7_FEATURES,
  251. .is_mobile = 1,
  252. .num_pipes = 2,
  253. .is_valleyview = 1,
  254. .display_mmio_offset = VLV_DISPLAY_BASE,
  255. .has_llc = 0, /* legal, last one wins */
  256. };
  257. static const struct intel_device_info intel_valleyview_d_info = {
  258. GEN7_FEATURES,
  259. .num_pipes = 2,
  260. .is_valleyview = 1,
  261. .display_mmio_offset = VLV_DISPLAY_BASE,
  262. .has_llc = 0, /* legal, last one wins */
  263. };
  264. static const struct intel_device_info intel_haswell_d_info = {
  265. GEN7_FEATURES,
  266. .is_haswell = 1,
  267. };
  268. static const struct intel_device_info intel_haswell_m_info = {
  269. GEN7_FEATURES,
  270. .is_haswell = 1,
  271. .is_mobile = 1,
  272. };
  273. static const struct pci_device_id pciidlist[] = { /* aka */
  274. INTEL_VGA_DEVICE(0x3577, &intel_i830_info), /* I830_M */
  275. INTEL_VGA_DEVICE(0x2562, &intel_845g_info), /* 845_G */
  276. INTEL_VGA_DEVICE(0x3582, &intel_i85x_info), /* I855_GM */
  277. INTEL_VGA_DEVICE(0x358e, &intel_i85x_info),
  278. INTEL_VGA_DEVICE(0x2572, &intel_i865g_info), /* I865_G */
  279. INTEL_VGA_DEVICE(0x2582, &intel_i915g_info), /* I915_G */
  280. INTEL_VGA_DEVICE(0x258a, &intel_i915g_info), /* E7221_G */
  281. INTEL_VGA_DEVICE(0x2592, &intel_i915gm_info), /* I915_GM */
  282. INTEL_VGA_DEVICE(0x2772, &intel_i945g_info), /* I945_G */
  283. INTEL_VGA_DEVICE(0x27a2, &intel_i945gm_info), /* I945_GM */
  284. INTEL_VGA_DEVICE(0x27ae, &intel_i945gm_info), /* I945_GME */
  285. INTEL_VGA_DEVICE(0x2972, &intel_i965g_info), /* I946_GZ */
  286. INTEL_VGA_DEVICE(0x2982, &intel_i965g_info), /* G35_G */
  287. INTEL_VGA_DEVICE(0x2992, &intel_i965g_info), /* I965_Q */
  288. INTEL_VGA_DEVICE(0x29a2, &intel_i965g_info), /* I965_G */
  289. INTEL_VGA_DEVICE(0x29b2, &intel_g33_info), /* Q35_G */
  290. INTEL_VGA_DEVICE(0x29c2, &intel_g33_info), /* G33_G */
  291. INTEL_VGA_DEVICE(0x29d2, &intel_g33_info), /* Q33_G */
  292. INTEL_VGA_DEVICE(0x2a02, &intel_i965gm_info), /* I965_GM */
  293. INTEL_VGA_DEVICE(0x2a12, &intel_i965gm_info), /* I965_GME */
  294. INTEL_VGA_DEVICE(0x2a42, &intel_gm45_info), /* GM45_G */
  295. INTEL_VGA_DEVICE(0x2e02, &intel_g45_info), /* IGD_E_G */
  296. INTEL_VGA_DEVICE(0x2e12, &intel_g45_info), /* Q45_G */
  297. INTEL_VGA_DEVICE(0x2e22, &intel_g45_info), /* G45_G */
  298. INTEL_VGA_DEVICE(0x2e32, &intel_g45_info), /* G41_G */
  299. INTEL_VGA_DEVICE(0x2e42, &intel_g45_info), /* B43_G */
  300. INTEL_VGA_DEVICE(0x2e92, &intel_g45_info), /* B43_G.1 */
  301. INTEL_VGA_DEVICE(0xa001, &intel_pineview_info),
  302. INTEL_VGA_DEVICE(0xa011, &intel_pineview_info),
  303. INTEL_VGA_DEVICE(0x0042, &intel_ironlake_d_info),
  304. INTEL_VGA_DEVICE(0x0046, &intel_ironlake_m_info),
  305. INTEL_VGA_DEVICE(0x0102, &intel_sandybridge_d_info),
  306. INTEL_VGA_DEVICE(0x0112, &intel_sandybridge_d_info),
  307. INTEL_VGA_DEVICE(0x0122, &intel_sandybridge_d_info),
  308. INTEL_VGA_DEVICE(0x0106, &intel_sandybridge_m_info),
  309. INTEL_VGA_DEVICE(0x0116, &intel_sandybridge_m_info),
  310. INTEL_VGA_DEVICE(0x0126, &intel_sandybridge_m_info),
  311. INTEL_VGA_DEVICE(0x010A, &intel_sandybridge_d_info),
  312. INTEL_VGA_DEVICE(0x0156, &intel_ivybridge_m_info), /* GT1 mobile */
  313. INTEL_VGA_DEVICE(0x0166, &intel_ivybridge_m_info), /* GT2 mobile */
  314. INTEL_VGA_DEVICE(0x0152, &intel_ivybridge_d_info), /* GT1 desktop */
  315. INTEL_VGA_DEVICE(0x0162, &intel_ivybridge_d_info), /* GT2 desktop */
  316. INTEL_VGA_DEVICE(0x015a, &intel_ivybridge_d_info), /* GT1 server */
  317. INTEL_QUANTA_VGA_DEVICE(&intel_ivybridge_q_info), /* Quanta transcode */
  318. INTEL_VGA_DEVICE(0x016a, &intel_ivybridge_d_info), /* GT2 server */
  319. INTEL_VGA_DEVICE(0x0402, &intel_haswell_d_info), /* GT1 desktop */
  320. INTEL_VGA_DEVICE(0x0412, &intel_haswell_d_info), /* GT2 desktop */
  321. INTEL_VGA_DEVICE(0x0422, &intel_haswell_d_info), /* GT2 desktop */
  322. INTEL_VGA_DEVICE(0x040a, &intel_haswell_d_info), /* GT1 server */
  323. INTEL_VGA_DEVICE(0x041a, &intel_haswell_d_info), /* GT2 server */
  324. INTEL_VGA_DEVICE(0x042a, &intel_haswell_d_info), /* GT2 server */
  325. INTEL_VGA_DEVICE(0x0406, &intel_haswell_m_info), /* GT1 mobile */
  326. INTEL_VGA_DEVICE(0x0416, &intel_haswell_m_info), /* GT2 mobile */
  327. INTEL_VGA_DEVICE(0x0426, &intel_haswell_m_info), /* GT2 mobile */
  328. INTEL_VGA_DEVICE(0x0C02, &intel_haswell_d_info), /* SDV GT1 desktop */
  329. INTEL_VGA_DEVICE(0x0C12, &intel_haswell_d_info), /* SDV GT2 desktop */
  330. INTEL_VGA_DEVICE(0x0C22, &intel_haswell_d_info), /* SDV GT2 desktop */
  331. INTEL_VGA_DEVICE(0x0C0A, &intel_haswell_d_info), /* SDV GT1 server */
  332. INTEL_VGA_DEVICE(0x0C1A, &intel_haswell_d_info), /* SDV GT2 server */
  333. INTEL_VGA_DEVICE(0x0C2A, &intel_haswell_d_info), /* SDV GT2 server */
  334. INTEL_VGA_DEVICE(0x0C06, &intel_haswell_m_info), /* SDV GT1 mobile */
  335. INTEL_VGA_DEVICE(0x0C16, &intel_haswell_m_info), /* SDV GT2 mobile */
  336. INTEL_VGA_DEVICE(0x0C26, &intel_haswell_m_info), /* SDV GT2 mobile */
  337. INTEL_VGA_DEVICE(0x0A02, &intel_haswell_d_info), /* ULT GT1 desktop */
  338. INTEL_VGA_DEVICE(0x0A12, &intel_haswell_d_info), /* ULT GT2 desktop */
  339. INTEL_VGA_DEVICE(0x0A22, &intel_haswell_d_info), /* ULT GT2 desktop */
  340. INTEL_VGA_DEVICE(0x0A0A, &intel_haswell_d_info), /* ULT GT1 server */
  341. INTEL_VGA_DEVICE(0x0A1A, &intel_haswell_d_info), /* ULT GT2 server */
  342. INTEL_VGA_DEVICE(0x0A2A, &intel_haswell_d_info), /* ULT GT2 server */
  343. INTEL_VGA_DEVICE(0x0A06, &intel_haswell_m_info), /* ULT GT1 mobile */
  344. INTEL_VGA_DEVICE(0x0A16, &intel_haswell_m_info), /* ULT GT2 mobile */
  345. INTEL_VGA_DEVICE(0x0A26, &intel_haswell_m_info), /* ULT GT2 mobile */
  346. INTEL_VGA_DEVICE(0x0D02, &intel_haswell_d_info), /* CRW GT1 desktop */
  347. INTEL_VGA_DEVICE(0x0D12, &intel_haswell_d_info), /* CRW GT2 desktop */
  348. INTEL_VGA_DEVICE(0x0D22, &intel_haswell_d_info), /* CRW GT2 desktop */
  349. INTEL_VGA_DEVICE(0x0D0A, &intel_haswell_d_info), /* CRW GT1 server */
  350. INTEL_VGA_DEVICE(0x0D1A, &intel_haswell_d_info), /* CRW GT2 server */
  351. INTEL_VGA_DEVICE(0x0D2A, &intel_haswell_d_info), /* CRW GT2 server */
  352. INTEL_VGA_DEVICE(0x0D06, &intel_haswell_m_info), /* CRW GT1 mobile */
  353. INTEL_VGA_DEVICE(0x0D16, &intel_haswell_m_info), /* CRW GT2 mobile */
  354. INTEL_VGA_DEVICE(0x0D26, &intel_haswell_m_info), /* CRW GT2 mobile */
  355. INTEL_VGA_DEVICE(0x0f30, &intel_valleyview_m_info),
  356. INTEL_VGA_DEVICE(0x0f31, &intel_valleyview_m_info),
  357. INTEL_VGA_DEVICE(0x0f32, &intel_valleyview_m_info),
  358. INTEL_VGA_DEVICE(0x0f33, &intel_valleyview_m_info),
  359. INTEL_VGA_DEVICE(0x0157, &intel_valleyview_m_info),
  360. INTEL_VGA_DEVICE(0x0155, &intel_valleyview_d_info),
  361. {0, 0, 0}
  362. };
  363. #if defined(CONFIG_DRM_I915_KMS)
  364. MODULE_DEVICE_TABLE(pci, pciidlist);
  365. #endif
  366. void intel_detect_pch(struct drm_device *dev)
  367. {
  368. struct drm_i915_private *dev_priv = dev->dev_private;
  369. struct pci_dev *pch;
  370. /* In all current cases, num_pipes is equivalent to the PCH_NOP setting
  371. * (which really amounts to a PCH but no South Display).
  372. */
  373. if (INTEL_INFO(dev)->num_pipes == 0) {
  374. dev_priv->pch_type = PCH_NOP;
  375. dev_priv->num_pch_pll = 0;
  376. return;
  377. }
  378. /*
  379. * The reason to probe ISA bridge instead of Dev31:Fun0 is to
  380. * make graphics device passthrough work easy for VMM, that only
  381. * need to expose ISA bridge to let driver know the real hardware
  382. * underneath. This is a requirement from virtualization team.
  383. */
  384. pch = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
  385. if (pch) {
  386. if (pch->vendor == PCI_VENDOR_ID_INTEL) {
  387. unsigned short id;
  388. id = pch->device & INTEL_PCH_DEVICE_ID_MASK;
  389. dev_priv->pch_id = id;
  390. if (id == INTEL_PCH_IBX_DEVICE_ID_TYPE) {
  391. dev_priv->pch_type = PCH_IBX;
  392. dev_priv->num_pch_pll = 2;
  393. DRM_DEBUG_KMS("Found Ibex Peak PCH\n");
  394. WARN_ON(!IS_GEN5(dev));
  395. } else if (id == INTEL_PCH_CPT_DEVICE_ID_TYPE) {
  396. dev_priv->pch_type = PCH_CPT;
  397. dev_priv->num_pch_pll = 2;
  398. DRM_DEBUG_KMS("Found CougarPoint PCH\n");
  399. WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
  400. } else if (id == INTEL_PCH_PPT_DEVICE_ID_TYPE) {
  401. /* PantherPoint is CPT compatible */
  402. dev_priv->pch_type = PCH_CPT;
  403. dev_priv->num_pch_pll = 2;
  404. DRM_DEBUG_KMS("Found PatherPoint PCH\n");
  405. WARN_ON(!(IS_GEN6(dev) || IS_IVYBRIDGE(dev)));
  406. } else if (id == INTEL_PCH_LPT_DEVICE_ID_TYPE) {
  407. dev_priv->pch_type = PCH_LPT;
  408. dev_priv->num_pch_pll = 0;
  409. DRM_DEBUG_KMS("Found LynxPoint PCH\n");
  410. WARN_ON(!IS_HASWELL(dev));
  411. WARN_ON(IS_ULT(dev));
  412. } else if (id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
  413. dev_priv->pch_type = PCH_LPT;
  414. dev_priv->num_pch_pll = 0;
  415. DRM_DEBUG_KMS("Found LynxPoint LP PCH\n");
  416. WARN_ON(!IS_HASWELL(dev));
  417. WARN_ON(!IS_ULT(dev));
  418. }
  419. BUG_ON(dev_priv->num_pch_pll > I915_NUM_PLLS);
  420. }
  421. pci_dev_put(pch);
  422. }
  423. }
  424. bool i915_semaphore_is_enabled(struct drm_device *dev)
  425. {
  426. if (INTEL_INFO(dev)->gen < 6)
  427. return 0;
  428. if (i915_semaphores >= 0)
  429. return i915_semaphores;
  430. #ifdef CONFIG_INTEL_IOMMU
  431. /* Enable semaphores on SNB when IO remapping is off */
  432. if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
  433. return false;
  434. #endif
  435. return 1;
  436. }
  437. static int i915_drm_freeze(struct drm_device *dev)
  438. {
  439. struct drm_i915_private *dev_priv = dev->dev_private;
  440. struct drm_crtc *crtc;
  441. /* ignore lid events during suspend */
  442. mutex_lock(&dev_priv->modeset_restore_lock);
  443. dev_priv->modeset_restore = MODESET_SUSPENDED;
  444. mutex_unlock(&dev_priv->modeset_restore_lock);
  445. intel_set_power_well(dev, true);
  446. drm_kms_helper_poll_disable(dev);
  447. pci_save_state(dev->pdev);
  448. /* If KMS is active, we do the leavevt stuff here */
  449. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  450. int error = i915_gem_idle(dev);
  451. if (error) {
  452. dev_err(&dev->pdev->dev,
  453. "GEM idle failed, resume might fail\n");
  454. return error;
  455. }
  456. cancel_delayed_work_sync(&dev_priv->rps.delayed_resume_work);
  457. drm_irq_uninstall(dev);
  458. dev_priv->enable_hotplug_processing = false;
  459. /*
  460. * Disable CRTCs directly since we want to preserve sw state
  461. * for _thaw.
  462. */
  463. list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
  464. dev_priv->display.crtc_disable(crtc);
  465. }
  466. i915_save_state(dev);
  467. intel_opregion_fini(dev);
  468. console_lock();
  469. intel_fbdev_set_suspend(dev, 1);
  470. console_unlock();
  471. return 0;
  472. }
  473. int i915_suspend(struct drm_device *dev, pm_message_t state)
  474. {
  475. int error;
  476. if (!dev || !dev->dev_private) {
  477. DRM_ERROR("dev: %p\n", dev);
  478. DRM_ERROR("DRM not initialized, aborting suspend.\n");
  479. return -ENODEV;
  480. }
  481. if (state.event == PM_EVENT_PRETHAW)
  482. return 0;
  483. if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
  484. return 0;
  485. error = i915_drm_freeze(dev);
  486. if (error)
  487. return error;
  488. if (state.event == PM_EVENT_SUSPEND) {
  489. /* Shut down the device */
  490. pci_disable_device(dev->pdev);
  491. pci_set_power_state(dev->pdev, PCI_D3hot);
  492. }
  493. return 0;
  494. }
  495. void intel_console_resume(struct work_struct *work)
  496. {
  497. struct drm_i915_private *dev_priv =
  498. container_of(work, struct drm_i915_private,
  499. console_resume_work);
  500. struct drm_device *dev = dev_priv->dev;
  501. console_lock();
  502. intel_fbdev_set_suspend(dev, 0);
  503. console_unlock();
  504. }
  505. static void intel_resume_hotplug(struct drm_device *dev)
  506. {
  507. struct drm_mode_config *mode_config = &dev->mode_config;
  508. struct intel_encoder *encoder;
  509. mutex_lock(&mode_config->mutex);
  510. DRM_DEBUG_KMS("running encoder hotplug functions\n");
  511. list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
  512. if (encoder->hot_plug)
  513. encoder->hot_plug(encoder);
  514. mutex_unlock(&mode_config->mutex);
  515. /* Just fire off a uevent and let userspace tell us what to do */
  516. drm_helper_hpd_irq_event(dev);
  517. }
  518. static int __i915_drm_thaw(struct drm_device *dev)
  519. {
  520. struct drm_i915_private *dev_priv = dev->dev_private;
  521. int error = 0;
  522. i915_restore_state(dev);
  523. intel_opregion_setup(dev);
  524. /* KMS EnterVT equivalent */
  525. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  526. intel_init_pch_refclk(dev);
  527. mutex_lock(&dev->struct_mutex);
  528. dev_priv->mm.suspended = 0;
  529. error = i915_gem_init_hw(dev);
  530. mutex_unlock(&dev->struct_mutex);
  531. /* We need working interrupts for modeset enabling ... */
  532. drm_irq_install(dev);
  533. intel_modeset_init_hw(dev);
  534. drm_modeset_lock_all(dev);
  535. intel_modeset_setup_hw_state(dev, true);
  536. drm_modeset_unlock_all(dev);
  537. /*
  538. * ... but also need to make sure that hotplug processing
  539. * doesn't cause havoc. Like in the driver load code we don't
  540. * bother with the tiny race here where we might loose hotplug
  541. * notifications.
  542. * */
  543. intel_hpd_init(dev);
  544. dev_priv->enable_hotplug_processing = true;
  545. /* Config may have changed between suspend and resume */
  546. intel_resume_hotplug(dev);
  547. }
  548. intel_opregion_init(dev);
  549. /*
  550. * The console lock can be pretty contented on resume due
  551. * to all the printk activity. Try to keep it out of the hot
  552. * path of resume if possible.
  553. */
  554. if (console_trylock()) {
  555. intel_fbdev_set_suspend(dev, 0);
  556. console_unlock();
  557. } else {
  558. schedule_work(&dev_priv->console_resume_work);
  559. }
  560. mutex_lock(&dev_priv->modeset_restore_lock);
  561. dev_priv->modeset_restore = MODESET_DONE;
  562. mutex_unlock(&dev_priv->modeset_restore_lock);
  563. return error;
  564. }
  565. static int i915_drm_thaw(struct drm_device *dev)
  566. {
  567. int error = 0;
  568. intel_gt_reset(dev);
  569. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  570. mutex_lock(&dev->struct_mutex);
  571. i915_gem_restore_gtt_mappings(dev);
  572. mutex_unlock(&dev->struct_mutex);
  573. }
  574. __i915_drm_thaw(dev);
  575. return error;
  576. }
  577. int i915_resume(struct drm_device *dev)
  578. {
  579. struct drm_i915_private *dev_priv = dev->dev_private;
  580. int ret;
  581. if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
  582. return 0;
  583. if (pci_enable_device(dev->pdev))
  584. return -EIO;
  585. pci_set_master(dev->pdev);
  586. intel_gt_reset(dev);
  587. /*
  588. * Platforms with opregion should have sane BIOS, older ones (gen3 and
  589. * earlier) need this since the BIOS might clear all our scratch PTEs.
  590. */
  591. if (drm_core_check_feature(dev, DRIVER_MODESET) &&
  592. !dev_priv->opregion.header) {
  593. mutex_lock(&dev->struct_mutex);
  594. i915_gem_restore_gtt_mappings(dev);
  595. mutex_unlock(&dev->struct_mutex);
  596. }
  597. ret = __i915_drm_thaw(dev);
  598. if (ret)
  599. return ret;
  600. drm_kms_helper_poll_enable(dev);
  601. return 0;
  602. }
  603. static int i8xx_do_reset(struct drm_device *dev)
  604. {
  605. struct drm_i915_private *dev_priv = dev->dev_private;
  606. if (IS_I85X(dev))
  607. return -ENODEV;
  608. I915_WRITE(D_STATE, I915_READ(D_STATE) | DSTATE_GFX_RESET_I830);
  609. POSTING_READ(D_STATE);
  610. if (IS_I830(dev) || IS_845G(dev)) {
  611. I915_WRITE(DEBUG_RESET_I830,
  612. DEBUG_RESET_DISPLAY |
  613. DEBUG_RESET_RENDER |
  614. DEBUG_RESET_FULL);
  615. POSTING_READ(DEBUG_RESET_I830);
  616. msleep(1);
  617. I915_WRITE(DEBUG_RESET_I830, 0);
  618. POSTING_READ(DEBUG_RESET_I830);
  619. }
  620. msleep(1);
  621. I915_WRITE(D_STATE, I915_READ(D_STATE) & ~DSTATE_GFX_RESET_I830);
  622. POSTING_READ(D_STATE);
  623. return 0;
  624. }
  625. static int i965_reset_complete(struct drm_device *dev)
  626. {
  627. u8 gdrst;
  628. pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
  629. return (gdrst & GRDOM_RESET_ENABLE) == 0;
  630. }
  631. static int i965_do_reset(struct drm_device *dev)
  632. {
  633. int ret;
  634. u8 gdrst;
  635. /*
  636. * Set the domains we want to reset (GRDOM/bits 2 and 3) as
  637. * well as the reset bit (GR/bit 0). Setting the GR bit
  638. * triggers the reset; when done, the hardware will clear it.
  639. */
  640. pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
  641. pci_write_config_byte(dev->pdev, I965_GDRST,
  642. gdrst | GRDOM_RENDER |
  643. GRDOM_RESET_ENABLE);
  644. ret = wait_for(i965_reset_complete(dev), 500);
  645. if (ret)
  646. return ret;
  647. /* We can't reset render&media without also resetting display ... */
  648. pci_read_config_byte(dev->pdev, I965_GDRST, &gdrst);
  649. pci_write_config_byte(dev->pdev, I965_GDRST,
  650. gdrst | GRDOM_MEDIA |
  651. GRDOM_RESET_ENABLE);
  652. return wait_for(i965_reset_complete(dev), 500);
  653. }
  654. static int ironlake_do_reset(struct drm_device *dev)
  655. {
  656. struct drm_i915_private *dev_priv = dev->dev_private;
  657. u32 gdrst;
  658. int ret;
  659. gdrst = I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR);
  660. gdrst &= ~GRDOM_MASK;
  661. I915_WRITE(MCHBAR_MIRROR_BASE + ILK_GDSR,
  662. gdrst | GRDOM_RENDER | GRDOM_RESET_ENABLE);
  663. ret = wait_for(I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR) & 0x1, 500);
  664. if (ret)
  665. return ret;
  666. /* We can't reset render&media without also resetting display ... */
  667. gdrst = I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR);
  668. gdrst &= ~GRDOM_MASK;
  669. I915_WRITE(MCHBAR_MIRROR_BASE + ILK_GDSR,
  670. gdrst | GRDOM_MEDIA | GRDOM_RESET_ENABLE);
  671. return wait_for(I915_READ(MCHBAR_MIRROR_BASE + ILK_GDSR) & 0x1, 500);
  672. }
  673. static int gen6_do_reset(struct drm_device *dev)
  674. {
  675. struct drm_i915_private *dev_priv = dev->dev_private;
  676. int ret;
  677. unsigned long irqflags;
  678. /* Hold gt_lock across reset to prevent any register access
  679. * with forcewake not set correctly
  680. */
  681. spin_lock_irqsave(&dev_priv->gt_lock, irqflags);
  682. /* Reset the chip */
  683. /* GEN6_GDRST is not in the gt power well, no need to check
  684. * for fifo space for the write or forcewake the chip for
  685. * the read
  686. */
  687. I915_WRITE_NOTRACE(GEN6_GDRST, GEN6_GRDOM_FULL);
  688. /* Spin waiting for the device to ack the reset request */
  689. ret = wait_for((I915_READ_NOTRACE(GEN6_GDRST) & GEN6_GRDOM_FULL) == 0, 500);
  690. /* If reset with a user forcewake, try to restore, otherwise turn it off */
  691. if (dev_priv->forcewake_count)
  692. dev_priv->gt.force_wake_get(dev_priv);
  693. else
  694. dev_priv->gt.force_wake_put(dev_priv);
  695. /* Restore fifo count */
  696. dev_priv->gt_fifo_count = I915_READ_NOTRACE(GT_FIFO_FREE_ENTRIES);
  697. spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags);
  698. return ret;
  699. }
  700. int intel_gpu_reset(struct drm_device *dev)
  701. {
  702. struct drm_i915_private *dev_priv = dev->dev_private;
  703. int ret = -ENODEV;
  704. switch (INTEL_INFO(dev)->gen) {
  705. case 7:
  706. case 6:
  707. ret = gen6_do_reset(dev);
  708. break;
  709. case 5:
  710. ret = ironlake_do_reset(dev);
  711. break;
  712. case 4:
  713. ret = i965_do_reset(dev);
  714. break;
  715. case 2:
  716. ret = i8xx_do_reset(dev);
  717. break;
  718. }
  719. /* Also reset the gpu hangman. */
  720. if (dev_priv->gpu_error.stop_rings) {
  721. DRM_INFO("Simulated gpu hang, resetting stop_rings\n");
  722. dev_priv->gpu_error.stop_rings = 0;
  723. if (ret == -ENODEV) {
  724. DRM_ERROR("Reset not implemented, but ignoring "
  725. "error for simulated gpu hangs\n");
  726. ret = 0;
  727. }
  728. }
  729. return ret;
  730. }
  731. /**
  732. * i915_reset - reset chip after a hang
  733. * @dev: drm device to reset
  734. *
  735. * Reset the chip. Useful if a hang is detected. Returns zero on successful
  736. * reset or otherwise an error code.
  737. *
  738. * Procedure is fairly simple:
  739. * - reset the chip using the reset reg
  740. * - re-init context state
  741. * - re-init hardware status page
  742. * - re-init ring buffer
  743. * - re-init interrupt state
  744. * - re-init display
  745. */
  746. int i915_reset(struct drm_device *dev)
  747. {
  748. drm_i915_private_t *dev_priv = dev->dev_private;
  749. int ret;
  750. if (!i915_try_reset)
  751. return 0;
  752. mutex_lock(&dev->struct_mutex);
  753. i915_gem_reset(dev);
  754. ret = -ENODEV;
  755. if (get_seconds() - dev_priv->gpu_error.last_reset < 5)
  756. DRM_ERROR("GPU hanging too fast, declaring wedged!\n");
  757. else
  758. ret = intel_gpu_reset(dev);
  759. dev_priv->gpu_error.last_reset = get_seconds();
  760. if (ret) {
  761. DRM_ERROR("Failed to reset chip.\n");
  762. mutex_unlock(&dev->struct_mutex);
  763. return ret;
  764. }
  765. /* Ok, now get things going again... */
  766. /*
  767. * Everything depends on having the GTT running, so we need to start
  768. * there. Fortunately we don't need to do this unless we reset the
  769. * chip at a PCI level.
  770. *
  771. * Next we need to restore the context, but we don't use those
  772. * yet either...
  773. *
  774. * Ring buffer needs to be re-initialized in the KMS case, or if X
  775. * was running at the time of the reset (i.e. we weren't VT
  776. * switched away).
  777. */
  778. if (drm_core_check_feature(dev, DRIVER_MODESET) ||
  779. !dev_priv->mm.suspended) {
  780. struct intel_ring_buffer *ring;
  781. int i;
  782. dev_priv->mm.suspended = 0;
  783. i915_gem_init_swizzling(dev);
  784. for_each_ring(ring, dev_priv, i)
  785. ring->init(ring);
  786. i915_gem_context_init(dev);
  787. if (dev_priv->mm.aliasing_ppgtt) {
  788. ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
  789. if (ret)
  790. i915_gem_cleanup_aliasing_ppgtt(dev);
  791. }
  792. /*
  793. * It would make sense to re-init all the other hw state, at
  794. * least the rps/rc6/emon init done within modeset_init_hw. For
  795. * some unknown reason, this blows up my ilk, so don't.
  796. */
  797. mutex_unlock(&dev->struct_mutex);
  798. drm_irq_uninstall(dev);
  799. drm_irq_install(dev);
  800. intel_hpd_init(dev);
  801. } else {
  802. mutex_unlock(&dev->struct_mutex);
  803. }
  804. return 0;
  805. }
  806. static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  807. {
  808. struct intel_device_info *intel_info =
  809. (struct intel_device_info *) ent->driver_data;
  810. if (intel_info->is_valleyview)
  811. if(!i915_preliminary_hw_support) {
  812. DRM_ERROR("Preliminary hardware support disabled\n");
  813. return -ENODEV;
  814. }
  815. /* Only bind to function 0 of the device. Early generations
  816. * used function 1 as a placeholder for multi-head. This causes
  817. * us confusion instead, especially on the systems where both
  818. * functions have the same PCI-ID!
  819. */
  820. if (PCI_FUNC(pdev->devfn))
  821. return -ENODEV;
  822. /* We've managed to ship a kms-enabled ddx that shipped with an XvMC
  823. * implementation for gen3 (and only gen3) that used legacy drm maps
  824. * (gasp!) to share buffers between X and the client. Hence we need to
  825. * keep around the fake agp stuff for gen3, even when kms is enabled. */
  826. if (intel_info->gen != 3) {
  827. driver.driver_features &=
  828. ~(DRIVER_USE_AGP | DRIVER_REQUIRE_AGP);
  829. } else if (!intel_agp_enabled) {
  830. DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
  831. return -ENODEV;
  832. }
  833. return drm_get_pci_dev(pdev, ent, &driver);
  834. }
  835. static void
  836. i915_pci_remove(struct pci_dev *pdev)
  837. {
  838. struct drm_device *dev = pci_get_drvdata(pdev);
  839. drm_put_dev(dev);
  840. }
  841. static int i915_pm_suspend(struct device *dev)
  842. {
  843. struct pci_dev *pdev = to_pci_dev(dev);
  844. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  845. int error;
  846. if (!drm_dev || !drm_dev->dev_private) {
  847. dev_err(dev, "DRM not initialized, aborting suspend.\n");
  848. return -ENODEV;
  849. }
  850. if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF)
  851. return 0;
  852. error = i915_drm_freeze(drm_dev);
  853. if (error)
  854. return error;
  855. pci_disable_device(pdev);
  856. pci_set_power_state(pdev, PCI_D3hot);
  857. return 0;
  858. }
  859. static int i915_pm_resume(struct device *dev)
  860. {
  861. struct pci_dev *pdev = to_pci_dev(dev);
  862. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  863. return i915_resume(drm_dev);
  864. }
  865. static int i915_pm_freeze(struct device *dev)
  866. {
  867. struct pci_dev *pdev = to_pci_dev(dev);
  868. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  869. if (!drm_dev || !drm_dev->dev_private) {
  870. dev_err(dev, "DRM not initialized, aborting suspend.\n");
  871. return -ENODEV;
  872. }
  873. return i915_drm_freeze(drm_dev);
  874. }
  875. static int i915_pm_thaw(struct device *dev)
  876. {
  877. struct pci_dev *pdev = to_pci_dev(dev);
  878. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  879. return i915_drm_thaw(drm_dev);
  880. }
  881. static int i915_pm_poweroff(struct device *dev)
  882. {
  883. struct pci_dev *pdev = to_pci_dev(dev);
  884. struct drm_device *drm_dev = pci_get_drvdata(pdev);
  885. return i915_drm_freeze(drm_dev);
  886. }
  887. static const struct dev_pm_ops i915_pm_ops = {
  888. .suspend = i915_pm_suspend,
  889. .resume = i915_pm_resume,
  890. .freeze = i915_pm_freeze,
  891. .thaw = i915_pm_thaw,
  892. .poweroff = i915_pm_poweroff,
  893. .restore = i915_pm_resume,
  894. };
  895. static const struct vm_operations_struct i915_gem_vm_ops = {
  896. .fault = i915_gem_fault,
  897. .open = drm_gem_vm_open,
  898. .close = drm_gem_vm_close,
  899. };
  900. static const struct file_operations i915_driver_fops = {
  901. .owner = THIS_MODULE,
  902. .open = drm_open,
  903. .release = drm_release,
  904. .unlocked_ioctl = drm_ioctl,
  905. .mmap = drm_gem_mmap,
  906. .poll = drm_poll,
  907. .fasync = drm_fasync,
  908. .read = drm_read,
  909. #ifdef CONFIG_COMPAT
  910. .compat_ioctl = i915_compat_ioctl,
  911. #endif
  912. .llseek = noop_llseek,
  913. };
  914. static struct drm_driver driver = {
  915. /* Don't use MTRRs here; the Xserver or userspace app should
  916. * deal with them for Intel hardware.
  917. */
  918. .driver_features =
  919. DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR |*/
  920. DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_GEM | DRIVER_PRIME,
  921. .load = i915_driver_load,
  922. .unload = i915_driver_unload,
  923. .open = i915_driver_open,
  924. .lastclose = i915_driver_lastclose,
  925. .preclose = i915_driver_preclose,
  926. .postclose = i915_driver_postclose,
  927. /* Used in place of i915_pm_ops for non-DRIVER_MODESET */
  928. .suspend = i915_suspend,
  929. .resume = i915_resume,
  930. .device_is_agp = i915_driver_device_is_agp,
  931. .master_create = i915_master_create,
  932. .master_destroy = i915_master_destroy,
  933. #if defined(CONFIG_DEBUG_FS)
  934. .debugfs_init = i915_debugfs_init,
  935. .debugfs_cleanup = i915_debugfs_cleanup,
  936. #endif
  937. .gem_init_object = i915_gem_init_object,
  938. .gem_free_object = i915_gem_free_object,
  939. .gem_vm_ops = &i915_gem_vm_ops,
  940. .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
  941. .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
  942. .gem_prime_export = i915_gem_prime_export,
  943. .gem_prime_import = i915_gem_prime_import,
  944. .dumb_create = i915_gem_dumb_create,
  945. .dumb_map_offset = i915_gem_mmap_gtt,
  946. .dumb_destroy = i915_gem_dumb_destroy,
  947. .ioctls = i915_ioctls,
  948. .fops = &i915_driver_fops,
  949. .name = DRIVER_NAME,
  950. .desc = DRIVER_DESC,
  951. .date = DRIVER_DATE,
  952. .major = DRIVER_MAJOR,
  953. .minor = DRIVER_MINOR,
  954. .patchlevel = DRIVER_PATCHLEVEL,
  955. };
  956. static struct pci_driver i915_pci_driver = {
  957. .name = DRIVER_NAME,
  958. .id_table = pciidlist,
  959. .probe = i915_pci_probe,
  960. .remove = i915_pci_remove,
  961. .driver.pm = &i915_pm_ops,
  962. };
  963. static int __init i915_init(void)
  964. {
  965. driver.num_ioctls = i915_max_ioctl;
  966. /*
  967. * If CONFIG_DRM_I915_KMS is set, default to KMS unless
  968. * explicitly disabled with the module pararmeter.
  969. *
  970. * Otherwise, just follow the parameter (defaulting to off).
  971. *
  972. * Allow optional vga_text_mode_force boot option to override
  973. * the default behavior.
  974. */
  975. #if defined(CONFIG_DRM_I915_KMS)
  976. if (i915_modeset != 0)
  977. driver.driver_features |= DRIVER_MODESET;
  978. #endif
  979. if (i915_modeset == 1)
  980. driver.driver_features |= DRIVER_MODESET;
  981. #ifdef CONFIG_VGA_CONSOLE
  982. if (vgacon_text_force() && i915_modeset == -1)
  983. driver.driver_features &= ~DRIVER_MODESET;
  984. #endif
  985. if (!(driver.driver_features & DRIVER_MODESET))
  986. driver.get_vblank_timestamp = NULL;
  987. return drm_pci_init(&driver, &i915_pci_driver);
  988. }
  989. static void __exit i915_exit(void)
  990. {
  991. drm_pci_exit(&driver, &i915_pci_driver);
  992. }
  993. module_init(i915_init);
  994. module_exit(i915_exit);
  995. MODULE_AUTHOR(DRIVER_AUTHOR);
  996. MODULE_DESCRIPTION(DRIVER_DESC);
  997. MODULE_LICENSE("GPL and additional rights");
  998. /* We give fast paths for the really cool registers */
  999. #define NEEDS_FORCE_WAKE(dev_priv, reg) \
  1000. ((HAS_FORCE_WAKE((dev_priv)->dev)) && \
  1001. ((reg) < 0x40000) && \
  1002. ((reg) != FORCEWAKE))
  1003. static void
  1004. ilk_dummy_write(struct drm_i915_private *dev_priv)
  1005. {
  1006. /* WaIssueDummyWriteToWakeupFromRC6: Issue a dummy write to wake up the
  1007. * chip from rc6 before touching it for real. MI_MODE is masked, hence
  1008. * harmless to write 0 into. */
  1009. I915_WRITE_NOTRACE(MI_MODE, 0);
  1010. }
  1011. static void
  1012. hsw_unclaimed_reg_clear(struct drm_i915_private *dev_priv, u32 reg)
  1013. {
  1014. if (IS_HASWELL(dev_priv->dev) &&
  1015. (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
  1016. DRM_ERROR("Unknown unclaimed register before writing to %x\n",
  1017. reg);
  1018. I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
  1019. }
  1020. }
  1021. static void
  1022. hsw_unclaimed_reg_check(struct drm_i915_private *dev_priv, u32 reg)
  1023. {
  1024. if (IS_HASWELL(dev_priv->dev) &&
  1025. (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
  1026. DRM_ERROR("Unclaimed write to %x\n", reg);
  1027. I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
  1028. }
  1029. }
  1030. #define __i915_read(x, y) \
  1031. u##x i915_read##x(struct drm_i915_private *dev_priv, u32 reg) { \
  1032. u##x val = 0; \
  1033. if (IS_GEN5(dev_priv->dev)) \
  1034. ilk_dummy_write(dev_priv); \
  1035. if (NEEDS_FORCE_WAKE((dev_priv), (reg))) { \
  1036. unsigned long irqflags; \
  1037. spin_lock_irqsave(&dev_priv->gt_lock, irqflags); \
  1038. if (dev_priv->forcewake_count == 0) \
  1039. dev_priv->gt.force_wake_get(dev_priv); \
  1040. val = read##y(dev_priv->regs + reg); \
  1041. if (dev_priv->forcewake_count == 0) \
  1042. dev_priv->gt.force_wake_put(dev_priv); \
  1043. spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags); \
  1044. } else { \
  1045. val = read##y(dev_priv->regs + reg); \
  1046. } \
  1047. trace_i915_reg_rw(false, reg, val, sizeof(val)); \
  1048. return val; \
  1049. }
  1050. __i915_read(8, b)
  1051. __i915_read(16, w)
  1052. __i915_read(32, l)
  1053. __i915_read(64, q)
  1054. #undef __i915_read
  1055. #define __i915_write(x, y) \
  1056. void i915_write##x(struct drm_i915_private *dev_priv, u32 reg, u##x val) { \
  1057. u32 __fifo_ret = 0; \
  1058. trace_i915_reg_rw(true, reg, val, sizeof(val)); \
  1059. if (NEEDS_FORCE_WAKE((dev_priv), (reg))) { \
  1060. __fifo_ret = __gen6_gt_wait_for_fifo(dev_priv); \
  1061. } \
  1062. if (IS_GEN5(dev_priv->dev)) \
  1063. ilk_dummy_write(dev_priv); \
  1064. hsw_unclaimed_reg_clear(dev_priv, reg); \
  1065. write##y(val, dev_priv->regs + reg); \
  1066. if (unlikely(__fifo_ret)) { \
  1067. gen6_gt_check_fifodbg(dev_priv); \
  1068. } \
  1069. hsw_unclaimed_reg_check(dev_priv, reg); \
  1070. }
  1071. __i915_write(8, b)
  1072. __i915_write(16, w)
  1073. __i915_write(32, l)
  1074. __i915_write(64, q)
  1075. #undef __i915_write
  1076. static const struct register_whitelist {
  1077. uint64_t offset;
  1078. uint32_t size;
  1079. uint32_t gen_bitmask; /* support gens, 0x10 for 4, 0x30 for 4 and 5, etc. */
  1080. } whitelist[] = {
  1081. { RING_TIMESTAMP(RENDER_RING_BASE), 8, 0xF0 },
  1082. };
  1083. int i915_reg_read_ioctl(struct drm_device *dev,
  1084. void *data, struct drm_file *file)
  1085. {
  1086. struct drm_i915_private *dev_priv = dev->dev_private;
  1087. struct drm_i915_reg_read *reg = data;
  1088. struct register_whitelist const *entry = whitelist;
  1089. int i;
  1090. for (i = 0; i < ARRAY_SIZE(whitelist); i++, entry++) {
  1091. if (entry->offset == reg->offset &&
  1092. (1 << INTEL_INFO(dev)->gen & entry->gen_bitmask))
  1093. break;
  1094. }
  1095. if (i == ARRAY_SIZE(whitelist))
  1096. return -EINVAL;
  1097. switch (entry->size) {
  1098. case 8:
  1099. reg->val = I915_READ64(reg->offset);
  1100. break;
  1101. case 4:
  1102. reg->val = I915_READ(reg->offset);
  1103. break;
  1104. case 2:
  1105. reg->val = I915_READ16(reg->offset);
  1106. break;
  1107. case 1:
  1108. reg->val = I915_READ8(reg->offset);
  1109. break;
  1110. default:
  1111. WARN_ON(1);
  1112. return -EINVAL;
  1113. }
  1114. return 0;
  1115. }