intel_crt.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  1. /*
  2. * Copyright © 2006-2007 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
  21. * DEALINGS IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Eric Anholt <eric@anholt.net>
  25. */
  26. #include <linux/dmi.h>
  27. #include <linux/i2c.h>
  28. #include <linux/slab.h>
  29. #include <drm/drmP.h>
  30. #include <drm/drm_atomic_helper.h>
  31. #include <drm/drm_crtc.h>
  32. #include <drm/drm_crtc_helper.h>
  33. #include <drm/drm_edid.h>
  34. #include "intel_drv.h"
  35. #include <drm/i915_drm.h>
  36. #include "i915_drv.h"
  37. /* Here's the desired hotplug mode */
  38. #define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \
  39. ADPA_CRT_HOTPLUG_WARMUP_10MS | \
  40. ADPA_CRT_HOTPLUG_SAMPLE_4S | \
  41. ADPA_CRT_HOTPLUG_VOLTAGE_50 | \
  42. ADPA_CRT_HOTPLUG_VOLREF_325MV | \
  43. ADPA_CRT_HOTPLUG_ENABLE)
  44. struct intel_crt {
  45. struct intel_encoder base;
  46. /* DPMS state is stored in the connector, which we need in the
  47. * encoder's enable/disable callbacks */
  48. struct intel_connector *connector;
  49. bool force_hotplug_required;
  50. i915_reg_t adpa_reg;
  51. };
  52. static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
  53. {
  54. return container_of(encoder, struct intel_crt, base);
  55. }
  56. static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
  57. {
  58. return intel_encoder_to_crt(intel_attached_encoder(connector));
  59. }
  60. static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
  61. enum pipe *pipe)
  62. {
  63. struct drm_device *dev = encoder->base.dev;
  64. struct drm_i915_private *dev_priv = dev->dev_private;
  65. struct intel_crt *crt = intel_encoder_to_crt(encoder);
  66. enum intel_display_power_domain power_domain;
  67. u32 tmp;
  68. power_domain = intel_display_port_power_domain(encoder);
  69. if (!intel_display_power_is_enabled(dev_priv, power_domain))
  70. return false;
  71. tmp = I915_READ(crt->adpa_reg);
  72. if (!(tmp & ADPA_DAC_ENABLE))
  73. return false;
  74. if (HAS_PCH_CPT(dev))
  75. *pipe = PORT_TO_PIPE_CPT(tmp);
  76. else
  77. *pipe = PORT_TO_PIPE(tmp);
  78. return true;
  79. }
  80. static unsigned int intel_crt_get_flags(struct intel_encoder *encoder)
  81. {
  82. struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
  83. struct intel_crt *crt = intel_encoder_to_crt(encoder);
  84. u32 tmp, flags = 0;
  85. tmp = I915_READ(crt->adpa_reg);
  86. if (tmp & ADPA_HSYNC_ACTIVE_HIGH)
  87. flags |= DRM_MODE_FLAG_PHSYNC;
  88. else
  89. flags |= DRM_MODE_FLAG_NHSYNC;
  90. if (tmp & ADPA_VSYNC_ACTIVE_HIGH)
  91. flags |= DRM_MODE_FLAG_PVSYNC;
  92. else
  93. flags |= DRM_MODE_FLAG_NVSYNC;
  94. return flags;
  95. }
  96. static void intel_crt_get_config(struct intel_encoder *encoder,
  97. struct intel_crtc_state *pipe_config)
  98. {
  99. struct drm_device *dev = encoder->base.dev;
  100. int dotclock;
  101. pipe_config->base.adjusted_mode.flags |= intel_crt_get_flags(encoder);
  102. dotclock = pipe_config->port_clock;
  103. if (HAS_PCH_SPLIT(dev))
  104. ironlake_check_encoder_dotclock(pipe_config, dotclock);
  105. pipe_config->base.adjusted_mode.crtc_clock = dotclock;
  106. }
  107. static void hsw_crt_get_config(struct intel_encoder *encoder,
  108. struct intel_crtc_state *pipe_config)
  109. {
  110. intel_ddi_get_config(encoder, pipe_config);
  111. pipe_config->base.adjusted_mode.flags &= ~(DRM_MODE_FLAG_PHSYNC |
  112. DRM_MODE_FLAG_NHSYNC |
  113. DRM_MODE_FLAG_PVSYNC |
  114. DRM_MODE_FLAG_NVSYNC);
  115. pipe_config->base.adjusted_mode.flags |= intel_crt_get_flags(encoder);
  116. }
  117. /* Note: The caller is required to filter out dpms modes not supported by the
  118. * platform. */
  119. static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
  120. {
  121. struct drm_device *dev = encoder->base.dev;
  122. struct drm_i915_private *dev_priv = dev->dev_private;
  123. struct intel_crt *crt = intel_encoder_to_crt(encoder);
  124. struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
  125. const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
  126. u32 adpa;
  127. if (INTEL_INFO(dev)->gen >= 5)
  128. adpa = ADPA_HOTPLUG_BITS;
  129. else
  130. adpa = 0;
  131. if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
  132. adpa |= ADPA_HSYNC_ACTIVE_HIGH;
  133. if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
  134. adpa |= ADPA_VSYNC_ACTIVE_HIGH;
  135. /* For CPT allow 3 pipe config, for others just use A or B */
  136. if (HAS_PCH_LPT(dev))
  137. ; /* Those bits don't exist here */
  138. else if (HAS_PCH_CPT(dev))
  139. adpa |= PORT_TRANS_SEL_CPT(crtc->pipe);
  140. else if (crtc->pipe == 0)
  141. adpa |= ADPA_PIPE_A_SELECT;
  142. else
  143. adpa |= ADPA_PIPE_B_SELECT;
  144. if (!HAS_PCH_SPLIT(dev))
  145. I915_WRITE(BCLRPAT(crtc->pipe), 0);
  146. switch (mode) {
  147. case DRM_MODE_DPMS_ON:
  148. adpa |= ADPA_DAC_ENABLE;
  149. break;
  150. case DRM_MODE_DPMS_STANDBY:
  151. adpa |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
  152. break;
  153. case DRM_MODE_DPMS_SUSPEND:
  154. adpa |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
  155. break;
  156. case DRM_MODE_DPMS_OFF:
  157. adpa |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
  158. break;
  159. }
  160. I915_WRITE(crt->adpa_reg, adpa);
  161. }
  162. static void intel_disable_crt(struct intel_encoder *encoder)
  163. {
  164. intel_crt_set_dpms(encoder, DRM_MODE_DPMS_OFF);
  165. }
  166. static void pch_disable_crt(struct intel_encoder *encoder)
  167. {
  168. }
  169. static void pch_post_disable_crt(struct intel_encoder *encoder)
  170. {
  171. intel_disable_crt(encoder);
  172. }
  173. static void intel_enable_crt(struct intel_encoder *encoder)
  174. {
  175. struct intel_crt *crt = intel_encoder_to_crt(encoder);
  176. intel_crt_set_dpms(encoder, crt->connector->base.dpms);
  177. }
  178. static enum drm_mode_status
  179. intel_crt_mode_valid(struct drm_connector *connector,
  180. struct drm_display_mode *mode)
  181. {
  182. struct drm_device *dev = connector->dev;
  183. int max_clock = 0;
  184. if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
  185. return MODE_NO_DBLESCAN;
  186. if (mode->clock < 25000)
  187. return MODE_CLOCK_LOW;
  188. if (IS_GEN2(dev))
  189. max_clock = 350000;
  190. else
  191. max_clock = 400000;
  192. if (mode->clock > max_clock)
  193. return MODE_CLOCK_HIGH;
  194. /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */
  195. if (HAS_PCH_LPT(dev) &&
  196. (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2))
  197. return MODE_CLOCK_HIGH;
  198. return MODE_OK;
  199. }
  200. static bool intel_crt_compute_config(struct intel_encoder *encoder,
  201. struct intel_crtc_state *pipe_config)
  202. {
  203. struct drm_device *dev = encoder->base.dev;
  204. if (HAS_PCH_SPLIT(dev))
  205. pipe_config->has_pch_encoder = true;
  206. /* LPT FDI RX only supports 8bpc. */
  207. if (HAS_PCH_LPT(dev))
  208. pipe_config->pipe_bpp = 24;
  209. /* FDI must always be 2.7 GHz */
  210. if (HAS_DDI(dev)) {
  211. pipe_config->ddi_pll_sel = PORT_CLK_SEL_SPLL;
  212. pipe_config->port_clock = 135000 * 2;
  213. pipe_config->dpll_hw_state.wrpll = 0;
  214. pipe_config->dpll_hw_state.spll =
  215. SPLL_PLL_ENABLE | SPLL_PLL_FREQ_1350MHz | SPLL_PLL_SSC;
  216. }
  217. return true;
  218. }
  219. static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
  220. {
  221. struct drm_device *dev = connector->dev;
  222. struct intel_crt *crt = intel_attached_crt(connector);
  223. struct drm_i915_private *dev_priv = dev->dev_private;
  224. u32 adpa;
  225. bool ret;
  226. /* The first time through, trigger an explicit detection cycle */
  227. if (crt->force_hotplug_required) {
  228. bool turn_off_dac = HAS_PCH_SPLIT(dev);
  229. u32 save_adpa;
  230. crt->force_hotplug_required = 0;
  231. save_adpa = adpa = I915_READ(crt->adpa_reg);
  232. DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
  233. adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
  234. if (turn_off_dac)
  235. adpa &= ~ADPA_DAC_ENABLE;
  236. I915_WRITE(crt->adpa_reg, adpa);
  237. if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
  238. 1000))
  239. DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
  240. if (turn_off_dac) {
  241. I915_WRITE(crt->adpa_reg, save_adpa);
  242. POSTING_READ(crt->adpa_reg);
  243. }
  244. }
  245. /* Check the status to see if both blue and green are on now */
  246. adpa = I915_READ(crt->adpa_reg);
  247. if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
  248. ret = true;
  249. else
  250. ret = false;
  251. DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
  252. return ret;
  253. }
  254. static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
  255. {
  256. struct drm_device *dev = connector->dev;
  257. struct intel_crt *crt = intel_attached_crt(connector);
  258. struct drm_i915_private *dev_priv = dev->dev_private;
  259. u32 adpa;
  260. bool ret;
  261. u32 save_adpa;
  262. save_adpa = adpa = I915_READ(crt->adpa_reg);
  263. DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
  264. adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
  265. I915_WRITE(crt->adpa_reg, adpa);
  266. if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
  267. 1000)) {
  268. DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
  269. I915_WRITE(crt->adpa_reg, save_adpa);
  270. }
  271. /* Check the status to see if both blue and green are on now */
  272. adpa = I915_READ(crt->adpa_reg);
  273. if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
  274. ret = true;
  275. else
  276. ret = false;
  277. DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
  278. return ret;
  279. }
  280. /**
  281. * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
  282. *
  283. * Not for i915G/i915GM
  284. *
  285. * \return true if CRT is connected.
  286. * \return false if CRT is disconnected.
  287. */
  288. static bool intel_crt_detect_hotplug(struct drm_connector *connector)
  289. {
  290. struct drm_device *dev = connector->dev;
  291. struct drm_i915_private *dev_priv = dev->dev_private;
  292. u32 stat;
  293. bool ret = false;
  294. int i, tries = 0;
  295. if (HAS_PCH_SPLIT(dev))
  296. return intel_ironlake_crt_detect_hotplug(connector);
  297. if (IS_VALLEYVIEW(dev))
  298. return valleyview_crt_detect_hotplug(connector);
  299. /*
  300. * On 4 series desktop, CRT detect sequence need to be done twice
  301. * to get a reliable result.
  302. */
  303. if (IS_G4X(dev) && !IS_GM45(dev))
  304. tries = 2;
  305. else
  306. tries = 1;
  307. for (i = 0; i < tries ; i++) {
  308. /* turn on the FORCE_DETECT */
  309. i915_hotplug_interrupt_update(dev_priv,
  310. CRT_HOTPLUG_FORCE_DETECT,
  311. CRT_HOTPLUG_FORCE_DETECT);
  312. /* wait for FORCE_DETECT to go off */
  313. if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
  314. CRT_HOTPLUG_FORCE_DETECT) == 0,
  315. 1000))
  316. DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
  317. }
  318. stat = I915_READ(PORT_HOTPLUG_STAT);
  319. if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
  320. ret = true;
  321. /* clear the interrupt we just generated, if any */
  322. I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
  323. i915_hotplug_interrupt_update(dev_priv, CRT_HOTPLUG_FORCE_DETECT, 0);
  324. return ret;
  325. }
  326. static struct edid *intel_crt_get_edid(struct drm_connector *connector,
  327. struct i2c_adapter *i2c)
  328. {
  329. struct edid *edid;
  330. edid = drm_get_edid(connector, i2c);
  331. if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
  332. DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
  333. intel_gmbus_force_bit(i2c, true);
  334. edid = drm_get_edid(connector, i2c);
  335. intel_gmbus_force_bit(i2c, false);
  336. }
  337. return edid;
  338. }
  339. /* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
  340. static int intel_crt_ddc_get_modes(struct drm_connector *connector,
  341. struct i2c_adapter *adapter)
  342. {
  343. struct edid *edid;
  344. int ret;
  345. edid = intel_crt_get_edid(connector, adapter);
  346. if (!edid)
  347. return 0;
  348. ret = intel_connector_update_modes(connector, edid);
  349. kfree(edid);
  350. return ret;
  351. }
  352. static bool intel_crt_detect_ddc(struct drm_connector *connector)
  353. {
  354. struct intel_crt *crt = intel_attached_crt(connector);
  355. struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
  356. struct edid *edid;
  357. struct i2c_adapter *i2c;
  358. BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
  359. i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
  360. edid = intel_crt_get_edid(connector, i2c);
  361. if (edid) {
  362. bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
  363. /*
  364. * This may be a DVI-I connector with a shared DDC
  365. * link between analog and digital outputs, so we
  366. * have to check the EDID input spec of the attached device.
  367. */
  368. if (!is_digital) {
  369. DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
  370. return true;
  371. }
  372. DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
  373. } else {
  374. DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
  375. }
  376. kfree(edid);
  377. return false;
  378. }
  379. static enum drm_connector_status
  380. intel_crt_load_detect(struct intel_crt *crt)
  381. {
  382. struct drm_device *dev = crt->base.base.dev;
  383. struct drm_i915_private *dev_priv = dev->dev_private;
  384. uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
  385. uint32_t save_bclrpat;
  386. uint32_t save_vtotal;
  387. uint32_t vtotal, vactive;
  388. uint32_t vsample;
  389. uint32_t vblank, vblank_start, vblank_end;
  390. uint32_t dsl;
  391. i915_reg_t bclrpat_reg, vtotal_reg,
  392. vblank_reg, vsync_reg, pipeconf_reg, pipe_dsl_reg;
  393. uint8_t st00;
  394. enum drm_connector_status status;
  395. DRM_DEBUG_KMS("starting load-detect on CRT\n");
  396. bclrpat_reg = BCLRPAT(pipe);
  397. vtotal_reg = VTOTAL(pipe);
  398. vblank_reg = VBLANK(pipe);
  399. vsync_reg = VSYNC(pipe);
  400. pipeconf_reg = PIPECONF(pipe);
  401. pipe_dsl_reg = PIPEDSL(pipe);
  402. save_bclrpat = I915_READ(bclrpat_reg);
  403. save_vtotal = I915_READ(vtotal_reg);
  404. vblank = I915_READ(vblank_reg);
  405. vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
  406. vactive = (save_vtotal & 0x7ff) + 1;
  407. vblank_start = (vblank & 0xfff) + 1;
  408. vblank_end = ((vblank >> 16) & 0xfff) + 1;
  409. /* Set the border color to purple. */
  410. I915_WRITE(bclrpat_reg, 0x500050);
  411. if (!IS_GEN2(dev)) {
  412. uint32_t pipeconf = I915_READ(pipeconf_reg);
  413. I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
  414. POSTING_READ(pipeconf_reg);
  415. /* Wait for next Vblank to substitue
  416. * border color for Color info */
  417. intel_wait_for_vblank(dev, pipe);
  418. st00 = I915_READ8(_VGA_MSR_WRITE);
  419. status = ((st00 & (1 << 4)) != 0) ?
  420. connector_status_connected :
  421. connector_status_disconnected;
  422. I915_WRITE(pipeconf_reg, pipeconf);
  423. } else {
  424. bool restore_vblank = false;
  425. int count, detect;
  426. /*
  427. * If there isn't any border, add some.
  428. * Yes, this will flicker
  429. */
  430. if (vblank_start <= vactive && vblank_end >= vtotal) {
  431. uint32_t vsync = I915_READ(vsync_reg);
  432. uint32_t vsync_start = (vsync & 0xffff) + 1;
  433. vblank_start = vsync_start;
  434. I915_WRITE(vblank_reg,
  435. (vblank_start - 1) |
  436. ((vblank_end - 1) << 16));
  437. restore_vblank = true;
  438. }
  439. /* sample in the vertical border, selecting the larger one */
  440. if (vblank_start - vactive >= vtotal - vblank_end)
  441. vsample = (vblank_start + vactive) >> 1;
  442. else
  443. vsample = (vtotal + vblank_end) >> 1;
  444. /*
  445. * Wait for the border to be displayed
  446. */
  447. while (I915_READ(pipe_dsl_reg) >= vactive)
  448. ;
  449. while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
  450. ;
  451. /*
  452. * Watch ST00 for an entire scanline
  453. */
  454. detect = 0;
  455. count = 0;
  456. do {
  457. count++;
  458. /* Read the ST00 VGA status register */
  459. st00 = I915_READ8(_VGA_MSR_WRITE);
  460. if (st00 & (1 << 4))
  461. detect++;
  462. } while ((I915_READ(pipe_dsl_reg) == dsl));
  463. /* restore vblank if necessary */
  464. if (restore_vblank)
  465. I915_WRITE(vblank_reg, vblank);
  466. /*
  467. * If more than 3/4 of the scanline detected a monitor,
  468. * then it is assumed to be present. This works even on i830,
  469. * where there isn't any way to force the border color across
  470. * the screen
  471. */
  472. status = detect * 4 > count * 3 ?
  473. connector_status_connected :
  474. connector_status_disconnected;
  475. }
  476. /* Restore previous settings */
  477. I915_WRITE(bclrpat_reg, save_bclrpat);
  478. return status;
  479. }
  480. static enum drm_connector_status
  481. intel_crt_detect(struct drm_connector *connector, bool force)
  482. {
  483. struct drm_device *dev = connector->dev;
  484. struct drm_i915_private *dev_priv = dev->dev_private;
  485. struct intel_crt *crt = intel_attached_crt(connector);
  486. struct intel_encoder *intel_encoder = &crt->base;
  487. enum intel_display_power_domain power_domain;
  488. enum drm_connector_status status;
  489. struct intel_load_detect_pipe tmp;
  490. struct drm_modeset_acquire_ctx ctx;
  491. DRM_DEBUG_KMS("[CONNECTOR:%d:%s] force=%d\n",
  492. connector->base.id, connector->name,
  493. force);
  494. power_domain = intel_display_port_power_domain(intel_encoder);
  495. intel_display_power_get(dev_priv, power_domain);
  496. if (I915_HAS_HOTPLUG(dev)) {
  497. /* We can not rely on the HPD pin always being correctly wired
  498. * up, for example many KVM do not pass it through, and so
  499. * only trust an assertion that the monitor is connected.
  500. */
  501. if (intel_crt_detect_hotplug(connector)) {
  502. DRM_DEBUG_KMS("CRT detected via hotplug\n");
  503. status = connector_status_connected;
  504. goto out;
  505. } else
  506. DRM_DEBUG_KMS("CRT not detected via hotplug\n");
  507. }
  508. if (intel_crt_detect_ddc(connector)) {
  509. status = connector_status_connected;
  510. goto out;
  511. }
  512. /* Load detection is broken on HPD capable machines. Whoever wants a
  513. * broken monitor (without edid) to work behind a broken kvm (that fails
  514. * to have the right resistors for HP detection) needs to fix this up.
  515. * For now just bail out. */
  516. if (I915_HAS_HOTPLUG(dev) && !i915.load_detect_test) {
  517. status = connector_status_disconnected;
  518. goto out;
  519. }
  520. if (!force) {
  521. status = connector->status;
  522. goto out;
  523. }
  524. drm_modeset_acquire_init(&ctx, 0);
  525. /* for pre-945g platforms use load detect */
  526. if (intel_get_load_detect_pipe(connector, NULL, &tmp, &ctx)) {
  527. if (intel_crt_detect_ddc(connector))
  528. status = connector_status_connected;
  529. else if (INTEL_INFO(dev)->gen < 4)
  530. status = intel_crt_load_detect(crt);
  531. else
  532. status = connector_status_unknown;
  533. intel_release_load_detect_pipe(connector, &tmp, &ctx);
  534. } else
  535. status = connector_status_unknown;
  536. drm_modeset_drop_locks(&ctx);
  537. drm_modeset_acquire_fini(&ctx);
  538. out:
  539. intel_display_power_put(dev_priv, power_domain);
  540. return status;
  541. }
  542. static void intel_crt_destroy(struct drm_connector *connector)
  543. {
  544. drm_connector_cleanup(connector);
  545. kfree(connector);
  546. }
  547. static int intel_crt_get_modes(struct drm_connector *connector)
  548. {
  549. struct drm_device *dev = connector->dev;
  550. struct drm_i915_private *dev_priv = dev->dev_private;
  551. struct intel_crt *crt = intel_attached_crt(connector);
  552. struct intel_encoder *intel_encoder = &crt->base;
  553. enum intel_display_power_domain power_domain;
  554. int ret;
  555. struct i2c_adapter *i2c;
  556. power_domain = intel_display_port_power_domain(intel_encoder);
  557. intel_display_power_get(dev_priv, power_domain);
  558. i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
  559. ret = intel_crt_ddc_get_modes(connector, i2c);
  560. if (ret || !IS_G4X(dev))
  561. goto out;
  562. /* Try to probe digital port for output in DVI-I -> VGA mode. */
  563. i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PIN_DPB);
  564. ret = intel_crt_ddc_get_modes(connector, i2c);
  565. out:
  566. intel_display_power_put(dev_priv, power_domain);
  567. return ret;
  568. }
  569. static int intel_crt_set_property(struct drm_connector *connector,
  570. struct drm_property *property,
  571. uint64_t value)
  572. {
  573. return 0;
  574. }
  575. static void intel_crt_reset(struct drm_connector *connector)
  576. {
  577. struct drm_device *dev = connector->dev;
  578. struct drm_i915_private *dev_priv = dev->dev_private;
  579. struct intel_crt *crt = intel_attached_crt(connector);
  580. if (INTEL_INFO(dev)->gen >= 5) {
  581. u32 adpa;
  582. adpa = I915_READ(crt->adpa_reg);
  583. adpa &= ~ADPA_CRT_HOTPLUG_MASK;
  584. adpa |= ADPA_HOTPLUG_BITS;
  585. I915_WRITE(crt->adpa_reg, adpa);
  586. POSTING_READ(crt->adpa_reg);
  587. DRM_DEBUG_KMS("crt adpa set to 0x%x\n", adpa);
  588. crt->force_hotplug_required = 1;
  589. }
  590. }
  591. /*
  592. * Routines for controlling stuff on the analog port
  593. */
  594. static const struct drm_connector_funcs intel_crt_connector_funcs = {
  595. .reset = intel_crt_reset,
  596. .dpms = drm_atomic_helper_connector_dpms,
  597. .detect = intel_crt_detect,
  598. .fill_modes = drm_helper_probe_single_connector_modes,
  599. .destroy = intel_crt_destroy,
  600. .set_property = intel_crt_set_property,
  601. .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
  602. .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
  603. .atomic_get_property = intel_connector_atomic_get_property,
  604. };
  605. static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
  606. .mode_valid = intel_crt_mode_valid,
  607. .get_modes = intel_crt_get_modes,
  608. .best_encoder = intel_best_encoder,
  609. };
  610. static const struct drm_encoder_funcs intel_crt_enc_funcs = {
  611. .destroy = intel_encoder_destroy,
  612. };
  613. static int intel_no_crt_dmi_callback(const struct dmi_system_id *id)
  614. {
  615. DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
  616. return 1;
  617. }
  618. static const struct dmi_system_id intel_no_crt[] = {
  619. {
  620. .callback = intel_no_crt_dmi_callback,
  621. .ident = "ACER ZGB",
  622. .matches = {
  623. DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
  624. DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
  625. },
  626. },
  627. {
  628. .callback = intel_no_crt_dmi_callback,
  629. .ident = "DELL XPS 8700",
  630. .matches = {
  631. DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
  632. DMI_MATCH(DMI_PRODUCT_NAME, "XPS 8700"),
  633. },
  634. },
  635. { }
  636. };
  637. void intel_crt_init(struct drm_device *dev)
  638. {
  639. struct drm_connector *connector;
  640. struct intel_crt *crt;
  641. struct intel_connector *intel_connector;
  642. struct drm_i915_private *dev_priv = dev->dev_private;
  643. /* Skip machines without VGA that falsely report hotplug events */
  644. if (dmi_check_system(intel_no_crt))
  645. return;
  646. crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
  647. if (!crt)
  648. return;
  649. intel_connector = intel_connector_alloc();
  650. if (!intel_connector) {
  651. kfree(crt);
  652. return;
  653. }
  654. connector = &intel_connector->base;
  655. crt->connector = intel_connector;
  656. drm_connector_init(dev, &intel_connector->base,
  657. &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
  658. drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
  659. DRM_MODE_ENCODER_DAC, NULL);
  660. intel_connector_attach_encoder(intel_connector, &crt->base);
  661. crt->base.type = INTEL_OUTPUT_ANALOG;
  662. crt->base.cloneable = (1 << INTEL_OUTPUT_DVO) | (1 << INTEL_OUTPUT_HDMI);
  663. if (IS_I830(dev))
  664. crt->base.crtc_mask = (1 << 0);
  665. else
  666. crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
  667. if (IS_GEN2(dev))
  668. connector->interlace_allowed = 0;
  669. else
  670. connector->interlace_allowed = 1;
  671. connector->doublescan_allowed = 0;
  672. if (HAS_PCH_SPLIT(dev))
  673. crt->adpa_reg = PCH_ADPA;
  674. else if (IS_VALLEYVIEW(dev))
  675. crt->adpa_reg = VLV_ADPA;
  676. else
  677. crt->adpa_reg = ADPA;
  678. crt->base.compute_config = intel_crt_compute_config;
  679. if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev)) {
  680. crt->base.disable = pch_disable_crt;
  681. crt->base.post_disable = pch_post_disable_crt;
  682. } else {
  683. crt->base.disable = intel_disable_crt;
  684. }
  685. crt->base.enable = intel_enable_crt;
  686. if (I915_HAS_HOTPLUG(dev))
  687. crt->base.hpd_pin = HPD_CRT;
  688. if (HAS_DDI(dev)) {
  689. crt->base.get_config = hsw_crt_get_config;
  690. crt->base.get_hw_state = intel_ddi_get_hw_state;
  691. } else {
  692. crt->base.get_config = intel_crt_get_config;
  693. crt->base.get_hw_state = intel_crt_get_hw_state;
  694. }
  695. intel_connector->get_hw_state = intel_connector_get_hw_state;
  696. intel_connector->unregister = intel_connector_unregister;
  697. drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
  698. drm_connector_register(connector);
  699. if (!I915_HAS_HOTPLUG(dev))
  700. intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT;
  701. /*
  702. * Configure the automatic hotplug detection stuff
  703. */
  704. crt->force_hotplug_required = 0;
  705. /*
  706. * TODO: find a proper way to discover whether we need to set the the
  707. * polarity and link reversal bits or not, instead of relying on the
  708. * BIOS.
  709. */
  710. if (HAS_PCH_LPT(dev)) {
  711. u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT |
  712. FDI_RX_LINK_REVERSAL_OVERRIDE;
  713. dev_priv->fdi_rx_config = I915_READ(FDI_RX_CTL(PIPE_A)) & fdi_config;
  714. }
  715. intel_crt_reset(connector);
  716. }