efl/src/lib/ecore_drm2/ecore_drm2_device.c

300 lines
6.9 KiB
C
Raw Normal View History

#include "ecore_drm2_private.h"
#ifndef DRM_CAP_CURSOR_WIDTH
# define DRM_CAP_CURSOR_WIDTH 0x8
#endif
#ifndef DRM_CAP_CURSOR_HEIGHT
# define DRM_CAP_CURSOR_HEIGHT 0x9
#endif
static Eina_Bool
_cb_session_active(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
{
Elput_Event_Session_Active *ev;
Ecore_Drm2_Event_Activate *ea;
ev = event;
ea = calloc(1, sizeof(Ecore_Drm2_Event_Activate));
if (!ea) return ECORE_CALLBACK_RENEW;
ea->active = ev->active;
ecore_event_add(ECORE_DRM2_EVENT_ACTIVATE, ea, NULL, NULL);
return ECORE_CALLBACK_RENEW;
}
static const char *
_drm2_device_find(const char *seat)
{
Eina_List *devs, *l;
const char *dev, *ret = NULL;
Eina_Bool found = EINA_FALSE;
Eina_Bool platform = EINA_FALSE;
devs = eeze_udev_find_by_subsystem_sysname("drm", "card[0-9]*");
if (!devs) return NULL;
EINA_LIST_FOREACH(devs, l, dev)
{
const char *dpath, *dseat, *dparent;
dpath = eeze_udev_syspath_get_devpath(dev);
if (!dpath) continue;
dseat = eeze_udev_syspath_get_property(dev, "ID_SEAT");
if (!dseat) dseat = eina_stringshare_add("seat0");
if ((seat) && (strcmp(seat, dseat)))
goto cont;
else if (strcmp(dseat, "seat0"))
goto cont;
dparent = eeze_udev_syspath_get_parent_filtered(dev, "pci", NULL);
if (!dparent)
{
dparent =
eeze_udev_syspath_get_parent_filtered(dev, "platform", NULL);
platform = EINA_TRUE;
}
if (dparent)
{
if (!platform)
{
const char *id;
id = eeze_udev_syspath_get_sysattr(dparent, "boot_vga");
if (id)
{
if (!strcmp(id, "1")) found = EINA_TRUE;
eina_stringshare_del(id);
}
}
else
found = EINA_TRUE;
eina_stringshare_del(dparent);
}
cont:
eina_stringshare_del(dpath);
eina_stringshare_del(dseat);
if (found) break;
}
if (!found) goto out;
ret = eeze_udev_syspath_get_devpath(dev);
out:
EINA_LIST_FREE(devs, dev)
eina_stringshare_del(dev);
return ret;
}
EAPI Ecore_Drm2_Device *
2016-05-24 13:18:46 -07:00
ecore_drm2_device_find(const char *seat, unsigned int tty)
{
Ecore_Drm2_Device *dev;
dev = calloc(1, sizeof(Ecore_Drm2_Device));
if (!dev) return NULL;
dev->path = _drm2_device_find(seat);
if (!dev->path)
{
ERR("Could not find drm device on seat %s", seat);
goto path_err;
}
2016-05-24 13:18:46 -07:00
dev->em = elput_manager_connect(seat, tty);
if (!dev->em)
{
ERR("Could not connect to input manager");
goto man_err;
}
return dev;
man_err:
eina_stringshare_del(dev->path);
path_err:
free(dev);
return NULL;
}
EAPI int
ecore_drm2_device_open(Ecore_Drm2_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);
device->fd = elput_manager_open(device->em, device->path, -1);
if (device->fd < 0) goto open_err;
2016-05-24 13:18:46 -07:00
if (!elput_input_init(device->em))
{
ERR("Could not initialize Elput Input");
goto input_err;
}
DBG("Device Path: %s", device->path);
DBG("Device Fd: %d", device->fd);
device->active_hdlr =
ecore_event_handler_add(ELPUT_EVENT_SESSION_ACTIVE,
_cb_session_active, device);
/* NB: Not going to enable planes if we don't support atomic */
/* if (drmSetClientCap(device->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1) < 0) */
/* ERR("Could not set Universal Plane support: %m"); */
return device->fd;
input_err:
elput_manager_close(device->em, device->fd);
open_err:
return -1;
}
EAPI void
ecore_drm2_device_close(Ecore_Drm2_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN(device);
EINA_SAFETY_ON_TRUE_RETURN(device->fd < 0);
elput_input_shutdown(device->em);
elput_manager_close(device->em, device->fd);
}
EAPI void
ecore_drm2_device_free(Ecore_Drm2_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN(device);
if (device->active_hdlr) ecore_event_handler_del(device->active_hdlr);
device->active_hdlr = NULL;
eina_stringshare_del(device->path);
free(device);
}
EAPI int
ecore_drm2_device_clock_id_get(Ecore_Drm2_Device *device)
{
uint64_t caps;
int ret;
EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);
EINA_SAFETY_ON_TRUE_RETURN_VAL((device->fd < 0), -1);
ret = drmGetCap(device->fd, DRM_CAP_TIMESTAMP_MONOTONIC, &caps);
if ((ret == 0) && (caps == 1))
return CLOCK_MONOTONIC;
else
return CLOCK_REALTIME;
}
EAPI void
ecore_drm2_device_cursor_size_get(Ecore_Drm2_Device *device, int *width, int *height)
{
uint64_t caps;
int ret;
EINA_SAFETY_ON_NULL_RETURN(device);
EINA_SAFETY_ON_TRUE_RETURN((device->fd < 0));
if (width)
{
*width = 64;
ret = drmGetCap(device->fd, DRM_CAP_CURSOR_WIDTH, &caps);
if (ret == 0) *width = caps;
}
if (height)
{
*height = 64;
ret = drmGetCap(device->fd, DRM_CAP_CURSOR_HEIGHT, &caps);
if (ret == 0) *height = caps;
}
}
EAPI void
ecore_drm2_device_pointer_xy_get(Ecore_Drm2_Device *device, int *x, int *y)
{
if (x) *x = 0;
if (y) *y = 0;
EINA_SAFETY_ON_NULL_RETURN(device);
elput_input_pointer_xy_get(device->em, NULL, x, y);
}
EAPI void
ecore_drm2_device_pointer_warp(Ecore_Drm2_Device *device, int x, int y)
{
EINA_SAFETY_ON_NULL_RETURN(device);
elput_input_pointer_xy_set(device->em, NULL, x, y);
}
EAPI Eina_Bool
ecore_drm2_device_pointer_left_handed_set(Ecore_Drm2_Device *device, Eina_Bool left)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);
return elput_input_pointer_left_handed_set(device->em, NULL, left);
}
EAPI void
ecore_drm2_device_window_set(Ecore_Drm2_Device *device, unsigned int window)
{
EINA_SAFETY_ON_NULL_RETURN(device);
EINA_SAFETY_ON_NULL_RETURN(device->em);
2016-05-24 13:18:46 -07:00
elput_manager_window_set(device->em, window);
}
EAPI void
ecore_drm2_device_pointer_max_set(Ecore_Drm2_Device *device, int w, int h)
{
EINA_SAFETY_ON_NULL_RETURN(device);
EINA_SAFETY_ON_NULL_RETURN(device->em);
elput_input_pointer_max_set(device->em, w, h);
}
EAPI unsigned int *
ecore_drm2_device_crtcs_get(Ecore_Drm2_Device *device, int *num)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, NULL);
if (num) *num = device->num_crtcs;
return device->crtcs;
}
EAPI void
ecore_drm2_device_screen_size_range_get(Ecore_Drm2_Device *device, int *minw, int *minh, int *maxw, int *maxh)
{
if (minw) *minw = 0;
if (minh) *minh = 0;
if (maxw) *maxw = 0;
if (maxh) *maxh = 0;
EINA_SAFETY_ON_NULL_RETURN(device);
if (minw) *minw = device->min.width;
if (minh) *minh = device->min.height;
if (maxw) *maxw = device->max.width;
if (maxh) *maxh = device->max.height;
}
EAPI void
ecore_drm2_device_calibrate(Ecore_Drm2_Device *device, int w, int h)
{
EINA_SAFETY_ON_NULL_RETURN(device);
elput_input_devices_calibrate(device->em, w, h);
}