i915_drv.h 106 KB

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