diff options
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/exynos_drm.h | 104 | ||||
-rw-r--r-- | include/drm/vmwgfx_drm.h | 106 |
2 files changed, 210 insertions, 0 deletions
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h new file mode 100644 index 000000000000..874c4d271328 --- /dev/null +++ b/include/drm/exynos_drm.h | |||
@@ -0,0 +1,104 @@ | |||
1 | /* exynos_drm.h | ||
2 | * | ||
3 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. | ||
4 | * Authors: | ||
5 | * Inki Dae <inki.dae@samsung.com> | ||
6 | * Joonyoung Shim <jy0922.shim@samsung.com> | ||
7 | * Seung-Woo Kim <sw0312.kim@samsung.com> | ||
8 | * | ||
9 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
10 | * copy of this software and associated documentation files (the "Software"), | ||
11 | * to deal in the Software without restriction, including without limitation | ||
12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
13 | * and/or sell copies of the Software, and to permit persons to whom the | ||
14 | * Software is furnished to do so, subject to the following conditions: | ||
15 | * | ||
16 | * The above copyright notice and this permission notice (including the next | ||
17 | * paragraph) shall be included in all copies or substantial portions of the | ||
18 | * Software. | ||
19 | * | ||
20 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
21 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
22 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
23 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
24 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
25 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
26 | * OTHER DEALINGS IN THE SOFTWARE. | ||
27 | */ | ||
28 | |||
29 | #ifndef _EXYNOS_DRM_H_ | ||
30 | #define _EXYNOS_DRM_H_ | ||
31 | |||
32 | /** | ||
33 | * User-desired buffer creation information structure. | ||
34 | * | ||
35 | * @size: requested size for the object. | ||
36 | * - this size value would be page-aligned internally. | ||
37 | * @flags: user request for setting memory type or cache attributes. | ||
38 | * @handle: returned handle for the object. | ||
39 | */ | ||
40 | struct drm_exynos_gem_create { | ||
41 | unsigned int size; | ||
42 | unsigned int flags; | ||
43 | unsigned int handle; | ||
44 | }; | ||
45 | |||
46 | /** | ||
47 | * A structure for getting buffer offset. | ||
48 | * | ||
49 | * @handle: a pointer to gem object created. | ||
50 | * @pad: just padding to be 64-bit aligned. | ||
51 | * @offset: relatived offset value of the memory region allocated. | ||
52 | * - this value should be set by user. | ||
53 | */ | ||
54 | struct drm_exynos_gem_map_off { | ||
55 | unsigned int handle; | ||
56 | unsigned int pad; | ||
57 | uint64_t offset; | ||
58 | }; | ||
59 | |||
60 | /** | ||
61 | * A structure for mapping buffer. | ||
62 | * | ||
63 | * @handle: a handle to gem object created. | ||
64 | * @size: memory size to be mapped. | ||
65 | * @mapped: having user virtual address mmaped. | ||
66 | * - this variable would be filled by exynos gem module | ||
67 | * of kernel side with user virtual address which is allocated | ||
68 | * by do_mmap(). | ||
69 | */ | ||
70 | struct drm_exynos_gem_mmap { | ||
71 | unsigned int handle; | ||
72 | unsigned int size; | ||
73 | uint64_t mapped; | ||
74 | }; | ||
75 | |||
76 | #define DRM_EXYNOS_GEM_CREATE 0x00 | ||
77 | #define DRM_EXYNOS_GEM_MAP_OFFSET 0x01 | ||
78 | #define DRM_EXYNOS_GEM_MMAP 0x02 | ||
79 | |||
80 | #define DRM_IOCTL_EXYNOS_GEM_CREATE DRM_IOWR(DRM_COMMAND_BASE + \ | ||
81 | DRM_EXYNOS_GEM_CREATE, struct drm_exynos_gem_create) | ||
82 | |||
83 | #define DRM_IOCTL_EXYNOS_GEM_MAP_OFFSET DRM_IOWR(DRM_COMMAND_BASE + \ | ||
84 | DRM_EXYNOS_GEM_MAP_OFFSET, struct drm_exynos_gem_map_off) | ||
85 | |||
86 | #define DRM_IOCTL_EXYNOS_GEM_MMAP DRM_IOWR(DRM_COMMAND_BASE + \ | ||
87 | DRM_EXYNOS_GEM_MMAP, struct drm_exynos_gem_mmap) | ||
88 | |||
89 | /** | ||
90 | * Platform Specific Structure for DRM based FIMD. | ||
91 | * | ||
92 | * @timing: default video mode for initializing | ||
93 | * @default_win: default window layer number to be used for UI. | ||
94 | * @bpp: default bit per pixel. | ||
95 | */ | ||
96 | struct exynos_drm_fimd_pdata { | ||
97 | struct fb_videomode timing; | ||
98 | u32 vidcon0; | ||
99 | u32 vidcon1; | ||
100 | unsigned int default_win; | ||
101 | unsigned int bpp; | ||
102 | }; | ||
103 | |||
104 | #endif | ||
diff --git a/include/drm/vmwgfx_drm.h b/include/drm/vmwgfx_drm.h index 29cd9cfdd611..cd7cd8162ed6 100644 --- a/include/drm/vmwgfx_drm.h +++ b/include/drm/vmwgfx_drm.h | |||
@@ -52,6 +52,8 @@ | |||
52 | #define DRM_VMW_FENCE_SIGNALED 15 | 52 | #define DRM_VMW_FENCE_SIGNALED 15 |
53 | #define DRM_VMW_FENCE_UNREF 16 | 53 | #define DRM_VMW_FENCE_UNREF 16 |
54 | #define DRM_VMW_FENCE_EVENT 17 | 54 | #define DRM_VMW_FENCE_EVENT 17 |
55 | #define DRM_VMW_PRESENT 18 | ||
56 | #define DRM_VMW_PRESENT_READBACK 19 | ||
55 | 57 | ||
56 | 58 | ||
57 | /*************************************************************************/ | 59 | /*************************************************************************/ |
@@ -681,5 +683,109 @@ struct drm_vmw_fence_arg { | |||
681 | }; | 683 | }; |
682 | 684 | ||
683 | 685 | ||
686 | /*************************************************************************/ | ||
687 | /** | ||
688 | * DRM_VMW_FENCE_EVENT | ||
689 | * | ||
690 | * Queues an event on a fence to be delivered on the drm character device | ||
691 | * when the fence has signaled the DRM_VMW_FENCE_FLAG_EXEC flag. | ||
692 | * Optionally the approximate time when the fence signaled is | ||
693 | * given by the event. | ||
694 | */ | ||
695 | |||
696 | /* | ||
697 | * The event type | ||
698 | */ | ||
699 | #define DRM_VMW_EVENT_FENCE_SIGNALED 0x80000000 | ||
700 | |||
701 | struct drm_vmw_event_fence { | ||
702 | struct drm_event base; | ||
703 | uint64_t user_data; | ||
704 | uint32_t tv_sec; | ||
705 | uint32_t tv_usec; | ||
706 | }; | ||
707 | |||
708 | /* | ||
709 | * Flags that may be given to the command. | ||
710 | */ | ||
711 | /* Request fence signaled time on the event. */ | ||
712 | #define DRM_VMW_FE_FLAG_REQ_TIME (1 << 0) | ||
713 | |||
714 | /** | ||
715 | * struct drm_vmw_fence_event_arg | ||
716 | * | ||
717 | * @fence_rep: Pointer to fence_rep structure cast to uint64_t or 0 if | ||
718 | * the fence is not supposed to be referenced by user-space. | ||
719 | * @user_info: Info to be delivered with the event. | ||
720 | * @handle: Attach the event to this fence only. | ||
721 | * @flags: A set of flags as defined above. | ||
722 | */ | ||
723 | struct drm_vmw_fence_event_arg { | ||
724 | uint64_t fence_rep; | ||
725 | uint64_t user_data; | ||
726 | uint32_t handle; | ||
727 | uint32_t flags; | ||
728 | }; | ||
729 | |||
684 | 730 | ||
731 | /*************************************************************************/ | ||
732 | /** | ||
733 | * DRM_VMW_PRESENT | ||
734 | * | ||
735 | * Executes an SVGA present on a given fb for a given surface. The surface | ||
736 | * is placed on the framebuffer. Cliprects are given relative to the given | ||
737 | * point (the point disignated by dest_{x|y}). | ||
738 | * | ||
739 | */ | ||
740 | |||
741 | /** | ||
742 | * struct drm_vmw_present_arg | ||
743 | * @fb_id: framebuffer id to present / read back from. | ||
744 | * @sid: Surface id to present from. | ||
745 | * @dest_x: X placement coordinate for surface. | ||
746 | * @dest_y: Y placement coordinate for surface. | ||
747 | * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t. | ||
748 | * @num_clips: Number of cliprects given relative to the framebuffer origin, | ||
749 | * in the same coordinate space as the frame buffer. | ||
750 | * @pad64: Unused 64-bit padding. | ||
751 | * | ||
752 | * Input argument to the DRM_VMW_PRESENT ioctl. | ||
753 | */ | ||
754 | |||
755 | struct drm_vmw_present_arg { | ||
756 | uint32_t fb_id; | ||
757 | uint32_t sid; | ||
758 | int32_t dest_x; | ||
759 | int32_t dest_y; | ||
760 | uint64_t clips_ptr; | ||
761 | uint32_t num_clips; | ||
762 | uint32_t pad64; | ||
763 | }; | ||
764 | |||
765 | |||
766 | /*************************************************************************/ | ||
767 | /** | ||
768 | * DRM_VMW_PRESENT_READBACK | ||
769 | * | ||
770 | * Executes an SVGA present readback from a given fb to the dma buffer | ||
771 | * currently bound as the fb. If there is no dma buffer bound to the fb, | ||
772 | * an error will be returned. | ||
773 | * | ||
774 | */ | ||
775 | |||
776 | /** | ||
777 | * struct drm_vmw_present_arg | ||
778 | * @fb_id: fb_id to present / read back from. | ||
779 | * @num_clips: Number of cliprects. | ||
780 | * @clips_ptr: Pointer to an array of clip rects cast to an uint64_t. | ||
781 | * @fence_rep: Pointer to a struct drm_vmw_fence_rep, cast to an uint64_t. | ||
782 | * If this member is NULL, then the ioctl should not return a fence. | ||
783 | */ | ||
784 | |||
785 | struct drm_vmw_present_readback_arg { | ||
786 | uint32_t fb_id; | ||
787 | uint32_t num_clips; | ||
788 | uint64_t clips_ptr; | ||
789 | uint64_t fence_rep; | ||
790 | }; | ||
685 | #endif | 791 | #endif |