Merge tag 'gfs2-4.21.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2...
[sfrench/cifs-2.6.git] / drivers / staging / vboxvideo / vbox_drv.h
1 /*
2  * Copyright (C) 2013-2017 Oracle Corporation
3  * This file is based on ast_drv.h
4  * Copyright 2012 Red Hat Inc.
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 SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
18  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20  * USE OR OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * Authors: Dave Airlie <airlied@redhat.com>
27  *          Michael Thayer <michael.thayer@oracle.com,
28  *          Hans de Goede <hdegoede@redhat.com>
29  */
30 #ifndef __VBOX_DRV_H__
31 #define __VBOX_DRV_H__
32
33 #include <linux/genalloc.h>
34 #include <linux/io.h>
35 #include <linux/string.h>
36 #include <linux/version.h>
37
38 #include <drm/drmP.h>
39 #include <drm/drm_encoder.h>
40 #include <drm/drm_fb_helper.h>
41 #include <drm/drm_gem.h>
42
43 #include <drm/ttm/ttm_bo_api.h>
44 #include <drm/ttm/ttm_bo_driver.h>
45 #include <drm/ttm/ttm_placement.h>
46 #include <drm/ttm/ttm_memory.h>
47 #include <drm/ttm/ttm_module.h>
48
49 #include "vboxvideo_guest.h"
50 #include "vboxvideo_vbe.h"
51 #include "hgsmi_ch_setup.h"
52
53 #define DRIVER_NAME         "vboxvideo"
54 #define DRIVER_DESC         "Oracle VM VirtualBox Graphics Card"
55 #define DRIVER_DATE         "20130823"
56
57 #define DRIVER_MAJOR        1
58 #define DRIVER_MINOR        0
59 #define DRIVER_PATCHLEVEL   0
60
61 #define VBOX_MAX_CURSOR_WIDTH  64
62 #define VBOX_MAX_CURSOR_HEIGHT 64
63 #define CURSOR_PIXEL_COUNT (VBOX_MAX_CURSOR_WIDTH * VBOX_MAX_CURSOR_HEIGHT)
64 #define CURSOR_DATA_SIZE (CURSOR_PIXEL_COUNT * 4 + CURSOR_PIXEL_COUNT / 8)
65
66 #define VBOX_MAX_SCREENS  32
67
68 #define GUEST_HEAP_OFFSET(vbox) ((vbox)->full_vram_size - \
69                                  VBVA_ADAPTER_INFORMATION_SIZE)
70 #define GUEST_HEAP_SIZE   VBVA_ADAPTER_INFORMATION_SIZE
71 #define GUEST_HEAP_USABLE_SIZE (VBVA_ADAPTER_INFORMATION_SIZE - \
72                                 sizeof(struct hgsmi_host_flags))
73 #define HOST_FLAGS_OFFSET GUEST_HEAP_USABLE_SIZE
74
75 struct vbox_framebuffer {
76         struct drm_framebuffer base;
77         struct drm_gem_object *obj;
78 };
79
80 struct vbox_private {
81         /* Must be first; or we must define our own release callback */
82         struct drm_device ddev;
83         struct drm_fb_helper fb_helper;
84         struct vbox_framebuffer afb;
85
86         u8 __iomem *guest_heap;
87         u8 __iomem *vbva_buffers;
88         struct gen_pool *guest_pool;
89         struct vbva_buf_ctx *vbva_info;
90         bool any_pitch;
91         u32 num_crtcs;
92         /** Amount of available VRAM, including space used for buffers. */
93         u32 full_vram_size;
94         /** Amount of available VRAM, not including space used for buffers. */
95         u32 available_vram_size;
96         /** Array of structures for receiving mode hints. */
97         struct vbva_modehint *last_mode_hints;
98
99         int fb_mtrr;
100
101         struct {
102                 struct ttm_bo_device bdev;
103         } ttm;
104
105         struct mutex hw_mutex; /* protects modeset and accel/vbva accesses */
106         /**
107          * We decide whether or not user-space supports display hot-plug
108          * depending on whether they react to a hot-plug event after the initial
109          * mode query.
110          */
111         bool initial_mode_queried;
112         struct work_struct hotplug_work;
113         u32 input_mapping_width;
114         u32 input_mapping_height;
115         /**
116          * Is user-space using an X.Org-style layout of one large frame-buffer
117          * encompassing all screen ones or is the fbdev console active?
118          */
119         bool single_framebuffer;
120         u8 cursor_data[CURSOR_DATA_SIZE];
121 };
122
123 #undef CURSOR_PIXEL_COUNT
124 #undef CURSOR_DATA_SIZE
125
126 struct vbox_gem_object;
127
128 struct vbox_connector {
129         struct drm_connector base;
130         char name[32];
131         struct vbox_crtc *vbox_crtc;
132         struct {
133                 u32 width;
134                 u32 height;
135                 bool disconnected;
136         } mode_hint;
137 };
138
139 struct vbox_crtc {
140         struct drm_crtc base;
141         bool disconnected;
142         unsigned int crtc_id;
143         u32 fb_offset;
144         bool cursor_enabled;
145         u32 x_hint;
146         u32 y_hint;
147         /*
148          * When setting a mode we not only pass the mode to the hypervisor,
149          * but also information on how to map / translate input coordinates
150          * for the emulated USB tablet.  This input-mapping may change when
151          * the mode on *another* crtc changes.
152          *
153          * This means that sometimes we must do a modeset on other crtc-s then
154          * the one being changed to update the input-mapping. Including crtc-s
155          * which may be disabled inside the guest (shown as a black window
156          * on the host unless closed by the user).
157          *
158          * With atomic modesetting the mode-info of disabled crtcs gets zeroed
159          * yet we need it when updating the input-map to avoid resizing the
160          * window as a side effect of a mode_set on another crtc. Therefor we
161          * cache the info of the last mode below.
162          */
163         u32 width;
164         u32 height;
165         u32 x;
166         u32 y;
167 };
168
169 struct vbox_encoder {
170         struct drm_encoder base;
171 };
172
173 #define to_vbox_crtc(x) container_of(x, struct vbox_crtc, base)
174 #define to_vbox_connector(x) container_of(x, struct vbox_connector, base)
175 #define to_vbox_encoder(x) container_of(x, struct vbox_encoder, base)
176 #define to_vbox_framebuffer(x) container_of(x, struct vbox_framebuffer, base)
177
178 bool vbox_check_supported(u16 id);
179 int vbox_hw_init(struct vbox_private *vbox);
180 void vbox_hw_fini(struct vbox_private *vbox);
181
182 int vbox_mode_init(struct vbox_private *vbox);
183 void vbox_mode_fini(struct vbox_private *vbox);
184
185 #define DRM_MODE_FB_CMD drm_mode_fb_cmd2
186
187 void vbox_enable_accel(struct vbox_private *vbox);
188 void vbox_disable_accel(struct vbox_private *vbox);
189 void vbox_report_caps(struct vbox_private *vbox);
190
191 void vbox_framebuffer_dirty_rectangles(struct drm_framebuffer *fb,
192                                        struct drm_clip_rect *rects,
193                                        unsigned int num_rects);
194
195 int vbox_framebuffer_init(struct vbox_private *vbox,
196                           struct vbox_framebuffer *vbox_fb,
197                           const struct DRM_MODE_FB_CMD *mode_cmd,
198                           struct drm_gem_object *obj);
199
200 int vboxfb_create(struct drm_fb_helper *helper,
201                   struct drm_fb_helper_surface_size *sizes);
202 void vbox_fbdev_fini(struct vbox_private *vbox);
203
204 struct vbox_bo {
205         struct ttm_buffer_object bo;
206         struct ttm_placement placement;
207         struct ttm_bo_kmap_obj kmap;
208         struct drm_gem_object gem;
209         struct ttm_place placements[3];
210         int pin_count;
211 };
212
213 #define gem_to_vbox_bo(gobj) container_of((gobj), struct vbox_bo, gem)
214
215 static inline struct vbox_bo *vbox_bo(struct ttm_buffer_object *bo)
216 {
217         return container_of(bo, struct vbox_bo, bo);
218 }
219
220 #define to_vbox_obj(x) container_of(x, struct vbox_gem_object, base)
221
222 static inline u64 vbox_bo_gpu_offset(struct vbox_bo *bo)
223 {
224         return bo->bo.offset;
225 }
226
227 int vbox_dumb_create(struct drm_file *file,
228                      struct drm_device *dev,
229                      struct drm_mode_create_dumb *args);
230
231 void vbox_gem_free_object(struct drm_gem_object *obj);
232 int vbox_dumb_mmap_offset(struct drm_file *file,
233                           struct drm_device *dev,
234                           u32 handle, u64 *offset);
235
236 #define DRM_FILE_PAGE_OFFSET (0x10000000ULL >> PAGE_SHIFT)
237
238 int vbox_mm_init(struct vbox_private *vbox);
239 void vbox_mm_fini(struct vbox_private *vbox);
240
241 int vbox_bo_create(struct vbox_private *vbox, int size, int align,
242                    u32 flags, struct vbox_bo **pvboxbo);
243
244 int vbox_gem_create(struct vbox_private *vbox,
245                     u32 size, bool iskernel, struct drm_gem_object **obj);
246
247 int vbox_bo_pin(struct vbox_bo *bo, u32 pl_flag);
248 int vbox_bo_unpin(struct vbox_bo *bo);
249
250 static inline int vbox_bo_reserve(struct vbox_bo *bo, bool no_wait)
251 {
252         int ret;
253
254         ret = ttm_bo_reserve(&bo->bo, true, no_wait, NULL);
255         if (ret) {
256                 if (ret != -ERESTARTSYS && ret != -EBUSY)
257                         DRM_ERROR("reserve failed %p\n", bo);
258                 return ret;
259         }
260         return 0;
261 }
262
263 static inline void vbox_bo_unreserve(struct vbox_bo *bo)
264 {
265         ttm_bo_unreserve(&bo->bo);
266 }
267
268 void vbox_ttm_placement(struct vbox_bo *bo, int domain);
269 int vbox_bo_push_sysram(struct vbox_bo *bo);
270 int vbox_mmap(struct file *filp, struct vm_area_struct *vma);
271 void *vbox_bo_kmap(struct vbox_bo *bo);
272 void vbox_bo_kunmap(struct vbox_bo *bo);
273
274 /* vbox_prime.c */
275 int vbox_gem_prime_pin(struct drm_gem_object *obj);
276 void vbox_gem_prime_unpin(struct drm_gem_object *obj);
277 struct sg_table *vbox_gem_prime_get_sg_table(struct drm_gem_object *obj);
278 struct drm_gem_object *vbox_gem_prime_import_sg_table(
279         struct drm_device *dev, struct dma_buf_attachment *attach,
280         struct sg_table *table);
281 void *vbox_gem_prime_vmap(struct drm_gem_object *obj);
282 void vbox_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
283 int vbox_gem_prime_mmap(struct drm_gem_object *obj,
284                         struct vm_area_struct *area);
285
286 /* vbox_irq.c */
287 int vbox_irq_init(struct vbox_private *vbox);
288 void vbox_irq_fini(struct vbox_private *vbox);
289 void vbox_report_hotplug(struct vbox_private *vbox);
290 irqreturn_t vbox_irq_handler(int irq, void *arg);
291
292 /* vbox_hgsmi.c */
293 void *hgsmi_buffer_alloc(struct gen_pool *guest_pool, size_t size,
294                          u8 channel, u16 channel_info);
295 void hgsmi_buffer_free(struct gen_pool *guest_pool, void *buf);
296 int hgsmi_buffer_submit(struct gen_pool *guest_pool, void *buf);
297
298 static inline void vbox_write_ioport(u16 index, u16 data)
299 {
300         outw(index, VBE_DISPI_IOPORT_INDEX);
301         outw(data, VBE_DISPI_IOPORT_DATA);
302 }
303
304 #endif