OSDN Git Service

6c52cbd9e91e8df7e4ac4aa52249ec35ecda449f
[uclinux-h8/linux.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_fbdev;
76
77 struct vbox_private {
78         /* Must be first; or we must define our own release callback */
79         struct drm_device ddev;
80
81         u8 __iomem *guest_heap;
82         u8 __iomem *vbva_buffers;
83         struct gen_pool *guest_pool;
84         struct vbva_buf_ctx *vbva_info;
85         bool any_pitch;
86         u32 num_crtcs;
87         /** Amount of available VRAM, including space used for buffers. */
88         u32 full_vram_size;
89         /** Amount of available VRAM, not including space used for buffers. */
90         u32 available_vram_size;
91         /** Array of structures for receiving mode hints. */
92         struct vbva_modehint *last_mode_hints;
93
94         struct vbox_fbdev *fbdev;
95
96         int fb_mtrr;
97
98         struct {
99                 struct drm_global_reference mem_global_ref;
100                 struct ttm_bo_global_ref bo_global_ref;
101                 struct ttm_bo_device bdev;
102         } ttm;
103
104         struct mutex hw_mutex; /* protects modeset and accel/vbva accesses */
105         /**
106          * We decide whether or not user-space supports display hot-plug
107          * depending on whether they react to a hot-plug event after the initial
108          * mode query.
109          */
110         bool initial_mode_queried;
111         struct work_struct hotplug_work;
112         u32 input_mapping_width;
113         u32 input_mapping_height;
114         /**
115          * Is user-space using an X.Org-style layout of one large frame-buffer
116          * encompassing all screen ones or is the fbdev console active?
117          */
118         bool single_framebuffer;
119         u32 cursor_width;
120         u32 cursor_height;
121         u32 cursor_hot_x;
122         u32 cursor_hot_y;
123         size_t cursor_data_size;
124         u8 cursor_data[CURSOR_DATA_SIZE];
125 };
126
127 #undef CURSOR_PIXEL_COUNT
128 #undef CURSOR_DATA_SIZE
129
130 void vbox_driver_lastclose(struct drm_device *dev);
131
132 struct vbox_gem_object;
133
134 struct vbox_connector {
135         struct drm_connector base;
136         char name[32];
137         struct vbox_crtc *vbox_crtc;
138         struct {
139                 u32 width;
140                 u32 height;
141                 bool disconnected;
142         } mode_hint;
143 };
144
145 struct vbox_crtc {
146         struct drm_crtc base;
147         bool blanked;
148         bool disconnected;
149         unsigned int crtc_id;
150         u32 fb_offset;
151         bool cursor_enabled;
152         u32 x_hint;
153         u32 y_hint;
154 };
155
156 struct vbox_encoder {
157         struct drm_encoder base;
158 };
159
160 struct vbox_framebuffer {
161         struct drm_framebuffer base;
162         struct drm_gem_object *obj;
163 };
164
165 struct vbox_fbdev {
166         struct drm_fb_helper helper;
167         struct vbox_framebuffer afb;
168         int size;
169         struct ttm_bo_kmap_obj mapping;
170         int x1, y1, x2, y2;     /* dirty rect */
171         spinlock_t dirty_lock;
172 };
173
174 #define to_vbox_crtc(x) container_of(x, struct vbox_crtc, base)
175 #define to_vbox_connector(x) container_of(x, struct vbox_connector, base)
176 #define to_vbox_encoder(x) container_of(x, struct vbox_encoder, base)
177 #define to_vbox_framebuffer(x) container_of(x, struct vbox_framebuffer, base)
178
179 bool vbox_check_supported(u16 id);
180 int vbox_hw_init(struct vbox_private *vbox);
181 void vbox_hw_fini(struct vbox_private *vbox);
182
183 int vbox_mode_init(struct vbox_private *vbox);
184 void vbox_mode_fini(struct vbox_private *vbox);
185
186 #define DRM_MODE_FB_CMD drm_mode_fb_cmd2
187 #define CRTC_FB(crtc) ((crtc)->primary->fb)
188
189 void vbox_enable_accel(struct vbox_private *vbox);
190 void vbox_disable_accel(struct vbox_private *vbox);
191 void vbox_report_caps(struct vbox_private *vbox);
192
193 void vbox_framebuffer_dirty_rectangles(struct drm_framebuffer *fb,
194                                        struct drm_clip_rect *rects,
195                                        unsigned int num_rects);
196
197 int vbox_framebuffer_init(struct vbox_private *vbox,
198                           struct vbox_framebuffer *vbox_fb,
199                           const struct DRM_MODE_FB_CMD *mode_cmd,
200                           struct drm_gem_object *obj);
201
202 int vbox_fbdev_init(struct vbox_private *vbox);
203 void vbox_fbdev_fini(struct vbox_private *vbox);
204
205 struct vbox_bo {
206         struct ttm_buffer_object bo;
207         struct ttm_placement placement;
208         struct ttm_bo_kmap_obj kmap;
209         struct drm_gem_object gem;
210         struct ttm_place placements[3];
211         int pin_count;
212 };
213
214 #define gem_to_vbox_bo(gobj) container_of((gobj), struct vbox_bo, gem)
215
216 static inline struct vbox_bo *vbox_bo(struct ttm_buffer_object *bo)
217 {
218         return container_of(bo, struct vbox_bo, bo);
219 }
220
221 #define to_vbox_obj(x) container_of(x, struct vbox_gem_object, base)
222
223 static inline u64 vbox_bo_gpu_offset(struct vbox_bo *bo)
224 {
225         return bo->bo.offset;
226 }
227
228 int vbox_dumb_create(struct drm_file *file,
229                      struct drm_device *dev,
230                      struct drm_mode_create_dumb *args);
231
232 void vbox_gem_free_object(struct drm_gem_object *obj);
233 int vbox_dumb_mmap_offset(struct drm_file *file,
234                           struct drm_device *dev,
235                           u32 handle, u64 *offset);
236
237 #define DRM_FILE_PAGE_OFFSET (0x10000000ULL >> PAGE_SHIFT)
238
239 int vbox_mm_init(struct vbox_private *vbox);
240 void vbox_mm_fini(struct vbox_private *vbox);
241
242 int vbox_bo_create(struct vbox_private *vbox, int size, int align,
243                    u32 flags, struct vbox_bo **pvboxbo);
244
245 int vbox_gem_create(struct vbox_private *vbox,
246                     u32 size, bool iskernel, struct drm_gem_object **obj);
247
248 int vbox_bo_pin(struct vbox_bo *bo, u32 pl_flag);
249 int vbox_bo_unpin(struct vbox_bo *bo);
250
251 static inline int vbox_bo_reserve(struct vbox_bo *bo, bool no_wait)
252 {
253         int ret;
254
255         ret = ttm_bo_reserve(&bo->bo, true, no_wait, NULL);
256         if (ret) {
257                 if (ret != -ERESTARTSYS && ret != -EBUSY)
258                         DRM_ERROR("reserve failed %p\n", bo);
259                 return ret;
260         }
261         return 0;
262 }
263
264 static inline void vbox_bo_unreserve(struct vbox_bo *bo)
265 {
266         ttm_bo_unreserve(&bo->bo);
267 }
268
269 void vbox_ttm_placement(struct vbox_bo *bo, int domain);
270 int vbox_bo_push_sysram(struct vbox_bo *bo);
271 int vbox_mmap(struct file *filp, struct vm_area_struct *vma);
272 void *vbox_bo_kmap(struct vbox_bo *bo);
273 void vbox_bo_kunmap(struct vbox_bo *bo);
274
275 /* vbox_prime.c */
276 int vbox_gem_prime_pin(struct drm_gem_object *obj);
277 void vbox_gem_prime_unpin(struct drm_gem_object *obj);
278 struct sg_table *vbox_gem_prime_get_sg_table(struct drm_gem_object *obj);
279 struct drm_gem_object *vbox_gem_prime_import_sg_table(
280         struct drm_device *dev, struct dma_buf_attachment *attach,
281         struct sg_table *table);
282 void *vbox_gem_prime_vmap(struct drm_gem_object *obj);
283 void vbox_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
284 int vbox_gem_prime_mmap(struct drm_gem_object *obj,
285                         struct vm_area_struct *area);
286
287 /* vbox_irq.c */
288 int vbox_irq_init(struct vbox_private *vbox);
289 void vbox_irq_fini(struct vbox_private *vbox);
290 void vbox_report_hotplug(struct vbox_private *vbox);
291 irqreturn_t vbox_irq_handler(int irq, void *arg);
292
293 /* vbox_hgsmi.c */
294 void *hgsmi_buffer_alloc(struct gen_pool *guest_pool, size_t size,
295                          u8 channel, u16 channel_info);
296 void hgsmi_buffer_free(struct gen_pool *guest_pool, void *buf);
297 int hgsmi_buffer_submit(struct gen_pool *guest_pool, void *buf);
298
299 static inline void vbox_write_ioport(u16 index, u16 data)
300 {
301         outw(index, VBE_DISPI_IOPORT_INDEX);
302         outw(data, VBE_DISPI_IOPORT_DATA);
303 }
304
305 #endif