abae452574b86c8fb2e500fdd51d066cb9d9ebdc
[platform/upstream/libdrm.git] / libkms / intel.c
1 /**************************************************************************
2  *
3  * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
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
29 #define HAVE_STDINT_H
30 #define _FILE_OFFSET_BITS 64
31
32 #include <errno.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include "internal.h"
37
38 #include <sys/mman.h>
39 #include <sys/ioctl.h>
40 #include "xf86drm.h"
41
42 #include "i915_drm.h"
43
44 struct intel_bo
45 {
46         struct kms_bo base;
47         unsigned map_count;
48 };
49
50 static int
51 intel_get_prop(struct kms_driver *kms, unsigned key, unsigned *out)
52 {
53         switch (key) {
54         case KMS_BO_TYPE:
55                 *out = KMS_BO_TYPE_SCANOUT_X8R8G8B8 | KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8;
56                 break;
57         default:
58                 return -EINVAL;
59         }
60         return 0;
61 }
62
63 static int
64 intel_destroy(struct kms_driver *kms)
65 {
66         free(kms);
67         return 0;
68 }
69
70 static int
71 intel_bo_create(struct kms_driver *kms,
72                  const unsigned width, const unsigned height,
73                  const enum kms_bo_type type, const unsigned *attr,
74                  struct kms_bo **out)
75 {
76         struct drm_i915_gem_create arg;
77         unsigned size, pitch;
78         struct intel_bo *bo;
79         int i, ret;
80
81         for (i = 0; attr[i]; i += 2) {
82                 switch (attr[i]) {
83                 case KMS_WIDTH:
84                 case KMS_HEIGHT:
85                 case KMS_BO_TYPE:
86                         break;
87                 default:
88                         return -EINVAL;
89                 }
90         }
91
92         bo = calloc(1, sizeof(*bo));
93         if (!bo)
94                 return -ENOMEM;
95
96         if (type == KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8) {
97                 pitch = 64 * 4;
98                 size = 64 * 64 * 4;
99         } else if (type == KMS_BO_TYPE_SCANOUT_X8R8G8B8) {
100                 pitch = width * 4;
101                 pitch = (pitch + 512 - 1) & ~(512 - 1);
102                 size = pitch * ((height + 4 - 1) & ~(4 - 1));
103         } else {
104                 free(bo);
105                 return -EINVAL;
106         }
107
108         memset(&arg, 0, sizeof(arg));
109         arg.size = size;
110
111         ret = drmCommandWriteRead(kms->fd, DRM_I915_GEM_CREATE, &arg, sizeof(arg));
112         if (ret)
113                 goto err_free;
114
115         bo->base.kms = kms;
116         bo->base.handle = arg.handle;
117         bo->base.size = size;
118         bo->base.pitch = pitch;
119
120         *out = &bo->base;
121         if (type == KMS_BO_TYPE_SCANOUT_X8R8G8B8 && pitch > 512) {
122                 struct drm_i915_gem_set_tiling tile;
123
124                 memset(&tile, 0, sizeof(tile));
125                 tile.handle = bo->base.handle;
126                 tile.tiling_mode = I915_TILING_X;
127                 tile.stride = bo->base.pitch;
128
129                 ret = drmCommandWriteRead(kms->fd, DRM_I915_GEM_SET_TILING, &tile, sizeof(tile));
130 #if 0
131                 if (ret) {
132                         kms_bo_destroy(out);
133                         return ret;
134                 }
135 #endif
136         }
137
138         return 0;
139
140 err_free:
141         free(bo);
142         return ret;
143 }
144
145 static int
146 intel_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out)
147 {
148         switch (key) {
149         default:
150                 return -EINVAL;
151         }
152 }
153
154 static int
155 intel_bo_map(struct kms_bo *_bo, void **out)
156 {
157         struct intel_bo *bo = (struct intel_bo *)_bo;
158         struct drm_i915_gem_mmap_gtt arg;
159         void *map = NULL;
160         int ret;
161
162         if (bo->base.ptr) {
163                 bo->map_count++;
164                 *out = bo->base.ptr;
165                 return 0;
166         }
167
168         memset(&arg, 0, sizeof(arg));
169         arg.handle = bo->base.handle;
170
171         ret = drmCommandWriteRead(bo->base.kms->fd, DRM_I915_GEM_MMAP_GTT, &arg, sizeof(arg));
172         if (ret)
173                 return ret;
174
175         map = mmap(0, bo->base.size, PROT_READ | PROT_WRITE, MAP_SHARED, bo->base.kms->fd, arg.offset);
176         if (map == MAP_FAILED)
177                 return -errno;
178
179         bo->base.ptr = map;
180         bo->map_count++;
181         *out = bo->base.ptr;
182
183         return 0;
184 }
185
186 static int
187 intel_bo_unmap(struct kms_bo *_bo)
188 {
189         struct intel_bo *bo = (struct intel_bo *)_bo;
190         bo->map_count--;
191         return 0;
192 }
193
194 static int
195 intel_bo_destroy(struct kms_bo *_bo)
196 {
197         struct intel_bo *bo = (struct intel_bo *)_bo;
198         struct drm_gem_close arg;
199         int ret;
200
201         if (bo->base.ptr) {
202                 /* XXX Sanity check map_count */
203                 munmap(bo->base.ptr, bo->base.size);
204                 bo->base.ptr = NULL;
205         }
206
207         memset(&arg, 0, sizeof(arg));
208         arg.handle = bo->base.handle;
209
210         ret = drmIoctl(bo->base.kms->fd, DRM_IOCTL_GEM_CLOSE, &arg);
211         if (ret)
212                 return -errno;
213
214         free(bo);
215         return 0;
216 }
217
218 int
219 intel_create(int fd, struct kms_driver **out)
220 {
221         struct kms_driver *kms;
222
223         kms = calloc(1, sizeof(*kms));
224         if (!kms)
225                 return -ENOMEM;
226
227         kms->fd = fd;
228
229         kms->bo_create = intel_bo_create;
230         kms->bo_map = intel_bo_map;
231         kms->bo_unmap = intel_bo_unmap;
232         kms->bo_get_prop = intel_bo_get_prop;
233         kms->bo_destroy = intel_bo_destroy;
234         kms->get_prop = intel_get_prop;
235         kms->destroy = intel_destroy;
236         *out = kms;
237
238         return 0;
239 }