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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include <inttypes.h>
#include <getopt.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <xf86drm.h>
#include <xf86drmMode.h>
#include "gfx.h"
#include "drmtools.h"
/* ------------------------------------------------------------------ */
/* device */
static int fd;
static drmModeConnector *conn = NULL;
static drmModeEncoder *enc = NULL;
static drmModeModeInfo *mode = NULL;
static drmModeCrtc *scrtc = NULL;
static uint32_t fb_id;
/* dumb fb */
static struct drm_mode_create_dumb creq;
static uint8_t *fbmem;
/* ------------------------------------------------------------------ */
static void drm_cleanup_display(void)
{
/* restore crtc */
if (scrtc) {
drmModeSetCrtc(fd, scrtc->crtc_id, scrtc->buffer_id, scrtc->x, scrtc->y,
&conn->connector_id, 1, &scrtc->mode);
}
}
static int drm_init_dev(const char *dev)
{
drmModeRes *res;
int i, rc;
uint64_t has_dumb;
/* open device */
fd = open(dev, O_RDWR);
if (fd < 0) {
fprintf(stderr, "drm: open %s: %s\n", dev, strerror(errno));
return -1;
}
rc = drmGetCap(fd, DRM_CAP_DUMB_BUFFER, &has_dumb);
if (rc < 0 || !has_dumb) {
fprintf(stderr, "drm: no dumb buffer support\n");
return -1;
}
/* find connector (using first for now) */
res = drmModeGetResources(fd);
if (res == NULL) {
fprintf(stderr, "drm: drmModeGetResources() failed\n");
return -1;
}
for (i = 0; i < res->count_connectors; i++) {
conn = drmModeGetConnector(fd, res->connectors[i]);
if (conn &&
(conn->connection == DRM_MODE_CONNECTED) &&
conn->count_modes)
break;
drmModeFreeConnector(conn);
conn = NULL;
}
if (!conn) {
fprintf(stderr, "drm: no usable connector found\n");
return -1;
}
mode = &conn->modes[0];
enc = drmModeGetEncoder(fd, conn->encoder_id);
if (enc == NULL) {
fprintf(stderr, "drm: drmModeGetEncoder() failed\n");
return -1;
}
/* save crtc */
scrtc = drmModeGetCrtc(fd, enc->crtc_id);
return 0;
}
static int drm_init_fb(void)
{
struct drm_mode_map_dumb mreq;
int rc;
/* create framebuffer */
memset(&creq, 0, sizeof(creq));
creq.width = mode->hdisplay;
creq.height = mode->vdisplay;
creq.bpp = 32;
rc = drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &creq);
if (rc < 0) {
fprintf(stderr, "drm: DRM_IOCTL_MODE_CREATE_DUMB: %s\n", strerror(errno));
return -1;
}
rc = drmModeAddFB(fd, creq.width, creq.height, 24, 32, creq.pitch,
creq.handle, &fb_id);
if (rc < 0) {
fprintf(stderr, "drm: drmModeAddFB() failed\n");
return -1;
}
/* map framebuffer */
memset(&mreq, 0, sizeof(mreq));
mreq.handle = creq.handle;
rc = drmIoctl(fd, DRM_IOCTL_MODE_MAP_DUMB, &mreq);
if (rc < 0) {
fprintf(stderr, "drm: DRM_IOCTL_MODE_MAP_DUMB: %s\n", strerror(errno));
return -1;
}
fbmem = mmap(0, creq.size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, mreq.offset);
if (fbmem == MAP_FAILED) {
fprintf(stderr, "drm: framebuffer mmap: %s\n", strerror(errno));
return -1;
}
return 0;
}
static int drm_show_fb(void)
{
int rc;
rc = drmModeSetCrtc(fd, enc->crtc_id, fb_id, 0, 0,
&conn->connector_id, 1,
&conn->modes[0]);
if (rc < 0) {
fprintf(stderr, "drm: drmModeSetCrtc() failed\n");
return -1;
}
return 0;
}
/* ------------------------------------------------------------------ */
static void drm_restore_display(void)
{
drm_show_fb();
}
gfxstate *drm_init(const char *device)
{
gfxstate *gfx;
char dev[64];
if (device) {
snprintf(dev, sizeof(dev), "%s", device);
} else {
snprintf(dev, sizeof(dev), DRM_DEV_NAME, DRM_DIR_NAME, 0);
}
fprintf(stderr, "trying drm: %s ...\n", dev);
if (drm_init_dev(dev) < 0)
return NULL;
if (drm_init_fb() < 0)
return NULL;
if (drm_show_fb() < 0)
return NULL;
/* prepare gfx */
gfx = malloc(sizeof(*gfx));
memset(gfx, 0, sizeof(*gfx));
gfx->hdisplay = mode->hdisplay;
gfx->vdisplay = mode->vdisplay;
gfx->stride = creq.pitch;
gfx->mem = fbmem;
gfx->rlen = 8;
gfx->glen = 8;
gfx->blen = 8;
gfx->tlen = 8;
gfx->roff = 16;
gfx->goff = 8;
gfx->boff = 0;
gfx->toff = 24;
gfx->bits_per_pixel = 32;
gfx->restore_display = drm_restore_display;
gfx->cleanup_display = drm_cleanup_display;
return gfx;
}
|