Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 1 | /************************************************************************** |
| 2 | * |
Sinclair Yeh | 54fbde8 | 2015-07-29 12:38:02 -0700 | [diff] [blame] | 3 | * Copyright © 2009-2015 VMware, Inc., Palo Alto, CA., USA |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 4 | * All Rights Reserved. |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the |
| 8 | * "Software"), to deal in the Software without restriction, including |
| 9 | * without limitation the rights to use, copy, modify, merge, publish, |
| 10 | * distribute, sub license, and/or sell copies of the Software, and to |
| 11 | * permit persons to whom the Software is furnished to do so, subject to |
| 12 | * the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice (including the |
| 15 | * next paragraph) shall be included in all copies or substantial portions |
| 16 | * of the Software. |
| 17 | * |
| 18 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
| 21 | * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, |
| 22 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
| 23 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE |
| 24 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 25 | * |
| 26 | **************************************************************************/ |
| 27 | |
| 28 | #include "vmwgfx_kms.h" |
Daniel Vetter | 3cb9ae4 | 2014-10-29 10:03:57 +0100 | [diff] [blame] | 29 | #include <drm/drm_plane_helper.h> |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 30 | #include <drm/drm_atomic.h> |
| 31 | #include <drm/drm_atomic_helper.h> |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 32 | |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 33 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 34 | #define vmw_crtc_to_ldu(x) \ |
| 35 | container_of(x, struct vmw_legacy_display_unit, base.crtc) |
| 36 | #define vmw_encoder_to_ldu(x) \ |
| 37 | container_of(x, struct vmw_legacy_display_unit, base.encoder) |
| 38 | #define vmw_connector_to_ldu(x) \ |
| 39 | container_of(x, struct vmw_legacy_display_unit, base.connector) |
| 40 | |
| 41 | struct vmw_legacy_display { |
| 42 | struct list_head active; |
| 43 | |
| 44 | unsigned num_active; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 45 | unsigned last_num_active; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 46 | |
| 47 | struct vmw_framebuffer *fb; |
| 48 | }; |
| 49 | |
| 50 | /** |
| 51 | * Display unit using the legacy register interface. |
| 52 | */ |
| 53 | struct vmw_legacy_display_unit { |
| 54 | struct vmw_display_unit base; |
| 55 | |
| 56 | struct list_head active; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | static void vmw_ldu_destroy(struct vmw_legacy_display_unit *ldu) |
| 60 | { |
| 61 | list_del_init(&ldu->active); |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 62 | vmw_du_cleanup(&ldu->base); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 63 | kfree(ldu); |
| 64 | } |
| 65 | |
| 66 | |
| 67 | /* |
| 68 | * Legacy Display Unit CRTC functions |
| 69 | */ |
| 70 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 71 | static void vmw_ldu_crtc_destroy(struct drm_crtc *crtc) |
| 72 | { |
| 73 | vmw_ldu_destroy(vmw_crtc_to_ldu(crtc)); |
| 74 | } |
| 75 | |
| 76 | static int vmw_ldu_commit_list(struct vmw_private *dev_priv) |
| 77 | { |
| 78 | struct vmw_legacy_display *lds = dev_priv->ldu_priv; |
| 79 | struct vmw_legacy_display_unit *entry; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 80 | struct drm_framebuffer *fb = NULL; |
| 81 | struct drm_crtc *crtc = NULL; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 82 | int i = 0; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 83 | |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 84 | /* If there is no display topology the host just assumes |
| 85 | * that the guest will set the same layout as the host. |
| 86 | */ |
| 87 | if (!(dev_priv->capabilities & SVGA_CAP_DISPLAY_TOPOLOGY)) { |
| 88 | int w = 0, h = 0; |
| 89 | list_for_each_entry(entry, &lds->active, active) { |
| 90 | crtc = &entry->base.crtc; |
| 91 | w = max(w, crtc->x + crtc->mode.hdisplay); |
| 92 | h = max(h, crtc->y + crtc->mode.vdisplay); |
| 93 | i++; |
| 94 | } |
| 95 | |
| 96 | if (crtc == NULL) |
| 97 | return 0; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 98 | fb = entry->base.crtc.primary->fb; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 99 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 100 | return vmw_kms_write_svga(dev_priv, w, h, fb->pitches[0], |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 101 | fb->format->cpp[0] * 8, |
Ville Syrjälä | b00c600 | 2016-12-14 23:31:35 +0200 | [diff] [blame] | 102 | fb->format->depth); |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 105 | if (!list_empty(&lds->active)) { |
| 106 | entry = list_entry(lds->active.next, typeof(*entry), active); |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 107 | fb = entry->base.crtc.primary->fb; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 108 | |
Ville Syrjälä | 01f2c77 | 2011-12-20 00:06:49 +0200 | [diff] [blame] | 109 | vmw_kms_write_svga(dev_priv, fb->width, fb->height, fb->pitches[0], |
Ville Syrjälä | 272725c | 2016-12-14 23:32:20 +0200 | [diff] [blame] | 110 | fb->format->cpp[0] * 8, fb->format->depth); |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 111 | } |
| 112 | |
Jakob Bornecrantz | 259600d5 | 2010-05-28 11:22:03 +0200 | [diff] [blame] | 113 | /* Make sure we always show something. */ |
| 114 | vmw_write(dev_priv, SVGA_REG_NUM_GUEST_DISPLAYS, |
| 115 | lds->num_active ? lds->num_active : 1); |
| 116 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 117 | i = 0; |
| 118 | list_for_each_entry(entry, &lds->active, active) { |
| 119 | crtc = &entry->base.crtc; |
| 120 | |
| 121 | vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, i); |
| 122 | vmw_write(dev_priv, SVGA_REG_DISPLAY_IS_PRIMARY, !i); |
| 123 | vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_X, crtc->x); |
| 124 | vmw_write(dev_priv, SVGA_REG_DISPLAY_POSITION_Y, crtc->y); |
| 125 | vmw_write(dev_priv, SVGA_REG_DISPLAY_WIDTH, crtc->mode.hdisplay); |
| 126 | vmw_write(dev_priv, SVGA_REG_DISPLAY_HEIGHT, crtc->mode.vdisplay); |
| 127 | vmw_write(dev_priv, SVGA_REG_DISPLAY_ID, SVGA_ID_INVALID); |
| 128 | |
| 129 | i++; |
| 130 | } |
| 131 | |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 132 | BUG_ON(i != lds->num_active); |
| 133 | |
| 134 | lds->last_num_active = lds->num_active; |
| 135 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 136 | return 0; |
| 137 | } |
| 138 | |
| 139 | static int vmw_ldu_del_active(struct vmw_private *vmw_priv, |
| 140 | struct vmw_legacy_display_unit *ldu) |
| 141 | { |
| 142 | struct vmw_legacy_display *ld = vmw_priv->ldu_priv; |
| 143 | if (list_empty(&ldu->active)) |
| 144 | return 0; |
| 145 | |
Jakob Bornecrantz | 6a591a9 | 2010-05-28 11:21:55 +0200 | [diff] [blame] | 146 | /* Must init otherwise list_empty(&ldu->active) will not work. */ |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 147 | list_del_init(&ldu->active); |
| 148 | if (--(ld->num_active) == 0) { |
| 149 | BUG_ON(!ld->fb); |
| 150 | if (ld->fb->unpin) |
| 151 | ld->fb->unpin(ld->fb); |
| 152 | ld->fb = NULL; |
| 153 | } |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static int vmw_ldu_add_active(struct vmw_private *vmw_priv, |
| 159 | struct vmw_legacy_display_unit *ldu, |
| 160 | struct vmw_framebuffer *vfb) |
| 161 | { |
| 162 | struct vmw_legacy_display *ld = vmw_priv->ldu_priv; |
| 163 | struct vmw_legacy_display_unit *entry; |
| 164 | struct list_head *at; |
| 165 | |
Jakob Bornecrantz | 04e9e94 | 2010-05-28 11:21:56 +0200 | [diff] [blame] | 166 | BUG_ON(!ld->num_active && ld->fb); |
| 167 | if (vfb != ld->fb) { |
| 168 | if (ld->fb && ld->fb->unpin) |
| 169 | ld->fb->unpin(ld->fb); |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 170 | vmw_svga_enable(vmw_priv); |
Jakob Bornecrantz | 04e9e94 | 2010-05-28 11:21:56 +0200 | [diff] [blame] | 171 | if (vfb->pin) |
| 172 | vfb->pin(vfb); |
| 173 | ld->fb = vfb; |
| 174 | } |
| 175 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 176 | if (!list_empty(&ldu->active)) |
| 177 | return 0; |
| 178 | |
| 179 | at = &ld->active; |
| 180 | list_for_each_entry(entry, &ld->active, active) { |
Jakob Bornecrantz | bbfad33 | 2010-05-28 11:22:01 +0200 | [diff] [blame] | 181 | if (entry->base.unit > ldu->base.unit) |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 182 | break; |
| 183 | |
| 184 | at = &entry->active; |
| 185 | } |
| 186 | |
| 187 | list_add(&ldu->active, at); |
Jakob Bornecrantz | 04e9e94 | 2010-05-28 11:21:56 +0200 | [diff] [blame] | 188 | |
| 189 | ld->num_active++; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 190 | |
| 191 | return 0; |
| 192 | } |
| 193 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 194 | /** |
| 195 | * vmw_ldu_crtc_mode_set_nofb - Enable svga |
| 196 | * |
| 197 | * @crtc: CRTC associated with the new screen |
| 198 | * |
| 199 | * For LDU, just enable the svga |
| 200 | */ |
| 201 | static void vmw_ldu_crtc_mode_set_nofb(struct drm_crtc *crtc) |
| 202 | { |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * vmw_ldu_crtc_helper_prepare - Noop |
| 207 | * |
| 208 | * @crtc: CRTC associated with the new screen |
| 209 | * |
| 210 | * Prepares the CRTC for a mode set, but we don't need to do anything here. |
| 211 | * |
| 212 | */ |
| 213 | static void vmw_ldu_crtc_helper_prepare(struct drm_crtc *crtc) |
| 214 | { |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * vmw_ldu_crtc_helper_commit - Noop |
| 219 | * |
| 220 | * @crtc: CRTC associated with the new screen |
| 221 | * |
| 222 | * This is called after a mode set has been completed. Here's |
| 223 | * usually a good place to call vmw_ldu_add_active/vmw_ldu_del_active |
| 224 | * but since for LDU the display plane is closely tied to the |
| 225 | * CRTC, it makes more sense to do those at plane update time. |
| 226 | */ |
| 227 | static void vmw_ldu_crtc_helper_commit(struct drm_crtc *crtc) |
| 228 | { |
| 229 | struct vmw_private *dev_priv; |
| 230 | struct vmw_legacy_display_unit *ldu; |
| 231 | struct vmw_framebuffer *vfb; |
| 232 | struct drm_framebuffer *fb; |
| 233 | |
| 234 | |
| 235 | ldu = vmw_crtc_to_ldu(crtc); |
| 236 | dev_priv = vmw_priv(crtc->dev); |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 237 | fb = crtc->primary->state->fb; |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 238 | |
| 239 | vfb = (fb) ? vmw_framebuffer_to_vfb(fb) : NULL; |
| 240 | |
| 241 | if (vfb) |
| 242 | vmw_ldu_add_active(dev_priv, ldu, vfb); |
| 243 | else |
| 244 | vmw_ldu_del_active(dev_priv, ldu); |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 245 | |
| 246 | vmw_ldu_commit_list(dev_priv); |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | /** |
| 250 | * vmw_ldu_crtc_helper_disable - Turns off CRTC |
| 251 | * |
| 252 | * @crtc: CRTC to be turned off |
| 253 | */ |
| 254 | static void vmw_ldu_crtc_helper_disable(struct drm_crtc *crtc) |
| 255 | { |
| 256 | } |
| 257 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 258 | static int vmw_ldu_crtc_set_config(struct drm_mode_set *set) |
| 259 | { |
| 260 | struct vmw_private *dev_priv; |
| 261 | struct vmw_legacy_display_unit *ldu; |
| 262 | struct drm_connector *connector; |
| 263 | struct drm_display_mode *mode; |
| 264 | struct drm_encoder *encoder; |
| 265 | struct vmw_framebuffer *vfb; |
| 266 | struct drm_framebuffer *fb; |
| 267 | struct drm_crtc *crtc; |
| 268 | |
| 269 | if (!set) |
| 270 | return -EINVAL; |
| 271 | |
| 272 | if (!set->crtc) |
| 273 | return -EINVAL; |
| 274 | |
| 275 | /* get the ldu */ |
| 276 | crtc = set->crtc; |
| 277 | ldu = vmw_crtc_to_ldu(crtc); |
| 278 | vfb = set->fb ? vmw_framebuffer_to_vfb(set->fb) : NULL; |
| 279 | dev_priv = vmw_priv(crtc->dev); |
| 280 | |
| 281 | if (set->num_connectors > 1) { |
| 282 | DRM_ERROR("to many connectors\n"); |
| 283 | return -EINVAL; |
| 284 | } |
| 285 | |
| 286 | if (set->num_connectors == 1 && |
| 287 | set->connectors[0] != &ldu->base.connector) { |
| 288 | DRM_ERROR("connector doesn't match %p %p\n", |
| 289 | set->connectors[0], &ldu->base.connector); |
| 290 | return -EINVAL; |
| 291 | } |
| 292 | |
| 293 | /* ldu only supports one fb active at the time */ |
| 294 | if (dev_priv->ldu_priv->fb && vfb && |
Jakob Bornecrantz | 6a591a9 | 2010-05-28 11:21:55 +0200 | [diff] [blame] | 295 | !(dev_priv->ldu_priv->num_active == 1 && |
| 296 | !list_empty(&ldu->active)) && |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 297 | dev_priv->ldu_priv->fb != vfb) { |
| 298 | DRM_ERROR("Multiple framebuffers not supported\n"); |
| 299 | return -EINVAL; |
| 300 | } |
| 301 | |
| 302 | /* since they always map one to one these are safe */ |
| 303 | connector = &ldu->base.connector; |
| 304 | encoder = &ldu->base.encoder; |
| 305 | |
| 306 | /* should we turn the crtc off? */ |
| 307 | if (set->num_connectors == 0 || !set->mode || !set->fb) { |
| 308 | |
| 309 | connector->encoder = NULL; |
| 310 | encoder->crtc = NULL; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 311 | crtc->primary->fb = NULL; |
Thomas Hellstrom | c6c1f32 | 2013-11-14 03:11:10 -0800 | [diff] [blame] | 312 | crtc->enabled = false; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 313 | |
| 314 | vmw_ldu_del_active(dev_priv, ldu); |
| 315 | |
Michel Dänzer | 0bef23f | 2011-08-31 07:42:50 +0000 | [diff] [blame] | 316 | return vmw_ldu_commit_list(dev_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | |
| 320 | /* we now know we want to set a mode */ |
| 321 | mode = set->mode; |
| 322 | fb = set->fb; |
| 323 | |
| 324 | if (set->x + mode->hdisplay > fb->width || |
| 325 | set->y + mode->vdisplay > fb->height) { |
| 326 | DRM_ERROR("set outside of framebuffer\n"); |
| 327 | return -EINVAL; |
| 328 | } |
| 329 | |
Thomas Hellstrom | 153b3d5 | 2015-06-25 10:47:43 -0700 | [diff] [blame] | 330 | vmw_svga_enable(dev_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 331 | |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 332 | crtc->primary->fb = fb; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 333 | encoder->crtc = crtc; |
| 334 | connector->encoder = encoder; |
| 335 | crtc->x = set->x; |
| 336 | crtc->y = set->y; |
| 337 | crtc->mode = *mode; |
Thomas Hellstrom | c6c1f32 | 2013-11-14 03:11:10 -0800 | [diff] [blame] | 338 | crtc->enabled = true; |
Thomas Hellstrom | 6dd687b | 2016-02-12 09:57:15 +0100 | [diff] [blame] | 339 | ldu->base.set_gui_x = set->x; |
| 340 | ldu->base.set_gui_y = set->y; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 341 | |
| 342 | vmw_ldu_add_active(dev_priv, ldu, vfb); |
| 343 | |
Michel Dänzer | 0bef23f | 2011-08-31 07:42:50 +0000 | [diff] [blame] | 344 | return vmw_ldu_commit_list(dev_priv); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 347 | static const struct drm_crtc_funcs vmw_legacy_crtc_funcs = { |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 348 | .gamma_set = vmw_du_crtc_gamma_set, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 349 | .destroy = vmw_ldu_crtc_destroy, |
Sinclair Yeh | 9c2542a | 2017-03-23 11:33:39 -0700 | [diff] [blame] | 350 | .reset = vmw_du_crtc_reset, |
| 351 | .atomic_duplicate_state = vmw_du_crtc_duplicate_state, |
| 352 | .atomic_destroy_state = vmw_du_crtc_destroy_state, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 353 | .set_config = vmw_ldu_crtc_set_config, |
| 354 | }; |
| 355 | |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 356 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 357 | /* |
| 358 | * Legacy Display Unit encoder functions |
| 359 | */ |
| 360 | |
| 361 | static void vmw_ldu_encoder_destroy(struct drm_encoder *encoder) |
| 362 | { |
| 363 | vmw_ldu_destroy(vmw_encoder_to_ldu(encoder)); |
| 364 | } |
| 365 | |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 366 | static const struct drm_encoder_funcs vmw_legacy_encoder_funcs = { |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 367 | .destroy = vmw_ldu_encoder_destroy, |
| 368 | }; |
| 369 | |
| 370 | /* |
| 371 | * Legacy Display Unit connector functions |
| 372 | */ |
| 373 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 374 | static void vmw_ldu_connector_destroy(struct drm_connector *connector) |
| 375 | { |
| 376 | vmw_ldu_destroy(vmw_connector_to_ldu(connector)); |
| 377 | } |
| 378 | |
Ville Syrjälä | d7955fc | 2015-12-15 12:21:15 +0100 | [diff] [blame] | 379 | static const struct drm_connector_funcs vmw_legacy_connector_funcs = { |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 380 | .dpms = vmw_du_connector_dpms, |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 381 | .detect = vmw_du_connector_detect, |
| 382 | .fill_modes = vmw_du_connector_fill_modes, |
| 383 | .set_property = vmw_du_connector_set_property, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 384 | .destroy = vmw_ldu_connector_destroy, |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 385 | .reset = vmw_du_connector_reset, |
| 386 | .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, |
| 387 | .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, |
| 388 | .atomic_set_property = vmw_du_connector_atomic_set_property, |
| 389 | .atomic_get_property = vmw_du_connector_atomic_get_property, |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 390 | }; |
| 391 | |
Sinclair Yeh | d947d1b | 2017-03-23 14:23:20 -0700 | [diff] [blame] | 392 | static const struct |
| 393 | drm_connector_helper_funcs vmw_ldu_connector_helper_funcs = { |
| 394 | .best_encoder = drm_atomic_helper_best_encoder, |
| 395 | }; |
| 396 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 397 | /* |
| 398 | * Legacy Display Plane Functions |
| 399 | */ |
| 400 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 401 | /** |
| 402 | * vmw_ldu_primary_plane_cleanup_fb - Unpin fb |
| 403 | * |
| 404 | * @plane: display plane |
| 405 | * @old_state: Contains the FB to clean up |
| 406 | * |
| 407 | * Unpins the display surface |
| 408 | * |
| 409 | * Returns 0 on success |
| 410 | */ |
| 411 | static void |
| 412 | vmw_ldu_primary_plane_cleanup_fb(struct drm_plane *plane, |
| 413 | struct drm_plane_state *old_state) |
| 414 | { |
| 415 | } |
| 416 | |
| 417 | |
| 418 | /** |
| 419 | * vmw_ldu_primary_plane_prepare_fb - |
| 420 | * |
| 421 | * @plane: display plane |
| 422 | * @new_state: info on the new plane state, including the FB |
| 423 | * |
| 424 | * Returns 0 on success |
| 425 | */ |
| 426 | static int |
| 427 | vmw_ldu_primary_plane_prepare_fb(struct drm_plane *plane, |
| 428 | struct drm_plane_state *new_state) |
| 429 | { |
| 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | |
| 434 | static void |
| 435 | vmw_ldu_primary_plane_atomic_update(struct drm_plane *plane, |
| 436 | struct drm_plane_state *old_state) |
| 437 | { |
| 438 | } |
| 439 | |
| 440 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 441 | static const struct drm_plane_funcs vmw_ldu_plane_funcs = { |
| 442 | .update_plane = drm_primary_helper_update, |
| 443 | .disable_plane = drm_primary_helper_disable, |
| 444 | .destroy = vmw_du_primary_plane_destroy, |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 445 | .reset = vmw_du_plane_reset, |
| 446 | .atomic_duplicate_state = vmw_du_plane_duplicate_state, |
| 447 | .atomic_destroy_state = vmw_du_plane_destroy_state, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 448 | }; |
| 449 | |
| 450 | static const struct drm_plane_funcs vmw_ldu_cursor_funcs = { |
| 451 | .update_plane = vmw_du_cursor_plane_update, |
| 452 | .disable_plane = vmw_du_cursor_plane_disable, |
| 453 | .destroy = vmw_du_cursor_plane_destroy, |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 454 | .reset = vmw_du_plane_reset, |
| 455 | .atomic_duplicate_state = vmw_du_plane_duplicate_state, |
| 456 | .atomic_destroy_state = vmw_du_plane_destroy_state, |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 457 | }; |
| 458 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 459 | /* |
| 460 | * Atomic Helpers |
| 461 | */ |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 462 | static const struct |
| 463 | drm_plane_helper_funcs vmw_ldu_cursor_plane_helper_funcs = { |
| 464 | .atomic_check = vmw_du_cursor_plane_atomic_check, |
| 465 | .atomic_update = vmw_du_cursor_plane_atomic_update, |
| 466 | .prepare_fb = vmw_du_cursor_plane_prepare_fb, |
| 467 | .cleanup_fb = vmw_du_plane_cleanup_fb, |
| 468 | }; |
| 469 | |
| 470 | static const struct |
| 471 | drm_plane_helper_funcs vmw_ldu_primary_plane_helper_funcs = { |
| 472 | .atomic_check = vmw_du_primary_plane_atomic_check, |
| 473 | .atomic_update = vmw_ldu_primary_plane_atomic_update, |
| 474 | .prepare_fb = vmw_ldu_primary_plane_prepare_fb, |
| 475 | .cleanup_fb = vmw_ldu_primary_plane_cleanup_fb, |
| 476 | }; |
| 477 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 478 | static const struct drm_crtc_helper_funcs vmw_ldu_crtc_helper_funcs = { |
| 479 | .prepare = vmw_ldu_crtc_helper_prepare, |
| 480 | .commit = vmw_ldu_crtc_helper_commit, |
| 481 | .disable = vmw_ldu_crtc_helper_disable, |
| 482 | .mode_set = drm_helper_crtc_mode_set, |
| 483 | .mode_set_nofb = vmw_ldu_crtc_mode_set_nofb, |
| 484 | .atomic_check = vmw_du_crtc_atomic_check, |
| 485 | .atomic_begin = vmw_du_crtc_atomic_begin, |
| 486 | .atomic_flush = vmw_du_crtc_atomic_flush, |
| 487 | }; |
| 488 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 489 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 490 | static int vmw_ldu_init(struct vmw_private *dev_priv, unsigned unit) |
| 491 | { |
| 492 | struct vmw_legacy_display_unit *ldu; |
| 493 | struct drm_device *dev = dev_priv->dev; |
| 494 | struct drm_connector *connector; |
| 495 | struct drm_encoder *encoder; |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 496 | struct drm_plane *primary, *cursor; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 497 | struct drm_crtc *crtc; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 498 | int ret; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 499 | |
| 500 | ldu = kzalloc(sizeof(*ldu), GFP_KERNEL); |
| 501 | if (!ldu) |
| 502 | return -ENOMEM; |
| 503 | |
Jakob Bornecrantz | bbfad33 | 2010-05-28 11:22:01 +0200 | [diff] [blame] | 504 | ldu->base.unit = unit; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 505 | crtc = &ldu->base.crtc; |
| 506 | encoder = &ldu->base.encoder; |
| 507 | connector = &ldu->base.connector; |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 508 | primary = &ldu->base.primary; |
| 509 | cursor = &ldu->base.cursor; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 510 | |
Jakob Bornecrantz | 1ae1ddd | 2010-05-28 11:21:58 +0200 | [diff] [blame] | 511 | INIT_LIST_HEAD(&ldu->active); |
| 512 | |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 513 | ldu->base.pref_active = (unit == 0); |
Jakob Bornecrantz | eb4f923 | 2012-02-09 16:56:46 +0100 | [diff] [blame] | 514 | ldu->base.pref_width = dev_priv->initial_width; |
| 515 | ldu->base.pref_height = dev_priv->initial_height; |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 516 | ldu->base.pref_mode = NULL; |
Sinclair Yeh | 9c2542a | 2017-03-23 11:33:39 -0700 | [diff] [blame] | 517 | |
| 518 | /* |
| 519 | * Remove this after enabling atomic because property values can |
| 520 | * only exist in a state object |
| 521 | */ |
Thomas Hellstrom | 6987427 | 2011-11-02 09:43:11 +0100 | [diff] [blame] | 522 | ldu->base.is_implicit = true; |
Jakob Bornecrantz | d8bd19d | 2010-06-01 11:54:20 +0200 | [diff] [blame] | 523 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 524 | /* Initialize primary plane */ |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 525 | vmw_du_plane_reset(primary); |
| 526 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 527 | ret = drm_universal_plane_init(dev, &ldu->base.primary, |
| 528 | 0, &vmw_ldu_plane_funcs, |
| 529 | vmw_primary_plane_formats, |
| 530 | ARRAY_SIZE(vmw_primary_plane_formats), |
| 531 | DRM_PLANE_TYPE_PRIMARY, NULL); |
| 532 | if (ret) { |
| 533 | DRM_ERROR("Failed to initialize primary plane"); |
| 534 | goto err_free; |
| 535 | } |
| 536 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 537 | drm_plane_helper_add(primary, &vmw_ldu_primary_plane_helper_funcs); |
| 538 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 539 | /* Initialize cursor plane */ |
Sinclair Yeh | cc5ec45 | 2017-03-23 11:36:05 -0700 | [diff] [blame] | 540 | vmw_du_plane_reset(cursor); |
| 541 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 542 | ret = drm_universal_plane_init(dev, &ldu->base.cursor, |
| 543 | 0, &vmw_ldu_cursor_funcs, |
| 544 | vmw_cursor_plane_formats, |
| 545 | ARRAY_SIZE(vmw_cursor_plane_formats), |
| 546 | DRM_PLANE_TYPE_CURSOR, NULL); |
| 547 | if (ret) { |
| 548 | DRM_ERROR("Failed to initialize cursor plane"); |
| 549 | drm_plane_cleanup(&ldu->base.primary); |
| 550 | goto err_free; |
| 551 | } |
| 552 | |
Sinclair Yeh | 060e2ad | 2017-03-23 14:18:32 -0700 | [diff] [blame] | 553 | drm_plane_helper_add(cursor, &vmw_ldu_cursor_plane_helper_funcs); |
| 554 | |
| 555 | |
| 556 | vmw_du_connector_reset(connector); |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 557 | ret = drm_connector_init(dev, connector, &vmw_legacy_connector_funcs, |
| 558 | DRM_MODE_CONNECTOR_VIRTUAL); |
| 559 | if (ret) { |
| 560 | DRM_ERROR("Failed to initialize connector\n"); |
| 561 | goto err_free; |
| 562 | } |
Sinclair Yeh | d947d1b | 2017-03-23 14:23:20 -0700 | [diff] [blame] | 563 | |
| 564 | drm_connector_helper_add(connector, &vmw_ldu_connector_helper_funcs); |
Jakob Bornecrantz | 626ab77 | 2011-10-04 20:13:20 +0200 | [diff] [blame] | 565 | connector->status = vmw_du_connector_detect(connector, true); |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 566 | vmw_connector_state_to_vcs(connector->state)->is_implicit = true; |
| 567 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 568 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 569 | ret = drm_encoder_init(dev, encoder, &vmw_legacy_encoder_funcs, |
| 570 | DRM_MODE_ENCODER_VIRTUAL, NULL); |
| 571 | if (ret) { |
| 572 | DRM_ERROR("Failed to initialize encoder\n"); |
| 573 | goto err_free_connector; |
| 574 | } |
| 575 | |
| 576 | (void) drm_mode_connector_attach_encoder(connector, encoder); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 577 | encoder->possible_crtcs = (1 << unit); |
| 578 | encoder->possible_clones = 0; |
| 579 | |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 580 | ret = drm_connector_register(connector); |
| 581 | if (ret) { |
| 582 | DRM_ERROR("Failed to register connector\n"); |
| 583 | goto err_free_encoder; |
| 584 | } |
Thomas Hellstrom | 6a0a7a9 | 2013-12-02 06:04:38 -0800 | [diff] [blame] | 585 | |
Sinclair Yeh | d7721ca | 2017-03-23 11:48:44 -0700 | [diff] [blame] | 586 | |
| 587 | vmw_du_crtc_reset(crtc); |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 588 | ret = drm_crtc_init_with_planes(dev, crtc, &ldu->base.primary, |
| 589 | &ldu->base.cursor, |
| 590 | &vmw_legacy_crtc_funcs, NULL); |
| 591 | if (ret) { |
| 592 | DRM_ERROR("Failed to initialize CRTC\n"); |
| 593 | goto err_free_unregister; |
| 594 | } |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 595 | |
Sinclair Yeh | 06ec419 | 2017-03-23 13:14:54 -0700 | [diff] [blame] | 596 | drm_crtc_helper_add(crtc, &vmw_ldu_crtc_helper_funcs); |
| 597 | |
Michel Dänzer | f01b7ba | 2011-08-31 07:42:47 +0000 | [diff] [blame] | 598 | drm_mode_crtc_set_gamma_size(crtc, 256); |
| 599 | |
Rob Clark | b8b163b | 2012-10-11 20:47:14 -0500 | [diff] [blame] | 600 | drm_object_attach_property(&connector->base, |
Thomas Hellstrom | 578e609 | 2016-02-12 09:45:42 +0100 | [diff] [blame] | 601 | dev_priv->hotplug_mode_update_property, 1); |
| 602 | drm_object_attach_property(&connector->base, |
| 603 | dev->mode_config.suggested_x_property, 0); |
| 604 | drm_object_attach_property(&connector->base, |
| 605 | dev->mode_config.suggested_y_property, 0); |
Thomas Hellstrom | 76404ac | 2016-02-12 09:55:45 +0100 | [diff] [blame] | 606 | if (dev_priv->implicit_placement_property) |
| 607 | drm_object_attach_property |
| 608 | (&connector->base, |
| 609 | dev_priv->implicit_placement_property, |
| 610 | 1); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 611 | |
| 612 | return 0; |
Sinclair Yeh | 36cc79b | 2017-03-23 11:28:11 -0700 | [diff] [blame] | 613 | |
| 614 | err_free_unregister: |
| 615 | drm_connector_unregister(connector); |
| 616 | err_free_encoder: |
| 617 | drm_encoder_cleanup(encoder); |
| 618 | err_free_connector: |
| 619 | drm_connector_cleanup(connector); |
| 620 | err_free: |
| 621 | kfree(ldu); |
| 622 | return ret; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 625 | int vmw_kms_ldu_init_display(struct vmw_private *dev_priv) |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 626 | { |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 627 | struct drm_device *dev = dev_priv->dev; |
Jakob Bornecrantz | 74b5ea3 | 2011-10-17 11:59:44 +0200 | [diff] [blame] | 628 | int i, ret; |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 629 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 630 | if (dev_priv->ldu_priv) { |
| 631 | DRM_INFO("ldu system already on\n"); |
| 632 | return -EINVAL; |
| 633 | } |
| 634 | |
Joe Perches | 85b54e0 | 2010-10-31 22:33:53 +0000 | [diff] [blame] | 635 | dev_priv->ldu_priv = kmalloc(sizeof(*dev_priv->ldu_priv), GFP_KERNEL); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 636 | if (!dev_priv->ldu_priv) |
| 637 | return -ENOMEM; |
| 638 | |
| 639 | INIT_LIST_HEAD(&dev_priv->ldu_priv->active); |
| 640 | dev_priv->ldu_priv->num_active = 0; |
Jakob Bornecrantz | d7e1958 | 2010-05-28 11:21:59 +0200 | [diff] [blame] | 641 | dev_priv->ldu_priv->last_num_active = 0; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 642 | dev_priv->ldu_priv->fb = NULL; |
| 643 | |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 644 | /* for old hardware without multimon only enable one display */ |
| 645 | if (dev_priv->capabilities & SVGA_CAP_MULTIMON) |
| 646 | ret = drm_vblank_init(dev, VMWGFX_NUM_DISPLAY_UNITS); |
| 647 | else |
| 648 | ret = drm_vblank_init(dev, 1); |
| 649 | if (ret != 0) |
| 650 | goto err_free; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 651 | |
Thomas Hellstrom | 76404ac | 2016-02-12 09:55:45 +0100 | [diff] [blame] | 652 | vmw_kms_create_implicit_placement_property(dev_priv, true); |
| 653 | |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 654 | if (dev_priv->capabilities & SVGA_CAP_MULTIMON) |
Jakob Bornecrantz | 56d1c78 | 2011-10-04 20:13:22 +0200 | [diff] [blame] | 655 | for (i = 0; i < VMWGFX_NUM_DISPLAY_UNITS; ++i) |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 656 | vmw_ldu_init(dev_priv, i); |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 657 | else |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 658 | vmw_ldu_init(dev_priv, 0); |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 659 | |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 660 | dev_priv->active_display_unit = vmw_du_legacy; |
| 661 | |
| 662 | DRM_INFO("Legacy Display Unit initialized\n"); |
| 663 | |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 664 | return 0; |
| 665 | |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 666 | err_free: |
| 667 | kfree(dev_priv->ldu_priv); |
| 668 | dev_priv->ldu_priv = NULL; |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 669 | return ret; |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 670 | } |
| 671 | |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 672 | int vmw_kms_ldu_close_display(struct vmw_private *dev_priv) |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 673 | { |
Thomas Hellstrom | 7a1c2f6 | 2010-10-01 10:21:49 +0200 | [diff] [blame] | 674 | struct drm_device *dev = dev_priv->dev; |
| 675 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 676 | if (!dev_priv->ldu_priv) |
| 677 | return -ENOSYS; |
| 678 | |
Jakob Bornecrantz | 60a16a3 | 2011-10-17 11:59:43 +0200 | [diff] [blame] | 679 | drm_vblank_cleanup(dev); |
| 680 | |
Jakob Bornecrantz | fb1d973 | 2009-12-10 00:19:58 +0000 | [diff] [blame] | 681 | BUG_ON(!list_empty(&dev_priv->ldu_priv->active)); |
| 682 | |
| 683 | kfree(dev_priv->ldu_priv); |
| 684 | |
| 685 | return 0; |
| 686 | } |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 687 | |
| 688 | |
| 689 | int vmw_kms_ldu_do_dmabuf_dirty(struct vmw_private *dev_priv, |
| 690 | struct vmw_framebuffer *framebuffer, |
| 691 | unsigned flags, unsigned color, |
| 692 | struct drm_clip_rect *clips, |
| 693 | unsigned num_clips, int increment) |
| 694 | { |
| 695 | size_t fifo_size; |
| 696 | int i; |
| 697 | |
| 698 | struct { |
| 699 | uint32_t header; |
| 700 | SVGAFifoCmdUpdate body; |
| 701 | } *cmd; |
| 702 | |
| 703 | fifo_size = sizeof(*cmd) * num_clips; |
| 704 | cmd = vmw_fifo_reserve(dev_priv, fifo_size); |
| 705 | if (unlikely(cmd == NULL)) { |
| 706 | DRM_ERROR("Fifo reserve failed.\n"); |
| 707 | return -ENOMEM; |
| 708 | } |
| 709 | |
| 710 | memset(cmd, 0, fifo_size); |
| 711 | for (i = 0; i < num_clips; i++, clips += increment) { |
Thomas Hellstrom | b9eb1a6 | 2015-04-02 02:39:45 -0700 | [diff] [blame] | 712 | cmd[i].header = SVGA_CMD_UPDATE; |
| 713 | cmd[i].body.x = clips->x1; |
| 714 | cmd[i].body.y = clips->y1; |
| 715 | cmd[i].body.width = clips->x2 - clips->x1; |
| 716 | cmd[i].body.height = clips->y2 - clips->y1; |
Sinclair Yeh | c8261a9 | 2015-06-26 01:23:42 -0700 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | vmw_fifo_commit(dev_priv, fifo_size); |
| 720 | return 0; |
| 721 | } |