3 * User-level interface to DRM device
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Kevin E. Martin <martin@valinux.com>
10 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
11 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12 * All Rights Reserved.
14 * Permission is hereby granted, free of charge, to any person obtaining a
15 * copy of this software and associated documentation files (the "Software"),
16 * to deal in the Software without restriction, including without limitation
17 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 * and/or sell copies of the Software, and to permit persons to whom the
19 * Software is furnished to do so, subject to the following conditions:
21 * The above copyright notice and this permission notice (including the next
22 * paragraph) shall be included in all copies or substantial portions of the
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 * DEALINGS IN THE SOFTWARE.
51 #include <sys/types.h>
53 #define stat_t struct stat
54 #include <sys/ioctl.h>
57 #ifdef HAVE_SYS_MKDEV_H
58 # include <sys/mkdev.h> /* defines major(), minor(), and makedev() on Solaris */
62 /* Not all systems have MAP_FAILED defined */
64 #define MAP_FAILED ((void *)-1)
68 #include "libdrm_macros.h"
70 #include "util_math.h"
73 #define DRM_PRIMARY_MINOR_NAME "drm"
74 #define DRM_CONTROL_MINOR_NAME "drmC"
75 #define DRM_RENDER_MINOR_NAME "drmR"
77 #define DRM_PRIMARY_MINOR_NAME "card"
78 #define DRM_CONTROL_MINOR_NAME "controlD"
79 #define DRM_RENDER_MINOR_NAME "renderD"
82 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
96 #endif /* __OpenBSD__ */
99 #define DRM_MAJOR 226 /* Linux */
102 #define DRM_MSG_VERBOSITY 3
104 #define memclear(s) memset(&s, 0, sizeof(s))
106 static drmServerInfoPtr drm_server_info;
108 void drmSetServerInfo(drmServerInfoPtr info)
110 drm_server_info = info;
114 * Output a message to stderr.
116 * \param format printf() like format string.
119 * This function is a wrapper around vfprintf().
122 static int DRM_PRINTFLIKE(1, 0)
123 drmDebugPrint(const char *format, va_list ap)
125 return vfprintf(stderr, format, ap);
129 drmMsg(const char *format, ...)
133 if (((env = getenv("LIBGL_DEBUG")) && strstr(env, "verbose")) ||
134 (drm_server_info && drm_server_info->debug_print))
136 va_start(ap, format);
137 if (drm_server_info) {
138 drm_server_info->debug_print(format,ap);
140 drmDebugPrint(format, ap);
146 static void *drmHashTable = NULL; /* Context switch callbacks */
148 void *drmGetHashTable(void)
153 void *drmMalloc(int size)
155 return calloc(1, size);
158 void drmFree(void *pt)
164 * Call ioctl, restarting if it is interupted
167 drmIoctl(int fd, unsigned long request, void *arg)
172 ret = ioctl(fd, request, arg);
173 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
177 static unsigned long drmGetKeyFromFd(int fd)
186 drmHashEntry *drmGetEntry(int fd)
188 unsigned long key = drmGetKeyFromFd(fd);
193 drmHashTable = drmHashCreate();
195 if (drmHashLookup(drmHashTable, key, &value)) {
196 entry = drmMalloc(sizeof(*entry));
199 entry->tagTable = drmHashCreate();
200 drmHashInsert(drmHashTable, key, entry);
208 * Compare two busid strings
213 * \return 1 if matched.
216 * This function compares two bus ID strings. It understands the older
217 * PCI:b:d:f format and the newer pci:oooo:bb:dd.f format. In the format, o is
218 * domain, b is bus, d is device, f is function.
220 static int drmMatchBusID(const char *id1, const char *id2, int pci_domain_ok)
222 /* First, check if the IDs are exactly the same */
223 if (strcasecmp(id1, id2) == 0)
226 /* Try to match old/new-style PCI bus IDs. */
227 if (strncasecmp(id1, "pci", 3) == 0) {
228 unsigned int o1, b1, d1, f1;
229 unsigned int o2, b2, d2, f2;
232 ret = sscanf(id1, "pci:%04x:%02x:%02x.%u", &o1, &b1, &d1, &f1);
235 ret = sscanf(id1, "PCI:%u:%u:%u", &b1, &d1, &f1);
240 ret = sscanf(id2, "pci:%04x:%02x:%02x.%u", &o2, &b2, &d2, &f2);
243 ret = sscanf(id2, "PCI:%u:%u:%u", &b2, &d2, &f2);
248 /* If domains aren't properly supported by the kernel interface,
249 * just ignore them, which sucks less than picking a totally random
250 * card with "open by name"
255 if ((o1 != o2) || (b1 != b2) || (d1 != d2) || (f1 != f2))
264 * Handles error checking for chown call.
266 * \param path to file.
267 * \param id of the new owner.
268 * \param id of the new group.
270 * \return zero if success or -1 if failure.
273 * Checks for failure. If failure was caused by signal call chown again.
274 * If any other failure happened then it will output error mesage using
278 static int chown_check_return(const char *path, uid_t owner, gid_t group)
283 rv = chown(path, owner, group);
284 } while (rv != 0 && errno == EINTR);
289 drmMsg("Failed to change owner or group for file %s! %d: %s\n",
290 path, errno, strerror(errno));
296 * Open the DRM device, creating it if necessary.
298 * \param dev major and minor numbers of the device.
299 * \param minor minor number of the device.
301 * \return a file descriptor on success, or a negative value on error.
304 * Assembles the device name from \p minor and opens it, creating the device
305 * special file node with the major and minor numbers specified by \p dev and
306 * parent directory if necessary and was called by root.
308 static int drmOpenDevice(dev_t dev, int minor, int type)
311 const char *dev_name;
314 mode_t devmode = DRM_DEV_MODE, serv_mode;
317 int isroot = !geteuid();
318 uid_t user = DRM_DEV_UID;
319 gid_t group = DRM_DEV_GID;
323 case DRM_NODE_PRIMARY:
324 dev_name = DRM_DEV_NAME;
326 case DRM_NODE_CONTROL:
327 dev_name = DRM_CONTROL_DEV_NAME;
329 case DRM_NODE_RENDER:
330 dev_name = DRM_RENDER_DEV_NAME;
336 sprintf(buf, dev_name, DRM_DIR_NAME, minor);
337 drmMsg("drmOpenDevice: node name is %s\n", buf);
339 if (drm_server_info && drm_server_info->get_perms) {
340 drm_server_info->get_perms(&serv_group, &serv_mode);
341 devmode = serv_mode ? serv_mode : DRM_DEV_MODE;
342 devmode &= ~(S_IXUSR|S_IXGRP|S_IXOTH);
346 if (stat(DRM_DIR_NAME, &st)) {
348 return DRM_ERR_NOT_ROOT;
349 mkdir(DRM_DIR_NAME, DRM_DEV_DIRMODE);
350 chown_check_return(DRM_DIR_NAME, 0, 0); /* root:root */
351 chmod(DRM_DIR_NAME, DRM_DEV_DIRMODE);
354 /* Check if the device node exists and create it if necessary. */
355 if (stat(buf, &st)) {
357 return DRM_ERR_NOT_ROOT;
359 mknod(buf, S_IFCHR | devmode, dev);
362 if (drm_server_info && drm_server_info->get_perms) {
363 group = ((int)serv_group >= 0) ? serv_group : DRM_DEV_GID;
364 chown_check_return(buf, user, group);
368 /* if we modprobed then wait for udev */
372 if (stat(DRM_DIR_NAME, &st)) {
376 if (udev_count == 50)
381 if (stat(buf, &st)) {
385 if (udev_count == 50)
392 fd = open(buf, O_RDWR, 0);
393 drmMsg("drmOpenDevice: open result is %d, (%s)\n",
394 fd, fd < 0 ? strerror(errno) : "OK");
399 /* Check if the device node is not what we expect it to be, and recreate it
400 * and try again if so.
402 if (st.st_rdev != dev) {
404 return DRM_ERR_NOT_ROOT;
406 mknod(buf, S_IFCHR | devmode, dev);
407 if (drm_server_info && drm_server_info->get_perms) {
408 chown_check_return(buf, user, group);
412 fd = open(buf, O_RDWR, 0);
413 drmMsg("drmOpenDevice: open result is %d, (%s)\n",
414 fd, fd < 0 ? strerror(errno) : "OK");
418 drmMsg("drmOpenDevice: Open failed\n");
426 * Open the DRM device
428 * \param minor device minor number.
429 * \param create allow to create the device if set.
431 * \return a file descriptor on success, or a negative value on error.
434 * Calls drmOpenDevice() if \p create is set, otherwise assembles the device
435 * name from \p minor and opens it.
437 static int drmOpenMinor(int minor, int create, int type)
441 const char *dev_name;
444 return drmOpenDevice(makedev(DRM_MAJOR, minor), minor, type);
447 case DRM_NODE_PRIMARY:
448 dev_name = DRM_DEV_NAME;
450 case DRM_NODE_CONTROL:
451 dev_name = DRM_CONTROL_DEV_NAME;
453 case DRM_NODE_RENDER:
454 dev_name = DRM_RENDER_DEV_NAME;
460 sprintf(buf, dev_name, DRM_DIR_NAME, minor);
461 if ((fd = open(buf, O_RDWR, 0)) >= 0)
468 * Determine whether the DRM kernel driver has been loaded.
470 * \return 1 if the DRM driver is loaded, 0 otherwise.
473 * Determine the presence of the kernel driver by attempting to open the 0
474 * minor and get version information. For backward compatibility with older
475 * Linux implementations, /proc/dri is also checked.
477 int drmAvailable(void)
479 drmVersionPtr version;
483 if ((fd = drmOpenMinor(0, 1, DRM_NODE_PRIMARY)) < 0) {
485 /* Try proc for backward Linux compatibility */
486 if (!access("/proc/dri/0", R_OK))
492 if ((version = drmGetVersion(fd))) {
494 drmFreeVersion(version);
501 static int drmGetMinorBase(int type)
504 case DRM_NODE_PRIMARY:
506 case DRM_NODE_CONTROL:
508 case DRM_NODE_RENDER:
515 static int drmGetMinorType(int minor)
517 int type = minor >> 6;
523 case DRM_NODE_PRIMARY:
524 case DRM_NODE_CONTROL:
525 case DRM_NODE_RENDER:
532 static const char *drmGetMinorName(int type)
535 case DRM_NODE_PRIMARY:
536 return DRM_PRIMARY_MINOR_NAME;
537 case DRM_NODE_CONTROL:
538 return DRM_CONTROL_MINOR_NAME;
539 case DRM_NODE_RENDER:
540 return DRM_RENDER_MINOR_NAME;
547 * Open the device by bus ID.
549 * \param busid bus ID.
550 * \param type device node type.
552 * \return a file descriptor on success, or a negative value on error.
555 * This function attempts to open every possible minor (up to DRM_MAX_MINOR),
556 * comparing the device bus ID with the one supplied.
558 * \sa drmOpenMinor() and drmGetBusid().
560 static int drmOpenByBusid(const char *busid, int type)
562 int i, pci_domain_ok = 1;
566 int base = drmGetMinorBase(type);
571 drmMsg("drmOpenByBusid: Searching for BusID %s\n", busid);
572 for (i = base; i < base + DRM_MAX_MINOR; i++) {
573 fd = drmOpenMinor(i, 1, type);
574 drmMsg("drmOpenByBusid: drmOpenMinor returns %d\n", fd);
576 /* We need to try for 1.4 first for proper PCI domain support
577 * and if that fails, we know the kernel is busted
581 sv.drm_dd_major = -1; /* Don't care */
582 sv.drm_dd_minor = -1; /* Don't care */
583 if (drmSetInterfaceVersion(fd, &sv)) {
589 sv.drm_dd_major = -1; /* Don't care */
590 sv.drm_dd_minor = -1; /* Don't care */
591 drmMsg("drmOpenByBusid: Interface 1.4 failed, trying 1.1\n");
592 drmSetInterfaceVersion(fd, &sv);
594 buf = drmGetBusid(fd);
595 drmMsg("drmOpenByBusid: drmGetBusid reports %s\n", buf);
596 if (buf && drmMatchBusID(buf, busid, pci_domain_ok)) {
610 * Open the device by name.
612 * \param name driver name.
613 * \param type the device node type.
615 * \return a file descriptor on success, or a negative value on error.
618 * This function opens the first minor number that matches the driver name and
619 * isn't already in use. If it's in use it then it will already have a bus ID
622 * \sa drmOpenMinor(), drmGetVersion() and drmGetBusid().
624 static int drmOpenByName(const char *name, int type)
628 drmVersionPtr version;
630 int base = drmGetMinorBase(type);
636 * Open the first minor number that matches the driver name and isn't
637 * already in use. If it's in use it will have a busid assigned already.
639 for (i = base; i < base + DRM_MAX_MINOR; i++) {
640 if ((fd = drmOpenMinor(i, 1, type)) >= 0) {
641 if ((version = drmGetVersion(fd))) {
642 if (!strcmp(version->name, name)) {
643 drmFreeVersion(version);
644 id = drmGetBusid(fd);
645 drmMsg("drmGetBusid returned '%s'\n", id ? id : "NULL");
654 drmFreeVersion(version);
662 /* Backward-compatibility /proc support */
663 for (i = 0; i < 8; i++) {
664 char proc_name[64], buf[512];
665 char *driver, *pt, *devstring;
668 sprintf(proc_name, "/proc/dri/%d/name", i);
669 if ((fd = open(proc_name, 0, 0)) >= 0) {
670 retcode = read(fd, buf, sizeof(buf)-1);
673 buf[retcode-1] = '\0';
674 for (driver = pt = buf; *pt && *pt != ' '; ++pt)
676 if (*pt) { /* Device is next */
678 if (!strcmp(driver, name)) { /* Match */
679 for (devstring = ++pt; *pt && *pt != ' '; ++pt)
681 if (*pt) { /* Found busid */
682 return drmOpenByBusid(++pt, type);
683 } else { /* No busid */
684 return drmOpenDevice(strtol(devstring, NULL, 0),i, type);
698 * Open the DRM device.
700 * Looks up the specified name and bus ID, and opens the device found. The
701 * entry in /dev/dri is created if necessary and if called by root.
703 * \param name driver name. Not referenced if bus ID is supplied.
704 * \param busid bus ID. Zero if not known.
706 * \return a file descriptor on success, or a negative value on error.
709 * It calls drmOpenByBusid() if \p busid is specified or drmOpenByName()
712 int drmOpen(const char *name, const char *busid)
714 return drmOpenWithType(name, busid, DRM_NODE_PRIMARY);
718 * Open the DRM device with specified type.
720 * Looks up the specified name and bus ID, and opens the device found. The
721 * entry in /dev/dri is created if necessary and if called by root.
723 * \param name driver name. Not referenced if bus ID is supplied.
724 * \param busid bus ID. Zero if not known.
725 * \param type the device node type to open, PRIMARY, CONTROL or RENDER
727 * \return a file descriptor on success, or a negative value on error.
730 * It calls drmOpenByBusid() if \p busid is specified or drmOpenByName()
733 int drmOpenWithType(const char *name, const char *busid, int type)
735 if (!drmAvailable() && name != NULL && drm_server_info &&
736 drm_server_info->load_module) {
737 /* try to load the kernel module */
738 if (!drm_server_info->load_module(name)) {
739 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);
745 int fd = drmOpenByBusid(busid, type);
751 return drmOpenByName(name, type);
756 int drmOpenControl(int minor)
758 return drmOpenMinor(minor, 0, DRM_NODE_CONTROL);
761 int drmOpenRender(int minor)
763 return drmOpenMinor(minor, 0, DRM_NODE_RENDER);
767 * Free the version information returned by drmGetVersion().
769 * \param v pointer to the version information.
772 * It frees the memory pointed by \p %v as well as all the non-null strings
775 void drmFreeVersion(drmVersionPtr v)
787 * Free the non-public version information returned by the kernel.
789 * \param v pointer to the version information.
792 * Used by drmGetVersion() to free the memory pointed by \p %v as well as all
793 * the non-null strings pointers in it.
795 static void drmFreeKernelVersion(drm_version_t *v)
807 * Copy version information.
809 * \param d destination pointer.
810 * \param s source pointer.
813 * Used by drmGetVersion() to translate the information returned by the ioctl
814 * interface in a private structure into the public structure counterpart.
816 static void drmCopyVersion(drmVersionPtr d, const drm_version_t *s)
818 d->version_major = s->version_major;
819 d->version_minor = s->version_minor;
820 d->version_patchlevel = s->version_patchlevel;
821 d->name_len = s->name_len;
822 d->name = strdup(s->name);
823 d->date_len = s->date_len;
824 d->date = strdup(s->date);
825 d->desc_len = s->desc_len;
826 d->desc = strdup(s->desc);
831 * Query the driver version information.
833 * \param fd file descriptor.
835 * \return pointer to a drmVersion structure which should be freed with
838 * \note Similar information is available via /proc/dri.
841 * It gets the version information via successive DRM_IOCTL_VERSION ioctls,
842 * first with zeros to get the string lengths, and then the actually strings.
843 * It also null-terminates them since they might not be already.
845 drmVersionPtr drmGetVersion(int fd)
847 drmVersionPtr retval;
848 drm_version_t *version = drmMalloc(sizeof(*version));
852 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
853 drmFreeKernelVersion(version);
857 if (version->name_len)
858 version->name = drmMalloc(version->name_len + 1);
859 if (version->date_len)
860 version->date = drmMalloc(version->date_len + 1);
861 if (version->desc_len)
862 version->desc = drmMalloc(version->desc_len + 1);
864 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
865 drmMsg("DRM_IOCTL_VERSION: %s\n", strerror(errno));
866 drmFreeKernelVersion(version);
870 /* The results might not be null-terminated strings, so terminate them. */
871 if (version->name_len) version->name[version->name_len] = '\0';
872 if (version->date_len) version->date[version->date_len] = '\0';
873 if (version->desc_len) version->desc[version->desc_len] = '\0';
875 retval = drmMalloc(sizeof(*retval));
876 drmCopyVersion(retval, version);
877 drmFreeKernelVersion(version);
883 * Get version information for the DRM user space library.
885 * This version number is driver independent.
887 * \param fd file descriptor.
889 * \return version information.
892 * This function allocates and fills a drm_version structure with a hard coded
895 drmVersionPtr drmGetLibVersion(int fd)
897 drm_version_t *version = drmMalloc(sizeof(*version));
900 * NOTE THIS MUST NOT GO ABOVE VERSION 1.X due to drivers needing it
901 * revision 1.0.x = original DRM interface with no drmGetLibVersion
902 * entry point and many drm<Device> extensions
903 * revision 1.1.x = added drmCommand entry points for device extensions
904 * added drmGetLibVersion to identify libdrm.a version
905 * revision 1.2.x = added drmSetInterfaceVersion
906 * modified drmOpen to handle both busid and name
907 * revision 1.3.x = added server + memory manager
909 version->version_major = 1;
910 version->version_minor = 3;
911 version->version_patchlevel = 0;
913 return (drmVersionPtr)version;
916 int drmGetCap(int fd, uint64_t capability, uint64_t *value)
918 struct drm_get_cap cap;
922 cap.capability = capability;
924 ret = drmIoctl(fd, DRM_IOCTL_GET_CAP, &cap);
932 int drmSetClientCap(int fd, uint64_t capability, uint64_t value)
934 struct drm_set_client_cap cap;
937 cap.capability = capability;
940 return drmIoctl(fd, DRM_IOCTL_SET_CLIENT_CAP, &cap);
944 * Free the bus ID information.
946 * \param busid bus ID information string as given by drmGetBusid().
949 * This function is just frees the memory pointed by \p busid.
951 void drmFreeBusid(const char *busid)
953 drmFree((void *)busid);
958 * Get the bus ID of the device.
960 * \param fd file descriptor.
962 * \return bus ID string.
965 * This function gets the bus ID via successive DRM_IOCTL_GET_UNIQUE ioctls to
966 * get the string length and data, passing the arguments in a drm_unique
969 char *drmGetBusid(int fd)
975 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
977 u.unique = drmMalloc(u.unique_len + 1);
978 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
980 u.unique[u.unique_len] = '\0';
987 * Set the bus ID of the device.
989 * \param fd file descriptor.
990 * \param busid bus ID string.
992 * \return zero on success, negative on failure.
995 * This function is a wrapper around the DRM_IOCTL_SET_UNIQUE ioctl, passing
996 * the arguments in a drm_unique structure.
998 int drmSetBusid(int fd, const char *busid)
1003 u.unique = (char *)busid;
1004 u.unique_len = strlen(busid);
1006 if (drmIoctl(fd, DRM_IOCTL_SET_UNIQUE, &u)) {
1012 int drmGetMagic(int fd, drm_magic_t * magic)
1019 if (drmIoctl(fd, DRM_IOCTL_GET_MAGIC, &auth))
1021 *magic = auth.magic;
1025 int drmAuthMagic(int fd, drm_magic_t magic)
1031 if (drmIoctl(fd, DRM_IOCTL_AUTH_MAGIC, &auth))
1037 * Specifies a range of memory that is available for mapping by a
1040 * \param fd file descriptor.
1041 * \param offset usually the physical address. The actual meaning depends of
1042 * the \p type parameter. See below.
1043 * \param size of the memory in bytes.
1044 * \param type type of the memory to be mapped.
1045 * \param flags combination of several flags to modify the function actions.
1046 * \param handle will be set to a value that may be used as the offset
1047 * parameter for mmap().
1049 * \return zero on success or a negative value on error.
1051 * \par Mapping the frame buffer
1052 * For the frame buffer
1053 * - \p offset will be the physical address of the start of the frame buffer,
1054 * - \p size will be the size of the frame buffer in bytes, and
1055 * - \p type will be DRM_FRAME_BUFFER.
1058 * The area mapped will be uncached. If MTRR support is available in the
1059 * kernel, the frame buffer area will be set to write combining.
1061 * \par Mapping the MMIO register area
1062 * For the MMIO register area,
1063 * - \p offset will be the physical address of the start of the register area,
1064 * - \p size will be the size of the register area bytes, and
1065 * - \p type will be DRM_REGISTERS.
1067 * The area mapped will be uncached.
1069 * \par Mapping the SAREA
1071 * - \p offset will be ignored and should be set to zero,
1072 * - \p size will be the desired size of the SAREA in bytes,
1073 * - \p type will be DRM_SHM.
1076 * A shared memory area of the requested size will be created and locked in
1077 * kernel memory. This area may be mapped into client-space by using the handle
1080 * \note May only be called by root.
1083 * This function is a wrapper around the DRM_IOCTL_ADD_MAP ioctl, passing
1084 * the arguments in a drm_map structure.
1086 int drmAddMap(int fd, drm_handle_t offset, drmSize size, drmMapType type,
1087 drmMapFlags flags, drm_handle_t *handle)
1092 map.offset = offset;
1096 if (drmIoctl(fd, DRM_IOCTL_ADD_MAP, &map))
1099 *handle = (drm_handle_t)(uintptr_t)map.handle;
1103 int drmRmMap(int fd, drm_handle_t handle)
1108 map.handle = (void *)(uintptr_t)handle;
1110 if(drmIoctl(fd, DRM_IOCTL_RM_MAP, &map))
1116 * Make buffers available for DMA transfers.
1118 * \param fd file descriptor.
1119 * \param count number of buffers.
1120 * \param size size of each buffer.
1121 * \param flags buffer allocation flags.
1122 * \param agp_offset offset in the AGP aperture
1124 * \return number of buffers allocated, negative on error.
1127 * This function is a wrapper around DRM_IOCTL_ADD_BUFS ioctl.
1131 int drmAddBufs(int fd, int count, int size, drmBufDescFlags flags,
1134 drm_buf_desc_t request;
1137 request.count = count;
1138 request.size = size;
1139 request.flags = flags;
1140 request.agp_start = agp_offset;
1142 if (drmIoctl(fd, DRM_IOCTL_ADD_BUFS, &request))
1144 return request.count;
1147 int drmMarkBufs(int fd, double low, double high)
1149 drm_buf_info_t info;
1154 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1160 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1163 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1164 int retval = -errno;
1169 for (i = 0; i < info.count; i++) {
1170 info.list[i].low_mark = low * info.list[i].count;
1171 info.list[i].high_mark = high * info.list[i].count;
1172 if (drmIoctl(fd, DRM_IOCTL_MARK_BUFS, &info.list[i])) {
1173 int retval = -errno;
1186 * \param fd file descriptor.
1187 * \param count number of buffers to free.
1188 * \param list list of buffers to be freed.
1190 * \return zero on success, or a negative value on failure.
1192 * \note This function is primarily used for debugging.
1195 * This function is a wrapper around the DRM_IOCTL_FREE_BUFS ioctl, passing
1196 * the arguments in a drm_buf_free structure.
1198 int drmFreeBufs(int fd, int count, int *list)
1200 drm_buf_free_t request;
1203 request.count = count;
1204 request.list = list;
1205 if (drmIoctl(fd, DRM_IOCTL_FREE_BUFS, &request))
1214 * \param fd file descriptor.
1217 * This function closes the file descriptor.
1219 int drmClose(int fd)
1221 unsigned long key = drmGetKeyFromFd(fd);
1222 drmHashEntry *entry = drmGetEntry(fd);
1224 drmHashDestroy(entry->tagTable);
1227 entry->tagTable = NULL;
1229 drmHashDelete(drmHashTable, key);
1237 * Map a region of memory.
1239 * \param fd file descriptor.
1240 * \param handle handle returned by drmAddMap().
1241 * \param size size in bytes. Must match the size used by drmAddMap().
1242 * \param address will contain the user-space virtual address where the mapping
1245 * \return zero on success, or a negative value on failure.
1248 * This function is a wrapper for mmap().
1250 int drmMap(int fd, drm_handle_t handle, drmSize size, drmAddressPtr address)
1252 static unsigned long pagesize_mask = 0;
1258 pagesize_mask = getpagesize() - 1;
1260 size = (size + pagesize_mask) & ~pagesize_mask;
1262 *address = drm_mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, handle);
1263 if (*address == MAP_FAILED)
1270 * Unmap mappings obtained with drmMap().
1272 * \param address address as given by drmMap().
1273 * \param size size in bytes. Must match the size used by drmMap().
1275 * \return zero on success, or a negative value on failure.
1278 * This function is a wrapper for munmap().
1280 int drmUnmap(drmAddress address, drmSize size)
1282 return drm_munmap(address, size);
1285 drmBufInfoPtr drmGetBufInfo(int fd)
1287 drm_buf_info_t info;
1288 drmBufInfoPtr retval;
1293 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1297 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1300 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1305 retval = drmMalloc(sizeof(*retval));
1306 retval->count = info.count;
1307 retval->list = drmMalloc(info.count * sizeof(*retval->list));
1308 for (i = 0; i < info.count; i++) {
1309 retval->list[i].count = info.list[i].count;
1310 retval->list[i].size = info.list[i].size;
1311 retval->list[i].low_mark = info.list[i].low_mark;
1312 retval->list[i].high_mark = info.list[i].high_mark;
1321 * Map all DMA buffers into client-virtual space.
1323 * \param fd file descriptor.
1325 * \return a pointer to a ::drmBufMap structure.
1327 * \note The client may not use these buffers until obtaining buffer indices
1331 * This function calls the DRM_IOCTL_MAP_BUFS ioctl and copies the returned
1332 * information about the buffers in a drm_buf_map structure into the
1333 * client-visible data structures.
1335 drmBufMapPtr drmMapBufs(int fd)
1338 drmBufMapPtr retval;
1342 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs))
1348 if (!(bufs.list = drmMalloc(bufs.count * sizeof(*bufs.list))))
1351 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs)) {
1356 retval = drmMalloc(sizeof(*retval));
1357 retval->count = bufs.count;
1358 retval->list = drmMalloc(bufs.count * sizeof(*retval->list));
1359 for (i = 0; i < bufs.count; i++) {
1360 retval->list[i].idx = bufs.list[i].idx;
1361 retval->list[i].total = bufs.list[i].total;
1362 retval->list[i].used = 0;
1363 retval->list[i].address = bufs.list[i].address;
1373 * Unmap buffers allocated with drmMapBufs().
1375 * \return zero on success, or negative value on failure.
1378 * Calls munmap() for every buffer stored in \p bufs and frees the
1379 * memory allocated by drmMapBufs().
1381 int drmUnmapBufs(drmBufMapPtr bufs)
1385 for (i = 0; i < bufs->count; i++) {
1386 drm_munmap(bufs->list[i].address, bufs->list[i].total);
1389 drmFree(bufs->list);
1396 #define DRM_DMA_RETRY 16
1399 * Reserve DMA buffers.
1401 * \param fd file descriptor.
1404 * \return zero on success, or a negative value on failure.
1407 * Assemble the arguments into a drm_dma structure and keeps issuing the
1408 * DRM_IOCTL_DMA ioctl until success or until maximum number of retries.
1410 int drmDMA(int fd, drmDMAReqPtr request)
1415 dma.context = request->context;
1416 dma.send_count = request->send_count;
1417 dma.send_indices = request->send_list;
1418 dma.send_sizes = request->send_sizes;
1419 dma.flags = request->flags;
1420 dma.request_count = request->request_count;
1421 dma.request_size = request->request_size;
1422 dma.request_indices = request->request_list;
1423 dma.request_sizes = request->request_sizes;
1424 dma.granted_count = 0;
1427 ret = ioctl( fd, DRM_IOCTL_DMA, &dma );
1428 } while ( ret && errno == EAGAIN && i++ < DRM_DMA_RETRY );
1431 request->granted_count = dma.granted_count;
1440 * Obtain heavyweight hardware lock.
1442 * \param fd file descriptor.
1443 * \param context context.
1444 * \param flags flags that determine the sate of the hardware when the function
1447 * \return always zero.
1450 * This function translates the arguments into a drm_lock structure and issue
1451 * the DRM_IOCTL_LOCK ioctl until the lock is successfully acquired.
1453 int drmGetLock(int fd, drm_context_t context, drmLockFlags flags)
1458 lock.context = context;
1460 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
1461 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
1462 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
1463 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
1464 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
1465 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
1467 while (drmIoctl(fd, DRM_IOCTL_LOCK, &lock))
1473 * Release the hardware lock.
1475 * \param fd file descriptor.
1476 * \param context context.
1478 * \return zero on success, or a negative value on failure.
1481 * This function is a wrapper around the DRM_IOCTL_UNLOCK ioctl, passing the
1482 * argument in a drm_lock structure.
1484 int drmUnlock(int fd, drm_context_t context)
1489 lock.context = context;
1490 return drmIoctl(fd, DRM_IOCTL_UNLOCK, &lock);
1493 drm_context_t *drmGetReservedContextList(int fd, int *count)
1497 drm_context_t * retval;
1501 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1507 if (!(list = drmMalloc(res.count * sizeof(*list))))
1509 if (!(retval = drmMalloc(res.count * sizeof(*retval)))) {
1514 res.contexts = list;
1515 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1518 for (i = 0; i < res.count; i++)
1519 retval[i] = list[i].handle;
1526 void drmFreeReservedContextList(drm_context_t *pt)
1534 * Used by the X server during GLXContext initialization. This causes
1535 * per-context kernel-level resources to be allocated.
1537 * \param fd file descriptor.
1538 * \param handle is set on success. To be used by the client when requesting DMA
1539 * dispatch with drmDMA().
1541 * \return zero on success, or a negative value on failure.
1543 * \note May only be called by root.
1546 * This function is a wrapper around the DRM_IOCTL_ADD_CTX ioctl, passing the
1547 * argument in a drm_ctx structure.
1549 int drmCreateContext(int fd, drm_context_t *handle)
1554 if (drmIoctl(fd, DRM_IOCTL_ADD_CTX, &ctx))
1556 *handle = ctx.handle;
1560 int drmSwitchToContext(int fd, drm_context_t context)
1565 ctx.handle = context;
1566 if (drmIoctl(fd, DRM_IOCTL_SWITCH_CTX, &ctx))
1571 int drmSetContextFlags(int fd, drm_context_t context, drm_context_tFlags flags)
1576 * Context preserving means that no context switches are done between DMA
1577 * buffers from one context and the next. This is suitable for use in the
1578 * X server (which promises to maintain hardware context), or in the
1579 * client-side library when buffers are swapped on behalf of two threads.
1582 ctx.handle = context;
1583 if (flags & DRM_CONTEXT_PRESERVED)
1584 ctx.flags |= _DRM_CONTEXT_PRESERVED;
1585 if (flags & DRM_CONTEXT_2DONLY)
1586 ctx.flags |= _DRM_CONTEXT_2DONLY;
1587 if (drmIoctl(fd, DRM_IOCTL_MOD_CTX, &ctx))
1592 int drmGetContextFlags(int fd, drm_context_t context,
1593 drm_context_tFlagsPtr flags)
1598 ctx.handle = context;
1599 if (drmIoctl(fd, DRM_IOCTL_GET_CTX, &ctx))
1602 if (ctx.flags & _DRM_CONTEXT_PRESERVED)
1603 *flags |= DRM_CONTEXT_PRESERVED;
1604 if (ctx.flags & _DRM_CONTEXT_2DONLY)
1605 *flags |= DRM_CONTEXT_2DONLY;
1612 * Free any kernel-level resources allocated with drmCreateContext() associated
1615 * \param fd file descriptor.
1616 * \param handle handle given by drmCreateContext().
1618 * \return zero on success, or a negative value on failure.
1620 * \note May only be called by root.
1623 * This function is a wrapper around the DRM_IOCTL_RM_CTX ioctl, passing the
1624 * argument in a drm_ctx structure.
1626 int drmDestroyContext(int fd, drm_context_t handle)
1631 ctx.handle = handle;
1632 if (drmIoctl(fd, DRM_IOCTL_RM_CTX, &ctx))
1637 int drmCreateDrawable(int fd, drm_drawable_t *handle)
1642 if (drmIoctl(fd, DRM_IOCTL_ADD_DRAW, &draw))
1644 *handle = draw.handle;
1648 int drmDestroyDrawable(int fd, drm_drawable_t handle)
1653 draw.handle = handle;
1654 if (drmIoctl(fd, DRM_IOCTL_RM_DRAW, &draw))
1659 int drmUpdateDrawableInfo(int fd, drm_drawable_t handle,
1660 drm_drawable_info_type_t type, unsigned int num,
1663 drm_update_draw_t update;
1666 update.handle = handle;
1669 update.data = (unsigned long long)(unsigned long)data;
1671 if (drmIoctl(fd, DRM_IOCTL_UPDATE_DRAW, &update))
1678 * Acquire the AGP device.
1680 * Must be called before any of the other AGP related calls.
1682 * \param fd file descriptor.
1684 * \return zero on success, or a negative value on failure.
1687 * This function is a wrapper around the DRM_IOCTL_AGP_ACQUIRE ioctl.
1689 int drmAgpAcquire(int fd)
1691 if (drmIoctl(fd, DRM_IOCTL_AGP_ACQUIRE, NULL))
1698 * Release the AGP device.
1700 * \param fd file descriptor.
1702 * \return zero on success, or a negative value on failure.
1705 * This function is a wrapper around the DRM_IOCTL_AGP_RELEASE ioctl.
1707 int drmAgpRelease(int fd)
1709 if (drmIoctl(fd, DRM_IOCTL_AGP_RELEASE, NULL))
1718 * \param fd file descriptor.
1719 * \param mode AGP mode.
1721 * \return zero on success, or a negative value on failure.
1724 * This function is a wrapper around the DRM_IOCTL_AGP_ENABLE ioctl, passing the
1725 * argument in a drm_agp_mode structure.
1727 int drmAgpEnable(int fd, unsigned long mode)
1733 if (drmIoctl(fd, DRM_IOCTL_AGP_ENABLE, &m))
1740 * Allocate a chunk of AGP memory.
1742 * \param fd file descriptor.
1743 * \param size requested memory size in bytes. Will be rounded to page boundary.
1744 * \param type type of memory to allocate.
1745 * \param address if not zero, will be set to the physical address of the
1747 * \param handle on success will be set to a handle of the allocated memory.
1749 * \return zero on success, or a negative value on failure.
1752 * This function is a wrapper around the DRM_IOCTL_AGP_ALLOC ioctl, passing the
1753 * arguments in a drm_agp_buffer structure.
1755 int drmAgpAlloc(int fd, unsigned long size, unsigned long type,
1756 unsigned long *address, drm_handle_t *handle)
1761 *handle = DRM_AGP_NO_HANDLE;
1764 if (drmIoctl(fd, DRM_IOCTL_AGP_ALLOC, &b))
1767 *address = b.physical;
1774 * Free a chunk of AGP memory.
1776 * \param fd file descriptor.
1777 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1779 * \return zero on success, or a negative value on failure.
1782 * This function is a wrapper around the DRM_IOCTL_AGP_FREE ioctl, passing the
1783 * argument in a drm_agp_buffer structure.
1785 int drmAgpFree(int fd, drm_handle_t handle)
1791 if (drmIoctl(fd, DRM_IOCTL_AGP_FREE, &b))
1798 * Bind a chunk of AGP memory.
1800 * \param fd file descriptor.
1801 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1802 * \param offset offset in bytes. It will round to page boundary.
1804 * \return zero on success, or a negative value on failure.
1807 * This function is a wrapper around the DRM_IOCTL_AGP_BIND ioctl, passing the
1808 * argument in a drm_agp_binding structure.
1810 int drmAgpBind(int fd, drm_handle_t handle, unsigned long offset)
1812 drm_agp_binding_t b;
1817 if (drmIoctl(fd, DRM_IOCTL_AGP_BIND, &b))
1824 * Unbind a chunk of AGP memory.
1826 * \param fd file descriptor.
1827 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1829 * \return zero on success, or a negative value on failure.
1832 * This function is a wrapper around the DRM_IOCTL_AGP_UNBIND ioctl, passing
1833 * the argument in a drm_agp_binding structure.
1835 int drmAgpUnbind(int fd, drm_handle_t handle)
1837 drm_agp_binding_t b;
1841 if (drmIoctl(fd, DRM_IOCTL_AGP_UNBIND, &b))
1848 * Get AGP driver major version number.
1850 * \param fd file descriptor.
1852 * \return major version number on success, or a negative value on failure..
1855 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1856 * necessary information in a drm_agp_info structure.
1858 int drmAgpVersionMajor(int fd)
1864 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1866 return i.agp_version_major;
1871 * Get AGP driver minor version number.
1873 * \param fd file descriptor.
1875 * \return minor version number on success, or a negative value on failure.
1878 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1879 * necessary information in a drm_agp_info structure.
1881 int drmAgpVersionMinor(int fd)
1887 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1889 return i.agp_version_minor;
1896 * \param fd file descriptor.
1898 * \return mode on success, or zero on failure.
1901 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1902 * necessary information in a drm_agp_info structure.
1904 unsigned long drmAgpGetMode(int fd)
1910 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1917 * Get AGP aperture base.
1919 * \param fd file descriptor.
1921 * \return aperture base on success, zero on failure.
1924 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1925 * necessary information in a drm_agp_info structure.
1927 unsigned long drmAgpBase(int fd)
1933 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1935 return i.aperture_base;
1940 * Get AGP aperture size.
1942 * \param fd file descriptor.
1944 * \return aperture size on success, zero on failure.
1947 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1948 * necessary information in a drm_agp_info structure.
1950 unsigned long drmAgpSize(int fd)
1956 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1958 return i.aperture_size;
1963 * Get used AGP memory.
1965 * \param fd file descriptor.
1967 * \return memory used on success, or zero on failure.
1970 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1971 * necessary information in a drm_agp_info structure.
1973 unsigned long drmAgpMemoryUsed(int fd)
1979 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1981 return i.memory_used;
1986 * Get available AGP memory.
1988 * \param fd file descriptor.
1990 * \return memory available on success, or zero on failure.
1993 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1994 * necessary information in a drm_agp_info structure.
1996 unsigned long drmAgpMemoryAvail(int fd)
2002 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
2004 return i.memory_allowed;
2009 * Get hardware vendor ID.
2011 * \param fd file descriptor.
2013 * \return vendor ID on success, or zero on failure.
2016 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
2017 * necessary information in a drm_agp_info structure.
2019 unsigned int drmAgpVendorId(int fd)
2025 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
2032 * Get hardware device ID.
2034 * \param fd file descriptor.
2036 * \return zero on success, or zero on failure.
2039 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
2040 * necessary information in a drm_agp_info structure.
2042 unsigned int drmAgpDeviceId(int fd)
2048 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
2053 int drmScatterGatherAlloc(int fd, unsigned long size, drm_handle_t *handle)
2055 drm_scatter_gather_t sg;
2061 if (drmIoctl(fd, DRM_IOCTL_SG_ALLOC, &sg))
2063 *handle = sg.handle;
2067 int drmScatterGatherFree(int fd, drm_handle_t handle)
2069 drm_scatter_gather_t sg;
2073 if (drmIoctl(fd, DRM_IOCTL_SG_FREE, &sg))
2081 * \param fd file descriptor.
2082 * \param vbl pointer to a drmVBlank structure.
2084 * \return zero on success, or a negative value on failure.
2087 * This function is a wrapper around the DRM_IOCTL_WAIT_VBLANK ioctl.
2089 int drmWaitVBlank(int fd, drmVBlankPtr vbl)
2091 struct timespec timeout, cur;
2094 ret = clock_gettime(CLOCK_MONOTONIC, &timeout);
2096 fprintf(stderr, "clock_gettime failed: %s\n", strerror(errno));
2102 ret = ioctl(fd, DRM_IOCTL_WAIT_VBLANK, vbl);
2103 vbl->request.type &= ~DRM_VBLANK_RELATIVE;
2104 if (ret && errno == EINTR) {
2105 clock_gettime(CLOCK_MONOTONIC, &cur);
2106 /* Timeout after 1s */
2107 if (cur.tv_sec > timeout.tv_sec + 1 ||
2108 (cur.tv_sec == timeout.tv_sec && cur.tv_nsec >=
2115 } while (ret && errno == EINTR);
2121 int drmError(int err, const char *label)
2124 case DRM_ERR_NO_DEVICE:
2125 fprintf(stderr, "%s: no device\n", label);
2127 case DRM_ERR_NO_ACCESS:
2128 fprintf(stderr, "%s: no access\n", label);
2130 case DRM_ERR_NOT_ROOT:
2131 fprintf(stderr, "%s: not root\n", label);
2133 case DRM_ERR_INVALID:
2134 fprintf(stderr, "%s: invalid args\n", label);
2139 fprintf( stderr, "%s: error %d (%s)\n", label, err, strerror(err) );
2147 * Install IRQ handler.
2149 * \param fd file descriptor.
2150 * \param irq IRQ number.
2152 * \return zero on success, or a negative value on failure.
2155 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
2156 * argument in a drm_control structure.
2158 int drmCtlInstHandler(int fd, int irq)
2163 ctl.func = DRM_INST_HANDLER;
2165 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2172 * Uninstall IRQ handler.
2174 * \param fd file descriptor.
2176 * \return zero on success, or a negative value on failure.
2179 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
2180 * argument in a drm_control structure.
2182 int drmCtlUninstHandler(int fd)
2187 ctl.func = DRM_UNINST_HANDLER;
2189 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2194 int drmFinish(int fd, int context, drmLockFlags flags)
2199 lock.context = context;
2200 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
2201 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
2202 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
2203 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
2204 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
2205 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
2206 if (drmIoctl(fd, DRM_IOCTL_FINISH, &lock))
2212 * Get IRQ from bus ID.
2214 * \param fd file descriptor.
2215 * \param busnum bus number.
2216 * \param devnum device number.
2217 * \param funcnum function number.
2219 * \return IRQ number on success, or a negative value on failure.
2222 * This function is a wrapper around the DRM_IOCTL_IRQ_BUSID ioctl, passing the
2223 * arguments in a drm_irq_busid structure.
2225 int drmGetInterruptFromBusID(int fd, int busnum, int devnum, int funcnum)
2232 p.funcnum = funcnum;
2233 if (drmIoctl(fd, DRM_IOCTL_IRQ_BUSID, &p))
2238 int drmAddContextTag(int fd, drm_context_t context, void *tag)
2240 drmHashEntry *entry = drmGetEntry(fd);
2242 if (drmHashInsert(entry->tagTable, context, tag)) {
2243 drmHashDelete(entry->tagTable, context);
2244 drmHashInsert(entry->tagTable, context, tag);
2249 int drmDelContextTag(int fd, drm_context_t context)
2251 drmHashEntry *entry = drmGetEntry(fd);
2253 return drmHashDelete(entry->tagTable, context);
2256 void *drmGetContextTag(int fd, drm_context_t context)
2258 drmHashEntry *entry = drmGetEntry(fd);
2261 if (drmHashLookup(entry->tagTable, context, &value))
2267 int drmAddContextPrivateMapping(int fd, drm_context_t ctx_id,
2268 drm_handle_t handle)
2270 drm_ctx_priv_map_t map;
2273 map.ctx_id = ctx_id;
2274 map.handle = (void *)(uintptr_t)handle;
2276 if (drmIoctl(fd, DRM_IOCTL_SET_SAREA_CTX, &map))
2281 int drmGetContextPrivateMapping(int fd, drm_context_t ctx_id,
2282 drm_handle_t *handle)
2284 drm_ctx_priv_map_t map;
2287 map.ctx_id = ctx_id;
2289 if (drmIoctl(fd, DRM_IOCTL_GET_SAREA_CTX, &map))
2292 *handle = (drm_handle_t)(uintptr_t)map.handle;
2297 int drmGetMap(int fd, int idx, drm_handle_t *offset, drmSize *size,
2298 drmMapType *type, drmMapFlags *flags, drm_handle_t *handle,
2305 if (drmIoctl(fd, DRM_IOCTL_GET_MAP, &map))
2307 *offset = map.offset;
2311 *handle = (unsigned long)map.handle;
2316 int drmGetClient(int fd, int idx, int *auth, int *pid, int *uid,
2317 unsigned long *magic, unsigned long *iocs)
2319 drm_client_t client;
2323 if (drmIoctl(fd, DRM_IOCTL_GET_CLIENT, &client))
2325 *auth = client.auth;
2328 *magic = client.magic;
2329 *iocs = client.iocs;
2333 int drmGetStats(int fd, drmStatsT *stats)
2339 if (drmIoctl(fd, DRM_IOCTL_GET_STATS, &s))
2343 memset(stats, 0, sizeof(*stats));
2344 if (s.count > sizeof(stats->data)/sizeof(stats->data[0]))
2348 stats->data[i].long_format = "%-20.20s"; \
2349 stats->data[i].rate_format = "%8.8s"; \
2350 stats->data[i].isvalue = 1; \
2351 stats->data[i].verbose = 0
2354 stats->data[i].long_format = "%-20.20s"; \
2355 stats->data[i].rate_format = "%5.5s"; \
2356 stats->data[i].isvalue = 0; \
2357 stats->data[i].mult_names = "kgm"; \
2358 stats->data[i].mult = 1000; \
2359 stats->data[i].verbose = 0
2362 stats->data[i].long_format = "%-20.20s"; \
2363 stats->data[i].rate_format = "%5.5s"; \
2364 stats->data[i].isvalue = 0; \
2365 stats->data[i].mult_names = "KGM"; \
2366 stats->data[i].mult = 1024; \
2367 stats->data[i].verbose = 0
2370 stats->count = s.count;
2371 for (i = 0; i < s.count; i++) {
2372 stats->data[i].value = s.data[i].value;
2373 switch (s.data[i].type) {
2374 case _DRM_STAT_LOCK:
2375 stats->data[i].long_name = "Lock";
2376 stats->data[i].rate_name = "Lock";
2379 case _DRM_STAT_OPENS:
2380 stats->data[i].long_name = "Opens";
2381 stats->data[i].rate_name = "O";
2383 stats->data[i].verbose = 1;
2385 case _DRM_STAT_CLOSES:
2386 stats->data[i].long_name = "Closes";
2387 stats->data[i].rate_name = "Lock";
2389 stats->data[i].verbose = 1;
2391 case _DRM_STAT_IOCTLS:
2392 stats->data[i].long_name = "Ioctls";
2393 stats->data[i].rate_name = "Ioc/s";
2396 case _DRM_STAT_LOCKS:
2397 stats->data[i].long_name = "Locks";
2398 stats->data[i].rate_name = "Lck/s";
2401 case _DRM_STAT_UNLOCKS:
2402 stats->data[i].long_name = "Unlocks";
2403 stats->data[i].rate_name = "Unl/s";
2407 stats->data[i].long_name = "IRQs";
2408 stats->data[i].rate_name = "IRQ/s";
2411 case _DRM_STAT_PRIMARY:
2412 stats->data[i].long_name = "Primary Bytes";
2413 stats->data[i].rate_name = "PB/s";
2416 case _DRM_STAT_SECONDARY:
2417 stats->data[i].long_name = "Secondary Bytes";
2418 stats->data[i].rate_name = "SB/s";
2422 stats->data[i].long_name = "DMA";
2423 stats->data[i].rate_name = "DMA/s";
2426 case _DRM_STAT_SPECIAL:
2427 stats->data[i].long_name = "Special DMA";
2428 stats->data[i].rate_name = "dma/s";
2431 case _DRM_STAT_MISSED:
2432 stats->data[i].long_name = "Miss";
2433 stats->data[i].rate_name = "Ms/s";
2436 case _DRM_STAT_VALUE:
2437 stats->data[i].long_name = "Value";
2438 stats->data[i].rate_name = "Value";
2441 case _DRM_STAT_BYTE:
2442 stats->data[i].long_name = "Bytes";
2443 stats->data[i].rate_name = "B/s";
2446 case _DRM_STAT_COUNT:
2448 stats->data[i].long_name = "Count";
2449 stats->data[i].rate_name = "Cnt/s";
2458 * Issue a set-version ioctl.
2460 * \param fd file descriptor.
2461 * \param drmCommandIndex command index
2462 * \param data source pointer of the data to be read and written.
2463 * \param size size of the data to be read and written.
2465 * \return zero on success, or a negative value on failure.
2468 * It issues a read-write ioctl given by
2469 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2471 int drmSetInterfaceVersion(int fd, drmSetVersion *version)
2474 drm_set_version_t sv;
2477 sv.drm_di_major = version->drm_di_major;
2478 sv.drm_di_minor = version->drm_di_minor;
2479 sv.drm_dd_major = version->drm_dd_major;
2480 sv.drm_dd_minor = version->drm_dd_minor;
2482 if (drmIoctl(fd, DRM_IOCTL_SET_VERSION, &sv)) {
2486 version->drm_di_major = sv.drm_di_major;
2487 version->drm_di_minor = sv.drm_di_minor;
2488 version->drm_dd_major = sv.drm_dd_major;
2489 version->drm_dd_minor = sv.drm_dd_minor;
2495 * Send a device-specific command.
2497 * \param fd file descriptor.
2498 * \param drmCommandIndex command index
2500 * \return zero on success, or a negative value on failure.
2503 * It issues a ioctl given by
2504 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2506 int drmCommandNone(int fd, unsigned long drmCommandIndex)
2508 unsigned long request;
2510 request = DRM_IO( DRM_COMMAND_BASE + drmCommandIndex);
2512 if (drmIoctl(fd, request, NULL)) {
2520 * Send a device-specific read command.
2522 * \param fd file descriptor.
2523 * \param drmCommandIndex command index
2524 * \param data destination pointer of the data to be read.
2525 * \param size size of the data to be read.
2527 * \return zero on success, or a negative value on failure.
2530 * It issues a read ioctl given by
2531 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2533 int drmCommandRead(int fd, unsigned long drmCommandIndex, void *data,
2536 unsigned long request;
2538 request = DRM_IOC( DRM_IOC_READ, DRM_IOCTL_BASE,
2539 DRM_COMMAND_BASE + drmCommandIndex, size);
2541 if (drmIoctl(fd, request, data)) {
2549 * Send a device-specific write command.
2551 * \param fd file descriptor.
2552 * \param drmCommandIndex command index
2553 * \param data source pointer of the data to be written.
2554 * \param size size of the data to be written.
2556 * \return zero on success, or a negative value on failure.
2559 * It issues a write ioctl given by
2560 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2562 int drmCommandWrite(int fd, unsigned long drmCommandIndex, void *data,
2565 unsigned long request;
2567 request = DRM_IOC( DRM_IOC_WRITE, DRM_IOCTL_BASE,
2568 DRM_COMMAND_BASE + drmCommandIndex, size);
2570 if (drmIoctl(fd, request, data)) {
2578 * Send a device-specific read-write command.
2580 * \param fd file descriptor.
2581 * \param drmCommandIndex command index
2582 * \param data source pointer of the data to be read and written.
2583 * \param size size of the data to be read and written.
2585 * \return zero on success, or a negative value on failure.
2588 * It issues a read-write ioctl given by
2589 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2591 int drmCommandWriteRead(int fd, unsigned long drmCommandIndex, void *data,
2594 unsigned long request;
2596 request = DRM_IOC( DRM_IOC_READ|DRM_IOC_WRITE, DRM_IOCTL_BASE,
2597 DRM_COMMAND_BASE + drmCommandIndex, size);
2599 if (drmIoctl(fd, request, data))
2604 #define DRM_MAX_FDS 16
2610 } connection[DRM_MAX_FDS];
2612 static int nr_fds = 0;
2614 int drmOpenOnce(void *unused,
2618 return drmOpenOnceWithType(BusID, newlyopened, DRM_NODE_PRIMARY);
2621 int drmOpenOnceWithType(const char *BusID, int *newlyopened, int type)
2626 for (i = 0; i < nr_fds; i++)
2627 if ((strcmp(BusID, connection[i].BusID) == 0) &&
2628 (connection[i].type == type)) {
2629 connection[i].refcount++;
2631 return connection[i].fd;
2634 fd = drmOpenWithType(NULL, BusID, type);
2635 if (fd < 0 || nr_fds == DRM_MAX_FDS)
2638 connection[nr_fds].BusID = strdup(BusID);
2639 connection[nr_fds].fd = fd;
2640 connection[nr_fds].refcount = 1;
2641 connection[nr_fds].type = type;
2645 fprintf(stderr, "saved connection %d for %s %d\n",
2646 nr_fds, connection[nr_fds].BusID,
2647 strcmp(BusID, connection[nr_fds].BusID));
2654 void drmCloseOnce(int fd)
2658 for (i = 0; i < nr_fds; i++) {
2659 if (fd == connection[i].fd) {
2660 if (--connection[i].refcount == 0) {
2661 drmClose(connection[i].fd);
2662 free(connection[i].BusID);
2665 connection[i] = connection[nr_fds];
2673 int drmSetMaster(int fd)
2675 return drmIoctl(fd, DRM_IOCTL_SET_MASTER, NULL);
2678 int drmDropMaster(int fd)
2680 return drmIoctl(fd, DRM_IOCTL_DROP_MASTER, NULL);
2683 char *drmGetDeviceNameFromFd(int fd)
2690 /* The whole drmOpen thing is a fiasco and we need to find a way
2691 * back to just using open(2). For now, however, lets just make
2692 * things worse with even more ad hoc directory walking code to
2693 * discover the device file name. */
2698 for (i = 0; i < DRM_MAX_MINOR; i++) {
2699 snprintf(name, sizeof name, DRM_DEV_NAME, DRM_DIR_NAME, i);
2700 if (stat(name, &sbuf) == 0 && sbuf.st_rdev == d)
2703 if (i == DRM_MAX_MINOR)
2706 return strdup(name);
2709 int drmGetNodeTypeFromFd(int fd)
2714 if (fstat(fd, &sbuf))
2717 maj = major(sbuf.st_rdev);
2718 min = minor(sbuf.st_rdev);
2720 if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode)) {
2725 type = drmGetMinorType(min);
2731 int drmPrimeHandleToFD(int fd, uint32_t handle, uint32_t flags, int *prime_fd)
2733 struct drm_prime_handle args;
2738 args.handle = handle;
2740 ret = drmIoctl(fd, DRM_IOCTL_PRIME_HANDLE_TO_FD, &args);
2744 *prime_fd = args.fd;
2748 int drmPrimeFDToHandle(int fd, int prime_fd, uint32_t *handle)
2750 struct drm_prime_handle args;
2755 ret = drmIoctl(fd, DRM_IOCTL_PRIME_FD_TO_HANDLE, &args);
2759 *handle = args.handle;
2763 static char *drmGetMinorNameForFD(int fd, int type)
2767 struct dirent *pent, *ent;
2769 const char *name = drmGetMinorName(type);
2771 char dev_name[64], buf[64];
2780 if (fstat(fd, &sbuf))
2783 maj = major(sbuf.st_rdev);
2784 min = minor(sbuf.st_rdev);
2786 if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
2789 snprintf(buf, sizeof(buf), "/sys/dev/char/%d:%d/device/drm", maj, min);
2791 sysdir = opendir(buf);
2795 name_max = fpathconf(dirfd(sysdir), _PC_NAME_MAX);
2799 pent = malloc(offsetof(struct dirent, d_name) + name_max + 1);
2803 while (readdir_r(sysdir, pent, &ent) == 0 && ent != NULL) {
2804 if (strncmp(ent->d_name, name, len) == 0) {
2805 snprintf(dev_name, sizeof(dev_name), DRM_DIR_NAME "/%s",
2811 return strdup(dev_name);
2820 #warning "Missing implementation of drmGetMinorNameForFD"
2825 char *drmGetPrimaryDeviceNameFromFd(int fd)
2827 return drmGetMinorNameForFD(fd, DRM_NODE_PRIMARY);
2830 char *drmGetRenderDeviceNameFromFd(int fd)
2832 return drmGetMinorNameForFD(fd, DRM_NODE_RENDER);
2835 static int drmParseSubsystemType(int maj, int min)
2838 char path[PATH_MAX + 1];
2839 char link[PATH_MAX + 1] = "";
2842 snprintf(path, PATH_MAX, "/sys/dev/char/%d:%d/device/subsystem",
2845 if (readlink(path, link, PATH_MAX) < 0)
2848 name = strrchr(link, '/');
2852 if (strncmp(name, "/pci", 4) == 0)
2857 #warning "Missing implementation of drmParseSubsystemType"
2862 static int drmParsePciBusInfo(int maj, int min, drmPciBusInfoPtr info)
2865 char path[PATH_MAX + 1];
2868 int domain, bus, dev, func;
2871 snprintf(path, PATH_MAX, "/sys/dev/char/%d:%d/device/uevent", maj, min);
2872 fd = open(path, O_RDONLY);
2876 ret = read(fd, data, sizeof(data));
2882 #define TAG "PCI_SLOT_NAME="
2883 str = strstr(data, TAG);
2887 if (sscanf(str, TAG "%04x:%02x:%02x.%1u",
2888 &domain, &bus, &dev, &func) != 4)
2892 info->domain = domain;
2899 #warning "Missing implementation of drmParsePciBusInfo"
2904 static int drmCompareBusInfo(drmDevicePtr a, drmDevicePtr b)
2906 if (a == NULL || b == NULL)
2909 if (a->bustype != b->bustype)
2912 switch (a->bustype) {
2914 return memcmp(a->businfo.pci, b->businfo.pci, sizeof(drmPciBusInfo));
2922 static int drmGetNodeType(const char *name)
2924 if (strncmp(name, DRM_PRIMARY_MINOR_NAME,
2925 sizeof(DRM_PRIMARY_MINOR_NAME) - 1) == 0)
2926 return DRM_NODE_PRIMARY;
2928 if (strncmp(name, DRM_CONTROL_MINOR_NAME,
2929 sizeof(DRM_CONTROL_MINOR_NAME ) - 1) == 0)
2930 return DRM_NODE_CONTROL;
2932 if (strncmp(name, DRM_RENDER_MINOR_NAME,
2933 sizeof(DRM_RENDER_MINOR_NAME) - 1) == 0)
2934 return DRM_NODE_RENDER;
2939 static int drmGetMaxNodeName(void)
2941 return sizeof(DRM_DIR_NAME) +
2942 MAX3(sizeof(DRM_PRIMARY_MINOR_NAME),
2943 sizeof(DRM_CONTROL_MINOR_NAME),
2944 sizeof(DRM_RENDER_MINOR_NAME)) +
2945 3 /* lenght of the node number */;
2948 static int drmParsePciDeviceInfo(const char *d_name,
2949 drmPciDeviceInfoPtr device)
2952 char path[PATH_MAX + 1];
2953 unsigned char config[64];
2956 snprintf(path, PATH_MAX, "/sys/class/drm/%s/device/config", d_name);
2957 fd = open(path, O_RDONLY);
2961 ret = read(fd, config, sizeof(config));
2966 device->vendor_id = config[0] | (config[1] << 8);
2967 device->device_id = config[2] | (config[3] << 8);
2968 device->revision_id = config[8];
2969 device->subvendor_id = config[44] | (config[45] << 8);
2970 device->subdevice_id = config[46] | (config[47] << 8);
2974 #warning "Missing implementation of drmParsePciDeviceInfo"
2979 void drmFreeDevice(drmDevicePtr *device)
2988 void drmFreeDevices(drmDevicePtr devices[], int count)
2992 if (devices == NULL)
2995 for (i = 0; i < count && devices[i] != NULL; i++)
2996 drmFreeDevice(&devices[i]);
2999 static int drmProcessPciDevice(drmDevicePtr *device, const char *d_name,
3000 const char *node, int node_type,
3001 int maj, int min, bool fetch_deviceinfo)
3003 const int max_node_str = drmGetMaxNodeName();
3007 *device = calloc(1, sizeof(drmDevice) +
3008 (DRM_NODE_MAX * (sizeof(void *) + max_node_str)) +
3009 sizeof(drmPciBusInfo) +
3010 sizeof(drmPciDeviceInfo));
3014 addr = (char*)*device;
3016 (*device)->bustype = DRM_BUS_PCI;
3017 (*device)->available_nodes = 1 << node_type;
3019 addr += sizeof(drmDevice);
3020 (*device)->nodes = (char**)addr;
3022 addr += DRM_NODE_MAX * sizeof(void *);
3023 for (i = 0; i < DRM_NODE_MAX; i++) {
3024 (*device)->nodes[i] = addr;
3025 addr += max_node_str;
3027 memcpy((*device)->nodes[node_type], node, max_node_str);
3029 (*device)->businfo.pci = (drmPciBusInfoPtr)addr;
3031 ret = drmParsePciBusInfo(maj, min, (*device)->businfo.pci);
3035 // Fetch the device info if the user has requested it
3036 if (fetch_deviceinfo) {
3037 addr += sizeof(drmPciBusInfo);
3038 (*device)->deviceinfo.pci = (drmPciDeviceInfoPtr)addr;
3040 ret = drmParsePciDeviceInfo(d_name, (*device)->deviceinfo.pci);
3052 static void drmFoldDuplicatedDevices(drmDevicePtr local_devices[], int count)
3054 int node_type, i, j;
3056 for (i = 0; i < count; i++) {
3057 for (j = i + 1; j < count; j++) {
3058 if (drmCompareBusInfo(local_devices[i], local_devices[j]) == 0) {
3059 local_devices[i]->available_nodes |= local_devices[j]->available_nodes;
3060 node_type = log2(local_devices[j]->available_nodes);
3061 memcpy(local_devices[i]->nodes[node_type],
3062 local_devices[j]->nodes[node_type], drmGetMaxNodeName());
3063 drmFreeDevice(&local_devices[j]);
3070 * Get information about the opened drm device
3072 * \param fd file descriptor of the drm device
3073 * \param device the address of a drmDevicePtr where the information
3074 * will be allocated in stored
3076 * \return zero on success, negative error code otherwise.
3078 int drmGetDevice(int fd, drmDevicePtr *device)
3080 drmDevicePtr *local_devices;
3083 struct dirent *dent;
3085 char node[PATH_MAX + 1];
3086 int node_type, subsystem_type;
3088 int ret, i, node_count;
3091 if (fd == -1 || device == NULL)
3094 if (fstat(fd, &sbuf))
3097 maj = major(sbuf.st_rdev);
3098 min = minor(sbuf.st_rdev);
3100 if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
3103 subsystem_type = drmParseSubsystemType(maj, min);
3105 local_devices = calloc(max_count, sizeof(drmDevicePtr));
3106 if (local_devices == NULL)
3109 sysdir = opendir(DRM_DIR_NAME);
3116 while ((dent = readdir(sysdir))) {
3117 node_type = drmGetNodeType(dent->d_name);
3121 snprintf(node, PATH_MAX, "%s/%s", DRM_DIR_NAME, dent->d_name);
3122 if (stat(node, &sbuf))
3125 maj = major(sbuf.st_rdev);
3126 min = minor(sbuf.st_rdev);
3128 if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
3131 if (drmParseSubsystemType(maj, min) != subsystem_type)
3134 switch (subsystem_type) {
3136 ret = drmProcessPciDevice(&d, dent->d_name, node, node_type,
3143 fprintf(stderr, "The subsystem type is not supported yet\n");
3147 if (i >= max_count) {
3151 temp = realloc(local_devices, max_count * sizeof(drmDevicePtr));
3154 local_devices = temp;
3157 local_devices[i] = d;
3162 /* Fold nodes into a single device if they share the same bus info */
3163 drmFoldDuplicatedDevices(local_devices, node_count);
3165 *device = local_devices[0];
3166 for (i = 1; i < node_count && local_devices[i]; i++)
3167 drmFreeDevice(&local_devices[i]);
3170 free(local_devices);
3174 drmFreeDevices(local_devices, i);
3178 free(local_devices);
3183 * Get drm devices on the system
3185 * \param devices the array of devices with drmDevicePtr elements
3186 * can be NULL to get the device number first
3187 * \param max_devices the maximum number of devices for the array
3189 * \return on error - negative error code,
3190 * if devices is NULL - total number of devices available on the system,
3191 * alternatively the number of devices stored in devices[], which is
3192 * capped by the max_devices.
3194 int drmGetDevices(drmDevicePtr devices[], int max_devices)
3196 drmDevicePtr *local_devices;
3197 drmDevicePtr device;
3199 struct dirent *dent;
3201 char node[PATH_MAX + 1];
3202 int node_type, subsystem_type;
3204 int ret, i, node_count, device_count;
3207 local_devices = calloc(max_count, sizeof(drmDevicePtr));
3208 if (local_devices == NULL)
3211 sysdir = opendir(DRM_DIR_NAME);
3218 while ((dent = readdir(sysdir))) {
3219 node_type = drmGetNodeType(dent->d_name);
3223 snprintf(node, PATH_MAX, "%s/%s", DRM_DIR_NAME, dent->d_name);
3224 if (stat(node, &sbuf))
3227 maj = major(sbuf.st_rdev);
3228 min = minor(sbuf.st_rdev);
3230 if (maj != DRM_MAJOR || !S_ISCHR(sbuf.st_mode))
3233 subsystem_type = drmParseSubsystemType(maj, min);
3235 if (subsystem_type < 0)
3238 switch (subsystem_type) {
3240 ret = drmProcessPciDevice(&device, dent->d_name, node, node_type,
3241 maj, min, devices != NULL);
3247 fprintf(stderr, "The subsystem type is not supported yet\n");
3251 if (i >= max_count) {
3255 temp = realloc(local_devices, max_count * sizeof(drmDevicePtr));
3258 local_devices = temp;
3261 local_devices[i] = device;
3266 /* Fold nodes into a single device if they share the same bus info */
3267 drmFoldDuplicatedDevices(local_devices, node_count);
3270 for (i = 0; i < node_count && local_devices[i]; i++) {
3271 if ((devices != NULL) && (device_count < max_devices))
3272 devices[device_count] = local_devices[i];
3274 drmFreeDevice(&local_devices[i]);
3280 free(local_devices);
3281 return device_count;
3284 drmFreeDevices(local_devices, i);
3288 free(local_devices);