KVM: PPC: Book3S HV: Don't use compound_order to determine host mapping size
[linux-2.6-microblaze.git] / drivers / staging / vboxvideo / vbox_mode.c
1 /*
2  * Copyright (C) 2013-2017 Oracle Corporation
3  * This file is based on ast_mode.c
4  * Copyright 2012 Red Hat Inc.
5  * Parts based on xf86-video-ast
6  * Copyright (c) 2005 ASPEED Technology Inc.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the
10  * "Software"), to deal in the Software without restriction, including
11  * without limitation the rights to use, copy, modify, merge, publish,
12  * distribute, sub license, and/or sell copies of the Software, and to
13  * permit persons to whom the Software is furnished to do so, subject to
14  * the following conditions:
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22  * USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * The above copyright notice and this permission notice (including the
25  * next paragraph) shall be included in all copies or substantial portions
26  * of the Software.
27  *
28  */
29 /*
30  * Authors: Dave Airlie <airlied@redhat.com>
31  *          Michael Thayer <michael.thayer@oracle.com,
32  *          Hans de Goede <hdegoede@redhat.com>
33  */
34 #include <linux/export.h>
35 #include <drm/drm_crtc_helper.h>
36 #include <drm/drm_plane_helper.h>
37
38 #include "vbox_drv.h"
39 #include "vboxvideo.h"
40 #include "hgsmi_channels.h"
41
42 static int vbox_cursor_set2(struct drm_crtc *crtc, struct drm_file *file_priv,
43                             u32 handle, u32 width, u32 height,
44                             s32 hot_x, s32 hot_y);
45 static int vbox_cursor_move(struct drm_crtc *crtc, int x, int y);
46
47 /**
48  * Set a graphics mode.  Poke any required values into registers, do an HGSMI
49  * mode set and tell the host we support advanced graphics functions.
50  */
51 static void vbox_do_modeset(struct drm_crtc *crtc,
52                             const struct drm_display_mode *mode)
53 {
54         struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
55         struct vbox_private *vbox;
56         int width, height, bpp, pitch;
57         u16 flags;
58         s32 x_offset, y_offset;
59
60         vbox = crtc->dev->dev_private;
61         width = mode->hdisplay ? mode->hdisplay : 640;
62         height = mode->vdisplay ? mode->vdisplay : 480;
63         bpp = crtc->enabled ? CRTC_FB(crtc)->format->cpp[0] * 8 : 32;
64         pitch = crtc->enabled ? CRTC_FB(crtc)->pitches[0] : width * bpp / 8;
65         x_offset = vbox->single_framebuffer ? crtc->x : vbox_crtc->x_hint;
66         y_offset = vbox->single_framebuffer ? crtc->y : vbox_crtc->y_hint;
67
68         /*
69          * This is the old way of setting graphics modes.  It assumed one screen
70          * and a frame-buffer at the start of video RAM.  On older versions of
71          * VirtualBox, certain parts of the code still assume that the first
72          * screen is programmed this way, so try to fake it.
73          */
74         if (vbox_crtc->crtc_id == 0 && crtc->enabled &&
75             vbox_crtc->fb_offset / pitch < 0xffff - crtc->y &&
76             vbox_crtc->fb_offset % (bpp / 8) == 0) {
77                 vbox_write_ioport(VBE_DISPI_INDEX_XRES, width);
78                 vbox_write_ioport(VBE_DISPI_INDEX_YRES, height);
79                 vbox_write_ioport(VBE_DISPI_INDEX_VIRT_WIDTH, pitch * 8 / bpp);
80                 vbox_write_ioport(VBE_DISPI_INDEX_BPP,
81                                   CRTC_FB(crtc)->format->cpp[0] * 8);
82                 vbox_write_ioport(VBE_DISPI_INDEX_ENABLE, VBE_DISPI_ENABLED);
83                 vbox_write_ioport(
84                         VBE_DISPI_INDEX_X_OFFSET,
85                         vbox_crtc->fb_offset % pitch / bpp * 8 + crtc->x);
86                 vbox_write_ioport(VBE_DISPI_INDEX_Y_OFFSET,
87                                   vbox_crtc->fb_offset / pitch + crtc->y);
88         }
89
90         flags = VBVA_SCREEN_F_ACTIVE;
91         flags |= (crtc->enabled && !vbox_crtc->blanked) ?
92                  0 : VBVA_SCREEN_F_BLANK;
93         flags |= vbox_crtc->disconnected ? VBVA_SCREEN_F_DISABLED : 0;
94         hgsmi_process_display_info(vbox->guest_pool, vbox_crtc->crtc_id,
95                                    x_offset, y_offset,
96                                    crtc->x * bpp / 8 + crtc->y * pitch,
97                                    pitch, width, height,
98                                    vbox_crtc->blanked ? 0 : bpp, flags);
99 }
100
101 static int vbox_set_view(struct drm_crtc *crtc)
102 {
103         struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
104         struct vbox_private *vbox = crtc->dev->dev_private;
105         struct vbva_infoview *p;
106
107         /*
108          * Tell the host about the view.  This design originally targeted the
109          * Windows XP driver architecture and assumed that each screen would
110          * have a dedicated frame buffer with the command buffer following it,
111          * the whole being a "view".  The host works out which screen a command
112          * buffer belongs to by checking whether it is in the first view, then
113          * whether it is in the second and so on.  The first match wins.  We
114          * cheat around this by making the first view be the managed memory
115          * plus the first command buffer, the second the same plus the second
116          * buffer and so on.
117          */
118         p = hgsmi_buffer_alloc(vbox->guest_pool, sizeof(*p),
119                                HGSMI_CH_VBVA, VBVA_INFO_VIEW);
120         if (!p)
121                 return -ENOMEM;
122
123         p->view_index = vbox_crtc->crtc_id;
124         p->view_offset = vbox_crtc->fb_offset;
125         p->view_size = vbox->available_vram_size - vbox_crtc->fb_offset +
126                        vbox_crtc->crtc_id * VBVA_MIN_BUFFER_SIZE;
127         p->max_screen_size = vbox->available_vram_size - vbox_crtc->fb_offset;
128
129         hgsmi_buffer_submit(vbox->guest_pool, p);
130         hgsmi_buffer_free(vbox->guest_pool, p);
131
132         return 0;
133 }
134
135 static void vbox_crtc_dpms(struct drm_crtc *crtc, int mode)
136 {
137         struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
138         struct vbox_private *vbox = crtc->dev->dev_private;
139
140         switch (mode) {
141         case DRM_MODE_DPMS_ON:
142                 vbox_crtc->blanked = false;
143                 break;
144         case DRM_MODE_DPMS_STANDBY:
145         case DRM_MODE_DPMS_SUSPEND:
146         case DRM_MODE_DPMS_OFF:
147                 vbox_crtc->blanked = true;
148                 break;
149         }
150
151         mutex_lock(&vbox->hw_mutex);
152         vbox_do_modeset(crtc, &crtc->hwmode);
153         mutex_unlock(&vbox->hw_mutex);
154 }
155
156 static bool vbox_crtc_mode_fixup(struct drm_crtc *crtc,
157                                  const struct drm_display_mode *mode,
158                                  struct drm_display_mode *adjusted_mode)
159 {
160         return true;
161 }
162
163 /*
164  * Try to map the layout of virtual screens to the range of the input device.
165  * Return true if we need to re-set the crtc modes due to screen offset
166  * changes.
167  */
168 static bool vbox_set_up_input_mapping(struct vbox_private *vbox)
169 {
170         struct drm_crtc *crtci;
171         struct drm_connector *connectori;
172         struct drm_framebuffer *fb1 = NULL;
173         bool single_framebuffer = true;
174         bool old_single_framebuffer = vbox->single_framebuffer;
175         u16 width = 0, height = 0;
176
177         /*
178          * Are we using an X.Org-style single large frame-buffer for all crtcs?
179          * If so then screen layout can be deduced from the crtc offsets.
180          * Same fall-back if this is the fbdev frame-buffer.
181          */
182         list_for_each_entry(crtci, &vbox->dev->mode_config.crtc_list, head) {
183                 if (!fb1) {
184                         fb1 = CRTC_FB(crtci);
185                         if (to_vbox_framebuffer(fb1) == &vbox->fbdev->afb)
186                                 break;
187                 } else if (CRTC_FB(crtci) && fb1 != CRTC_FB(crtci)) {
188                         single_framebuffer = false;
189                 }
190         }
191         if (single_framebuffer) {
192                 list_for_each_entry(crtci, &vbox->dev->mode_config.crtc_list,
193                                     head) {
194                         if (to_vbox_crtc(crtci)->crtc_id != 0)
195                                 continue;
196
197                         vbox->single_framebuffer = true;
198                         vbox->input_mapping_width = CRTC_FB(crtci)->width;
199                         vbox->input_mapping_height = CRTC_FB(crtci)->height;
200                         return old_single_framebuffer !=
201                                vbox->single_framebuffer;
202                 }
203         }
204         /* Otherwise calculate the total span of all screens. */
205         list_for_each_entry(connectori, &vbox->dev->mode_config.connector_list,
206                             head) {
207                 struct vbox_connector *vbox_connector =
208                     to_vbox_connector(connectori);
209                 struct vbox_crtc *vbox_crtc = vbox_connector->vbox_crtc;
210
211                 width = max_t(u16, width, vbox_crtc->x_hint +
212                                           vbox_connector->mode_hint.width);
213                 height = max_t(u16, height, vbox_crtc->y_hint +
214                                             vbox_connector->mode_hint.height);
215         }
216
217         vbox->single_framebuffer = false;
218         vbox->input_mapping_width = width;
219         vbox->input_mapping_height = height;
220
221         return old_single_framebuffer != vbox->single_framebuffer;
222 }
223
224 static int vbox_crtc_do_set_base(struct drm_crtc *crtc,
225                                  struct drm_framebuffer *old_fb,
226                                  struct drm_framebuffer *new_fb,
227                                  int x, int y)
228 {
229         struct vbox_private *vbox = crtc->dev->dev_private;
230         struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
231         struct drm_gem_object *obj;
232         struct vbox_framebuffer *vbox_fb;
233         struct vbox_bo *bo;
234         int ret;
235         u64 gpu_addr;
236
237         /* Unpin the previous fb. */
238         if (old_fb) {
239                 vbox_fb = to_vbox_framebuffer(old_fb);
240                 obj = vbox_fb->obj;
241                 bo = gem_to_vbox_bo(obj);
242                 ret = vbox_bo_reserve(bo, false);
243                 if (ret)
244                         return ret;
245
246                 vbox_bo_unpin(bo);
247                 vbox_bo_unreserve(bo);
248         }
249
250         vbox_fb = to_vbox_framebuffer(new_fb);
251         obj = vbox_fb->obj;
252         bo = gem_to_vbox_bo(obj);
253
254         ret = vbox_bo_reserve(bo, false);
255         if (ret)
256                 return ret;
257
258         ret = vbox_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr);
259         if (ret) {
260                 vbox_bo_unreserve(bo);
261                 return ret;
262         }
263
264         if (&vbox->fbdev->afb == vbox_fb)
265                 vbox_fbdev_set_base(vbox, gpu_addr);
266         vbox_bo_unreserve(bo);
267
268         /* vbox_set_start_address_crt1(crtc, (u32)gpu_addr); */
269         vbox_crtc->fb_offset = gpu_addr;
270         if (vbox_set_up_input_mapping(vbox)) {
271                 struct drm_crtc *crtci;
272
273                 list_for_each_entry(crtci, &vbox->dev->mode_config.crtc_list,
274                                     head) {
275                         vbox_set_view(crtc);
276                         vbox_do_modeset(crtci, &crtci->mode);
277                 }
278         }
279
280         return 0;
281 }
282
283 static int vbox_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
284                                    struct drm_framebuffer *old_fb)
285 {
286         return vbox_crtc_do_set_base(crtc, old_fb, CRTC_FB(crtc), x, y);
287 }
288
289 static int vbox_crtc_mode_set(struct drm_crtc *crtc,
290                               struct drm_display_mode *mode,
291                               struct drm_display_mode *adjusted_mode,
292                               int x, int y, struct drm_framebuffer *old_fb)
293 {
294         struct vbox_private *vbox = crtc->dev->dev_private;
295         int ret;
296
297         vbox_crtc_mode_set_base(crtc, x, y, old_fb);
298
299         mutex_lock(&vbox->hw_mutex);
300         ret = vbox_set_view(crtc);
301         if (!ret)
302                 vbox_do_modeset(crtc, mode);
303         hgsmi_update_input_mapping(vbox->guest_pool, 0, 0,
304                                    vbox->input_mapping_width,
305                                    vbox->input_mapping_height);
306         mutex_unlock(&vbox->hw_mutex);
307
308         return ret;
309 }
310
311 static int vbox_crtc_page_flip(struct drm_crtc *crtc,
312                                struct drm_framebuffer *fb,
313                                struct drm_pending_vblank_event *event,
314                                uint32_t page_flip_flags,
315                                struct drm_modeset_acquire_ctx *ctx)
316 {
317         struct vbox_private *vbox = crtc->dev->dev_private;
318         struct drm_device *drm = vbox->dev;
319         unsigned long flags;
320         int rc;
321
322         rc = vbox_crtc_do_set_base(crtc, CRTC_FB(crtc), fb, 0, 0);
323         if (rc)
324                 return rc;
325
326         spin_lock_irqsave(&drm->event_lock, flags);
327
328         if (event)
329                 drm_crtc_send_vblank_event(crtc, event);
330
331         spin_unlock_irqrestore(&drm->event_lock, flags);
332
333         return 0;
334 }
335
336 static void vbox_crtc_disable(struct drm_crtc *crtc)
337 {
338 }
339
340 static void vbox_crtc_prepare(struct drm_crtc *crtc)
341 {
342 }
343
344 static void vbox_crtc_commit(struct drm_crtc *crtc)
345 {
346 }
347
348 static const struct drm_crtc_helper_funcs vbox_crtc_helper_funcs = {
349         .dpms = vbox_crtc_dpms,
350         .mode_fixup = vbox_crtc_mode_fixup,
351         .mode_set = vbox_crtc_mode_set,
352         /* .mode_set_base = vbox_crtc_mode_set_base, */
353         .disable = vbox_crtc_disable,
354         .prepare = vbox_crtc_prepare,
355         .commit = vbox_crtc_commit,
356 };
357
358 static void vbox_crtc_reset(struct drm_crtc *crtc)
359 {
360 }
361
362 static void vbox_crtc_destroy(struct drm_crtc *crtc)
363 {
364         drm_crtc_cleanup(crtc);
365         kfree(crtc);
366 }
367
368 static const struct drm_crtc_funcs vbox_crtc_funcs = {
369         .cursor_move = vbox_cursor_move,
370         .cursor_set2 = vbox_cursor_set2,
371         .reset = vbox_crtc_reset,
372         .set_config = drm_crtc_helper_set_config,
373         /* .gamma_set = vbox_crtc_gamma_set, */
374         .page_flip = vbox_crtc_page_flip,
375         .destroy = vbox_crtc_destroy,
376 };
377
378 static struct vbox_crtc *vbox_crtc_init(struct drm_device *dev, unsigned int i)
379 {
380         struct vbox_crtc *vbox_crtc;
381
382         vbox_crtc = kzalloc(sizeof(*vbox_crtc), GFP_KERNEL);
383         if (!vbox_crtc)
384                 return NULL;
385
386         vbox_crtc->crtc_id = i;
387
388         drm_crtc_init(dev, &vbox_crtc->base, &vbox_crtc_funcs);
389         drm_mode_crtc_set_gamma_size(&vbox_crtc->base, 256);
390         drm_crtc_helper_add(&vbox_crtc->base, &vbox_crtc_helper_funcs);
391
392         return vbox_crtc;
393 }
394
395 static void vbox_encoder_destroy(struct drm_encoder *encoder)
396 {
397         drm_encoder_cleanup(encoder);
398         kfree(encoder);
399 }
400
401 static struct drm_encoder *vbox_best_single_encoder(struct drm_connector
402                                                     *connector)
403 {
404         int enc_id = connector->encoder_ids[0];
405
406         /* pick the encoder ids */
407         if (enc_id)
408                 return drm_encoder_find(connector->dev, NULL, enc_id);
409
410         return NULL;
411 }
412
413 static const struct drm_encoder_funcs vbox_enc_funcs = {
414         .destroy = vbox_encoder_destroy,
415 };
416
417 static void vbox_encoder_dpms(struct drm_encoder *encoder, int mode)
418 {
419 }
420
421 static bool vbox_mode_fixup(struct drm_encoder *encoder,
422                             const struct drm_display_mode *mode,
423                             struct drm_display_mode *adjusted_mode)
424 {
425         return true;
426 }
427
428 static void vbox_encoder_mode_set(struct drm_encoder *encoder,
429                                   struct drm_display_mode *mode,
430                                   struct drm_display_mode *adjusted_mode)
431 {
432 }
433
434 static void vbox_encoder_prepare(struct drm_encoder *encoder)
435 {
436 }
437
438 static void vbox_encoder_commit(struct drm_encoder *encoder)
439 {
440 }
441
442 static const struct drm_encoder_helper_funcs vbox_enc_helper_funcs = {
443         .dpms = vbox_encoder_dpms,
444         .mode_fixup = vbox_mode_fixup,
445         .prepare = vbox_encoder_prepare,
446         .commit = vbox_encoder_commit,
447         .mode_set = vbox_encoder_mode_set,
448 };
449
450 static struct drm_encoder *vbox_encoder_init(struct drm_device *dev,
451                                              unsigned int i)
452 {
453         struct vbox_encoder *vbox_encoder;
454
455         vbox_encoder = kzalloc(sizeof(*vbox_encoder), GFP_KERNEL);
456         if (!vbox_encoder)
457                 return NULL;
458
459         drm_encoder_init(dev, &vbox_encoder->base, &vbox_enc_funcs,
460                          DRM_MODE_ENCODER_DAC, NULL);
461         drm_encoder_helper_add(&vbox_encoder->base, &vbox_enc_helper_funcs);
462
463         vbox_encoder->base.possible_crtcs = 1 << i;
464         return &vbox_encoder->base;
465 }
466
467 /**
468  * Generate EDID data with a mode-unique serial number for the virtual
469  *  monitor to try to persuade Unity that different modes correspond to
470  *  different monitors and it should not try to force the same resolution on
471  *  them.
472  */
473 static void vbox_set_edid(struct drm_connector *connector, int width,
474                           int height)
475 {
476         enum { EDID_SIZE = 128 };
477         unsigned char edid[EDID_SIZE] = {
478                 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, /* header */
479                 0x58, 0x58,     /* manufacturer (VBX) */
480                 0x00, 0x00,     /* product code */
481                 0x00, 0x00, 0x00, 0x00, /* serial number goes here */
482                 0x01,           /* week of manufacture */
483                 0x00,           /* year of manufacture */
484                 0x01, 0x03,     /* EDID version */
485                 0x80,           /* capabilities - digital */
486                 0x00,           /* horiz. res in cm, zero for projectors */
487                 0x00,           /* vert. res in cm */
488                 0x78,           /* display gamma (120 == 2.2). */
489                 0xEE,           /* features (standby, suspend, off, RGB, std */
490                                 /* colour space, preferred timing mode) */
491                 0xEE, 0x91, 0xA3, 0x54, 0x4C, 0x99, 0x26, 0x0F, 0x50, 0x54,
492                 /* chromaticity for standard colour space. */
493                 0x00, 0x00, 0x00,       /* no default timings */
494                 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
495                     0x01, 0x01,
496                 0x01, 0x01, 0x01, 0x01, /* no standard timings */
497                 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x06, 0x00, 0x02, 0x02,
498                     0x02, 0x02,
499                 /* descriptor block 1 goes below */
500                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
501                 /* descriptor block 2, monitor ranges */
502                 0x00, 0x00, 0x00, 0xFD, 0x00,
503                 0x00, 0xC8, 0x00, 0xC8, 0x64, 0x00, 0x0A, 0x20, 0x20, 0x20,
504                     0x20, 0x20,
505                 /* 0-200Hz vertical, 0-200KHz horizontal, 1000MHz pixel clock */
506                 0x20,
507                 /* descriptor block 3, monitor name */
508                 0x00, 0x00, 0x00, 0xFC, 0x00,
509                 'V', 'B', 'O', 'X', ' ', 'm', 'o', 'n', 'i', 't', 'o', 'r',
510                 '\n',
511                 /* descriptor block 4: dummy data */
512                 0x00, 0x00, 0x00, 0x10, 0x00,
513                 0x0A, 0x20, 0x20, 0x20, 0x20, 0x20,
514                 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
515                 0x20,
516                 0x00,           /* number of extensions */
517                 0x00            /* checksum goes here */
518         };
519         int clock = (width + 6) * (height + 6) * 60 / 10000;
520         unsigned int i, sum = 0;
521
522         edid[12] = width & 0xff;
523         edid[13] = width >> 8;
524         edid[14] = height & 0xff;
525         edid[15] = height >> 8;
526         edid[54] = clock & 0xff;
527         edid[55] = clock >> 8;
528         edid[56] = width & 0xff;
529         edid[58] = (width >> 4) & 0xf0;
530         edid[59] = height & 0xff;
531         edid[61] = (height >> 4) & 0xf0;
532         for (i = 0; i < EDID_SIZE - 1; ++i)
533                 sum += edid[i];
534         edid[EDID_SIZE - 1] = (0x100 - (sum & 0xFF)) & 0xFF;
535         drm_connector_update_edid_property(connector, (struct edid *)edid);
536 }
537
538 static int vbox_get_modes(struct drm_connector *connector)
539 {
540         struct vbox_connector *vbox_connector = NULL;
541         struct drm_display_mode *mode = NULL;
542         struct vbox_private *vbox = NULL;
543         unsigned int num_modes = 0;
544         int preferred_width, preferred_height;
545
546         vbox_connector = to_vbox_connector(connector);
547         vbox = connector->dev->dev_private;
548         /*
549          * Heuristic: we do not want to tell the host that we support dynamic
550          * resizing unless we feel confident that the user space client using
551          * the video driver can handle hot-plug events.  So the first time modes
552          * are queried after a "master" switch we tell the host that we do not,
553          * and immediately after we send the client a hot-plug notification as
554          * a test to see if they will respond and query again.
555          * That is also the reason why capabilities are reported to the host at
556          * this place in the code rather than elsewhere.
557          * We need to report the flags location before reporting the IRQ
558          * capability.
559          */
560         hgsmi_report_flags_location(vbox->guest_pool, GUEST_HEAP_OFFSET(vbox) +
561                                     HOST_FLAGS_OFFSET);
562         if (vbox_connector->vbox_crtc->crtc_id == 0)
563                 vbox_report_caps(vbox);
564         if (!vbox->initial_mode_queried) {
565                 if (vbox_connector->vbox_crtc->crtc_id == 0) {
566                         vbox->initial_mode_queried = true;
567                         vbox_report_hotplug(vbox);
568                 }
569                 return drm_add_modes_noedid(connector, 800, 600);
570         }
571         num_modes = drm_add_modes_noedid(connector, 2560, 1600);
572         preferred_width = vbox_connector->mode_hint.width ?
573                           vbox_connector->mode_hint.width : 1024;
574         preferred_height = vbox_connector->mode_hint.height ?
575                            vbox_connector->mode_hint.height : 768;
576         mode = drm_cvt_mode(connector->dev, preferred_width, preferred_height,
577                             60, false, false, false);
578         if (mode) {
579                 mode->type |= DRM_MODE_TYPE_PREFERRED;
580                 drm_mode_probed_add(connector, mode);
581                 ++num_modes;
582         }
583         vbox_set_edid(connector, preferred_width, preferred_height);
584
585         if (vbox_connector->vbox_crtc->x_hint != -1)
586                 drm_object_property_set_value(&connector->base,
587                         vbox->dev->mode_config.suggested_x_property,
588                         vbox_connector->vbox_crtc->x_hint);
589         else
590                 drm_object_property_set_value(&connector->base,
591                         vbox->dev->mode_config.suggested_x_property, 0);
592
593         if (vbox_connector->vbox_crtc->y_hint != -1)
594                 drm_object_property_set_value(&connector->base,
595                         vbox->dev->mode_config.suggested_y_property,
596                         vbox_connector->vbox_crtc->y_hint);
597         else
598                 drm_object_property_set_value(&connector->base,
599                         vbox->dev->mode_config.suggested_y_property, 0);
600
601         return num_modes;
602 }
603
604 static enum drm_mode_status vbox_mode_valid(struct drm_connector *connector,
605                            struct drm_display_mode *mode)
606 {
607         return MODE_OK;
608 }
609
610 static void vbox_connector_destroy(struct drm_connector *connector)
611 {
612         drm_connector_unregister(connector);
613         drm_connector_cleanup(connector);
614         kfree(connector);
615 }
616
617 static enum drm_connector_status
618 vbox_connector_detect(struct drm_connector *connector, bool force)
619 {
620         struct vbox_connector *vbox_connector;
621
622         vbox_connector = to_vbox_connector(connector);
623
624         return vbox_connector->mode_hint.disconnected ?
625             connector_status_disconnected : connector_status_connected;
626 }
627
628 static int vbox_fill_modes(struct drm_connector *connector, u32 max_x,
629                            u32 max_y)
630 {
631         struct vbox_connector *vbox_connector;
632         struct drm_device *dev;
633         struct drm_display_mode *mode, *iterator;
634
635         vbox_connector = to_vbox_connector(connector);
636         dev = vbox_connector->base.dev;
637         list_for_each_entry_safe(mode, iterator, &connector->modes, head) {
638                 list_del(&mode->head);
639                 drm_mode_destroy(dev, mode);
640         }
641
642         return drm_helper_probe_single_connector_modes(connector, max_x, max_y);
643 }
644
645 static const struct drm_connector_helper_funcs vbox_connector_helper_funcs = {
646         .mode_valid = vbox_mode_valid,
647         .get_modes = vbox_get_modes,
648         .best_encoder = vbox_best_single_encoder,
649 };
650
651 static const struct drm_connector_funcs vbox_connector_funcs = {
652         .dpms = drm_helper_connector_dpms,
653         .detect = vbox_connector_detect,
654         .fill_modes = vbox_fill_modes,
655         .destroy = vbox_connector_destroy,
656 };
657
658 static int vbox_connector_init(struct drm_device *dev,
659                                struct vbox_crtc *vbox_crtc,
660                                struct drm_encoder *encoder)
661 {
662         struct vbox_connector *vbox_connector;
663         struct drm_connector *connector;
664
665         vbox_connector = kzalloc(sizeof(*vbox_connector), GFP_KERNEL);
666         if (!vbox_connector)
667                 return -ENOMEM;
668
669         connector = &vbox_connector->base;
670         vbox_connector->vbox_crtc = vbox_crtc;
671
672         drm_connector_init(dev, connector, &vbox_connector_funcs,
673                            DRM_MODE_CONNECTOR_VGA);
674         drm_connector_helper_add(connector, &vbox_connector_helper_funcs);
675
676         connector->interlace_allowed = 0;
677         connector->doublescan_allowed = 0;
678
679         drm_mode_create_suggested_offset_properties(dev);
680         drm_object_attach_property(&connector->base,
681                                    dev->mode_config.suggested_x_property, 0);
682         drm_object_attach_property(&connector->base,
683                                    dev->mode_config.suggested_y_property, 0);
684         drm_connector_register(connector);
685
686         drm_connector_attach_encoder(connector, encoder);
687
688         return 0;
689 }
690
691 int vbox_mode_init(struct drm_device *dev)
692 {
693         struct vbox_private *vbox = dev->dev_private;
694         struct drm_encoder *encoder;
695         struct vbox_crtc *vbox_crtc;
696         unsigned int i;
697         int ret;
698
699         /* vbox_cursor_init(dev); */
700         for (i = 0; i < vbox->num_crtcs; ++i) {
701                 vbox_crtc = vbox_crtc_init(dev, i);
702                 if (!vbox_crtc)
703                         return -ENOMEM;
704                 encoder = vbox_encoder_init(dev, i);
705                 if (!encoder)
706                         return -ENOMEM;
707                 ret = vbox_connector_init(dev, vbox_crtc, encoder);
708                 if (ret)
709                         return ret;
710         }
711
712         return 0;
713 }
714
715 void vbox_mode_fini(struct drm_device *dev)
716 {
717         /* vbox_cursor_fini(dev); */
718 }
719
720 /**
721  * Copy the ARGB image and generate the mask, which is needed in case the host
722  * does not support ARGB cursors.  The mask is a 1BPP bitmap with the bit set
723  * if the corresponding alpha value in the ARGB image is greater than 0xF0.
724  */
725 static void copy_cursor_image(u8 *src, u8 *dst, u32 width, u32 height,
726                               size_t mask_size)
727 {
728         size_t line_size = (width + 7) / 8;
729         u32 i, j;
730
731         memcpy(dst + mask_size, src, width * height * 4);
732         for (i = 0; i < height; ++i)
733                 for (j = 0; j < width; ++j)
734                         if (((u32 *)src)[i * width + j] > 0xf0000000)
735                                 dst[i * line_size + j / 8] |= (0x80 >> (j % 8));
736 }
737
738 static int vbox_cursor_set2(struct drm_crtc *crtc, struct drm_file *file_priv,
739                             u32 handle, u32 width, u32 height,
740                             s32 hot_x, s32 hot_y)
741 {
742         struct vbox_private *vbox = crtc->dev->dev_private;
743         struct vbox_crtc *vbox_crtc = to_vbox_crtc(crtc);
744         struct ttm_bo_kmap_obj uobj_map;
745         size_t data_size, mask_size;
746         struct drm_gem_object *obj;
747         u32 flags, caps = 0;
748         struct vbox_bo *bo;
749         bool src_isiomem;
750         u8 *dst = NULL;
751         u8 *src;
752         int ret;
753
754         /*
755          * Re-set this regularly as in 5.0.20 and earlier the information was
756          * lost on save and restore.
757          */
758         hgsmi_update_input_mapping(vbox->guest_pool, 0, 0,
759                                    vbox->input_mapping_width,
760                                    vbox->input_mapping_height);
761         if (!handle) {
762                 bool cursor_enabled = false;
763                 struct drm_crtc *crtci;
764
765                 /* Hide cursor. */
766                 vbox_crtc->cursor_enabled = false;
767                 list_for_each_entry(crtci, &vbox->dev->mode_config.crtc_list,
768                                     head) {
769                         if (to_vbox_crtc(crtci)->cursor_enabled)
770                                 cursor_enabled = true;
771                 }
772
773                 if (!cursor_enabled)
774                         hgsmi_update_pointer_shape(vbox->guest_pool, 0, 0, 0,
775                                                    0, 0, NULL, 0);
776                 return 0;
777         }
778
779         vbox_crtc->cursor_enabled = true;
780
781         if (width > VBOX_MAX_CURSOR_WIDTH || height > VBOX_MAX_CURSOR_HEIGHT ||
782             width == 0 || height == 0)
783                 return -EINVAL;
784
785         ret = hgsmi_query_conf(vbox->guest_pool,
786                                VBOX_VBVA_CONF32_CURSOR_CAPABILITIES, &caps);
787         if (ret)
788                 return ret;
789
790         if (!(caps & VBOX_VBVA_CURSOR_CAPABILITY_HARDWARE)) {
791                 /*
792                  * -EINVAL means cursor_set2() not supported, -EAGAIN means
793                  * retry at once.
794                  */
795                 return -EBUSY;
796         }
797
798         obj = drm_gem_object_lookup(file_priv, handle);
799         if (!obj) {
800                 DRM_ERROR("Cannot find cursor object %x for crtc\n", handle);
801                 return -ENOENT;
802         }
803
804         bo = gem_to_vbox_bo(obj);
805         ret = vbox_bo_reserve(bo, false);
806         if (ret)
807                 goto out_unref_obj;
808
809         /*
810          * The mask must be calculated based on the alpha
811          * channel, one bit per ARGB word, and must be 32-bit
812          * padded.
813          */
814         mask_size = ((width + 7) / 8 * height + 3) & ~3;
815         data_size = width * height * 4 + mask_size;
816         vbox->cursor_hot_x = min_t(u32, max(hot_x, 0), width);
817         vbox->cursor_hot_y = min_t(u32, max(hot_y, 0), height);
818         vbox->cursor_width = width;
819         vbox->cursor_height = height;
820         vbox->cursor_data_size = data_size;
821         dst = vbox->cursor_data;
822
823         ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &uobj_map);
824         if (ret) {
825                 vbox->cursor_data_size = 0;
826                 goto out_unreserve_bo;
827         }
828
829         src = ttm_kmap_obj_virtual(&uobj_map, &src_isiomem);
830         if (src_isiomem) {
831                 DRM_ERROR("src cursor bo not in main memory\n");
832                 ret = -EIO;
833                 goto out_unmap_bo;
834         }
835
836         copy_cursor_image(src, dst, width, height, mask_size);
837
838         flags = VBOX_MOUSE_POINTER_VISIBLE | VBOX_MOUSE_POINTER_SHAPE |
839                 VBOX_MOUSE_POINTER_ALPHA;
840         ret = hgsmi_update_pointer_shape(vbox->guest_pool, flags,
841                                          vbox->cursor_hot_x, vbox->cursor_hot_y,
842                                          width, height, dst, data_size);
843 out_unmap_bo:
844         ttm_bo_kunmap(&uobj_map);
845 out_unreserve_bo:
846         vbox_bo_unreserve(bo);
847 out_unref_obj:
848         drm_gem_object_put_unlocked(obj);
849
850         return ret;
851 }
852
853 static int vbox_cursor_move(struct drm_crtc *crtc, int x, int y)
854 {
855         struct vbox_private *vbox = crtc->dev->dev_private;
856         u32 flags = VBOX_MOUSE_POINTER_VISIBLE |
857             VBOX_MOUSE_POINTER_SHAPE | VBOX_MOUSE_POINTER_ALPHA;
858         s32 crtc_x =
859             vbox->single_framebuffer ? crtc->x : to_vbox_crtc(crtc)->x_hint;
860         s32 crtc_y =
861             vbox->single_framebuffer ? crtc->y : to_vbox_crtc(crtc)->y_hint;
862         u32 host_x, host_y;
863         u32 hot_x = 0;
864         u32 hot_y = 0;
865         int ret;
866
867         /*
868          * We compare these to unsigned later and don't
869          * need to handle negative.
870          */
871         if (x + crtc_x < 0 || y + crtc_y < 0 || vbox->cursor_data_size == 0)
872                 return 0;
873
874         ret = hgsmi_cursor_position(vbox->guest_pool, true, x + crtc_x,
875                                     y + crtc_y, &host_x, &host_y);
876
877         /*
878          * The only reason we have vbox_cursor_move() is that some older clients
879          * might use DRM_IOCTL_MODE_CURSOR instead of DRM_IOCTL_MODE_CURSOR2 and
880          * use DRM_MODE_CURSOR_MOVE to set the hot-spot.
881          *
882          * However VirtualBox 5.0.20 and earlier has a bug causing it to return
883          * 0,0 as host cursor location after a save and restore.
884          *
885          * To work around this we ignore a 0, 0 return, since missing the odd
886          * time when it legitimately happens is not going to hurt much.
887          */
888         if (ret || (host_x == 0 && host_y == 0))
889                 return ret;
890
891         if (x + crtc_x < host_x)
892                 hot_x = min(host_x - x - crtc_x, vbox->cursor_width);
893         if (y + crtc_y < host_y)
894                 hot_y = min(host_y - y - crtc_y, vbox->cursor_height);
895
896         if (hot_x == vbox->cursor_hot_x && hot_y == vbox->cursor_hot_y)
897                 return 0;
898
899         vbox->cursor_hot_x = hot_x;
900         vbox->cursor_hot_y = hot_y;
901
902         return hgsmi_update_pointer_shape(vbox->guest_pool, flags,
903                         hot_x, hot_y, vbox->cursor_width, vbox->cursor_height,
904                         vbox->cursor_data, vbox->cursor_data_size);
905 }