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");
373 /* Check if the device node is not what we expect it to be, and recreate it
374 * and try again if so.
376 if (st.st_rdev != dev) {
378 return DRM_ERR_NOT_ROOT;
380 mknod(buf, S_IFCHR | devmode, dev);
381 if (drm_server_info) {
382 chown_check_return(buf, user, group);
386 fd = open(buf, O_RDWR, 0);
387 drmMsg("drmOpenDevice: open result is %d, (%s)\n",
388 fd, fd < 0 ? strerror(errno) : "OK");
392 drmMsg("drmOpenDevice: Open failed\n");
399 * Open the DRM device
401 * \param minor device minor number.
402 * \param create allow to create the device if set.
404 * \return a file descriptor on success, or a negative value on error.
407 * Calls drmOpenDevice() if \p create is set, otherwise assembles the device
408 * name from \p minor and opens it.
410 static int drmOpenMinor(int minor, int create, int type)
416 return drmOpenDevice(makedev(DRM_MAJOR, minor), minor, type);
418 sprintf(buf, type ? DRM_DEV_NAME : DRM_CONTROL_DEV_NAME, DRM_DIR_NAME, minor);
419 if ((fd = open(buf, O_RDWR, 0)) >= 0)
426 * Determine whether the DRM kernel driver has been loaded.
428 * \return 1 if the DRM driver is loaded, 0 otherwise.
431 * Determine the presence of the kernel driver by attempting to open the 0
432 * minor and get version information. For backward compatibility with older
433 * Linux implementations, /proc/dri is also checked.
435 int drmAvailable(void)
437 drmVersionPtr version;
441 if ((fd = drmOpenMinor(0, 1, DRM_NODE_RENDER)) < 0) {
443 /* Try proc for backward Linux compatibility */
444 if (!access("/proc/dri/0", R_OK))
450 if ((version = drmGetVersion(fd))) {
452 drmFreeVersion(version);
461 * Open the device by bus ID.
463 * \param busid bus ID.
465 * \return a file descriptor on success, or a negative value on error.
468 * This function attempts to open every possible minor (up to DRM_MAX_MINOR),
469 * comparing the device bus ID with the one supplied.
471 * \sa drmOpenMinor() and drmGetBusid().
473 static int drmOpenByBusid(const char *busid)
475 int i, pci_domain_ok = 1;
480 drmMsg("drmOpenByBusid: Searching for BusID %s\n", busid);
481 for (i = 0; i < DRM_MAX_MINOR; i++) {
482 fd = drmOpenMinor(i, 1, DRM_NODE_RENDER);
483 drmMsg("drmOpenByBusid: drmOpenMinor returns %d\n", fd);
485 /* We need to try for 1.4 first for proper PCI domain support
486 * and if that fails, we know the kernel is busted
490 sv.drm_dd_major = -1; /* Don't care */
491 sv.drm_dd_minor = -1; /* Don't care */
492 if (drmSetInterfaceVersion(fd, &sv)) {
498 sv.drm_dd_major = -1; /* Don't care */
499 sv.drm_dd_minor = -1; /* Don't care */
500 drmMsg("drmOpenByBusid: Interface 1.4 failed, trying 1.1\n",fd);
501 drmSetInterfaceVersion(fd, &sv);
503 buf = drmGetBusid(fd);
504 drmMsg("drmOpenByBusid: drmGetBusid reports %s\n", buf);
505 if (buf && drmMatchBusID(buf, busid, pci_domain_ok)) {
519 * Open the device by name.
521 * \param name driver name.
523 * \return a file descriptor on success, or a negative value on error.
526 * This function opens the first minor number that matches the driver name and
527 * isn't already in use. If it's in use it then it will already have a bus ID
530 * \sa drmOpenMinor(), drmGetVersion() and drmGetBusid().
532 static int drmOpenByName(const char *name)
536 drmVersionPtr version;
539 if (!drmAvailable()) {
540 if (!drm_server_info) {
544 /* try to load the kernel module now */
545 if (!drm_server_info->load_module(name)) {
546 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);
553 * Open the first minor number that matches the driver name and isn't
554 * already in use. If it's in use it will have a busid assigned already.
556 for (i = 0; i < DRM_MAX_MINOR; i++) {
557 if ((fd = drmOpenMinor(i, 1, DRM_NODE_RENDER)) >= 0) {
558 if ((version = drmGetVersion(fd))) {
559 if (!strcmp(version->name, name)) {
560 drmFreeVersion(version);
561 id = drmGetBusid(fd);
562 drmMsg("drmGetBusid returned '%s'\n", id ? id : "NULL");
571 drmFreeVersion(version);
579 /* Backward-compatibility /proc support */
580 for (i = 0; i < 8; i++) {
581 char proc_name[64], buf[512];
582 char *driver, *pt, *devstring;
585 sprintf(proc_name, "/proc/dri/%d/name", i);
586 if ((fd = open(proc_name, 0, 0)) >= 0) {
587 retcode = read(fd, buf, sizeof(buf)-1);
590 buf[retcode-1] = '\0';
591 for (driver = pt = buf; *pt && *pt != ' '; ++pt)
593 if (*pt) { /* Device is next */
595 if (!strcmp(driver, name)) { /* Match */
596 for (devstring = ++pt; *pt && *pt != ' '; ++pt)
598 if (*pt) { /* Found busid */
599 return drmOpenByBusid(++pt);
600 } else { /* No busid */
601 return drmOpenDevice(strtol(devstring, NULL, 0),i, DRM_NODE_RENDER);
615 * Open the DRM device.
617 * Looks up the specified name and bus ID, and opens the device found. The
618 * entry in /dev/dri is created if necessary and if called by root.
620 * \param name driver name. Not referenced if bus ID is supplied.
621 * \param busid bus ID. Zero if not known.
623 * \return a file descriptor on success, or a negative value on error.
626 * It calls drmOpenByBusid() if \p busid is specified or drmOpenByName()
629 int drmOpen(const char *name, const char *busid)
631 if (!drmAvailable() && name != NULL && drm_server_info) {
632 /* try to load the kernel */
633 if (!drm_server_info->load_module(name)) {
634 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);
640 int fd = drmOpenByBusid(busid);
646 return drmOpenByName(name);
651 int drmOpenControl(int minor)
653 return drmOpenMinor(minor, 0, DRM_NODE_CONTROL);
657 * Free the version information returned by drmGetVersion().
659 * \param v pointer to the version information.
662 * It frees the memory pointed by \p %v as well as all the non-null strings
665 void drmFreeVersion(drmVersionPtr v)
677 * Free the non-public version information returned by the kernel.
679 * \param v pointer to the version information.
682 * Used by drmGetVersion() to free the memory pointed by \p %v as well as all
683 * the non-null strings pointers in it.
685 static void drmFreeKernelVersion(drm_version_t *v)
697 * Copy version information.
699 * \param d destination pointer.
700 * \param s source pointer.
703 * Used by drmGetVersion() to translate the information returned by the ioctl
704 * interface in a private structure into the public structure counterpart.
706 static void drmCopyVersion(drmVersionPtr d, const drm_version_t *s)
708 d->version_major = s->version_major;
709 d->version_minor = s->version_minor;
710 d->version_patchlevel = s->version_patchlevel;
711 d->name_len = s->name_len;
712 d->name = strdup(s->name);
713 d->date_len = s->date_len;
714 d->date = strdup(s->date);
715 d->desc_len = s->desc_len;
716 d->desc = strdup(s->desc);
721 * Query the driver version information.
723 * \param fd file descriptor.
725 * \return pointer to a drmVersion structure which should be freed with
728 * \note Similar information is available via /proc/dri.
731 * It gets the version information via successive DRM_IOCTL_VERSION ioctls,
732 * first with zeros to get the string lengths, and then the actually strings.
733 * It also null-terminates them since they might not be already.
735 drmVersionPtr drmGetVersion(int fd)
737 drmVersionPtr retval;
738 drm_version_t *version = drmMalloc(sizeof(*version));
740 version->name_len = 0;
741 version->name = NULL;
742 version->date_len = 0;
743 version->date = NULL;
744 version->desc_len = 0;
745 version->desc = NULL;
747 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
748 drmFreeKernelVersion(version);
752 if (version->name_len)
753 version->name = drmMalloc(version->name_len + 1);
754 if (version->date_len)
755 version->date = drmMalloc(version->date_len + 1);
756 if (version->desc_len)
757 version->desc = drmMalloc(version->desc_len + 1);
759 if (drmIoctl(fd, DRM_IOCTL_VERSION, version)) {
760 drmMsg("DRM_IOCTL_VERSION: %s\n", strerror(errno));
761 drmFreeKernelVersion(version);
765 /* The results might not be null-terminated strings, so terminate them. */
766 if (version->name_len) version->name[version->name_len] = '\0';
767 if (version->date_len) version->date[version->date_len] = '\0';
768 if (version->desc_len) version->desc[version->desc_len] = '\0';
770 retval = drmMalloc(sizeof(*retval));
771 drmCopyVersion(retval, version);
772 drmFreeKernelVersion(version);
778 * Get version information for the DRM user space library.
780 * This version number is driver independent.
782 * \param fd file descriptor.
784 * \return version information.
787 * This function allocates and fills a drm_version structure with a hard coded
790 drmVersionPtr drmGetLibVersion(int fd)
792 drm_version_t *version = drmMalloc(sizeof(*version));
795 * NOTE THIS MUST NOT GO ABOVE VERSION 1.X due to drivers needing it
796 * revision 1.0.x = original DRM interface with no drmGetLibVersion
797 * entry point and many drm<Device> extensions
798 * revision 1.1.x = added drmCommand entry points for device extensions
799 * added drmGetLibVersion to identify libdrm.a version
800 * revision 1.2.x = added drmSetInterfaceVersion
801 * modified drmOpen to handle both busid and name
802 * revision 1.3.x = added server + memory manager
804 version->version_major = 1;
805 version->version_minor = 3;
806 version->version_patchlevel = 0;
808 return (drmVersionPtr)version;
813 * Free the bus ID information.
815 * \param busid bus ID information string as given by drmGetBusid().
818 * This function is just frees the memory pointed by \p busid.
820 void drmFreeBusid(const char *busid)
822 drmFree((void *)busid);
827 * Get the bus ID of the device.
829 * \param fd file descriptor.
831 * \return bus ID string.
834 * This function gets the bus ID via successive DRM_IOCTL_GET_UNIQUE ioctls to
835 * get the string length and data, passing the arguments in a drm_unique
838 char *drmGetBusid(int fd)
845 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
847 u.unique = drmMalloc(u.unique_len + 1);
848 if (drmIoctl(fd, DRM_IOCTL_GET_UNIQUE, &u))
850 u.unique[u.unique_len] = '\0';
857 * Set the bus ID of the device.
859 * \param fd file descriptor.
860 * \param busid bus ID string.
862 * \return zero on success, negative on failure.
865 * This function is a wrapper around the DRM_IOCTL_SET_UNIQUE ioctl, passing
866 * the arguments in a drm_unique structure.
868 int drmSetBusid(int fd, const char *busid)
872 u.unique = (char *)busid;
873 u.unique_len = strlen(busid);
875 if (drmIoctl(fd, DRM_IOCTL_SET_UNIQUE, &u)) {
881 int drmGetMagic(int fd, drm_magic_t * magic)
886 if (drmIoctl(fd, DRM_IOCTL_GET_MAGIC, &auth))
892 int drmAuthMagic(int fd, drm_magic_t magic)
897 if (drmIoctl(fd, DRM_IOCTL_AUTH_MAGIC, &auth))
903 * Specifies a range of memory that is available for mapping by a
906 * \param fd file descriptor.
907 * \param offset usually the physical address. The actual meaning depends of
908 * the \p type parameter. See below.
909 * \param size of the memory in bytes.
910 * \param type type of the memory to be mapped.
911 * \param flags combination of several flags to modify the function actions.
912 * \param handle will be set to a value that may be used as the offset
913 * parameter for mmap().
915 * \return zero on success or a negative value on error.
917 * \par Mapping the frame buffer
918 * For the frame buffer
919 * - \p offset will be the physical address of the start of the frame buffer,
920 * - \p size will be the size of the frame buffer in bytes, and
921 * - \p type will be DRM_FRAME_BUFFER.
924 * The area mapped will be uncached. If MTRR support is available in the
925 * kernel, the frame buffer area will be set to write combining.
927 * \par Mapping the MMIO register area
928 * For the MMIO register area,
929 * - \p offset will be the physical address of the start of the register area,
930 * - \p size will be the size of the register area bytes, and
931 * - \p type will be DRM_REGISTERS.
933 * The area mapped will be uncached.
935 * \par Mapping the SAREA
937 * - \p offset will be ignored and should be set to zero,
938 * - \p size will be the desired size of the SAREA in bytes,
939 * - \p type will be DRM_SHM.
942 * A shared memory area of the requested size will be created and locked in
943 * kernel memory. This area may be mapped into client-space by using the handle
946 * \note May only be called by root.
949 * This function is a wrapper around the DRM_IOCTL_ADD_MAP ioctl, passing
950 * the arguments in a drm_map structure.
952 int drmAddMap(int fd, drm_handle_t offset, drmSize size, drmMapType type,
953 drmMapFlags flags, drm_handle_t *handle)
962 if (drmIoctl(fd, DRM_IOCTL_ADD_MAP, &map))
965 *handle = (drm_handle_t)map.handle;
969 int drmRmMap(int fd, drm_handle_t handle)
973 map.handle = (void *)handle;
975 if(drmIoctl(fd, DRM_IOCTL_RM_MAP, &map))
981 * Make buffers available for DMA transfers.
983 * \param fd file descriptor.
984 * \param count number of buffers.
985 * \param size size of each buffer.
986 * \param flags buffer allocation flags.
987 * \param agp_offset offset in the AGP aperture
989 * \return number of buffers allocated, negative on error.
992 * This function is a wrapper around DRM_IOCTL_ADD_BUFS ioctl.
996 int drmAddBufs(int fd, int count, int size, drmBufDescFlags flags,
999 drm_buf_desc_t request;
1001 request.count = count;
1002 request.size = size;
1003 request.low_mark = 0;
1004 request.high_mark = 0;
1005 request.flags = flags;
1006 request.agp_start = agp_offset;
1008 if (drmIoctl(fd, DRM_IOCTL_ADD_BUFS, &request))
1010 return request.count;
1013 int drmMarkBufs(int fd, double low, double high)
1015 drm_buf_info_t info;
1021 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1027 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1030 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1031 int retval = -errno;
1036 for (i = 0; i < info.count; i++) {
1037 info.list[i].low_mark = low * info.list[i].count;
1038 info.list[i].high_mark = high * info.list[i].count;
1039 if (drmIoctl(fd, DRM_IOCTL_MARK_BUFS, &info.list[i])) {
1040 int retval = -errno;
1053 * \param fd file descriptor.
1054 * \param count number of buffers to free.
1055 * \param list list of buffers to be freed.
1057 * \return zero on success, or a negative value on failure.
1059 * \note This function is primarily used for debugging.
1062 * This function is a wrapper around the DRM_IOCTL_FREE_BUFS ioctl, passing
1063 * the arguments in a drm_buf_free structure.
1065 int drmFreeBufs(int fd, int count, int *list)
1067 drm_buf_free_t request;
1069 request.count = count;
1070 request.list = list;
1071 if (drmIoctl(fd, DRM_IOCTL_FREE_BUFS, &request))
1080 * \param fd file descriptor.
1083 * This function closes the file descriptor.
1085 int drmClose(int fd)
1087 unsigned long key = drmGetKeyFromFd(fd);
1088 drmHashEntry *entry = drmGetEntry(fd);
1090 drmHashDestroy(entry->tagTable);
1093 entry->tagTable = NULL;
1095 drmHashDelete(drmHashTable, key);
1103 * Map a region of memory.
1105 * \param fd file descriptor.
1106 * \param handle handle returned by drmAddMap().
1107 * \param size size in bytes. Must match the size used by drmAddMap().
1108 * \param address will contain the user-space virtual address where the mapping
1111 * \return zero on success, or a negative value on failure.
1114 * This function is a wrapper for mmap().
1116 int drmMap(int fd, drm_handle_t handle, drmSize size, drmAddressPtr address)
1118 static unsigned long pagesize_mask = 0;
1124 pagesize_mask = getpagesize() - 1;
1126 size = (size + pagesize_mask) & ~pagesize_mask;
1128 *address = mmap(0, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, handle);
1129 if (*address == MAP_FAILED)
1136 * Unmap mappings obtained with drmMap().
1138 * \param address address as given by drmMap().
1139 * \param size size in bytes. Must match the size used by drmMap().
1141 * \return zero on success, or a negative value on failure.
1144 * This function is a wrapper for munmap().
1146 int drmUnmap(drmAddress address, drmSize size)
1148 return munmap(address, size);
1151 drmBufInfoPtr drmGetBufInfo(int fd)
1153 drm_buf_info_t info;
1154 drmBufInfoPtr retval;
1160 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info))
1164 if (!(info.list = drmMalloc(info.count * sizeof(*info.list))))
1167 if (drmIoctl(fd, DRM_IOCTL_INFO_BUFS, &info)) {
1172 retval = drmMalloc(sizeof(*retval));
1173 retval->count = info.count;
1174 retval->list = drmMalloc(info.count * sizeof(*retval->list));
1175 for (i = 0; i < info.count; i++) {
1176 retval->list[i].count = info.list[i].count;
1177 retval->list[i].size = info.list[i].size;
1178 retval->list[i].low_mark = info.list[i].low_mark;
1179 retval->list[i].high_mark = info.list[i].high_mark;
1188 * Map all DMA buffers into client-virtual space.
1190 * \param fd file descriptor.
1192 * \return a pointer to a ::drmBufMap structure.
1194 * \note The client may not use these buffers until obtaining buffer indices
1198 * This function calls the DRM_IOCTL_MAP_BUFS ioctl and copies the returned
1199 * information about the buffers in a drm_buf_map structure into the
1200 * client-visible data structures.
1202 drmBufMapPtr drmMapBufs(int fd)
1205 drmBufMapPtr retval;
1210 bufs.virtual = NULL;
1211 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs))
1217 if (!(bufs.list = drmMalloc(bufs.count * sizeof(*bufs.list))))
1220 if (drmIoctl(fd, DRM_IOCTL_MAP_BUFS, &bufs)) {
1225 retval = drmMalloc(sizeof(*retval));
1226 retval->count = bufs.count;
1227 retval->list = drmMalloc(bufs.count * sizeof(*retval->list));
1228 for (i = 0; i < bufs.count; i++) {
1229 retval->list[i].idx = bufs.list[i].idx;
1230 retval->list[i].total = bufs.list[i].total;
1231 retval->list[i].used = 0;
1232 retval->list[i].address = bufs.list[i].address;
1242 * Unmap buffers allocated with drmMapBufs().
1244 * \return zero on success, or negative value on failure.
1247 * Calls munmap() for every buffer stored in \p bufs and frees the
1248 * memory allocated by drmMapBufs().
1250 int drmUnmapBufs(drmBufMapPtr bufs)
1254 for (i = 0; i < bufs->count; i++) {
1255 munmap(bufs->list[i].address, bufs->list[i].total);
1258 drmFree(bufs->list);
1265 #define DRM_DMA_RETRY 16
1268 * Reserve DMA buffers.
1270 * \param fd file descriptor.
1273 * \return zero on success, or a negative value on failure.
1276 * Assemble the arguments into a drm_dma structure and keeps issuing the
1277 * DRM_IOCTL_DMA ioctl until success or until maximum number of retries.
1279 int drmDMA(int fd, drmDMAReqPtr request)
1284 dma.context = request->context;
1285 dma.send_count = request->send_count;
1286 dma.send_indices = request->send_list;
1287 dma.send_sizes = request->send_sizes;
1288 dma.flags = request->flags;
1289 dma.request_count = request->request_count;
1290 dma.request_size = request->request_size;
1291 dma.request_indices = request->request_list;
1292 dma.request_sizes = request->request_sizes;
1293 dma.granted_count = 0;
1296 ret = ioctl( fd, DRM_IOCTL_DMA, &dma );
1297 } while ( ret && errno == EAGAIN && i++ < DRM_DMA_RETRY );
1300 request->granted_count = dma.granted_count;
1309 * Obtain heavyweight hardware lock.
1311 * \param fd file descriptor.
1312 * \param context context.
1313 * \param flags flags that determine the sate of the hardware when the function
1316 * \return always zero.
1319 * This function translates the arguments into a drm_lock structure and issue
1320 * the DRM_IOCTL_LOCK ioctl until the lock is successfully acquired.
1322 int drmGetLock(int fd, drm_context_t context, drmLockFlags flags)
1326 lock.context = context;
1328 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
1329 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
1330 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
1331 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
1332 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
1333 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
1335 while (drmIoctl(fd, DRM_IOCTL_LOCK, &lock))
1341 * Release the hardware lock.
1343 * \param fd file descriptor.
1344 * \param context context.
1346 * \return zero on success, or a negative value on failure.
1349 * This function is a wrapper around the DRM_IOCTL_UNLOCK ioctl, passing the
1350 * argument in a drm_lock structure.
1352 int drmUnlock(int fd, drm_context_t context)
1356 lock.context = context;
1358 return drmIoctl(fd, DRM_IOCTL_UNLOCK, &lock);
1361 drm_context_t *drmGetReservedContextList(int fd, int *count)
1365 drm_context_t * retval;
1369 res.contexts = NULL;
1370 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1376 if (!(list = drmMalloc(res.count * sizeof(*list))))
1378 if (!(retval = drmMalloc(res.count * sizeof(*retval)))) {
1383 res.contexts = list;
1384 if (drmIoctl(fd, DRM_IOCTL_RES_CTX, &res))
1387 for (i = 0; i < res.count; i++)
1388 retval[i] = list[i].handle;
1395 void drmFreeReservedContextList(drm_context_t *pt)
1403 * Used by the X server during GLXContext initialization. This causes
1404 * per-context kernel-level resources to be allocated.
1406 * \param fd file descriptor.
1407 * \param handle is set on success. To be used by the client when requesting DMA
1408 * dispatch with drmDMA().
1410 * \return zero on success, or a negative value on failure.
1412 * \note May only be called by root.
1415 * This function is a wrapper around the DRM_IOCTL_ADD_CTX ioctl, passing the
1416 * argument in a drm_ctx structure.
1418 int drmCreateContext(int fd, drm_context_t *handle)
1422 ctx.flags = 0; /* Modified with functions below */
1423 if (drmIoctl(fd, DRM_IOCTL_ADD_CTX, &ctx))
1425 *handle = ctx.handle;
1429 int drmSwitchToContext(int fd, drm_context_t context)
1433 ctx.handle = context;
1434 if (drmIoctl(fd, DRM_IOCTL_SWITCH_CTX, &ctx))
1439 int drmSetContextFlags(int fd, drm_context_t context, drm_context_tFlags flags)
1444 * Context preserving means that no context switches are done between DMA
1445 * buffers from one context and the next. This is suitable for use in the
1446 * X server (which promises to maintain hardware context), or in the
1447 * client-side library when buffers are swapped on behalf of two threads.
1449 ctx.handle = context;
1451 if (flags & DRM_CONTEXT_PRESERVED)
1452 ctx.flags |= _DRM_CONTEXT_PRESERVED;
1453 if (flags & DRM_CONTEXT_2DONLY)
1454 ctx.flags |= _DRM_CONTEXT_2DONLY;
1455 if (drmIoctl(fd, DRM_IOCTL_MOD_CTX, &ctx))
1460 int drmGetContextFlags(int fd, drm_context_t context,
1461 drm_context_tFlagsPtr flags)
1465 ctx.handle = context;
1466 if (drmIoctl(fd, DRM_IOCTL_GET_CTX, &ctx))
1469 if (ctx.flags & _DRM_CONTEXT_PRESERVED)
1470 *flags |= DRM_CONTEXT_PRESERVED;
1471 if (ctx.flags & _DRM_CONTEXT_2DONLY)
1472 *flags |= DRM_CONTEXT_2DONLY;
1479 * Free any kernel-level resources allocated with drmCreateContext() associated
1482 * \param fd file descriptor.
1483 * \param handle handle given by drmCreateContext().
1485 * \return zero on success, or a negative value on failure.
1487 * \note May only be called by root.
1490 * This function is a wrapper around the DRM_IOCTL_RM_CTX ioctl, passing the
1491 * argument in a drm_ctx structure.
1493 int drmDestroyContext(int fd, drm_context_t handle)
1496 ctx.handle = handle;
1497 if (drmIoctl(fd, DRM_IOCTL_RM_CTX, &ctx))
1502 int drmCreateDrawable(int fd, drm_drawable_t *handle)
1505 if (drmIoctl(fd, DRM_IOCTL_ADD_DRAW, &draw))
1507 *handle = draw.handle;
1511 int drmDestroyDrawable(int fd, drm_drawable_t handle)
1514 draw.handle = handle;
1515 if (drmIoctl(fd, DRM_IOCTL_RM_DRAW, &draw))
1520 int drmUpdateDrawableInfo(int fd, drm_drawable_t handle,
1521 drm_drawable_info_type_t type, unsigned int num,
1524 drm_update_draw_t update;
1526 update.handle = handle;
1529 update.data = (unsigned long long)(unsigned long)data;
1531 if (drmIoctl(fd, DRM_IOCTL_UPDATE_DRAW, &update))
1538 * Acquire the AGP device.
1540 * Must be called before any of the other AGP related calls.
1542 * \param fd file descriptor.
1544 * \return zero on success, or a negative value on failure.
1547 * This function is a wrapper around the DRM_IOCTL_AGP_ACQUIRE ioctl.
1549 int drmAgpAcquire(int fd)
1551 if (drmIoctl(fd, DRM_IOCTL_AGP_ACQUIRE, NULL))
1558 * Release the AGP device.
1560 * \param fd file descriptor.
1562 * \return zero on success, or a negative value on failure.
1565 * This function is a wrapper around the DRM_IOCTL_AGP_RELEASE ioctl.
1567 int drmAgpRelease(int fd)
1569 if (drmIoctl(fd, DRM_IOCTL_AGP_RELEASE, NULL))
1578 * \param fd file descriptor.
1579 * \param mode AGP mode.
1581 * \return zero on success, or a negative value on failure.
1584 * This function is a wrapper around the DRM_IOCTL_AGP_ENABLE ioctl, passing the
1585 * argument in a drm_agp_mode structure.
1587 int drmAgpEnable(int fd, unsigned long mode)
1592 if (drmIoctl(fd, DRM_IOCTL_AGP_ENABLE, &m))
1599 * Allocate a chunk of AGP memory.
1601 * \param fd file descriptor.
1602 * \param size requested memory size in bytes. Will be rounded to page boundary.
1603 * \param type type of memory to allocate.
1604 * \param address if not zero, will be set to the physical address of the
1606 * \param handle on success will be set to a handle of the allocated memory.
1608 * \return zero on success, or a negative value on failure.
1611 * This function is a wrapper around the DRM_IOCTL_AGP_ALLOC ioctl, passing the
1612 * arguments in a drm_agp_buffer structure.
1614 int drmAgpAlloc(int fd, unsigned long size, unsigned long type,
1615 unsigned long *address, drm_handle_t *handle)
1619 *handle = DRM_AGP_NO_HANDLE;
1623 if (drmIoctl(fd, DRM_IOCTL_AGP_ALLOC, &b))
1626 *address = b.physical;
1633 * Free a chunk of AGP memory.
1635 * \param fd file descriptor.
1636 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1638 * \return zero on success, or a negative value on failure.
1641 * This function is a wrapper around the DRM_IOCTL_AGP_FREE ioctl, passing the
1642 * argument in a drm_agp_buffer structure.
1644 int drmAgpFree(int fd, drm_handle_t handle)
1650 if (drmIoctl(fd, DRM_IOCTL_AGP_FREE, &b))
1657 * Bind a chunk of AGP memory.
1659 * \param fd file descriptor.
1660 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1661 * \param offset offset in bytes. It will round to page boundary.
1663 * \return zero on success, or a negative value on failure.
1666 * This function is a wrapper around the DRM_IOCTL_AGP_BIND ioctl, passing the
1667 * argument in a drm_agp_binding structure.
1669 int drmAgpBind(int fd, drm_handle_t handle, unsigned long offset)
1671 drm_agp_binding_t b;
1675 if (drmIoctl(fd, DRM_IOCTL_AGP_BIND, &b))
1682 * Unbind a chunk of AGP memory.
1684 * \param fd file descriptor.
1685 * \param handle handle to the allocated memory, as given by drmAgpAllocate().
1687 * \return zero on success, or a negative value on failure.
1690 * This function is a wrapper around the DRM_IOCTL_AGP_UNBIND ioctl, passing
1691 * the argument in a drm_agp_binding structure.
1693 int drmAgpUnbind(int fd, drm_handle_t handle)
1695 drm_agp_binding_t b;
1699 if (drmIoctl(fd, DRM_IOCTL_AGP_UNBIND, &b))
1706 * Get AGP driver major version number.
1708 * \param fd file descriptor.
1710 * \return major version number on success, or a negative value on failure..
1713 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1714 * necessary information in a drm_agp_info structure.
1716 int drmAgpVersionMajor(int fd)
1720 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1722 return i.agp_version_major;
1727 * Get AGP driver minor version number.
1729 * \param fd file descriptor.
1731 * \return minor version number on success, or a negative value on failure.
1734 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1735 * necessary information in a drm_agp_info structure.
1737 int drmAgpVersionMinor(int fd)
1741 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1743 return i.agp_version_minor;
1750 * \param fd file descriptor.
1752 * \return mode on success, or zero on failure.
1755 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1756 * necessary information in a drm_agp_info structure.
1758 unsigned long drmAgpGetMode(int fd)
1762 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1769 * Get AGP aperture base.
1771 * \param fd file descriptor.
1773 * \return aperture base on success, zero on failure.
1776 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1777 * necessary information in a drm_agp_info structure.
1779 unsigned long drmAgpBase(int fd)
1783 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1785 return i.aperture_base;
1790 * Get AGP aperture size.
1792 * \param fd file descriptor.
1794 * \return aperture size on success, zero on failure.
1797 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1798 * necessary information in a drm_agp_info structure.
1800 unsigned long drmAgpSize(int fd)
1804 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1806 return i.aperture_size;
1811 * Get used AGP memory.
1813 * \param fd file descriptor.
1815 * \return memory used on success, or zero on failure.
1818 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1819 * necessary information in a drm_agp_info structure.
1821 unsigned long drmAgpMemoryUsed(int fd)
1825 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1827 return i.memory_used;
1832 * Get available AGP memory.
1834 * \param fd file descriptor.
1836 * \return memory available on success, or zero on failure.
1839 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1840 * necessary information in a drm_agp_info structure.
1842 unsigned long drmAgpMemoryAvail(int fd)
1846 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1848 return i.memory_allowed;
1853 * Get hardware vendor ID.
1855 * \param fd file descriptor.
1857 * \return vendor ID on success, or zero on failure.
1860 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1861 * necessary information in a drm_agp_info structure.
1863 unsigned int drmAgpVendorId(int fd)
1867 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1874 * Get hardware device ID.
1876 * \param fd file descriptor.
1878 * \return zero on success, or zero on failure.
1881 * This function is a wrapper around the DRM_IOCTL_AGP_INFO ioctl, getting the
1882 * necessary information in a drm_agp_info structure.
1884 unsigned int drmAgpDeviceId(int fd)
1888 if (drmIoctl(fd, DRM_IOCTL_AGP_INFO, &i))
1893 int drmScatterGatherAlloc(int fd, unsigned long size, drm_handle_t *handle)
1895 drm_scatter_gather_t sg;
1900 if (drmIoctl(fd, DRM_IOCTL_SG_ALLOC, &sg))
1902 *handle = sg.handle;
1906 int drmScatterGatherFree(int fd, drm_handle_t handle)
1908 drm_scatter_gather_t sg;
1912 if (drmIoctl(fd, DRM_IOCTL_SG_FREE, &sg))
1920 * \param fd file descriptor.
1921 * \param vbl pointer to a drmVBlank structure.
1923 * \return zero on success, or a negative value on failure.
1926 * This function is a wrapper around the DRM_IOCTL_WAIT_VBLANK ioctl.
1928 int drmWaitVBlank(int fd, drmVBlankPtr vbl)
1930 struct timespec timeout, cur;
1933 ret = clock_gettime(CLOCK_MONOTONIC, &timeout);
1935 fprintf(stderr, "clock_gettime failed: %s\n", strerror(ret));
1941 ret = ioctl(fd, DRM_IOCTL_WAIT_VBLANK, vbl);
1942 vbl->request.type &= ~DRM_VBLANK_RELATIVE;
1943 if (ret && errno == EINTR) {
1944 clock_gettime(CLOCK_MONOTONIC, &cur);
1945 /* Timeout after 1s */
1946 if (cur.tv_sec > timeout.tv_sec + 1 ||
1947 (cur.tv_sec == timeout.tv_sec && cur.tv_nsec >=
1954 } while (ret && errno == EINTR);
1960 int drmError(int err, const char *label)
1963 case DRM_ERR_NO_DEVICE:
1964 fprintf(stderr, "%s: no device\n", label);
1966 case DRM_ERR_NO_ACCESS:
1967 fprintf(stderr, "%s: no access\n", label);
1969 case DRM_ERR_NOT_ROOT:
1970 fprintf(stderr, "%s: not root\n", label);
1972 case DRM_ERR_INVALID:
1973 fprintf(stderr, "%s: invalid args\n", label);
1978 fprintf( stderr, "%s: error %d (%s)\n", label, err, strerror(err) );
1986 * Install IRQ handler.
1988 * \param fd file descriptor.
1989 * \param irq IRQ number.
1991 * \return zero on success, or a negative value on failure.
1994 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
1995 * argument in a drm_control structure.
1997 int drmCtlInstHandler(int fd, int irq)
2001 ctl.func = DRM_INST_HANDLER;
2003 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2010 * Uninstall IRQ handler.
2012 * \param fd file descriptor.
2014 * \return zero on success, or a negative value on failure.
2017 * This function is a wrapper around the DRM_IOCTL_CONTROL ioctl, passing the
2018 * argument in a drm_control structure.
2020 int drmCtlUninstHandler(int fd)
2024 ctl.func = DRM_UNINST_HANDLER;
2026 if (drmIoctl(fd, DRM_IOCTL_CONTROL, &ctl))
2031 int drmFinish(int fd, int context, drmLockFlags flags)
2035 lock.context = context;
2037 if (flags & DRM_LOCK_READY) lock.flags |= _DRM_LOCK_READY;
2038 if (flags & DRM_LOCK_QUIESCENT) lock.flags |= _DRM_LOCK_QUIESCENT;
2039 if (flags & DRM_LOCK_FLUSH) lock.flags |= _DRM_LOCK_FLUSH;
2040 if (flags & DRM_LOCK_FLUSH_ALL) lock.flags |= _DRM_LOCK_FLUSH_ALL;
2041 if (flags & DRM_HALT_ALL_QUEUES) lock.flags |= _DRM_HALT_ALL_QUEUES;
2042 if (flags & DRM_HALT_CUR_QUEUES) lock.flags |= _DRM_HALT_CUR_QUEUES;
2043 if (drmIoctl(fd, DRM_IOCTL_FINISH, &lock))
2049 * Get IRQ from bus ID.
2051 * \param fd file descriptor.
2052 * \param busnum bus number.
2053 * \param devnum device number.
2054 * \param funcnum function number.
2056 * \return IRQ number on success, or a negative value on failure.
2059 * This function is a wrapper around the DRM_IOCTL_IRQ_BUSID ioctl, passing the
2060 * arguments in a drm_irq_busid structure.
2062 int drmGetInterruptFromBusID(int fd, int busnum, int devnum, int funcnum)
2068 p.funcnum = funcnum;
2069 if (drmIoctl(fd, DRM_IOCTL_IRQ_BUSID, &p))
2074 int drmAddContextTag(int fd, drm_context_t context, void *tag)
2076 drmHashEntry *entry = drmGetEntry(fd);
2078 if (drmHashInsert(entry->tagTable, context, tag)) {
2079 drmHashDelete(entry->tagTable, context);
2080 drmHashInsert(entry->tagTable, context, tag);
2085 int drmDelContextTag(int fd, drm_context_t context)
2087 drmHashEntry *entry = drmGetEntry(fd);
2089 return drmHashDelete(entry->tagTable, context);
2092 void *drmGetContextTag(int fd, drm_context_t context)
2094 drmHashEntry *entry = drmGetEntry(fd);
2097 if (drmHashLookup(entry->tagTable, context, &value))
2103 int drmAddContextPrivateMapping(int fd, drm_context_t ctx_id,
2104 drm_handle_t handle)
2106 drm_ctx_priv_map_t map;
2108 map.ctx_id = ctx_id;
2109 map.handle = (void *)handle;
2111 if (drmIoctl(fd, DRM_IOCTL_SET_SAREA_CTX, &map))
2116 int drmGetContextPrivateMapping(int fd, drm_context_t ctx_id,
2117 drm_handle_t *handle)
2119 drm_ctx_priv_map_t map;
2121 map.ctx_id = ctx_id;
2123 if (drmIoctl(fd, DRM_IOCTL_GET_SAREA_CTX, &map))
2126 *handle = (drm_handle_t)map.handle;
2131 int drmGetMap(int fd, int idx, drm_handle_t *offset, drmSize *size,
2132 drmMapType *type, drmMapFlags *flags, drm_handle_t *handle,
2138 if (drmIoctl(fd, DRM_IOCTL_GET_MAP, &map))
2140 *offset = map.offset;
2144 *handle = (unsigned long)map.handle;
2149 int drmGetClient(int fd, int idx, int *auth, int *pid, int *uid,
2150 unsigned long *magic, unsigned long *iocs)
2152 drm_client_t client;
2155 if (drmIoctl(fd, DRM_IOCTL_GET_CLIENT, &client))
2157 *auth = client.auth;
2160 *magic = client.magic;
2161 *iocs = client.iocs;
2165 int drmGetStats(int fd, drmStatsT *stats)
2170 if (drmIoctl(fd, DRM_IOCTL_GET_STATS, &s))
2174 memset(stats, 0, sizeof(*stats));
2175 if (s.count > sizeof(stats->data)/sizeof(stats->data[0]))
2179 stats->data[i].long_format = "%-20.20s"; \
2180 stats->data[i].rate_format = "%8.8s"; \
2181 stats->data[i].isvalue = 1; \
2182 stats->data[i].verbose = 0
2185 stats->data[i].long_format = "%-20.20s"; \
2186 stats->data[i].rate_format = "%5.5s"; \
2187 stats->data[i].isvalue = 0; \
2188 stats->data[i].mult_names = "kgm"; \
2189 stats->data[i].mult = 1000; \
2190 stats->data[i].verbose = 0
2193 stats->data[i].long_format = "%-20.20s"; \
2194 stats->data[i].rate_format = "%5.5s"; \
2195 stats->data[i].isvalue = 0; \
2196 stats->data[i].mult_names = "KGM"; \
2197 stats->data[i].mult = 1024; \
2198 stats->data[i].verbose = 0
2201 stats->count = s.count;
2202 for (i = 0; i < s.count; i++) {
2203 stats->data[i].value = s.data[i].value;
2204 switch (s.data[i].type) {
2205 case _DRM_STAT_LOCK:
2206 stats->data[i].long_name = "Lock";
2207 stats->data[i].rate_name = "Lock";
2210 case _DRM_STAT_OPENS:
2211 stats->data[i].long_name = "Opens";
2212 stats->data[i].rate_name = "O";
2214 stats->data[i].verbose = 1;
2216 case _DRM_STAT_CLOSES:
2217 stats->data[i].long_name = "Closes";
2218 stats->data[i].rate_name = "Lock";
2220 stats->data[i].verbose = 1;
2222 case _DRM_STAT_IOCTLS:
2223 stats->data[i].long_name = "Ioctls";
2224 stats->data[i].rate_name = "Ioc/s";
2227 case _DRM_STAT_LOCKS:
2228 stats->data[i].long_name = "Locks";
2229 stats->data[i].rate_name = "Lck/s";
2232 case _DRM_STAT_UNLOCKS:
2233 stats->data[i].long_name = "Unlocks";
2234 stats->data[i].rate_name = "Unl/s";
2238 stats->data[i].long_name = "IRQs";
2239 stats->data[i].rate_name = "IRQ/s";
2242 case _DRM_STAT_PRIMARY:
2243 stats->data[i].long_name = "Primary Bytes";
2244 stats->data[i].rate_name = "PB/s";
2247 case _DRM_STAT_SECONDARY:
2248 stats->data[i].long_name = "Secondary Bytes";
2249 stats->data[i].rate_name = "SB/s";
2253 stats->data[i].long_name = "DMA";
2254 stats->data[i].rate_name = "DMA/s";
2257 case _DRM_STAT_SPECIAL:
2258 stats->data[i].long_name = "Special DMA";
2259 stats->data[i].rate_name = "dma/s";
2262 case _DRM_STAT_MISSED:
2263 stats->data[i].long_name = "Miss";
2264 stats->data[i].rate_name = "Ms/s";
2267 case _DRM_STAT_VALUE:
2268 stats->data[i].long_name = "Value";
2269 stats->data[i].rate_name = "Value";
2272 case _DRM_STAT_BYTE:
2273 stats->data[i].long_name = "Bytes";
2274 stats->data[i].rate_name = "B/s";
2277 case _DRM_STAT_COUNT:
2279 stats->data[i].long_name = "Count";
2280 stats->data[i].rate_name = "Cnt/s";
2289 * Issue a set-version ioctl.
2291 * \param fd file descriptor.
2292 * \param drmCommandIndex command index
2293 * \param data source pointer of the data to be read and written.
2294 * \param size size of the data to be read and written.
2296 * \return zero on success, or a negative value on failure.
2299 * It issues a read-write ioctl given by
2300 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2302 int drmSetInterfaceVersion(int fd, drmSetVersion *version)
2305 drm_set_version_t sv;
2307 sv.drm_di_major = version->drm_di_major;
2308 sv.drm_di_minor = version->drm_di_minor;
2309 sv.drm_dd_major = version->drm_dd_major;
2310 sv.drm_dd_minor = version->drm_dd_minor;
2312 if (drmIoctl(fd, DRM_IOCTL_SET_VERSION, &sv)) {
2316 version->drm_di_major = sv.drm_di_major;
2317 version->drm_di_minor = sv.drm_di_minor;
2318 version->drm_dd_major = sv.drm_dd_major;
2319 version->drm_dd_minor = sv.drm_dd_minor;
2325 * Send a device-specific command.
2327 * \param fd file descriptor.
2328 * \param drmCommandIndex command index
2330 * \return zero on success, or a negative value on failure.
2333 * It issues a ioctl given by
2334 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2336 int drmCommandNone(int fd, unsigned long drmCommandIndex)
2338 void *data = NULL; /* dummy */
2339 unsigned long request;
2341 request = DRM_IO( DRM_COMMAND_BASE + drmCommandIndex);
2343 if (drmIoctl(fd, request, data)) {
2351 * Send a device-specific read command.
2353 * \param fd file descriptor.
2354 * \param drmCommandIndex command index
2355 * \param data destination pointer of the data to be read.
2356 * \param size size of the data to be read.
2358 * \return zero on success, or a negative value on failure.
2361 * It issues a read ioctl given by
2362 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2364 int drmCommandRead(int fd, unsigned long drmCommandIndex, void *data,
2367 unsigned long request;
2369 request = DRM_IOC( DRM_IOC_READ, DRM_IOCTL_BASE,
2370 DRM_COMMAND_BASE + drmCommandIndex, size);
2372 if (drmIoctl(fd, request, data)) {
2380 * Send a device-specific write command.
2382 * \param fd file descriptor.
2383 * \param drmCommandIndex command index
2384 * \param data source pointer of the data to be written.
2385 * \param size size of the data to be written.
2387 * \return zero on success, or a negative value on failure.
2390 * It issues a write ioctl given by
2391 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2393 int drmCommandWrite(int fd, unsigned long drmCommandIndex, void *data,
2396 unsigned long request;
2398 request = DRM_IOC( DRM_IOC_WRITE, DRM_IOCTL_BASE,
2399 DRM_COMMAND_BASE + drmCommandIndex, size);
2401 if (drmIoctl(fd, request, data)) {
2409 * Send a device-specific read-write command.
2411 * \param fd file descriptor.
2412 * \param drmCommandIndex command index
2413 * \param data source pointer of the data to be read and written.
2414 * \param size size of the data to be read and written.
2416 * \return zero on success, or a negative value on failure.
2419 * It issues a read-write ioctl given by
2420 * \code DRM_COMMAND_BASE + drmCommandIndex \endcode.
2422 int drmCommandWriteRead(int fd, unsigned long drmCommandIndex, void *data,
2425 unsigned long request;
2427 request = DRM_IOC( DRM_IOC_READ|DRM_IOC_WRITE, DRM_IOCTL_BASE,
2428 DRM_COMMAND_BASE + drmCommandIndex, size);
2430 if (drmIoctl(fd, request, data))
2435 #define DRM_MAX_FDS 16
2440 } connection[DRM_MAX_FDS];
2442 static int nr_fds = 0;
2444 int drmOpenOnce(void *unused,
2451 for (i = 0; i < nr_fds; i++)
2452 if (strcmp(BusID, connection[i].BusID) == 0) {
2453 connection[i].refcount++;
2455 return connection[i].fd;
2458 fd = drmOpen(unused, BusID);
2459 if (fd <= 0 || nr_fds == DRM_MAX_FDS)
2462 connection[nr_fds].BusID = strdup(BusID);
2463 connection[nr_fds].fd = fd;
2464 connection[nr_fds].refcount = 1;
2468 fprintf(stderr, "saved connection %d for %s %d\n",
2469 nr_fds, connection[nr_fds].BusID,
2470 strcmp(BusID, connection[nr_fds].BusID));
2477 void drmCloseOnce(int fd)
2481 for (i = 0; i < nr_fds; i++) {
2482 if (fd == connection[i].fd) {
2483 if (--connection[i].refcount == 0) {
2484 drmClose(connection[i].fd);
2485 free(connection[i].BusID);
2488 connection[i] = connection[nr_fds];
2496 int drmSetMaster(int fd)
2498 return ioctl(fd, DRM_IOCTL_SET_MASTER, 0);
2501 int drmDropMaster(int fd)
2503 return ioctl(fd, DRM_IOCTL_DROP_MASTER, 0);
2506 char *drmGetDeviceNameFromFd(int fd)
2513 /* The whole drmOpen thing is a fiasco and we need to find a way
2514 * back to just using open(2). For now, however, lets just make
2515 * things worse with even more ad hoc directory walking code to
2516 * discover the device file name. */
2521 for (i = 0; i < DRM_MAX_MINOR; i++) {
2522 snprintf(name, sizeof name, DRM_DEV_NAME, DRM_DIR_NAME, i);
2523 if (stat(name, &sbuf) == 0 && sbuf.st_rdev == d)
2526 if (i == DRM_MAX_MINOR)
2529 return strdup(name);