Current Path: > > usr > include > drm
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
amdgpu_drm.h | File | 37414 bytes | July 04 2025 12:29:12. | |
armada_drm.h | File | 1212 bytes | July 04 2025 12:29:12. | |
drm.h | File | 37778 bytes | July 04 2025 12:29:12. | |
drm_fourcc.h | File | 66592 bytes | July 04 2025 12:29:12. | |
drm_mode.h | File | 39789 bytes | July 04 2025 12:29:12. | |
drm_sarea.h | File | 2782 bytes | July 04 2025 12:29:12. | |
etnaviv_drm.h | File | 11993 bytes | July 04 2025 12:29:12. | |
exynos_drm.h | File | 11133 bytes | July 04 2025 12:29:12. | |
habanalabs_accel.h | File | 76126 bytes | July 04 2025 12:29:12. | |
i915_drm.h | File | 125071 bytes | July 04 2025 12:29:12. | |
ivpu_accel.h | File | 8405 bytes | July 04 2025 12:29:12. | |
lima_drm.h | File | 5052 bytes | July 04 2025 12:29:12. | |
msm_drm.h | File | 15959 bytes | July 04 2025 12:29:12. | |
nouveau_drm.h | File | 6640 bytes | July 04 2025 12:29:12. | |
omap_drm.h | File | 4027 bytes | July 04 2025 12:29:12. | |
panfrost_drm.h | File | 8448 bytes | July 04 2025 12:29:12. | |
qxl_drm.h | File | 4131 bytes | July 04 2025 12:29:12. | |
radeon_drm.h | File | 38236 bytes | July 04 2025 12:29:12. | |
tegra_drm.h | File | 21641 bytes | July 04 2025 12:29:12. | |
v3d_drm.h | File | 14899 bytes | July 04 2025 12:29:12. | |
vc4_drm.h | File | 14457 bytes | July 04 2025 12:29:12. | |
vgem_drm.h | File | 1971 bytes | July 04 2025 12:29:12. | |
virtgpu_drm.h | File | 7340 bytes | July 04 2025 12:29:12. | |
vmwgfx_drm.h | File | 37479 bytes | July 04 2025 12:29:12. |
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Copyright (C) 2012 Russell King * With inspiration from the i915 driver * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef DRM_ARMADA_IOCTL_H #define DRM_ARMADA_IOCTL_H #include "drm.h" #if defined(__cplusplus) extern "C" { #endif #define DRM_ARMADA_GEM_CREATE 0x00 #define DRM_ARMADA_GEM_MMAP 0x02 #define DRM_ARMADA_GEM_PWRITE 0x03 #define ARMADA_IOCTL(dir, name, str) \ DRM_##dir(DRM_COMMAND_BASE + DRM_ARMADA_##name, struct drm_armada_##str) struct drm_armada_gem_create { __u32 handle; __u32 size; }; #define DRM_IOCTL_ARMADA_GEM_CREATE \ ARMADA_IOCTL(IOWR, GEM_CREATE, gem_create) struct drm_armada_gem_mmap { __u32 handle; __u32 pad; __u64 offset; __u64 size; __u64 addr; }; #define DRM_IOCTL_ARMADA_GEM_MMAP \ ARMADA_IOCTL(IOWR, GEM_MMAP, gem_mmap) struct drm_armada_gem_pwrite { __u64 ptr; __u32 handle; __u32 offset; __u32 size; }; #define DRM_IOCTL_ARMADA_GEM_PWRITE \ ARMADA_IOCTL(IOW, GEM_PWRITE, gem_pwrite) #if defined(__cplusplus) } #endif #endif
SILENT KILLER Tool