libkms: Add intel backend
[platform/upstream/libdrm.git] / libkms / api.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 #include "config.h"
30 #include <errno.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include "internal.h"
34
35 struct create_record
36 {
37         unsigned vendor;
38         unsigned chip;
39         int (*func)(int fd, struct kms_driver **out);
40 };
41
42 static struct create_record table[] = {
43         { 0x8086, 0x2a42, intel_create }, /* i965 */
44 #ifdef HAVE_VMWGFX
45         { 0x15ad, 0x0405, vmwgfx_create }, /* VMware vGPU */
46 #endif
47         { 0, 0, NULL },
48 };
49
50 int kms_create(int fd, struct kms_driver **out)
51 {
52         unsigned vendor_id, chip_id;
53         int ret, i;
54
55         ret = linux_get_pciid_from_fd(fd, &vendor_id, &chip_id);
56         if (ret)
57                 return ret;
58
59         for (i = 0; table[i].func; i++)
60                 if (table[i].vendor == vendor_id && table[i].chip == chip_id)
61                         return table[i].func(fd, out);
62
63         return -ENOSYS;
64 }
65
66 int kms_get_prop(struct kms_driver *kms, unsigned key, unsigned *out)
67 {
68         switch (key) {
69         case KMS_MAX_SCANOUT_WIDTH:
70         case KMS_MAX_SCANOUT_HEIGHT:
71         case KMS_MIN_SCANOUT_WIDTH:
72         case KMS_MIN_SCANOUT_HEIGHT:
73         case KMS_MAX_CURSOR_WIDTH:
74         case KMS_MAX_CURSOR_HEIGHT:
75         case KMS_MIN_CURSOR_WIDTH:
76         case KMS_MIN_CURSOR_HEIGHT:
77                 break;
78         default:
79                 return -EINVAL;
80         }
81         return kms->get_prop(kms, key, out);
82 }
83
84 int kms_destroy(struct kms_driver **kms)
85 {
86         if (!(*kms))
87                 return 0;
88
89         free(*kms);
90         *kms = NULL;
91         return 0;
92 }
93
94 int kms_bo_create(struct kms_driver *kms, const unsigned *attr, struct kms_bo **out)
95 {
96         unsigned width = 0;
97         unsigned height = 0;
98         enum kms_bo_type type = KMS_BO_TYPE_SCANOUT;
99         int i;
100
101         for (i = 0; attr[i];) {
102                 unsigned key = attr[i++];
103                 unsigned value = attr[i++];
104
105                 switch (key) {
106                 case KMS_WIDTH:
107                         width = value;
108                         break;
109                 case KMS_HEIGHT:
110                         height = value;
111                         break;
112                 case KMS_BO_TYPE:
113                         type = value;
114                         break;
115                 default:
116                         return EINVAL;
117                 }
118         }
119
120         if (width == 0 || height == 0)
121                 return -EINVAL;
122
123         return kms->bo_create(kms, width, height, type, attr, out);
124 }
125
126 int kms_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out)
127 {
128         switch (key) {
129         case KMS_PITCH:
130                 *out = bo->pitch;
131                 break;
132         case KMS_HANDLE:
133                 *out = bo->handle;
134                 break;
135         default:
136                 return -EINVAL;
137         }
138
139         return 0;
140 }
141
142 int kms_bo_map(struct kms_bo *bo, void **out)
143 {
144         return bo->kms->bo_map(bo, out);
145 }
146
147 int kms_bo_unmap(struct kms_bo *bo)
148 {
149         return bo->kms->bo_unmap(bo);
150 }
151
152 int kms_bo_destroy(struct kms_bo **bo)
153 {
154         int ret;
155
156         if (!(*bo))
157                 return 0;
158
159         ret = (*bo)->kms->bo_destroy(*bo);
160         if (ret)
161                 return ret;
162
163         *bo = NULL;
164         return 0;
165 }