blob: 3dc5a0be7857c5c96a78c01cd34b11d2a77f0331 [file] [log] [blame]
Shashank Sharmadbe9e612016-10-14 19:56:49 +05301/*
2 * Copyright © 2016 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 *
24 */
25#include <drm/drm_edid.h>
26#include <drm/drm_atomic_helper.h>
27#include <drm/drm_dp_dual_mode_helper.h>
28#include "intel_drv.h"
29
Imre Deaka5d94b832016-10-24 19:33:30 +030030static struct intel_dp *lspcon_to_intel_dp(struct intel_lspcon *lspcon)
31{
32 struct intel_digital_port *dig_port =
33 container_of(lspcon, struct intel_digital_port, lspcon);
34
35 return &dig_port->dp;
36}
37
Jani Nikula1dc16aa2016-10-18 14:21:51 +030038static enum drm_lspcon_mode lspcon_get_current_mode(struct intel_lspcon *lspcon)
Shashank Sharmadbe9e612016-10-14 19:56:49 +053039{
40 enum drm_lspcon_mode current_mode = DRM_LSPCON_MODE_INVALID;
Imre Deaka5d94b832016-10-24 19:33:30 +030041 struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
Shashank Sharmadbe9e612016-10-14 19:56:49 +053042
43 if (drm_lspcon_get_mode(adapter, &current_mode))
44 DRM_ERROR("Error reading LSPCON mode\n");
45 else
46 DRM_DEBUG_KMS("Current LSPCON mode %s\n",
47 current_mode == DRM_LSPCON_MODE_PCON ? "PCON" : "LS");
48 return current_mode;
49}
50
51static int lspcon_change_mode(struct intel_lspcon *lspcon,
52 enum drm_lspcon_mode mode, bool force)
53{
54 int err;
55 enum drm_lspcon_mode current_mode;
Imre Deaka5d94b832016-10-24 19:33:30 +030056 struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
Shashank Sharmadbe9e612016-10-14 19:56:49 +053057
58 err = drm_lspcon_get_mode(adapter, &current_mode);
59 if (err) {
60 DRM_ERROR("Error reading LSPCON mode\n");
61 return err;
62 }
63
64 if (current_mode == mode) {
65 DRM_DEBUG_KMS("Current mode = desired LSPCON mode\n");
66 return 0;
67 }
68
69 err = drm_lspcon_set_mode(adapter, mode);
70 if (err < 0) {
71 DRM_ERROR("LSPCON mode change failed\n");
72 return err;
73 }
74
75 lspcon->mode = mode;
76 DRM_DEBUG_KMS("LSPCON mode changed done\n");
77 return 0;
78}
79
80static bool lspcon_probe(struct intel_lspcon *lspcon)
81{
82 enum drm_dp_dual_mode_type adaptor_type;
Imre Deaka5d94b832016-10-24 19:33:30 +030083 struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc;
Shashank Sharmadbe9e612016-10-14 19:56:49 +053084
85 /* Lets probe the adaptor and check its type */
86 adaptor_type = drm_dp_dual_mode_detect(adapter);
87 if (adaptor_type != DRM_DP_DUAL_MODE_LSPCON) {
88 DRM_DEBUG_KMS("No LSPCON detected, found %s\n",
89 drm_dp_get_dual_mode_type_name(adaptor_type));
90 return false;
91 }
92
93 /* Yay ... got a LSPCON device */
94 DRM_DEBUG_KMS("LSPCON detected\n");
95 lspcon->mode = lspcon_get_current_mode(lspcon);
96 lspcon->active = true;
97 return true;
98}
99
Shashank Sharma910530c2016-10-14 19:56:52 +0530100void lspcon_resume(struct intel_lspcon *lspcon)
101{
102 if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON, true))
103 DRM_ERROR("LSPCON resume failed\n");
104 else
105 DRM_DEBUG_KMS("LSPCON resume success\n");
106}
107
Shashank Sharmadbe9e612016-10-14 19:56:49 +0530108bool lspcon_init(struct intel_digital_port *intel_dig_port)
109{
110 struct intel_dp *dp = &intel_dig_port->dp;
111 struct intel_lspcon *lspcon = &intel_dig_port->lspcon;
112 struct drm_device *dev = intel_dig_port->base.base.dev;
113 struct drm_i915_private *dev_priv = to_i915(dev);
114
115 if (!IS_GEN9(dev_priv)) {
116 DRM_ERROR("LSPCON is supported on GEN9 only\n");
117 return false;
118 }
119
120 lspcon->active = false;
121 lspcon->mode = DRM_LSPCON_MODE_INVALID;
Shashank Sharmadbe9e612016-10-14 19:56:49 +0530122
123 if (!lspcon_probe(lspcon)) {
124 DRM_ERROR("Failed to probe lspcon\n");
125 return false;
126 }
127
128 /*
129 * In the SW state machine, lets Put LSPCON in PCON mode only.
130 * In this way, it will work with both HDMI 1.4 sinks as well as HDMI
131 * 2.0 sinks.
132 */
133 if (lspcon->active && lspcon->mode != DRM_LSPCON_MODE_PCON) {
134 if (lspcon_change_mode(lspcon, DRM_LSPCON_MODE_PCON,
135 true) < 0) {
136 DRM_ERROR("LSPCON mode change to PCON failed\n");
137 return false;
138 }
139 }
140
Imre Deak24e807e2016-10-24 19:33:28 +0300141 if (!intel_dp_read_dpcd(dp)) {
142 DRM_ERROR("LSPCON DPCD read failed\n");
143 return false;
144 }
145
Imre Deak12a47a422016-10-24 19:33:29 +0300146 intel_dp_read_desc(dp);
147
Shashank Sharmadbe9e612016-10-14 19:56:49 +0530148 DRM_DEBUG_KMS("Success: LSPCON init\n");
149 return true;
150}