Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Intel Corporation |
| 3 | * |
| 4 | * Permission to use, copy, modify, distribute, and sell this software and its |
| 5 | * documentation for any purpose is hereby granted without fee, provided that |
| 6 | * the above copyright notice appear in all copies and that both that copyright |
| 7 | * notice and this permission notice appear in supporting documentation, and |
| 8 | * that the name of the copyright holders not be used in advertising or |
| 9 | * publicity pertaining to distribution of the software without specific, |
| 10 | * written prior permission. The copyright holders make no representations |
| 11 | * about the suitability of this software for any purpose. It is provided "as |
| 12 | * is" without express or implied warranty. |
| 13 | * |
| 14 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 15 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO |
| 16 | * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR |
| 17 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
| 18 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 19 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE |
| 20 | * OF THIS SOFTWARE. |
| 21 | */ |
| 22 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 23 | #include <drm/drm_connector.h> |
| 24 | #include <drm/drm_edid.h> |
Laurent Pinchart | 9338203 | 2016-11-28 20:51:09 +0200 | [diff] [blame] | 25 | #include <drm/drm_encoder.h> |
Hans de Goede | 8d70f39 | 2017-11-25 20:35:49 +0100 | [diff] [blame] | 26 | #include <drm/drm_utils.h> |
Daniel Vetter | 99f45e3 | 2018-09-05 15:57:06 +0200 | [diff] [blame] | 27 | #include <drm/drm_print.h> |
| 28 | #include <drm/drm_drv.h> |
| 29 | #include <drm/drm_file.h> |
| 30 | |
| 31 | #include <linux/uaccess.h> |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 32 | |
| 33 | #include "drm_crtc_internal.h" |
| 34 | #include "drm_internal.h" |
| 35 | |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 36 | /** |
| 37 | * DOC: overview |
| 38 | * |
| 39 | * In DRM connectors are the general abstraction for display sinks, and include |
| 40 | * als fixed panels or anything else that can display pixels in some form. As |
| 41 | * opposed to all other KMS objects representing hardware (like CRTC, encoder or |
| 42 | * plane abstractions) connectors can be hotplugged and unplugged at runtime. |
Thierry Reding | ad09360 | 2017-02-28 15:46:39 +0100 | [diff] [blame] | 43 | * Hence they are reference-counted using drm_connector_get() and |
| 44 | * drm_connector_put(). |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 45 | * |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 46 | * KMS driver must create, initialize, register and attach at a &struct |
| 47 | * drm_connector for each such sink. The instance is created as other KMS |
Daniel Vetter | aec9746 | 2017-01-25 07:26:48 +0100 | [diff] [blame] | 48 | * objects and initialized by setting the following fields. The connector is |
| 49 | * initialized with a call to drm_connector_init() with a pointer to the |
| 50 | * &struct drm_connector_funcs and a connector type, and then exposed to |
| 51 | * userspace with a call to drm_connector_register(). |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 52 | * |
| 53 | * Connectors must be attached to an encoder to be used. For devices that map |
| 54 | * connectors to encoders 1:1, the connector should be attached at |
Daniel Vetter | cde4c44 | 2018-07-09 10:40:07 +0200 | [diff] [blame] | 55 | * initialization time with a call to drm_connector_attach_encoder(). The |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 56 | * driver must also set the &drm_connector.encoder field to point to the |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 57 | * attached encoder. |
| 58 | * |
| 59 | * For connectors which are not fixed (like built-in panels) the driver needs to |
| 60 | * support hotplug notifications. The simplest way to do that is by using the |
| 61 | * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have |
| 62 | * hardware support for hotplug interrupts. Connectors with hardware hotplug |
| 63 | * support can instead use e.g. drm_helper_hpd_irq_event(). |
| 64 | */ |
| 65 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 66 | struct drm_conn_prop_enum_list { |
| 67 | int type; |
| 68 | const char *name; |
| 69 | struct ida ida; |
| 70 | }; |
| 71 | |
| 72 | /* |
| 73 | * Connector and encoder types. |
| 74 | */ |
| 75 | static struct drm_conn_prop_enum_list drm_connector_enum_list[] = { |
| 76 | { DRM_MODE_CONNECTOR_Unknown, "Unknown" }, |
| 77 | { DRM_MODE_CONNECTOR_VGA, "VGA" }, |
| 78 | { DRM_MODE_CONNECTOR_DVII, "DVI-I" }, |
| 79 | { DRM_MODE_CONNECTOR_DVID, "DVI-D" }, |
| 80 | { DRM_MODE_CONNECTOR_DVIA, "DVI-A" }, |
| 81 | { DRM_MODE_CONNECTOR_Composite, "Composite" }, |
| 82 | { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" }, |
| 83 | { DRM_MODE_CONNECTOR_LVDS, "LVDS" }, |
| 84 | { DRM_MODE_CONNECTOR_Component, "Component" }, |
| 85 | { DRM_MODE_CONNECTOR_9PinDIN, "DIN" }, |
| 86 | { DRM_MODE_CONNECTOR_DisplayPort, "DP" }, |
| 87 | { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" }, |
| 88 | { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" }, |
| 89 | { DRM_MODE_CONNECTOR_TV, "TV" }, |
| 90 | { DRM_MODE_CONNECTOR_eDP, "eDP" }, |
| 91 | { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" }, |
| 92 | { DRM_MODE_CONNECTOR_DSI, "DSI" }, |
| 93 | { DRM_MODE_CONNECTOR_DPI, "DPI" }, |
Brian Starkey | 935774c | 2017-03-29 17:42:32 +0100 | [diff] [blame] | 94 | { DRM_MODE_CONNECTOR_WRITEBACK, "Writeback" }, |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | void drm_connector_ida_init(void) |
| 98 | { |
| 99 | int i; |
| 100 | |
| 101 | for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) |
| 102 | ida_init(&drm_connector_enum_list[i].ida); |
| 103 | } |
| 104 | |
| 105 | void drm_connector_ida_destroy(void) |
| 106 | { |
| 107 | int i; |
| 108 | |
| 109 | for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) |
| 110 | ida_destroy(&drm_connector_enum_list[i].ida); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * drm_connector_get_cmdline_mode - reads the user's cmdline mode |
| 115 | * @connector: connector to quwery |
| 116 | * |
Daniel Vetter | ae2a6da | 2016-08-12 22:48:53 +0200 | [diff] [blame] | 117 | * The kernel supports per-connector configuration of its consoles through |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 118 | * use of the video= parameter. This function parses that option and |
| 119 | * extracts the user's specified mode (or enable/disable status) for a |
| 120 | * particular connector. This is typically only used during the early fbdev |
| 121 | * setup. |
| 122 | */ |
| 123 | static void drm_connector_get_cmdline_mode(struct drm_connector *connector) |
| 124 | { |
| 125 | struct drm_cmdline_mode *mode = &connector->cmdline_mode; |
| 126 | char *option = NULL; |
| 127 | |
| 128 | if (fb_get_options(connector->name, &option)) |
| 129 | return; |
| 130 | |
| 131 | if (!drm_mode_parse_command_line_for_connector(option, |
| 132 | connector, |
| 133 | mode)) |
| 134 | return; |
| 135 | |
| 136 | if (mode->force) { |
Jani Nikula | 6140cf2 | 2017-02-20 10:51:48 +0200 | [diff] [blame] | 137 | DRM_INFO("forcing %s connector %s\n", connector->name, |
| 138 | drm_get_connector_force_name(mode->force)); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 139 | connector->force = mode->force; |
| 140 | } |
| 141 | |
| 142 | DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n", |
| 143 | connector->name, |
| 144 | mode->xres, mode->yres, |
| 145 | mode->refresh_specified ? mode->refresh : 60, |
| 146 | mode->rb ? " reduced blanking" : "", |
| 147 | mode->margins ? " with margins" : "", |
| 148 | mode->interlace ? " interlaced" : ""); |
| 149 | } |
| 150 | |
| 151 | static void drm_connector_free(struct kref *kref) |
| 152 | { |
| 153 | struct drm_connector *connector = |
| 154 | container_of(kref, struct drm_connector, base.refcount); |
| 155 | struct drm_device *dev = connector->dev; |
| 156 | |
| 157 | drm_mode_object_unregister(dev, &connector->base); |
| 158 | connector->funcs->destroy(connector); |
| 159 | } |
| 160 | |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 161 | void drm_connector_free_work_fn(struct work_struct *work) |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 162 | { |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 163 | struct drm_connector *connector, *n; |
| 164 | struct drm_device *dev = |
| 165 | container_of(work, struct drm_device, mode_config.connector_free_work); |
| 166 | struct drm_mode_config *config = &dev->mode_config; |
| 167 | unsigned long flags; |
| 168 | struct llist_node *freed; |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 169 | |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 170 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 171 | freed = llist_del_all(&config->connector_free_list); |
| 172 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
| 173 | |
| 174 | llist_for_each_entry_safe(connector, n, freed, free_node) { |
| 175 | drm_mode_object_unregister(dev, &connector->base); |
| 176 | connector->funcs->destroy(connector); |
| 177 | } |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 178 | } |
| 179 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 180 | /** |
| 181 | * drm_connector_init - Init a preallocated connector |
| 182 | * @dev: DRM device |
| 183 | * @connector: the connector to init |
| 184 | * @funcs: callbacks for this connector |
| 185 | * @connector_type: user visible type of the connector |
| 186 | * |
| 187 | * Initialises a preallocated connector. Connectors should be |
| 188 | * subclassed as part of driver connector objects. |
| 189 | * |
| 190 | * Returns: |
| 191 | * Zero on success, error code on failure. |
| 192 | */ |
| 193 | int drm_connector_init(struct drm_device *dev, |
| 194 | struct drm_connector *connector, |
| 195 | const struct drm_connector_funcs *funcs, |
| 196 | int connector_type) |
| 197 | { |
| 198 | struct drm_mode_config *config = &dev->mode_config; |
| 199 | int ret; |
| 200 | struct ida *connector_ida = |
| 201 | &drm_connector_enum_list[connector_type].ida; |
| 202 | |
Haneen Mohammed | ba1f665 | 2018-05-25 04:25:55 +0300 | [diff] [blame] | 203 | WARN_ON(drm_drv_uses_atomic_modeset(dev) && |
| 204 | (!funcs->atomic_destroy_state || |
| 205 | !funcs->atomic_duplicate_state)); |
| 206 | |
Thierry Reding | 2135ea7 | 2017-02-28 15:46:37 +0100 | [diff] [blame] | 207 | ret = __drm_mode_object_add(dev, &connector->base, |
| 208 | DRM_MODE_OBJECT_CONNECTOR, |
| 209 | false, drm_connector_free); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 210 | if (ret) |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 211 | return ret; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 212 | |
| 213 | connector->base.properties = &connector->properties; |
| 214 | connector->dev = dev; |
| 215 | connector->funcs = funcs; |
| 216 | |
Ville Syrjälä | 2a8d3ea | 2018-01-25 15:30:20 +0200 | [diff] [blame] | 217 | /* connector index is used with 32bit bitmasks */ |
| 218 | ret = ida_simple_get(&config->connector_ida, 0, 32, GFP_KERNEL); |
| 219 | if (ret < 0) { |
| 220 | DRM_DEBUG_KMS("Failed to allocate %s connector index: %d\n", |
| 221 | drm_connector_enum_list[connector_type].name, |
| 222 | ret); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 223 | goto out_put; |
Ville Syrjälä | 2a8d3ea | 2018-01-25 15:30:20 +0200 | [diff] [blame] | 224 | } |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 225 | connector->index = ret; |
| 226 | ret = 0; |
| 227 | |
| 228 | connector->connector_type = connector_type; |
| 229 | connector->connector_type_id = |
| 230 | ida_simple_get(connector_ida, 1, 0, GFP_KERNEL); |
| 231 | if (connector->connector_type_id < 0) { |
| 232 | ret = connector->connector_type_id; |
| 233 | goto out_put_id; |
| 234 | } |
| 235 | connector->name = |
| 236 | kasprintf(GFP_KERNEL, "%s-%d", |
| 237 | drm_connector_enum_list[connector_type].name, |
| 238 | connector->connector_type_id); |
| 239 | if (!connector->name) { |
| 240 | ret = -ENOMEM; |
| 241 | goto out_put_type_id; |
| 242 | } |
| 243 | |
| 244 | INIT_LIST_HEAD(&connector->probed_modes); |
| 245 | INIT_LIST_HEAD(&connector->modes); |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 246 | mutex_init(&connector->mutex); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 247 | connector->edid_blob_ptr = NULL; |
| 248 | connector->status = connector_status_unknown; |
Hans de Goede | 8d70f39 | 2017-11-25 20:35:49 +0100 | [diff] [blame] | 249 | connector->display_info.panel_orientation = |
| 250 | DRM_MODE_PANEL_ORIENTATION_UNKNOWN; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 251 | |
| 252 | drm_connector_get_cmdline_mode(connector); |
| 253 | |
| 254 | /* We should add connectors at the end to avoid upsetting the connector |
| 255 | * index too much. */ |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 256 | spin_lock_irq(&config->connector_list_lock); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 257 | list_add_tail(&connector->head, &config->connector_list); |
| 258 | config->num_connector++; |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 259 | spin_unlock_irq(&config->connector_list_lock); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 260 | |
Brian Starkey | 935774c | 2017-03-29 17:42:32 +0100 | [diff] [blame] | 261 | if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL && |
| 262 | connector_type != DRM_MODE_CONNECTOR_WRITEBACK) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 263 | drm_object_attach_property(&connector->base, |
| 264 | config->edid_property, |
| 265 | 0); |
| 266 | |
| 267 | drm_object_attach_property(&connector->base, |
| 268 | config->dpms_property, 0); |
| 269 | |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 270 | drm_object_attach_property(&connector->base, |
| 271 | config->link_status_property, |
| 272 | 0); |
| 273 | |
Dave Airlie | 66660d4 | 2017-10-16 05:08:09 +0100 | [diff] [blame] | 274 | drm_object_attach_property(&connector->base, |
| 275 | config->non_desktop_property, |
| 276 | 0); |
| 277 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 278 | if (drm_core_check_feature(dev, DRIVER_ATOMIC)) { |
| 279 | drm_object_attach_property(&connector->base, config->prop_crtc_id, 0); |
| 280 | } |
| 281 | |
| 282 | connector->debugfs_entry = NULL; |
| 283 | out_put_type_id: |
| 284 | if (ret) |
Christophe JAILLET | 587680c | 2016-10-02 08:01:22 +0200 | [diff] [blame] | 285 | ida_simple_remove(connector_ida, connector->connector_type_id); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 286 | out_put_id: |
| 287 | if (ret) |
Christophe JAILLET | 587680c | 2016-10-02 08:01:22 +0200 | [diff] [blame] | 288 | ida_simple_remove(&config->connector_ida, connector->index); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 289 | out_put: |
| 290 | if (ret) |
| 291 | drm_mode_object_unregister(dev, &connector->base); |
| 292 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 293 | return ret; |
| 294 | } |
| 295 | EXPORT_SYMBOL(drm_connector_init); |
| 296 | |
| 297 | /** |
Daniel Vetter | cde4c44 | 2018-07-09 10:40:07 +0200 | [diff] [blame] | 298 | * drm_connector_attach_encoder - attach a connector to an encoder |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 299 | * @connector: connector to attach |
| 300 | * @encoder: encoder to attach @connector to |
| 301 | * |
| 302 | * This function links up a connector to an encoder. Note that the routing |
| 303 | * restrictions between encoders and crtcs are exposed to userspace through the |
| 304 | * possible_clones and possible_crtcs bitmasks. |
| 305 | * |
| 306 | * Returns: |
| 307 | * Zero on success, negative errno on failure. |
| 308 | */ |
Daniel Vetter | cde4c44 | 2018-07-09 10:40:07 +0200 | [diff] [blame] | 309 | int drm_connector_attach_encoder(struct drm_connector *connector, |
| 310 | struct drm_encoder *encoder) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 311 | { |
| 312 | int i; |
| 313 | |
| 314 | /* |
| 315 | * In the past, drivers have attempted to model the static association |
| 316 | * of connector to encoder in simple connector/encoder devices using a |
| 317 | * direct assignment of connector->encoder = encoder. This connection |
| 318 | * is a logical one and the responsibility of the core, so drivers are |
| 319 | * expected not to mess with this. |
| 320 | * |
| 321 | * Note that the error return should've been enough here, but a large |
| 322 | * majority of drivers ignores the return value, so add in a big WARN |
| 323 | * to get people's attention. |
| 324 | */ |
| 325 | if (WARN_ON(connector->encoder)) |
| 326 | return -EINVAL; |
| 327 | |
Ville Syrjälä | 83aefbb | 2018-06-28 16:13:09 +0300 | [diff] [blame] | 328 | for (i = 0; i < ARRAY_SIZE(connector->encoder_ids); i++) { |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 329 | if (connector->encoder_ids[i] == 0) { |
| 330 | connector->encoder_ids[i] = encoder->base.id; |
| 331 | return 0; |
| 332 | } |
| 333 | } |
| 334 | return -ENOMEM; |
| 335 | } |
Daniel Vetter | cde4c44 | 2018-07-09 10:40:07 +0200 | [diff] [blame] | 336 | EXPORT_SYMBOL(drm_connector_attach_encoder); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 337 | |
Ville Syrjälä | 38cb8d9 | 2018-06-28 16:13:13 +0300 | [diff] [blame] | 338 | /** |
| 339 | * drm_connector_has_possible_encoder - check if the connector and encoder are assosicated with each other |
| 340 | * @connector: the connector |
| 341 | * @encoder: the encoder |
| 342 | * |
| 343 | * Returns: |
| 344 | * True if @encoder is one of the possible encoders for @connector. |
| 345 | */ |
| 346 | bool drm_connector_has_possible_encoder(struct drm_connector *connector, |
| 347 | struct drm_encoder *encoder) |
| 348 | { |
| 349 | struct drm_encoder *enc; |
| 350 | int i; |
| 351 | |
| 352 | drm_connector_for_each_possible_encoder(connector, enc, i) { |
| 353 | if (enc == encoder) |
| 354 | return true; |
| 355 | } |
| 356 | |
| 357 | return false; |
| 358 | } |
| 359 | EXPORT_SYMBOL(drm_connector_has_possible_encoder); |
| 360 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 361 | static void drm_mode_remove(struct drm_connector *connector, |
| 362 | struct drm_display_mode *mode) |
| 363 | { |
| 364 | list_del(&mode->head); |
| 365 | drm_mode_destroy(connector->dev, mode); |
| 366 | } |
| 367 | |
| 368 | /** |
| 369 | * drm_connector_cleanup - cleans up an initialised connector |
| 370 | * @connector: connector to cleanup |
| 371 | * |
| 372 | * Cleans up the connector but doesn't free the object. |
| 373 | */ |
| 374 | void drm_connector_cleanup(struct drm_connector *connector) |
| 375 | { |
| 376 | struct drm_device *dev = connector->dev; |
| 377 | struct drm_display_mode *mode, *t; |
| 378 | |
| 379 | /* The connector should have been removed from userspace long before |
| 380 | * it is finally destroyed. |
| 381 | */ |
Lyude Paul | de9f8ee | 2018-10-16 16:39:46 -0400 | [diff] [blame] | 382 | if (WARN_ON(connector->registration_state == |
| 383 | DRM_CONNECTOR_REGISTERED)) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 384 | drm_connector_unregister(connector); |
| 385 | |
| 386 | if (connector->tile_group) { |
| 387 | drm_mode_put_tile_group(dev, connector->tile_group); |
| 388 | connector->tile_group = NULL; |
| 389 | } |
| 390 | |
| 391 | list_for_each_entry_safe(mode, t, &connector->probed_modes, head) |
| 392 | drm_mode_remove(connector, mode); |
| 393 | |
| 394 | list_for_each_entry_safe(mode, t, &connector->modes, head) |
| 395 | drm_mode_remove(connector, mode); |
| 396 | |
Christophe JAILLET | 9a47dba | 2016-10-07 09:27:41 +0200 | [diff] [blame] | 397 | ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida, |
| 398 | connector->connector_type_id); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 399 | |
Christophe JAILLET | 9a47dba | 2016-10-07 09:27:41 +0200 | [diff] [blame] | 400 | ida_simple_remove(&dev->mode_config.connector_ida, |
| 401 | connector->index); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 402 | |
| 403 | kfree(connector->display_info.bus_formats); |
| 404 | drm_mode_object_unregister(dev, &connector->base); |
| 405 | kfree(connector->name); |
| 406 | connector->name = NULL; |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 407 | spin_lock_irq(&dev->mode_config.connector_list_lock); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 408 | list_del(&connector->head); |
| 409 | dev->mode_config.num_connector--; |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 410 | spin_unlock_irq(&dev->mode_config.connector_list_lock); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 411 | |
| 412 | WARN_ON(connector->state && !connector->funcs->atomic_destroy_state); |
| 413 | if (connector->state && connector->funcs->atomic_destroy_state) |
| 414 | connector->funcs->atomic_destroy_state(connector, |
| 415 | connector->state); |
| 416 | |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 417 | mutex_destroy(&connector->mutex); |
| 418 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 419 | memset(connector, 0, sizeof(*connector)); |
| 420 | } |
| 421 | EXPORT_SYMBOL(drm_connector_cleanup); |
| 422 | |
| 423 | /** |
| 424 | * drm_connector_register - register a connector |
| 425 | * @connector: the connector to register |
| 426 | * |
| 427 | * Register userspace interfaces for a connector |
| 428 | * |
| 429 | * Returns: |
| 430 | * Zero on success, error code on failure. |
| 431 | */ |
| 432 | int drm_connector_register(struct drm_connector *connector) |
| 433 | { |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 434 | int ret = 0; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 435 | |
Daniel Vetter | e6e7b48 | 2017-01-12 17:15:56 +0100 | [diff] [blame] | 436 | if (!connector->dev->registered) |
| 437 | return 0; |
| 438 | |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 439 | mutex_lock(&connector->mutex); |
Lyude Paul | de9f8ee | 2018-10-16 16:39:46 -0400 | [diff] [blame] | 440 | if (connector->registration_state != DRM_CONNECTOR_INITIALIZING) |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 441 | goto unlock; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 442 | |
| 443 | ret = drm_sysfs_connector_add(connector); |
| 444 | if (ret) |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 445 | goto unlock; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 446 | |
| 447 | ret = drm_debugfs_connector_add(connector); |
| 448 | if (ret) { |
| 449 | goto err_sysfs; |
| 450 | } |
| 451 | |
| 452 | if (connector->funcs->late_register) { |
| 453 | ret = connector->funcs->late_register(connector); |
| 454 | if (ret) |
| 455 | goto err_debugfs; |
| 456 | } |
| 457 | |
| 458 | drm_mode_object_register(connector->dev, &connector->base); |
| 459 | |
Lyude Paul | de9f8ee | 2018-10-16 16:39:46 -0400 | [diff] [blame] | 460 | connector->registration_state = DRM_CONNECTOR_REGISTERED; |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 461 | goto unlock; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 462 | |
| 463 | err_debugfs: |
| 464 | drm_debugfs_connector_remove(connector); |
| 465 | err_sysfs: |
| 466 | drm_sysfs_connector_remove(connector); |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 467 | unlock: |
| 468 | mutex_unlock(&connector->mutex); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 469 | return ret; |
| 470 | } |
| 471 | EXPORT_SYMBOL(drm_connector_register); |
| 472 | |
| 473 | /** |
| 474 | * drm_connector_unregister - unregister a connector |
| 475 | * @connector: the connector to unregister |
| 476 | * |
| 477 | * Unregister userspace interfaces for a connector |
| 478 | */ |
| 479 | void drm_connector_unregister(struct drm_connector *connector) |
| 480 | { |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 481 | mutex_lock(&connector->mutex); |
Lyude Paul | de9f8ee | 2018-10-16 16:39:46 -0400 | [diff] [blame] | 482 | if (connector->registration_state != DRM_CONNECTOR_REGISTERED) { |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 483 | mutex_unlock(&connector->mutex); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 484 | return; |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 485 | } |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 486 | |
| 487 | if (connector->funcs->early_unregister) |
| 488 | connector->funcs->early_unregister(connector); |
| 489 | |
| 490 | drm_sysfs_connector_remove(connector); |
| 491 | drm_debugfs_connector_remove(connector); |
| 492 | |
Lyude Paul | de9f8ee | 2018-10-16 16:39:46 -0400 | [diff] [blame] | 493 | connector->registration_state = DRM_CONNECTOR_UNREGISTERED; |
Daniel Vetter | e73ab00 | 2016-12-18 14:35:45 +0100 | [diff] [blame] | 494 | mutex_unlock(&connector->mutex); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 495 | } |
| 496 | EXPORT_SYMBOL(drm_connector_unregister); |
| 497 | |
| 498 | void drm_connector_unregister_all(struct drm_device *dev) |
| 499 | { |
| 500 | struct drm_connector *connector; |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 501 | struct drm_connector_list_iter conn_iter; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 502 | |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 503 | drm_connector_list_iter_begin(dev, &conn_iter); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 504 | drm_for_each_connector_iter(connector, &conn_iter) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 505 | drm_connector_unregister(connector); |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 506 | drm_connector_list_iter_end(&conn_iter); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | int drm_connector_register_all(struct drm_device *dev) |
| 510 | { |
| 511 | struct drm_connector *connector; |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 512 | struct drm_connector_list_iter conn_iter; |
| 513 | int ret = 0; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 514 | |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 515 | drm_connector_list_iter_begin(dev, &conn_iter); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 516 | drm_for_each_connector_iter(connector, &conn_iter) { |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 517 | ret = drm_connector_register(connector); |
| 518 | if (ret) |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 519 | break; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 520 | } |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 521 | drm_connector_list_iter_end(&conn_iter); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 522 | |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 523 | if (ret) |
| 524 | drm_connector_unregister_all(dev); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 525 | return ret; |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * drm_get_connector_status_name - return a string for connector status |
| 530 | * @status: connector status to compute name of |
| 531 | * |
| 532 | * In contrast to the other drm_get_*_name functions this one here returns a |
| 533 | * const pointer and hence is threadsafe. |
| 534 | */ |
| 535 | const char *drm_get_connector_status_name(enum drm_connector_status status) |
| 536 | { |
| 537 | if (status == connector_status_connected) |
| 538 | return "connected"; |
| 539 | else if (status == connector_status_disconnected) |
| 540 | return "disconnected"; |
| 541 | else |
| 542 | return "unknown"; |
| 543 | } |
| 544 | EXPORT_SYMBOL(drm_get_connector_status_name); |
| 545 | |
Jani Nikula | 6140cf2 | 2017-02-20 10:51:48 +0200 | [diff] [blame] | 546 | /** |
| 547 | * drm_get_connector_force_name - return a string for connector force |
| 548 | * @force: connector force to get name of |
| 549 | * |
| 550 | * Returns: const pointer to name. |
| 551 | */ |
| 552 | const char *drm_get_connector_force_name(enum drm_connector_force force) |
| 553 | { |
| 554 | switch (force) { |
| 555 | case DRM_FORCE_UNSPECIFIED: |
| 556 | return "unspecified"; |
| 557 | case DRM_FORCE_OFF: |
| 558 | return "off"; |
| 559 | case DRM_FORCE_ON: |
| 560 | return "on"; |
| 561 | case DRM_FORCE_ON_DIGITAL: |
| 562 | return "digital"; |
| 563 | default: |
| 564 | return "unknown"; |
| 565 | } |
| 566 | } |
| 567 | |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 568 | #ifdef CONFIG_LOCKDEP |
| 569 | static struct lockdep_map connector_list_iter_dep_map = { |
| 570 | .name = "drm_connector_list_iter" |
| 571 | }; |
| 572 | #endif |
| 573 | |
| 574 | /** |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 575 | * drm_connector_list_iter_begin - initialize a connector_list iterator |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 576 | * @dev: DRM device |
| 577 | * @iter: connector_list iterator |
| 578 | * |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 579 | * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 580 | * must always be cleaned up again by calling drm_connector_list_iter_end(). |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 581 | * Iteration itself happens using drm_connector_list_iter_next() or |
| 582 | * drm_for_each_connector_iter(). |
| 583 | */ |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 584 | void drm_connector_list_iter_begin(struct drm_device *dev, |
| 585 | struct drm_connector_list_iter *iter) |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 586 | { |
| 587 | iter->dev = dev; |
| 588 | iter->conn = NULL; |
| 589 | lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_); |
| 590 | } |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 591 | EXPORT_SYMBOL(drm_connector_list_iter_begin); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 592 | |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 593 | /* |
| 594 | * Extra-safe connector put function that works in any context. Should only be |
| 595 | * used from the connector_iter functions, where we never really expect to |
| 596 | * actually release the connector when dropping our final reference. |
| 597 | */ |
| 598 | static void |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 599 | __drm_connector_put_safe(struct drm_connector *conn) |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 600 | { |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 601 | struct drm_mode_config *config = &conn->dev->mode_config; |
| 602 | |
| 603 | lockdep_assert_held(&config->connector_list_lock); |
| 604 | |
| 605 | if (!refcount_dec_and_test(&conn->base.refcount.refcount)) |
| 606 | return; |
| 607 | |
| 608 | llist_add(&conn->free_node, &config->connector_free_list); |
| 609 | schedule_work(&config->connector_free_work); |
Daniel Vetter | a703c55 | 2017-12-04 21:48:18 +0100 | [diff] [blame] | 610 | } |
| 611 | |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 612 | /** |
| 613 | * drm_connector_list_iter_next - return next connector |
Lyude Paul | 4f45c77 | 2018-07-16 13:17:11 -0400 | [diff] [blame] | 614 | * @iter: connector_list iterator |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 615 | * |
| 616 | * Returns the next connector for @iter, or NULL when the list walk has |
| 617 | * completed. |
| 618 | */ |
| 619 | struct drm_connector * |
| 620 | drm_connector_list_iter_next(struct drm_connector_list_iter *iter) |
| 621 | { |
| 622 | struct drm_connector *old_conn = iter->conn; |
| 623 | struct drm_mode_config *config = &iter->dev->mode_config; |
| 624 | struct list_head *lhead; |
| 625 | unsigned long flags; |
| 626 | |
| 627 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 628 | lhead = old_conn ? &old_conn->head : &config->connector_list; |
| 629 | |
| 630 | do { |
| 631 | if (lhead->next == &config->connector_list) { |
| 632 | iter->conn = NULL; |
| 633 | break; |
| 634 | } |
| 635 | |
| 636 | lhead = lhead->next; |
| 637 | iter->conn = list_entry(lhead, struct drm_connector, head); |
| 638 | |
| 639 | /* loop until it's not a zombie connector */ |
| 640 | } while (!kref_get_unless_zero(&iter->conn->base.refcount)); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 641 | |
| 642 | if (old_conn) |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 643 | __drm_connector_put_safe(old_conn); |
| 644 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 645 | |
| 646 | return iter->conn; |
| 647 | } |
| 648 | EXPORT_SYMBOL(drm_connector_list_iter_next); |
| 649 | |
| 650 | /** |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 651 | * drm_connector_list_iter_end - tear down a connector_list iterator |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 652 | * @iter: connector_list iterator |
| 653 | * |
| 654 | * Tears down @iter and releases any resources (like &drm_connector references) |
| 655 | * acquired while walking the list. This must always be called, both when the |
| 656 | * iteration completes fully or when it was aborted without walking the entire |
| 657 | * list. |
| 658 | */ |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 659 | void drm_connector_list_iter_end(struct drm_connector_list_iter *iter) |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 660 | { |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 661 | struct drm_mode_config *config = &iter->dev->mode_config; |
| 662 | unsigned long flags; |
| 663 | |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 664 | iter->dev = NULL; |
Daniel Vetter | ea497bb | 2017-12-13 13:49:36 +0100 | [diff] [blame] | 665 | if (iter->conn) { |
| 666 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 667 | __drm_connector_put_safe(iter->conn); |
| 668 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
| 669 | } |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 670 | lock_release(&connector_list_iter_dep_map, 0, _RET_IP_); |
| 671 | } |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 672 | EXPORT_SYMBOL(drm_connector_list_iter_end); |
Daniel Vetter | 613051d | 2016-12-14 00:08:06 +0100 | [diff] [blame] | 673 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 674 | static const struct drm_prop_enum_list drm_subpixel_enum_list[] = { |
| 675 | { SubPixelUnknown, "Unknown" }, |
| 676 | { SubPixelHorizontalRGB, "Horizontal RGB" }, |
| 677 | { SubPixelHorizontalBGR, "Horizontal BGR" }, |
| 678 | { SubPixelVerticalRGB, "Vertical RGB" }, |
| 679 | { SubPixelVerticalBGR, "Vertical BGR" }, |
| 680 | { SubPixelNone, "None" }, |
| 681 | }; |
| 682 | |
| 683 | /** |
| 684 | * drm_get_subpixel_order_name - return a string for a given subpixel enum |
| 685 | * @order: enum of subpixel_order |
| 686 | * |
| 687 | * Note you could abuse this and return something out of bounds, but that |
| 688 | * would be a caller error. No unscrubbed user data should make it here. |
| 689 | */ |
| 690 | const char *drm_get_subpixel_order_name(enum subpixel_order order) |
| 691 | { |
| 692 | return drm_subpixel_enum_list[order].name; |
| 693 | } |
| 694 | EXPORT_SYMBOL(drm_get_subpixel_order_name); |
| 695 | |
| 696 | static const struct drm_prop_enum_list drm_dpms_enum_list[] = { |
| 697 | { DRM_MODE_DPMS_ON, "On" }, |
| 698 | { DRM_MODE_DPMS_STANDBY, "Standby" }, |
| 699 | { DRM_MODE_DPMS_SUSPEND, "Suspend" }, |
| 700 | { DRM_MODE_DPMS_OFF, "Off" } |
| 701 | }; |
| 702 | DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list) |
| 703 | |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 704 | static const struct drm_prop_enum_list drm_link_status_enum_list[] = { |
| 705 | { DRM_MODE_LINK_STATUS_GOOD, "Good" }, |
| 706 | { DRM_MODE_LINK_STATUS_BAD, "Bad" }, |
| 707 | }; |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 708 | |
Daniel Vetter | b3c6c8b | 2016-08-12 22:48:55 +0200 | [diff] [blame] | 709 | /** |
| 710 | * drm_display_info_set_bus_formats - set the supported bus formats |
| 711 | * @info: display info to store bus formats in |
| 712 | * @formats: array containing the supported bus formats |
| 713 | * @num_formats: the number of entries in the fmts array |
| 714 | * |
| 715 | * Store the supported bus formats in display info structure. |
| 716 | * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for |
| 717 | * a full list of available formats. |
| 718 | */ |
| 719 | int drm_display_info_set_bus_formats(struct drm_display_info *info, |
| 720 | const u32 *formats, |
| 721 | unsigned int num_formats) |
| 722 | { |
| 723 | u32 *fmts = NULL; |
| 724 | |
| 725 | if (!formats && num_formats) |
| 726 | return -EINVAL; |
| 727 | |
| 728 | if (formats && num_formats) { |
| 729 | fmts = kmemdup(formats, sizeof(*formats) * num_formats, |
| 730 | GFP_KERNEL); |
| 731 | if (!fmts) |
| 732 | return -ENOMEM; |
| 733 | } |
| 734 | |
| 735 | kfree(info->bus_formats); |
| 736 | info->bus_formats = fmts; |
| 737 | info->num_bus_formats = num_formats; |
| 738 | |
| 739 | return 0; |
| 740 | } |
| 741 | EXPORT_SYMBOL(drm_display_info_set_bus_formats); |
| 742 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 743 | /* Optional connector properties. */ |
| 744 | static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = { |
| 745 | { DRM_MODE_SCALE_NONE, "None" }, |
| 746 | { DRM_MODE_SCALE_FULLSCREEN, "Full" }, |
| 747 | { DRM_MODE_SCALE_CENTER, "Center" }, |
| 748 | { DRM_MODE_SCALE_ASPECT, "Full aspect" }, |
| 749 | }; |
| 750 | |
| 751 | static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = { |
| 752 | { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" }, |
| 753 | { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" }, |
| 754 | { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" }, |
| 755 | }; |
| 756 | |
Stanislav Lisovskiy | 50525c3 | 2018-05-15 16:59:27 +0300 | [diff] [blame] | 757 | static const struct drm_prop_enum_list drm_content_type_enum_list[] = { |
| 758 | { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" }, |
| 759 | { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" }, |
| 760 | { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" }, |
| 761 | { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" }, |
| 762 | { DRM_MODE_CONTENT_TYPE_GAME, "Game" }, |
| 763 | }; |
| 764 | |
Hans de Goede | 8d70f39 | 2017-11-25 20:35:49 +0100 | [diff] [blame] | 765 | static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = { |
| 766 | { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" }, |
| 767 | { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" }, |
| 768 | { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" }, |
| 769 | { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" }, |
| 770 | }; |
| 771 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 772 | static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = { |
| 773 | { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ |
| 774 | { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ |
| 775 | { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ |
| 776 | }; |
| 777 | DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list) |
| 778 | |
| 779 | static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = { |
| 780 | { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ |
| 781 | { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ |
| 782 | { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ |
| 783 | }; |
| 784 | DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name, |
| 785 | drm_dvi_i_subconnector_enum_list) |
| 786 | |
| 787 | static const struct drm_prop_enum_list drm_tv_select_enum_list[] = { |
| 788 | { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ |
| 789 | { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ |
| 790 | { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ |
| 791 | { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ |
| 792 | { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ |
| 793 | }; |
| 794 | DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list) |
| 795 | |
| 796 | static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = { |
| 797 | { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ |
| 798 | { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ |
| 799 | { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ |
| 800 | { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ |
| 801 | { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ |
| 802 | }; |
| 803 | DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name, |
| 804 | drm_tv_subconnector_enum_list) |
| 805 | |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 806 | static struct drm_prop_enum_list drm_cp_enum_list[] = { |
| 807 | { DRM_MODE_CONTENT_PROTECTION_UNDESIRED, "Undesired" }, |
| 808 | { DRM_MODE_CONTENT_PROTECTION_DESIRED, "Desired" }, |
| 809 | { DRM_MODE_CONTENT_PROTECTION_ENABLED, "Enabled" }, |
| 810 | }; |
| 811 | DRM_ENUM_NAME_FN(drm_get_content_protection_name, drm_cp_enum_list) |
| 812 | |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 813 | /** |
| 814 | * DOC: standard connector properties |
| 815 | * |
| 816 | * DRM connectors have a few standardized properties: |
| 817 | * |
| 818 | * EDID: |
| 819 | * Blob property which contains the current EDID read from the sink. This |
| 820 | * is useful to parse sink identification information like vendor, model |
| 821 | * and serial. Drivers should update this property by calling |
Daniel Vetter | c555f02 | 2018-07-09 10:40:06 +0200 | [diff] [blame] | 822 | * drm_connector_update_edid_property(), usually after having parsed |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 823 | * the EDID using drm_add_edid_modes(). Userspace cannot change this |
| 824 | * property. |
| 825 | * DPMS: |
| 826 | * Legacy property for setting the power state of the connector. For atomic |
| 827 | * drivers this is only provided for backwards compatibility with existing |
| 828 | * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the |
| 829 | * connector is linked to. Drivers should never set this property directly, |
Daniel Vetter | d574528 | 2017-01-25 07:26:45 +0100 | [diff] [blame] | 830 | * it is handled by the DRM core by calling the &drm_connector_funcs.dpms |
Daniel Vetter | 144a799 | 2017-07-25 14:02:04 +0200 | [diff] [blame] | 831 | * callback. For atomic drivers the remapping to the "ACTIVE" property is |
| 832 | * implemented in the DRM core. This is the only standard connector |
| 833 | * property that userspace can change. |
Daniel Vetter | d0d1aee | 2017-09-21 00:59:57 +0200 | [diff] [blame] | 834 | * |
| 835 | * Note that this property cannot be set through the MODE_ATOMIC ioctl, |
| 836 | * userspace must use "ACTIVE" on the CRTC instead. |
| 837 | * |
| 838 | * WARNING: |
| 839 | * |
| 840 | * For userspace also running on legacy drivers the "DPMS" semantics are a |
| 841 | * lot more complicated. First, userspace cannot rely on the "DPMS" value |
| 842 | * returned by the GETCONNECTOR actually reflecting reality, because many |
| 843 | * drivers fail to update it. For atomic drivers this is taken care of in |
| 844 | * drm_atomic_helper_update_legacy_modeset_state(). |
| 845 | * |
| 846 | * The second issue is that the DPMS state is only well-defined when the |
| 847 | * connector is connected to a CRTC. In atomic the DRM core enforces that |
| 848 | * "ACTIVE" is off in such a case, no such checks exists for "DPMS". |
| 849 | * |
| 850 | * Finally, when enabling an output using the legacy SETCONFIG ioctl then |
| 851 | * "DPMS" is forced to ON. But see above, that might not be reflected in |
| 852 | * the software value on legacy drivers. |
| 853 | * |
| 854 | * Summarizing: Only set "DPMS" when the connector is known to be enabled, |
| 855 | * assume that a successful SETCONFIG call also sets "DPMS" to on, and |
| 856 | * never read back the value of "DPMS" because it can be incorrect. |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 857 | * PATH: |
| 858 | * Connector path property to identify how this sink is physically |
| 859 | * connected. Used by DP MST. This should be set by calling |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 860 | * drm_connector_set_path_property(), in the case of DP MST with the |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 861 | * path property the MST manager created. Userspace cannot change this |
| 862 | * property. |
| 863 | * TILE: |
| 864 | * Connector tile group property to indicate how a set of DRM connector |
| 865 | * compose together into one logical screen. This is used by both high-res |
| 866 | * external screens (often only using a single cable, but exposing multiple |
| 867 | * DP MST sinks), or high-res integrated panels (like dual-link DSI) which |
| 868 | * are not gen-locked. Note that for tiled panels which are genlocked, like |
| 869 | * dual-link LVDS or dual-link DSI, the driver should try to not expose the |
| 870 | * tiling and virtualize both &drm_crtc and &drm_plane if needed. Drivers |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 871 | * should update this value using drm_connector_set_tile_property(). |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 872 | * Userspace cannot change this property. |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 873 | * link-status: |
Sean Paul | 716719a | 2018-01-08 14:55:35 -0500 | [diff] [blame] | 874 | * Connector link-status property to indicate the status of link. The |
| 875 | * default value of link-status is "GOOD". If something fails during or |
| 876 | * after modeset, the kernel driver may set this to "BAD" and issue a |
| 877 | * hotplug uevent. Drivers should update this value using |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 878 | * drm_connector_set_link_status_property(). |
Dave Airlie | 66660d4 | 2017-10-16 05:08:09 +0100 | [diff] [blame] | 879 | * non_desktop: |
| 880 | * Indicates the output should be ignored for purposes of displaying a |
| 881 | * standard desktop environment or console. This is most likely because |
| 882 | * the output device is not rectilinear. |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 883 | * Content Protection: |
| 884 | * This property is used by userspace to request the kernel protect future |
| 885 | * content communicated over the link. When requested, kernel will apply |
| 886 | * the appropriate means of protection (most often HDCP), and use the |
| 887 | * property to tell userspace the protection is active. |
| 888 | * |
| 889 | * Drivers can set this up by calling |
| 890 | * drm_connector_attach_content_protection_property() on initialization. |
| 891 | * |
| 892 | * The value of this property can be one of the following: |
| 893 | * |
Daniel Vetter | bbeba09 | 2018-02-19 23:53:54 +0100 | [diff] [blame] | 894 | * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0 |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 895 | * The link is not protected, content is transmitted in the clear. |
Daniel Vetter | bbeba09 | 2018-02-19 23:53:54 +0100 | [diff] [blame] | 896 | * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1 |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 897 | * Userspace has requested content protection, but the link is not |
| 898 | * currently protected. When in this state, kernel should enable |
| 899 | * Content Protection as soon as possible. |
Daniel Vetter | bbeba09 | 2018-02-19 23:53:54 +0100 | [diff] [blame] | 900 | * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2 |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 901 | * Userspace has requested content protection, and the link is |
| 902 | * protected. Only the driver can set the property to this value. |
| 903 | * If userspace attempts to set to ENABLED, kernel will return |
| 904 | * -EINVAL. |
| 905 | * |
| 906 | * A few guidelines: |
| 907 | * |
| 908 | * - DESIRED state should be preserved until userspace de-asserts it by |
| 909 | * setting the property to UNDESIRED. This means ENABLED should only |
| 910 | * transition to UNDESIRED when the user explicitly requests it. |
| 911 | * - If the state is DESIRED, kernel should attempt to re-authenticate the |
| 912 | * link whenever possible. This includes across disable/enable, dpms, |
| 913 | * hotplug, downstream device changes, link status failures, etc.. |
| 914 | * - Userspace is responsible for polling the property to determine when |
| 915 | * the value transitions from ENABLED to DESIRED. This signifies the link |
| 916 | * is no longer protected and userspace should take appropriate action |
| 917 | * (whatever that might be). |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 918 | * |
| 919 | * Connectors also have one standardized atomic property: |
| 920 | * |
| 921 | * CRTC_ID: |
| 922 | * Mode object ID of the &drm_crtc this connector should be connected to. |
Hans de Goede | 8d70f39 | 2017-11-25 20:35:49 +0100 | [diff] [blame] | 923 | * |
| 924 | * Connectors for LCD panels may also have one standardized property: |
| 925 | * |
| 926 | * panel orientation: |
| 927 | * On some devices the LCD panel is mounted in the casing in such a way |
| 928 | * that the up/top side of the panel does not match with the top side of |
| 929 | * the device. Userspace can use this property to check for this. |
| 930 | * Note that input coordinates from touchscreens (input devices with |
| 931 | * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel |
| 932 | * coordinates, so if userspace rotates the picture to adjust for |
| 933 | * the orientation it must also apply the same transformation to the |
Daniel Vetter | bbeba09 | 2018-02-19 23:53:54 +0100 | [diff] [blame] | 934 | * touchscreen input coordinates. This property is initialized by calling |
| 935 | * drm_connector_init_panel_orientation_property(). |
| 936 | * |
| 937 | * scaling mode: |
| 938 | * This property defines how a non-native mode is upscaled to the native |
| 939 | * mode of an LCD panel: |
| 940 | * |
| 941 | * None: |
| 942 | * No upscaling happens, scaling is left to the panel. Not all |
| 943 | * drivers expose this mode. |
| 944 | * Full: |
| 945 | * The output is upscaled to the full resolution of the panel, |
| 946 | * ignoring the aspect ratio. |
| 947 | * Center: |
| 948 | * No upscaling happens, the output is centered within the native |
| 949 | * resolution the panel. |
| 950 | * Full aspect: |
| 951 | * The output is upscaled to maximize either the width or height |
| 952 | * while retaining the aspect ratio. |
| 953 | * |
| 954 | * This property should be set up by calling |
| 955 | * drm_connector_attach_scaling_mode_property(). Note that drivers |
| 956 | * can also expose this property to external outputs, in which case they |
| 957 | * must support "None", which should be the default (since external screens |
| 958 | * have a built-in scaler). |
Daniel Vetter | 4ada6f2 | 2016-11-17 09:56:48 +0100 | [diff] [blame] | 959 | */ |
| 960 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 961 | int drm_connector_create_standard_properties(struct drm_device *dev) |
| 962 | { |
| 963 | struct drm_property *prop; |
| 964 | |
| 965 | prop = drm_property_create(dev, DRM_MODE_PROP_BLOB | |
| 966 | DRM_MODE_PROP_IMMUTABLE, |
| 967 | "EDID", 0); |
| 968 | if (!prop) |
| 969 | return -ENOMEM; |
| 970 | dev->mode_config.edid_property = prop; |
| 971 | |
| 972 | prop = drm_property_create_enum(dev, 0, |
| 973 | "DPMS", drm_dpms_enum_list, |
| 974 | ARRAY_SIZE(drm_dpms_enum_list)); |
| 975 | if (!prop) |
| 976 | return -ENOMEM; |
| 977 | dev->mode_config.dpms_property = prop; |
| 978 | |
| 979 | prop = drm_property_create(dev, |
| 980 | DRM_MODE_PROP_BLOB | |
| 981 | DRM_MODE_PROP_IMMUTABLE, |
| 982 | "PATH", 0); |
| 983 | if (!prop) |
| 984 | return -ENOMEM; |
| 985 | dev->mode_config.path_property = prop; |
| 986 | |
| 987 | prop = drm_property_create(dev, |
| 988 | DRM_MODE_PROP_BLOB | |
| 989 | DRM_MODE_PROP_IMMUTABLE, |
| 990 | "TILE", 0); |
| 991 | if (!prop) |
| 992 | return -ENOMEM; |
| 993 | dev->mode_config.tile_property = prop; |
| 994 | |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 995 | prop = drm_property_create_enum(dev, 0, "link-status", |
| 996 | drm_link_status_enum_list, |
| 997 | ARRAY_SIZE(drm_link_status_enum_list)); |
| 998 | if (!prop) |
| 999 | return -ENOMEM; |
| 1000 | dev->mode_config.link_status_property = prop; |
| 1001 | |
Dave Airlie | 66660d4 | 2017-10-16 05:08:09 +0100 | [diff] [blame] | 1002 | prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop"); |
| 1003 | if (!prop) |
| 1004 | return -ENOMEM; |
| 1005 | dev->mode_config.non_desktop_property = prop; |
| 1006 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1007 | return 0; |
| 1008 | } |
| 1009 | |
| 1010 | /** |
| 1011 | * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties |
| 1012 | * @dev: DRM device |
| 1013 | * |
| 1014 | * Called by a driver the first time a DVI-I connector is made. |
| 1015 | */ |
| 1016 | int drm_mode_create_dvi_i_properties(struct drm_device *dev) |
| 1017 | { |
| 1018 | struct drm_property *dvi_i_selector; |
| 1019 | struct drm_property *dvi_i_subconnector; |
| 1020 | |
| 1021 | if (dev->mode_config.dvi_i_select_subconnector_property) |
| 1022 | return 0; |
| 1023 | |
| 1024 | dvi_i_selector = |
| 1025 | drm_property_create_enum(dev, 0, |
| 1026 | "select subconnector", |
| 1027 | drm_dvi_i_select_enum_list, |
| 1028 | ARRAY_SIZE(drm_dvi_i_select_enum_list)); |
| 1029 | dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector; |
| 1030 | |
| 1031 | dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1032 | "subconnector", |
| 1033 | drm_dvi_i_subconnector_enum_list, |
| 1034 | ARRAY_SIZE(drm_dvi_i_subconnector_enum_list)); |
| 1035 | dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector; |
| 1036 | |
| 1037 | return 0; |
| 1038 | } |
| 1039 | EXPORT_SYMBOL(drm_mode_create_dvi_i_properties); |
| 1040 | |
| 1041 | /** |
Stanislav Lisovskiy | 50525c3 | 2018-05-15 16:59:27 +0300 | [diff] [blame] | 1042 | * DOC: HDMI connector properties |
| 1043 | * |
| 1044 | * content type (HDMI specific): |
| 1045 | * Indicates content type setting to be used in HDMI infoframes to indicate |
| 1046 | * content type for the external device, so that it adjusts it's display |
| 1047 | * settings accordingly. |
| 1048 | * |
| 1049 | * The value of this property can be one of the following: |
| 1050 | * |
| 1051 | * No Data: |
| 1052 | * Content type is unknown |
| 1053 | * Graphics: |
| 1054 | * Content type is graphics |
| 1055 | * Photo: |
| 1056 | * Content type is photo |
| 1057 | * Cinema: |
| 1058 | * Content type is cinema |
| 1059 | * Game: |
| 1060 | * Content type is game |
| 1061 | * |
| 1062 | * Drivers can set up this property by calling |
| 1063 | * drm_connector_attach_content_type_property(). Decoding to |
Daniel Vetter | ba60963 | 2018-07-02 11:10:23 +0200 | [diff] [blame] | 1064 | * infoframe values is done through drm_hdmi_avi_infoframe_content_type(). |
Stanislav Lisovskiy | 50525c3 | 2018-05-15 16:59:27 +0300 | [diff] [blame] | 1065 | */ |
| 1066 | |
| 1067 | /** |
| 1068 | * drm_connector_attach_content_type_property - attach content-type property |
| 1069 | * @connector: connector to attach content type property on. |
| 1070 | * |
| 1071 | * Called by a driver the first time a HDMI connector is made. |
| 1072 | */ |
| 1073 | int drm_connector_attach_content_type_property(struct drm_connector *connector) |
| 1074 | { |
| 1075 | if (!drm_mode_create_content_type_property(connector->dev)) |
| 1076 | drm_object_attach_property(&connector->base, |
| 1077 | connector->dev->mode_config.content_type_property, |
| 1078 | DRM_MODE_CONTENT_TYPE_NO_DATA); |
| 1079 | return 0; |
| 1080 | } |
| 1081 | EXPORT_SYMBOL(drm_connector_attach_content_type_property); |
| 1082 | |
| 1083 | |
| 1084 | /** |
| 1085 | * drm_hdmi_avi_infoframe_content_type() - fill the HDMI AVI infoframe |
| 1086 | * content type information, based |
| 1087 | * on correspondent DRM property. |
| 1088 | * @frame: HDMI AVI infoframe |
| 1089 | * @conn_state: DRM display connector state |
| 1090 | * |
| 1091 | */ |
| 1092 | void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame, |
| 1093 | const struct drm_connector_state *conn_state) |
| 1094 | { |
| 1095 | switch (conn_state->content_type) { |
| 1096 | case DRM_MODE_CONTENT_TYPE_GRAPHICS: |
| 1097 | frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; |
| 1098 | break; |
| 1099 | case DRM_MODE_CONTENT_TYPE_CINEMA: |
| 1100 | frame->content_type = HDMI_CONTENT_TYPE_CINEMA; |
| 1101 | break; |
| 1102 | case DRM_MODE_CONTENT_TYPE_GAME: |
| 1103 | frame->content_type = HDMI_CONTENT_TYPE_GAME; |
| 1104 | break; |
| 1105 | case DRM_MODE_CONTENT_TYPE_PHOTO: |
| 1106 | frame->content_type = HDMI_CONTENT_TYPE_PHOTO; |
| 1107 | break; |
| 1108 | default: |
| 1109 | /* Graphics is the default(0) */ |
| 1110 | frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; |
| 1111 | } |
| 1112 | |
| 1113 | frame->itc = conn_state->content_type != DRM_MODE_CONTENT_TYPE_NO_DATA; |
| 1114 | } |
| 1115 | EXPORT_SYMBOL(drm_hdmi_avi_infoframe_content_type); |
| 1116 | |
| 1117 | /** |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1118 | * drm_create_tv_properties - create TV specific connector properties |
| 1119 | * @dev: DRM device |
| 1120 | * @num_modes: number of different TV formats (modes) supported |
| 1121 | * @modes: array of pointers to strings containing name of each format |
| 1122 | * |
| 1123 | * Called by a driver's TV initialization routine, this function creates |
| 1124 | * the TV specific connector properties for a given device. Caller is |
| 1125 | * responsible for allocating a list of format names and passing them to |
| 1126 | * this routine. |
| 1127 | */ |
| 1128 | int drm_mode_create_tv_properties(struct drm_device *dev, |
| 1129 | unsigned int num_modes, |
| 1130 | const char * const modes[]) |
| 1131 | { |
| 1132 | struct drm_property *tv_selector; |
| 1133 | struct drm_property *tv_subconnector; |
| 1134 | unsigned int i; |
| 1135 | |
| 1136 | if (dev->mode_config.tv_select_subconnector_property) |
| 1137 | return 0; |
| 1138 | |
| 1139 | /* |
| 1140 | * Basic connector properties |
| 1141 | */ |
| 1142 | tv_selector = drm_property_create_enum(dev, 0, |
| 1143 | "select subconnector", |
| 1144 | drm_tv_select_enum_list, |
| 1145 | ARRAY_SIZE(drm_tv_select_enum_list)); |
| 1146 | if (!tv_selector) |
| 1147 | goto nomem; |
| 1148 | |
| 1149 | dev->mode_config.tv_select_subconnector_property = tv_selector; |
| 1150 | |
| 1151 | tv_subconnector = |
| 1152 | drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1153 | "subconnector", |
| 1154 | drm_tv_subconnector_enum_list, |
| 1155 | ARRAY_SIZE(drm_tv_subconnector_enum_list)); |
| 1156 | if (!tv_subconnector) |
| 1157 | goto nomem; |
| 1158 | dev->mode_config.tv_subconnector_property = tv_subconnector; |
| 1159 | |
| 1160 | /* |
| 1161 | * Other, TV specific properties: margins & TV modes. |
| 1162 | */ |
| 1163 | dev->mode_config.tv_left_margin_property = |
| 1164 | drm_property_create_range(dev, 0, "left margin", 0, 100); |
| 1165 | if (!dev->mode_config.tv_left_margin_property) |
| 1166 | goto nomem; |
| 1167 | |
| 1168 | dev->mode_config.tv_right_margin_property = |
| 1169 | drm_property_create_range(dev, 0, "right margin", 0, 100); |
| 1170 | if (!dev->mode_config.tv_right_margin_property) |
| 1171 | goto nomem; |
| 1172 | |
| 1173 | dev->mode_config.tv_top_margin_property = |
| 1174 | drm_property_create_range(dev, 0, "top margin", 0, 100); |
| 1175 | if (!dev->mode_config.tv_top_margin_property) |
| 1176 | goto nomem; |
| 1177 | |
| 1178 | dev->mode_config.tv_bottom_margin_property = |
| 1179 | drm_property_create_range(dev, 0, "bottom margin", 0, 100); |
| 1180 | if (!dev->mode_config.tv_bottom_margin_property) |
| 1181 | goto nomem; |
| 1182 | |
| 1183 | dev->mode_config.tv_mode_property = |
| 1184 | drm_property_create(dev, DRM_MODE_PROP_ENUM, |
| 1185 | "mode", num_modes); |
| 1186 | if (!dev->mode_config.tv_mode_property) |
| 1187 | goto nomem; |
| 1188 | |
| 1189 | for (i = 0; i < num_modes; i++) |
Ville Syrjälä | 30e9db6d | 2018-03-16 21:04:20 +0200 | [diff] [blame] | 1190 | drm_property_add_enum(dev->mode_config.tv_mode_property, |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1191 | i, modes[i]); |
| 1192 | |
| 1193 | dev->mode_config.tv_brightness_property = |
| 1194 | drm_property_create_range(dev, 0, "brightness", 0, 100); |
| 1195 | if (!dev->mode_config.tv_brightness_property) |
| 1196 | goto nomem; |
| 1197 | |
| 1198 | dev->mode_config.tv_contrast_property = |
| 1199 | drm_property_create_range(dev, 0, "contrast", 0, 100); |
| 1200 | if (!dev->mode_config.tv_contrast_property) |
| 1201 | goto nomem; |
| 1202 | |
| 1203 | dev->mode_config.tv_flicker_reduction_property = |
| 1204 | drm_property_create_range(dev, 0, "flicker reduction", 0, 100); |
| 1205 | if (!dev->mode_config.tv_flicker_reduction_property) |
| 1206 | goto nomem; |
| 1207 | |
| 1208 | dev->mode_config.tv_overscan_property = |
| 1209 | drm_property_create_range(dev, 0, "overscan", 0, 100); |
| 1210 | if (!dev->mode_config.tv_overscan_property) |
| 1211 | goto nomem; |
| 1212 | |
| 1213 | dev->mode_config.tv_saturation_property = |
| 1214 | drm_property_create_range(dev, 0, "saturation", 0, 100); |
| 1215 | if (!dev->mode_config.tv_saturation_property) |
| 1216 | goto nomem; |
| 1217 | |
| 1218 | dev->mode_config.tv_hue_property = |
| 1219 | drm_property_create_range(dev, 0, "hue", 0, 100); |
| 1220 | if (!dev->mode_config.tv_hue_property) |
| 1221 | goto nomem; |
| 1222 | |
| 1223 | return 0; |
| 1224 | nomem: |
| 1225 | return -ENOMEM; |
| 1226 | } |
| 1227 | EXPORT_SYMBOL(drm_mode_create_tv_properties); |
| 1228 | |
| 1229 | /** |
| 1230 | * drm_mode_create_scaling_mode_property - create scaling mode property |
| 1231 | * @dev: DRM device |
| 1232 | * |
| 1233 | * Called by a driver the first time it's needed, must be attached to desired |
| 1234 | * connectors. |
Maarten Lankhorst | 8f6e1e2 | 2017-05-01 15:37:54 +0200 | [diff] [blame] | 1235 | * |
| 1236 | * Atomic drivers should use drm_connector_attach_scaling_mode_property() |
| 1237 | * instead to correctly assign &drm_connector_state.picture_aspect_ratio |
| 1238 | * in the atomic state. |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1239 | */ |
| 1240 | int drm_mode_create_scaling_mode_property(struct drm_device *dev) |
| 1241 | { |
| 1242 | struct drm_property *scaling_mode; |
| 1243 | |
| 1244 | if (dev->mode_config.scaling_mode_property) |
| 1245 | return 0; |
| 1246 | |
| 1247 | scaling_mode = |
| 1248 | drm_property_create_enum(dev, 0, "scaling mode", |
| 1249 | drm_scaling_mode_enum_list, |
| 1250 | ARRAY_SIZE(drm_scaling_mode_enum_list)); |
| 1251 | |
| 1252 | dev->mode_config.scaling_mode_property = scaling_mode; |
| 1253 | |
| 1254 | return 0; |
| 1255 | } |
| 1256 | EXPORT_SYMBOL(drm_mode_create_scaling_mode_property); |
| 1257 | |
| 1258 | /** |
Maarten Lankhorst | 8f6e1e2 | 2017-05-01 15:37:54 +0200 | [diff] [blame] | 1259 | * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property |
| 1260 | * @connector: connector to attach scaling mode property on. |
| 1261 | * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*). |
| 1262 | * |
| 1263 | * This is used to add support for scaling mode to atomic drivers. |
| 1264 | * The scaling mode will be set to &drm_connector_state.picture_aspect_ratio |
| 1265 | * and can be used from &drm_connector_helper_funcs->atomic_check for validation. |
| 1266 | * |
| 1267 | * This is the atomic version of drm_mode_create_scaling_mode_property(). |
| 1268 | * |
| 1269 | * Returns: |
| 1270 | * Zero on success, negative errno on failure. |
| 1271 | */ |
| 1272 | int drm_connector_attach_scaling_mode_property(struct drm_connector *connector, |
| 1273 | u32 scaling_mode_mask) |
| 1274 | { |
| 1275 | struct drm_device *dev = connector->dev; |
| 1276 | struct drm_property *scaling_mode_property; |
Ville Syrjälä | 30e9db6d | 2018-03-16 21:04:20 +0200 | [diff] [blame] | 1277 | int i; |
Maarten Lankhorst | 8f6e1e2 | 2017-05-01 15:37:54 +0200 | [diff] [blame] | 1278 | const unsigned valid_scaling_mode_mask = |
| 1279 | (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1; |
| 1280 | |
| 1281 | if (WARN_ON(hweight32(scaling_mode_mask) < 2 || |
| 1282 | scaling_mode_mask & ~valid_scaling_mode_mask)) |
| 1283 | return -EINVAL; |
| 1284 | |
| 1285 | scaling_mode_property = |
| 1286 | drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode", |
| 1287 | hweight32(scaling_mode_mask)); |
| 1288 | |
| 1289 | if (!scaling_mode_property) |
| 1290 | return -ENOMEM; |
| 1291 | |
| 1292 | for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) { |
| 1293 | int ret; |
| 1294 | |
| 1295 | if (!(BIT(i) & scaling_mode_mask)) |
| 1296 | continue; |
| 1297 | |
Ville Syrjälä | 30e9db6d | 2018-03-16 21:04:20 +0200 | [diff] [blame] | 1298 | ret = drm_property_add_enum(scaling_mode_property, |
Maarten Lankhorst | 8f6e1e2 | 2017-05-01 15:37:54 +0200 | [diff] [blame] | 1299 | drm_scaling_mode_enum_list[i].type, |
| 1300 | drm_scaling_mode_enum_list[i].name); |
| 1301 | |
| 1302 | if (ret) { |
| 1303 | drm_property_destroy(dev, scaling_mode_property); |
| 1304 | |
| 1305 | return ret; |
| 1306 | } |
| 1307 | } |
| 1308 | |
| 1309 | drm_object_attach_property(&connector->base, |
| 1310 | scaling_mode_property, 0); |
| 1311 | |
| 1312 | connector->scaling_mode_property = scaling_mode_property; |
| 1313 | |
| 1314 | return 0; |
| 1315 | } |
| 1316 | EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property); |
| 1317 | |
| 1318 | /** |
Sean Paul | 2455786 | 2018-01-08 14:55:37 -0500 | [diff] [blame] | 1319 | * drm_connector_attach_content_protection_property - attach content protection |
| 1320 | * property |
| 1321 | * |
| 1322 | * @connector: connector to attach CP property on. |
| 1323 | * |
| 1324 | * This is used to add support for content protection on select connectors. |
| 1325 | * Content Protection is intentionally vague to allow for different underlying |
| 1326 | * technologies, however it is most implemented by HDCP. |
| 1327 | * |
| 1328 | * The content protection will be set to &drm_connector_state.content_protection |
| 1329 | * |
| 1330 | * Returns: |
| 1331 | * Zero on success, negative errno on failure. |
| 1332 | */ |
| 1333 | int drm_connector_attach_content_protection_property( |
| 1334 | struct drm_connector *connector) |
| 1335 | { |
| 1336 | struct drm_device *dev = connector->dev; |
| 1337 | struct drm_property *prop; |
| 1338 | |
| 1339 | prop = drm_property_create_enum(dev, 0, "Content Protection", |
| 1340 | drm_cp_enum_list, |
| 1341 | ARRAY_SIZE(drm_cp_enum_list)); |
| 1342 | if (!prop) |
| 1343 | return -ENOMEM; |
| 1344 | |
| 1345 | drm_object_attach_property(&connector->base, prop, |
| 1346 | DRM_MODE_CONTENT_PROTECTION_UNDESIRED); |
| 1347 | |
| 1348 | connector->content_protection_property = prop; |
| 1349 | |
| 1350 | return 0; |
| 1351 | } |
| 1352 | EXPORT_SYMBOL(drm_connector_attach_content_protection_property); |
| 1353 | |
| 1354 | /** |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1355 | * drm_mode_create_aspect_ratio_property - create aspect ratio property |
| 1356 | * @dev: DRM device |
| 1357 | * |
| 1358 | * Called by a driver the first time it's needed, must be attached to desired |
| 1359 | * connectors. |
| 1360 | * |
| 1361 | * Returns: |
| 1362 | * Zero on success, negative errno on failure. |
| 1363 | */ |
| 1364 | int drm_mode_create_aspect_ratio_property(struct drm_device *dev) |
| 1365 | { |
| 1366 | if (dev->mode_config.aspect_ratio_property) |
| 1367 | return 0; |
| 1368 | |
| 1369 | dev->mode_config.aspect_ratio_property = |
| 1370 | drm_property_create_enum(dev, 0, "aspect ratio", |
| 1371 | drm_aspect_ratio_enum_list, |
| 1372 | ARRAY_SIZE(drm_aspect_ratio_enum_list)); |
| 1373 | |
| 1374 | if (dev->mode_config.aspect_ratio_property == NULL) |
| 1375 | return -ENOMEM; |
| 1376 | |
| 1377 | return 0; |
| 1378 | } |
| 1379 | EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property); |
| 1380 | |
| 1381 | /** |
Stanislav Lisovskiy | 50525c3 | 2018-05-15 16:59:27 +0300 | [diff] [blame] | 1382 | * drm_mode_create_content_type_property - create content type property |
| 1383 | * @dev: DRM device |
| 1384 | * |
| 1385 | * Called by a driver the first time it's needed, must be attached to desired |
| 1386 | * connectors. |
| 1387 | * |
| 1388 | * Returns: |
| 1389 | * Zero on success, negative errno on failure. |
| 1390 | */ |
| 1391 | int drm_mode_create_content_type_property(struct drm_device *dev) |
| 1392 | { |
| 1393 | if (dev->mode_config.content_type_property) |
| 1394 | return 0; |
| 1395 | |
| 1396 | dev->mode_config.content_type_property = |
| 1397 | drm_property_create_enum(dev, 0, "content type", |
| 1398 | drm_content_type_enum_list, |
| 1399 | ARRAY_SIZE(drm_content_type_enum_list)); |
| 1400 | |
| 1401 | if (dev->mode_config.content_type_property == NULL) |
| 1402 | return -ENOMEM; |
| 1403 | |
| 1404 | return 0; |
| 1405 | } |
| 1406 | EXPORT_SYMBOL(drm_mode_create_content_type_property); |
| 1407 | |
| 1408 | /** |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1409 | * drm_mode_create_suggested_offset_properties - create suggests offset properties |
| 1410 | * @dev: DRM device |
| 1411 | * |
| 1412 | * Create the the suggested x/y offset property for connectors. |
| 1413 | */ |
| 1414 | int drm_mode_create_suggested_offset_properties(struct drm_device *dev) |
| 1415 | { |
| 1416 | if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property) |
| 1417 | return 0; |
| 1418 | |
| 1419 | dev->mode_config.suggested_x_property = |
| 1420 | drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff); |
| 1421 | |
| 1422 | dev->mode_config.suggested_y_property = |
| 1423 | drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff); |
| 1424 | |
| 1425 | if (dev->mode_config.suggested_x_property == NULL || |
| 1426 | dev->mode_config.suggested_y_property == NULL) |
| 1427 | return -ENOMEM; |
| 1428 | return 0; |
| 1429 | } |
| 1430 | EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties); |
| 1431 | |
| 1432 | /** |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1433 | * drm_connector_set_path_property - set tile property on connector |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1434 | * @connector: connector to set property on. |
| 1435 | * @path: path to use for property; must not be NULL. |
| 1436 | * |
| 1437 | * This creates a property to expose to userspace to specify a |
| 1438 | * connector path. This is mainly used for DisplayPort MST where |
| 1439 | * connectors have a topology and we want to allow userspace to give |
| 1440 | * them more meaningful names. |
| 1441 | * |
| 1442 | * Returns: |
| 1443 | * Zero on success, negative errno on failure. |
| 1444 | */ |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1445 | int drm_connector_set_path_property(struct drm_connector *connector, |
| 1446 | const char *path) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1447 | { |
| 1448 | struct drm_device *dev = connector->dev; |
| 1449 | int ret; |
| 1450 | |
| 1451 | ret = drm_property_replace_global_blob(dev, |
| 1452 | &connector->path_blob_ptr, |
| 1453 | strlen(path) + 1, |
| 1454 | path, |
| 1455 | &connector->base, |
| 1456 | dev->mode_config.path_property); |
| 1457 | return ret; |
| 1458 | } |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1459 | EXPORT_SYMBOL(drm_connector_set_path_property); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1460 | |
| 1461 | /** |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1462 | * drm_connector_set_tile_property - set tile property on connector |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1463 | * @connector: connector to set property on. |
| 1464 | * |
| 1465 | * This looks up the tile information for a connector, and creates a |
| 1466 | * property for userspace to parse if it exists. The property is of |
| 1467 | * the form of 8 integers using ':' as a separator. |
| 1468 | * |
| 1469 | * Returns: |
| 1470 | * Zero on success, errno on failure. |
| 1471 | */ |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1472 | int drm_connector_set_tile_property(struct drm_connector *connector) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1473 | { |
| 1474 | struct drm_device *dev = connector->dev; |
| 1475 | char tile[256]; |
| 1476 | int ret; |
| 1477 | |
| 1478 | if (!connector->has_tile) { |
| 1479 | ret = drm_property_replace_global_blob(dev, |
| 1480 | &connector->tile_blob_ptr, |
| 1481 | 0, |
| 1482 | NULL, |
| 1483 | &connector->base, |
| 1484 | dev->mode_config.tile_property); |
| 1485 | return ret; |
| 1486 | } |
| 1487 | |
| 1488 | snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d", |
| 1489 | connector->tile_group->id, connector->tile_is_single_monitor, |
| 1490 | connector->num_h_tile, connector->num_v_tile, |
| 1491 | connector->tile_h_loc, connector->tile_v_loc, |
| 1492 | connector->tile_h_size, connector->tile_v_size); |
| 1493 | |
| 1494 | ret = drm_property_replace_global_blob(dev, |
| 1495 | &connector->tile_blob_ptr, |
| 1496 | strlen(tile) + 1, |
| 1497 | tile, |
| 1498 | &connector->base, |
| 1499 | dev->mode_config.tile_property); |
| 1500 | return ret; |
| 1501 | } |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1502 | EXPORT_SYMBOL(drm_connector_set_tile_property); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1503 | |
| 1504 | /** |
Daniel Vetter | c555f02 | 2018-07-09 10:40:06 +0200 | [diff] [blame] | 1505 | * drm_connector_update_edid_property - update the edid property of a connector |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1506 | * @connector: drm connector |
| 1507 | * @edid: new value of the edid property |
| 1508 | * |
| 1509 | * This function creates a new blob modeset object and assigns its id to the |
| 1510 | * connector's edid property. |
| 1511 | * |
| 1512 | * Returns: |
| 1513 | * Zero on success, negative errno on failure. |
| 1514 | */ |
Daniel Vetter | c555f02 | 2018-07-09 10:40:06 +0200 | [diff] [blame] | 1515 | int drm_connector_update_edid_property(struct drm_connector *connector, |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1516 | const struct edid *edid) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1517 | { |
| 1518 | struct drm_device *dev = connector->dev; |
| 1519 | size_t size = 0; |
| 1520 | int ret; |
| 1521 | |
| 1522 | /* ignore requests to set edid when overridden */ |
| 1523 | if (connector->override_edid) |
| 1524 | return 0; |
| 1525 | |
| 1526 | if (edid) |
| 1527 | size = EDID_LENGTH * (1 + edid->extensions); |
| 1528 | |
Keith Packard | 170178f | 2017-12-13 00:44:26 -0800 | [diff] [blame] | 1529 | /* Set the display info, using edid if available, otherwise |
| 1530 | * reseting the values to defaults. This duplicates the work |
| 1531 | * done in drm_add_edid_modes, but that function is not |
| 1532 | * consistently called before this one in all drivers and the |
| 1533 | * computation is cheap enough that it seems better to |
| 1534 | * duplicate it rather than attempt to ensure some arbitrary |
| 1535 | * ordering of calls. |
| 1536 | */ |
| 1537 | if (edid) |
| 1538 | drm_add_display_info(connector, edid); |
| 1539 | else |
| 1540 | drm_reset_display_info(connector); |
| 1541 | |
Dave Airlie | 66660d4 | 2017-10-16 05:08:09 +0100 | [diff] [blame] | 1542 | drm_object_property_set_value(&connector->base, |
| 1543 | dev->mode_config.non_desktop_property, |
| 1544 | connector->display_info.non_desktop); |
| 1545 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1546 | ret = drm_property_replace_global_blob(dev, |
| 1547 | &connector->edid_blob_ptr, |
| 1548 | size, |
| 1549 | edid, |
| 1550 | &connector->base, |
| 1551 | dev->mode_config.edid_property); |
| 1552 | return ret; |
| 1553 | } |
Daniel Vetter | c555f02 | 2018-07-09 10:40:06 +0200 | [diff] [blame] | 1554 | EXPORT_SYMBOL(drm_connector_update_edid_property); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1555 | |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 1556 | /** |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1557 | * drm_connector_set_link_status_property - Set link status property of a connector |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 1558 | * @connector: drm connector |
| 1559 | * @link_status: new value of link status property (0: Good, 1: Bad) |
| 1560 | * |
| 1561 | * In usual working scenario, this link status property will always be set to |
| 1562 | * "GOOD". If something fails during or after a mode set, the kernel driver |
| 1563 | * may set this link status property to "BAD". The caller then needs to send a |
| 1564 | * hotplug uevent for userspace to re-check the valid modes through |
| 1565 | * GET_CONNECTOR_IOCTL and retry modeset. |
| 1566 | * |
| 1567 | * Note: Drivers cannot rely on userspace to support this property and |
| 1568 | * issue a modeset. As such, they may choose to handle issues (like |
| 1569 | * re-training a link) without userspace's intervention. |
| 1570 | * |
| 1571 | * The reason for adding this property is to handle link training failures, but |
| 1572 | * it is not limited to DP or link training. For example, if we implement |
| 1573 | * asynchronous setcrtc, this property can be used to report any failures in that. |
| 1574 | */ |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1575 | void drm_connector_set_link_status_property(struct drm_connector *connector, |
| 1576 | uint64_t link_status) |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 1577 | { |
| 1578 | struct drm_device *dev = connector->dev; |
| 1579 | |
| 1580 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
| 1581 | connector->state->link_status = link_status; |
| 1582 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
| 1583 | } |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1584 | EXPORT_SYMBOL(drm_connector_set_link_status_property); |
Manasi Navare | 40ee6fb | 2016-12-16 12:29:06 +0200 | [diff] [blame] | 1585 | |
Hans de Goede | 8d70f39 | 2017-11-25 20:35:49 +0100 | [diff] [blame] | 1586 | /** |
| 1587 | * drm_connector_init_panel_orientation_property - |
| 1588 | * initialize the connecters panel_orientation property |
| 1589 | * @connector: connector for which to init the panel-orientation property. |
| 1590 | * @width: width in pixels of the panel, used for panel quirk detection |
| 1591 | * @height: height in pixels of the panel, used for panel quirk detection |
| 1592 | * |
| 1593 | * This function should only be called for built-in panels, after setting |
| 1594 | * connector->display_info.panel_orientation first (if known). |
| 1595 | * |
| 1596 | * This function will check for platform specific (e.g. DMI based) quirks |
| 1597 | * overriding display_info.panel_orientation first, then if panel_orientation |
| 1598 | * is not DRM_MODE_PANEL_ORIENTATION_UNKNOWN it will attach the |
| 1599 | * "panel orientation" property to the connector. |
| 1600 | * |
| 1601 | * Returns: |
| 1602 | * Zero on success, negative errno on failure. |
| 1603 | */ |
| 1604 | int drm_connector_init_panel_orientation_property( |
| 1605 | struct drm_connector *connector, int width, int height) |
| 1606 | { |
| 1607 | struct drm_device *dev = connector->dev; |
| 1608 | struct drm_display_info *info = &connector->display_info; |
| 1609 | struct drm_property *prop; |
| 1610 | int orientation_quirk; |
| 1611 | |
| 1612 | orientation_quirk = drm_get_panel_orientation_quirk(width, height); |
| 1613 | if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) |
| 1614 | info->panel_orientation = orientation_quirk; |
| 1615 | |
| 1616 | if (info->panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN) |
| 1617 | return 0; |
| 1618 | |
| 1619 | prop = dev->mode_config.panel_orientation_property; |
| 1620 | if (!prop) { |
| 1621 | prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1622 | "panel orientation", |
| 1623 | drm_panel_orientation_enum_list, |
| 1624 | ARRAY_SIZE(drm_panel_orientation_enum_list)); |
| 1625 | if (!prop) |
| 1626 | return -ENOMEM; |
| 1627 | |
| 1628 | dev->mode_config.panel_orientation_property = prop; |
| 1629 | } |
| 1630 | |
| 1631 | drm_object_attach_property(&connector->base, prop, |
| 1632 | info->panel_orientation); |
| 1633 | return 0; |
| 1634 | } |
| 1635 | EXPORT_SYMBOL(drm_connector_init_panel_orientation_property); |
| 1636 | |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1637 | int drm_connector_set_obj_prop(struct drm_mode_object *obj, |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1638 | struct drm_property *property, |
| 1639 | uint64_t value) |
| 1640 | { |
| 1641 | int ret = -EINVAL; |
| 1642 | struct drm_connector *connector = obj_to_connector(obj); |
| 1643 | |
| 1644 | /* Do DPMS ourselves */ |
| 1645 | if (property == connector->dev->mode_config.dpms_property) { |
| 1646 | ret = (*connector->funcs->dpms)(connector, (int)value); |
| 1647 | } else if (connector->funcs->set_property) |
| 1648 | ret = connector->funcs->set_property(connector, property, value); |
| 1649 | |
Daniel Vetter | 144a799 | 2017-07-25 14:02:04 +0200 | [diff] [blame] | 1650 | if (!ret) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1651 | drm_object_property_set_value(&connector->base, property, value); |
| 1652 | return ret; |
| 1653 | } |
| 1654 | |
Daniel Vetter | 97e14fb | 2018-07-09 10:40:08 +0200 | [diff] [blame] | 1655 | int drm_connector_property_set_ioctl(struct drm_device *dev, |
| 1656 | void *data, struct drm_file *file_priv) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1657 | { |
| 1658 | struct drm_mode_connector_set_property *conn_set_prop = data; |
| 1659 | struct drm_mode_obj_set_property obj_set_prop = { |
| 1660 | .value = conn_set_prop->value, |
| 1661 | .prop_id = conn_set_prop->prop_id, |
| 1662 | .obj_id = conn_set_prop->connector_id, |
| 1663 | .obj_type = DRM_MODE_OBJECT_CONNECTOR |
| 1664 | }; |
| 1665 | |
| 1666 | /* It does all the locking and checking we need */ |
| 1667 | return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv); |
| 1668 | } |
| 1669 | |
| 1670 | static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector) |
| 1671 | { |
| 1672 | /* For atomic drivers only state objects are synchronously updated and |
| 1673 | * protected by modeset locks, so check those first. */ |
| 1674 | if (connector->state) |
| 1675 | return connector->state->best_encoder; |
| 1676 | return connector->encoder; |
| 1677 | } |
| 1678 | |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1679 | static bool |
| 1680 | drm_mode_expose_to_userspace(const struct drm_display_mode *mode, |
| 1681 | const struct list_head *export_list, |
| 1682 | const struct drm_file *file_priv) |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1683 | { |
| 1684 | /* |
| 1685 | * If user-space hasn't configured the driver to expose the stereo 3D |
| 1686 | * modes, don't expose them. |
| 1687 | */ |
| 1688 | if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode)) |
| 1689 | return false; |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1690 | /* |
| 1691 | * If user-space hasn't configured the driver to expose the modes |
| 1692 | * with aspect-ratio, don't expose them. However if such a mode |
| 1693 | * is unique, let it be exposed, but reset the aspect-ratio flags |
| 1694 | * while preparing the list of user-modes. |
| 1695 | */ |
| 1696 | if (!file_priv->aspect_ratio_allowed) { |
| 1697 | struct drm_display_mode *mode_itr; |
| 1698 | |
| 1699 | list_for_each_entry(mode_itr, export_list, export_head) |
| 1700 | if (drm_mode_match(mode_itr, mode, |
| 1701 | DRM_MODE_MATCH_TIMINGS | |
| 1702 | DRM_MODE_MATCH_CLOCK | |
| 1703 | DRM_MODE_MATCH_FLAGS | |
| 1704 | DRM_MODE_MATCH_3D_FLAGS)) |
| 1705 | return false; |
| 1706 | } |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1707 | |
| 1708 | return true; |
| 1709 | } |
| 1710 | |
| 1711 | int drm_mode_getconnector(struct drm_device *dev, void *data, |
| 1712 | struct drm_file *file_priv) |
| 1713 | { |
| 1714 | struct drm_mode_get_connector *out_resp = data; |
| 1715 | struct drm_connector *connector; |
| 1716 | struct drm_encoder *encoder; |
| 1717 | struct drm_display_mode *mode; |
| 1718 | int mode_count = 0; |
| 1719 | int encoders_count = 0; |
| 1720 | int ret = 0; |
| 1721 | int copied = 0; |
| 1722 | int i; |
| 1723 | struct drm_mode_modeinfo u_mode; |
| 1724 | struct drm_mode_modeinfo __user *mode_ptr; |
| 1725 | uint32_t __user *encoder_ptr; |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1726 | LIST_HEAD(export_list); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1727 | |
| 1728 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
Chris Wilson | 69fdf42 | 2018-09-13 20:20:50 +0100 | [diff] [blame] | 1729 | return -EOPNOTSUPP; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1730 | |
| 1731 | memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo)); |
| 1732 | |
Keith Packard | 418da17 | 2017-03-14 23:25:07 -0700 | [diff] [blame] | 1733 | connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id); |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1734 | if (!connector) |
| 1735 | return -ENOENT; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1736 | |
Ville Syrjälä | 83aefbb | 2018-06-28 16:13:09 +0300 | [diff] [blame] | 1737 | drm_connector_for_each_possible_encoder(connector, encoder, i) |
| 1738 | encoders_count++; |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1739 | |
| 1740 | if ((out_resp->count_encoders >= encoders_count) && encoders_count) { |
| 1741 | copied = 0; |
| 1742 | encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr); |
Ville Syrjälä | 83aefbb | 2018-06-28 16:13:09 +0300 | [diff] [blame] | 1743 | |
| 1744 | drm_connector_for_each_possible_encoder(connector, encoder, i) { |
| 1745 | if (put_user(encoder->base.id, encoder_ptr + copied)) { |
| 1746 | ret = -EFAULT; |
| 1747 | goto out; |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1748 | } |
Ville Syrjälä | 83aefbb | 2018-06-28 16:13:09 +0300 | [diff] [blame] | 1749 | copied++; |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1750 | } |
| 1751 | } |
| 1752 | out_resp->count_encoders = encoders_count; |
| 1753 | |
| 1754 | out_resp->connector_id = connector->base.id; |
| 1755 | out_resp->connector_type = connector->connector_type; |
| 1756 | out_resp->connector_type_id = connector->connector_type_id; |
| 1757 | |
| 1758 | mutex_lock(&dev->mode_config.mutex); |
| 1759 | if (out_resp->count_modes == 0) { |
| 1760 | connector->funcs->fill_modes(connector, |
| 1761 | dev->mode_config.max_width, |
| 1762 | dev->mode_config.max_height); |
| 1763 | } |
| 1764 | |
| 1765 | out_resp->mm_width = connector->display_info.width_mm; |
| 1766 | out_resp->mm_height = connector->display_info.height_mm; |
| 1767 | out_resp->subpixel = connector->display_info.subpixel_order; |
| 1768 | out_resp->connection = connector->status; |
| 1769 | |
| 1770 | /* delayed so we get modes regardless of pre-fill_modes state */ |
| 1771 | list_for_each_entry(mode, &connector->modes, head) |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1772 | if (drm_mode_expose_to_userspace(mode, &export_list, |
| 1773 | file_priv)) { |
| 1774 | list_add_tail(&mode->export_head, &export_list); |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1775 | mode_count++; |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1776 | } |
Daniel Vetter | 91eefc0 | 2016-12-14 00:08:10 +0100 | [diff] [blame] | 1777 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1778 | /* |
| 1779 | * This ioctl is called twice, once to determine how much space is |
| 1780 | * needed, and the 2nd time to fill it. |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1781 | * The modes that need to be exposed to the user are maintained in the |
| 1782 | * 'export_list'. When the ioctl is called first time to determine the, |
| 1783 | * space, the export_list gets filled, to find the no.of modes. In the |
| 1784 | * 2nd time, the user modes are filled, one by one from the export_list. |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1785 | */ |
| 1786 | if ((out_resp->count_modes >= mode_count) && mode_count) { |
| 1787 | copied = 0; |
| 1788 | mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr; |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1789 | list_for_each_entry(mode, &export_list, export_head) { |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1790 | drm_mode_convert_to_umode(&u_mode, mode); |
Ankit Nautiyal | c3ff0cd | 2018-05-08 16:39:43 +0530 | [diff] [blame] | 1791 | /* |
| 1792 | * Reset aspect ratio flags of user-mode, if modes with |
| 1793 | * aspect-ratio are not supported. |
| 1794 | */ |
| 1795 | if (!file_priv->aspect_ratio_allowed) |
| 1796 | u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1797 | if (copy_to_user(mode_ptr + copied, |
| 1798 | &u_mode, sizeof(u_mode))) { |
| 1799 | ret = -EFAULT; |
Daniel Vetter | e94ac35 | 2017-06-20 22:28:37 +0200 | [diff] [blame] | 1800 | mutex_unlock(&dev->mode_config.mutex); |
| 1801 | |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1802 | goto out; |
| 1803 | } |
| 1804 | copied++; |
| 1805 | } |
| 1806 | } |
| 1807 | out_resp->count_modes = mode_count; |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1808 | mutex_unlock(&dev->mode_config.mutex); |
Daniel Vetter | e94ac35 | 2017-06-20 22:28:37 +0200 | [diff] [blame] | 1809 | |
| 1810 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
| 1811 | encoder = drm_connector_get_encoder(connector); |
| 1812 | if (encoder) |
| 1813 | out_resp->encoder_id = encoder->base.id; |
| 1814 | else |
| 1815 | out_resp->encoder_id = 0; |
| 1816 | |
| 1817 | /* Only grab properties after probing, to make sure EDID and other |
| 1818 | * properties reflect the latest status. */ |
| 1819 | ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic, |
| 1820 | (uint32_t __user *)(unsigned long)(out_resp->props_ptr), |
| 1821 | (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr), |
| 1822 | &out_resp->count_props); |
| 1823 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
| 1824 | |
| 1825 | out: |
Thierry Reding | ad09360 | 2017-02-28 15:46:39 +0100 | [diff] [blame] | 1826 | drm_connector_put(connector); |
Daniel Vetter | 5221719 | 2016-08-12 22:48:50 +0200 | [diff] [blame] | 1827 | |
| 1828 | return ret; |
| 1829 | } |
| 1830 | |
Daniel Vetter | 9498c19 | 2016-11-14 12:58:24 +0100 | [diff] [blame] | 1831 | |
| 1832 | /** |
| 1833 | * DOC: Tile group |
| 1834 | * |
| 1835 | * Tile groups are used to represent tiled monitors with a unique integer |
| 1836 | * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle, |
| 1837 | * we store this in a tile group, so we have a common identifier for all tiles |
| 1838 | * in a monitor group. The property is called "TILE". Drivers can manage tile |
| 1839 | * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and |
| 1840 | * drm_mode_get_tile_group(). But this is only needed for internal panels where |
| 1841 | * the tile group information is exposed through a non-standard way. |
| 1842 | */ |
| 1843 | |
| 1844 | static void drm_tile_group_free(struct kref *kref) |
| 1845 | { |
| 1846 | struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount); |
| 1847 | struct drm_device *dev = tg->dev; |
| 1848 | mutex_lock(&dev->mode_config.idr_mutex); |
| 1849 | idr_remove(&dev->mode_config.tile_idr, tg->id); |
| 1850 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 1851 | kfree(tg); |
| 1852 | } |
| 1853 | |
| 1854 | /** |
| 1855 | * drm_mode_put_tile_group - drop a reference to a tile group. |
| 1856 | * @dev: DRM device |
| 1857 | * @tg: tile group to drop reference to. |
| 1858 | * |
| 1859 | * drop reference to tile group and free if 0. |
| 1860 | */ |
| 1861 | void drm_mode_put_tile_group(struct drm_device *dev, |
| 1862 | struct drm_tile_group *tg) |
| 1863 | { |
| 1864 | kref_put(&tg->refcount, drm_tile_group_free); |
| 1865 | } |
| 1866 | EXPORT_SYMBOL(drm_mode_put_tile_group); |
| 1867 | |
| 1868 | /** |
| 1869 | * drm_mode_get_tile_group - get a reference to an existing tile group |
| 1870 | * @dev: DRM device |
| 1871 | * @topology: 8-bytes unique per monitor. |
| 1872 | * |
| 1873 | * Use the unique bytes to get a reference to an existing tile group. |
| 1874 | * |
| 1875 | * RETURNS: |
| 1876 | * tile group or NULL if not found. |
| 1877 | */ |
| 1878 | struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, |
| 1879 | char topology[8]) |
| 1880 | { |
| 1881 | struct drm_tile_group *tg; |
| 1882 | int id; |
| 1883 | mutex_lock(&dev->mode_config.idr_mutex); |
| 1884 | idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) { |
| 1885 | if (!memcmp(tg->group_data, topology, 8)) { |
| 1886 | if (!kref_get_unless_zero(&tg->refcount)) |
| 1887 | tg = NULL; |
| 1888 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 1889 | return tg; |
| 1890 | } |
| 1891 | } |
| 1892 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 1893 | return NULL; |
| 1894 | } |
| 1895 | EXPORT_SYMBOL(drm_mode_get_tile_group); |
| 1896 | |
| 1897 | /** |
| 1898 | * drm_mode_create_tile_group - create a tile group from a displayid description |
| 1899 | * @dev: DRM device |
| 1900 | * @topology: 8-bytes unique per monitor. |
| 1901 | * |
| 1902 | * Create a tile group for the unique monitor, and get a unique |
| 1903 | * identifier for the tile group. |
| 1904 | * |
| 1905 | * RETURNS: |
| 1906 | * new tile group or error. |
| 1907 | */ |
| 1908 | struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, |
| 1909 | char topology[8]) |
| 1910 | { |
| 1911 | struct drm_tile_group *tg; |
| 1912 | int ret; |
| 1913 | |
| 1914 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 1915 | if (!tg) |
| 1916 | return ERR_PTR(-ENOMEM); |
| 1917 | |
| 1918 | kref_init(&tg->refcount); |
| 1919 | memcpy(tg->group_data, topology, 8); |
| 1920 | tg->dev = dev; |
| 1921 | |
| 1922 | mutex_lock(&dev->mode_config.idr_mutex); |
| 1923 | ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL); |
| 1924 | if (ret >= 0) { |
| 1925 | tg->id = ret; |
| 1926 | } else { |
| 1927 | kfree(tg); |
| 1928 | tg = ERR_PTR(ret); |
| 1929 | } |
| 1930 | |
| 1931 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 1932 | return tg; |
| 1933 | } |
| 1934 | EXPORT_SYMBOL(drm_mode_create_tile_group); |