summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/egl/kms/native_kms.h
blob: cd8e4ff0b2dddfa90a6ce9dce4f320d2edc94c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * Mesa 3-D graphics library
 * Version:  7.8
 *
 * Copyright (C) 2010 Chia-I Wu <olv@0xlab.org>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifndef _NATIVE_KMS_H_
#define _NATIVE_KMS_H_

#include <xf86drm.h>
#include <xf86drmMode.h>

#include "pipe/p_compiler.h"
#include "util/u_format.h"
#include "pipe/p_state.h"
#include "state_tracker/drm_driver.h"

#include "common/native.h"
#include "common/native_helper.h"

struct kms_config;
struct kms_connector;
struct kms_mode;

struct kms_crtc {
   drmModeCrtcPtr crtc;
   uint32_t connectors[32];
   int num_connectors;
};

struct kms_display {
   struct native_display base;

   struct native_event_handler *event_handler;

   int fd;
   drmModeResPtr resources;
   struct kms_config *config;

   struct kms_connector *connectors;
   int num_connectors;

   struct kms_surface **shown_surfaces;
   /* save the original settings of the CRTCs */
   struct kms_crtc *saved_crtcs;
};

struct kms_framebuffer {
   struct pipe_resource *texture;
   boolean is_passive;

   uint32_t buffer_id;
};

struct kms_surface {
   struct native_surface base;
   struct kms_display *kdpy;

   struct resource_surface *rsurf;
   enum pipe_format color_format;
   int width, height;

   unsigned int sequence_number;
   struct kms_framebuffer front_fb, back_fb;

   boolean is_shown;
   struct kms_crtc current_crtc;
};

struct kms_config {
   struct native_config base;
};

struct kms_connector {
   struct native_connector base;

   uint32_t connector_id;
   drmModeConnectorPtr connector;
   struct kms_mode *kms_modes;
   int num_modes;
};

struct kms_mode {
   struct native_mode base;
   drmModeModeInfo mode;
};

static INLINE struct kms_display *
kms_display(const struct native_display *ndpy)
{
   return (struct kms_display *) ndpy;
}

static INLINE struct kms_surface *
kms_surface(const struct native_surface *nsurf)
{
   return (struct kms_surface *) nsurf;
}

static INLINE struct kms_config *
kms_config(const struct native_config *nconf)
{
   return (struct kms_config *) nconf;
}

static INLINE struct kms_connector *
kms_connector(const struct native_connector *nconn)
{
   return (struct kms_connector *) nconn;
}

static INLINE struct kms_mode *
kms_mode(const struct native_mode *nmode)
{
   return (struct kms_mode *) nmode;
}

#endif /* _NATIVE_KMS_H_ */