summaryrefslogtreecommitdiff
path: root/src/gralloc/gralloc_kms.c
blob: 7bc65b3438259ac83c6cb71cc359fafe716f1812 (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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#define LOG_TAG "GRALLOC-KMS"

#include <cutils/log.h>
#include <errno.h>
#include <unistd.h>
#include "gralloc_kms.h"

int
drm_kms_add_fb(struct drm_module_t *drm, struct drm_bo_t *bo)
{
   uint8_t bpp;

   bpp = drm_mod_get_bpp(bo->format) * 8;

   return drmModeAddFB(drm->fd, bo->width, bo->height, bpp, bpp,
         bo->stride, bo->fb_handle, (uint32_t *) &bo->fb_id);
}

void
drm_kms_rm_fb(struct drm_module_t *drm, struct drm_bo_t *bo)
{
   drmModeRmFB(drm->fd, bo->fb_id);
   bo->fb_id = 0;
}

static void
drm_kms_wait_vblank(struct drm_module_t *drm, int num)
{
   drmVBlank vbl;
   int ret;

   memset(&vbl, 0, sizeof(vbl));
   vbl.request.type = DRM_VBLANK_RELATIVE;
   if (drm->vblank_secondary)
      vbl.request.type |= DRM_VBLANK_SECONDARY;
   vbl.request.sequence = num;

   ret = drmWaitVBlank(drm->fd, &vbl);
   if (ret)
      LOGW("failed to wait vblank");
}

static int
drm_kms_set_crtc(struct drm_module_t *drm, struct drm_bo_t *bo)
{
   int ret;

   if (drm->swap_interval)
      drm_kms_wait_vblank(drm, drm->swap_interval);

   ret = drmModeSetCrtc(drm->fd, drm->crtc_id, bo->fb_id,
         0, 0, &drm->connector_id, 1, &drm->mode);
   if (ret) {
      LOGE("failed to set crtc");
      return ret;
   }

#ifdef DRM_MODE_FEATURE_DIRTYFB
   if (drm->mode_dirty_fb)
      ret = drmModeDirtyFB(drm->fd, bo->fb_id, &drm->clip, 1);
#endif

   return ret;
}

static void page_flip_handler(int fd, unsigned int sequence,
                              unsigned int tv_sec, unsigned int tv_usec,
                              void *user_data)
{
   struct drm_module_t *drm = (struct drm_module_t *) user_data;

   drm->flip_pending = 0;
}

static int
drm_kms_page_flip(struct drm_module_t *drm, struct drm_bo_t *bo)
{
   int retries = 3, ret;

   if (drm->swap_interval > 1)
      drm_kms_wait_vblank(drm, drm->swap_interval - 1);

   /* TODO throttle page flip instead of retrying here */
   while (retries) {
      ret = drmModePageFlip(drm->fd, drm->crtc_id, bo->fb_id,
            DRM_MODE_PAGE_FLIP_EVENT, (void *) drm);
      if (ret && errno == EBUSY) {
         if (drm->swap_interval)
            drm_kms_wait_vblank(drm, 1);
         else
            usleep(5000);
         retries--;
      }
      else {
         if (!ret)
            drm->flip_pending = 1;
         break;
      }
   }

   if (drm->mode_page_flip_blocking && drm->flip_pending) {
      drmEventContext ctx;

      memset(&ctx, 0, sizeof(ctx));
      ctx.version = DRM_EVENT_CONTEXT_VERSION;
      ctx.page_flip_handler = page_flip_handler;

      while (drm->flip_pending)
         drmHandleEvent(drm->fd, &ctx);
   }

   if (ret)
      LOGE("failed to perform page flip");

   return ret;
}

int
drm_kms_post(struct drm_module_t *drm, struct drm_bo_t *bo)
{
   int ret;

   if (!bo->fb_id) {
      LOGE("unable to post bo %p without fb", bo);
      return -EINVAL;
   }

   /* TODO spawn a thread to avoid waiting */

   if (drm->first_post) {
      pthread_mutex_lock(&drm->mutex);
      if (drm->first_post) {
         ret = drm_kms_set_crtc(drm, bo);
         if (!ret)
            drm->first_post = 0;
         pthread_mutex_unlock(&drm->mutex);

         return ret;
      }
      pthread_mutex_unlock(&drm->mutex);
   }

   if (drm->mode_page_flip && drm->swap_interval)
      ret = drm_kms_page_flip(drm, bo);
   else
      ret = drm_kms_set_crtc(drm, bo);

   return ret;
}

static int
drm_kms_init_with_connector_locked(struct drm_module_t *drm,
                                   drmModeConnectorPtr connector)
{
   drmModeEncoderPtr encoder;
   drmModeModeInfoPtr mode;
   int i;

   if (!connector->count_modes)
      return -EINVAL;

   encoder = drmModeGetEncoder(drm->fd, connector->encoders[0]);
   if (!encoder)
      return -EINVAL;

   for (i = 0; i < drm->resources->count_crtcs; i++) {
      if (encoder->possible_crtcs & (1 << i))
         break;
   }
   drmModeFreeEncoder(encoder);
   if (i == drm->resources->count_crtcs)
      return -EINVAL;

   drm->crtc_id = drm->resources->crtcs[i];
   drm->connector_id = connector->connector_id;

   /* find the first preferred mode */
   mode = NULL;
   for (i = 0; i < connector->count_modes; i++) {
      drmModeModeInfoPtr m = &connector->modes[i];
      if (m->type & DRM_MODE_TYPE_PREFERRED) {
         mode = m;
         break;
      }
   }
   /* no preference; use the first */
   if (!mode)
      mode = &connector->modes[0];

   drm->mode = *mode;

   if (connector->mmWidth && connector->mmHeight) {
      drm->xdpi = (drm->mode.hdisplay * 25.4 / connector->mmWidth);
      drm->ydpi = (drm->mode.vdisplay * 25.4 / connector->mmHeight);
   }
   else {
      drm->xdpi = 75;
      drm->ydpi = 75;
   }

   /* select between 32/16 bits */
#if 1
   drm->format = HAL_PIXEL_FORMAT_BGRA_8888;
#else
   drm->format = HAL_PIXEL_FORMAT_RGB_565;
#endif

#ifdef DRM_MODE_FEATURE_DIRTYFB
   drm->clip.x1 = 0;
   drm->clip.y1 = 0;
   drm->clip.x2 = drm->mode.hdisplay;
   drm->clip.y2 = drm->mode.vdisplay;
#endif

   drm->first_post = 1;

   return 0;
}

static int
drm_kms_init_locked(struct drm_module_t *drm)
{
   int i, ret;

   if (drm->resources)
      return 0;

   drm->resources = drmModeGetResources(drm->fd);
   if (!drm->resources) {
      LOGE("failed to get modeset resources");
      return -EINVAL;
   }

   for (i = 0; i < drm->resources->count_connectors; i++) {
      drmModeConnectorPtr connector;

      connector = drmModeGetConnector(drm->fd, drm->resources->connectors[i]);
      if (connector) {
         if (connector->connection == DRM_MODE_CONNECTED) {
            if (!drm_kms_init_with_connector_locked(drm, connector))
               break;
         }

         drmModeFreeConnector(connector);
      }
   }
   if (i == drm->resources->count_connectors) {
      drmModeFreeResources(drm->resources);
      drm->resources = NULL;

      return -EINVAL;
   }

   return 0;
}

int
drm_kms_init(struct drm_module_t *drm)
{
   int ret;

   pthread_mutex_lock(&drm->mutex);
   ret = drm_kms_init_locked(drm);
   pthread_mutex_unlock(&drm->mutex);

   return ret;
}