intel_runtime_pm.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  1. /*
  2. * Copyright © 2012-2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Eugeni Dodonov <eugeni.dodonov@intel.com>
  25. * Daniel Vetter <daniel.vetter@ffwll.ch>
  26. *
  27. */
  28. #include <linux/pm_runtime.h>
  29. #include <linux/vgaarb.h>
  30. #include "i915_drv.h"
  31. #include "intel_drv.h"
  32. /**
  33. * DOC: runtime pm
  34. *
  35. * The i915 driver supports dynamic enabling and disabling of entire hardware
  36. * blocks at runtime. This is especially important on the display side where
  37. * software is supposed to control many power gates manually on recent hardware,
  38. * since on the GT side a lot of the power management is done by the hardware.
  39. * But even there some manual control at the device level is required.
  40. *
  41. * Since i915 supports a diverse set of platforms with a unified codebase and
  42. * hardware engineers just love to shuffle functionality around between power
  43. * domains there's a sizeable amount of indirection required. This file provides
  44. * generic functions to the driver for grabbing and releasing references for
  45. * abstract power domains. It then maps those to the actual power wells
  46. * present for a given platform.
  47. */
  48. #define GEN9_ENABLE_DC5(dev) 0
  49. #define SKL_ENABLE_DC6(dev) IS_SKYLAKE(dev)
  50. #define for_each_power_well(i, power_well, domain_mask, power_domains) \
  51. for (i = 0; \
  52. i < (power_domains)->power_well_count && \
  53. ((power_well) = &(power_domains)->power_wells[i]); \
  54. i++) \
  55. if ((power_well)->domains & (domain_mask))
  56. #define for_each_power_well_rev(i, power_well, domain_mask, power_domains) \
  57. for (i = (power_domains)->power_well_count - 1; \
  58. i >= 0 && ((power_well) = &(power_domains)->power_wells[i]);\
  59. i--) \
  60. if ((power_well)->domains & (domain_mask))
  61. bool intel_display_power_well_is_enabled(struct drm_i915_private *dev_priv,
  62. int power_well_id);
  63. static void intel_power_well_enable(struct drm_i915_private *dev_priv,
  64. struct i915_power_well *power_well)
  65. {
  66. DRM_DEBUG_KMS("enabling %s\n", power_well->name);
  67. power_well->ops->enable(dev_priv, power_well);
  68. power_well->hw_enabled = true;
  69. }
  70. static void intel_power_well_disable(struct drm_i915_private *dev_priv,
  71. struct i915_power_well *power_well)
  72. {
  73. DRM_DEBUG_KMS("disabling %s\n", power_well->name);
  74. power_well->hw_enabled = false;
  75. power_well->ops->disable(dev_priv, power_well);
  76. }
  77. /*
  78. * We should only use the power well if we explicitly asked the hardware to
  79. * enable it, so check if it's enabled and also check if we've requested it to
  80. * be enabled.
  81. */
  82. static bool hsw_power_well_enabled(struct drm_i915_private *dev_priv,
  83. struct i915_power_well *power_well)
  84. {
  85. return I915_READ(HSW_PWR_WELL_DRIVER) ==
  86. (HSW_PWR_WELL_ENABLE_REQUEST | HSW_PWR_WELL_STATE_ENABLED);
  87. }
  88. /**
  89. * __intel_display_power_is_enabled - unlocked check for a power domain
  90. * @dev_priv: i915 device instance
  91. * @domain: power domain to check
  92. *
  93. * This is the unlocked version of intel_display_power_is_enabled() and should
  94. * only be used from error capture and recovery code where deadlocks are
  95. * possible.
  96. *
  97. * Returns:
  98. * True when the power domain is enabled, false otherwise.
  99. */
  100. bool __intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
  101. enum intel_display_power_domain domain)
  102. {
  103. struct i915_power_domains *power_domains;
  104. struct i915_power_well *power_well;
  105. bool is_enabled;
  106. int i;
  107. if (dev_priv->pm.suspended)
  108. return false;
  109. power_domains = &dev_priv->power_domains;
  110. is_enabled = true;
  111. for_each_power_well_rev(i, power_well, BIT(domain), power_domains) {
  112. if (power_well->always_on)
  113. continue;
  114. if (!power_well->hw_enabled) {
  115. is_enabled = false;
  116. break;
  117. }
  118. }
  119. return is_enabled;
  120. }
  121. /**
  122. * intel_display_power_is_enabled - check for a power domain
  123. * @dev_priv: i915 device instance
  124. * @domain: power domain to check
  125. *
  126. * This function can be used to check the hw power domain state. It is mostly
  127. * used in hardware state readout functions. Everywhere else code should rely
  128. * upon explicit power domain reference counting to ensure that the hardware
  129. * block is powered up before accessing it.
  130. *
  131. * Callers must hold the relevant modesetting locks to ensure that concurrent
  132. * threads can't disable the power well while the caller tries to read a few
  133. * registers.
  134. *
  135. * Returns:
  136. * True when the power domain is enabled, false otherwise.
  137. */
  138. bool intel_display_power_is_enabled(struct drm_i915_private *dev_priv,
  139. enum intel_display_power_domain domain)
  140. {
  141. struct i915_power_domains *power_domains;
  142. bool ret;
  143. power_domains = &dev_priv->power_domains;
  144. mutex_lock(&power_domains->lock);
  145. ret = __intel_display_power_is_enabled(dev_priv, domain);
  146. mutex_unlock(&power_domains->lock);
  147. return ret;
  148. }
  149. /**
  150. * intel_display_set_init_power - set the initial power domain state
  151. * @dev_priv: i915 device instance
  152. * @enable: whether to enable or disable the initial power domain state
  153. *
  154. * For simplicity our driver load/unload and system suspend/resume code assumes
  155. * that all power domains are always enabled. This functions controls the state
  156. * of this little hack. While the initial power domain state is enabled runtime
  157. * pm is effectively disabled.
  158. */
  159. void intel_display_set_init_power(struct drm_i915_private *dev_priv,
  160. bool enable)
  161. {
  162. if (dev_priv->power_domains.init_power_on == enable)
  163. return;
  164. if (enable)
  165. intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
  166. else
  167. intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
  168. dev_priv->power_domains.init_power_on = enable;
  169. }
  170. /*
  171. * Starting with Haswell, we have a "Power Down Well" that can be turned off
  172. * when not needed anymore. We have 4 registers that can request the power well
  173. * to be enabled, and it will only be disabled if none of the registers is
  174. * requesting it to be enabled.
  175. */
  176. static void hsw_power_well_post_enable(struct drm_i915_private *dev_priv)
  177. {
  178. struct drm_device *dev = dev_priv->dev;
  179. /*
  180. * After we re-enable the power well, if we touch VGA register 0x3d5
  181. * we'll get unclaimed register interrupts. This stops after we write
  182. * anything to the VGA MSR register. The vgacon module uses this
  183. * register all the time, so if we unbind our driver and, as a
  184. * consequence, bind vgacon, we'll get stuck in an infinite loop at
  185. * console_unlock(). So make here we touch the VGA MSR register, making
  186. * sure vgacon can keep working normally without triggering interrupts
  187. * and error messages.
  188. */
  189. vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
  190. outb(inb(VGA_MSR_READ), VGA_MSR_WRITE);
  191. vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
  192. if (IS_BROADWELL(dev))
  193. gen8_irq_power_well_post_enable(dev_priv,
  194. 1 << PIPE_C | 1 << PIPE_B);
  195. }
  196. static void skl_power_well_post_enable(struct drm_i915_private *dev_priv,
  197. struct i915_power_well *power_well)
  198. {
  199. struct drm_device *dev = dev_priv->dev;
  200. /*
  201. * After we re-enable the power well, if we touch VGA register 0x3d5
  202. * we'll get unclaimed register interrupts. This stops after we write
  203. * anything to the VGA MSR register. The vgacon module uses this
  204. * register all the time, so if we unbind our driver and, as a
  205. * consequence, bind vgacon, we'll get stuck in an infinite loop at
  206. * console_unlock(). So make here we touch the VGA MSR register, making
  207. * sure vgacon can keep working normally without triggering interrupts
  208. * and error messages.
  209. */
  210. if (power_well->data == SKL_DISP_PW_2) {
  211. vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
  212. outb(inb(VGA_MSR_READ), VGA_MSR_WRITE);
  213. vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
  214. gen8_irq_power_well_post_enable(dev_priv,
  215. 1 << PIPE_C | 1 << PIPE_B);
  216. }
  217. if (power_well->data == SKL_DISP_PW_1) {
  218. intel_prepare_ddi(dev);
  219. gen8_irq_power_well_post_enable(dev_priv, 1 << PIPE_A);
  220. }
  221. }
  222. static void hsw_set_power_well(struct drm_i915_private *dev_priv,
  223. struct i915_power_well *power_well, bool enable)
  224. {
  225. bool is_enabled, enable_requested;
  226. uint32_t tmp;
  227. tmp = I915_READ(HSW_PWR_WELL_DRIVER);
  228. is_enabled = tmp & HSW_PWR_WELL_STATE_ENABLED;
  229. enable_requested = tmp & HSW_PWR_WELL_ENABLE_REQUEST;
  230. if (enable) {
  231. if (!enable_requested)
  232. I915_WRITE(HSW_PWR_WELL_DRIVER,
  233. HSW_PWR_WELL_ENABLE_REQUEST);
  234. if (!is_enabled) {
  235. DRM_DEBUG_KMS("Enabling power well\n");
  236. if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
  237. HSW_PWR_WELL_STATE_ENABLED), 20))
  238. DRM_ERROR("Timeout enabling power well\n");
  239. hsw_power_well_post_enable(dev_priv);
  240. }
  241. } else {
  242. if (enable_requested) {
  243. I915_WRITE(HSW_PWR_WELL_DRIVER, 0);
  244. POSTING_READ(HSW_PWR_WELL_DRIVER);
  245. DRM_DEBUG_KMS("Requesting to disable the power well\n");
  246. }
  247. }
  248. }
  249. #define SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
  250. BIT(POWER_DOMAIN_TRANSCODER_A) | \
  251. BIT(POWER_DOMAIN_PIPE_B) | \
  252. BIT(POWER_DOMAIN_TRANSCODER_B) | \
  253. BIT(POWER_DOMAIN_PIPE_C) | \
  254. BIT(POWER_DOMAIN_TRANSCODER_C) | \
  255. BIT(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
  256. BIT(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
  257. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  258. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  259. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  260. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  261. BIT(POWER_DOMAIN_PORT_DDI_D_2_LANES) | \
  262. BIT(POWER_DOMAIN_PORT_DDI_D_4_LANES) | \
  263. BIT(POWER_DOMAIN_PORT_DDI_E_2_LANES) | \
  264. BIT(POWER_DOMAIN_AUX_B) | \
  265. BIT(POWER_DOMAIN_AUX_C) | \
  266. BIT(POWER_DOMAIN_AUX_D) | \
  267. BIT(POWER_DOMAIN_AUDIO) | \
  268. BIT(POWER_DOMAIN_VGA) | \
  269. BIT(POWER_DOMAIN_INIT))
  270. #define SKL_DISPLAY_POWERWELL_1_POWER_DOMAINS ( \
  271. SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
  272. BIT(POWER_DOMAIN_PLLS) | \
  273. BIT(POWER_DOMAIN_PIPE_A) | \
  274. BIT(POWER_DOMAIN_TRANSCODER_EDP) | \
  275. BIT(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
  276. BIT(POWER_DOMAIN_PORT_DDI_A_2_LANES) | \
  277. BIT(POWER_DOMAIN_PORT_DDI_A_4_LANES) | \
  278. BIT(POWER_DOMAIN_AUX_A) | \
  279. BIT(POWER_DOMAIN_INIT))
  280. #define SKL_DISPLAY_DDI_A_E_POWER_DOMAINS ( \
  281. BIT(POWER_DOMAIN_PORT_DDI_A_2_LANES) | \
  282. BIT(POWER_DOMAIN_PORT_DDI_A_4_LANES) | \
  283. BIT(POWER_DOMAIN_PORT_DDI_E_2_LANES) | \
  284. BIT(POWER_DOMAIN_INIT))
  285. #define SKL_DISPLAY_DDI_B_POWER_DOMAINS ( \
  286. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  287. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  288. BIT(POWER_DOMAIN_INIT))
  289. #define SKL_DISPLAY_DDI_C_POWER_DOMAINS ( \
  290. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  291. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  292. BIT(POWER_DOMAIN_INIT))
  293. #define SKL_DISPLAY_DDI_D_POWER_DOMAINS ( \
  294. BIT(POWER_DOMAIN_PORT_DDI_D_2_LANES) | \
  295. BIT(POWER_DOMAIN_PORT_DDI_D_4_LANES) | \
  296. BIT(POWER_DOMAIN_INIT))
  297. #define SKL_DISPLAY_MISC_IO_POWER_DOMAINS ( \
  298. SKL_DISPLAY_POWERWELL_1_POWER_DOMAINS | \
  299. BIT(POWER_DOMAIN_PLLS) | \
  300. BIT(POWER_DOMAIN_INIT))
  301. #define SKL_DISPLAY_ALWAYS_ON_POWER_DOMAINS ( \
  302. (POWER_DOMAIN_MASK & ~(SKL_DISPLAY_POWERWELL_1_POWER_DOMAINS | \
  303. SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
  304. SKL_DISPLAY_DDI_A_E_POWER_DOMAINS | \
  305. SKL_DISPLAY_DDI_B_POWER_DOMAINS | \
  306. SKL_DISPLAY_DDI_C_POWER_DOMAINS | \
  307. SKL_DISPLAY_DDI_D_POWER_DOMAINS | \
  308. SKL_DISPLAY_MISC_IO_POWER_DOMAINS)) | \
  309. BIT(POWER_DOMAIN_INIT))
  310. #define BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS ( \
  311. BIT(POWER_DOMAIN_TRANSCODER_A) | \
  312. BIT(POWER_DOMAIN_PIPE_B) | \
  313. BIT(POWER_DOMAIN_TRANSCODER_B) | \
  314. BIT(POWER_DOMAIN_PIPE_C) | \
  315. BIT(POWER_DOMAIN_TRANSCODER_C) | \
  316. BIT(POWER_DOMAIN_PIPE_B_PANEL_FITTER) | \
  317. BIT(POWER_DOMAIN_PIPE_C_PANEL_FITTER) | \
  318. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  319. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  320. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  321. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  322. BIT(POWER_DOMAIN_AUX_B) | \
  323. BIT(POWER_DOMAIN_AUX_C) | \
  324. BIT(POWER_DOMAIN_AUDIO) | \
  325. BIT(POWER_DOMAIN_VGA) | \
  326. BIT(POWER_DOMAIN_INIT))
  327. #define BXT_DISPLAY_POWERWELL_1_POWER_DOMAINS ( \
  328. BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS | \
  329. BIT(POWER_DOMAIN_PIPE_A) | \
  330. BIT(POWER_DOMAIN_TRANSCODER_EDP) | \
  331. BIT(POWER_DOMAIN_PIPE_A_PANEL_FITTER) | \
  332. BIT(POWER_DOMAIN_PORT_DDI_A_2_LANES) | \
  333. BIT(POWER_DOMAIN_PORT_DDI_A_4_LANES) | \
  334. BIT(POWER_DOMAIN_AUX_A) | \
  335. BIT(POWER_DOMAIN_PLLS) | \
  336. BIT(POWER_DOMAIN_INIT))
  337. #define BXT_DISPLAY_ALWAYS_ON_POWER_DOMAINS ( \
  338. (POWER_DOMAIN_MASK & ~(BXT_DISPLAY_POWERWELL_1_POWER_DOMAINS | \
  339. BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS)) | \
  340. BIT(POWER_DOMAIN_INIT))
  341. static void assert_can_enable_dc9(struct drm_i915_private *dev_priv)
  342. {
  343. struct drm_device *dev = dev_priv->dev;
  344. WARN(!IS_BROXTON(dev), "Platform doesn't support DC9.\n");
  345. WARN((I915_READ(DC_STATE_EN) & DC_STATE_EN_DC9),
  346. "DC9 already programmed to be enabled.\n");
  347. WARN(I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5,
  348. "DC5 still not disabled to enable DC9.\n");
  349. WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on.\n");
  350. WARN(intel_irqs_enabled(dev_priv), "Interrupts not disabled yet.\n");
  351. /*
  352. * TODO: check for the following to verify the conditions to enter DC9
  353. * state are satisfied:
  354. * 1] Check relevant display engine registers to verify if mode set
  355. * disable sequence was followed.
  356. * 2] Check if display uninitialize sequence is initialized.
  357. */
  358. }
  359. static void assert_can_disable_dc9(struct drm_i915_private *dev_priv)
  360. {
  361. WARN(intel_irqs_enabled(dev_priv), "Interrupts not disabled yet.\n");
  362. WARN(!(I915_READ(DC_STATE_EN) & DC_STATE_EN_DC9),
  363. "DC9 already programmed to be disabled.\n");
  364. WARN(I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5,
  365. "DC5 still not disabled.\n");
  366. /*
  367. * TODO: check for the following to verify DC9 state was indeed
  368. * entered before programming to disable it:
  369. * 1] Check relevant display engine registers to verify if mode
  370. * set disable sequence was followed.
  371. * 2] Check if display uninitialize sequence is initialized.
  372. */
  373. }
  374. void bxt_enable_dc9(struct drm_i915_private *dev_priv)
  375. {
  376. uint32_t val;
  377. assert_can_enable_dc9(dev_priv);
  378. DRM_DEBUG_KMS("Enabling DC9\n");
  379. val = I915_READ(DC_STATE_EN);
  380. val |= DC_STATE_EN_DC9;
  381. I915_WRITE(DC_STATE_EN, val);
  382. POSTING_READ(DC_STATE_EN);
  383. }
  384. void bxt_disable_dc9(struct drm_i915_private *dev_priv)
  385. {
  386. uint32_t val;
  387. assert_can_disable_dc9(dev_priv);
  388. DRM_DEBUG_KMS("Disabling DC9\n");
  389. val = I915_READ(DC_STATE_EN);
  390. val &= ~DC_STATE_EN_DC9;
  391. I915_WRITE(DC_STATE_EN, val);
  392. POSTING_READ(DC_STATE_EN);
  393. }
  394. static void gen9_set_dc_state_debugmask_memory_up(
  395. struct drm_i915_private *dev_priv)
  396. {
  397. uint32_t val;
  398. /* The below bit doesn't need to be cleared ever afterwards */
  399. val = I915_READ(DC_STATE_DEBUG);
  400. if (!(val & DC_STATE_DEBUG_MASK_MEMORY_UP)) {
  401. val |= DC_STATE_DEBUG_MASK_MEMORY_UP;
  402. I915_WRITE(DC_STATE_DEBUG, val);
  403. POSTING_READ(DC_STATE_DEBUG);
  404. }
  405. }
  406. static void assert_can_enable_dc5(struct drm_i915_private *dev_priv)
  407. {
  408. struct drm_device *dev = dev_priv->dev;
  409. bool pg2_enabled = intel_display_power_well_is_enabled(dev_priv,
  410. SKL_DISP_PW_2);
  411. WARN_ONCE(!IS_SKYLAKE(dev), "Platform doesn't support DC5.\n");
  412. WARN_ONCE(!HAS_RUNTIME_PM(dev), "Runtime PM not enabled.\n");
  413. WARN_ONCE(pg2_enabled, "PG2 not disabled to enable DC5.\n");
  414. WARN_ONCE((I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC5),
  415. "DC5 already programmed to be enabled.\n");
  416. WARN_ONCE(dev_priv->pm.suspended,
  417. "DC5 cannot be enabled, if platform is runtime-suspended.\n");
  418. assert_csr_loaded(dev_priv);
  419. }
  420. static void assert_can_disable_dc5(struct drm_i915_private *dev_priv)
  421. {
  422. bool pg2_enabled = intel_display_power_well_is_enabled(dev_priv,
  423. SKL_DISP_PW_2);
  424. /*
  425. * During initialization, the firmware may not be loaded yet.
  426. * We still want to make sure that the DC enabling flag is cleared.
  427. */
  428. if (dev_priv->power_domains.initializing)
  429. return;
  430. WARN_ONCE(!pg2_enabled, "PG2 not enabled to disable DC5.\n");
  431. WARN_ONCE(dev_priv->pm.suspended,
  432. "Disabling of DC5 while platform is runtime-suspended should never happen.\n");
  433. }
  434. static void gen9_enable_dc5(struct drm_i915_private *dev_priv)
  435. {
  436. uint32_t val;
  437. assert_can_enable_dc5(dev_priv);
  438. DRM_DEBUG_KMS("Enabling DC5\n");
  439. gen9_set_dc_state_debugmask_memory_up(dev_priv);
  440. val = I915_READ(DC_STATE_EN);
  441. val &= ~DC_STATE_EN_UPTO_DC5_DC6_MASK;
  442. val |= DC_STATE_EN_UPTO_DC5;
  443. I915_WRITE(DC_STATE_EN, val);
  444. POSTING_READ(DC_STATE_EN);
  445. }
  446. static void gen9_disable_dc5(struct drm_i915_private *dev_priv)
  447. {
  448. uint32_t val;
  449. assert_can_disable_dc5(dev_priv);
  450. DRM_DEBUG_KMS("Disabling DC5\n");
  451. val = I915_READ(DC_STATE_EN);
  452. val &= ~DC_STATE_EN_UPTO_DC5;
  453. I915_WRITE(DC_STATE_EN, val);
  454. POSTING_READ(DC_STATE_EN);
  455. }
  456. static void assert_can_enable_dc6(struct drm_i915_private *dev_priv)
  457. {
  458. struct drm_device *dev = dev_priv->dev;
  459. WARN_ONCE(!IS_SKYLAKE(dev), "Platform doesn't support DC6.\n");
  460. WARN_ONCE(!HAS_RUNTIME_PM(dev), "Runtime PM not enabled.\n");
  461. WARN_ONCE(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
  462. "Backlight is not disabled.\n");
  463. WARN_ONCE((I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC6),
  464. "DC6 already programmed to be enabled.\n");
  465. assert_csr_loaded(dev_priv);
  466. }
  467. static void assert_can_disable_dc6(struct drm_i915_private *dev_priv)
  468. {
  469. /*
  470. * During initialization, the firmware may not be loaded yet.
  471. * We still want to make sure that the DC enabling flag is cleared.
  472. */
  473. if (dev_priv->power_domains.initializing)
  474. return;
  475. assert_csr_loaded(dev_priv);
  476. WARN_ONCE(!(I915_READ(DC_STATE_EN) & DC_STATE_EN_UPTO_DC6),
  477. "DC6 already programmed to be disabled.\n");
  478. }
  479. static void skl_enable_dc6(struct drm_i915_private *dev_priv)
  480. {
  481. uint32_t val;
  482. assert_can_enable_dc6(dev_priv);
  483. DRM_DEBUG_KMS("Enabling DC6\n");
  484. gen9_set_dc_state_debugmask_memory_up(dev_priv);
  485. val = I915_READ(DC_STATE_EN);
  486. val &= ~DC_STATE_EN_UPTO_DC5_DC6_MASK;
  487. val |= DC_STATE_EN_UPTO_DC6;
  488. I915_WRITE(DC_STATE_EN, val);
  489. POSTING_READ(DC_STATE_EN);
  490. }
  491. static void skl_disable_dc6(struct drm_i915_private *dev_priv)
  492. {
  493. uint32_t val;
  494. assert_can_disable_dc6(dev_priv);
  495. DRM_DEBUG_KMS("Disabling DC6\n");
  496. val = I915_READ(DC_STATE_EN);
  497. val &= ~DC_STATE_EN_UPTO_DC6;
  498. I915_WRITE(DC_STATE_EN, val);
  499. POSTING_READ(DC_STATE_EN);
  500. }
  501. static void skl_set_power_well(struct drm_i915_private *dev_priv,
  502. struct i915_power_well *power_well, bool enable)
  503. {
  504. struct drm_device *dev = dev_priv->dev;
  505. uint32_t tmp, fuse_status;
  506. uint32_t req_mask, state_mask;
  507. bool is_enabled, enable_requested, check_fuse_status = false;
  508. tmp = I915_READ(HSW_PWR_WELL_DRIVER);
  509. fuse_status = I915_READ(SKL_FUSE_STATUS);
  510. switch (power_well->data) {
  511. case SKL_DISP_PW_1:
  512. if (wait_for((I915_READ(SKL_FUSE_STATUS) &
  513. SKL_FUSE_PG0_DIST_STATUS), 1)) {
  514. DRM_ERROR("PG0 not enabled\n");
  515. return;
  516. }
  517. break;
  518. case SKL_DISP_PW_2:
  519. if (!(fuse_status & SKL_FUSE_PG1_DIST_STATUS)) {
  520. DRM_ERROR("PG1 in disabled state\n");
  521. return;
  522. }
  523. break;
  524. case SKL_DISP_PW_DDI_A_E:
  525. case SKL_DISP_PW_DDI_B:
  526. case SKL_DISP_PW_DDI_C:
  527. case SKL_DISP_PW_DDI_D:
  528. case SKL_DISP_PW_MISC_IO:
  529. break;
  530. default:
  531. WARN(1, "Unknown power well %lu\n", power_well->data);
  532. return;
  533. }
  534. req_mask = SKL_POWER_WELL_REQ(power_well->data);
  535. enable_requested = tmp & req_mask;
  536. state_mask = SKL_POWER_WELL_STATE(power_well->data);
  537. is_enabled = tmp & state_mask;
  538. if (enable) {
  539. if (!enable_requested) {
  540. WARN((tmp & state_mask) &&
  541. !I915_READ(HSW_PWR_WELL_BIOS),
  542. "Invalid for power well status to be enabled, unless done by the BIOS, \
  543. when request is to disable!\n");
  544. if ((GEN9_ENABLE_DC5(dev) || SKL_ENABLE_DC6(dev)) &&
  545. power_well->data == SKL_DISP_PW_2) {
  546. if (SKL_ENABLE_DC6(dev)) {
  547. skl_disable_dc6(dev_priv);
  548. /*
  549. * DDI buffer programming unnecessary during driver-load/resume
  550. * as it's already done during modeset initialization then.
  551. * It's also invalid here as encoder list is still uninitialized.
  552. */
  553. if (!dev_priv->power_domains.initializing)
  554. intel_prepare_ddi(dev);
  555. } else {
  556. gen9_disable_dc5(dev_priv);
  557. }
  558. }
  559. I915_WRITE(HSW_PWR_WELL_DRIVER, tmp | req_mask);
  560. }
  561. if (!is_enabled) {
  562. DRM_DEBUG_KMS("Enabling %s\n", power_well->name);
  563. if (wait_for((I915_READ(HSW_PWR_WELL_DRIVER) &
  564. state_mask), 1))
  565. DRM_ERROR("%s enable timeout\n",
  566. power_well->name);
  567. check_fuse_status = true;
  568. }
  569. } else {
  570. if (enable_requested) {
  571. if (IS_SKYLAKE(dev) &&
  572. (power_well->data == SKL_DISP_PW_1) &&
  573. (intel_csr_load_status_get(dev_priv) == FW_LOADED))
  574. DRM_DEBUG_KMS("Not Disabling PW1, dmc will handle\n");
  575. else {
  576. I915_WRITE(HSW_PWR_WELL_DRIVER, tmp & ~req_mask);
  577. POSTING_READ(HSW_PWR_WELL_DRIVER);
  578. DRM_DEBUG_KMS("Disabling %s\n", power_well->name);
  579. }
  580. if ((GEN9_ENABLE_DC5(dev) || SKL_ENABLE_DC6(dev)) &&
  581. power_well->data == SKL_DISP_PW_2) {
  582. enum csr_state state;
  583. /* TODO: wait for a completion event or
  584. * similar here instead of busy
  585. * waiting using wait_for function.
  586. */
  587. wait_for((state = intel_csr_load_status_get(dev_priv)) !=
  588. FW_UNINITIALIZED, 1000);
  589. if (state != FW_LOADED)
  590. DRM_DEBUG("CSR firmware not ready (%d)\n",
  591. state);
  592. else
  593. if (SKL_ENABLE_DC6(dev))
  594. skl_enable_dc6(dev_priv);
  595. else
  596. gen9_enable_dc5(dev_priv);
  597. }
  598. }
  599. }
  600. if (check_fuse_status) {
  601. if (power_well->data == SKL_DISP_PW_1) {
  602. if (wait_for((I915_READ(SKL_FUSE_STATUS) &
  603. SKL_FUSE_PG1_DIST_STATUS), 1))
  604. DRM_ERROR("PG1 distributing status timeout\n");
  605. } else if (power_well->data == SKL_DISP_PW_2) {
  606. if (wait_for((I915_READ(SKL_FUSE_STATUS) &
  607. SKL_FUSE_PG2_DIST_STATUS), 1))
  608. DRM_ERROR("PG2 distributing status timeout\n");
  609. }
  610. }
  611. if (enable && !is_enabled)
  612. skl_power_well_post_enable(dev_priv, power_well);
  613. }
  614. static void hsw_power_well_sync_hw(struct drm_i915_private *dev_priv,
  615. struct i915_power_well *power_well)
  616. {
  617. hsw_set_power_well(dev_priv, power_well, power_well->count > 0);
  618. /*
  619. * We're taking over the BIOS, so clear any requests made by it since
  620. * the driver is in charge now.
  621. */
  622. if (I915_READ(HSW_PWR_WELL_BIOS) & HSW_PWR_WELL_ENABLE_REQUEST)
  623. I915_WRITE(HSW_PWR_WELL_BIOS, 0);
  624. }
  625. static void hsw_power_well_enable(struct drm_i915_private *dev_priv,
  626. struct i915_power_well *power_well)
  627. {
  628. hsw_set_power_well(dev_priv, power_well, true);
  629. }
  630. static void hsw_power_well_disable(struct drm_i915_private *dev_priv,
  631. struct i915_power_well *power_well)
  632. {
  633. hsw_set_power_well(dev_priv, power_well, false);
  634. }
  635. static bool skl_power_well_enabled(struct drm_i915_private *dev_priv,
  636. struct i915_power_well *power_well)
  637. {
  638. uint32_t mask = SKL_POWER_WELL_REQ(power_well->data) |
  639. SKL_POWER_WELL_STATE(power_well->data);
  640. return (I915_READ(HSW_PWR_WELL_DRIVER) & mask) == mask;
  641. }
  642. static void skl_power_well_sync_hw(struct drm_i915_private *dev_priv,
  643. struct i915_power_well *power_well)
  644. {
  645. skl_set_power_well(dev_priv, power_well, power_well->count > 0);
  646. /* Clear any request made by BIOS as driver is taking over */
  647. I915_WRITE(HSW_PWR_WELL_BIOS, 0);
  648. }
  649. static void skl_power_well_enable(struct drm_i915_private *dev_priv,
  650. struct i915_power_well *power_well)
  651. {
  652. skl_set_power_well(dev_priv, power_well, true);
  653. }
  654. static void skl_power_well_disable(struct drm_i915_private *dev_priv,
  655. struct i915_power_well *power_well)
  656. {
  657. skl_set_power_well(dev_priv, power_well, false);
  658. }
  659. static void i9xx_always_on_power_well_noop(struct drm_i915_private *dev_priv,
  660. struct i915_power_well *power_well)
  661. {
  662. }
  663. static bool i9xx_always_on_power_well_enabled(struct drm_i915_private *dev_priv,
  664. struct i915_power_well *power_well)
  665. {
  666. return true;
  667. }
  668. static void vlv_set_power_well(struct drm_i915_private *dev_priv,
  669. struct i915_power_well *power_well, bool enable)
  670. {
  671. enum punit_power_well power_well_id = power_well->data;
  672. u32 mask;
  673. u32 state;
  674. u32 ctrl;
  675. mask = PUNIT_PWRGT_MASK(power_well_id);
  676. state = enable ? PUNIT_PWRGT_PWR_ON(power_well_id) :
  677. PUNIT_PWRGT_PWR_GATE(power_well_id);
  678. mutex_lock(&dev_priv->rps.hw_lock);
  679. #define COND \
  680. ((vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_STATUS) & mask) == state)
  681. if (COND)
  682. goto out;
  683. ctrl = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL);
  684. ctrl &= ~mask;
  685. ctrl |= state;
  686. vlv_punit_write(dev_priv, PUNIT_REG_PWRGT_CTRL, ctrl);
  687. if (wait_for(COND, 100))
  688. DRM_ERROR("timeout setting power well state %08x (%08x)\n",
  689. state,
  690. vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL));
  691. #undef COND
  692. out:
  693. mutex_unlock(&dev_priv->rps.hw_lock);
  694. }
  695. static void vlv_power_well_sync_hw(struct drm_i915_private *dev_priv,
  696. struct i915_power_well *power_well)
  697. {
  698. vlv_set_power_well(dev_priv, power_well, power_well->count > 0);
  699. }
  700. static void vlv_power_well_enable(struct drm_i915_private *dev_priv,
  701. struct i915_power_well *power_well)
  702. {
  703. vlv_set_power_well(dev_priv, power_well, true);
  704. }
  705. static void vlv_power_well_disable(struct drm_i915_private *dev_priv,
  706. struct i915_power_well *power_well)
  707. {
  708. vlv_set_power_well(dev_priv, power_well, false);
  709. }
  710. static bool vlv_power_well_enabled(struct drm_i915_private *dev_priv,
  711. struct i915_power_well *power_well)
  712. {
  713. int power_well_id = power_well->data;
  714. bool enabled = false;
  715. u32 mask;
  716. u32 state;
  717. u32 ctrl;
  718. mask = PUNIT_PWRGT_MASK(power_well_id);
  719. ctrl = PUNIT_PWRGT_PWR_ON(power_well_id);
  720. mutex_lock(&dev_priv->rps.hw_lock);
  721. state = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_STATUS) & mask;
  722. /*
  723. * We only ever set the power-on and power-gate states, anything
  724. * else is unexpected.
  725. */
  726. WARN_ON(state != PUNIT_PWRGT_PWR_ON(power_well_id) &&
  727. state != PUNIT_PWRGT_PWR_GATE(power_well_id));
  728. if (state == ctrl)
  729. enabled = true;
  730. /*
  731. * A transient state at this point would mean some unexpected party
  732. * is poking at the power controls too.
  733. */
  734. ctrl = vlv_punit_read(dev_priv, PUNIT_REG_PWRGT_CTRL) & mask;
  735. WARN_ON(ctrl != state);
  736. mutex_unlock(&dev_priv->rps.hw_lock);
  737. return enabled;
  738. }
  739. static void vlv_display_power_well_init(struct drm_i915_private *dev_priv)
  740. {
  741. enum pipe pipe;
  742. /*
  743. * Enable the CRI clock source so we can get at the
  744. * display and the reference clock for VGA
  745. * hotplug / manual detection. Supposedly DSI also
  746. * needs the ref clock up and running.
  747. *
  748. * CHV DPLL B/C have some issues if VGA mode is enabled.
  749. */
  750. for_each_pipe(dev_priv->dev, pipe) {
  751. u32 val = I915_READ(DPLL(pipe));
  752. val |= DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
  753. if (pipe != PIPE_A)
  754. val |= DPLL_INTEGRATED_CRI_CLK_VLV;
  755. I915_WRITE(DPLL(pipe), val);
  756. }
  757. spin_lock_irq(&dev_priv->irq_lock);
  758. valleyview_enable_display_irqs(dev_priv);
  759. spin_unlock_irq(&dev_priv->irq_lock);
  760. /*
  761. * During driver initialization/resume we can avoid restoring the
  762. * part of the HW/SW state that will be inited anyway explicitly.
  763. */
  764. if (dev_priv->power_domains.initializing)
  765. return;
  766. intel_hpd_init(dev_priv);
  767. i915_redisable_vga_power_on(dev_priv->dev);
  768. }
  769. static void vlv_display_power_well_deinit(struct drm_i915_private *dev_priv)
  770. {
  771. spin_lock_irq(&dev_priv->irq_lock);
  772. valleyview_disable_display_irqs(dev_priv);
  773. spin_unlock_irq(&dev_priv->irq_lock);
  774. vlv_power_sequencer_reset(dev_priv);
  775. }
  776. static void vlv_display_power_well_enable(struct drm_i915_private *dev_priv,
  777. struct i915_power_well *power_well)
  778. {
  779. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DISP2D);
  780. vlv_set_power_well(dev_priv, power_well, true);
  781. vlv_display_power_well_init(dev_priv);
  782. }
  783. static void vlv_display_power_well_disable(struct drm_i915_private *dev_priv,
  784. struct i915_power_well *power_well)
  785. {
  786. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DISP2D);
  787. vlv_display_power_well_deinit(dev_priv);
  788. vlv_set_power_well(dev_priv, power_well, false);
  789. }
  790. static void vlv_dpio_cmn_power_well_enable(struct drm_i915_private *dev_priv,
  791. struct i915_power_well *power_well)
  792. {
  793. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DPIO_CMN_BC);
  794. /* since ref/cri clock was enabled */
  795. udelay(1); /* >10ns for cmnreset, >0ns for sidereset */
  796. vlv_set_power_well(dev_priv, power_well, true);
  797. /*
  798. * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
  799. * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
  800. * a. GUnit 0x2110 bit[0] set to 1 (def 0)
  801. * b. The other bits such as sfr settings / modesel may all
  802. * be set to 0.
  803. *
  804. * This should only be done on init and resume from S3 with
  805. * both PLLs disabled, or we risk losing DPIO and PLL
  806. * synchronization.
  807. */
  808. I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
  809. }
  810. static void vlv_dpio_cmn_power_well_disable(struct drm_i915_private *dev_priv,
  811. struct i915_power_well *power_well)
  812. {
  813. enum pipe pipe;
  814. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DPIO_CMN_BC);
  815. for_each_pipe(dev_priv, pipe)
  816. assert_pll_disabled(dev_priv, pipe);
  817. /* Assert common reset */
  818. I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) & ~DPIO_CMNRST);
  819. vlv_set_power_well(dev_priv, power_well, false);
  820. }
  821. #define POWER_DOMAIN_MASK (BIT(POWER_DOMAIN_NUM) - 1)
  822. static struct i915_power_well *lookup_power_well(struct drm_i915_private *dev_priv,
  823. int power_well_id)
  824. {
  825. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  826. struct i915_power_well *power_well;
  827. int i;
  828. for_each_power_well(i, power_well, POWER_DOMAIN_MASK, power_domains) {
  829. if (power_well->data == power_well_id)
  830. return power_well;
  831. }
  832. return NULL;
  833. }
  834. #define BITS_SET(val, bits) (((val) & (bits)) == (bits))
  835. static void assert_chv_phy_status(struct drm_i915_private *dev_priv)
  836. {
  837. struct i915_power_well *cmn_bc =
  838. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
  839. struct i915_power_well *cmn_d =
  840. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_D);
  841. u32 phy_control = dev_priv->chv_phy_control;
  842. u32 phy_status = 0;
  843. u32 phy_status_mask = 0xffffffff;
  844. u32 tmp;
  845. /*
  846. * The BIOS can leave the PHY is some weird state
  847. * where it doesn't fully power down some parts.
  848. * Disable the asserts until the PHY has been fully
  849. * reset (ie. the power well has been disabled at
  850. * least once).
  851. */
  852. if (!dev_priv->chv_phy_assert[DPIO_PHY0])
  853. phy_status_mask &= ~(PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH0) |
  854. PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 0) |
  855. PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 1) |
  856. PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH1) |
  857. PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 0) |
  858. PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 1));
  859. if (!dev_priv->chv_phy_assert[DPIO_PHY1])
  860. phy_status_mask &= ~(PHY_STATUS_CMN_LDO(DPIO_PHY1, DPIO_CH0) |
  861. PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 0) |
  862. PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 1));
  863. if (cmn_bc->ops->is_enabled(dev_priv, cmn_bc)) {
  864. phy_status |= PHY_POWERGOOD(DPIO_PHY0);
  865. /* this assumes override is only used to enable lanes */
  866. if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH0)) == 0)
  867. phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH0);
  868. if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH1)) == 0)
  869. phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1);
  870. /* CL1 is on whenever anything is on in either channel */
  871. if (BITS_SET(phy_control,
  872. PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH0) |
  873. PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1)))
  874. phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH0);
  875. /*
  876. * The DPLLB check accounts for the pipe B + port A usage
  877. * with CL2 powered up but all the lanes in the second channel
  878. * powered down.
  879. */
  880. if (BITS_SET(phy_control,
  881. PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY0, DPIO_CH1)) &&
  882. (I915_READ(DPLL(PIPE_B)) & DPLL_VCO_ENABLE) == 0)
  883. phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY0, DPIO_CH1);
  884. if (BITS_SET(phy_control,
  885. PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY0, DPIO_CH0)))
  886. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 0);
  887. if (BITS_SET(phy_control,
  888. PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY0, DPIO_CH0)))
  889. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH0, 1);
  890. if (BITS_SET(phy_control,
  891. PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY0, DPIO_CH1)))
  892. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 0);
  893. if (BITS_SET(phy_control,
  894. PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY0, DPIO_CH1)))
  895. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY0, DPIO_CH1, 1);
  896. }
  897. if (cmn_d->ops->is_enabled(dev_priv, cmn_d)) {
  898. phy_status |= PHY_POWERGOOD(DPIO_PHY1);
  899. /* this assumes override is only used to enable lanes */
  900. if ((phy_control & PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY1, DPIO_CH0)) == 0)
  901. phy_control |= PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY1, DPIO_CH0);
  902. if (BITS_SET(phy_control,
  903. PHY_CH_POWER_DOWN_OVRD(0xf, DPIO_PHY1, DPIO_CH0)))
  904. phy_status |= PHY_STATUS_CMN_LDO(DPIO_PHY1, DPIO_CH0);
  905. if (BITS_SET(phy_control,
  906. PHY_CH_POWER_DOWN_OVRD(0x3, DPIO_PHY1, DPIO_CH0)))
  907. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 0);
  908. if (BITS_SET(phy_control,
  909. PHY_CH_POWER_DOWN_OVRD(0xc, DPIO_PHY1, DPIO_CH0)))
  910. phy_status |= PHY_STATUS_SPLINE_LDO(DPIO_PHY1, DPIO_CH0, 1);
  911. }
  912. phy_status &= phy_status_mask;
  913. /*
  914. * The PHY may be busy with some initial calibration and whatnot,
  915. * so the power state can take a while to actually change.
  916. */
  917. if (wait_for((tmp = I915_READ(DISPLAY_PHY_STATUS) & phy_status_mask) == phy_status, 10))
  918. WARN(phy_status != tmp,
  919. "Unexpected PHY_STATUS 0x%08x, expected 0x%08x (PHY_CONTROL=0x%08x)\n",
  920. tmp, phy_status, dev_priv->chv_phy_control);
  921. }
  922. #undef BITS_SET
  923. static void chv_dpio_cmn_power_well_enable(struct drm_i915_private *dev_priv,
  924. struct i915_power_well *power_well)
  925. {
  926. enum dpio_phy phy;
  927. enum pipe pipe;
  928. uint32_t tmp;
  929. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DPIO_CMN_BC &&
  930. power_well->data != PUNIT_POWER_WELL_DPIO_CMN_D);
  931. if (power_well->data == PUNIT_POWER_WELL_DPIO_CMN_BC) {
  932. pipe = PIPE_A;
  933. phy = DPIO_PHY0;
  934. } else {
  935. pipe = PIPE_C;
  936. phy = DPIO_PHY1;
  937. }
  938. /* since ref/cri clock was enabled */
  939. udelay(1); /* >10ns for cmnreset, >0ns for sidereset */
  940. vlv_set_power_well(dev_priv, power_well, true);
  941. /* Poll for phypwrgood signal */
  942. if (wait_for(I915_READ(DISPLAY_PHY_STATUS) & PHY_POWERGOOD(phy), 1))
  943. DRM_ERROR("Display PHY %d is not power up\n", phy);
  944. mutex_lock(&dev_priv->sb_lock);
  945. /* Enable dynamic power down */
  946. tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW28);
  947. tmp |= DPIO_DYNPWRDOWNEN_CH0 | DPIO_CL1POWERDOWNEN |
  948. DPIO_SUS_CLK_CONFIG_GATE_CLKREQ;
  949. vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW28, tmp);
  950. if (power_well->data == PUNIT_POWER_WELL_DPIO_CMN_BC) {
  951. tmp = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW6_CH1);
  952. tmp |= DPIO_DYNPWRDOWNEN_CH1;
  953. vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW6_CH1, tmp);
  954. } else {
  955. /*
  956. * Force the non-existing CL2 off. BXT does this
  957. * too, so maybe it saves some power even though
  958. * CL2 doesn't exist?
  959. */
  960. tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
  961. tmp |= DPIO_CL2_LDOFUSE_PWRENB;
  962. vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, tmp);
  963. }
  964. mutex_unlock(&dev_priv->sb_lock);
  965. dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(phy);
  966. I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
  967. DRM_DEBUG_KMS("Enabled DPIO PHY%d (PHY_CONTROL=0x%08x)\n",
  968. phy, dev_priv->chv_phy_control);
  969. assert_chv_phy_status(dev_priv);
  970. }
  971. static void chv_dpio_cmn_power_well_disable(struct drm_i915_private *dev_priv,
  972. struct i915_power_well *power_well)
  973. {
  974. enum dpio_phy phy;
  975. WARN_ON_ONCE(power_well->data != PUNIT_POWER_WELL_DPIO_CMN_BC &&
  976. power_well->data != PUNIT_POWER_WELL_DPIO_CMN_D);
  977. if (power_well->data == PUNIT_POWER_WELL_DPIO_CMN_BC) {
  978. phy = DPIO_PHY0;
  979. assert_pll_disabled(dev_priv, PIPE_A);
  980. assert_pll_disabled(dev_priv, PIPE_B);
  981. } else {
  982. phy = DPIO_PHY1;
  983. assert_pll_disabled(dev_priv, PIPE_C);
  984. }
  985. dev_priv->chv_phy_control &= ~PHY_COM_LANE_RESET_DEASSERT(phy);
  986. I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
  987. vlv_set_power_well(dev_priv, power_well, false);
  988. DRM_DEBUG_KMS("Disabled DPIO PHY%d (PHY_CONTROL=0x%08x)\n",
  989. phy, dev_priv->chv_phy_control);
  990. /* PHY is fully reset now, so we can enable the PHY state asserts */
  991. dev_priv->chv_phy_assert[phy] = true;
  992. assert_chv_phy_status(dev_priv);
  993. }
  994. static void assert_chv_phy_powergate(struct drm_i915_private *dev_priv, enum dpio_phy phy,
  995. enum dpio_channel ch, bool override, unsigned int mask)
  996. {
  997. enum pipe pipe = phy == DPIO_PHY0 ? PIPE_A : PIPE_C;
  998. u32 reg, val, expected, actual;
  999. /*
  1000. * The BIOS can leave the PHY is some weird state
  1001. * where it doesn't fully power down some parts.
  1002. * Disable the asserts until the PHY has been fully
  1003. * reset (ie. the power well has been disabled at
  1004. * least once).
  1005. */
  1006. if (!dev_priv->chv_phy_assert[phy])
  1007. return;
  1008. if (ch == DPIO_CH0)
  1009. reg = _CHV_CMN_DW0_CH0;
  1010. else
  1011. reg = _CHV_CMN_DW6_CH1;
  1012. mutex_lock(&dev_priv->sb_lock);
  1013. val = vlv_dpio_read(dev_priv, pipe, reg);
  1014. mutex_unlock(&dev_priv->sb_lock);
  1015. /*
  1016. * This assumes !override is only used when the port is disabled.
  1017. * All lanes should power down even without the override when
  1018. * the port is disabled.
  1019. */
  1020. if (!override || mask == 0xf) {
  1021. expected = DPIO_ALLDL_POWERDOWN | DPIO_ANYDL_POWERDOWN;
  1022. /*
  1023. * If CH1 common lane is not active anymore
  1024. * (eg. for pipe B DPLL) the entire channel will
  1025. * shut down, which causes the common lane registers
  1026. * to read as 0. That means we can't actually check
  1027. * the lane power down status bits, but as the entire
  1028. * register reads as 0 it's a good indication that the
  1029. * channel is indeed entirely powered down.
  1030. */
  1031. if (ch == DPIO_CH1 && val == 0)
  1032. expected = 0;
  1033. } else if (mask != 0x0) {
  1034. expected = DPIO_ANYDL_POWERDOWN;
  1035. } else {
  1036. expected = 0;
  1037. }
  1038. if (ch == DPIO_CH0)
  1039. actual = val >> DPIO_ANYDL_POWERDOWN_SHIFT_CH0;
  1040. else
  1041. actual = val >> DPIO_ANYDL_POWERDOWN_SHIFT_CH1;
  1042. actual &= DPIO_ALLDL_POWERDOWN | DPIO_ANYDL_POWERDOWN;
  1043. WARN(actual != expected,
  1044. "Unexpected DPIO lane power down: all %d, any %d. Expected: all %d, any %d. (0x%x = 0x%08x)\n",
  1045. !!(actual & DPIO_ALLDL_POWERDOWN), !!(actual & DPIO_ANYDL_POWERDOWN),
  1046. !!(expected & DPIO_ALLDL_POWERDOWN), !!(expected & DPIO_ANYDL_POWERDOWN),
  1047. reg, val);
  1048. }
  1049. bool chv_phy_powergate_ch(struct drm_i915_private *dev_priv, enum dpio_phy phy,
  1050. enum dpio_channel ch, bool override)
  1051. {
  1052. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  1053. bool was_override;
  1054. mutex_lock(&power_domains->lock);
  1055. was_override = dev_priv->chv_phy_control & PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
  1056. if (override == was_override)
  1057. goto out;
  1058. if (override)
  1059. dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
  1060. else
  1061. dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
  1062. I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
  1063. DRM_DEBUG_KMS("Power gating DPIO PHY%d CH%d (DPIO_PHY_CONTROL=0x%08x)\n",
  1064. phy, ch, dev_priv->chv_phy_control);
  1065. assert_chv_phy_status(dev_priv);
  1066. out:
  1067. mutex_unlock(&power_domains->lock);
  1068. return was_override;
  1069. }
  1070. void chv_phy_powergate_lanes(struct intel_encoder *encoder,
  1071. bool override, unsigned int mask)
  1072. {
  1073. struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
  1074. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  1075. enum dpio_phy phy = vlv_dport_to_phy(enc_to_dig_port(&encoder->base));
  1076. enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
  1077. mutex_lock(&power_domains->lock);
  1078. dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD(0xf, phy, ch);
  1079. dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD(mask, phy, ch);
  1080. if (override)
  1081. dev_priv->chv_phy_control |= PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
  1082. else
  1083. dev_priv->chv_phy_control &= ~PHY_CH_POWER_DOWN_OVRD_EN(phy, ch);
  1084. I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
  1085. DRM_DEBUG_KMS("Power gating DPIO PHY%d CH%d lanes 0x%x (PHY_CONTROL=0x%08x)\n",
  1086. phy, ch, mask, dev_priv->chv_phy_control);
  1087. assert_chv_phy_status(dev_priv);
  1088. assert_chv_phy_powergate(dev_priv, phy, ch, override, mask);
  1089. mutex_unlock(&power_domains->lock);
  1090. }
  1091. static bool chv_pipe_power_well_enabled(struct drm_i915_private *dev_priv,
  1092. struct i915_power_well *power_well)
  1093. {
  1094. enum pipe pipe = power_well->data;
  1095. bool enabled;
  1096. u32 state, ctrl;
  1097. mutex_lock(&dev_priv->rps.hw_lock);
  1098. state = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSS_MASK(pipe);
  1099. /*
  1100. * We only ever set the power-on and power-gate states, anything
  1101. * else is unexpected.
  1102. */
  1103. WARN_ON(state != DP_SSS_PWR_ON(pipe) && state != DP_SSS_PWR_GATE(pipe));
  1104. enabled = state == DP_SSS_PWR_ON(pipe);
  1105. /*
  1106. * A transient state at this point would mean some unexpected party
  1107. * is poking at the power controls too.
  1108. */
  1109. ctrl = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSC_MASK(pipe);
  1110. WARN_ON(ctrl << 16 != state);
  1111. mutex_unlock(&dev_priv->rps.hw_lock);
  1112. return enabled;
  1113. }
  1114. static void chv_set_pipe_power_well(struct drm_i915_private *dev_priv,
  1115. struct i915_power_well *power_well,
  1116. bool enable)
  1117. {
  1118. enum pipe pipe = power_well->data;
  1119. u32 state;
  1120. u32 ctrl;
  1121. state = enable ? DP_SSS_PWR_ON(pipe) : DP_SSS_PWR_GATE(pipe);
  1122. mutex_lock(&dev_priv->rps.hw_lock);
  1123. #define COND \
  1124. ((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) & DP_SSS_MASK(pipe)) == state)
  1125. if (COND)
  1126. goto out;
  1127. ctrl = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
  1128. ctrl &= ~DP_SSC_MASK(pipe);
  1129. ctrl |= enable ? DP_SSC_PWR_ON(pipe) : DP_SSC_PWR_GATE(pipe);
  1130. vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, ctrl);
  1131. if (wait_for(COND, 100))
  1132. DRM_ERROR("timeout setting power well state %08x (%08x)\n",
  1133. state,
  1134. vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ));
  1135. #undef COND
  1136. out:
  1137. mutex_unlock(&dev_priv->rps.hw_lock);
  1138. }
  1139. static void chv_pipe_power_well_sync_hw(struct drm_i915_private *dev_priv,
  1140. struct i915_power_well *power_well)
  1141. {
  1142. WARN_ON_ONCE(power_well->data != PIPE_A);
  1143. chv_set_pipe_power_well(dev_priv, power_well, power_well->count > 0);
  1144. }
  1145. static void chv_pipe_power_well_enable(struct drm_i915_private *dev_priv,
  1146. struct i915_power_well *power_well)
  1147. {
  1148. WARN_ON_ONCE(power_well->data != PIPE_A);
  1149. chv_set_pipe_power_well(dev_priv, power_well, true);
  1150. vlv_display_power_well_init(dev_priv);
  1151. }
  1152. static void chv_pipe_power_well_disable(struct drm_i915_private *dev_priv,
  1153. struct i915_power_well *power_well)
  1154. {
  1155. WARN_ON_ONCE(power_well->data != PIPE_A);
  1156. vlv_display_power_well_deinit(dev_priv);
  1157. chv_set_pipe_power_well(dev_priv, power_well, false);
  1158. }
  1159. /**
  1160. * intel_display_power_get - grab a power domain reference
  1161. * @dev_priv: i915 device instance
  1162. * @domain: power domain to reference
  1163. *
  1164. * This function grabs a power domain reference for @domain and ensures that the
  1165. * power domain and all its parents are powered up. Therefore users should only
  1166. * grab a reference to the innermost power domain they need.
  1167. *
  1168. * Any power domain reference obtained by this function must have a symmetric
  1169. * call to intel_display_power_put() to release the reference again.
  1170. */
  1171. void intel_display_power_get(struct drm_i915_private *dev_priv,
  1172. enum intel_display_power_domain domain)
  1173. {
  1174. struct i915_power_domains *power_domains;
  1175. struct i915_power_well *power_well;
  1176. int i;
  1177. intel_runtime_pm_get(dev_priv);
  1178. power_domains = &dev_priv->power_domains;
  1179. mutex_lock(&power_domains->lock);
  1180. for_each_power_well(i, power_well, BIT(domain), power_domains) {
  1181. if (!power_well->count++)
  1182. intel_power_well_enable(dev_priv, power_well);
  1183. }
  1184. power_domains->domain_use_count[domain]++;
  1185. mutex_unlock(&power_domains->lock);
  1186. }
  1187. /**
  1188. * intel_display_power_put - release a power domain reference
  1189. * @dev_priv: i915 device instance
  1190. * @domain: power domain to reference
  1191. *
  1192. * This function drops the power domain reference obtained by
  1193. * intel_display_power_get() and might power down the corresponding hardware
  1194. * block right away if this is the last reference.
  1195. */
  1196. void intel_display_power_put(struct drm_i915_private *dev_priv,
  1197. enum intel_display_power_domain domain)
  1198. {
  1199. struct i915_power_domains *power_domains;
  1200. struct i915_power_well *power_well;
  1201. int i;
  1202. power_domains = &dev_priv->power_domains;
  1203. mutex_lock(&power_domains->lock);
  1204. WARN_ON(!power_domains->domain_use_count[domain]);
  1205. power_domains->domain_use_count[domain]--;
  1206. for_each_power_well_rev(i, power_well, BIT(domain), power_domains) {
  1207. WARN_ON(!power_well->count);
  1208. if (!--power_well->count && i915.disable_power_well)
  1209. intel_power_well_disable(dev_priv, power_well);
  1210. }
  1211. mutex_unlock(&power_domains->lock);
  1212. intel_runtime_pm_put(dev_priv);
  1213. }
  1214. #define HSW_ALWAYS_ON_POWER_DOMAINS ( \
  1215. BIT(POWER_DOMAIN_PIPE_A) | \
  1216. BIT(POWER_DOMAIN_TRANSCODER_EDP) | \
  1217. BIT(POWER_DOMAIN_PORT_DDI_A_2_LANES) | \
  1218. BIT(POWER_DOMAIN_PORT_DDI_A_4_LANES) | \
  1219. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  1220. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  1221. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  1222. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  1223. BIT(POWER_DOMAIN_PORT_DDI_D_2_LANES) | \
  1224. BIT(POWER_DOMAIN_PORT_DDI_D_4_LANES) | \
  1225. BIT(POWER_DOMAIN_PORT_CRT) | \
  1226. BIT(POWER_DOMAIN_PLLS) | \
  1227. BIT(POWER_DOMAIN_AUX_A) | \
  1228. BIT(POWER_DOMAIN_AUX_B) | \
  1229. BIT(POWER_DOMAIN_AUX_C) | \
  1230. BIT(POWER_DOMAIN_AUX_D) | \
  1231. BIT(POWER_DOMAIN_INIT))
  1232. #define HSW_DISPLAY_POWER_DOMAINS ( \
  1233. (POWER_DOMAIN_MASK & ~HSW_ALWAYS_ON_POWER_DOMAINS) | \
  1234. BIT(POWER_DOMAIN_INIT))
  1235. #define BDW_ALWAYS_ON_POWER_DOMAINS ( \
  1236. HSW_ALWAYS_ON_POWER_DOMAINS | \
  1237. BIT(POWER_DOMAIN_PIPE_A_PANEL_FITTER))
  1238. #define BDW_DISPLAY_POWER_DOMAINS ( \
  1239. (POWER_DOMAIN_MASK & ~BDW_ALWAYS_ON_POWER_DOMAINS) | \
  1240. BIT(POWER_DOMAIN_INIT))
  1241. #define VLV_ALWAYS_ON_POWER_DOMAINS BIT(POWER_DOMAIN_INIT)
  1242. #define VLV_DISPLAY_POWER_DOMAINS POWER_DOMAIN_MASK
  1243. #define VLV_DPIO_CMN_BC_POWER_DOMAINS ( \
  1244. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  1245. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  1246. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  1247. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  1248. BIT(POWER_DOMAIN_PORT_CRT) | \
  1249. BIT(POWER_DOMAIN_AUX_B) | \
  1250. BIT(POWER_DOMAIN_AUX_C) | \
  1251. BIT(POWER_DOMAIN_INIT))
  1252. #define VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS ( \
  1253. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  1254. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  1255. BIT(POWER_DOMAIN_AUX_B) | \
  1256. BIT(POWER_DOMAIN_INIT))
  1257. #define VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS ( \
  1258. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  1259. BIT(POWER_DOMAIN_AUX_B) | \
  1260. BIT(POWER_DOMAIN_INIT))
  1261. #define VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS ( \
  1262. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  1263. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  1264. BIT(POWER_DOMAIN_AUX_C) | \
  1265. BIT(POWER_DOMAIN_INIT))
  1266. #define VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS ( \
  1267. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  1268. BIT(POWER_DOMAIN_AUX_C) | \
  1269. BIT(POWER_DOMAIN_INIT))
  1270. #define CHV_DPIO_CMN_BC_POWER_DOMAINS ( \
  1271. BIT(POWER_DOMAIN_PORT_DDI_B_2_LANES) | \
  1272. BIT(POWER_DOMAIN_PORT_DDI_B_4_LANES) | \
  1273. BIT(POWER_DOMAIN_PORT_DDI_C_2_LANES) | \
  1274. BIT(POWER_DOMAIN_PORT_DDI_C_4_LANES) | \
  1275. BIT(POWER_DOMAIN_AUX_B) | \
  1276. BIT(POWER_DOMAIN_AUX_C) | \
  1277. BIT(POWER_DOMAIN_INIT))
  1278. #define CHV_DPIO_CMN_D_POWER_DOMAINS ( \
  1279. BIT(POWER_DOMAIN_PORT_DDI_D_2_LANES) | \
  1280. BIT(POWER_DOMAIN_PORT_DDI_D_4_LANES) | \
  1281. BIT(POWER_DOMAIN_AUX_D) | \
  1282. BIT(POWER_DOMAIN_INIT))
  1283. static const struct i915_power_well_ops i9xx_always_on_power_well_ops = {
  1284. .sync_hw = i9xx_always_on_power_well_noop,
  1285. .enable = i9xx_always_on_power_well_noop,
  1286. .disable = i9xx_always_on_power_well_noop,
  1287. .is_enabled = i9xx_always_on_power_well_enabled,
  1288. };
  1289. static const struct i915_power_well_ops chv_pipe_power_well_ops = {
  1290. .sync_hw = chv_pipe_power_well_sync_hw,
  1291. .enable = chv_pipe_power_well_enable,
  1292. .disable = chv_pipe_power_well_disable,
  1293. .is_enabled = chv_pipe_power_well_enabled,
  1294. };
  1295. static const struct i915_power_well_ops chv_dpio_cmn_power_well_ops = {
  1296. .sync_hw = vlv_power_well_sync_hw,
  1297. .enable = chv_dpio_cmn_power_well_enable,
  1298. .disable = chv_dpio_cmn_power_well_disable,
  1299. .is_enabled = vlv_power_well_enabled,
  1300. };
  1301. static struct i915_power_well i9xx_always_on_power_well[] = {
  1302. {
  1303. .name = "always-on",
  1304. .always_on = 1,
  1305. .domains = POWER_DOMAIN_MASK,
  1306. .ops = &i9xx_always_on_power_well_ops,
  1307. },
  1308. };
  1309. static const struct i915_power_well_ops hsw_power_well_ops = {
  1310. .sync_hw = hsw_power_well_sync_hw,
  1311. .enable = hsw_power_well_enable,
  1312. .disable = hsw_power_well_disable,
  1313. .is_enabled = hsw_power_well_enabled,
  1314. };
  1315. static const struct i915_power_well_ops skl_power_well_ops = {
  1316. .sync_hw = skl_power_well_sync_hw,
  1317. .enable = skl_power_well_enable,
  1318. .disable = skl_power_well_disable,
  1319. .is_enabled = skl_power_well_enabled,
  1320. };
  1321. static struct i915_power_well hsw_power_wells[] = {
  1322. {
  1323. .name = "always-on",
  1324. .always_on = 1,
  1325. .domains = HSW_ALWAYS_ON_POWER_DOMAINS,
  1326. .ops = &i9xx_always_on_power_well_ops,
  1327. },
  1328. {
  1329. .name = "display",
  1330. .domains = HSW_DISPLAY_POWER_DOMAINS,
  1331. .ops = &hsw_power_well_ops,
  1332. },
  1333. };
  1334. static struct i915_power_well bdw_power_wells[] = {
  1335. {
  1336. .name = "always-on",
  1337. .always_on = 1,
  1338. .domains = BDW_ALWAYS_ON_POWER_DOMAINS,
  1339. .ops = &i9xx_always_on_power_well_ops,
  1340. },
  1341. {
  1342. .name = "display",
  1343. .domains = BDW_DISPLAY_POWER_DOMAINS,
  1344. .ops = &hsw_power_well_ops,
  1345. },
  1346. };
  1347. static const struct i915_power_well_ops vlv_display_power_well_ops = {
  1348. .sync_hw = vlv_power_well_sync_hw,
  1349. .enable = vlv_display_power_well_enable,
  1350. .disable = vlv_display_power_well_disable,
  1351. .is_enabled = vlv_power_well_enabled,
  1352. };
  1353. static const struct i915_power_well_ops vlv_dpio_cmn_power_well_ops = {
  1354. .sync_hw = vlv_power_well_sync_hw,
  1355. .enable = vlv_dpio_cmn_power_well_enable,
  1356. .disable = vlv_dpio_cmn_power_well_disable,
  1357. .is_enabled = vlv_power_well_enabled,
  1358. };
  1359. static const struct i915_power_well_ops vlv_dpio_power_well_ops = {
  1360. .sync_hw = vlv_power_well_sync_hw,
  1361. .enable = vlv_power_well_enable,
  1362. .disable = vlv_power_well_disable,
  1363. .is_enabled = vlv_power_well_enabled,
  1364. };
  1365. static struct i915_power_well vlv_power_wells[] = {
  1366. {
  1367. .name = "always-on",
  1368. .always_on = 1,
  1369. .domains = VLV_ALWAYS_ON_POWER_DOMAINS,
  1370. .ops = &i9xx_always_on_power_well_ops,
  1371. },
  1372. {
  1373. .name = "display",
  1374. .domains = VLV_DISPLAY_POWER_DOMAINS,
  1375. .data = PUNIT_POWER_WELL_DISP2D,
  1376. .ops = &vlv_display_power_well_ops,
  1377. },
  1378. {
  1379. .name = "dpio-tx-b-01",
  1380. .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
  1381. VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
  1382. VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
  1383. VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
  1384. .ops = &vlv_dpio_power_well_ops,
  1385. .data = PUNIT_POWER_WELL_DPIO_TX_B_LANES_01,
  1386. },
  1387. {
  1388. .name = "dpio-tx-b-23",
  1389. .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
  1390. VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
  1391. VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
  1392. VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
  1393. .ops = &vlv_dpio_power_well_ops,
  1394. .data = PUNIT_POWER_WELL_DPIO_TX_B_LANES_23,
  1395. },
  1396. {
  1397. .name = "dpio-tx-c-01",
  1398. .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
  1399. VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
  1400. VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
  1401. VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
  1402. .ops = &vlv_dpio_power_well_ops,
  1403. .data = PUNIT_POWER_WELL_DPIO_TX_C_LANES_01,
  1404. },
  1405. {
  1406. .name = "dpio-tx-c-23",
  1407. .domains = VLV_DPIO_TX_B_LANES_01_POWER_DOMAINS |
  1408. VLV_DPIO_TX_B_LANES_23_POWER_DOMAINS |
  1409. VLV_DPIO_TX_C_LANES_01_POWER_DOMAINS |
  1410. VLV_DPIO_TX_C_LANES_23_POWER_DOMAINS,
  1411. .ops = &vlv_dpio_power_well_ops,
  1412. .data = PUNIT_POWER_WELL_DPIO_TX_C_LANES_23,
  1413. },
  1414. {
  1415. .name = "dpio-common",
  1416. .domains = VLV_DPIO_CMN_BC_POWER_DOMAINS,
  1417. .data = PUNIT_POWER_WELL_DPIO_CMN_BC,
  1418. .ops = &vlv_dpio_cmn_power_well_ops,
  1419. },
  1420. };
  1421. static struct i915_power_well chv_power_wells[] = {
  1422. {
  1423. .name = "always-on",
  1424. .always_on = 1,
  1425. .domains = VLV_ALWAYS_ON_POWER_DOMAINS,
  1426. .ops = &i9xx_always_on_power_well_ops,
  1427. },
  1428. {
  1429. .name = "display",
  1430. /*
  1431. * Pipe A power well is the new disp2d well. Pipe B and C
  1432. * power wells don't actually exist. Pipe A power well is
  1433. * required for any pipe to work.
  1434. */
  1435. .domains = VLV_DISPLAY_POWER_DOMAINS,
  1436. .data = PIPE_A,
  1437. .ops = &chv_pipe_power_well_ops,
  1438. },
  1439. {
  1440. .name = "dpio-common-bc",
  1441. .domains = CHV_DPIO_CMN_BC_POWER_DOMAINS,
  1442. .data = PUNIT_POWER_WELL_DPIO_CMN_BC,
  1443. .ops = &chv_dpio_cmn_power_well_ops,
  1444. },
  1445. {
  1446. .name = "dpio-common-d",
  1447. .domains = CHV_DPIO_CMN_D_POWER_DOMAINS,
  1448. .data = PUNIT_POWER_WELL_DPIO_CMN_D,
  1449. .ops = &chv_dpio_cmn_power_well_ops,
  1450. },
  1451. };
  1452. bool intel_display_power_well_is_enabled(struct drm_i915_private *dev_priv,
  1453. int power_well_id)
  1454. {
  1455. struct i915_power_well *power_well;
  1456. bool ret;
  1457. power_well = lookup_power_well(dev_priv, power_well_id);
  1458. ret = power_well->ops->is_enabled(dev_priv, power_well);
  1459. return ret;
  1460. }
  1461. static struct i915_power_well skl_power_wells[] = {
  1462. {
  1463. .name = "always-on",
  1464. .always_on = 1,
  1465. .domains = SKL_DISPLAY_ALWAYS_ON_POWER_DOMAINS,
  1466. .ops = &i9xx_always_on_power_well_ops,
  1467. },
  1468. {
  1469. .name = "power well 1",
  1470. .domains = SKL_DISPLAY_POWERWELL_1_POWER_DOMAINS,
  1471. .ops = &skl_power_well_ops,
  1472. .data = SKL_DISP_PW_1,
  1473. },
  1474. {
  1475. .name = "MISC IO power well",
  1476. .domains = SKL_DISPLAY_MISC_IO_POWER_DOMAINS,
  1477. .ops = &skl_power_well_ops,
  1478. .data = SKL_DISP_PW_MISC_IO,
  1479. },
  1480. {
  1481. .name = "power well 2",
  1482. .domains = SKL_DISPLAY_POWERWELL_2_POWER_DOMAINS,
  1483. .ops = &skl_power_well_ops,
  1484. .data = SKL_DISP_PW_2,
  1485. },
  1486. {
  1487. .name = "DDI A/E power well",
  1488. .domains = SKL_DISPLAY_DDI_A_E_POWER_DOMAINS,
  1489. .ops = &skl_power_well_ops,
  1490. .data = SKL_DISP_PW_DDI_A_E,
  1491. },
  1492. {
  1493. .name = "DDI B power well",
  1494. .domains = SKL_DISPLAY_DDI_B_POWER_DOMAINS,
  1495. .ops = &skl_power_well_ops,
  1496. .data = SKL_DISP_PW_DDI_B,
  1497. },
  1498. {
  1499. .name = "DDI C power well",
  1500. .domains = SKL_DISPLAY_DDI_C_POWER_DOMAINS,
  1501. .ops = &skl_power_well_ops,
  1502. .data = SKL_DISP_PW_DDI_C,
  1503. },
  1504. {
  1505. .name = "DDI D power well",
  1506. .domains = SKL_DISPLAY_DDI_D_POWER_DOMAINS,
  1507. .ops = &skl_power_well_ops,
  1508. .data = SKL_DISP_PW_DDI_D,
  1509. },
  1510. };
  1511. static struct i915_power_well bxt_power_wells[] = {
  1512. {
  1513. .name = "always-on",
  1514. .always_on = 1,
  1515. .domains = BXT_DISPLAY_ALWAYS_ON_POWER_DOMAINS,
  1516. .ops = &i9xx_always_on_power_well_ops,
  1517. },
  1518. {
  1519. .name = "power well 1",
  1520. .domains = BXT_DISPLAY_POWERWELL_1_POWER_DOMAINS,
  1521. .ops = &skl_power_well_ops,
  1522. .data = SKL_DISP_PW_1,
  1523. },
  1524. {
  1525. .name = "power well 2",
  1526. .domains = BXT_DISPLAY_POWERWELL_2_POWER_DOMAINS,
  1527. .ops = &skl_power_well_ops,
  1528. .data = SKL_DISP_PW_2,
  1529. }
  1530. };
  1531. #define set_power_wells(power_domains, __power_wells) ({ \
  1532. (power_domains)->power_wells = (__power_wells); \
  1533. (power_domains)->power_well_count = ARRAY_SIZE(__power_wells); \
  1534. })
  1535. /**
  1536. * intel_power_domains_init - initializes the power domain structures
  1537. * @dev_priv: i915 device instance
  1538. *
  1539. * Initializes the power domain structures for @dev_priv depending upon the
  1540. * supported platform.
  1541. */
  1542. int intel_power_domains_init(struct drm_i915_private *dev_priv)
  1543. {
  1544. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  1545. mutex_init(&power_domains->lock);
  1546. /*
  1547. * The enabling order will be from lower to higher indexed wells,
  1548. * the disabling order is reversed.
  1549. */
  1550. if (IS_HASWELL(dev_priv->dev)) {
  1551. set_power_wells(power_domains, hsw_power_wells);
  1552. } else if (IS_BROADWELL(dev_priv->dev)) {
  1553. set_power_wells(power_domains, bdw_power_wells);
  1554. } else if (IS_SKYLAKE(dev_priv->dev)) {
  1555. set_power_wells(power_domains, skl_power_wells);
  1556. } else if (IS_BROXTON(dev_priv->dev)) {
  1557. set_power_wells(power_domains, bxt_power_wells);
  1558. } else if (IS_CHERRYVIEW(dev_priv->dev)) {
  1559. set_power_wells(power_domains, chv_power_wells);
  1560. } else if (IS_VALLEYVIEW(dev_priv->dev)) {
  1561. set_power_wells(power_domains, vlv_power_wells);
  1562. } else {
  1563. set_power_wells(power_domains, i9xx_always_on_power_well);
  1564. }
  1565. return 0;
  1566. }
  1567. static void intel_runtime_pm_disable(struct drm_i915_private *dev_priv)
  1568. {
  1569. struct drm_device *dev = dev_priv->dev;
  1570. struct device *device = &dev->pdev->dev;
  1571. if (!HAS_RUNTIME_PM(dev))
  1572. return;
  1573. if (!intel_enable_rc6(dev))
  1574. return;
  1575. /* Make sure we're not suspended first. */
  1576. pm_runtime_get_sync(device);
  1577. }
  1578. /**
  1579. * intel_power_domains_fini - finalizes the power domain structures
  1580. * @dev_priv: i915 device instance
  1581. *
  1582. * Finalizes the power domain structures for @dev_priv depending upon the
  1583. * supported platform. This function also disables runtime pm and ensures that
  1584. * the device stays powered up so that the driver can be reloaded.
  1585. */
  1586. void intel_power_domains_fini(struct drm_i915_private *dev_priv)
  1587. {
  1588. intel_runtime_pm_disable(dev_priv);
  1589. /* The i915.ko module is still not prepared to be loaded when
  1590. * the power well is not enabled, so just enable it in case
  1591. * we're going to unload/reload. */
  1592. intel_display_set_init_power(dev_priv, true);
  1593. }
  1594. static void intel_power_domains_resume(struct drm_i915_private *dev_priv)
  1595. {
  1596. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  1597. struct i915_power_well *power_well;
  1598. int i;
  1599. mutex_lock(&power_domains->lock);
  1600. for_each_power_well(i, power_well, POWER_DOMAIN_MASK, power_domains) {
  1601. power_well->ops->sync_hw(dev_priv, power_well);
  1602. power_well->hw_enabled = power_well->ops->is_enabled(dev_priv,
  1603. power_well);
  1604. }
  1605. mutex_unlock(&power_domains->lock);
  1606. }
  1607. static void chv_phy_control_init(struct drm_i915_private *dev_priv)
  1608. {
  1609. struct i915_power_well *cmn_bc =
  1610. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
  1611. struct i915_power_well *cmn_d =
  1612. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_D);
  1613. /*
  1614. * DISPLAY_PHY_CONTROL can get corrupted if read. As a
  1615. * workaround never ever read DISPLAY_PHY_CONTROL, and
  1616. * instead maintain a shadow copy ourselves. Use the actual
  1617. * power well state and lane status to reconstruct the
  1618. * expected initial value.
  1619. */
  1620. dev_priv->chv_phy_control =
  1621. PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY0) |
  1622. PHY_LDO_SEQ_DELAY(PHY_LDO_DELAY_600NS, DPIO_PHY1) |
  1623. PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH0) |
  1624. PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY0, DPIO_CH1) |
  1625. PHY_CH_POWER_MODE(PHY_CH_DEEP_PSR, DPIO_PHY1, DPIO_CH0);
  1626. /*
  1627. * If all lanes are disabled we leave the override disabled
  1628. * with all power down bits cleared to match the state we
  1629. * would use after disabling the port. Otherwise enable the
  1630. * override and set the lane powerdown bits accding to the
  1631. * current lane status.
  1632. */
  1633. if (cmn_bc->ops->is_enabled(dev_priv, cmn_bc)) {
  1634. uint32_t status = I915_READ(DPLL(PIPE_A));
  1635. unsigned int mask;
  1636. mask = status & DPLL_PORTB_READY_MASK;
  1637. if (mask == 0xf)
  1638. mask = 0x0;
  1639. else
  1640. dev_priv->chv_phy_control |=
  1641. PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH0);
  1642. dev_priv->chv_phy_control |=
  1643. PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH0);
  1644. mask = (status & DPLL_PORTC_READY_MASK) >> 4;
  1645. if (mask == 0xf)
  1646. mask = 0x0;
  1647. else
  1648. dev_priv->chv_phy_control |=
  1649. PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY0, DPIO_CH1);
  1650. dev_priv->chv_phy_control |=
  1651. PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY0, DPIO_CH1);
  1652. dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY0);
  1653. dev_priv->chv_phy_assert[DPIO_PHY0] = false;
  1654. } else {
  1655. dev_priv->chv_phy_assert[DPIO_PHY0] = true;
  1656. }
  1657. if (cmn_d->ops->is_enabled(dev_priv, cmn_d)) {
  1658. uint32_t status = I915_READ(DPIO_PHY_STATUS);
  1659. unsigned int mask;
  1660. mask = status & DPLL_PORTD_READY_MASK;
  1661. if (mask == 0xf)
  1662. mask = 0x0;
  1663. else
  1664. dev_priv->chv_phy_control |=
  1665. PHY_CH_POWER_DOWN_OVRD_EN(DPIO_PHY1, DPIO_CH0);
  1666. dev_priv->chv_phy_control |=
  1667. PHY_CH_POWER_DOWN_OVRD(mask, DPIO_PHY1, DPIO_CH0);
  1668. dev_priv->chv_phy_control |= PHY_COM_LANE_RESET_DEASSERT(DPIO_PHY1);
  1669. dev_priv->chv_phy_assert[DPIO_PHY1] = false;
  1670. } else {
  1671. dev_priv->chv_phy_assert[DPIO_PHY1] = true;
  1672. }
  1673. I915_WRITE(DISPLAY_PHY_CONTROL, dev_priv->chv_phy_control);
  1674. DRM_DEBUG_KMS("Initial PHY_CONTROL=0x%08x\n",
  1675. dev_priv->chv_phy_control);
  1676. }
  1677. static void vlv_cmnlane_wa(struct drm_i915_private *dev_priv)
  1678. {
  1679. struct i915_power_well *cmn =
  1680. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC);
  1681. struct i915_power_well *disp2d =
  1682. lookup_power_well(dev_priv, PUNIT_POWER_WELL_DISP2D);
  1683. /* If the display might be already active skip this */
  1684. if (cmn->ops->is_enabled(dev_priv, cmn) &&
  1685. disp2d->ops->is_enabled(dev_priv, disp2d) &&
  1686. I915_READ(DPIO_CTL) & DPIO_CMNRST)
  1687. return;
  1688. DRM_DEBUG_KMS("toggling display PHY side reset\n");
  1689. /* cmnlane needs DPLL registers */
  1690. disp2d->ops->enable(dev_priv, disp2d);
  1691. /*
  1692. * From VLV2A0_DP_eDP_HDMI_DPIO_driver_vbios_notes_11.docx:
  1693. * Need to assert and de-assert PHY SB reset by gating the
  1694. * common lane power, then un-gating it.
  1695. * Simply ungating isn't enough to reset the PHY enough to get
  1696. * ports and lanes running.
  1697. */
  1698. cmn->ops->disable(dev_priv, cmn);
  1699. }
  1700. /**
  1701. * intel_power_domains_init_hw - initialize hardware power domain state
  1702. * @dev_priv: i915 device instance
  1703. *
  1704. * This function initializes the hardware power domain state and enables all
  1705. * power domains using intel_display_set_init_power().
  1706. */
  1707. void intel_power_domains_init_hw(struct drm_i915_private *dev_priv)
  1708. {
  1709. struct drm_device *dev = dev_priv->dev;
  1710. struct i915_power_domains *power_domains = &dev_priv->power_domains;
  1711. power_domains->initializing = true;
  1712. if (IS_CHERRYVIEW(dev)) {
  1713. mutex_lock(&power_domains->lock);
  1714. chv_phy_control_init(dev_priv);
  1715. mutex_unlock(&power_domains->lock);
  1716. } else if (IS_VALLEYVIEW(dev)) {
  1717. mutex_lock(&power_domains->lock);
  1718. vlv_cmnlane_wa(dev_priv);
  1719. mutex_unlock(&power_domains->lock);
  1720. }
  1721. /* For now, we need the power well to be always enabled. */
  1722. intel_display_set_init_power(dev_priv, true);
  1723. intel_power_domains_resume(dev_priv);
  1724. power_domains->initializing = false;
  1725. }
  1726. /**
  1727. * intel_aux_display_runtime_get - grab an auxiliary power domain reference
  1728. * @dev_priv: i915 device instance
  1729. *
  1730. * This function grabs a power domain reference for the auxiliary power domain
  1731. * (for access to the GMBUS and DP AUX blocks) and ensures that it and all its
  1732. * parents are powered up. Therefore users should only grab a reference to the
  1733. * innermost power domain they need.
  1734. *
  1735. * Any power domain reference obtained by this function must have a symmetric
  1736. * call to intel_aux_display_runtime_put() to release the reference again.
  1737. */
  1738. void intel_aux_display_runtime_get(struct drm_i915_private *dev_priv)
  1739. {
  1740. intel_runtime_pm_get(dev_priv);
  1741. }
  1742. /**
  1743. * intel_aux_display_runtime_put - release an auxiliary power domain reference
  1744. * @dev_priv: i915 device instance
  1745. *
  1746. * This function drops the auxiliary power domain reference obtained by
  1747. * intel_aux_display_runtime_get() and might power down the corresponding
  1748. * hardware block right away if this is the last reference.
  1749. */
  1750. void intel_aux_display_runtime_put(struct drm_i915_private *dev_priv)
  1751. {
  1752. intel_runtime_pm_put(dev_priv);
  1753. }
  1754. /**
  1755. * intel_runtime_pm_get - grab a runtime pm reference
  1756. * @dev_priv: i915 device instance
  1757. *
  1758. * This function grabs a device-level runtime pm reference (mostly used for GEM
  1759. * code to ensure the GTT or GT is on) and ensures that it is powered up.
  1760. *
  1761. * Any runtime pm reference obtained by this function must have a symmetric
  1762. * call to intel_runtime_pm_put() to release the reference again.
  1763. */
  1764. void intel_runtime_pm_get(struct drm_i915_private *dev_priv)
  1765. {
  1766. struct drm_device *dev = dev_priv->dev;
  1767. struct device *device = &dev->pdev->dev;
  1768. if (!HAS_RUNTIME_PM(dev))
  1769. return;
  1770. pm_runtime_get_sync(device);
  1771. WARN(dev_priv->pm.suspended, "Device still suspended.\n");
  1772. }
  1773. /**
  1774. * intel_runtime_pm_get_noresume - grab a runtime pm reference
  1775. * @dev_priv: i915 device instance
  1776. *
  1777. * This function grabs a device-level runtime pm reference (mostly used for GEM
  1778. * code to ensure the GTT or GT is on).
  1779. *
  1780. * It will _not_ power up the device but instead only check that it's powered
  1781. * on. Therefore it is only valid to call this functions from contexts where
  1782. * the device is known to be powered up and where trying to power it up would
  1783. * result in hilarity and deadlocks. That pretty much means only the system
  1784. * suspend/resume code where this is used to grab runtime pm references for
  1785. * delayed setup down in work items.
  1786. *
  1787. * Any runtime pm reference obtained by this function must have a symmetric
  1788. * call to intel_runtime_pm_put() to release the reference again.
  1789. */
  1790. void intel_runtime_pm_get_noresume(struct drm_i915_private *dev_priv)
  1791. {
  1792. struct drm_device *dev = dev_priv->dev;
  1793. struct device *device = &dev->pdev->dev;
  1794. if (!HAS_RUNTIME_PM(dev))
  1795. return;
  1796. WARN(dev_priv->pm.suspended, "Getting nosync-ref while suspended.\n");
  1797. pm_runtime_get_noresume(device);
  1798. }
  1799. /**
  1800. * intel_runtime_pm_put - release a runtime pm reference
  1801. * @dev_priv: i915 device instance
  1802. *
  1803. * This function drops the device-level runtime pm reference obtained by
  1804. * intel_runtime_pm_get() and might power down the corresponding
  1805. * hardware block right away if this is the last reference.
  1806. */
  1807. void intel_runtime_pm_put(struct drm_i915_private *dev_priv)
  1808. {
  1809. struct drm_device *dev = dev_priv->dev;
  1810. struct device *device = &dev->pdev->dev;
  1811. if (!HAS_RUNTIME_PM(dev))
  1812. return;
  1813. pm_runtime_mark_last_busy(device);
  1814. pm_runtime_put_autosuspend(device);
  1815. }
  1816. /**
  1817. * intel_runtime_pm_enable - enable runtime pm
  1818. * @dev_priv: i915 device instance
  1819. *
  1820. * This function enables runtime pm at the end of the driver load sequence.
  1821. *
  1822. * Note that this function does currently not enable runtime pm for the
  1823. * subordinate display power domains. That is only done on the first modeset
  1824. * using intel_display_set_init_power().
  1825. */
  1826. void intel_runtime_pm_enable(struct drm_i915_private *dev_priv)
  1827. {
  1828. struct drm_device *dev = dev_priv->dev;
  1829. struct device *device = &dev->pdev->dev;
  1830. if (!HAS_RUNTIME_PM(dev))
  1831. return;
  1832. /*
  1833. * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
  1834. * requirement.
  1835. */
  1836. if (!intel_enable_rc6(dev)) {
  1837. DRM_INFO("RC6 disabled, disabling runtime PM support\n");
  1838. return;
  1839. }
  1840. pm_runtime_set_autosuspend_delay(device, 10000); /* 10s */
  1841. pm_runtime_mark_last_busy(device);
  1842. pm_runtime_use_autosuspend(device);
  1843. pm_runtime_put_autosuspend(device);
  1844. }