3 * Copyright (c) 2007, 2010 Intel Corporation
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
26 #include <linux/i2c.h>
27 #include <linux/slab.h>
29 #include <drm/drm_atomic_helper.h>
30 #include <drm/drm_edid.h>
33 #include "intel_backlight.h"
34 #include "intel_connector.h"
35 #include "intel_display_debugfs.h"
36 #include "intel_display_types.h"
37 #include "intel_hdcp.h"
38 #include "intel_panel.h"
40 int intel_connector_init(struct intel_connector *connector)
42 struct intel_digital_connector_state *conn_state;
45 * Allocate enough memory to hold intel_digital_connector_state,
46 * This might be a few bytes too many, but for connectors that don't
47 * need it we'll free the state and allocate a smaller one on the first
48 * successful commit anyway.
50 conn_state = kzalloc(sizeof(*conn_state), GFP_KERNEL);
54 __drm_atomic_helper_connector_reset(&connector->base,
57 INIT_LIST_HEAD(&connector->panel.fixed_modes);
62 struct intel_connector *intel_connector_alloc(void)
64 struct intel_connector *connector;
66 connector = kzalloc(sizeof(*connector), GFP_KERNEL);
70 if (intel_connector_init(connector) < 0) {
79 * Free the bits allocated by intel_connector_alloc.
80 * This should only be used after intel_connector_alloc has returned
81 * successfully, and before drm_connector_init returns successfully.
82 * Otherwise the destroy callbacks for the connector and the state should
83 * take care of proper cleanup/free (see intel_connector_destroy).
85 void intel_connector_free(struct intel_connector *connector)
87 kfree(to_intel_digital_connector_state(connector->base.state));
92 * Connector type independent destroy hook for drm_connector_funcs.
94 void intel_connector_destroy(struct drm_connector *connector)
96 struct intel_connector *intel_connector = to_intel_connector(connector);
98 kfree(intel_connector->detect_edid);
100 intel_hdcp_cleanup(intel_connector);
102 if (!IS_ERR_OR_NULL(intel_connector->edid))
103 kfree(intel_connector->edid);
105 intel_panel_fini(intel_connector);
107 drm_connector_cleanup(connector);
109 if (intel_connector->port)
110 drm_dp_mst_put_port_malloc(intel_connector->port);
115 int intel_connector_register(struct drm_connector *connector)
117 struct intel_connector *intel_connector = to_intel_connector(connector);
120 ret = intel_backlight_device_register(intel_connector);
124 if (i915_inject_probe_failure(to_i915(connector->dev))) {
129 intel_connector_debugfs_add(intel_connector);
134 intel_backlight_device_unregister(intel_connector);
139 void intel_connector_unregister(struct drm_connector *connector)
141 struct intel_connector *intel_connector = to_intel_connector(connector);
143 intel_backlight_device_unregister(intel_connector);
146 void intel_connector_attach_encoder(struct intel_connector *connector,
147 struct intel_encoder *encoder)
149 connector->encoder = encoder;
150 drm_connector_attach_encoder(&connector->base, &encoder->base);
154 * Simple connector->get_hw_state implementation for encoders that support only
155 * one connector and no cloning and hence the encoder state determines the state
158 bool intel_connector_get_hw_state(struct intel_connector *connector)
161 struct intel_encoder *encoder = intel_attached_encoder(connector);
163 return encoder->get_hw_state(encoder, &pipe);
166 enum pipe intel_connector_get_pipe(struct intel_connector *connector)
168 struct drm_device *dev = connector->base.dev;
171 !drm_modeset_is_locked(&dev->mode_config.connection_mutex));
173 if (!connector->base.state->crtc)
176 return to_intel_crtc(connector->base.state->crtc)->pipe;
180 * intel_connector_update_modes - update connector from edid
181 * @connector: DRM connector device to use
182 * @edid: previously read EDID information
184 int intel_connector_update_modes(struct drm_connector *connector,
189 drm_connector_update_edid_property(connector, edid);
190 ret = drm_add_edid_modes(connector, edid);
196 * intel_ddc_get_modes - get modelist from monitor
197 * @connector: DRM connector device to use
198 * @adapter: i2c adapter
200 * Fetch the EDID information from @connector using the DDC bus.
202 int intel_ddc_get_modes(struct drm_connector *connector,
203 struct i2c_adapter *adapter)
208 edid = drm_get_edid(connector, adapter);
212 ret = intel_connector_update_modes(connector, edid);
218 static const struct drm_prop_enum_list force_audio_names[] = {
219 { HDMI_AUDIO_OFF_DVI, "force-dvi" },
220 { HDMI_AUDIO_OFF, "off" },
221 { HDMI_AUDIO_AUTO, "auto" },
222 { HDMI_AUDIO_ON, "on" },
226 intel_attach_force_audio_property(struct drm_connector *connector)
228 struct drm_device *dev = connector->dev;
229 struct drm_i915_private *dev_priv = to_i915(dev);
230 struct drm_property *prop;
232 prop = dev_priv->force_audio_property;
234 prop = drm_property_create_enum(dev, 0,
237 ARRAY_SIZE(force_audio_names));
241 dev_priv->force_audio_property = prop;
243 drm_object_attach_property(&connector->base, prop, 0);
246 static const struct drm_prop_enum_list broadcast_rgb_names[] = {
247 { INTEL_BROADCAST_RGB_AUTO, "Automatic" },
248 { INTEL_BROADCAST_RGB_FULL, "Full" },
249 { INTEL_BROADCAST_RGB_LIMITED, "Limited 16:235" },
253 intel_attach_broadcast_rgb_property(struct drm_connector *connector)
255 struct drm_device *dev = connector->dev;
256 struct drm_i915_private *dev_priv = to_i915(dev);
257 struct drm_property *prop;
259 prop = dev_priv->broadcast_rgb_property;
261 prop = drm_property_create_enum(dev, DRM_MODE_PROP_ENUM,
264 ARRAY_SIZE(broadcast_rgb_names));
268 dev_priv->broadcast_rgb_property = prop;
271 drm_object_attach_property(&connector->base, prop, 0);
275 intel_attach_aspect_ratio_property(struct drm_connector *connector)
277 if (!drm_mode_create_aspect_ratio_property(connector->dev))
278 drm_object_attach_property(&connector->base,
279 connector->dev->mode_config.aspect_ratio_property,
280 DRM_MODE_PICTURE_ASPECT_NONE);
284 intel_attach_hdmi_colorspace_property(struct drm_connector *connector)
286 if (!drm_mode_create_hdmi_colorspace_property(connector))
287 drm_connector_attach_colorspace_property(connector);
291 intel_attach_dp_colorspace_property(struct drm_connector *connector)
293 if (!drm_mode_create_dp_colorspace_property(connector))
294 drm_connector_attach_colorspace_property(connector);