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 <stdio.h>
30 #include <string.h>
31 #include "xf86drm.h"
32 #include "libkms.h"
33 
34 #define CHECK_RET_RETURN(ret, str) \
35 	if (ret < 0) { \
36 		printf("%s: %s (%s)\n", __func__, str, strerror(-ret)); \
37 		return ret; \
38 	}
39 
test_bo(struct kms_driver * kms)40 int test_bo(struct kms_driver *kms)
41 {
42 	struct kms_bo *bo;
43 	int ret;
44 	unsigned attrs[7] = {
45 		KMS_WIDTH, 1024,
46 		KMS_HEIGHT, 768,
47 		KMS_BO_TYPE, KMS_BO_TYPE_SCANOUT_X8R8G8B8,
48 		KMS_TERMINATE_PROP_LIST,
49 	};
50 
51 	ret = kms_bo_create(kms, attrs, &bo);
52 	CHECK_RET_RETURN(ret, "Could not create bo");
53 
54 	kms_bo_destroy(&bo);
55 
56 	return 0;
57 }
58 
59 char *drivers[] = {
60 	"i915",
61 	"radeon",
62 	"nouveau",
63 	"vmwgfx",
64 	"exynos",
65 	NULL
66 };
67 
main(int argc,char ** argv)68 int main(int argc, char** argv)
69 {
70 	struct kms_driver *kms;
71 	int ret, fd, i;
72 
73 	for (i = 0, fd = -1; fd < 0 && drivers[i]; i++)
74 		fd = drmOpen(drivers[i], NULL);
75 	CHECK_RET_RETURN(fd, "Could not open device");
76 
77 	ret = kms_create(fd, &kms);
78 	CHECK_RET_RETURN(ret, "Failed to create kms driver");
79 
80 	ret = test_bo(kms);
81 	if (ret)
82 		goto err;
83 
84 	printf("%s: All ok!\n", __func__);
85 
86 	kms_destroy(&kms);
87 	return 0;
88 
89 err:
90 	kms_destroy(&kms);
91 	return ret;
92 }
93