blob: 478fa38c40fd6c2fcb9a89464681db4b5ae0f0f0 [file] [log] [blame]
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +01001/**************************************************************************
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
Jakob Bornecrantz5dbc1b32010-01-05 20:55:02 +010029#include "config.h"
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010030#include <errno.h>
31#include <stdlib.h>
32#include <string.h>
33#include "internal.h"
34
35int kms_create(int fd, struct kms_driver **out)
36{
Jakob Bornecrantz5dbc1b32010-01-05 20:55:02 +010037#ifdef HAVE_VMWGFX
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010038 return vmwgfx_create(fd, out);
Jakob Bornecrantz5dbc1b32010-01-05 20:55:02 +010039#else
40 return -ENOSYS;
41#endif
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010042}
43
44int kms_get_prop(struct kms_driver *kms, unsigned key, unsigned *out)
45{
46 switch (key) {
47 case KMS_MAX_SCANOUT_WIDTH:
48 case KMS_MAX_SCANOUT_HEIGHT:
49 case KMS_MIN_SCANOUT_WIDTH:
50 case KMS_MIN_SCANOUT_HEIGHT:
51 case KMS_MAX_CURSOR_WIDTH:
52 case KMS_MAX_CURSOR_HEIGHT:
53 case KMS_MIN_CURSOR_WIDTH:
54 case KMS_MIN_CURSOR_HEIGHT:
55 break;
56 default:
57 return -EINVAL;
58 }
59 return kms->get_prop(kms, key, out);
60}
61
Jakob Bornecrantz201f5792009-12-04 16:06:42 +010062int kms_destroy(struct kms_driver **kms)
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010063{
Jakob Bornecrantz201f5792009-12-04 16:06:42 +010064 if (!(*kms))
65 return 0;
66
67 free(*kms);
68 *kms = NULL;
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010069 return 0;
70}
71
72int kms_bo_create(struct kms_driver *kms, const unsigned *attr, struct kms_bo **out)
73{
74 unsigned width = 0;
75 unsigned height = 0;
76 enum kms_bo_type type = KMS_BO_TYPE_SCANOUT;
77 int i;
78
79 for (i = 0; attr[i];) {
80 unsigned key = attr[i++];
81 unsigned value = attr[i++];
82
83 switch (key) {
84 case KMS_WIDTH:
85 width = value;
86 break;
87 case KMS_HEIGHT:
88 height = value;
89 break;
90 case KMS_BO_TYPE:
91 type = value;
92 break;
93 default:
94 return EINVAL;
95 }
96 }
97
98 if (width == 0 || height == 0)
99 return -EINVAL;
100
101 return kms->bo_create(kms, width, height, type, attr, out);
102}
103
104int kms_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out)
105{
106 switch (key) {
107 case KMS_PITCH:
108 *out = bo->pitch;
109 break;
110 case KMS_HANDLE:
111 *out = bo->handle;
112 break;
113 default:
114 return -EINVAL;
115 }
116
117 return 0;
118}
119
120int kms_bo_map(struct kms_bo *bo, void **out)
121{
122 return bo->kms->bo_map(bo, out);
123}
124
125int kms_bo_unmap(struct kms_bo *bo)
126{
127 return bo->kms->bo_unmap(bo);
128}
129
Jakob Bornecrantz201f5792009-12-04 16:06:42 +0100130int kms_bo_destroy(struct kms_bo **bo)
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +0100131{
Jakob Bornecrantz201f5792009-12-04 16:06:42 +0100132 int ret;
133
134 if (!(*bo))
135 return 0;
136
137 ret = (*bo)->kms->bo_destroy(*bo);
138 if (ret)
139 return ret;
140
141 *bo = NULL;
142 return 0;
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +0100143}