i915_drv.h 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486
  1. /* i915_drv.h -- Private header for the 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. #ifndef _I915_DRV_H_
  30. #define _I915_DRV_H_
  31. #include <uapi/drm/i915_drm.h>
  32. #include <uapi/drm/drm_fourcc.h>
  33. #include "i915_reg.h"
  34. #include "intel_bios.h"
  35. #include "intel_ringbuffer.h"
  36. #include "intel_lrc.h"
  37. #include "i915_gem_gtt.h"
  38. #include "i915_gem_render_state.h"
  39. #include <linux/io-mapping.h>
  40. #include <linux/i2c.h>
  41. #include <linux/i2c-algo-bit.h>
  42. #include <drm/intel-gtt.h>
  43. #include <drm/drm_legacy.h> /* for struct drm_dma_handle */
  44. #include <drm/drm_gem.h>
  45. #include <linux/backlight.h>
  46. #include <linux/hashtable.h>
  47. #include <linux/intel-iommu.h>
  48. #include <linux/kref.h>
  49. #include <linux/pm_qos.h>
  50. /* General customization:
  51. */
  52. #define DRIVER_NAME "i915"
  53. #define DRIVER_DESC "Intel Graphics"
  54. #define DRIVER_DATE "20150731"
  55. #undef WARN_ON
  56. /* Many gcc seem to no see through this and fall over :( */
  57. #if 0
  58. #define WARN_ON(x) ({ \
  59. bool __i915_warn_cond = (x); \
  60. if (__builtin_constant_p(__i915_warn_cond)) \
  61. BUILD_BUG_ON(__i915_warn_cond); \
  62. WARN(__i915_warn_cond, "WARN_ON(" #x ")"); })
  63. #else
  64. #define WARN_ON(x) WARN((x), "WARN_ON(" #x ")")
  65. #endif
  66. #undef WARN_ON_ONCE
  67. #define WARN_ON_ONCE(x) WARN_ONCE((x), "WARN_ON_ONCE(" #x ")")
  68. #define MISSING_CASE(x) WARN(1, "Missing switch case (%lu) in %s\n", \
  69. (long) (x), __func__);
  70. /* Use I915_STATE_WARN(x) and I915_STATE_WARN_ON() (rather than WARN() and
  71. * WARN_ON()) for hw state sanity checks to check for unexpected conditions
  72. * which may not necessarily be a user visible problem. This will either
  73. * WARN() or DRM_ERROR() depending on the verbose_checks moduleparam, to
  74. * enable distros and users to tailor their preferred amount of i915 abrt
  75. * spam.
  76. */
  77. #define I915_STATE_WARN(condition, format...) ({ \
  78. int __ret_warn_on = !!(condition); \
  79. if (unlikely(__ret_warn_on)) { \
  80. if (i915.verbose_state_checks) \
  81. WARN(1, format); \
  82. else \
  83. DRM_ERROR(format); \
  84. } \
  85. unlikely(__ret_warn_on); \
  86. })
  87. #define I915_STATE_WARN_ON(condition) ({ \
  88. int __ret_warn_on = !!(condition); \
  89. if (unlikely(__ret_warn_on)) { \
  90. if (i915.verbose_state_checks) \
  91. WARN(1, "WARN_ON(" #condition ")\n"); \
  92. else \
  93. DRM_ERROR("WARN_ON(" #condition ")\n"); \
  94. } \
  95. unlikely(__ret_warn_on); \
  96. })
  97. enum pipe {
  98. INVALID_PIPE = -1,
  99. PIPE_A = 0,
  100. PIPE_B,
  101. PIPE_C,
  102. _PIPE_EDP,
  103. I915_MAX_PIPES = _PIPE_EDP
  104. };
  105. #define pipe_name(p) ((p) + 'A')
  106. enum transcoder {
  107. TRANSCODER_A = 0,
  108. TRANSCODER_B,
  109. TRANSCODER_C,
  110. TRANSCODER_EDP,
  111. I915_MAX_TRANSCODERS
  112. };
  113. #define transcoder_name(t) ((t) + 'A')
  114. /*
  115. * This is the maximum (across all platforms) number of planes (primary +
  116. * sprites) that can be active at the same time on one pipe.
  117. *
  118. * This value doesn't count the cursor plane.
  119. */
  120. #define I915_MAX_PLANES 4
  121. enum plane {
  122. PLANE_A = 0,
  123. PLANE_B,
  124. PLANE_C,
  125. };
  126. #define plane_name(p) ((p) + 'A')
  127. #define sprite_name(p, s) ((p) * INTEL_INFO(dev)->num_sprites[(p)] + (s) + 'A')
  128. enum port {
  129. PORT_A = 0,
  130. PORT_B,
  131. PORT_C,
  132. PORT_D,
  133. PORT_E,
  134. I915_MAX_PORTS
  135. };
  136. #define port_name(p) ((p) + 'A')
  137. #define I915_NUM_PHYS_VLV 2
  138. enum dpio_channel {
  139. DPIO_CH0,
  140. DPIO_CH1
  141. };
  142. enum dpio_phy {
  143. DPIO_PHY0,
  144. DPIO_PHY1
  145. };
  146. enum intel_display_power_domain {
  147. POWER_DOMAIN_PIPE_A,
  148. POWER_DOMAIN_PIPE_B,
  149. POWER_DOMAIN_PIPE_C,
  150. POWER_DOMAIN_PIPE_A_PANEL_FITTER,
  151. POWER_DOMAIN_PIPE_B_PANEL_FITTER,
  152. POWER_DOMAIN_PIPE_C_PANEL_FITTER,
  153. POWER_DOMAIN_TRANSCODER_A,
  154. POWER_DOMAIN_TRANSCODER_B,
  155. POWER_DOMAIN_TRANSCODER_C,
  156. POWER_DOMAIN_TRANSCODER_EDP,
  157. POWER_DOMAIN_PORT_DDI_A_2_LANES,
  158. POWER_DOMAIN_PORT_DDI_A_4_LANES,
  159. POWER_DOMAIN_PORT_DDI_B_2_LANES,
  160. POWER_DOMAIN_PORT_DDI_B_4_LANES,
  161. POWER_DOMAIN_PORT_DDI_C_2_LANES,
  162. POWER_DOMAIN_PORT_DDI_C_4_LANES,
  163. POWER_DOMAIN_PORT_DDI_D_2_LANES,
  164. POWER_DOMAIN_PORT_DDI_D_4_LANES,
  165. POWER_DOMAIN_PORT_DDI_E_2_LANES,
  166. POWER_DOMAIN_PORT_DSI,
  167. POWER_DOMAIN_PORT_CRT,
  168. POWER_DOMAIN_PORT_OTHER,
  169. POWER_DOMAIN_VGA,
  170. POWER_DOMAIN_AUDIO,
  171. POWER_DOMAIN_PLLS,
  172. POWER_DOMAIN_AUX_A,
  173. POWER_DOMAIN_AUX_B,
  174. POWER_DOMAIN_AUX_C,
  175. POWER_DOMAIN_AUX_D,
  176. POWER_DOMAIN_INIT,
  177. POWER_DOMAIN_NUM,
  178. };
  179. #define POWER_DOMAIN_PIPE(pipe) ((pipe) + POWER_DOMAIN_PIPE_A)
  180. #define POWER_DOMAIN_PIPE_PANEL_FITTER(pipe) \
  181. ((pipe) + POWER_DOMAIN_PIPE_A_PANEL_FITTER)
  182. #define POWER_DOMAIN_TRANSCODER(tran) \
  183. ((tran) == TRANSCODER_EDP ? POWER_DOMAIN_TRANSCODER_EDP : \
  184. (tran) + POWER_DOMAIN_TRANSCODER_A)
  185. enum hpd_pin {
  186. HPD_NONE = 0,
  187. HPD_TV = HPD_NONE, /* TV is known to be unreliable */
  188. HPD_CRT,
  189. HPD_SDVO_B,
  190. HPD_SDVO_C,
  191. HPD_PORT_A,
  192. HPD_PORT_B,
  193. HPD_PORT_C,
  194. HPD_PORT_D,
  195. HPD_PORT_E,
  196. HPD_NUM_PINS
  197. };
  198. #define for_each_hpd_pin(__pin) \
  199. for ((__pin) = (HPD_NONE + 1); (__pin) < HPD_NUM_PINS; (__pin)++)
  200. struct i915_hotplug {
  201. struct work_struct hotplug_work;
  202. struct {
  203. unsigned long last_jiffies;
  204. int count;
  205. enum {
  206. HPD_ENABLED = 0,
  207. HPD_DISABLED = 1,
  208. HPD_MARK_DISABLED = 2
  209. } state;
  210. } stats[HPD_NUM_PINS];
  211. u32 event_bits;
  212. struct delayed_work reenable_work;
  213. struct intel_digital_port *irq_port[I915_MAX_PORTS];
  214. u32 long_port_mask;
  215. u32 short_port_mask;
  216. struct work_struct dig_port_work;
  217. /*
  218. * if we get a HPD irq from DP and a HPD irq from non-DP
  219. * the non-DP HPD could block the workqueue on a mode config
  220. * mutex getting, that userspace may have taken. However
  221. * userspace is waiting on the DP workqueue to run which is
  222. * blocked behind the non-DP one.
  223. */
  224. struct workqueue_struct *dp_wq;
  225. };
  226. #define I915_GEM_GPU_DOMAINS \
  227. (I915_GEM_DOMAIN_RENDER | \
  228. I915_GEM_DOMAIN_SAMPLER | \
  229. I915_GEM_DOMAIN_COMMAND | \
  230. I915_GEM_DOMAIN_INSTRUCTION | \
  231. I915_GEM_DOMAIN_VERTEX)
  232. #define for_each_pipe(__dev_priv, __p) \
  233. for ((__p) = 0; (__p) < INTEL_INFO(__dev_priv)->num_pipes; (__p)++)
  234. #define for_each_plane(__dev_priv, __pipe, __p) \
  235. for ((__p) = 0; \
  236. (__p) < INTEL_INFO(__dev_priv)->num_sprites[(__pipe)] + 1; \
  237. (__p)++)
  238. #define for_each_sprite(__dev_priv, __p, __s) \
  239. for ((__s) = 0; \
  240. (__s) < INTEL_INFO(__dev_priv)->num_sprites[(__p)]; \
  241. (__s)++)
  242. #define for_each_crtc(dev, crtc) \
  243. list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
  244. #define for_each_intel_plane(dev, intel_plane) \
  245. list_for_each_entry(intel_plane, \
  246. &dev->mode_config.plane_list, \
  247. base.head)
  248. #define for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) \
  249. list_for_each_entry(intel_plane, \
  250. &(dev)->mode_config.plane_list, \
  251. base.head) \
  252. if ((intel_plane)->pipe == (intel_crtc)->pipe)
  253. #define for_each_intel_crtc(dev, intel_crtc) \
  254. list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, base.head)
  255. #define for_each_intel_encoder(dev, intel_encoder) \
  256. list_for_each_entry(intel_encoder, \
  257. &(dev)->mode_config.encoder_list, \
  258. base.head)
  259. #define for_each_intel_connector(dev, intel_connector) \
  260. list_for_each_entry(intel_connector, \
  261. &dev->mode_config.connector_list, \
  262. base.head)
  263. #define for_each_encoder_on_crtc(dev, __crtc, intel_encoder) \
  264. list_for_each_entry((intel_encoder), &(dev)->mode_config.encoder_list, base.head) \
  265. if ((intel_encoder)->base.crtc == (__crtc))
  266. #define for_each_connector_on_encoder(dev, __encoder, intel_connector) \
  267. list_for_each_entry((intel_connector), &(dev)->mode_config.connector_list, base.head) \
  268. if ((intel_connector)->base.encoder == (__encoder))
  269. #define for_each_power_domain(domain, mask) \
  270. for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
  271. if ((1 << (domain)) & (mask))
  272. struct drm_i915_private;
  273. struct i915_mm_struct;
  274. struct i915_mmu_object;
  275. struct drm_i915_file_private {
  276. struct drm_i915_private *dev_priv;
  277. struct drm_file *file;
  278. struct {
  279. spinlock_t lock;
  280. struct list_head request_list;
  281. /* 20ms is a fairly arbitrary limit (greater than the average frame time)
  282. * chosen to prevent the CPU getting more than a frame ahead of the GPU
  283. * (when using lax throttling for the frontbuffer). We also use it to
  284. * offer free GPU waitboosts for severely congested workloads.
  285. */
  286. #define DRM_I915_THROTTLE_JIFFIES msecs_to_jiffies(20)
  287. } mm;
  288. struct idr context_idr;
  289. struct intel_rps_client {
  290. struct list_head link;
  291. unsigned boosts;
  292. } rps;
  293. struct intel_engine_cs *bsd_ring;
  294. };
  295. enum intel_dpll_id {
  296. DPLL_ID_PRIVATE = -1, /* non-shared dpll in use */
  297. /* real shared dpll ids must be >= 0 */
  298. DPLL_ID_PCH_PLL_A = 0,
  299. DPLL_ID_PCH_PLL_B = 1,
  300. /* hsw/bdw */
  301. DPLL_ID_WRPLL1 = 0,
  302. DPLL_ID_WRPLL2 = 1,
  303. /* skl */
  304. DPLL_ID_SKL_DPLL1 = 0,
  305. DPLL_ID_SKL_DPLL2 = 1,
  306. DPLL_ID_SKL_DPLL3 = 2,
  307. };
  308. #define I915_NUM_PLLS 3
  309. struct intel_dpll_hw_state {
  310. /* i9xx, pch plls */
  311. uint32_t dpll;
  312. uint32_t dpll_md;
  313. uint32_t fp0;
  314. uint32_t fp1;
  315. /* hsw, bdw */
  316. uint32_t wrpll;
  317. /* skl */
  318. /*
  319. * DPLL_CTRL1 has 6 bits for each each this DPLL. We store those in
  320. * lower part of ctrl1 and they get shifted into position when writing
  321. * the register. This allows us to easily compare the state to share
  322. * the DPLL.
  323. */
  324. uint32_t ctrl1;
  325. /* HDMI only, 0 when used for DP */
  326. uint32_t cfgcr1, cfgcr2;
  327. /* bxt */
  328. uint32_t ebb0, ebb4, pll0, pll1, pll2, pll3, pll6, pll8, pll9, pll10,
  329. pcsdw12;
  330. };
  331. struct intel_shared_dpll_config {
  332. unsigned crtc_mask; /* mask of CRTCs sharing this PLL */
  333. struct intel_dpll_hw_state hw_state;
  334. };
  335. struct intel_shared_dpll {
  336. struct intel_shared_dpll_config config;
  337. int active; /* count of number of active CRTCs (i.e. DPMS on) */
  338. bool on; /* is the PLL actually active? Disabled during modeset */
  339. const char *name;
  340. /* should match the index in the dev_priv->shared_dplls array */
  341. enum intel_dpll_id id;
  342. /* The mode_set hook is optional and should be used together with the
  343. * intel_prepare_shared_dpll function. */
  344. void (*mode_set)(struct drm_i915_private *dev_priv,
  345. struct intel_shared_dpll *pll);
  346. void (*enable)(struct drm_i915_private *dev_priv,
  347. struct intel_shared_dpll *pll);
  348. void (*disable)(struct drm_i915_private *dev_priv,
  349. struct intel_shared_dpll *pll);
  350. bool (*get_hw_state)(struct drm_i915_private *dev_priv,
  351. struct intel_shared_dpll *pll,
  352. struct intel_dpll_hw_state *hw_state);
  353. };
  354. #define SKL_DPLL0 0
  355. #define SKL_DPLL1 1
  356. #define SKL_DPLL2 2
  357. #define SKL_DPLL3 3
  358. /* Used by dp and fdi links */
  359. struct intel_link_m_n {
  360. uint32_t tu;
  361. uint32_t gmch_m;
  362. uint32_t gmch_n;
  363. uint32_t link_m;
  364. uint32_t link_n;
  365. };
  366. void intel_link_compute_m_n(int bpp, int nlanes,
  367. int pixel_clock, int link_clock,
  368. struct intel_link_m_n *m_n);
  369. /* Interface history:
  370. *
  371. * 1.1: Original.
  372. * 1.2: Add Power Management
  373. * 1.3: Add vblank support
  374. * 1.4: Fix cmdbuffer path, add heap destroy
  375. * 1.5: Add vblank pipe configuration
  376. * 1.6: - New ioctl for scheduling buffer swaps on vertical blank
  377. * - Support vertical blank on secondary display pipe
  378. */
  379. #define DRIVER_MAJOR 1
  380. #define DRIVER_MINOR 6
  381. #define DRIVER_PATCHLEVEL 0
  382. #define WATCH_LISTS 0
  383. struct opregion_header;
  384. struct opregion_acpi;
  385. struct opregion_swsci;
  386. struct opregion_asle;
  387. struct intel_opregion {
  388. struct opregion_header __iomem *header;
  389. struct opregion_acpi __iomem *acpi;
  390. struct opregion_swsci __iomem *swsci;
  391. u32 swsci_gbda_sub_functions;
  392. u32 swsci_sbcb_sub_functions;
  393. struct opregion_asle __iomem *asle;
  394. void __iomem *vbt;
  395. u32 __iomem *lid_state;
  396. struct work_struct asle_work;
  397. };
  398. #define OPREGION_SIZE (8*1024)
  399. struct intel_overlay;
  400. struct intel_overlay_error_state;
  401. #define I915_FENCE_REG_NONE -1
  402. #define I915_MAX_NUM_FENCES 32
  403. /* 32 fences + sign bit for FENCE_REG_NONE */
  404. #define I915_MAX_NUM_FENCE_BITS 6
  405. struct drm_i915_fence_reg {
  406. struct list_head lru_list;
  407. struct drm_i915_gem_object *obj;
  408. int pin_count;
  409. };
  410. struct sdvo_device_mapping {
  411. u8 initialized;
  412. u8 dvo_port;
  413. u8 slave_addr;
  414. u8 dvo_wiring;
  415. u8 i2c_pin;
  416. u8 ddc_pin;
  417. };
  418. struct intel_display_error_state;
  419. struct drm_i915_error_state {
  420. struct kref ref;
  421. struct timeval time;
  422. char error_msg[128];
  423. int iommu;
  424. u32 reset_count;
  425. u32 suspend_count;
  426. /* Generic register state */
  427. u32 eir;
  428. u32 pgtbl_er;
  429. u32 ier;
  430. u32 gtier[4];
  431. u32 ccid;
  432. u32 derrmr;
  433. u32 forcewake;
  434. u32 error; /* gen6+ */
  435. u32 err_int; /* gen7 */
  436. u32 fault_data0; /* gen8, gen9 */
  437. u32 fault_data1; /* gen8, gen9 */
  438. u32 done_reg;
  439. u32 gac_eco;
  440. u32 gam_ecochk;
  441. u32 gab_ctl;
  442. u32 gfx_mode;
  443. u32 extra_instdone[I915_NUM_INSTDONE_REG];
  444. u64 fence[I915_MAX_NUM_FENCES];
  445. struct intel_overlay_error_state *overlay;
  446. struct intel_display_error_state *display;
  447. struct drm_i915_error_object *semaphore_obj;
  448. struct drm_i915_error_ring {
  449. bool valid;
  450. /* Software tracked state */
  451. bool waiting;
  452. int hangcheck_score;
  453. enum intel_ring_hangcheck_action hangcheck_action;
  454. int num_requests;
  455. /* our own tracking of ring head and tail */
  456. u32 cpu_ring_head;
  457. u32 cpu_ring_tail;
  458. u32 semaphore_seqno[I915_NUM_RINGS - 1];
  459. /* Register state */
  460. u32 start;
  461. u32 tail;
  462. u32 head;
  463. u32 ctl;
  464. u32 hws;
  465. u32 ipeir;
  466. u32 ipehr;
  467. u32 instdone;
  468. u32 bbstate;
  469. u32 instpm;
  470. u32 instps;
  471. u32 seqno;
  472. u64 bbaddr;
  473. u64 acthd;
  474. u32 fault_reg;
  475. u64 faddr;
  476. u32 rc_psmi; /* sleep state */
  477. u32 semaphore_mboxes[I915_NUM_RINGS - 1];
  478. struct drm_i915_error_object {
  479. int page_count;
  480. u32 gtt_offset;
  481. u32 *pages[0];
  482. } *ringbuffer, *batchbuffer, *wa_batchbuffer, *ctx, *hws_page;
  483. struct drm_i915_error_request {
  484. long jiffies;
  485. u32 seqno;
  486. u32 tail;
  487. } *requests;
  488. struct {
  489. u32 gfx_mode;
  490. union {
  491. u64 pdp[4];
  492. u32 pp_dir_base;
  493. };
  494. } vm_info;
  495. pid_t pid;
  496. char comm[TASK_COMM_LEN];
  497. } ring[I915_NUM_RINGS];
  498. struct drm_i915_error_buffer {
  499. u32 size;
  500. u32 name;
  501. u32 rseqno[I915_NUM_RINGS], wseqno;
  502. u32 gtt_offset;
  503. u32 read_domains;
  504. u32 write_domain;
  505. s32 fence_reg:I915_MAX_NUM_FENCE_BITS;
  506. s32 pinned:2;
  507. u32 tiling:2;
  508. u32 dirty:1;
  509. u32 purgeable:1;
  510. u32 userptr:1;
  511. s32 ring:4;
  512. u32 cache_level:3;
  513. } **active_bo, **pinned_bo;
  514. u32 *active_bo_count, *pinned_bo_count;
  515. u32 vm_count;
  516. };
  517. struct intel_connector;
  518. struct intel_encoder;
  519. struct intel_crtc_state;
  520. struct intel_initial_plane_config;
  521. struct intel_crtc;
  522. struct intel_limit;
  523. struct dpll;
  524. struct drm_i915_display_funcs {
  525. int (*get_display_clock_speed)(struct drm_device *dev);
  526. int (*get_fifo_size)(struct drm_device *dev, int plane);
  527. /**
  528. * find_dpll() - Find the best values for the PLL
  529. * @limit: limits for the PLL
  530. * @crtc: current CRTC
  531. * @target: target frequency in kHz
  532. * @refclk: reference clock frequency in kHz
  533. * @match_clock: if provided, @best_clock P divider must
  534. * match the P divider from @match_clock
  535. * used for LVDS downclocking
  536. * @best_clock: best PLL values found
  537. *
  538. * Returns true on success, false on failure.
  539. */
  540. bool (*find_dpll)(const struct intel_limit *limit,
  541. struct intel_crtc_state *crtc_state,
  542. int target, int refclk,
  543. struct dpll *match_clock,
  544. struct dpll *best_clock);
  545. void (*update_wm)(struct drm_crtc *crtc);
  546. void (*update_sprite_wm)(struct drm_plane *plane,
  547. struct drm_crtc *crtc,
  548. uint32_t sprite_width, uint32_t sprite_height,
  549. int pixel_size, bool enable, bool scaled);
  550. int (*modeset_calc_cdclk)(struct drm_atomic_state *state);
  551. void (*modeset_commit_cdclk)(struct drm_atomic_state *state);
  552. /* Returns the active state of the crtc, and if the crtc is active,
  553. * fills out the pipe-config with the hw state. */
  554. bool (*get_pipe_config)(struct intel_crtc *,
  555. struct intel_crtc_state *);
  556. void (*get_initial_plane_config)(struct intel_crtc *,
  557. struct intel_initial_plane_config *);
  558. int (*crtc_compute_clock)(struct intel_crtc *crtc,
  559. struct intel_crtc_state *crtc_state);
  560. void (*crtc_enable)(struct drm_crtc *crtc);
  561. void (*crtc_disable)(struct drm_crtc *crtc);
  562. void (*audio_codec_enable)(struct drm_connector *connector,
  563. struct intel_encoder *encoder,
  564. struct drm_display_mode *mode);
  565. void (*audio_codec_disable)(struct intel_encoder *encoder);
  566. void (*fdi_link_train)(struct drm_crtc *crtc);
  567. void (*init_clock_gating)(struct drm_device *dev);
  568. int (*queue_flip)(struct drm_device *dev, struct drm_crtc *crtc,
  569. struct drm_framebuffer *fb,
  570. struct drm_i915_gem_object *obj,
  571. struct drm_i915_gem_request *req,
  572. uint32_t flags);
  573. void (*update_primary_plane)(struct drm_crtc *crtc,
  574. struct drm_framebuffer *fb,
  575. int x, int y);
  576. void (*hpd_irq_setup)(struct drm_device *dev);
  577. /* clock updates for mode set */
  578. /* cursor updates */
  579. /* render clock increase/decrease */
  580. /* display clock increase/decrease */
  581. /* pll clock increase/decrease */
  582. int (*setup_backlight)(struct intel_connector *connector, enum pipe pipe);
  583. uint32_t (*get_backlight)(struct intel_connector *connector);
  584. void (*set_backlight)(struct intel_connector *connector,
  585. uint32_t level);
  586. void (*disable_backlight)(struct intel_connector *connector);
  587. void (*enable_backlight)(struct intel_connector *connector);
  588. };
  589. enum forcewake_domain_id {
  590. FW_DOMAIN_ID_RENDER = 0,
  591. FW_DOMAIN_ID_BLITTER,
  592. FW_DOMAIN_ID_MEDIA,
  593. FW_DOMAIN_ID_COUNT
  594. };
  595. enum forcewake_domains {
  596. FORCEWAKE_RENDER = (1 << FW_DOMAIN_ID_RENDER),
  597. FORCEWAKE_BLITTER = (1 << FW_DOMAIN_ID_BLITTER),
  598. FORCEWAKE_MEDIA = (1 << FW_DOMAIN_ID_MEDIA),
  599. FORCEWAKE_ALL = (FORCEWAKE_RENDER |
  600. FORCEWAKE_BLITTER |
  601. FORCEWAKE_MEDIA)
  602. };
  603. struct intel_uncore_funcs {
  604. void (*force_wake_get)(struct drm_i915_private *dev_priv,
  605. enum forcewake_domains domains);
  606. void (*force_wake_put)(struct drm_i915_private *dev_priv,
  607. enum forcewake_domains domains);
  608. uint8_t (*mmio_readb)(struct drm_i915_private *dev_priv, off_t offset, bool trace);
  609. uint16_t (*mmio_readw)(struct drm_i915_private *dev_priv, off_t offset, bool trace);
  610. uint32_t (*mmio_readl)(struct drm_i915_private *dev_priv, off_t offset, bool trace);
  611. uint64_t (*mmio_readq)(struct drm_i915_private *dev_priv, off_t offset, bool trace);
  612. void (*mmio_writeb)(struct drm_i915_private *dev_priv, off_t offset,
  613. uint8_t val, bool trace);
  614. void (*mmio_writew)(struct drm_i915_private *dev_priv, off_t offset,
  615. uint16_t val, bool trace);
  616. void (*mmio_writel)(struct drm_i915_private *dev_priv, off_t offset,
  617. uint32_t val, bool trace);
  618. void (*mmio_writeq)(struct drm_i915_private *dev_priv, off_t offset,
  619. uint64_t val, bool trace);
  620. };
  621. struct intel_uncore {
  622. spinlock_t lock; /** lock is also taken in irq contexts. */
  623. struct intel_uncore_funcs funcs;
  624. unsigned fifo_count;
  625. enum forcewake_domains fw_domains;
  626. struct intel_uncore_forcewake_domain {
  627. struct drm_i915_private *i915;
  628. enum forcewake_domain_id id;
  629. unsigned wake_count;
  630. struct timer_list timer;
  631. u32 reg_set;
  632. u32 val_set;
  633. u32 val_clear;
  634. u32 reg_ack;
  635. u32 reg_post;
  636. u32 val_reset;
  637. } fw_domain[FW_DOMAIN_ID_COUNT];
  638. };
  639. /* Iterate over initialised fw domains */
  640. #define for_each_fw_domain_mask(domain__, mask__, dev_priv__, i__) \
  641. for ((i__) = 0, (domain__) = &(dev_priv__)->uncore.fw_domain[0]; \
  642. (i__) < FW_DOMAIN_ID_COUNT; \
  643. (i__)++, (domain__) = &(dev_priv__)->uncore.fw_domain[i__]) \
  644. if (((mask__) & (dev_priv__)->uncore.fw_domains) & (1 << (i__)))
  645. #define for_each_fw_domain(domain__, dev_priv__, i__) \
  646. for_each_fw_domain_mask(domain__, FORCEWAKE_ALL, dev_priv__, i__)
  647. enum csr_state {
  648. FW_UNINITIALIZED = 0,
  649. FW_LOADED,
  650. FW_FAILED
  651. };
  652. struct intel_csr {
  653. const char *fw_path;
  654. uint32_t *dmc_payload;
  655. uint32_t dmc_fw_size;
  656. uint32_t mmio_count;
  657. uint32_t mmioaddr[8];
  658. uint32_t mmiodata[8];
  659. enum csr_state state;
  660. };
  661. #define DEV_INFO_FOR_EACH_FLAG(func, sep) \
  662. func(is_mobile) sep \
  663. func(is_i85x) sep \
  664. func(is_i915g) sep \
  665. func(is_i945gm) sep \
  666. func(is_g33) sep \
  667. func(need_gfx_hws) sep \
  668. func(is_g4x) sep \
  669. func(is_pineview) sep \
  670. func(is_broadwater) sep \
  671. func(is_crestline) sep \
  672. func(is_ivybridge) sep \
  673. func(is_valleyview) sep \
  674. func(is_haswell) sep \
  675. func(is_skylake) sep \
  676. func(is_preliminary) sep \
  677. func(has_fbc) sep \
  678. func(has_pipe_cxsr) sep \
  679. func(has_hotplug) sep \
  680. func(cursor_needs_physical) sep \
  681. func(has_overlay) sep \
  682. func(overlay_needs_physical) sep \
  683. func(supports_tv) sep \
  684. func(has_llc) sep \
  685. func(has_ddi) sep \
  686. func(has_fpga_dbg)
  687. #define DEFINE_FLAG(name) u8 name:1
  688. #define SEP_SEMICOLON ;
  689. struct intel_device_info {
  690. u32 display_mmio_offset;
  691. u16 device_id;
  692. u8 num_pipes:3;
  693. u8 num_sprites[I915_MAX_PIPES];
  694. u8 gen;
  695. u8 ring_mask; /* Rings supported by the HW */
  696. DEV_INFO_FOR_EACH_FLAG(DEFINE_FLAG, SEP_SEMICOLON);
  697. /* Register offsets for the various display pipes and transcoders */
  698. int pipe_offsets[I915_MAX_TRANSCODERS];
  699. int trans_offsets[I915_MAX_TRANSCODERS];
  700. int palette_offsets[I915_MAX_PIPES];
  701. int cursor_offsets[I915_MAX_PIPES];
  702. /* Slice/subslice/EU info */
  703. u8 slice_total;
  704. u8 subslice_total;
  705. u8 subslice_per_slice;
  706. u8 eu_total;
  707. u8 eu_per_subslice;
  708. /* For each slice, which subslice(s) has(have) 7 EUs (bitfield)? */
  709. u8 subslice_7eu[3];
  710. u8 has_slice_pg:1;
  711. u8 has_subslice_pg:1;
  712. u8 has_eu_pg:1;
  713. };
  714. #undef DEFINE_FLAG
  715. #undef SEP_SEMICOLON
  716. enum i915_cache_level {
  717. I915_CACHE_NONE = 0,
  718. I915_CACHE_LLC, /* also used for snoopable memory on non-LLC */
  719. I915_CACHE_L3_LLC, /* gen7+, L3 sits between the domain specifc
  720. caches, eg sampler/render caches, and the
  721. large Last-Level-Cache. LLC is coherent with
  722. the CPU, but L3 is only visible to the GPU. */
  723. I915_CACHE_WT, /* hsw:gt3e WriteThrough for scanouts */
  724. };
  725. struct i915_ctx_hang_stats {
  726. /* This context had batch pending when hang was declared */
  727. unsigned batch_pending;
  728. /* This context had batch active when hang was declared */
  729. unsigned batch_active;
  730. /* Time when this context was last blamed for a GPU reset */
  731. unsigned long guilty_ts;
  732. /* If the contexts causes a second GPU hang within this time,
  733. * it is permanently banned from submitting any more work.
  734. */
  735. unsigned long ban_period_seconds;
  736. /* This context is banned to submit more work */
  737. bool banned;
  738. };
  739. /* This must match up with the value previously used for execbuf2.rsvd1. */
  740. #define DEFAULT_CONTEXT_HANDLE 0
  741. #define CONTEXT_NO_ZEROMAP (1<<0)
  742. /**
  743. * struct intel_context - as the name implies, represents a context.
  744. * @ref: reference count.
  745. * @user_handle: userspace tracking identity for this context.
  746. * @remap_slice: l3 row remapping information.
  747. * @flags: context specific flags:
  748. * CONTEXT_NO_ZEROMAP: do not allow mapping things to page 0.
  749. * @file_priv: filp associated with this context (NULL for global default
  750. * context).
  751. * @hang_stats: information about the role of this context in possible GPU
  752. * hangs.
  753. * @ppgtt: virtual memory space used by this context.
  754. * @legacy_hw_ctx: render context backing object and whether it is correctly
  755. * initialized (legacy ring submission mechanism only).
  756. * @link: link in the global list of contexts.
  757. *
  758. * Contexts are memory images used by the hardware to store copies of their
  759. * internal state.
  760. */
  761. struct intel_context {
  762. struct kref ref;
  763. int user_handle;
  764. uint8_t remap_slice;
  765. struct drm_i915_private *i915;
  766. int flags;
  767. struct drm_i915_file_private *file_priv;
  768. struct i915_ctx_hang_stats hang_stats;
  769. struct i915_hw_ppgtt *ppgtt;
  770. /* Legacy ring buffer submission */
  771. struct {
  772. struct drm_i915_gem_object *rcs_state;
  773. bool initialized;
  774. } legacy_hw_ctx;
  775. /* Execlists */
  776. bool rcs_initialized;
  777. struct {
  778. struct drm_i915_gem_object *state;
  779. struct intel_ringbuffer *ringbuf;
  780. int pin_count;
  781. } engine[I915_NUM_RINGS];
  782. struct list_head link;
  783. };
  784. enum fb_op_origin {
  785. ORIGIN_GTT,
  786. ORIGIN_CPU,
  787. ORIGIN_CS,
  788. ORIGIN_FLIP,
  789. ORIGIN_DIRTYFB,
  790. };
  791. struct i915_fbc {
  792. /* This is always the inner lock when overlapping with struct_mutex and
  793. * it's the outer lock when overlapping with stolen_lock. */
  794. struct mutex lock;
  795. unsigned long uncompressed_size;
  796. unsigned threshold;
  797. unsigned int fb_id;
  798. unsigned int possible_framebuffer_bits;
  799. unsigned int busy_bits;
  800. struct intel_crtc *crtc;
  801. int y;
  802. struct drm_mm_node compressed_fb;
  803. struct drm_mm_node *compressed_llb;
  804. bool false_color;
  805. /* Tracks whether the HW is actually enabled, not whether the feature is
  806. * possible. */
  807. bool enabled;
  808. struct intel_fbc_work {
  809. struct delayed_work work;
  810. struct intel_crtc *crtc;
  811. struct drm_framebuffer *fb;
  812. } *fbc_work;
  813. enum no_fbc_reason {
  814. FBC_OK, /* FBC is enabled */
  815. FBC_UNSUPPORTED, /* FBC is not supported by this chipset */
  816. FBC_NO_OUTPUT, /* no outputs enabled to compress */
  817. FBC_STOLEN_TOO_SMALL, /* not enough space for buffers */
  818. FBC_UNSUPPORTED_MODE, /* interlace or doublescanned mode */
  819. FBC_MODE_TOO_LARGE, /* mode too large for compression */
  820. FBC_BAD_PLANE, /* fbc not supported on plane */
  821. FBC_NOT_TILED, /* buffer not tiled */
  822. FBC_MULTIPLE_PIPES, /* more than one pipe active */
  823. FBC_MODULE_PARAM,
  824. FBC_CHIP_DEFAULT, /* disabled by default on this chip */
  825. FBC_ROTATION, /* rotation is not supported */
  826. FBC_IN_DBG_MASTER, /* kernel debugger is active */
  827. } no_fbc_reason;
  828. bool (*fbc_enabled)(struct drm_i915_private *dev_priv);
  829. void (*enable_fbc)(struct intel_crtc *crtc);
  830. void (*disable_fbc)(struct drm_i915_private *dev_priv);
  831. };
  832. /**
  833. * HIGH_RR is the highest eDP panel refresh rate read from EDID
  834. * LOW_RR is the lowest eDP panel refresh rate found from EDID
  835. * parsing for same resolution.
  836. */
  837. enum drrs_refresh_rate_type {
  838. DRRS_HIGH_RR,
  839. DRRS_LOW_RR,
  840. DRRS_MAX_RR, /* RR count */
  841. };
  842. enum drrs_support_type {
  843. DRRS_NOT_SUPPORTED = 0,
  844. STATIC_DRRS_SUPPORT = 1,
  845. SEAMLESS_DRRS_SUPPORT = 2
  846. };
  847. struct intel_dp;
  848. struct i915_drrs {
  849. struct mutex mutex;
  850. struct delayed_work work;
  851. struct intel_dp *dp;
  852. unsigned busy_frontbuffer_bits;
  853. enum drrs_refresh_rate_type refresh_rate_type;
  854. enum drrs_support_type type;
  855. };
  856. struct i915_psr {
  857. struct mutex lock;
  858. bool sink_support;
  859. bool source_ok;
  860. struct intel_dp *enabled;
  861. bool active;
  862. struct delayed_work work;
  863. unsigned busy_frontbuffer_bits;
  864. bool psr2_support;
  865. bool aux_frame_sync;
  866. };
  867. enum intel_pch {
  868. PCH_NONE = 0, /* No PCH present */
  869. PCH_IBX, /* Ibexpeak PCH */
  870. PCH_CPT, /* Cougarpoint PCH */
  871. PCH_LPT, /* Lynxpoint PCH */
  872. PCH_SPT, /* Sunrisepoint PCH */
  873. PCH_NOP,
  874. };
  875. enum intel_sbi_destination {
  876. SBI_ICLK,
  877. SBI_MPHY,
  878. };
  879. #define QUIRK_PIPEA_FORCE (1<<0)
  880. #define QUIRK_LVDS_SSC_DISABLE (1<<1)
  881. #define QUIRK_INVERT_BRIGHTNESS (1<<2)
  882. #define QUIRK_BACKLIGHT_PRESENT (1<<3)
  883. #define QUIRK_PIPEB_FORCE (1<<4)
  884. #define QUIRK_PIN_SWIZZLED_PAGES (1<<5)
  885. struct intel_fbdev;
  886. struct intel_fbc_work;
  887. struct intel_gmbus {
  888. struct i2c_adapter adapter;
  889. u32 force_bit;
  890. u32 reg0;
  891. u32 gpio_reg;
  892. struct i2c_algo_bit_data bit_algo;
  893. struct drm_i915_private *dev_priv;
  894. };
  895. struct i915_suspend_saved_registers {
  896. u32 saveDSPARB;
  897. u32 saveLVDS;
  898. u32 savePP_ON_DELAYS;
  899. u32 savePP_OFF_DELAYS;
  900. u32 savePP_ON;
  901. u32 savePP_OFF;
  902. u32 savePP_CONTROL;
  903. u32 savePP_DIVISOR;
  904. u32 saveFBC_CONTROL;
  905. u32 saveCACHE_MODE_0;
  906. u32 saveMI_ARB_STATE;
  907. u32 saveSWF0[16];
  908. u32 saveSWF1[16];
  909. u32 saveSWF2[3];
  910. uint64_t saveFENCE[I915_MAX_NUM_FENCES];
  911. u32 savePCH_PORT_HOTPLUG;
  912. u16 saveGCDGMBUS;
  913. };
  914. struct vlv_s0ix_state {
  915. /* GAM */
  916. u32 wr_watermark;
  917. u32 gfx_prio_ctrl;
  918. u32 arb_mode;
  919. u32 gfx_pend_tlb0;
  920. u32 gfx_pend_tlb1;
  921. u32 lra_limits[GEN7_LRA_LIMITS_REG_NUM];
  922. u32 media_max_req_count;
  923. u32 gfx_max_req_count;
  924. u32 render_hwsp;
  925. u32 ecochk;
  926. u32 bsd_hwsp;
  927. u32 blt_hwsp;
  928. u32 tlb_rd_addr;
  929. /* MBC */
  930. u32 g3dctl;
  931. u32 gsckgctl;
  932. u32 mbctl;
  933. /* GCP */
  934. u32 ucgctl1;
  935. u32 ucgctl3;
  936. u32 rcgctl1;
  937. u32 rcgctl2;
  938. u32 rstctl;
  939. u32 misccpctl;
  940. /* GPM */
  941. u32 gfxpause;
  942. u32 rpdeuhwtc;
  943. u32 rpdeuc;
  944. u32 ecobus;
  945. u32 pwrdwnupctl;
  946. u32 rp_down_timeout;
  947. u32 rp_deucsw;
  948. u32 rcubmabdtmr;
  949. u32 rcedata;
  950. u32 spare2gh;
  951. /* Display 1 CZ domain */
  952. u32 gt_imr;
  953. u32 gt_ier;
  954. u32 pm_imr;
  955. u32 pm_ier;
  956. u32 gt_scratch[GEN7_GT_SCRATCH_REG_NUM];
  957. /* GT SA CZ domain */
  958. u32 tilectl;
  959. u32 gt_fifoctl;
  960. u32 gtlc_wake_ctrl;
  961. u32 gtlc_survive;
  962. u32 pmwgicz;
  963. /* Display 2 CZ domain */
  964. u32 gu_ctl0;
  965. u32 gu_ctl1;
  966. u32 pcbr;
  967. u32 clock_gate_dis2;
  968. };
  969. struct intel_rps_ei {
  970. u32 cz_clock;
  971. u32 render_c0;
  972. u32 media_c0;
  973. };
  974. struct intel_gen6_power_mgmt {
  975. /*
  976. * work, interrupts_enabled and pm_iir are protected by
  977. * dev_priv->irq_lock
  978. */
  979. struct work_struct work;
  980. bool interrupts_enabled;
  981. u32 pm_iir;
  982. /* Frequencies are stored in potentially platform dependent multiples.
  983. * In other words, *_freq needs to be multiplied by X to be interesting.
  984. * Soft limits are those which are used for the dynamic reclocking done
  985. * by the driver (raise frequencies under heavy loads, and lower for
  986. * lighter loads). Hard limits are those imposed by the hardware.
  987. *
  988. * A distinction is made for overclocking, which is never enabled by
  989. * default, and is considered to be above the hard limit if it's
  990. * possible at all.
  991. */
  992. u8 cur_freq; /* Current frequency (cached, may not == HW) */
  993. u8 min_freq_softlimit; /* Minimum frequency permitted by the driver */
  994. u8 max_freq_softlimit; /* Max frequency permitted by the driver */
  995. u8 max_freq; /* Maximum frequency, RP0 if not overclocking */
  996. u8 min_freq; /* AKA RPn. Minimum frequency */
  997. u8 idle_freq; /* Frequency to request when we are idle */
  998. u8 efficient_freq; /* AKA RPe. Pre-determined balanced frequency */
  999. u8 rp1_freq; /* "less than" RP0 power/freqency */
  1000. u8 rp0_freq; /* Non-overclocked max frequency. */
  1001. u32 cz_freq;
  1002. u8 up_threshold; /* Current %busy required to uplock */
  1003. u8 down_threshold; /* Current %busy required to downclock */
  1004. int last_adj;
  1005. enum { LOW_POWER, BETWEEN, HIGH_POWER } power;
  1006. spinlock_t client_lock;
  1007. struct list_head clients;
  1008. bool client_boost;
  1009. bool enabled;
  1010. struct delayed_work delayed_resume_work;
  1011. unsigned boosts;
  1012. struct intel_rps_client semaphores, mmioflips;
  1013. /* manual wa residency calculations */
  1014. struct intel_rps_ei up_ei, down_ei;
  1015. /*
  1016. * Protects RPS/RC6 register access and PCU communication.
  1017. * Must be taken after struct_mutex if nested. Note that
  1018. * this lock may be held for long periods of time when
  1019. * talking to hw - so only take it when talking to hw!
  1020. */
  1021. struct mutex hw_lock;
  1022. };
  1023. /* defined intel_pm.c */
  1024. extern spinlock_t mchdev_lock;
  1025. struct intel_ilk_power_mgmt {
  1026. u8 cur_delay;
  1027. u8 min_delay;
  1028. u8 max_delay;
  1029. u8 fmax;
  1030. u8 fstart;
  1031. u64 last_count1;
  1032. unsigned long last_time1;
  1033. unsigned long chipset_power;
  1034. u64 last_count2;
  1035. u64 last_time2;
  1036. unsigned long gfx_power;
  1037. u8 corr;
  1038. int c_m;
  1039. int r_t;
  1040. };
  1041. struct drm_i915_private;
  1042. struct i915_power_well;
  1043. struct i915_power_well_ops {
  1044. /*
  1045. * Synchronize the well's hw state to match the current sw state, for
  1046. * example enable/disable it based on the current refcount. Called
  1047. * during driver init and resume time, possibly after first calling
  1048. * the enable/disable handlers.
  1049. */
  1050. void (*sync_hw)(struct drm_i915_private *dev_priv,
  1051. struct i915_power_well *power_well);
  1052. /*
  1053. * Enable the well and resources that depend on it (for example
  1054. * interrupts located on the well). Called after the 0->1 refcount
  1055. * transition.
  1056. */
  1057. void (*enable)(struct drm_i915_private *dev_priv,
  1058. struct i915_power_well *power_well);
  1059. /*
  1060. * Disable the well and resources that depend on it. Called after
  1061. * the 1->0 refcount transition.
  1062. */
  1063. void (*disable)(struct drm_i915_private *dev_priv,
  1064. struct i915_power_well *power_well);
  1065. /* Returns the hw enabled state. */
  1066. bool (*is_enabled)(struct drm_i915_private *dev_priv,
  1067. struct i915_power_well *power_well);
  1068. };
  1069. /* Power well structure for haswell */
  1070. struct i915_power_well {
  1071. const char *name;
  1072. bool always_on;
  1073. /* power well enable/disable usage count */
  1074. int count;
  1075. /* cached hw enabled state */
  1076. bool hw_enabled;
  1077. unsigned long domains;
  1078. unsigned long data;
  1079. const struct i915_power_well_ops *ops;
  1080. };
  1081. struct i915_power_domains {
  1082. /*
  1083. * Power wells needed for initialization at driver init and suspend
  1084. * time are on. They are kept on until after the first modeset.
  1085. */
  1086. bool init_power_on;
  1087. bool initializing;
  1088. int power_well_count;
  1089. struct mutex lock;
  1090. int domain_use_count[POWER_DOMAIN_NUM];
  1091. struct i915_power_well *power_wells;
  1092. };
  1093. #define MAX_L3_SLICES 2
  1094. struct intel_l3_parity {
  1095. u32 *remap_info[MAX_L3_SLICES];
  1096. struct work_struct error_work;
  1097. int which_slice;
  1098. };
  1099. struct i915_gem_mm {
  1100. /** Memory allocator for GTT stolen memory */
  1101. struct drm_mm stolen;
  1102. /** Protects the usage of the GTT stolen memory allocator. This is
  1103. * always the inner lock when overlapping with struct_mutex. */
  1104. struct mutex stolen_lock;
  1105. /** List of all objects in gtt_space. Used to restore gtt
  1106. * mappings on resume */
  1107. struct list_head bound_list;
  1108. /**
  1109. * List of objects which are not bound to the GTT (thus
  1110. * are idle and not used by the GPU) but still have
  1111. * (presumably uncached) pages still attached.
  1112. */
  1113. struct list_head unbound_list;
  1114. /** Usable portion of the GTT for GEM */
  1115. unsigned long stolen_base; /* limited to low memory (32-bit) */
  1116. /** PPGTT used for aliasing the PPGTT with the GTT */
  1117. struct i915_hw_ppgtt *aliasing_ppgtt;
  1118. struct notifier_block oom_notifier;
  1119. struct shrinker shrinker;
  1120. bool shrinker_no_lock_stealing;
  1121. /** LRU list of objects with fence regs on them. */
  1122. struct list_head fence_list;
  1123. /**
  1124. * We leave the user IRQ off as much as possible,
  1125. * but this means that requests will finish and never
  1126. * be retired once the system goes idle. Set a timer to
  1127. * fire periodically while the ring is running. When it
  1128. * fires, go retire requests.
  1129. */
  1130. struct delayed_work retire_work;
  1131. /**
  1132. * When we detect an idle GPU, we want to turn on
  1133. * powersaving features. So once we see that there
  1134. * are no more requests outstanding and no more
  1135. * arrive within a small period of time, we fire
  1136. * off the idle_work.
  1137. */
  1138. struct delayed_work idle_work;
  1139. /**
  1140. * Are we in a non-interruptible section of code like
  1141. * modesetting?
  1142. */
  1143. bool interruptible;
  1144. /**
  1145. * Is the GPU currently considered idle, or busy executing userspace
  1146. * requests? Whilst idle, we attempt to power down the hardware and
  1147. * display clocks. In order to reduce the effect on performance, there
  1148. * is a slight delay before we do so.
  1149. */
  1150. bool busy;
  1151. /* the indicator for dispatch video commands on two BSD rings */
  1152. int bsd_ring_dispatch_index;
  1153. /** Bit 6 swizzling required for X tiling */
  1154. uint32_t bit_6_swizzle_x;
  1155. /** Bit 6 swizzling required for Y tiling */
  1156. uint32_t bit_6_swizzle_y;
  1157. /* accounting, useful for userland debugging */
  1158. spinlock_t object_stat_lock;
  1159. size_t object_memory;
  1160. u32 object_count;
  1161. };
  1162. struct drm_i915_error_state_buf {
  1163. struct drm_i915_private *i915;
  1164. unsigned bytes;
  1165. unsigned size;
  1166. int err;
  1167. u8 *buf;
  1168. loff_t start;
  1169. loff_t pos;
  1170. };
  1171. struct i915_error_state_file_priv {
  1172. struct drm_device *dev;
  1173. struct drm_i915_error_state *error;
  1174. };
  1175. struct i915_gpu_error {
  1176. /* For hangcheck timer */
  1177. #define DRM_I915_HANGCHECK_PERIOD 1500 /* in ms */
  1178. #define DRM_I915_HANGCHECK_JIFFIES msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD)
  1179. /* Hang gpu twice in this window and your context gets banned */
  1180. #define DRM_I915_CTX_BAN_PERIOD DIV_ROUND_UP(8*DRM_I915_HANGCHECK_PERIOD, 1000)
  1181. struct workqueue_struct *hangcheck_wq;
  1182. struct delayed_work hangcheck_work;
  1183. /* For reset and error_state handling. */
  1184. spinlock_t lock;
  1185. /* Protected by the above dev->gpu_error.lock. */
  1186. struct drm_i915_error_state *first_error;
  1187. unsigned long missed_irq_rings;
  1188. /**
  1189. * State variable controlling the reset flow and count
  1190. *
  1191. * This is a counter which gets incremented when reset is triggered,
  1192. * and again when reset has been handled. So odd values (lowest bit set)
  1193. * means that reset is in progress and even values that
  1194. * (reset_counter >> 1):th reset was successfully completed.
  1195. *
  1196. * If reset is not completed succesfully, the I915_WEDGE bit is
  1197. * set meaning that hardware is terminally sour and there is no
  1198. * recovery. All waiters on the reset_queue will be woken when
  1199. * that happens.
  1200. *
  1201. * This counter is used by the wait_seqno code to notice that reset
  1202. * event happened and it needs to restart the entire ioctl (since most
  1203. * likely the seqno it waited for won't ever signal anytime soon).
  1204. *
  1205. * This is important for lock-free wait paths, where no contended lock
  1206. * naturally enforces the correct ordering between the bail-out of the
  1207. * waiter and the gpu reset work code.
  1208. */
  1209. atomic_t reset_counter;
  1210. #define I915_RESET_IN_PROGRESS_FLAG 1
  1211. #define I915_WEDGED (1 << 31)
  1212. /**
  1213. * Waitqueue to signal when the reset has completed. Used by clients
  1214. * that wait for dev_priv->mm.wedged to settle.
  1215. */
  1216. wait_queue_head_t reset_queue;
  1217. /* Userspace knobs for gpu hang simulation;
  1218. * combines both a ring mask, and extra flags
  1219. */
  1220. u32 stop_rings;
  1221. #define I915_STOP_RING_ALLOW_BAN (1 << 31)
  1222. #define I915_STOP_RING_ALLOW_WARN (1 << 30)
  1223. /* For missed irq/seqno simulation. */
  1224. unsigned int test_irq_rings;
  1225. /* Used to prevent gem_check_wedged returning -EAGAIN during gpu reset */
  1226. bool reload_in_reset;
  1227. };
  1228. enum modeset_restore {
  1229. MODESET_ON_LID_OPEN,
  1230. MODESET_DONE,
  1231. MODESET_SUSPENDED,
  1232. };
  1233. #define DP_AUX_A 0x40
  1234. #define DP_AUX_B 0x10
  1235. #define DP_AUX_C 0x20
  1236. #define DP_AUX_D 0x30
  1237. #define DDC_PIN_B 0x05
  1238. #define DDC_PIN_C 0x04
  1239. #define DDC_PIN_D 0x06
  1240. struct ddi_vbt_port_info {
  1241. /*
  1242. * This is an index in the HDMI/DVI DDI buffer translation table.
  1243. * The special value HDMI_LEVEL_SHIFT_UNKNOWN means the VBT didn't
  1244. * populate this field.
  1245. */
  1246. #define HDMI_LEVEL_SHIFT_UNKNOWN 0xff
  1247. uint8_t hdmi_level_shift;
  1248. uint8_t supports_dvi:1;
  1249. uint8_t supports_hdmi:1;
  1250. uint8_t supports_dp:1;
  1251. uint8_t alternate_aux_channel;
  1252. uint8_t alternate_ddc_pin;
  1253. uint8_t dp_boost_level;
  1254. uint8_t hdmi_boost_level;
  1255. };
  1256. enum psr_lines_to_wait {
  1257. PSR_0_LINES_TO_WAIT = 0,
  1258. PSR_1_LINE_TO_WAIT,
  1259. PSR_4_LINES_TO_WAIT,
  1260. PSR_8_LINES_TO_WAIT
  1261. };
  1262. struct intel_vbt_data {
  1263. struct drm_display_mode *lfp_lvds_vbt_mode; /* if any */
  1264. struct drm_display_mode *sdvo_lvds_vbt_mode; /* if any */
  1265. /* Feature bits */
  1266. unsigned int int_tv_support:1;
  1267. unsigned int lvds_dither:1;
  1268. unsigned int lvds_vbt:1;
  1269. unsigned int int_crt_support:1;
  1270. unsigned int lvds_use_ssc:1;
  1271. unsigned int display_clock_mode:1;
  1272. unsigned int fdi_rx_polarity_inverted:1;
  1273. unsigned int has_mipi:1;
  1274. int lvds_ssc_freq;
  1275. unsigned int bios_lvds_val; /* initial [PCH_]LVDS reg val in VBIOS */
  1276. enum drrs_support_type drrs_type;
  1277. /* eDP */
  1278. int edp_rate;
  1279. int edp_lanes;
  1280. int edp_preemphasis;
  1281. int edp_vswing;
  1282. bool edp_initialized;
  1283. bool edp_support;
  1284. int edp_bpp;
  1285. struct edp_power_seq edp_pps;
  1286. struct {
  1287. bool full_link;
  1288. bool require_aux_wakeup;
  1289. int idle_frames;
  1290. enum psr_lines_to_wait lines_to_wait;
  1291. int tp1_wakeup_time;
  1292. int tp2_tp3_wakeup_time;
  1293. } psr;
  1294. struct {
  1295. u16 pwm_freq_hz;
  1296. bool present;
  1297. bool active_low_pwm;
  1298. u8 min_brightness; /* min_brightness/255 of max */
  1299. } backlight;
  1300. /* MIPI DSI */
  1301. struct {
  1302. u16 port;
  1303. u16 panel_id;
  1304. struct mipi_config *config;
  1305. struct mipi_pps_data *pps;
  1306. u8 seq_version;
  1307. u32 size;
  1308. u8 *data;
  1309. u8 *sequence[MIPI_SEQ_MAX];
  1310. } dsi;
  1311. int crt_ddc_pin;
  1312. int child_dev_num;
  1313. union child_device_config *child_dev;
  1314. struct ddi_vbt_port_info ddi_port_info[I915_MAX_PORTS];
  1315. };
  1316. enum intel_ddb_partitioning {
  1317. INTEL_DDB_PART_1_2,
  1318. INTEL_DDB_PART_5_6, /* IVB+ */
  1319. };
  1320. struct intel_wm_level {
  1321. bool enable;
  1322. uint32_t pri_val;
  1323. uint32_t spr_val;
  1324. uint32_t cur_val;
  1325. uint32_t fbc_val;
  1326. };
  1327. struct ilk_wm_values {
  1328. uint32_t wm_pipe[3];
  1329. uint32_t wm_lp[3];
  1330. uint32_t wm_lp_spr[3];
  1331. uint32_t wm_linetime[3];
  1332. bool enable_fbc_wm;
  1333. enum intel_ddb_partitioning partitioning;
  1334. };
  1335. struct vlv_pipe_wm {
  1336. uint16_t primary;
  1337. uint16_t sprite[2];
  1338. uint8_t cursor;
  1339. };
  1340. struct vlv_sr_wm {
  1341. uint16_t plane;
  1342. uint8_t cursor;
  1343. };
  1344. struct vlv_wm_values {
  1345. struct vlv_pipe_wm pipe[3];
  1346. struct vlv_sr_wm sr;
  1347. struct {
  1348. uint8_t cursor;
  1349. uint8_t sprite[2];
  1350. uint8_t primary;
  1351. } ddl[3];
  1352. uint8_t level;
  1353. bool cxsr;
  1354. };
  1355. struct skl_ddb_entry {
  1356. uint16_t start, end; /* in number of blocks, 'end' is exclusive */
  1357. };
  1358. static inline uint16_t skl_ddb_entry_size(const struct skl_ddb_entry *entry)
  1359. {
  1360. return entry->end - entry->start;
  1361. }
  1362. static inline bool skl_ddb_entry_equal(const struct skl_ddb_entry *e1,
  1363. const struct skl_ddb_entry *e2)
  1364. {
  1365. if (e1->start == e2->start && e1->end == e2->end)
  1366. return true;
  1367. return false;
  1368. }
  1369. struct skl_ddb_allocation {
  1370. struct skl_ddb_entry pipe[I915_MAX_PIPES];
  1371. struct skl_ddb_entry plane[I915_MAX_PIPES][I915_MAX_PLANES]; /* packed/uv */
  1372. struct skl_ddb_entry y_plane[I915_MAX_PIPES][I915_MAX_PLANES]; /* y-plane */
  1373. struct skl_ddb_entry cursor[I915_MAX_PIPES];
  1374. };
  1375. struct skl_wm_values {
  1376. bool dirty[I915_MAX_PIPES];
  1377. struct skl_ddb_allocation ddb;
  1378. uint32_t wm_linetime[I915_MAX_PIPES];
  1379. uint32_t plane[I915_MAX_PIPES][I915_MAX_PLANES][8];
  1380. uint32_t cursor[I915_MAX_PIPES][8];
  1381. uint32_t plane_trans[I915_MAX_PIPES][I915_MAX_PLANES];
  1382. uint32_t cursor_trans[I915_MAX_PIPES];
  1383. };
  1384. struct skl_wm_level {
  1385. bool plane_en[I915_MAX_PLANES];
  1386. bool cursor_en;
  1387. uint16_t plane_res_b[I915_MAX_PLANES];
  1388. uint8_t plane_res_l[I915_MAX_PLANES];
  1389. uint16_t cursor_res_b;
  1390. uint8_t cursor_res_l;
  1391. };
  1392. /*
  1393. * This struct helps tracking the state needed for runtime PM, which puts the
  1394. * device in PCI D3 state. Notice that when this happens, nothing on the
  1395. * graphics device works, even register access, so we don't get interrupts nor
  1396. * anything else.
  1397. *
  1398. * Every piece of our code that needs to actually touch the hardware needs to
  1399. * either call intel_runtime_pm_get or call intel_display_power_get with the
  1400. * appropriate power domain.
  1401. *
  1402. * Our driver uses the autosuspend delay feature, which means we'll only really
  1403. * suspend if we stay with zero refcount for a certain amount of time. The
  1404. * default value is currently very conservative (see intel_runtime_pm_enable), but
  1405. * it can be changed with the standard runtime PM files from sysfs.
  1406. *
  1407. * The irqs_disabled variable becomes true exactly after we disable the IRQs and
  1408. * goes back to false exactly before we reenable the IRQs. We use this variable
  1409. * to check if someone is trying to enable/disable IRQs while they're supposed
  1410. * to be disabled. This shouldn't happen and we'll print some error messages in
  1411. * case it happens.
  1412. *
  1413. * For more, read the Documentation/power/runtime_pm.txt.
  1414. */
  1415. struct i915_runtime_pm {
  1416. bool suspended;
  1417. bool irqs_enabled;
  1418. };
  1419. enum intel_pipe_crc_source {
  1420. INTEL_PIPE_CRC_SOURCE_NONE,
  1421. INTEL_PIPE_CRC_SOURCE_PLANE1,
  1422. INTEL_PIPE_CRC_SOURCE_PLANE2,
  1423. INTEL_PIPE_CRC_SOURCE_PF,
  1424. INTEL_PIPE_CRC_SOURCE_PIPE,
  1425. /* TV/DP on pre-gen5/vlv can't use the pipe source. */
  1426. INTEL_PIPE_CRC_SOURCE_TV,
  1427. INTEL_PIPE_CRC_SOURCE_DP_B,
  1428. INTEL_PIPE_CRC_SOURCE_DP_C,
  1429. INTEL_PIPE_CRC_SOURCE_DP_D,
  1430. INTEL_PIPE_CRC_SOURCE_AUTO,
  1431. INTEL_PIPE_CRC_SOURCE_MAX,
  1432. };
  1433. struct intel_pipe_crc_entry {
  1434. uint32_t frame;
  1435. uint32_t crc[5];
  1436. };
  1437. #define INTEL_PIPE_CRC_ENTRIES_NR 128
  1438. struct intel_pipe_crc {
  1439. spinlock_t lock;
  1440. bool opened; /* exclusive access to the result file */
  1441. struct intel_pipe_crc_entry *entries;
  1442. enum intel_pipe_crc_source source;
  1443. int head, tail;
  1444. wait_queue_head_t wq;
  1445. };
  1446. struct i915_frontbuffer_tracking {
  1447. struct mutex lock;
  1448. /*
  1449. * Tracking bits for delayed frontbuffer flushing du to gpu activity or
  1450. * scheduled flips.
  1451. */
  1452. unsigned busy_bits;
  1453. unsigned flip_bits;
  1454. };
  1455. struct i915_wa_reg {
  1456. u32 addr;
  1457. u32 value;
  1458. /* bitmask representing WA bits */
  1459. u32 mask;
  1460. };
  1461. #define I915_MAX_WA_REGS 16
  1462. struct i915_workarounds {
  1463. struct i915_wa_reg reg[I915_MAX_WA_REGS];
  1464. u32 count;
  1465. };
  1466. struct i915_virtual_gpu {
  1467. bool active;
  1468. };
  1469. struct i915_execbuffer_params {
  1470. struct drm_device *dev;
  1471. struct drm_file *file;
  1472. uint32_t dispatch_flags;
  1473. uint32_t args_batch_start_offset;
  1474. uint32_t batch_obj_vm_offset;
  1475. struct intel_engine_cs *ring;
  1476. struct drm_i915_gem_object *batch_obj;
  1477. struct intel_context *ctx;
  1478. struct drm_i915_gem_request *request;
  1479. };
  1480. struct drm_i915_private {
  1481. struct drm_device *dev;
  1482. struct kmem_cache *objects;
  1483. struct kmem_cache *vmas;
  1484. struct kmem_cache *requests;
  1485. const struct intel_device_info info;
  1486. int relative_constants_mode;
  1487. void __iomem *regs;
  1488. struct intel_uncore uncore;
  1489. struct i915_virtual_gpu vgpu;
  1490. struct intel_csr csr;
  1491. /* Display CSR-related protection */
  1492. struct mutex csr_lock;
  1493. struct intel_gmbus gmbus[GMBUS_NUM_PINS];
  1494. /** gmbus_mutex protects against concurrent usage of the single hw gmbus
  1495. * controller on different i2c buses. */
  1496. struct mutex gmbus_mutex;
  1497. /**
  1498. * Base address of the gmbus and gpio block.
  1499. */
  1500. uint32_t gpio_mmio_base;
  1501. /* MMIO base address for MIPI regs */
  1502. uint32_t mipi_mmio_base;
  1503. wait_queue_head_t gmbus_wait_queue;
  1504. struct pci_dev *bridge_dev;
  1505. struct intel_engine_cs ring[I915_NUM_RINGS];
  1506. struct drm_i915_gem_object *semaphore_obj;
  1507. uint32_t last_seqno, next_seqno;
  1508. struct drm_dma_handle *status_page_dmah;
  1509. struct resource mch_res;
  1510. /* protects the irq masks */
  1511. spinlock_t irq_lock;
  1512. /* protects the mmio flip data */
  1513. spinlock_t mmio_flip_lock;
  1514. bool display_irqs_enabled;
  1515. /* To control wakeup latency, e.g. for irq-driven dp aux transfers. */
  1516. struct pm_qos_request pm_qos;
  1517. /* Sideband mailbox protection */
  1518. struct mutex sb_lock;
  1519. /** Cached value of IMR to avoid reads in updating the bitfield */
  1520. union {
  1521. u32 irq_mask;
  1522. u32 de_irq_mask[I915_MAX_PIPES];
  1523. };
  1524. u32 gt_irq_mask;
  1525. u32 pm_irq_mask;
  1526. u32 pm_rps_events;
  1527. u32 pipestat_irq_mask[I915_MAX_PIPES];
  1528. struct i915_hotplug hotplug;
  1529. struct i915_fbc fbc;
  1530. struct i915_drrs drrs;
  1531. struct intel_opregion opregion;
  1532. struct intel_vbt_data vbt;
  1533. bool preserve_bios_swizzle;
  1534. /* overlay */
  1535. struct intel_overlay *overlay;
  1536. /* backlight registers and fields in struct intel_panel */
  1537. struct mutex backlight_lock;
  1538. /* LVDS info */
  1539. bool no_aux_handshake;
  1540. /* protects panel power sequencer state */
  1541. struct mutex pps_mutex;
  1542. struct drm_i915_fence_reg fence_regs[I915_MAX_NUM_FENCES]; /* assume 965 */
  1543. int fence_reg_start; /* 4 if userland hasn't ioctl'd us yet */
  1544. int num_fence_regs; /* 8 on pre-965, 16 otherwise */
  1545. unsigned int fsb_freq, mem_freq, is_ddr3;
  1546. unsigned int skl_boot_cdclk;
  1547. unsigned int cdclk_freq, max_cdclk_freq;
  1548. unsigned int hpll_freq;
  1549. /**
  1550. * wq - Driver workqueue for GEM.
  1551. *
  1552. * NOTE: Work items scheduled here are not allowed to grab any modeset
  1553. * locks, for otherwise the flushing done in the pageflip code will
  1554. * result in deadlocks.
  1555. */
  1556. struct workqueue_struct *wq;
  1557. /* Display functions */
  1558. struct drm_i915_display_funcs display;
  1559. /* PCH chipset type */
  1560. enum intel_pch pch_type;
  1561. unsigned short pch_id;
  1562. unsigned long quirks;
  1563. enum modeset_restore modeset_restore;
  1564. struct mutex modeset_restore_lock;
  1565. struct list_head vm_list; /* Global list of all address spaces */
  1566. struct i915_gtt gtt; /* VM representing the global address space */
  1567. struct i915_gem_mm mm;
  1568. DECLARE_HASHTABLE(mm_structs, 7);
  1569. struct mutex mm_lock;
  1570. /* Kernel Modesetting */
  1571. struct sdvo_device_mapping sdvo_mappings[2];
  1572. struct drm_crtc *plane_to_crtc_mapping[I915_MAX_PIPES];
  1573. struct drm_crtc *pipe_to_crtc_mapping[I915_MAX_PIPES];
  1574. wait_queue_head_t pending_flip_queue;
  1575. #ifdef CONFIG_DEBUG_FS
  1576. struct intel_pipe_crc pipe_crc[I915_MAX_PIPES];
  1577. #endif
  1578. int num_shared_dpll;
  1579. struct intel_shared_dpll shared_dplls[I915_NUM_PLLS];
  1580. int dpio_phy_iosf_port[I915_NUM_PHYS_VLV];
  1581. struct i915_workarounds workarounds;
  1582. /* Reclocking support */
  1583. bool render_reclock_avail;
  1584. struct i915_frontbuffer_tracking fb_tracking;
  1585. u16 orig_clock;
  1586. bool mchbar_need_disable;
  1587. struct intel_l3_parity l3_parity;
  1588. /* Cannot be determined by PCIID. You must always read a register. */
  1589. size_t ellc_size;
  1590. /* gen6+ rps state */
  1591. struct intel_gen6_power_mgmt rps;
  1592. /* ilk-only ips/rps state. Everything in here is protected by the global
  1593. * mchdev_lock in intel_pm.c */
  1594. struct intel_ilk_power_mgmt ips;
  1595. struct i915_power_domains power_domains;
  1596. struct i915_psr psr;
  1597. struct i915_gpu_error gpu_error;
  1598. struct drm_i915_gem_object *vlv_pctx;
  1599. #ifdef CONFIG_DRM_FBDEV_EMULATION
  1600. /* list of fbdev register on this device */
  1601. struct intel_fbdev *fbdev;
  1602. struct work_struct fbdev_suspend_work;
  1603. #endif
  1604. struct drm_property *broadcast_rgb_property;
  1605. struct drm_property *force_audio_property;
  1606. /* hda/i915 audio component */
  1607. struct i915_audio_component *audio_component;
  1608. bool audio_component_registered;
  1609. uint32_t hw_context_size;
  1610. struct list_head context_list;
  1611. u32 fdi_rx_config;
  1612. u32 chv_phy_control;
  1613. u32 suspend_count;
  1614. struct i915_suspend_saved_registers regfile;
  1615. struct vlv_s0ix_state vlv_s0ix_state;
  1616. struct {
  1617. /*
  1618. * Raw watermark latency values:
  1619. * in 0.1us units for WM0,
  1620. * in 0.5us units for WM1+.
  1621. */
  1622. /* primary */
  1623. uint16_t pri_latency[5];
  1624. /* sprite */
  1625. uint16_t spr_latency[5];
  1626. /* cursor */
  1627. uint16_t cur_latency[5];
  1628. /*
  1629. * Raw watermark memory latency values
  1630. * for SKL for all 8 levels
  1631. * in 1us units.
  1632. */
  1633. uint16_t skl_latency[8];
  1634. /*
  1635. * The skl_wm_values structure is a bit too big for stack
  1636. * allocation, so we keep the staging struct where we store
  1637. * intermediate results here instead.
  1638. */
  1639. struct skl_wm_values skl_results;
  1640. /* current hardware state */
  1641. union {
  1642. struct ilk_wm_values hw;
  1643. struct skl_wm_values skl_hw;
  1644. struct vlv_wm_values vlv;
  1645. };
  1646. uint8_t max_level;
  1647. } wm;
  1648. struct i915_runtime_pm pm;
  1649. /* Abstract the submission mechanism (legacy ringbuffer or execlists) away */
  1650. struct {
  1651. int (*execbuf_submit)(struct i915_execbuffer_params *params,
  1652. struct drm_i915_gem_execbuffer2 *args,
  1653. struct list_head *vmas);
  1654. int (*init_rings)(struct drm_device *dev);
  1655. void (*cleanup_ring)(struct intel_engine_cs *ring);
  1656. void (*stop_ring)(struct intel_engine_cs *ring);
  1657. } gt;
  1658. bool edp_low_vswing;
  1659. /*
  1660. * NOTE: This is the dri1/ums dungeon, don't add stuff here. Your patch
  1661. * will be rejected. Instead look for a better place.
  1662. */
  1663. };
  1664. static inline struct drm_i915_private *to_i915(const struct drm_device *dev)
  1665. {
  1666. return dev->dev_private;
  1667. }
  1668. static inline struct drm_i915_private *dev_to_i915(struct device *dev)
  1669. {
  1670. return to_i915(dev_get_drvdata(dev));
  1671. }
  1672. /* Iterate over initialised rings */
  1673. #define for_each_ring(ring__, dev_priv__, i__) \
  1674. for ((i__) = 0; (i__) < I915_NUM_RINGS; (i__)++) \
  1675. if (((ring__) = &(dev_priv__)->ring[(i__)]), intel_ring_initialized((ring__)))
  1676. enum hdmi_force_audio {
  1677. HDMI_AUDIO_OFF_DVI = -2, /* no aux data for HDMI-DVI converter */
  1678. HDMI_AUDIO_OFF, /* force turn off HDMI audio */
  1679. HDMI_AUDIO_AUTO, /* trust EDID */
  1680. HDMI_AUDIO_ON, /* force turn on HDMI audio */
  1681. };
  1682. #define I915_GTT_OFFSET_NONE ((u32)-1)
  1683. struct drm_i915_gem_object_ops {
  1684. /* Interface between the GEM object and its backing storage.
  1685. * get_pages() is called once prior to the use of the associated set
  1686. * of pages before to binding them into the GTT, and put_pages() is
  1687. * called after we no longer need them. As we expect there to be
  1688. * associated cost with migrating pages between the backing storage
  1689. * and making them available for the GPU (e.g. clflush), we may hold
  1690. * onto the pages after they are no longer referenced by the GPU
  1691. * in case they may be used again shortly (for example migrating the
  1692. * pages to a different memory domain within the GTT). put_pages()
  1693. * will therefore most likely be called when the object itself is
  1694. * being released or under memory pressure (where we attempt to
  1695. * reap pages for the shrinker).
  1696. */
  1697. int (*get_pages)(struct drm_i915_gem_object *);
  1698. void (*put_pages)(struct drm_i915_gem_object *);
  1699. int (*dmabuf_export)(struct drm_i915_gem_object *);
  1700. void (*release)(struct drm_i915_gem_object *);
  1701. };
  1702. /*
  1703. * Frontbuffer tracking bits. Set in obj->frontbuffer_bits while a gem bo is
  1704. * considered to be the frontbuffer for the given plane interface-vise. This
  1705. * doesn't mean that the hw necessarily already scans it out, but that any
  1706. * rendering (by the cpu or gpu) will land in the frontbuffer eventually.
  1707. *
  1708. * We have one bit per pipe and per scanout plane type.
  1709. */
  1710. #define INTEL_FRONTBUFFER_BITS_PER_PIPE 4
  1711. #define INTEL_FRONTBUFFER_BITS \
  1712. (INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES)
  1713. #define INTEL_FRONTBUFFER_PRIMARY(pipe) \
  1714. (1 << (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe)))
  1715. #define INTEL_FRONTBUFFER_CURSOR(pipe) \
  1716. (1 << (1 +(INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
  1717. #define INTEL_FRONTBUFFER_SPRITE(pipe) \
  1718. (1 << (2 +(INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
  1719. #define INTEL_FRONTBUFFER_OVERLAY(pipe) \
  1720. (1 << (3 +(INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe))))
  1721. #define INTEL_FRONTBUFFER_ALL_MASK(pipe) \
  1722. (0xf << (INTEL_FRONTBUFFER_BITS_PER_PIPE * (pipe)))
  1723. struct drm_i915_gem_object {
  1724. struct drm_gem_object base;
  1725. const struct drm_i915_gem_object_ops *ops;
  1726. /** List of VMAs backed by this object */
  1727. struct list_head vma_list;
  1728. /** Stolen memory for this object, instead of being backed by shmem. */
  1729. struct drm_mm_node *stolen;
  1730. struct list_head global_list;
  1731. struct list_head ring_list[I915_NUM_RINGS];
  1732. /** Used in execbuf to temporarily hold a ref */
  1733. struct list_head obj_exec_link;
  1734. struct list_head batch_pool_link;
  1735. /**
  1736. * This is set if the object is on the active lists (has pending
  1737. * rendering and so a non-zero seqno), and is not set if it i s on
  1738. * inactive (ready to be unbound) list.
  1739. */
  1740. unsigned int active:I915_NUM_RINGS;
  1741. /**
  1742. * This is set if the object has been written to since last bound
  1743. * to the GTT
  1744. */
  1745. unsigned int dirty:1;
  1746. /**
  1747. * Fence register bits (if any) for this object. Will be set
  1748. * as needed when mapped into the GTT.
  1749. * Protected by dev->struct_mutex.
  1750. */
  1751. signed int fence_reg:I915_MAX_NUM_FENCE_BITS;
  1752. /**
  1753. * Advice: are the backing pages purgeable?
  1754. */
  1755. unsigned int madv:2;
  1756. /**
  1757. * Current tiling mode for the object.
  1758. */
  1759. unsigned int tiling_mode:2;
  1760. /**
  1761. * Whether the tiling parameters for the currently associated fence
  1762. * register have changed. Note that for the purposes of tracking
  1763. * tiling changes we also treat the unfenced register, the register
  1764. * slot that the object occupies whilst it executes a fenced
  1765. * command (such as BLT on gen2/3), as a "fence".
  1766. */
  1767. unsigned int fence_dirty:1;
  1768. /**
  1769. * Is the object at the current location in the gtt mappable and
  1770. * fenceable? Used to avoid costly recalculations.
  1771. */
  1772. unsigned int map_and_fenceable:1;
  1773. /**
  1774. * Whether the current gtt mapping needs to be mappable (and isn't just
  1775. * mappable by accident). Track pin and fault separate for a more
  1776. * accurate mappable working set.
  1777. */
  1778. unsigned int fault_mappable:1;
  1779. /*
  1780. * Is the object to be mapped as read-only to the GPU
  1781. * Only honoured if hardware has relevant pte bit
  1782. */
  1783. unsigned long gt_ro:1;
  1784. unsigned int cache_level:3;
  1785. unsigned int cache_dirty:1;
  1786. unsigned int frontbuffer_bits:INTEL_FRONTBUFFER_BITS;
  1787. unsigned int pin_display;
  1788. struct sg_table *pages;
  1789. int pages_pin_count;
  1790. struct get_page {
  1791. struct scatterlist *sg;
  1792. int last;
  1793. } get_page;
  1794. /* prime dma-buf support */
  1795. void *dma_buf_vmapping;
  1796. int vmapping_count;
  1797. /** Breadcrumb of last rendering to the buffer.
  1798. * There can only be one writer, but we allow for multiple readers.
  1799. * If there is a writer that necessarily implies that all other
  1800. * read requests are complete - but we may only be lazily clearing
  1801. * the read requests. A read request is naturally the most recent
  1802. * request on a ring, so we may have two different write and read
  1803. * requests on one ring where the write request is older than the
  1804. * read request. This allows for the CPU to read from an active
  1805. * buffer by only waiting for the write to complete.
  1806. * */
  1807. struct drm_i915_gem_request *last_read_req[I915_NUM_RINGS];
  1808. struct drm_i915_gem_request *last_write_req;
  1809. /** Breadcrumb of last fenced GPU access to the buffer. */
  1810. struct drm_i915_gem_request *last_fenced_req;
  1811. /** Current tiling stride for the object, if it's tiled. */
  1812. uint32_t stride;
  1813. /** References from framebuffers, locks out tiling changes. */
  1814. unsigned long framebuffer_references;
  1815. /** Record of address bit 17 of each page at last unbind. */
  1816. unsigned long *bit_17;
  1817. union {
  1818. /** for phy allocated objects */
  1819. struct drm_dma_handle *phys_handle;
  1820. struct i915_gem_userptr {
  1821. uintptr_t ptr;
  1822. unsigned read_only :1;
  1823. unsigned workers :4;
  1824. #define I915_GEM_USERPTR_MAX_WORKERS 15
  1825. struct i915_mm_struct *mm;
  1826. struct i915_mmu_object *mmu_object;
  1827. struct work_struct *work;
  1828. } userptr;
  1829. };
  1830. };
  1831. #define to_intel_bo(x) container_of(x, struct drm_i915_gem_object, base)
  1832. void i915_gem_track_fb(struct drm_i915_gem_object *old,
  1833. struct drm_i915_gem_object *new,
  1834. unsigned frontbuffer_bits);
  1835. /**
  1836. * Request queue structure.
  1837. *
  1838. * The request queue allows us to note sequence numbers that have been emitted
  1839. * and may be associated with active buffers to be retired.
  1840. *
  1841. * By keeping this list, we can avoid having to do questionable sequence
  1842. * number comparisons on buffer last_read|write_seqno. It also allows an
  1843. * emission time to be associated with the request for tracking how far ahead
  1844. * of the GPU the submission is.
  1845. *
  1846. * The requests are reference counted, so upon creation they should have an
  1847. * initial reference taken using kref_init
  1848. */
  1849. struct drm_i915_gem_request {
  1850. struct kref ref;
  1851. /** On Which ring this request was generated */
  1852. struct drm_i915_private *i915;
  1853. struct intel_engine_cs *ring;
  1854. /** GEM sequence number associated with this request. */
  1855. uint32_t seqno;
  1856. /** Position in the ringbuffer of the start of the request */
  1857. u32 head;
  1858. /**
  1859. * Position in the ringbuffer of the start of the postfix.
  1860. * This is required to calculate the maximum available ringbuffer
  1861. * space without overwriting the postfix.
  1862. */
  1863. u32 postfix;
  1864. /** Position in the ringbuffer of the end of the whole request */
  1865. u32 tail;
  1866. /**
  1867. * Context and ring buffer related to this request
  1868. * Contexts are refcounted, so when this request is associated with a
  1869. * context, we must increment the context's refcount, to guarantee that
  1870. * it persists while any request is linked to it. Requests themselves
  1871. * are also refcounted, so the request will only be freed when the last
  1872. * reference to it is dismissed, and the code in
  1873. * i915_gem_request_free() will then decrement the refcount on the
  1874. * context.
  1875. */
  1876. struct intel_context *ctx;
  1877. struct intel_ringbuffer *ringbuf;
  1878. /** Batch buffer related to this request if any (used for
  1879. error state dump only) */
  1880. struct drm_i915_gem_object *batch_obj;
  1881. /** Time at which this request was emitted, in jiffies. */
  1882. unsigned long emitted_jiffies;
  1883. /** global list entry for this request */
  1884. struct list_head list;
  1885. struct drm_i915_file_private *file_priv;
  1886. /** file_priv list entry for this request */
  1887. struct list_head client_list;
  1888. /** process identifier submitting this request */
  1889. struct pid *pid;
  1890. /**
  1891. * The ELSP only accepts two elements at a time, so we queue
  1892. * context/tail pairs on a given queue (ring->execlist_queue) until the
  1893. * hardware is available. The queue serves a double purpose: we also use
  1894. * it to keep track of the up to 2 contexts currently in the hardware
  1895. * (usually one in execution and the other queued up by the GPU): We
  1896. * only remove elements from the head of the queue when the hardware
  1897. * informs us that an element has been completed.
  1898. *
  1899. * All accesses to the queue are mediated by a spinlock
  1900. * (ring->execlist_lock).
  1901. */
  1902. /** Execlist link in the submission queue.*/
  1903. struct list_head execlist_link;
  1904. /** Execlists no. of times this request has been sent to the ELSP */
  1905. int elsp_submitted;
  1906. };
  1907. int i915_gem_request_alloc(struct intel_engine_cs *ring,
  1908. struct intel_context *ctx,
  1909. struct drm_i915_gem_request **req_out);
  1910. void i915_gem_request_cancel(struct drm_i915_gem_request *req);
  1911. void i915_gem_request_free(struct kref *req_ref);
  1912. int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
  1913. struct drm_file *file);
  1914. static inline uint32_t
  1915. i915_gem_request_get_seqno(struct drm_i915_gem_request *req)
  1916. {
  1917. return req ? req->seqno : 0;
  1918. }
  1919. static inline struct intel_engine_cs *
  1920. i915_gem_request_get_ring(struct drm_i915_gem_request *req)
  1921. {
  1922. return req ? req->ring : NULL;
  1923. }
  1924. static inline struct drm_i915_gem_request *
  1925. i915_gem_request_reference(struct drm_i915_gem_request *req)
  1926. {
  1927. if (req)
  1928. kref_get(&req->ref);
  1929. return req;
  1930. }
  1931. static inline void
  1932. i915_gem_request_unreference(struct drm_i915_gem_request *req)
  1933. {
  1934. WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
  1935. kref_put(&req->ref, i915_gem_request_free);
  1936. }
  1937. static inline void
  1938. i915_gem_request_unreference__unlocked(struct drm_i915_gem_request *req)
  1939. {
  1940. struct drm_device *dev;
  1941. if (!req)
  1942. return;
  1943. dev = req->ring->dev;
  1944. if (kref_put_mutex(&req->ref, i915_gem_request_free, &dev->struct_mutex))
  1945. mutex_unlock(&dev->struct_mutex);
  1946. }
  1947. static inline void i915_gem_request_assign(struct drm_i915_gem_request **pdst,
  1948. struct drm_i915_gem_request *src)
  1949. {
  1950. if (src)
  1951. i915_gem_request_reference(src);
  1952. if (*pdst)
  1953. i915_gem_request_unreference(*pdst);
  1954. *pdst = src;
  1955. }
  1956. /*
  1957. * XXX: i915_gem_request_completed should be here but currently needs the
  1958. * definition of i915_seqno_passed() which is below. It will be moved in
  1959. * a later patch when the call to i915_seqno_passed() is obsoleted...
  1960. */
  1961. /*
  1962. * A command that requires special handling by the command parser.
  1963. */
  1964. struct drm_i915_cmd_descriptor {
  1965. /*
  1966. * Flags describing how the command parser processes the command.
  1967. *
  1968. * CMD_DESC_FIXED: The command has a fixed length if this is set,
  1969. * a length mask if not set
  1970. * CMD_DESC_SKIP: The command is allowed but does not follow the
  1971. * standard length encoding for the opcode range in
  1972. * which it falls
  1973. * CMD_DESC_REJECT: The command is never allowed
  1974. * CMD_DESC_REGISTER: The command should be checked against the
  1975. * register whitelist for the appropriate ring
  1976. * CMD_DESC_MASTER: The command is allowed if the submitting process
  1977. * is the DRM master
  1978. */
  1979. u32 flags;
  1980. #define CMD_DESC_FIXED (1<<0)
  1981. #define CMD_DESC_SKIP (1<<1)
  1982. #define CMD_DESC_REJECT (1<<2)
  1983. #define CMD_DESC_REGISTER (1<<3)
  1984. #define CMD_DESC_BITMASK (1<<4)
  1985. #define CMD_DESC_MASTER (1<<5)
  1986. /*
  1987. * The command's unique identification bits and the bitmask to get them.
  1988. * This isn't strictly the opcode field as defined in the spec and may
  1989. * also include type, subtype, and/or subop fields.
  1990. */
  1991. struct {
  1992. u32 value;
  1993. u32 mask;
  1994. } cmd;
  1995. /*
  1996. * The command's length. The command is either fixed length (i.e. does
  1997. * not include a length field) or has a length field mask. The flag
  1998. * CMD_DESC_FIXED indicates a fixed length. Otherwise, the command has
  1999. * a length mask. All command entries in a command table must include
  2000. * length information.
  2001. */
  2002. union {
  2003. u32 fixed;
  2004. u32 mask;
  2005. } length;
  2006. /*
  2007. * Describes where to find a register address in the command to check
  2008. * against the ring's register whitelist. Only valid if flags has the
  2009. * CMD_DESC_REGISTER bit set.
  2010. *
  2011. * A non-zero step value implies that the command may access multiple
  2012. * registers in sequence (e.g. LRI), in that case step gives the
  2013. * distance in dwords between individual offset fields.
  2014. */
  2015. struct {
  2016. u32 offset;
  2017. u32 mask;
  2018. u32 step;
  2019. } reg;
  2020. #define MAX_CMD_DESC_BITMASKS 3
  2021. /*
  2022. * Describes command checks where a particular dword is masked and
  2023. * compared against an expected value. If the command does not match
  2024. * the expected value, the parser rejects it. Only valid if flags has
  2025. * the CMD_DESC_BITMASK bit set. Only entries where mask is non-zero
  2026. * are valid.
  2027. *
  2028. * If the check specifies a non-zero condition_mask then the parser
  2029. * only performs the check when the bits specified by condition_mask
  2030. * are non-zero.
  2031. */
  2032. struct {
  2033. u32 offset;
  2034. u32 mask;
  2035. u32 expected;
  2036. u32 condition_offset;
  2037. u32 condition_mask;
  2038. } bits[MAX_CMD_DESC_BITMASKS];
  2039. };
  2040. /*
  2041. * A table of commands requiring special handling by the command parser.
  2042. *
  2043. * Each ring has an array of tables. Each table consists of an array of command
  2044. * descriptors, which must be sorted with command opcodes in ascending order.
  2045. */
  2046. struct drm_i915_cmd_table {
  2047. const struct drm_i915_cmd_descriptor *table;
  2048. int count;
  2049. };
  2050. /* Note that the (struct drm_i915_private *) cast is just to shut up gcc. */
  2051. #define __I915__(p) ({ \
  2052. struct drm_i915_private *__p; \
  2053. if (__builtin_types_compatible_p(typeof(*p), struct drm_i915_private)) \
  2054. __p = (struct drm_i915_private *)p; \
  2055. else if (__builtin_types_compatible_p(typeof(*p), struct drm_device)) \
  2056. __p = to_i915((struct drm_device *)p); \
  2057. else \
  2058. BUILD_BUG(); \
  2059. __p; \
  2060. })
  2061. #define INTEL_INFO(p) (&__I915__(p)->info)
  2062. #define INTEL_DEVID(p) (INTEL_INFO(p)->device_id)
  2063. #define INTEL_REVID(p) (__I915__(p)->dev->pdev->revision)
  2064. #define IS_I830(dev) (INTEL_DEVID(dev) == 0x3577)
  2065. #define IS_845G(dev) (INTEL_DEVID(dev) == 0x2562)
  2066. #define IS_I85X(dev) (INTEL_INFO(dev)->is_i85x)
  2067. #define IS_I865G(dev) (INTEL_DEVID(dev) == 0x2572)
  2068. #define IS_I915G(dev) (INTEL_INFO(dev)->is_i915g)
  2069. #define IS_I915GM(dev) (INTEL_DEVID(dev) == 0x2592)
  2070. #define IS_I945G(dev) (INTEL_DEVID(dev) == 0x2772)
  2071. #define IS_I945GM(dev) (INTEL_INFO(dev)->is_i945gm)
  2072. #define IS_BROADWATER(dev) (INTEL_INFO(dev)->is_broadwater)
  2073. #define IS_CRESTLINE(dev) (INTEL_INFO(dev)->is_crestline)
  2074. #define IS_GM45(dev) (INTEL_DEVID(dev) == 0x2A42)
  2075. #define IS_G4X(dev) (INTEL_INFO(dev)->is_g4x)
  2076. #define IS_PINEVIEW_G(dev) (INTEL_DEVID(dev) == 0xa001)
  2077. #define IS_PINEVIEW_M(dev) (INTEL_DEVID(dev) == 0xa011)
  2078. #define IS_PINEVIEW(dev) (INTEL_INFO(dev)->is_pineview)
  2079. #define IS_G33(dev) (INTEL_INFO(dev)->is_g33)
  2080. #define IS_IRONLAKE_M(dev) (INTEL_DEVID(dev) == 0x0046)
  2081. #define IS_IVYBRIDGE(dev) (INTEL_INFO(dev)->is_ivybridge)
  2082. #define IS_IVB_GT1(dev) (INTEL_DEVID(dev) == 0x0156 || \
  2083. INTEL_DEVID(dev) == 0x0152 || \
  2084. INTEL_DEVID(dev) == 0x015a)
  2085. #define IS_VALLEYVIEW(dev) (INTEL_INFO(dev)->is_valleyview)
  2086. #define IS_CHERRYVIEW(dev) (INTEL_INFO(dev)->is_valleyview && IS_GEN8(dev))
  2087. #define IS_HASWELL(dev) (INTEL_INFO(dev)->is_haswell)
  2088. #define IS_BROADWELL(dev) (!INTEL_INFO(dev)->is_valleyview && IS_GEN8(dev))
  2089. #define IS_SKYLAKE(dev) (INTEL_INFO(dev)->is_skylake)
  2090. #define IS_BROXTON(dev) (!INTEL_INFO(dev)->is_skylake && IS_GEN9(dev))
  2091. #define IS_MOBILE(dev) (INTEL_INFO(dev)->is_mobile)
  2092. #define IS_HSW_EARLY_SDV(dev) (IS_HASWELL(dev) && \
  2093. (INTEL_DEVID(dev) & 0xFF00) == 0x0C00)
  2094. #define IS_BDW_ULT(dev) (IS_BROADWELL(dev) && \
  2095. ((INTEL_DEVID(dev) & 0xf) == 0x6 || \
  2096. (INTEL_DEVID(dev) & 0xf) == 0xb || \
  2097. (INTEL_DEVID(dev) & 0xf) == 0xe))
  2098. /* ULX machines are also considered ULT. */
  2099. #define IS_BDW_ULX(dev) (IS_BROADWELL(dev) && \
  2100. (INTEL_DEVID(dev) & 0xf) == 0xe)
  2101. #define IS_BDW_GT3(dev) (IS_BROADWELL(dev) && \
  2102. (INTEL_DEVID(dev) & 0x00F0) == 0x0020)
  2103. #define IS_HSW_ULT(dev) (IS_HASWELL(dev) && \
  2104. (INTEL_DEVID(dev) & 0xFF00) == 0x0A00)
  2105. #define IS_HSW_GT3(dev) (IS_HASWELL(dev) && \
  2106. (INTEL_DEVID(dev) & 0x00F0) == 0x0020)
  2107. /* ULX machines are also considered ULT. */
  2108. #define IS_HSW_ULX(dev) (INTEL_DEVID(dev) == 0x0A0E || \
  2109. INTEL_DEVID(dev) == 0x0A1E)
  2110. #define IS_SKL_ULT(dev) (INTEL_DEVID(dev) == 0x1906 || \
  2111. INTEL_DEVID(dev) == 0x1913 || \
  2112. INTEL_DEVID(dev) == 0x1916 || \
  2113. INTEL_DEVID(dev) == 0x1921 || \
  2114. INTEL_DEVID(dev) == 0x1926)
  2115. #define IS_SKL_ULX(dev) (INTEL_DEVID(dev) == 0x190E || \
  2116. INTEL_DEVID(dev) == 0x1915 || \
  2117. INTEL_DEVID(dev) == 0x191E)
  2118. #define IS_PRELIMINARY_HW(intel_info) ((intel_info)->is_preliminary)
  2119. #define SKL_REVID_A0 (0x0)
  2120. #define SKL_REVID_B0 (0x1)
  2121. #define SKL_REVID_C0 (0x2)
  2122. #define SKL_REVID_D0 (0x3)
  2123. #define SKL_REVID_E0 (0x4)
  2124. #define SKL_REVID_F0 (0x5)
  2125. #define BXT_REVID_A0 (0x0)
  2126. #define BXT_REVID_B0 (0x3)
  2127. #define BXT_REVID_C0 (0x6)
  2128. /*
  2129. * The genX designation typically refers to the render engine, so render
  2130. * capability related checks should use IS_GEN, while display and other checks
  2131. * have their own (e.g. HAS_PCH_SPLIT for ILK+ display, IS_foo for particular
  2132. * chips, etc.).
  2133. */
  2134. #define IS_GEN2(dev) (INTEL_INFO(dev)->gen == 2)
  2135. #define IS_GEN3(dev) (INTEL_INFO(dev)->gen == 3)
  2136. #define IS_GEN4(dev) (INTEL_INFO(dev)->gen == 4)
  2137. #define IS_GEN5(dev) (INTEL_INFO(dev)->gen == 5)
  2138. #define IS_GEN6(dev) (INTEL_INFO(dev)->gen == 6)
  2139. #define IS_GEN7(dev) (INTEL_INFO(dev)->gen == 7)
  2140. #define IS_GEN8(dev) (INTEL_INFO(dev)->gen == 8)
  2141. #define IS_GEN9(dev) (INTEL_INFO(dev)->gen == 9)
  2142. #define RENDER_RING (1<<RCS)
  2143. #define BSD_RING (1<<VCS)
  2144. #define BLT_RING (1<<BCS)
  2145. #define VEBOX_RING (1<<VECS)
  2146. #define BSD2_RING (1<<VCS2)
  2147. #define HAS_BSD(dev) (INTEL_INFO(dev)->ring_mask & BSD_RING)
  2148. #define HAS_BSD2(dev) (INTEL_INFO(dev)->ring_mask & BSD2_RING)
  2149. #define HAS_BLT(dev) (INTEL_INFO(dev)->ring_mask & BLT_RING)
  2150. #define HAS_VEBOX(dev) (INTEL_INFO(dev)->ring_mask & VEBOX_RING)
  2151. #define HAS_LLC(dev) (INTEL_INFO(dev)->has_llc)
  2152. #define HAS_WT(dev) ((IS_HASWELL(dev) || IS_BROADWELL(dev)) && \
  2153. __I915__(dev)->ellc_size)
  2154. #define I915_NEED_GFX_HWS(dev) (INTEL_INFO(dev)->need_gfx_hws)
  2155. #define HAS_HW_CONTEXTS(dev) (INTEL_INFO(dev)->gen >= 6)
  2156. #define HAS_LOGICAL_RING_CONTEXTS(dev) (INTEL_INFO(dev)->gen >= 8)
  2157. #define USES_PPGTT(dev) (i915.enable_ppgtt)
  2158. #define USES_FULL_PPGTT(dev) (i915.enable_ppgtt == 2)
  2159. #define HAS_OVERLAY(dev) (INTEL_INFO(dev)->has_overlay)
  2160. #define OVERLAY_NEEDS_PHYSICAL(dev) (INTEL_INFO(dev)->overlay_needs_physical)
  2161. /* Early gen2 have a totally busted CS tlb and require pinned batches. */
  2162. #define HAS_BROKEN_CS_TLB(dev) (IS_I830(dev) || IS_845G(dev))
  2163. /*
  2164. * dp aux and gmbus irq on gen4 seems to be able to generate legacy interrupts
  2165. * even when in MSI mode. This results in spurious interrupt warnings if the
  2166. * legacy irq no. is shared with another device. The kernel then disables that
  2167. * interrupt source and so prevents the other device from working properly.
  2168. */
  2169. #define HAS_AUX_IRQ(dev) (INTEL_INFO(dev)->gen >= 5)
  2170. #define HAS_GMBUS_IRQ(dev) (INTEL_INFO(dev)->gen >= 5)
  2171. /* With the 945 and later, Y tiling got adjusted so that it was 32 128-byte
  2172. * rows, which changed the alignment requirements and fence programming.
  2173. */
  2174. #define HAS_128_BYTE_Y_TILING(dev) (!IS_GEN2(dev) && !(IS_I915G(dev) || \
  2175. IS_I915GM(dev)))
  2176. #define SUPPORTS_TV(dev) (INTEL_INFO(dev)->supports_tv)
  2177. #define I915_HAS_HOTPLUG(dev) (INTEL_INFO(dev)->has_hotplug)
  2178. #define HAS_FW_BLC(dev) (INTEL_INFO(dev)->gen > 2)
  2179. #define HAS_PIPE_CXSR(dev) (INTEL_INFO(dev)->has_pipe_cxsr)
  2180. #define HAS_FBC(dev) (INTEL_INFO(dev)->has_fbc)
  2181. #define HAS_IPS(dev) (IS_HSW_ULT(dev) || IS_BROADWELL(dev))
  2182. #define HAS_DP_MST(dev) (IS_HASWELL(dev) || IS_BROADWELL(dev) || \
  2183. INTEL_INFO(dev)->gen >= 9)
  2184. #define HAS_DDI(dev) (INTEL_INFO(dev)->has_ddi)
  2185. #define HAS_FPGA_DBG_UNCLAIMED(dev) (INTEL_INFO(dev)->has_fpga_dbg)
  2186. #define HAS_PSR(dev) (IS_HASWELL(dev) || IS_BROADWELL(dev) || \
  2187. IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev) || \
  2188. IS_SKYLAKE(dev))
  2189. #define HAS_RUNTIME_PM(dev) (IS_GEN6(dev) || IS_HASWELL(dev) || \
  2190. IS_BROADWELL(dev) || IS_VALLEYVIEW(dev) || \
  2191. IS_SKYLAKE(dev))
  2192. #define HAS_RC6(dev) (INTEL_INFO(dev)->gen >= 6)
  2193. #define HAS_RC6p(dev) (INTEL_INFO(dev)->gen == 6 || IS_IVYBRIDGE(dev))
  2194. #define HAS_CSR(dev) (IS_SKYLAKE(dev))
  2195. #define HAS_RESOURCE_STREAMER(dev) (IS_HASWELL(dev) || \
  2196. INTEL_INFO(dev)->gen >= 8)
  2197. #define HAS_CORE_RING_FREQ(dev) (INTEL_INFO(dev)->gen >= 6 && \
  2198. !IS_VALLEYVIEW(dev) && !IS_BROXTON(dev))
  2199. #define INTEL_PCH_DEVICE_ID_MASK 0xff00
  2200. #define INTEL_PCH_IBX_DEVICE_ID_TYPE 0x3b00
  2201. #define INTEL_PCH_CPT_DEVICE_ID_TYPE 0x1c00
  2202. #define INTEL_PCH_PPT_DEVICE_ID_TYPE 0x1e00
  2203. #define INTEL_PCH_LPT_DEVICE_ID_TYPE 0x8c00
  2204. #define INTEL_PCH_LPT_LP_DEVICE_ID_TYPE 0x9c00
  2205. #define INTEL_PCH_SPT_DEVICE_ID_TYPE 0xA100
  2206. #define INTEL_PCH_SPT_LP_DEVICE_ID_TYPE 0x9D00
  2207. #define INTEL_PCH_TYPE(dev) (__I915__(dev)->pch_type)
  2208. #define HAS_PCH_SPT(dev) (INTEL_PCH_TYPE(dev) == PCH_SPT)
  2209. #define HAS_PCH_LPT(dev) (INTEL_PCH_TYPE(dev) == PCH_LPT)
  2210. #define HAS_PCH_CPT(dev) (INTEL_PCH_TYPE(dev) == PCH_CPT)
  2211. #define HAS_PCH_IBX(dev) (INTEL_PCH_TYPE(dev) == PCH_IBX)
  2212. #define HAS_PCH_NOP(dev) (INTEL_PCH_TYPE(dev) == PCH_NOP)
  2213. #define HAS_PCH_SPLIT(dev) (INTEL_PCH_TYPE(dev) != PCH_NONE)
  2214. #define HAS_GMCH_DISPLAY(dev) (INTEL_INFO(dev)->gen < 5 || IS_VALLEYVIEW(dev))
  2215. /* DPF == dynamic parity feature */
  2216. #define HAS_L3_DPF(dev) (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
  2217. #define NUM_L3_SLICES(dev) (IS_HSW_GT3(dev) ? 2 : HAS_L3_DPF(dev))
  2218. #define GT_FREQUENCY_MULTIPLIER 50
  2219. #define GEN9_FREQ_SCALER 3
  2220. #include "i915_trace.h"
  2221. extern const struct drm_ioctl_desc i915_ioctls[];
  2222. extern int i915_max_ioctl;
  2223. extern int i915_suspend_legacy(struct drm_device *dev, pm_message_t state);
  2224. extern int i915_resume_legacy(struct drm_device *dev);
  2225. /* i915_params.c */
  2226. struct i915_params {
  2227. int modeset;
  2228. int panel_ignore_lid;
  2229. int semaphores;
  2230. int lvds_channel_mode;
  2231. int panel_use_ssc;
  2232. int vbt_sdvo_panel_type;
  2233. int enable_rc6;
  2234. int enable_fbc;
  2235. int enable_ppgtt;
  2236. int enable_execlists;
  2237. int enable_psr;
  2238. unsigned int preliminary_hw_support;
  2239. int disable_power_well;
  2240. int enable_ips;
  2241. int invert_brightness;
  2242. int enable_cmd_parser;
  2243. /* leave bools at the end to not create holes */
  2244. bool enable_hangcheck;
  2245. bool fastboot;
  2246. bool prefault_disable;
  2247. bool load_detect_test;
  2248. bool reset;
  2249. bool disable_display;
  2250. bool disable_vtd_wa;
  2251. bool enable_guc_submission;
  2252. int guc_log_level;
  2253. int use_mmio_flip;
  2254. int mmio_debug;
  2255. bool verbose_state_checks;
  2256. int edp_vswing;
  2257. };
  2258. extern struct i915_params i915 __read_mostly;
  2259. /* i915_dma.c */
  2260. extern int i915_driver_load(struct drm_device *, unsigned long flags);
  2261. extern int i915_driver_unload(struct drm_device *);
  2262. extern int i915_driver_open(struct drm_device *dev, struct drm_file *file);
  2263. extern void i915_driver_lastclose(struct drm_device * dev);
  2264. extern void i915_driver_preclose(struct drm_device *dev,
  2265. struct drm_file *file);
  2266. extern void i915_driver_postclose(struct drm_device *dev,
  2267. struct drm_file *file);
  2268. #ifdef CONFIG_COMPAT
  2269. extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
  2270. unsigned long arg);
  2271. #endif
  2272. extern int intel_gpu_reset(struct drm_device *dev);
  2273. extern bool intel_has_gpu_reset(struct drm_device *dev);
  2274. extern int i915_reset(struct drm_device *dev);
  2275. extern unsigned long i915_chipset_val(struct drm_i915_private *dev_priv);
  2276. extern unsigned long i915_mch_val(struct drm_i915_private *dev_priv);
  2277. extern unsigned long i915_gfx_val(struct drm_i915_private *dev_priv);
  2278. extern void i915_update_gfx_val(struct drm_i915_private *dev_priv);
  2279. int vlv_force_gfx_clock(struct drm_i915_private *dev_priv, bool on);
  2280. void i915_firmware_load_error_print(const char *fw_path, int err);
  2281. /* intel_hotplug.c */
  2282. void intel_hpd_irq_handler(struct drm_device *dev, u32 pin_mask, u32 long_mask);
  2283. void intel_hpd_init(struct drm_i915_private *dev_priv);
  2284. void intel_hpd_init_work(struct drm_i915_private *dev_priv);
  2285. void intel_hpd_cancel_work(struct drm_i915_private *dev_priv);
  2286. bool intel_hpd_pin_to_port(enum hpd_pin pin, enum port *port);
  2287. /* i915_irq.c */
  2288. void i915_queue_hangcheck(struct drm_device *dev);
  2289. __printf(3, 4)
  2290. void i915_handle_error(struct drm_device *dev, bool wedged,
  2291. const char *fmt, ...);
  2292. extern void intel_irq_init(struct drm_i915_private *dev_priv);
  2293. int intel_irq_install(struct drm_i915_private *dev_priv);
  2294. void intel_irq_uninstall(struct drm_i915_private *dev_priv);
  2295. extern void intel_uncore_sanitize(struct drm_device *dev);
  2296. extern void intel_uncore_early_sanitize(struct drm_device *dev,
  2297. bool restore_forcewake);
  2298. extern void intel_uncore_init(struct drm_device *dev);
  2299. extern void intel_uncore_check_errors(struct drm_device *dev);
  2300. extern void intel_uncore_fini(struct drm_device *dev);
  2301. extern void intel_uncore_forcewake_reset(struct drm_device *dev, bool restore);
  2302. const char *intel_uncore_forcewake_domain_to_str(const enum forcewake_domain_id id);
  2303. void intel_uncore_forcewake_get(struct drm_i915_private *dev_priv,
  2304. enum forcewake_domains domains);
  2305. void intel_uncore_forcewake_put(struct drm_i915_private *dev_priv,
  2306. enum forcewake_domains domains);
  2307. /* Like above but the caller must manage the uncore.lock itself.
  2308. * Must be used with I915_READ_FW and friends.
  2309. */
  2310. void intel_uncore_forcewake_get__locked(struct drm_i915_private *dev_priv,
  2311. enum forcewake_domains domains);
  2312. void intel_uncore_forcewake_put__locked(struct drm_i915_private *dev_priv,
  2313. enum forcewake_domains domains);
  2314. void assert_forcewakes_inactive(struct drm_i915_private *dev_priv);
  2315. static inline bool intel_vgpu_active(struct drm_device *dev)
  2316. {
  2317. return to_i915(dev)->vgpu.active;
  2318. }
  2319. void
  2320. i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
  2321. u32 status_mask);
  2322. void
  2323. i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
  2324. u32 status_mask);
  2325. void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv);
  2326. void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv);
  2327. void
  2328. ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask);
  2329. void
  2330. ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask);
  2331. void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
  2332. uint32_t interrupt_mask,
  2333. uint32_t enabled_irq_mask);
  2334. #define ibx_enable_display_interrupt(dev_priv, bits) \
  2335. ibx_display_interrupt_update((dev_priv), (bits), (bits))
  2336. #define ibx_disable_display_interrupt(dev_priv, bits) \
  2337. ibx_display_interrupt_update((dev_priv), (bits), 0)
  2338. /* i915_gem.c */
  2339. int i915_gem_create_ioctl(struct drm_device *dev, void *data,
  2340. struct drm_file *file_priv);
  2341. int i915_gem_pread_ioctl(struct drm_device *dev, void *data,
  2342. struct drm_file *file_priv);
  2343. int i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
  2344. struct drm_file *file_priv);
  2345. int i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
  2346. struct drm_file *file_priv);
  2347. int i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
  2348. struct drm_file *file_priv);
  2349. int i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
  2350. struct drm_file *file_priv);
  2351. int i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
  2352. struct drm_file *file_priv);
  2353. void i915_gem_execbuffer_move_to_active(struct list_head *vmas,
  2354. struct drm_i915_gem_request *req);
  2355. void i915_gem_execbuffer_retire_commands(struct i915_execbuffer_params *params);
  2356. int i915_gem_ringbuffer_submission(struct i915_execbuffer_params *params,
  2357. struct drm_i915_gem_execbuffer2 *args,
  2358. struct list_head *vmas);
  2359. int i915_gem_execbuffer(struct drm_device *dev, void *data,
  2360. struct drm_file *file_priv);
  2361. int i915_gem_execbuffer2(struct drm_device *dev, void *data,
  2362. struct drm_file *file_priv);
  2363. int i915_gem_busy_ioctl(struct drm_device *dev, void *data,
  2364. struct drm_file *file_priv);
  2365. int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
  2366. struct drm_file *file);
  2367. int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
  2368. struct drm_file *file);
  2369. int i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
  2370. struct drm_file *file_priv);
  2371. int i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
  2372. struct drm_file *file_priv);
  2373. int i915_gem_set_tiling(struct drm_device *dev, void *data,
  2374. struct drm_file *file_priv);
  2375. int i915_gem_get_tiling(struct drm_device *dev, void *data,
  2376. struct drm_file *file_priv);
  2377. int i915_gem_init_userptr(struct drm_device *dev);
  2378. int i915_gem_userptr_ioctl(struct drm_device *dev, void *data,
  2379. struct drm_file *file);
  2380. int i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
  2381. struct drm_file *file_priv);
  2382. int i915_gem_wait_ioctl(struct drm_device *dev, void *data,
  2383. struct drm_file *file_priv);
  2384. void i915_gem_load(struct drm_device *dev);
  2385. void *i915_gem_object_alloc(struct drm_device *dev);
  2386. void i915_gem_object_free(struct drm_i915_gem_object *obj);
  2387. void i915_gem_object_init(struct drm_i915_gem_object *obj,
  2388. const struct drm_i915_gem_object_ops *ops);
  2389. struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
  2390. size_t size);
  2391. struct drm_i915_gem_object *i915_gem_object_create_from_data(
  2392. struct drm_device *dev, const void *data, size_t size);
  2393. void i915_init_vm(struct drm_i915_private *dev_priv,
  2394. struct i915_address_space *vm);
  2395. void i915_gem_free_object(struct drm_gem_object *obj);
  2396. void i915_gem_vma_destroy(struct i915_vma *vma);
  2397. /* Flags used by pin/bind&friends. */
  2398. #define PIN_MAPPABLE (1<<0)
  2399. #define PIN_NONBLOCK (1<<1)
  2400. #define PIN_GLOBAL (1<<2)
  2401. #define PIN_OFFSET_BIAS (1<<3)
  2402. #define PIN_USER (1<<4)
  2403. #define PIN_UPDATE (1<<5)
  2404. #define PIN_OFFSET_MASK (~4095)
  2405. int __must_check
  2406. i915_gem_object_pin(struct drm_i915_gem_object *obj,
  2407. struct i915_address_space *vm,
  2408. uint32_t alignment,
  2409. uint64_t flags);
  2410. int __must_check
  2411. i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
  2412. const struct i915_ggtt_view *view,
  2413. uint32_t alignment,
  2414. uint64_t flags);
  2415. int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
  2416. u32 flags);
  2417. int __must_check i915_vma_unbind(struct i915_vma *vma);
  2418. int i915_gem_object_put_pages(struct drm_i915_gem_object *obj);
  2419. void i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv);
  2420. void i915_gem_release_mmap(struct drm_i915_gem_object *obj);
  2421. int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
  2422. int *needs_clflush);
  2423. int __must_check i915_gem_object_get_pages(struct drm_i915_gem_object *obj);
  2424. static inline int __sg_page_count(struct scatterlist *sg)
  2425. {
  2426. return sg->length >> PAGE_SHIFT;
  2427. }
  2428. static inline struct page *
  2429. i915_gem_object_get_page(struct drm_i915_gem_object *obj, int n)
  2430. {
  2431. if (WARN_ON(n >= obj->base.size >> PAGE_SHIFT))
  2432. return NULL;
  2433. if (n < obj->get_page.last) {
  2434. obj->get_page.sg = obj->pages->sgl;
  2435. obj->get_page.last = 0;
  2436. }
  2437. while (obj->get_page.last + __sg_page_count(obj->get_page.sg) <= n) {
  2438. obj->get_page.last += __sg_page_count(obj->get_page.sg++);
  2439. if (unlikely(sg_is_chain(obj->get_page.sg)))
  2440. obj->get_page.sg = sg_chain_ptr(obj->get_page.sg);
  2441. }
  2442. return nth_page(sg_page(obj->get_page.sg), n - obj->get_page.last);
  2443. }
  2444. static inline void i915_gem_object_pin_pages(struct drm_i915_gem_object *obj)
  2445. {
  2446. BUG_ON(obj->pages == NULL);
  2447. obj->pages_pin_count++;
  2448. }
  2449. static inline void i915_gem_object_unpin_pages(struct drm_i915_gem_object *obj)
  2450. {
  2451. BUG_ON(obj->pages_pin_count == 0);
  2452. obj->pages_pin_count--;
  2453. }
  2454. int __must_check i915_mutex_lock_interruptible(struct drm_device *dev);
  2455. int i915_gem_object_sync(struct drm_i915_gem_object *obj,
  2456. struct intel_engine_cs *to,
  2457. struct drm_i915_gem_request **to_req);
  2458. void i915_vma_move_to_active(struct i915_vma *vma,
  2459. struct drm_i915_gem_request *req);
  2460. int i915_gem_dumb_create(struct drm_file *file_priv,
  2461. struct drm_device *dev,
  2462. struct drm_mode_create_dumb *args);
  2463. int i915_gem_mmap_gtt(struct drm_file *file_priv, struct drm_device *dev,
  2464. uint32_t handle, uint64_t *offset);
  2465. /**
  2466. * Returns true if seq1 is later than seq2.
  2467. */
  2468. static inline bool
  2469. i915_seqno_passed(uint32_t seq1, uint32_t seq2)
  2470. {
  2471. return (int32_t)(seq1 - seq2) >= 0;
  2472. }
  2473. static inline bool i915_gem_request_completed(struct drm_i915_gem_request *req,
  2474. bool lazy_coherency)
  2475. {
  2476. u32 seqno;
  2477. BUG_ON(req == NULL);
  2478. seqno = req->ring->get_seqno(req->ring, lazy_coherency);
  2479. return i915_seqno_passed(seqno, req->seqno);
  2480. }
  2481. int __must_check i915_gem_get_seqno(struct drm_device *dev, u32 *seqno);
  2482. int __must_check i915_gem_set_seqno(struct drm_device *dev, u32 seqno);
  2483. struct drm_i915_gem_request *
  2484. i915_gem_find_active_request(struct intel_engine_cs *ring);
  2485. bool i915_gem_retire_requests(struct drm_device *dev);
  2486. void i915_gem_retire_requests_ring(struct intel_engine_cs *ring);
  2487. int __must_check i915_gem_check_wedge(struct i915_gpu_error *error,
  2488. bool interruptible);
  2489. static inline bool i915_reset_in_progress(struct i915_gpu_error *error)
  2490. {
  2491. return unlikely(atomic_read(&error->reset_counter)
  2492. & (I915_RESET_IN_PROGRESS_FLAG | I915_WEDGED));
  2493. }
  2494. static inline bool i915_terminally_wedged(struct i915_gpu_error *error)
  2495. {
  2496. return atomic_read(&error->reset_counter) & I915_WEDGED;
  2497. }
  2498. static inline u32 i915_reset_count(struct i915_gpu_error *error)
  2499. {
  2500. return ((atomic_read(&error->reset_counter) & ~I915_WEDGED) + 1) / 2;
  2501. }
  2502. static inline bool i915_stop_ring_allow_ban(struct drm_i915_private *dev_priv)
  2503. {
  2504. return dev_priv->gpu_error.stop_rings == 0 ||
  2505. dev_priv->gpu_error.stop_rings & I915_STOP_RING_ALLOW_BAN;
  2506. }
  2507. static inline bool i915_stop_ring_allow_warn(struct drm_i915_private *dev_priv)
  2508. {
  2509. return dev_priv->gpu_error.stop_rings == 0 ||
  2510. dev_priv->gpu_error.stop_rings & I915_STOP_RING_ALLOW_WARN;
  2511. }
  2512. void i915_gem_reset(struct drm_device *dev);
  2513. bool i915_gem_clflush_object(struct drm_i915_gem_object *obj, bool force);
  2514. int __must_check i915_gem_init(struct drm_device *dev);
  2515. int i915_gem_init_rings(struct drm_device *dev);
  2516. int __must_check i915_gem_init_hw(struct drm_device *dev);
  2517. int i915_gem_l3_remap(struct drm_i915_gem_request *req, int slice);
  2518. void i915_gem_init_swizzling(struct drm_device *dev);
  2519. void i915_gem_cleanup_ringbuffer(struct drm_device *dev);
  2520. int __must_check i915_gpu_idle(struct drm_device *dev);
  2521. int __must_check i915_gem_suspend(struct drm_device *dev);
  2522. void __i915_add_request(struct drm_i915_gem_request *req,
  2523. struct drm_i915_gem_object *batch_obj,
  2524. bool flush_caches);
  2525. #define i915_add_request(req) \
  2526. __i915_add_request(req, NULL, true)
  2527. #define i915_add_request_no_flush(req) \
  2528. __i915_add_request(req, NULL, false)
  2529. int __i915_wait_request(struct drm_i915_gem_request *req,
  2530. unsigned reset_counter,
  2531. bool interruptible,
  2532. s64 *timeout,
  2533. struct intel_rps_client *rps);
  2534. int __must_check i915_wait_request(struct drm_i915_gem_request *req);
  2535. int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
  2536. int __must_check
  2537. i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
  2538. bool readonly);
  2539. int __must_check
  2540. i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj,
  2541. bool write);
  2542. int __must_check
  2543. i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write);
  2544. int __must_check
  2545. i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
  2546. u32 alignment,
  2547. struct intel_engine_cs *pipelined,
  2548. struct drm_i915_gem_request **pipelined_request,
  2549. const struct i915_ggtt_view *view);
  2550. void i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj,
  2551. const struct i915_ggtt_view *view);
  2552. int i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
  2553. int align);
  2554. int i915_gem_open(struct drm_device *dev, struct drm_file *file);
  2555. void i915_gem_release(struct drm_device *dev, struct drm_file *file);
  2556. uint32_t
  2557. i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode);
  2558. uint32_t
  2559. i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
  2560. int tiling_mode, bool fenced);
  2561. int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
  2562. enum i915_cache_level cache_level);
  2563. struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
  2564. struct dma_buf *dma_buf);
  2565. struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
  2566. struct drm_gem_object *gem_obj, int flags);
  2567. unsigned long
  2568. i915_gem_obj_ggtt_offset_view(struct drm_i915_gem_object *o,
  2569. const struct i915_ggtt_view *view);
  2570. unsigned long
  2571. i915_gem_obj_offset(struct drm_i915_gem_object *o,
  2572. struct i915_address_space *vm);
  2573. static inline unsigned long
  2574. i915_gem_obj_ggtt_offset(struct drm_i915_gem_object *o)
  2575. {
  2576. return i915_gem_obj_ggtt_offset_view(o, &i915_ggtt_view_normal);
  2577. }
  2578. bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o);
  2579. bool i915_gem_obj_ggtt_bound_view(struct drm_i915_gem_object *o,
  2580. const struct i915_ggtt_view *view);
  2581. bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
  2582. struct i915_address_space *vm);
  2583. unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
  2584. struct i915_address_space *vm);
  2585. struct i915_vma *
  2586. i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
  2587. struct i915_address_space *vm);
  2588. struct i915_vma *
  2589. i915_gem_obj_to_ggtt_view(struct drm_i915_gem_object *obj,
  2590. const struct i915_ggtt_view *view);
  2591. struct i915_vma *
  2592. i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
  2593. struct i915_address_space *vm);
  2594. struct i915_vma *
  2595. i915_gem_obj_lookup_or_create_ggtt_vma(struct drm_i915_gem_object *obj,
  2596. const struct i915_ggtt_view *view);
  2597. static inline struct i915_vma *
  2598. i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
  2599. {
  2600. return i915_gem_obj_to_ggtt_view(obj, &i915_ggtt_view_normal);
  2601. }
  2602. bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj);
  2603. /* Some GGTT VM helpers */
  2604. #define i915_obj_to_ggtt(obj) \
  2605. (&((struct drm_i915_private *)(obj)->base.dev->dev_private)->gtt.base)
  2606. static inline bool i915_is_ggtt(struct i915_address_space *vm)
  2607. {
  2608. struct i915_address_space *ggtt =
  2609. &((struct drm_i915_private *)(vm)->dev->dev_private)->gtt.base;
  2610. return vm == ggtt;
  2611. }
  2612. static inline struct i915_hw_ppgtt *
  2613. i915_vm_to_ppgtt(struct i915_address_space *vm)
  2614. {
  2615. WARN_ON(i915_is_ggtt(vm));
  2616. return container_of(vm, struct i915_hw_ppgtt, base);
  2617. }
  2618. static inline bool i915_gem_obj_ggtt_bound(struct drm_i915_gem_object *obj)
  2619. {
  2620. return i915_gem_obj_ggtt_bound_view(obj, &i915_ggtt_view_normal);
  2621. }
  2622. static inline unsigned long
  2623. i915_gem_obj_ggtt_size(struct drm_i915_gem_object *obj)
  2624. {
  2625. return i915_gem_obj_size(obj, i915_obj_to_ggtt(obj));
  2626. }
  2627. static inline int __must_check
  2628. i915_gem_obj_ggtt_pin(struct drm_i915_gem_object *obj,
  2629. uint32_t alignment,
  2630. unsigned flags)
  2631. {
  2632. return i915_gem_object_pin(obj, i915_obj_to_ggtt(obj),
  2633. alignment, flags | PIN_GLOBAL);
  2634. }
  2635. static inline int
  2636. i915_gem_object_ggtt_unbind(struct drm_i915_gem_object *obj)
  2637. {
  2638. return i915_vma_unbind(i915_gem_obj_to_ggtt(obj));
  2639. }
  2640. void i915_gem_object_ggtt_unpin_view(struct drm_i915_gem_object *obj,
  2641. const struct i915_ggtt_view *view);
  2642. static inline void
  2643. i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
  2644. {
  2645. i915_gem_object_ggtt_unpin_view(obj, &i915_ggtt_view_normal);
  2646. }
  2647. /* i915_gem_fence.c */
  2648. int __must_check i915_gem_object_get_fence(struct drm_i915_gem_object *obj);
  2649. int __must_check i915_gem_object_put_fence(struct drm_i915_gem_object *obj);
  2650. bool i915_gem_object_pin_fence(struct drm_i915_gem_object *obj);
  2651. void i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj);
  2652. void i915_gem_restore_fences(struct drm_device *dev);
  2653. void i915_gem_detect_bit_6_swizzle(struct drm_device *dev);
  2654. void i915_gem_object_do_bit_17_swizzle(struct drm_i915_gem_object *obj);
  2655. void i915_gem_object_save_bit_17_swizzle(struct drm_i915_gem_object *obj);
  2656. /* i915_gem_context.c */
  2657. int __must_check i915_gem_context_init(struct drm_device *dev);
  2658. void i915_gem_context_fini(struct drm_device *dev);
  2659. void i915_gem_context_reset(struct drm_device *dev);
  2660. int i915_gem_context_open(struct drm_device *dev, struct drm_file *file);
  2661. int i915_gem_context_enable(struct drm_i915_gem_request *req);
  2662. void i915_gem_context_close(struct drm_device *dev, struct drm_file *file);
  2663. int i915_switch_context(struct drm_i915_gem_request *req);
  2664. struct intel_context *
  2665. i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id);
  2666. void i915_gem_context_free(struct kref *ctx_ref);
  2667. struct drm_i915_gem_object *
  2668. i915_gem_alloc_context_obj(struct drm_device *dev, size_t size);
  2669. static inline void i915_gem_context_reference(struct intel_context *ctx)
  2670. {
  2671. kref_get(&ctx->ref);
  2672. }
  2673. static inline void i915_gem_context_unreference(struct intel_context *ctx)
  2674. {
  2675. kref_put(&ctx->ref, i915_gem_context_free);
  2676. }
  2677. static inline bool i915_gem_context_is_default(const struct intel_context *c)
  2678. {
  2679. return c->user_handle == DEFAULT_CONTEXT_HANDLE;
  2680. }
  2681. int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
  2682. struct drm_file *file);
  2683. int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
  2684. struct drm_file *file);
  2685. int i915_gem_context_getparam_ioctl(struct drm_device *dev, void *data,
  2686. struct drm_file *file_priv);
  2687. int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
  2688. struct drm_file *file_priv);
  2689. /* i915_gem_evict.c */
  2690. int __must_check i915_gem_evict_something(struct drm_device *dev,
  2691. struct i915_address_space *vm,
  2692. int min_size,
  2693. unsigned alignment,
  2694. unsigned cache_level,
  2695. unsigned long start,
  2696. unsigned long end,
  2697. unsigned flags);
  2698. int i915_gem_evict_vm(struct i915_address_space *vm, bool do_idle);
  2699. int i915_gem_evict_everything(struct drm_device *dev);
  2700. /* belongs in i915_gem_gtt.h */
  2701. static inline void i915_gem_chipset_flush(struct drm_device *dev)
  2702. {
  2703. if (INTEL_INFO(dev)->gen < 6)
  2704. intel_gtt_chipset_flush();
  2705. }
  2706. /* i915_gem_stolen.c */
  2707. int i915_gem_stolen_insert_node(struct drm_i915_private *dev_priv,
  2708. struct drm_mm_node *node, u64 size,
  2709. unsigned alignment);
  2710. void i915_gem_stolen_remove_node(struct drm_i915_private *dev_priv,
  2711. struct drm_mm_node *node);
  2712. int i915_gem_init_stolen(struct drm_device *dev);
  2713. void i915_gem_cleanup_stolen(struct drm_device *dev);
  2714. struct drm_i915_gem_object *
  2715. i915_gem_object_create_stolen(struct drm_device *dev, u32 size);
  2716. struct drm_i915_gem_object *
  2717. i915_gem_object_create_stolen_for_preallocated(struct drm_device *dev,
  2718. u32 stolen_offset,
  2719. u32 gtt_offset,
  2720. u32 size);
  2721. /* i915_gem_shrinker.c */
  2722. unsigned long i915_gem_shrink(struct drm_i915_private *dev_priv,
  2723. long target,
  2724. unsigned flags);
  2725. #define I915_SHRINK_PURGEABLE 0x1
  2726. #define I915_SHRINK_UNBOUND 0x2
  2727. #define I915_SHRINK_BOUND 0x4
  2728. unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
  2729. void i915_gem_shrinker_init(struct drm_i915_private *dev_priv);
  2730. /* i915_gem_tiling.c */
  2731. static inline bool i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
  2732. {
  2733. struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
  2734. return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
  2735. obj->tiling_mode != I915_TILING_NONE;
  2736. }
  2737. /* i915_gem_debug.c */
  2738. #if WATCH_LISTS
  2739. int i915_verify_lists(struct drm_device *dev);
  2740. #else
  2741. #define i915_verify_lists(dev) 0
  2742. #endif
  2743. /* i915_debugfs.c */
  2744. int i915_debugfs_init(struct drm_minor *minor);
  2745. void i915_debugfs_cleanup(struct drm_minor *minor);
  2746. #ifdef CONFIG_DEBUG_FS
  2747. int i915_debugfs_connector_add(struct drm_connector *connector);
  2748. void intel_display_crc_init(struct drm_device *dev);
  2749. #else
  2750. static inline int i915_debugfs_connector_add(struct drm_connector *connector)
  2751. { return 0; }
  2752. static inline void intel_display_crc_init(struct drm_device *dev) {}
  2753. #endif
  2754. /* i915_gpu_error.c */
  2755. __printf(2, 3)
  2756. void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
  2757. int i915_error_state_to_str(struct drm_i915_error_state_buf *estr,
  2758. const struct i915_error_state_file_priv *error);
  2759. int i915_error_state_buf_init(struct drm_i915_error_state_buf *eb,
  2760. struct drm_i915_private *i915,
  2761. size_t count, loff_t pos);
  2762. static inline void i915_error_state_buf_release(
  2763. struct drm_i915_error_state_buf *eb)
  2764. {
  2765. kfree(eb->buf);
  2766. }
  2767. void i915_capture_error_state(struct drm_device *dev, bool wedge,
  2768. const char *error_msg);
  2769. void i915_error_state_get(struct drm_device *dev,
  2770. struct i915_error_state_file_priv *error_priv);
  2771. void i915_error_state_put(struct i915_error_state_file_priv *error_priv);
  2772. void i915_destroy_error_state(struct drm_device *dev);
  2773. void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone);
  2774. const char *i915_cache_level_str(struct drm_i915_private *i915, int type);
  2775. /* i915_cmd_parser.c */
  2776. int i915_cmd_parser_get_version(void);
  2777. int i915_cmd_parser_init_ring(struct intel_engine_cs *ring);
  2778. void i915_cmd_parser_fini_ring(struct intel_engine_cs *ring);
  2779. bool i915_needs_cmd_parser(struct intel_engine_cs *ring);
  2780. int i915_parse_cmds(struct intel_engine_cs *ring,
  2781. struct drm_i915_gem_object *batch_obj,
  2782. struct drm_i915_gem_object *shadow_batch_obj,
  2783. u32 batch_start_offset,
  2784. u32 batch_len,
  2785. bool is_master);
  2786. /* i915_suspend.c */
  2787. extern int i915_save_state(struct drm_device *dev);
  2788. extern int i915_restore_state(struct drm_device *dev);
  2789. /* i915_sysfs.c */
  2790. void i915_setup_sysfs(struct drm_device *dev_priv);
  2791. void i915_teardown_sysfs(struct drm_device *dev_priv);
  2792. /* intel_i2c.c */
  2793. extern int intel_setup_gmbus(struct drm_device *dev);
  2794. extern void intel_teardown_gmbus(struct drm_device *dev);
  2795. extern bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
  2796. unsigned int pin);
  2797. extern struct i2c_adapter *
  2798. intel_gmbus_get_adapter(struct drm_i915_private *dev_priv, unsigned int pin);
  2799. extern void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed);
  2800. extern void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit);
  2801. static inline bool intel_gmbus_is_forced_bit(struct i2c_adapter *adapter)
  2802. {
  2803. return container_of(adapter, struct intel_gmbus, adapter)->force_bit;
  2804. }
  2805. extern void intel_i2c_reset(struct drm_device *dev);
  2806. /* intel_opregion.c */
  2807. #ifdef CONFIG_ACPI
  2808. extern int intel_opregion_setup(struct drm_device *dev);
  2809. extern void intel_opregion_init(struct drm_device *dev);
  2810. extern void intel_opregion_fini(struct drm_device *dev);
  2811. extern void intel_opregion_asle_intr(struct drm_device *dev);
  2812. extern int intel_opregion_notify_encoder(struct intel_encoder *intel_encoder,
  2813. bool enable);
  2814. extern int intel_opregion_notify_adapter(struct drm_device *dev,
  2815. pci_power_t state);
  2816. #else
  2817. static inline int intel_opregion_setup(struct drm_device *dev) { return 0; }
  2818. static inline void intel_opregion_init(struct drm_device *dev) { return; }
  2819. static inline void intel_opregion_fini(struct drm_device *dev) { return; }
  2820. static inline void intel_opregion_asle_intr(struct drm_device *dev) { return; }
  2821. static inline int
  2822. intel_opregion_notify_encoder(struct intel_encoder *intel_encoder, bool enable)
  2823. {
  2824. return 0;
  2825. }
  2826. static inline int
  2827. intel_opregion_notify_adapter(struct drm_device *dev, pci_power_t state)
  2828. {
  2829. return 0;
  2830. }
  2831. #endif
  2832. /* intel_acpi.c */
  2833. #ifdef CONFIG_ACPI
  2834. extern void intel_register_dsm_handler(void);
  2835. extern void intel_unregister_dsm_handler(void);
  2836. #else
  2837. static inline void intel_register_dsm_handler(void) { return; }
  2838. static inline void intel_unregister_dsm_handler(void) { return; }
  2839. #endif /* CONFIG_ACPI */
  2840. /* modesetting */
  2841. extern void intel_modeset_init_hw(struct drm_device *dev);
  2842. extern void intel_modeset_init(struct drm_device *dev);
  2843. extern void intel_modeset_gem_init(struct drm_device *dev);
  2844. extern void intel_modeset_cleanup(struct drm_device *dev);
  2845. extern void intel_connector_unregister(struct intel_connector *);
  2846. extern int intel_modeset_vga_set_state(struct drm_device *dev, bool state);
  2847. extern void intel_display_resume(struct drm_device *dev);
  2848. extern void i915_redisable_vga(struct drm_device *dev);
  2849. extern void i915_redisable_vga_power_on(struct drm_device *dev);
  2850. extern bool ironlake_set_drps(struct drm_device *dev, u8 val);
  2851. extern void intel_init_pch_refclk(struct drm_device *dev);
  2852. extern void intel_set_rps(struct drm_device *dev, u8 val);
  2853. extern void intel_set_memory_cxsr(struct drm_i915_private *dev_priv,
  2854. bool enable);
  2855. extern void intel_detect_pch(struct drm_device *dev);
  2856. extern int intel_trans_dp_port_sel(struct drm_crtc *crtc);
  2857. extern int intel_enable_rc6(const struct drm_device *dev);
  2858. extern bool i915_semaphore_is_enabled(struct drm_device *dev);
  2859. int i915_reg_read_ioctl(struct drm_device *dev, void *data,
  2860. struct drm_file *file);
  2861. int i915_get_reset_stats_ioctl(struct drm_device *dev, void *data,
  2862. struct drm_file *file);
  2863. /* overlay */
  2864. extern struct intel_overlay_error_state *intel_overlay_capture_error_state(struct drm_device *dev);
  2865. extern void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e,
  2866. struct intel_overlay_error_state *error);
  2867. extern struct intel_display_error_state *intel_display_capture_error_state(struct drm_device *dev);
  2868. extern void intel_display_print_error_state(struct drm_i915_error_state_buf *e,
  2869. struct drm_device *dev,
  2870. struct intel_display_error_state *error);
  2871. int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val);
  2872. int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val);
  2873. /* intel_sideband.c */
  2874. u32 vlv_punit_read(struct drm_i915_private *dev_priv, u32 addr);
  2875. void vlv_punit_write(struct drm_i915_private *dev_priv, u32 addr, u32 val);
  2876. u32 vlv_nc_read(struct drm_i915_private *dev_priv, u8 addr);
  2877. u32 vlv_gpio_nc_read(struct drm_i915_private *dev_priv, u32 reg);
  2878. void vlv_gpio_nc_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2879. u32 vlv_cck_read(struct drm_i915_private *dev_priv, u32 reg);
  2880. void vlv_cck_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2881. u32 vlv_ccu_read(struct drm_i915_private *dev_priv, u32 reg);
  2882. void vlv_ccu_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2883. u32 vlv_bunit_read(struct drm_i915_private *dev_priv, u32 reg);
  2884. void vlv_bunit_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2885. u32 vlv_gps_core_read(struct drm_i915_private *dev_priv, u32 reg);
  2886. void vlv_gps_core_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2887. u32 vlv_dpio_read(struct drm_i915_private *dev_priv, enum pipe pipe, int reg);
  2888. void vlv_dpio_write(struct drm_i915_private *dev_priv, enum pipe pipe, int reg, u32 val);
  2889. u32 intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg,
  2890. enum intel_sbi_destination destination);
  2891. void intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value,
  2892. enum intel_sbi_destination destination);
  2893. u32 vlv_flisdsi_read(struct drm_i915_private *dev_priv, u32 reg);
  2894. void vlv_flisdsi_write(struct drm_i915_private *dev_priv, u32 reg, u32 val);
  2895. int intel_gpu_freq(struct drm_i915_private *dev_priv, int val);
  2896. int intel_freq_opcode(struct drm_i915_private *dev_priv, int val);
  2897. #define I915_READ8(reg) dev_priv->uncore.funcs.mmio_readb(dev_priv, (reg), true)
  2898. #define I915_WRITE8(reg, val) dev_priv->uncore.funcs.mmio_writeb(dev_priv, (reg), (val), true)
  2899. #define I915_READ16(reg) dev_priv->uncore.funcs.mmio_readw(dev_priv, (reg), true)
  2900. #define I915_WRITE16(reg, val) dev_priv->uncore.funcs.mmio_writew(dev_priv, (reg), (val), true)
  2901. #define I915_READ16_NOTRACE(reg) dev_priv->uncore.funcs.mmio_readw(dev_priv, (reg), false)
  2902. #define I915_WRITE16_NOTRACE(reg, val) dev_priv->uncore.funcs.mmio_writew(dev_priv, (reg), (val), false)
  2903. #define I915_READ(reg) dev_priv->uncore.funcs.mmio_readl(dev_priv, (reg), true)
  2904. #define I915_WRITE(reg, val) dev_priv->uncore.funcs.mmio_writel(dev_priv, (reg), (val), true)
  2905. #define I915_READ_NOTRACE(reg) dev_priv->uncore.funcs.mmio_readl(dev_priv, (reg), false)
  2906. #define I915_WRITE_NOTRACE(reg, val) dev_priv->uncore.funcs.mmio_writel(dev_priv, (reg), (val), false)
  2907. /* Be very careful with read/write 64-bit values. On 32-bit machines, they
  2908. * will be implemented using 2 32-bit writes in an arbitrary order with
  2909. * an arbitrary delay between them. This can cause the hardware to
  2910. * act upon the intermediate value, possibly leading to corruption and
  2911. * machine death. You have been warned.
  2912. */
  2913. #define I915_WRITE64(reg, val) dev_priv->uncore.funcs.mmio_writeq(dev_priv, (reg), (val), true)
  2914. #define I915_READ64(reg) dev_priv->uncore.funcs.mmio_readq(dev_priv, (reg), true)
  2915. #define I915_READ64_2x32(lower_reg, upper_reg) ({ \
  2916. u32 upper, lower, old_upper, loop = 0; \
  2917. upper = I915_READ(upper_reg); \
  2918. do { \
  2919. old_upper = upper; \
  2920. lower = I915_READ(lower_reg); \
  2921. upper = I915_READ(upper_reg); \
  2922. } while (upper != old_upper && loop++ < 2); \
  2923. (u64)upper << 32 | lower; })
  2924. #define POSTING_READ(reg) (void)I915_READ_NOTRACE(reg)
  2925. #define POSTING_READ16(reg) (void)I915_READ16_NOTRACE(reg)
  2926. /* These are untraced mmio-accessors that are only valid to be used inside
  2927. * criticial sections inside IRQ handlers where forcewake is explicitly
  2928. * controlled.
  2929. * Think twice, and think again, before using these.
  2930. * Note: Should only be used between intel_uncore_forcewake_irqlock() and
  2931. * intel_uncore_forcewake_irqunlock().
  2932. */
  2933. #define I915_READ_FW(reg__) readl(dev_priv->regs + (reg__))
  2934. #define I915_WRITE_FW(reg__, val__) writel(val__, dev_priv->regs + (reg__))
  2935. #define POSTING_READ_FW(reg__) (void)I915_READ_FW(reg__)
  2936. /* "Broadcast RGB" property */
  2937. #define INTEL_BROADCAST_RGB_AUTO 0
  2938. #define INTEL_BROADCAST_RGB_FULL 1
  2939. #define INTEL_BROADCAST_RGB_LIMITED 2
  2940. static inline uint32_t i915_vgacntrl_reg(struct drm_device *dev)
  2941. {
  2942. if (IS_VALLEYVIEW(dev))
  2943. return VLV_VGACNTRL;
  2944. else if (INTEL_INFO(dev)->gen >= 5)
  2945. return CPU_VGACNTRL;
  2946. else
  2947. return VGACNTRL;
  2948. }
  2949. static inline void __user *to_user_ptr(u64 address)
  2950. {
  2951. return (void __user *)(uintptr_t)address;
  2952. }
  2953. static inline unsigned long msecs_to_jiffies_timeout(const unsigned int m)
  2954. {
  2955. unsigned long j = msecs_to_jiffies(m);
  2956. return min_t(unsigned long, MAX_JIFFY_OFFSET, j + 1);
  2957. }
  2958. static inline unsigned long nsecs_to_jiffies_timeout(const u64 n)
  2959. {
  2960. return min_t(u64, MAX_JIFFY_OFFSET, nsecs_to_jiffies64(n) + 1);
  2961. }
  2962. static inline unsigned long
  2963. timespec_to_jiffies_timeout(const struct timespec *value)
  2964. {
  2965. unsigned long j = timespec_to_jiffies(value);
  2966. return min_t(unsigned long, MAX_JIFFY_OFFSET, j + 1);
  2967. }
  2968. /*
  2969. * If you need to wait X milliseconds between events A and B, but event B
  2970. * doesn't happen exactly after event A, you record the timestamp (jiffies) of
  2971. * when event A happened, then just before event B you call this function and
  2972. * pass the timestamp as the first argument, and X as the second argument.
  2973. */
  2974. static inline void
  2975. wait_remaining_ms_from_jiffies(unsigned long timestamp_jiffies, int to_wait_ms)
  2976. {
  2977. unsigned long target_jiffies, tmp_jiffies, remaining_jiffies;
  2978. /*
  2979. * Don't re-read the value of "jiffies" every time since it may change
  2980. * behind our back and break the math.
  2981. */
  2982. tmp_jiffies = jiffies;
  2983. target_jiffies = timestamp_jiffies +
  2984. msecs_to_jiffies_timeout(to_wait_ms);
  2985. if (time_after(target_jiffies, tmp_jiffies)) {
  2986. remaining_jiffies = target_jiffies - tmp_jiffies;
  2987. while (remaining_jiffies)
  2988. remaining_jiffies =
  2989. schedule_timeout_uninterruptible(remaining_jiffies);
  2990. }
  2991. }
  2992. static inline void i915_trace_irq_get(struct intel_engine_cs *ring,
  2993. struct drm_i915_gem_request *req)
  2994. {
  2995. if (ring->trace_irq_req == NULL && ring->irq_get(ring))
  2996. i915_gem_request_assign(&ring->trace_irq_req, req);
  2997. }
  2998. #endif