Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 1 | /* |
| 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 Deak | a5d94b83 | 2016-10-24 19:33:30 +0300 | [diff] [blame^] | 30 | static 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 Nikula | 1dc16aa | 2016-10-18 14:21:51 +0300 | [diff] [blame] | 38 | static enum drm_lspcon_mode lspcon_get_current_mode(struct intel_lspcon *lspcon) |
Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 39 | { |
| 40 | enum drm_lspcon_mode current_mode = DRM_LSPCON_MODE_INVALID; |
Imre Deak | a5d94b83 | 2016-10-24 19:33:30 +0300 | [diff] [blame^] | 41 | struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc; |
Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 42 | |
| 43 | if (drm_lspcon_get_mode(adapter, ¤t_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 | |
| 51 | static 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 Deak | a5d94b83 | 2016-10-24 19:33:30 +0300 | [diff] [blame^] | 56 | struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc; |
Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 57 | |
| 58 | err = drm_lspcon_get_mode(adapter, ¤t_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 | |
| 80 | static bool lspcon_probe(struct intel_lspcon *lspcon) |
| 81 | { |
| 82 | enum drm_dp_dual_mode_type adaptor_type; |
Imre Deak | a5d94b83 | 2016-10-24 19:33:30 +0300 | [diff] [blame^] | 83 | struct i2c_adapter *adapter = &lspcon_to_intel_dp(lspcon)->aux.ddc; |
Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 84 | |
| 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 Sharma | 910530c | 2016-10-14 19:56:52 +0530 | [diff] [blame] | 100 | void 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 Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 108 | bool 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 Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 122 | |
| 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 Deak | 24e807e | 2016-10-24 19:33:28 +0300 | [diff] [blame] | 141 | if (!intel_dp_read_dpcd(dp)) { |
| 142 | DRM_ERROR("LSPCON DPCD read failed\n"); |
| 143 | return false; |
| 144 | } |
| 145 | |
Imre Deak | 12a47a42 | 2016-10-24 19:33:29 +0300 | [diff] [blame] | 146 | intel_dp_read_desc(dp); |
| 147 | |
Shashank Sharma | dbe9e61 | 2016-10-14 19:56:49 +0530 | [diff] [blame] | 148 | DRM_DEBUG_KMS("Success: LSPCON init\n"); |
| 149 | return true; |
| 150 | } |