mesa/src/egl/wayland/wayland-drm/wayland-drm.c

230 lines
6.1 KiB
C
Raw Normal View History

2011-02-21 15:22:34 +00:00
/*
* Copyright © 2011 Kristian Høgsberg
* Copyright © 2011 Benjamin Franzke
2011-02-21 15:22:34 +00:00
*
* 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 (including the next
* paragraph) 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.
*
* Authors:
* Kristian Høgsberg <krh@bitplanet.net>
* Benjamin Franzke <benjaminfranzke@googlemail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stddef.h>
#include <wayland-server.h>
#include "wayland-drm.h"
#include "wayland-drm-server-protocol.h"
/* Git master of Wayland is moving towards a stable version of the
* protocol, but breaking from 0.85 in the process. For the time
* being, it's convenient to be able to build Mesa against both master
* and 0.85.x of Wayland. To make this work we'll do a compile-time
* version check and work around the difference in API and protocol */
#if defined (WAYLAND_VERSION_MAJOR) && \
WAYLAND_VERSION_MAJOR == 0 && \
WAYLAND_VERSION_MINOR == 85
#define HAS_WAYLAND_0_85
#endif
2011-02-21 15:22:34 +00:00
struct wl_drm {
struct wl_display *display;
void *user_data;
2011-02-21 15:22:34 +00:00
char *device_name;
struct wayland_drm_callbacks *callbacks;
};
2011-02-21 15:22:34 +00:00
static void
destroy_buffer(struct wl_resource *resource)
2011-02-21 15:22:34 +00:00
{
struct wl_drm_buffer *buffer = resource->data;
struct wl_drm *drm = buffer->drm;
2011-02-21 15:22:34 +00:00
drm->callbacks->release_buffer(drm->user_data, buffer);
2011-02-21 15:22:34 +00:00
free(buffer);
}
static void
buffer_destroy(struct wl_client *client, struct wl_resource *resource)
2011-02-21 15:22:34 +00:00
{
#ifdef HAS_WAYLAND_0_85
wl_resource_destroy(resource, 0);
#else
wl_resource_destroy(resource);
#endif
}
#ifdef HAS_WAYLAND_0_85
static void
buffer_damage(struct wl_client *client, struct wl_resource *buffer,
int32_t x, int32_t y, int32_t width, int32_t height)
{
2011-02-21 15:22:34 +00:00
}
#endif
2011-02-21 15:22:34 +00:00
const static struct wl_buffer_interface drm_buffer_interface = {
#ifdef HAS_WAYLAND_0_85
buffer_damage,
#endif
2011-02-21 15:22:34 +00:00
buffer_destroy
};
static void
drm_create_buffer(struct wl_client *client, struct wl_resource *resource,
2011-02-21 15:22:34 +00:00
uint32_t id, uint32_t name, int32_t width, int32_t height,
uint32_t stride, uint32_t format)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = resource->data;
2011-02-21 15:22:34 +00:00
struct wl_drm_buffer *buffer;
switch (format) {
case WL_DRM_FORMAT_ARGB8888:
case WL_DRM_FORMAT_XRGB8888:
break;
default:
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_FORMAT,
"invalid format");
return;
}
2011-02-21 15:22:34 +00:00
buffer = calloc(1, sizeof *buffer);
2011-02-21 15:22:34 +00:00
if (buffer == NULL) {
wl_resource_post_no_memory(resource);
2011-02-21 15:22:34 +00:00
return;
}
buffer->drm = drm;
buffer->buffer.width = width;
buffer->buffer.height = height;
buffer->format = format;
buffer->offset0 = 0;
buffer->stride0 = stride;
2011-02-21 15:22:34 +00:00
drm->callbacks->reference_buffer(drm->user_data, name, buffer);
if (buffer->driver_buffer == NULL) {
wl_resource_post_error(resource,
WL_DRM_ERROR_INVALID_NAME,
"invalid name");
2011-02-21 15:22:34 +00:00
return;
}
buffer->buffer.resource.object.id = id;
buffer->buffer.resource.object.interface = &wl_buffer_interface;
buffer->buffer.resource.object.implementation =
(void (**)(void)) &drm_buffer_interface;
buffer->buffer.resource.data = buffer;
2011-02-21 15:22:34 +00:00
buffer->buffer.resource.destroy = destroy_buffer;
buffer->buffer.resource.client = resource->client;
2011-02-21 15:22:34 +00:00
wl_client_add_resource(resource->client, &buffer->buffer.resource);
2011-02-21 15:22:34 +00:00
}
static void
drm_authenticate(struct wl_client *client,
struct wl_resource *resource, uint32_t id)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = resource->data;
if (drm->callbacks->authenticate(drm->user_data, id) < 0)
wl_resource_post_error(resource,
WL_DRM_ERROR_AUTHENTICATE_FAIL,
"authenicate failed");
2011-02-21 15:22:34 +00:00
else
wl_resource_post_event(resource, WL_DRM_AUTHENTICATED);
2011-02-21 15:22:34 +00:00
}
const static struct wl_drm_interface drm_interface = {
drm_authenticate,
drm_create_buffer
};
static void
bind_drm(struct wl_client *client, void *data, uint32_t version, uint32_t id)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm = data;
struct wl_resource *resource;
2011-02-21 15:22:34 +00:00
resource = wl_client_add_object(client, &wl_drm_interface,
&drm_interface, id, data);
wl_resource_post_event(resource, WL_DRM_DEVICE, drm->device_name);
wl_resource_post_event(resource, WL_DRM_FORMAT,
WL_DRM_FORMAT_ARGB8888);
wl_resource_post_event(resource, WL_DRM_FORMAT,
WL_DRM_FORMAT_XRGB8888);
2011-02-21 15:22:34 +00:00
}
struct wl_drm *
wayland_drm_init(struct wl_display *display, char *device_name,
struct wayland_drm_callbacks *callbacks, void *user_data)
2011-02-21 15:22:34 +00:00
{
struct wl_drm *drm;
drm = malloc(sizeof *drm);
drm->display = display;
drm->device_name = strdup(device_name);
drm->callbacks = callbacks;
drm->user_data = user_data;
2011-02-21 15:22:34 +00:00
wl_display_add_global(display, &wl_drm_interface, drm, bind_drm);
2011-02-21 15:22:34 +00:00
return drm;
}
void
wayland_drm_uninit(struct wl_drm *drm)
2011-02-21 15:22:34 +00:00
{
free(drm->device_name);
/* FIXME: need wl_display_del_{object,global} */
free(drm);
}
int
wayland_buffer_is_drm(struct wl_buffer *buffer)
{
return buffer->resource.object.implementation ==
(void (**)(void)) &drm_buffer_interface;
}
uint32_t
wayland_drm_buffer_get_format(struct wl_buffer *buffer_base)
{
struct wl_drm_buffer *buffer = (struct wl_drm_buffer *) buffer_base;
return buffer->format;
}
void *
wayland_drm_buffer_get_buffer(struct wl_buffer *buffer_base)
{
struct wl_drm_buffer *buffer = (struct wl_drm_buffer *) buffer_base;
return buffer->driver_buffer;
}