diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-01-23 09:52:20 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-03-13 07:48:41 -0400 |
commit | 55310008684309985110fdb99fa7b61c649778b2 (patch) | |
tree | dcffa70036a49228aede596ac0da5c7162f3830b /include/drm/drm_modes.h | |
parent | 8bd441b27e85834533df26a7f1c2c9289303c5ef (diff) |
drm: extract drm_modes.h for drm_crtc.h functions
I want to also include kerneldoc from the header (for static inline
functions and structs), but fishing the right pieces out of a giant
header is a real pain. So split things out.
Note that it's not a really clean header with sane include orders, but
given's drm historical knack for giant headers detangling this is a
major task.
v2: Also extract struct drm_cmdline_mode.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'include/drm/drm_modes.h')
-rw-r--r-- | include/drm/drm_modes.h | 232 |
1 files changed, 232 insertions, 0 deletions
diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h new file mode 100644 index 000000000000..4bd1c122cd39 --- /dev/null +++ b/include/drm/drm_modes.h | |||
@@ -0,0 +1,232 @@ | |||
1 | /* | ||
2 | * Copyright © 2006 Keith Packard | ||
3 | * Copyright © 2007-2008 Dave Airlie | ||
4 | * Copyright © 2007-2008 Intel Corporation | ||
5 | * Jesse Barnes <jesse.barnes@intel.com> | ||
6 | * Copyright © 2014 Intel Corporation | ||
7 | * Daniel Vetter <daniel.vetter@ffwll.ch> | ||
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 shall be included in | ||
17 | * all copies or substantial portions of the Software. | ||
18 | * | ||
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
22 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
23 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
24 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
25 | * OTHER DEALINGS IN THE SOFTWARE. | ||
26 | */ | ||
27 | #ifndef __DRM_MODES_H__ | ||
28 | #define __DRM_MODES_H__ | ||
29 | |||
30 | /* | ||
31 | * Note on terminology: here, for brevity and convenience, we refer to connector | ||
32 | * control chips as 'CRTCs'. They can control any type of connector, VGA, LVDS, | ||
33 | * DVI, etc. And 'screen' refers to the whole of the visible display, which | ||
34 | * may span multiple monitors (and therefore multiple CRTC and connector | ||
35 | * structures). | ||
36 | */ | ||
37 | |||
38 | enum drm_mode_status { | ||
39 | MODE_OK = 0, /* Mode OK */ | ||
40 | MODE_HSYNC, /* hsync out of range */ | ||
41 | MODE_VSYNC, /* vsync out of range */ | ||
42 | MODE_H_ILLEGAL, /* mode has illegal horizontal timings */ | ||
43 | MODE_V_ILLEGAL, /* mode has illegal horizontal timings */ | ||
44 | MODE_BAD_WIDTH, /* requires an unsupported linepitch */ | ||
45 | MODE_NOMODE, /* no mode with a matching name */ | ||
46 | MODE_NO_INTERLACE, /* interlaced mode not supported */ | ||
47 | MODE_NO_DBLESCAN, /* doublescan mode not supported */ | ||
48 | MODE_NO_VSCAN, /* multiscan mode not supported */ | ||
49 | MODE_MEM, /* insufficient video memory */ | ||
50 | MODE_VIRTUAL_X, /* mode width too large for specified virtual size */ | ||
51 | MODE_VIRTUAL_Y, /* mode height too large for specified virtual size */ | ||
52 | MODE_MEM_VIRT, /* insufficient video memory given virtual size */ | ||
53 | MODE_NOCLOCK, /* no fixed clock available */ | ||
54 | MODE_CLOCK_HIGH, /* clock required is too high */ | ||
55 | MODE_CLOCK_LOW, /* clock required is too low */ | ||
56 | MODE_CLOCK_RANGE, /* clock/mode isn't in a ClockRange */ | ||
57 | MODE_BAD_HVALUE, /* horizontal timing was out of range */ | ||
58 | MODE_BAD_VVALUE, /* vertical timing was out of range */ | ||
59 | MODE_BAD_VSCAN, /* VScan value out of range */ | ||
60 | MODE_HSYNC_NARROW, /* horizontal sync too narrow */ | ||
61 | MODE_HSYNC_WIDE, /* horizontal sync too wide */ | ||
62 | MODE_HBLANK_NARROW, /* horizontal blanking too narrow */ | ||
63 | MODE_HBLANK_WIDE, /* horizontal blanking too wide */ | ||
64 | MODE_VSYNC_NARROW, /* vertical sync too narrow */ | ||
65 | MODE_VSYNC_WIDE, /* vertical sync too wide */ | ||
66 | MODE_VBLANK_NARROW, /* vertical blanking too narrow */ | ||
67 | MODE_VBLANK_WIDE, /* vertical blanking too wide */ | ||
68 | MODE_PANEL, /* exceeds panel dimensions */ | ||
69 | MODE_INTERLACE_WIDTH, /* width too large for interlaced mode */ | ||
70 | MODE_ONE_WIDTH, /* only one width is supported */ | ||
71 | MODE_ONE_HEIGHT, /* only one height is supported */ | ||
72 | MODE_ONE_SIZE, /* only one resolution is supported */ | ||
73 | MODE_NO_REDUCED, /* monitor doesn't accept reduced blanking */ | ||
74 | MODE_NO_STEREO, /* stereo modes not supported */ | ||
75 | MODE_UNVERIFIED = -3, /* mode needs to reverified */ | ||
76 | MODE_BAD = -2, /* unspecified reason */ | ||
77 | MODE_ERROR = -1 /* error condition */ | ||
78 | }; | ||
79 | |||
80 | #define DRM_MODE_TYPE_CLOCK_CRTC_C (DRM_MODE_TYPE_CLOCK_C | \ | ||
81 | DRM_MODE_TYPE_CRTC_C) | ||
82 | |||
83 | #define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \ | ||
84 | .name = nm, .status = 0, .type = (t), .clock = (c), \ | ||
85 | .hdisplay = (hd), .hsync_start = (hss), .hsync_end = (hse), \ | ||
86 | .htotal = (ht), .hskew = (hsk), .vdisplay = (vd), \ | ||
87 | .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \ | ||
88 | .vscan = (vs), .flags = (f), \ | ||
89 | .base.type = DRM_MODE_OBJECT_MODE | ||
90 | |||
91 | #define CRTC_INTERLACE_HALVE_V (1 << 0) /* halve V values for interlacing */ | ||
92 | #define CRTC_STEREO_DOUBLE (1 << 1) /* adjust timings for stereo modes */ | ||
93 | |||
94 | #define DRM_MODE_FLAG_3D_MAX DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF | ||
95 | |||
96 | struct drm_display_mode { | ||
97 | /* Header */ | ||
98 | struct list_head head; | ||
99 | struct drm_mode_object base; | ||
100 | |||
101 | char name[DRM_DISPLAY_MODE_LEN]; | ||
102 | |||
103 | enum drm_mode_status status; | ||
104 | unsigned int type; | ||
105 | |||
106 | /* Proposed mode values */ | ||
107 | int clock; /* in kHz */ | ||
108 | int hdisplay; | ||
109 | int hsync_start; | ||
110 | int hsync_end; | ||
111 | int htotal; | ||
112 | int hskew; | ||
113 | int vdisplay; | ||
114 | int vsync_start; | ||
115 | int vsync_end; | ||
116 | int vtotal; | ||
117 | int vscan; | ||
118 | unsigned int flags; | ||
119 | |||
120 | /* Addressable image size (may be 0 for projectors, etc.) */ | ||
121 | int width_mm; | ||
122 | int height_mm; | ||
123 | |||
124 | /* Actual mode we give to hw */ | ||
125 | int crtc_clock; /* in KHz */ | ||
126 | int crtc_hdisplay; | ||
127 | int crtc_hblank_start; | ||
128 | int crtc_hblank_end; | ||
129 | int crtc_hsync_start; | ||
130 | int crtc_hsync_end; | ||
131 | int crtc_htotal; | ||
132 | int crtc_hskew; | ||
133 | int crtc_vdisplay; | ||
134 | int crtc_vblank_start; | ||
135 | int crtc_vblank_end; | ||
136 | int crtc_vsync_start; | ||
137 | int crtc_vsync_end; | ||
138 | int crtc_vtotal; | ||
139 | |||
140 | /* Driver private mode info */ | ||
141 | int private_size; | ||
142 | int *private; | ||
143 | int private_flags; | ||
144 | |||
145 | int vrefresh; /* in Hz */ | ||
146 | int hsync; /* in kHz */ | ||
147 | enum hdmi_picture_aspect picture_aspect_ratio; | ||
148 | }; | ||
149 | |||
150 | /* mode specified on the command line */ | ||
151 | struct drm_cmdline_mode { | ||
152 | bool specified; | ||
153 | bool refresh_specified; | ||
154 | bool bpp_specified; | ||
155 | int xres, yres; | ||
156 | int bpp; | ||
157 | int refresh; | ||
158 | bool rb; | ||
159 | bool interlace; | ||
160 | bool cvt; | ||
161 | bool margins; | ||
162 | enum drm_connector_force force; | ||
163 | }; | ||
164 | |||
165 | static inline bool drm_mode_is_stereo(const struct drm_display_mode *mode) | ||
166 | { | ||
167 | return mode->flags & DRM_MODE_FLAG_3D_MASK; | ||
168 | } | ||
169 | |||
170 | struct drm_connector; | ||
171 | struct drm_cmdline_mode; | ||
172 | |||
173 | struct drm_display_mode *drm_mode_create(struct drm_device *dev); | ||
174 | void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode); | ||
175 | void drm_mode_probed_add(struct drm_connector *connector, struct drm_display_mode *mode); | ||
176 | void drm_mode_debug_printmodeline(const struct drm_display_mode *mode); | ||
177 | |||
178 | struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, | ||
179 | int hdisplay, int vdisplay, int vrefresh, | ||
180 | bool reduced, bool interlaced, | ||
181 | bool margins); | ||
182 | struct drm_display_mode *drm_gtf_mode(struct drm_device *dev, | ||
183 | int hdisplay, int vdisplay, int vrefresh, | ||
184 | bool interlaced, int margins); | ||
185 | struct drm_display_mode *drm_gtf_mode_complex(struct drm_device *dev, | ||
186 | int hdisplay, int vdisplay, | ||
187 | int vrefresh, bool interlaced, | ||
188 | int margins, | ||
189 | int GTF_M, int GTF_2C, | ||
190 | int GTF_K, int GTF_2J); | ||
191 | int drm_display_mode_from_videomode(const struct videomode *vm, | ||
192 | struct drm_display_mode *dmode); | ||
193 | int of_get_drm_display_mode(struct device_node *np, | ||
194 | struct drm_display_mode *dmode, | ||
195 | int index); | ||
196 | |||
197 | void drm_mode_set_name(struct drm_display_mode *mode); | ||
198 | int drm_mode_width(const struct drm_display_mode *mode); | ||
199 | int drm_mode_height(const struct drm_display_mode *mode); | ||
200 | int drm_mode_hsync(const struct drm_display_mode *mode); | ||
201 | int drm_mode_vrefresh(const struct drm_display_mode *mode); | ||
202 | |||
203 | void drm_mode_set_crtcinfo(struct drm_display_mode *p, | ||
204 | int adjust_flags); | ||
205 | void drm_mode_copy(struct drm_display_mode *dst, | ||
206 | const struct drm_display_mode *src); | ||
207 | struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev, | ||
208 | const struct drm_display_mode *mode); | ||
209 | bool drm_mode_equal(const struct drm_display_mode *mode1, | ||
210 | const struct drm_display_mode *mode2); | ||
211 | bool drm_mode_equal_no_clocks_no_stereo(const struct drm_display_mode *mode1, | ||
212 | const struct drm_display_mode *mode2); | ||
213 | |||
214 | /* for use by the crtc helper probe functions */ | ||
215 | void drm_mode_validate_size(struct drm_device *dev, | ||
216 | struct list_head *mode_list, | ||
217 | int maxX, int maxY, int maxPitch); | ||
218 | void drm_mode_prune_invalid(struct drm_device *dev, | ||
219 | struct list_head *mode_list, bool verbose); | ||
220 | void drm_mode_sort(struct list_head *mode_list); | ||
221 | void drm_mode_connector_list_update(struct drm_connector *connector); | ||
222 | |||
223 | /* parsing cmdline modes */ | ||
224 | bool | ||
225 | drm_mode_parse_command_line_for_connector(const char *mode_option, | ||
226 | struct drm_connector *connector, | ||
227 | struct drm_cmdline_mode *mode); | ||
228 | struct drm_display_mode * | ||
229 | drm_mode_create_from_cmdline_mode(struct drm_device *dev, | ||
230 | struct drm_cmdline_mode *cmd); | ||
231 | |||
232 | #endif /* __DRM_MODES_H__ */ | ||