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.
47 #include <sys/types.h>
49 #define stat_t struct stat
50 #include <sys/ioctl.h>
55 /* Not all systems have MAP_FAILED defined */
57 #define MAP_FAILED ((void *)-1)
62 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
75 #define DRM_MAJOR 226 /* Linux */
79 * This definition needs to be changed on some systems if dev_t is a structure.
80 * If there is a header file we can get it from, there would be best.
83 #define makedev(x,y) ((dev_t)(((x) << 8) | (y)))
86 #define DRM_MSG_VERBOSITY 3
88 #define DRM_NODE_CONTROL 0
89 #define DRM_NODE_RENDER 1
91 static drmServerInfoPtr drm_server_info;
93 void drmSetServerInfo(drmServerInfoPtr info)
95 drm_server_info = info;
99 * Output a message to stderr.
101 * \param format printf() like format string.
104 * This function is a wrapper around vfprintf().
107 static int drmDebugPrint(const char *format, va_list ap)
109 return vfprintf(stderr, format, ap);
112 static int (*drm_debug_print)(const char *format, va_list ap) = drmDebugPrint;
115 drmMsg(const char *format, ...)
119 if (((env = getenv("LIBGL_DEBUG")) && strstr(env, "verbose")) || drm_server_info)
121 va_start(ap, format);
122 if (drm_server_info) {
123 drm_server_info->debug_print(format,ap);
125 drm_debug_print(format, ap);
132 drmSetDebugMsgFunction(int (*debug_msg_ptr)(const char *format, va_list ap))
134 drm_debug_print = debug_msg_ptr;
137 static void *drmHashTable = NULL; /* Context switch callbacks */
139 void *drmGetHashTable(void)
144 void *drmMalloc(int size)
147 if ((pt = malloc(size)))
152 void drmFree(void *pt)
159 * Call ioctl, restarting if it is interupted
162 drmIoctl(int fd, unsigned long request, void *arg)
167 ret = ioctl(fd, request, arg);
168 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
172 static unsigned long drmGetKeyFromFd(int fd)
181 drmHashEntry *drmGetEntry(int fd)
183 unsigned long key = drmGetKeyFromFd(fd);
188 drmHashTable = drmHashCreate();
190 if (drmHashLookup(drmHashTable, key, &value)) {
191 entry = drmMalloc(sizeof(*entry));
194 entry->tagTable = drmHashCreate();
195 drmHashInsert(drmHashTable, key, entry);
203 * Compare two busid strings
208 * \return 1 if matched.
211 * This function compares two bus ID strings. It understands the older
212 * PCI:b:d:f format and the newer pci:oooo:bb:dd.f format. In the format, o is
213 * domain, b is bus, d is device, f is function.
215 static int drmMatchBusID(const char *id1, const char *id2, int pci_domain_ok)
217 /* First, check if the IDs are exactly the same */
218 if (strcasecmp(id1, id2) == 0)
221 /* Try to match old/new-style PCI bus IDs. */
222 if (strncasecmp(id1, "pci", 3) == 0) {
223 unsigned int o1, b1, d1, f1;
224 unsigned int o2, b2, d2, f2;
227 ret = sscanf(id1, "pci:%04x:%02x:%02x.%u", &o1, &b1, &d1, &f1);
230 ret = sscanf(id1, "PCI:%u:%u:%u", &b1, &d1, &f1);
235 ret = sscanf(id2, "pci:%04x:%02x:%02x.%u", &o2, &b2, &d2, &f2);
238 ret = sscanf(id2, "PCI:%u:%u:%u", &b2, &d2, &f2);
243 /* If domains aren't properly supported by the kernel interface,
244 * just ignore them, which sucks less than picking a totally random
245 * card with "open by name"
250 if ((o1 != o2) || (b1 != b2) || (d1 != d2) || (f1 != f2))
259 * Handles error checking for chown call.
261 * \param path to file.
262 * \param id of the new owner.
263 * \param id of the new group.
265 * \return zero if success or -1 if failure.
268 * Checks for failure. If failure was caused by signal call chown again.
269 * If any other failure happened then it will output error mesage using
272 static int chown_check_return(const char *path, uid_t owner, gid_t group)
277 rv = chown(path, owner, group);
278 } while (rv != 0 && errno == EINTR);
283 drmMsg("Failed to change owner or group for file %s! %d: %s\n",
284 path, errno, strerror(errno));
289 * Open the DRM device, creating it if necessary.
291 * \param dev major and minor numbers of the device.
292 * \param minor minor number of the device.
294 * \return a file descriptor on success, or a negative value on error.
297 * Assembles the device name from \p minor and opens it, creating the device
298 * special file node with the major and minor numbers specified by \p dev and
299 * parent directory if necessary and was called by root.
301 static int drmOpenDevice(long dev, int minor, int type)
306 mode_t devmode = DRM_DEV_MODE, serv_mode;
307 int isroot = !geteuid();
308 uid_t user = DRM_DEV_UID;
309 gid_t group = DRM_DEV_GID, serv_group;
311 sprintf(buf, type ? DRM_DEV_NAME : DRM_CONTROL_DEV_NAME, DRM_DIR_NAME, minor);
312 drmMsg("drmOpenDevice: node name is %s\n", buf);
314 if (drm_server_info) {
315 drm_server_info->get_perms(&serv_group, &serv_mode);
316 devmode = serv_mode ? serv_mode : DRM_DEV_MODE;
317 devmode &= ~(S_IXUSR|S_IXGRP|S_IXOTH);
318 group = (serv_group >= 0) ? serv_group : DRM_DEV_GID;
322 if (stat(DRM_DIR_NAME, &st)) {
324 return DRM_ERR_NOT_ROOT;
325 mkdir(DRM_DIR_NAME, DRM_DEV_DIRMODE);
326 chown_check_return(DRM_DIR_NAME, 0, 0); /* root:root */
327 chmod(DRM_DIR_NAME, DRM_DEV_DIRMODE);
330 /* Check if the device node exists and create it if necessary. */
331 if (stat(buf, &st)) {
333 return DRM_ERR_NOT_ROOT;
335 mknod(buf, S_IFCHR | devmode, dev);
338 if (drm_server_info) {
339 chown_check_return(buf, user, group);
343 /* if we modprobed then wait for udev */
347 if (stat(DRM_DIR_NAME, &st)) {
351 if (udev_count == 50)
356 if (stat(buf, &st)) {
360 if (udev_count == 50)
367 fd = open(buf, O_RDWR, 0);
368 drmMsg("drmOpenDevice: open result is %d, (%s)\n",
369 fd, fd < 0 ? strerror(errno) : "OK");
374 /* Check if the device node is not what we expect it to be, and recreate it
375 * and try again if so.
377 if (st.st_rdev != dev) {
379 return DRM_ERR_NOT_ROOT;
381 mknod(buf, S_IFCHR | devmode, dev);
382 if (drm_server_info) {
383 chown_check_return(buf, user, group);
387 fd = open(buf, O_RDWR, 0);
388 drmMsg("drmOpenDevice: open result is %d, (%s)\n",
389 fd, fd < 0 ? strerror(errno) : "OK");
393 drmMsg("drmOpenDevice: Open failed\n");
401 * Open the DRM device
403 * \param minor device minor number.
404 * \param create allow to create the device if set.
406 * \return a file descriptor on success, or a negative value on error.
409 * Calls drmOpenDevice() if \p create is set, otherwise assembles the device
410 * name from \p minor and opens it.
412 static int drmOpenMinor(int minor, int create, int type)
418 return drmOpenDevice(makedev(DRM_MAJOR, minor), minor, type);
420 sprintf(buf, type ? DRM_DEV_NAME : DRM_CONTROL_DEV_NAME, DRM_DIR_NAME, minor);
421 if ((fd = open(buf, O_RDWR, 0)) >= 0)
428 * Determine whether the DRM kernel driver has been loaded.
430 * \return 1 if the DRM driver is loaded, 0 otherwise.
433 * Determine the presence of the kernel driver by attempting to open the 0
434 * minor and get version information. For backward compatibility with older
435 * Linux implementations, /proc/dri is also checked.
437 int drmAvailable(void)
439 drmVersionPtr version;
443 if ((fd = drmOpenMinor(0, 1, DRM_NODE_RENDER)) < 0) {
445 /* Try proc for backward Linux compatibility */
446 if (!access("/proc/dri/0", R_OK))
452 if ((version = drmGetVersion(fd))) {
454 drmFreeVersion(version);
463 * Open the device by bus ID.
465 * \param busid bus ID.
467 * \return a file descriptor on success, or a negative value on error.
470 * This function attempts to open every possible minor (up to DRM_MAX_MINOR),
471 * comparing the device bus ID with the one supplied.
473 * \sa drmOpenMinor() and drmGetBusid().
475 static int drmOpenByBusid(const char *busid)
477 int i, pci_domain_ok = 1;
482 drmMsg("drmOpenByBusid: Searching for BusID %s\n", busid);
483 for (i = 0; i < DRM_MAX_MINOR; i++) {
484 fd = drmOpenMinor(i, 1, DRM_NODE_RENDER);
485 drmMsg("drmOpenByBusid: drmOpenMinor returns %d\n", fd);
487 /* We need to try for 1.4 first for proper PCI domain support
488 * and if that fails, we know the kernel is busted
492 sv.drm_dd_major = -1; /* Don't care */
493 sv.drm_dd_minor = -1; /* Don't care */
494 if (drmSetInterfaceVersion(fd, &sv)) {
500 sv.drm_dd_major = -1; /* Don't care */
501 sv.drm_dd_minor = -1; /* Don't care */
502 drmMsg("drmOpenByBusid: Interface 1.4 failed, trying 1.1\n",fd);
503 drmSetInterfaceVersion(fd, &sv);
505 buf = drmGetBusid(fd);
506 drmMsg("drmOpenByBusid: drmGetBusid reports %s\n", buf);
507 if (buf && drmMatchBusID(buf, busid, pci_domain_ok)) {
521 * Open the device by name.
523 * \param name driver name.
525 * \return a file descriptor on success, or a negative value on error.
528 * This function opens the first minor number that matches the driver name and
529 * isn't already in use. If it's in use it then it will already have a bus ID
532 * \sa drmOpenMinor(), drmGetVersion() and drmGetBusid().
534 static int drmOpenByName(const char *name)
538 drmVersionPtr version;
541 if (!drmAvailable()) {
542 if (!drm_server_info) {
546 /* try to load the kernel module now */
547 if (!drm_server_info->load_module(name)) {
548 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);
555 * Open the first minor number that matches the driver name and isn't
556 * already in use. If it's in use it will have a busid assigned already.
558 for (i = 0; i < DRM_MAX_MINOR; i++) {
559 if ((fd = drmOpenMinor(i, 1, DRM_NODE_RENDER)) >= 0) {
560 if ((version = drmGetVersion(fd))) {
561 if (!strcmp(version->name, name)) {
562 drmFreeVersion(version);
563 id = drmGetBusid(fd);
564 drmMsg("drmGetBusid returned '%s'\n", id ? id : "NULL");
573 drmFreeVersion(version);
581 /* Backward-compatibility /proc support */
582 for (i = 0; i < 8; i++) {
583 char proc_name[64], buf[512];
584 char *driver, *pt, *devstring;
587 sprintf(proc_name, "/proc/dri/%d/name", i);
588 if ((fd = open(proc_name, 0, 0)) >= 0) {
589 retcode = read(fd, buf, sizeof(buf)-1);
592 buf[retcode-1] = '\0';
593 for (driver = pt = buf; *pt && *pt != ' '; ++pt)
595 if (*pt) { /* Device is next */
597 if (!strcmp(driver, name)) { /* Match */
598 for (devstring = ++pt; *pt && *pt != ' '; ++pt)
600 if (*pt) { /* Found busid */
601 return drmOpenByBusid(++pt);
602 } else { /* No busid */
603 return drmOpenDevice(strtol(devstring, NULL, 0),i, DRM_NODE_RENDER);
617 * Open the DRM device.
619 * Looks up the specified name and bus ID, and opens the device found. The
620 * entry in /dev/dri is created if necessary and if called by root.
622 * \param name driver name. Not referenced if bus ID is supplied.
623 * \param busid bus ID. Zero if not known.
625 * \return a file descriptor on success, or a negative value on error.
628 * It calls drmOpenByBusid() if \p busid is specified or drmOpenByName()
631 int drmOpen(const char *name, const char *busid)
633 if (!drmAvailable() && name != NULL && drm_server_info) {
634 /* try to load the kernel */
635 if (!drm_server_info->load_module(name)) {
636 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);
642 int fd = drmOpenByBusid(busid);
648 return drmOpenByName(name);
653 int drmOpenControl(int minor)
655 return drmOpenMinor(minor, 0, DRM_NODE_CONTROL);
659 * Free the version information returned by drmGetVersion().
661 * \param v pointer to the version information.
664 * It frees the memory pointed by \p %v as well as all the non-null strings
667 void drmFreeVersion(drmVersionPtr v)
679 * Free the non-public version information returned by the kernel.
681 * \param v pointer to the version information.
684 * Used by drmGetVersion() to free the memory pointed by \p %v as well as all
685 * the non-null strings pointers in it.
687 static void drmFreeKernelVersion(drm_version_t *v)
699 * Copy version information.
701 * \param d destination pointer.
702 * \param s source pointer.
705 * Used by drmGetVersion() to translate the information returned by the ioctl
706 * interface in a private structure into the public structure counterpart.
708 static void drmCopyVersion(drmVersionPtr d, const drm_version_t *s)
710 d->version_major = s->version_major;
711 d->version_minor = s->version_minor;
712 d->version_patchlevel = s->version_patchlevel;
713 d->name_len = s->name_len;
714 d->name = strdup(s->name);
715 d->date_len = s->date_len;
716 d->date = strdup(s->date);
717 d->desc_len = s->desc_len;
718 d->desc = strdup(s->desc);
723 * Query the driver version information.
725 * \param fd file descriptor.
727 * \return pointer to a drmVersion structure which should be freed with
730 * \note Similar information is available via /proc/dri.
733 * It gets the version information via successive DRM_IOCTL_VERSION ioctls,
734 * first with zeros to get the string lengths, and then the actually strings.
735 * It also null-terminates them since they might not be already.
737 drmVersionPtr drmGetVersion(int fd)
739 drmVersionPtr retval;
740 drm_version_t *version = drmMalloc(sizeof(*version));
742 version->name_len = 0;
743 version->name = NULL;
744 version->date_len = 0;
745 version->date = NULL;
746 version->desc_len = 0;
747 version->desc = NULL;
749 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
750 drmFreeKernelVersion(version);
754 if (version->name_len)
755 version->name = drmMalloc(version->name_len + 1);
756 if (version->date_len)
757 version->date = drmMalloc(version->date_len + 1);
758 if (version->desc_len)
759 version->desc = drmMalloc(version->desc_len + 1);
761 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
762 drmMsg("DRM_IOCTL_VERSION: %s\n", strerror(errno));
763 drmFreeKernelVersion(version);
767 /* The results might not be null-terminated strings, so terminate them. */
768 if (version->name_len) version->name[version->name_len] = '\0';
769 if (version->date_len) version->date[version->date_len] = '\0';
770 if (version->desc_len) version->desc[version->desc_len] = '\0';
772 retval = drmMalloc(sizeof(*retval));
773 drmCopyVersion(retval, version);
774 drmFreeKernelVersion(version);
780 * Get version information for the DRM user space library.
782 * This version number is driver independent.
784 * \param fd file descriptor.
786 * \return version information.
789 * This function allocates and fills a drm_version structure with a hard coded
792 drmVersionPtr drmGetLibVersion(int fd)
794 drm_version_t *version = drmMalloc(sizeof(*version));
797 * NOTE THIS MUST NOT GO ABOVE VERSION 1.X due to drivers needing it
798 * revision 1.0.x = original DRM interface with no drmGetLibVersion
799 * entry point and many drm<Device> extensions
800 * revision 1.1.x = added drmCommand entry points for device extensions
801 * added drmGetLibVersion to identify libdrm.a version
802 * revision 1.2.x = added drmSetInterfaceVersion
803 * modified drmOpen to handle both busid and name
804 * revision 1.3.x = added server + memory manager
806 version->version_major = 1;
807 version->version_minor = 3;
808 version->version_patchlevel = 0;
810 return (drmVersionPtr)version;
813 int drmGetCap(int fd, uint64_t capability, uint64_t *value)
815 struct drm_get_cap cap = { capability, 0 };
818 ret = drmIoctl(fd, DRM_IOCTL_GET_CAP, &cap);
827 * Free the bus ID information.
829 * \param busid bus ID information string as given by drmGetBusid().
832 * This function is just frees the memory pointed by \p busid.
834 void drmFreeBusid(const char *busid)
836 drmFree((void *)busid);
841 * Get the bus ID of the device.
843 * \param fd file descriptor.
845 * \return bus ID string.
848 * This function gets the bus ID via successive DRM_IOCTL_GET_UNIQUE ioctls to
849 * get the string length and data, passing the arguments in a drm_unique
852 char *drmGetBusid(int fd)
859 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
861 u.unique = drmMalloc(u.unique_len + 1);
862 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
864 u.unique[u.unique_len] = '\0';
871 * Set the bus ID of the device.
873 * \param fd file descriptor.
874 * \param busid bus ID string.
876 * \return zero on success, negative on failure.
879 * This function is a wrapper around the DRM_IOCTL_SET_UNIQUE ioctl, passing
880 * the arguments in a drm_unique structure.
882 int drmSetBusid(int fd, const char *busid)
886 u.unique = (char *)busid;
887 u.unique_len = strlen(busid);
889 if (drmIoctl(fd, DRM_IOCTL_SET_UNIQUE, &u)) {
895 int drmGetMagic(int fd, drm_magic_t * magic)
900 if (drmIoctl(fd, DRM_IOCTL_GET_MAGIC, &auth))
906 int drmAuthMagic(int fd, drm_magic_t magic)
911 if (drmIoctl(fd, DRM_IOCTL_AUTH_MAGIC, &auth))
917 * Specifies a range of memory that is available for mapping by a
920 * \param fd file descriptor.
921 * \param offset usually the physical address. The actual meaning depends of
922 * the \p type parameter. See below.
923 * \param size of the memory in bytes.
924 * \param type type of the memory to be mapped.
925 * \param flags combination of several flags to modify the function actions.
926 * \param handle will be set to a value that may be used as the offset
927 * parameter for mmap().
929 * \return zero on success or a negative value on error.
931 * \par Mapping the frame buffer
932 * For the frame buffer
933 * - \p offset will be the physical address of the start of the frame buffer,
934 * - \p size will be the size of the frame buffer in bytes, and
935 * - \p type will be DRM_FRAME_BUFFER.
938 * The area mapped will be uncached. If MTRR support is available in the
939 * kernel, the frame buffer area will be set to write combining.
941 * \par Mapping the MMIO register area
942 * For the MMIO register area,
943 * - \p offset will be the physical address of the start of the register area,
944 * - \p size will be the size of the register area bytes, and
945 * - \p type will be DRM_REGISTERS.
947 * The area mapped will be uncached.
949 * \par Mapping the SAREA
951 * - \p offset will be ignored and should be set to zero,
952 * - \p size will be the desired size of the SAREA in bytes,
953 * - \p type will be DRM_SHM.
956 * A shared memory area of the requested size will be created and locked in
957 * kernel memory. This area may be mapped into client-space by using the handle
960 * \note May only be called by root.
963 * This function is a wrapper around the DRM_IOCTL_ADD_MAP ioctl, passing
964 * the arguments in a drm_map structure.
966 int drmAddMap(int fd, drm_handle_t offset, drmSize size, drmMapType type,
967 drmMapFlags flags, drm_handle_t *handle)
976 if (drmIoctl(fd, DRM_IOCTL_ADD_MAP, &map))
979 *handle = (drm_handle_t)(uintptr_t)map.handle;
983 int drmRmMap(int fd, drm_handle_t handle)
987 map.handle = (void *)(uintptr_t)handle;
989 if(drmIoctl(fd, DRM_IOCTL_RM_MAP, &map))
995 * Make buffers available for DMA transfers.
997 * \param fd file descriptor.
998 * \param count number of buffers.
999 * \param size size of each buffer.
1000 * \param flags buffer allocation flags.
1001 * \param agp_offset offset in the AGP aperture
1003 * \return number of buffers allocated, negative on error.
1006 * This function is a wrapper around DRM_IOCTL_ADD_BUFS ioctl.
1010 int drmAddBufs(int fd, int count, int size, drmBufDescFlags flags,
1013 drm_buf_desc_t request;
1015 request.count = count;
1016 request.size = size;
1017 request.low_mark = 0;
1018 request.high_mark = 0;
1019 request.flags = flags;
1020 request.agp_start = agp_offset;
1022 if (drmIoctl(fd, DRM_IOCTL_ADD_BUFS, &request))
1024 return request.count;
1027 int drmMarkBufs(int fd, double low, double high)
1029 drm_buf_info_t info;
1035 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1041 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1044 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1045 int retval = -errno;
1050 for (i = 0; i < info.count; i++) {
1051 info.list[i].low_mark = low * info.list[i].count;
1052 info.list[i].high_mark = high * info.list[i].count;
1053 if (drmIoctl(fd, DRM_IOCTL_MARK_BUFS, &info.list[i])) {
1054 int retval = -errno;
1067 * \param fd file descriptor.
1068 * \param count number of buffers to free.
1069 * \param list list of buffers to be freed.
1071 * \return zero on success, or a negative value on failure.
1073 * \note This function is primarily used for debugging.
1076 * This function is a wrapper around the DRM_IOCTL_FREE_BUFS ioctl, passing
1077 * the arguments in a drm_buf_free structure.
1079 int drmFreeBufs(int fd, int count, int *list)
1081 drm_buf_free_t request;
1083 request.count = count;
1084 request.list = list;
1085 if (drmIoctl(fd, DRM_IOCTL_FREE_BUFS, &request))
1094 * \param fd file descriptor.
1097 * This function closes the file descriptor.
1099 int drmClose(int fd)
1101 unsigned long key = drmGetKeyFromFd(fd);
1102 drmHashEntry *entry = drmGetEntry(fd);
1104 drmHashDestroy(entry->tagTable);
1107 entry->tagTable = NULL;
1109 drmHashDelete(drmHashTable, key);
1117 * Map a region of memory.
1119 * \param fd file descriptor.
1120 * \param handle handle returned by drmAddMap().
1121 * \param size size in bytes. Must match the size used by drmAddMap().
1122 * \param address will contain the user-space virtual address where the mapping
1125 * \return zero on success, or a negative value on failure.
1128 * This function is a wrapper for mmap().
1130 int drmMap(int fd, drm_handle_t handle, drmSize size, drmAddressPtr address)
1132 static unsigned long pagesize_mask = 0;
1138 pagesize_mask = getpagesize() - 1;
1140 size = (size + pagesize_mask) & ~pagesize_mask;
1142 *address = mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, handle);
1143 if (*address == MAP_FAILED)
1150 * Unmap mappings obtained with drmMap().
1152 * \param address address as given by drmMap().
1153 * \param size size in bytes. Must match the size used by drmMap().
1155 * \return zero on success, or a negative value on failure.
1158 * This function is a wrapper for munmap().
1160 int drmUnmap(drmAddress address, drmSize size)
1162 return munmap(address, size);
1165 drmBufInfoPtr drmGetBufInfo(int fd)
1167 drm_buf_info_t info;
1168 drmBufInfoPtr retval;
1174 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1178 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1181 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1186 retval = drmMalloc(sizeof(*retval));
1187 retval->count = info.count;
1188 retval->list = drmMalloc(info.count * sizeof(*retval->list));
1189 for (i = 0; i < info.count; i++) {
1190 retval->list[i].count = info.list[i].count;
1191 retval->list[i].size = info.list[i].size;
1192 retval->list[i].low_mark = info.list[i].low_mark;
1193 retval->list[i].high_mark = info.list[i].high_mark;
1202 * Map all DMA buffers into client-virtual space.
1204 * \param fd file descriptor.
1206 * \return a pointer to a ::drmBufMap structure.
1208 * \note The client may not use these buffers until obtaining buffer indices
1212 * This function calls the DRM_IOCTL_MAP_BUFS ioctl and copies the returned
1213 * information about the buffers in a drm_buf_map structure into the
1214 * client-visible data structures.
1216 drmBufMapPtr drmMapBufs(int fd)
1219 drmBufMapPtr retval;
1224 bufs.virtual = NULL;
1225 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs))
1231 if (!(bufs.list = drmMalloc(bufs.count * sizeof(*bufs.list))))
1234 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs)) {
1239 retval = drmMalloc(sizeof(*retval));
1240 retval->count = bufs.count;
1241 retval->list = drmMalloc(bufs.count * sizeof(*retval->list));
1242 for (i = 0; i < bufs.count; i++) {
1243 retval->list[i].idx = bufs.list[i].idx;
1244 retval->list[i].total = bufs.list[i].total;
1245 retval->list[i].used = 0;
1246 retval->list[i].address = bufs.list[i].address;
1256 * Unmap buffers allocated with drmMapBufs().
1258 * \return zero on success, or negative value on failure.
1261 * Calls munmap() for every buffer stored in \p bufs and frees the
1262 * memory allocated by drmMapBufs().
1264 int drmUnmapBufs(drmBufMapPtr bufs)
1268 for (i = 0; i < bufs->count; i++) {
1269 munmap(bufs->list[i].address, bufs->list[i].total);
1272 drmFree(bufs->list);
1279 #define DRM_DMA_RETRY 16
1282 * Reserve DMA buffers.
1284 * \param fd file descriptor.
1287 * \return zero on success, or a negative value on failure.
1290 * Assemble the arguments into a drm_dma structure and keeps issuing the
1291 * DRM_IOCTL_DMA ioctl until success or until maximum number of retries.
1293 int drmDMA(int fd, drmDMAReqPtr request)
1298 dma.context = request->context;
1299 dma.send_count = request->send_count;
1300 dma.send_indices = request->send_list;
1301 dma.send_sizes = request->send_sizes;
1302 dma.flags = request->flags;
1303 dma.request_count = request->request_count;
1304 dma.request_size = request->request_size;
1305 dma.request_indices = request->request_list;
1306 dma.request_sizes = request->request_sizes;
1307 dma.granted_count = 0;
1310 ret = ioctl( fd, DRM_IOCTL_DMA, &dma );
1311 } while ( ret && errno == EAGAIN && i++ < DRM_DMA_RETRY );
1314 request->granted_count = dma.granted_count;
1323 * Obtain heavyweight hardware lock.
1325 * \param fd file descriptor.
1326 * \param context context.
1327 * \param flags flags that determine the sate of the hardware when the function
1330 * \return always zero.
1333 * This function translates the arguments into a drm_lock structure and issue
1334 * the DRM_IOCTL_LOCK ioctl until the lock is successfully acquired.
1336 int drmGetLock(int fd, drm_context_t context, drmLockFlags flags)
1340 lock.context = context;
1342 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
1343 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
1344 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
1345 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
1346 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
1347 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
1349 while (drmIoctl(fd, DRM_IOCTL_LOCK, &lock))
1355 * Release the hardware lock.
1357 * \param fd file descriptor.
1358 * \param context context.
1360 * \return zero on success, or a negative value on failure.
1363 * This function is a wrapper around the DRM_IOCTL_UNLOCK ioctl, passing the
1364 * argument in a drm_lock structure.
1366 int drmUnlock(int fd, drm_context_t context)
1370 lock.context = context;
1372 return drmIoctl(fd, DRM_IOCTL_UNLOCK, &lock);
1375 drm_context_t *drmGetReservedContextList(int fd, int *count)
1379 drm_context_t * retval;
1383 res.contexts = NULL;
1384 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1390 if (!(list = drmMalloc(res.count * sizeof(*list))))
1392 if (!(retval = drmMalloc(res.count * sizeof(*retval)))) {
1397 res.contexts = list;
1398 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1401 for (i = 0; i < res.count; i++)
1402 retval[i] = list[i].handle;
1409 void drmFreeReservedContextList(drm_context_t *pt)
1417 * Used by the X server during GLXContext initialization. This causes
1418 * per-context kernel-level resources to be allocated.
1420 * \param fd file descriptor.
1421 * \param handle is set on success. To be used by the client when requesting DMA
1422 * dispatch with drmDMA().
1424 * \return zero on success, or a negative value on failure.
1426 * \note May only be called by root.
1429 * This function is a wrapper around the DRM_IOCTL_ADD_CTX ioctl, passing the
1430 * argument in a drm_ctx structure.
1432 int drmCreateContext(int fd, drm_context_t *handle)
1436 ctx.flags = 0; /* Modified with functions below */
1437 if (drmIoctl(fd, DRM_IOCTL_ADD_CTX, &ctx))
1439 *handle = ctx.handle;
1443 int drmSwitchToContext(int fd, drm_context_t context)
1447 ctx.handle = context;
1448 if (drmIoctl(fd, DRM_IOCTL_SWITCH_CTX, &ctx))
1453 int drmSetContextFlags(int fd, drm_context_t context, drm_context_tFlags flags)
1458 * Context preserving means that no context switches are done between DMA
1459 * buffers from one context and the next. This is suitable for use in the
1460 * X server (which promises to maintain hardware context), or in the
1461 * client-side library when buffers are swapped on behalf of two threads.
1463 ctx.handle = context;
1465 if (flags & DRM_CONTEXT_PRESERVED)
1466 ctx.flags |= _DRM_CONTEXT_PRESERVED;
1467 if (flags & DRM_CONTEXT_2DONLY)
1468 ctx.flags |= _DRM_CONTEXT_2DONLY;
1469 if (drmIoctl(fd, DRM_IOCTL_MOD_CTX, &ctx))
1474 int drmGetContextFlags(int fd, drm_context_t context,
1475 drm_context_tFlagsPtr flags)
1479 ctx.handle = context;
1480 if (drmIoctl(fd, DRM_IOCTL_GET_CTX, &ctx))
1483 if (ctx.flags & _DRM_CONTEXT_PRESERVED)
1484 *flags |= DRM_CONTEXT_PRESERVED;
1485 if (ctx.flags & _DRM_CONTEXT_2DONLY)
1486 *flags |= DRM_CONTEXT_2DONLY;
1493 * Free any kernel-level resources allocated with drmCreateContext() associated
1496 * \param fd file descriptor.
1497 * \param handle handle given by drmCreateContext().
1499 * \return zero on success, or a negative value on failure.
1501 * \note May only be called by root.
1504 * This function is a wrapper around the DRM_IOCTL_RM_CTX ioctl, passing the
1505 * argument in a drm_ctx structure.
1507 int drmDestroyContext(int fd, drm_context_t handle)
1510 ctx.handle = handle;
1511 if (drmIoctl(fd, DRM_IOCTL_RM_CTX, &ctx))
1516 int drmCreateDrawable(int fd, drm_drawable_t *handle)
1519 if (drmIoctl(fd, DRM_IOCTL_ADD_DRAW, &draw))
1521 *handle = draw.handle;
1525 int drmDestroyDrawable(int fd, drm_drawable_t handle)
1528 draw.handle = handle;
1529 if (drmIoctl(fd, DRM_IOCTL_RM_DRAW, &draw))
1534 int drmUpdateDrawableInfo(int fd, drm_drawable_t handle,
1535 drm_drawable_info_type_t type, unsigned int num,
1538 drm_update_draw_t update;
1540 update.handle = handle;
1543 update.data = (unsigned long long)(unsigned long)data;
1545 if (drmIoctl(fd, DRM_IOCTL_UPDATE_DRAW, &update))
1552 * Acquire the AGP device.
1554 * Must be called before any of the other AGP related calls.
1556 * \param fd file descriptor.
1558 * \return zero on success, or a negative value on failure.
1561 * This function is a wrapper around the DRM_IOCTL_AGP_ACQUIRE ioctl.
1563 int drmAgpAcquire(int fd)
1565 if (drmIoctl(fd, DRM_IOCTL_AGP_ACQUIRE, NULL))
1572 * Release the AGP device.
1574 * \param fd file descriptor.
1576 * \return zero on success, or a negative value on failure.
1579 * This function is a wrapper around the DRM_IOCTL_AGP_RELEASE ioctl.
1581 int drmAgpRelease(int fd)
1583 if (drmIoctl(fd, DRM_IOCTL_AGP_RELEASE, NULL))
1592 * \param fd file descriptor.
1593 * \param mode AGP mode.
1595 * \return zero on success, or a negative value on failure.
1598 * This function is a wrapper around the DRM_IOCTL_AGP_ENABLE ioctl, passing the
1599 * argument in a drm_agp_mode structure.
1601 int drmAgpEnable(int fd, unsigned long mode)
1606 if (drmIoctl(fd, DRM_IOCTL_AGP_ENABLE, &m))
1613 * Allocate a chunk of AGP memory.
1615 * \param fd file descriptor.
1616 * \param size requested memory size in bytes. Will be rounded to page boundary.
1617 * \param type type of memory to allocate.
1618 * \param address if not zero, will be set to the physical address of the
1620 * \param handle on success will be set to a handle of the allocated memory.
1622 * \return zero on success, or a negative value on failure.
1625 * This function is a wrapper around the DRM_IOCTL_AGP_ALLOC ioctl, passing the
1626 * arguments in a drm_agp_buffer structure.
1628 int drmAgpAlloc(int fd, unsigned long size, unsigned long type,
1629 unsigned long *address, drm_handle_t *handle)
1633 *handle = DRM_AGP_NO_HANDLE;
1637 if (drmIoctl(fd, DRM_IOCTL_AGP_ALLOC, &b))
1640 *address = b.physical;
1647 * Free a chunk of AGP memory.
1649 * \param fd file descriptor.
1650 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1652 * \return zero on success, or a negative value on failure.
1655 * This function is a wrapper around the DRM_IOCTL_AGP_FREE ioctl, passing the
1656 * argument in a drm_agp_buffer structure.
1658 int drmAgpFree(int fd, drm_handle_t handle)
1664 if (drmIoctl(fd, DRM_IOCTL_AGP_FREE, &b))
1671 * Bind a chunk of AGP memory.
1673 * \param fd file descriptor.
1674 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1675 * \param offset offset in bytes. It will round to page boundary.
1677 * \return zero on success, or a negative value on failure.
1680 * This function is a wrapper around the DRM_IOCTL_AGP_BIND ioctl, passing the
1681 * argument in a drm_agp_binding structure.
1683 int drmAgpBind(int fd, drm_handle_t handle, unsigned long offset)
1685 drm_agp_binding_t b;
1689 if (drmIoctl(fd, DRM_IOCTL_AGP_BIND, &b))
1696 * Unbind a chunk of AGP memory.
1698 * \param fd file descriptor.
1699 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1701 * \return zero on success, or a negative value on failure.
1704 * This function is a wrapper around the DRM_IOCTL_AGP_UNBIND ioctl, passing
1705 * the argument in a drm_agp_binding structure.
1707 int drmAgpUnbind(int fd, drm_handle_t handle)
1709 drm_agp_binding_t b;
1713 if (drmIoctl(fd, DRM_IOCTL_AGP_UNBIND, &b))
1720 * Get AGP driver major version number.
1722 * \param fd file descriptor.
1724 * \return major version number on success, or a negative value on failure..
1727 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1728 * necessary information in a drm_agp_info structure.
1730 int drmAgpVersionMajor(int fd)
1734 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1736 return i.agp_version_major;
1741 * Get AGP driver minor version number.
1743 * \param fd file descriptor.
1745 * \return minor version number on success, or a negative value on failure.
1748 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1749 * necessary information in a drm_agp_info structure.
1751 int drmAgpVersionMinor(int fd)
1755 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1757 return i.agp_version_minor;
1764 * \param fd file descriptor.
1766 * \return mode on success, or zero on failure.
1769 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1770 * necessary information in a drm_agp_info structure.
1772 unsigned long drmAgpGetMode(int fd)
1776 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1783 * Get AGP aperture base.
1785 * \param fd file descriptor.
1787 * \return aperture base on success, zero on failure.
1790 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1791 * necessary information in a drm_agp_info structure.
1793 unsigned long drmAgpBase(int fd)
1797 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1799 return i.aperture_base;
1804 * Get AGP aperture size.
1806 * \param fd file descriptor.
1808 * \return aperture size on success, zero on failure.
1811 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1812 * necessary information in a drm_agp_info structure.
1814 unsigned long drmAgpSize(int fd)
1818 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1820 return i.aperture_size;
1825 * Get used AGP memory.
1827 * \param fd file descriptor.
1829 * \return memory used on success, or zero on failure.
1832 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1833 * necessary information in a drm_agp_info structure.
1835 unsigned long drmAgpMemoryUsed(int fd)
1839 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1841 return i.memory_used;
1846 * Get available AGP memory.
1848 * \param fd file descriptor.
1850 * \return memory available on success, or zero on failure.
1853 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1854 * necessary information in a drm_agp_info structure.
1856 unsigned long drmAgpMemoryAvail(int fd)
1860 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1862 return i.memory_allowed;
1867 * Get hardware vendor ID.
1869 * \param fd file descriptor.
1871 * \return vendor ID on success, or zero on failure.
1874 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1875 * necessary information in a drm_agp_info structure.
1877 unsigned int drmAgpVendorId(int fd)
1881 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1888 * Get hardware device ID.
1890 * \param fd file descriptor.
1892 * \return zero on success, or zero on failure.
1895 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1896 * necessary information in a drm_agp_info structure.
1898 unsigned int drmAgpDeviceId(int fd)
1902 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1907 int drmScatterGatherAlloc(int fd, unsigned long size, drm_handle_t *handle)
1909 drm_scatter_gather_t sg;
1914 if (drmIoctl(fd, DRM_IOCTL_SG_ALLOC, &sg))
1916 *handle = sg.handle;
1920 int drmScatterGatherFree(int fd, drm_handle_t handle)
1922 drm_scatter_gather_t sg;
1926 if (drmIoctl(fd, DRM_IOCTL_SG_FREE, &sg))
1934 * \param fd file descriptor.
1935 * \param vbl pointer to a drmVBlank structure.
1937 * \return zero on success, or a negative value on failure.
1940 * This function is a wrapper around the DRM_IOCTL_WAIT_VBLANK ioctl.
1942 int drmWaitVBlank(int fd, drmVBlankPtr vbl)
1944 struct timespec timeout, cur;
1947 ret = clock_gettime(CLOCK_MONOTONIC, &timeout);
1949 fprintf(stderr, "clock_gettime failed: %s\n", strerror(ret));
1955 ret = ioctl(fd, DRM_IOCTL_WAIT_VBLANK, vbl);
1956 vbl->request.type &= ~DRM_VBLANK_RELATIVE;
1957 if (ret && errno == EINTR) {
1958 clock_gettime(CLOCK_MONOTONIC, &cur);
1959 /* Timeout after 1s */
1960 if (cur.tv_sec > timeout.tv_sec + 1 ||
1961 (cur.tv_sec == timeout.tv_sec && cur.tv_nsec >=
1968 } while (ret && errno == EINTR);
1974 int drmError(int err, const char *label)
1977 case DRM_ERR_NO_DEVICE:
1978 fprintf(stderr, "%s: no device\n", label);
1980 case DRM_ERR_NO_ACCESS:
1981 fprintf(stderr, "%s: no access\n", label);
1983 case DRM_ERR_NOT_ROOT:
1984 fprintf(stderr, "%s: not root\n", label);
1986 case DRM_ERR_INVALID:
1987 fprintf(stderr, "%s: invalid args\n", label);
1992 fprintf( stderr, "%s: error %d (%s)\n", label, err, strerror(err) );
2000 * Install IRQ handler.
2002 * \param fd file descriptor.
2003 * \param irq IRQ number.
2005 * \return zero on success, or a negative value on failure.
2008 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
2009 * argument in a drm_control structure.
2011 int drmCtlInstHandler(int fd, int irq)
2015 ctl.func = DRM_INST_HANDLER;
2017 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2024 * Uninstall IRQ handler.
2026 * \param fd file descriptor.
2028 * \return zero on success, or a negative value on failure.
2031 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
2032 * argument in a drm_control structure.
2034 int drmCtlUninstHandler(int fd)
2038 ctl.func = DRM_UNINST_HANDLER;
2040 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2045 int drmFinish(int fd, int context, drmLockFlags flags)
2049 lock.context = context;
2051 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
2052 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
2053 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
2054 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
2055 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
2056 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
2057 if (drmIoctl(fd, DRM_IOCTL_FINISH, &lock))
2063 * Get IRQ from bus ID.
2065 * \param fd file descriptor.
2066 * \param busnum bus number.
2067 * \param devnum device number.
2068 * \param funcnum function number.
2070 * \return IRQ number on success, or a negative value on failure.
2073 * This function is a wrapper around the DRM_IOCTL_IRQ_BUSID ioctl, passing the
2074 * arguments in a drm_irq_busid structure.
2076 int drmGetInterruptFromBusID(int fd, int busnum, int devnum, int funcnum)
2082 p.funcnum = funcnum;
2083 if (drmIoctl(fd, DRM_IOCTL_IRQ_BUSID, &p))
2088 int drmAddContextTag(int fd, drm_context_t context, void *tag)
2090 drmHashEntry *entry = drmGetEntry(fd);
2092 if (drmHashInsert(entry->tagTable, context, tag)) {
2093 drmHashDelete(entry->tagTable, context);
2094 drmHashInsert(entry->tagTable, context, tag);
2099 int drmDelContextTag(int fd, drm_context_t context)
2101 drmHashEntry *entry = drmGetEntry(fd);
2103 return drmHashDelete(entry->tagTable, context);
2106 void *drmGetContextTag(int fd, drm_context_t context)
2108 drmHashEntry *entry = drmGetEntry(fd);
2111 if (drmHashLookup(entry->tagTable, context, &value))
2117 int drmAddContextPrivateMapping(int fd, drm_context_t ctx_id,
2118 drm_handle_t handle)
2120 drm_ctx_priv_map_t map;
2122 map.ctx_id = ctx_id;
2123 map.handle = (void *)(uintptr_t)handle;
2125 if (drmIoctl(fd, DRM_IOCTL_SET_SAREA_CTX, &map))
2130 int drmGetContextPrivateMapping(int fd, drm_context_t ctx_id,
2131 drm_handle_t *handle)
2133 drm_ctx_priv_map_t map;
2135 map.ctx_id = ctx_id;
2137 if (drmIoctl(fd, DRM_IOCTL_GET_SAREA_CTX, &map))
2140 *handle = (drm_handle_t)(uintptr_t)map.handle;
2145 int drmGetMap(int fd, int idx, drm_handle_t *offset, drmSize *size,
2146 drmMapType *type, drmMapFlags *flags, drm_handle_t *handle,
2152 if (drmIoctl(fd, DRM_IOCTL_GET_MAP, &map))
2154 *offset = map.offset;
2158 *handle = (unsigned long)map.handle;
2163 int drmGetClient(int fd, int idx, int *auth, int *pid, int *uid,
2164 unsigned long *magic, unsigned long *iocs)
2166 drm_client_t client;
2169 if (drmIoctl(fd, DRM_IOCTL_GET_CLIENT, &client))
2171 *auth = client.auth;
2174 *magic = client.magic;
2175 *iocs = client.iocs;
2179 int drmGetStats(int fd, drmStatsT *stats)
2184 if (drmIoctl(fd, DRM_IOCTL_GET_STATS, &s))
2188 memset(stats, 0, sizeof(*stats));
2189 if (s.count > sizeof(stats->data)/sizeof(stats->data[0]))
2193 stats->data[i].long_format = "%-20.20s"; \
2194 stats->data[i].rate_format = "%8.8s"; \
2195 stats->data[i].isvalue = 1; \
2196 stats->data[i].verbose = 0
2199 stats->data[i].long_format = "%-20.20s"; \
2200 stats->data[i].rate_format = "%5.5s"; \
2201 stats->data[i].isvalue = 0; \
2202 stats->data[i].mult_names = "kgm"; \
2203 stats->data[i].mult = 1000; \
2204 stats->data[i].verbose = 0
2207 stats->data[i].long_format = "%-20.20s"; \
2208 stats->data[i].rate_format = "%5.5s"; \
2209 stats->data[i].isvalue = 0; \
2210 stats->data[i].mult_names = "KGM"; \
2211 stats->data[i].mult = 1024; \
2212 stats->data[i].verbose = 0
2215 stats->count = s.count;
2216 for (i = 0; i < s.count; i++) {
2217 stats->data[i].value = s.data[i].value;
2218 switch (s.data[i].type) {
2219 case _DRM_STAT_LOCK:
2220 stats->data[i].long_name = "Lock";
2221 stats->data[i].rate_name = "Lock";
2224 case _DRM_STAT_OPENS:
2225 stats->data[i].long_name = "Opens";
2226 stats->data[i].rate_name = "O";
2228 stats->data[i].verbose = 1;
2230 case _DRM_STAT_CLOSES:
2231 stats->data[i].long_name = "Closes";
2232 stats->data[i].rate_name = "Lock";
2234 stats->data[i].verbose = 1;
2236 case _DRM_STAT_IOCTLS:
2237 stats->data[i].long_name = "Ioctls";
2238 stats->data[i].rate_name = "Ioc/s";
2241 case _DRM_STAT_LOCKS:
2242 stats->data[i].long_name = "Locks";
2243 stats->data[i].rate_name = "Lck/s";
2246 case _DRM_STAT_UNLOCKS:
2247 stats->data[i].long_name = "Unlocks";
2248 stats->data[i].rate_name = "Unl/s";
2252 stats->data[i].long_name = "IRQs";
2253 stats->data[i].rate_name = "IRQ/s";
2256 case _DRM_STAT_PRIMARY:
2257 stats->data[i].long_name = "Primary Bytes";
2258 stats->data[i].rate_name = "PB/s";
2261 case _DRM_STAT_SECONDARY:
2262 stats->data[i].long_name = "Secondary Bytes";
2263 stats->data[i].rate_name = "SB/s";
2267 stats->data[i].long_name = "DMA";
2268 stats->data[i].rate_name = "DMA/s";
2271 case _DRM_STAT_SPECIAL:
2272 stats->data[i].long_name = "Special DMA";
2273 stats->data[i].rate_name = "dma/s";
2276 case _DRM_STAT_MISSED:
2277 stats->data[i].long_name = "Miss";
2278 stats->data[i].rate_name = "Ms/s";
2281 case _DRM_STAT_VALUE:
2282 stats->data[i].long_name = "Value";
2283 stats->data[i].rate_name = "Value";
2286 case _DRM_STAT_BYTE:
2287 stats->data[i].long_name = "Bytes";
2288 stats->data[i].rate_name = "B/s";
2291 case _DRM_STAT_COUNT:
2293 stats->data[i].long_name = "Count";
2294 stats->data[i].rate_name = "Cnt/s";
2303 * Issue a set-version ioctl.
2305 * \param fd file descriptor.
2306 * \param drmCommandIndex command index
2307 * \param data source pointer of the data to be read and written.
2308 * \param size size of the data to be read and written.
2310 * \return zero on success, or a negative value on failure.
2313 * It issues a read-write ioctl given by
2314 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2316 int drmSetInterfaceVersion(int fd, drmSetVersion *version)
2319 drm_set_version_t sv;
2321 sv.drm_di_major = version->drm_di_major;
2322 sv.drm_di_minor = version->drm_di_minor;
2323 sv.drm_dd_major = version->drm_dd_major;
2324 sv.drm_dd_minor = version->drm_dd_minor;
2326 if (drmIoctl(fd, DRM_IOCTL_SET_VERSION, &sv)) {
2330 version->drm_di_major = sv.drm_di_major;
2331 version->drm_di_minor = sv.drm_di_minor;
2332 version->drm_dd_major = sv.drm_dd_major;
2333 version->drm_dd_minor = sv.drm_dd_minor;
2339 * Send a device-specific command.
2341 * \param fd file descriptor.
2342 * \param drmCommandIndex command index
2344 * \return zero on success, or a negative value on failure.
2347 * It issues a ioctl given by
2348 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2350 int drmCommandNone(int fd, unsigned long drmCommandIndex)
2352 void *data = NULL; /* dummy */
2353 unsigned long request;
2355 request = DRM_IO( DRM_COMMAND_BASE + drmCommandIndex);
2357 if (drmIoctl(fd, request, data)) {
2365 * Send a device-specific read command.
2367 * \param fd file descriptor.
2368 * \param drmCommandIndex command index
2369 * \param data destination pointer of the data to be read.
2370 * \param size size of the data to be read.
2372 * \return zero on success, or a negative value on failure.
2375 * It issues a read ioctl given by
2376 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2378 int drmCommandRead(int fd, unsigned long drmCommandIndex, void *data,
2381 unsigned long request;
2383 request = DRM_IOC( DRM_IOC_READ, DRM_IOCTL_BASE,
2384 DRM_COMMAND_BASE + drmCommandIndex, size);
2386 if (drmIoctl(fd, request, data)) {
2394 * Send a device-specific write command.
2396 * \param fd file descriptor.
2397 * \param drmCommandIndex command index
2398 * \param data source pointer of the data to be written.
2399 * \param size size of the data to be written.
2401 * \return zero on success, or a negative value on failure.
2404 * It issues a write ioctl given by
2405 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2407 int drmCommandWrite(int fd, unsigned long drmCommandIndex, void *data,
2410 unsigned long request;
2412 request = DRM_IOC( DRM_IOC_WRITE, DRM_IOCTL_BASE,
2413 DRM_COMMAND_BASE + drmCommandIndex, size);
2415 if (drmIoctl(fd, request, data)) {
2423 * Send a device-specific read-write command.
2425 * \param fd file descriptor.
2426 * \param drmCommandIndex command index
2427 * \param data source pointer of the data to be read and written.
2428 * \param size size of the data to be read and written.
2430 * \return zero on success, or a negative value on failure.
2433 * It issues a read-write ioctl given by
2434 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2436 int drmCommandWriteRead(int fd, unsigned long drmCommandIndex, void *data,
2439 unsigned long request;
2441 request = DRM_IOC( DRM_IOC_READ|DRM_IOC_WRITE, DRM_IOCTL_BASE,
2442 DRM_COMMAND_BASE + drmCommandIndex, size);
2444 if (drmIoctl(fd, request, data))
2449 #define DRM_MAX_FDS 16
2454 } connection[DRM_MAX_FDS];
2456 static int nr_fds = 0;
2458 int drmOpenOnce(void *unused,
2465 for (i = 0; i < nr_fds; i++)
2466 if (strcmp(BusID, connection[i].BusID) == 0) {
2467 connection[i].refcount++;
2469 return connection[i].fd;
2472 fd = drmOpen(unused, BusID);
2473 if (fd <= 0 || nr_fds == DRM_MAX_FDS)
2476 connection[nr_fds].BusID = strdup(BusID);
2477 connection[nr_fds].fd = fd;
2478 connection[nr_fds].refcount = 1;
2482 fprintf(stderr, "saved connection %d for %s %d\n",
2483 nr_fds, connection[nr_fds].BusID,
2484 strcmp(BusID, connection[nr_fds].BusID));
2491 void drmCloseOnce(int fd)
2495 for (i = 0; i < nr_fds; i++) {
2496 if (fd == connection[i].fd) {
2497 if (--connection[i].refcount == 0) {
2498 drmClose(connection[i].fd);
2499 free(connection[i].BusID);
2502 connection[i] = connection[nr_fds];
2510 int drmSetMaster(int fd)
2512 return ioctl(fd, DRM_IOCTL_SET_MASTER, 0);
2515 int drmDropMaster(int fd)
2517 return ioctl(fd, DRM_IOCTL_DROP_MASTER, 0);
2520 char *drmGetDeviceNameFromFd(int fd)
2527 /* The whole drmOpen thing is a fiasco and we need to find a way
2528 * back to just using open(2). For now, however, lets just make
2529 * things worse with even more ad hoc directory walking code to
2530 * discover the device file name. */
2535 for (i = 0; i < DRM_MAX_MINOR; i++) {
2536 snprintf(name, sizeof name, DRM_DEV_NAME, DRM_DIR_NAME, i);
2537 if (stat(name, &sbuf) == 0 && sbuf.st_rdev == d)
2540 if (i == DRM_MAX_MINOR)
2543 return strdup(name);