blob: 930a2bfc5ac10310916fea2261ea78f039a2b877 [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
29#ifndef _LIBKMS_H_
30#define _LIBKMS_H_
31
Tapani Pälli1c205742015-08-07 10:37:56 +030032#if defined(__cplusplus)
Laurent Pinchart9fa4a4b2012-11-01 09:40:30 +000033extern "C" {
34#endif
35
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000036/**
37 * \file
38 *
39 */
40
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010041struct kms_driver;
42struct kms_bo;
43
44enum kms_attrib
45{
46 KMS_TERMINATE_PROP_LIST,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000047#define KMS_TERMINATE_PROP_LIST KMS_TERMINATE_PROP_LIST
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010048 KMS_BO_TYPE,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000049#define KMS_BO_TYPE KMS_BO_TYPE
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010050 KMS_WIDTH,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000051#define KMS_WIDTH KMS_WIDTH
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010052 KMS_HEIGHT,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000053#define KMS_HEIGHT KMS_HEIGHT
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010054 KMS_PITCH,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000055#define KMS_PITCH KMS_PITCH
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010056 KMS_HANDLE,
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000057#define KMS_HANDLE KMS_HANDLE
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010058};
59
60enum kms_bo_type
61{
Jakob Bornecrantz44a0e0a2010-01-23 01:41:49 +000062 KMS_BO_TYPE_SCANOUT_X8R8G8B8 = (1 << 0),
63#define KMS_BO_TYPE_SCANOUT_X8R8G8B8 KMS_BO_TYPE_SCANOUT_X8R8G8B8
64 KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8 = (1 << 1),
65#define KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8 KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010066};
67
68int kms_create(int fd, struct kms_driver **out);
69int kms_get_prop(struct kms_driver *kms, unsigned key, unsigned *out);
Jakob Bornecrantz201f5792009-12-04 16:06:42 +010070int kms_destroy(struct kms_driver **kms);
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010071
72int kms_bo_create(struct kms_driver *kms, const unsigned *attr, struct kms_bo **out);
73int kms_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out);
74int kms_bo_map(struct kms_bo *bo, void **out);
75int kms_bo_unmap(struct kms_bo *bo);
Jakob Bornecrantz201f5792009-12-04 16:06:42 +010076int kms_bo_destroy(struct kms_bo **bo);
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010077
Tapani Pälli1c205742015-08-07 10:37:56 +030078#if defined(__cplusplus)
Laurent Pinchart9fa4a4b2012-11-01 09:40:30 +000079};
80#endif
81
Jakob Bornecrantz8c0571a2009-11-24 17:54:10 +010082#endif