drm/modes: drop maxPitch from drm_mode_validate_size
[linux-2.6-block.git] / drivers / gpu / drm / drm_modes.c
CommitLineData
f453ba04 1/*
f453ba04
DA
2 * Copyright © 1997-2003 by The XFree86 Project, Inc.
3 * Copyright © 2007 Dave Airlie
4 * Copyright © 2007-2008 Intel Corporation
5 * Jesse Barnes <jesse.barnes@intel.com>
d782c3f9 6 * Copyright 2005-2006 Luc Verhaegen
26bbdada 7 * Copyright (c) 2001, Andy Ritger aritger@nvidia.com
f453ba04
DA
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 * Except as contained in this notice, the name of the copyright holder(s)
28 * and author(s) shall not be used in advertising or otherwise to promote
29 * the sale, use or other dealings in this Software without prior written
30 * authorization from the copyright holder(s) and author(s).
31 */
32
33#include <linux/list.h>
2c761270 34#include <linux/list_sort.h>
2d1a8a48 35#include <linux/export.h>
760285e7
DH
36#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
edb37a95 38#include <video/of_videomode.h>
ebc64e45 39#include <video/videomode.h>
55310008 40#include <drm/drm_modes.h>
f453ba04 41
8bd441b2
DV
42#include "drm_crtc_internal.h"
43
f453ba04 44/**
3ec0db81 45 * drm_mode_debug_printmodeline - print a mode to dmesg
f453ba04
DA
46 * @mode: mode to print
47 *
f453ba04
DA
48 * Describe @mode using DRM_DEBUG.
49 */
0b3904ab 50void drm_mode_debug_printmodeline(const struct drm_display_mode *mode)
f453ba04 51{
f940f37f 52 DRM_DEBUG_KMS("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d "
8a4c47f3 53 "0x%x 0x%x\n",
f0531859 54 mode->base.id, mode->name, mode->vrefresh, mode->clock,
55 mode->hdisplay, mode->hsync_start,
56 mode->hsync_end, mode->htotal,
57 mode->vdisplay, mode->vsync_start,
58 mode->vsync_end, mode->vtotal, mode->type, mode->flags);
f453ba04
DA
59}
60EXPORT_SYMBOL(drm_mode_debug_printmodeline);
61
8bd441b2
DV
62/**
63 * drm_mode_create - create a new display mode
64 * @dev: DRM device
65 *
66 * Create a new drm_display_mode, give it an ID, and return it.
67 *
68 * RETURNS:
69 * Pointer to new mode on success, NULL on error.
70 */
71struct drm_display_mode *drm_mode_create(struct drm_device *dev)
72{
73 struct drm_display_mode *nmode;
74
75 nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
76 if (!nmode)
77 return NULL;
78
79 if (drm_mode_object_get(dev, &nmode->base, DRM_MODE_OBJECT_MODE)) {
80 kfree(nmode);
81 return NULL;
82 }
83
84 return nmode;
85}
86EXPORT_SYMBOL(drm_mode_create);
87
88/**
89 * drm_mode_destroy - remove a mode
90 * @dev: DRM device
91 * @mode: mode to remove
92 *
93 * Free @mode's unique identifier, then free it.
94 */
95void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
96{
97 if (!mode)
98 return;
99
100 drm_mode_object_put(dev, &mode->base);
101
102 kfree(mode);
103}
104EXPORT_SYMBOL(drm_mode_destroy);
105
106/**
107 * drm_mode_probed_add - add a mode to a connector's probed mode list
108 * @connector: connector the new mode
109 * @mode: mode data
110 *
111 * Add @mode to @connector's mode list for later use.
112 */
113void drm_mode_probed_add(struct drm_connector *connector,
114 struct drm_display_mode *mode)
115{
116 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex));
117
118 list_add_tail(&mode->head, &connector->probed_modes);
119}
120EXPORT_SYMBOL(drm_mode_probed_add);
121
d782c3f9
ZY
122/**
123 * drm_cvt_mode -create a modeline based on CVT algorithm
124 * @dev: DRM device
125 * @hdisplay: hdisplay size
126 * @vdisplay: vdisplay size
127 * @vrefresh : vrefresh rate
128 * @reduced : Whether the GTF calculation is simplified
129 * @interlaced:Whether the interlace is supported
3ec0db81 130 * @margins: whether to add margins or not
d782c3f9 131 *
d782c3f9
ZY
132 * return the modeline based on CVT algorithm
133 *
134 * This function is called to generate the modeline based on CVT algorithm
135 * according to the hdisplay, vdisplay, vrefresh.
136 * It is based from the VESA(TM) Coordinated Video Timing Generator by
137 * Graham Loveridge April 9, 2003 available at
631dd1a8 138 * http://www.elo.utfsm.cl/~elo212/docs/CVTd6r1.xls
d782c3f9
ZY
139 *
140 * And it is copied from xf86CVTmode in xserver/hw/xfree86/modes/xf86cvt.c.
141 * What I have done is to translate it by using integer calculation.
142 */
d782c3f9
ZY
143struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, int hdisplay,
144 int vdisplay, int vrefresh,
d50ba256 145 bool reduced, bool interlaced, bool margins)
d782c3f9 146{
3ec0db81 147#define HV_FACTOR 1000
d782c3f9
ZY
148 /* 1) top/bottom margin size (% of height) - default: 1.8, */
149#define CVT_MARGIN_PERCENTAGE 18
150 /* 2) character cell horizontal granularity (pixels) - default 8 */
151#define CVT_H_GRANULARITY 8
152 /* 3) Minimum vertical porch (lines) - default 3 */
153#define CVT_MIN_V_PORCH 3
154 /* 4) Minimum number of vertical back porch lines - default 6 */
155#define CVT_MIN_V_BPORCH 6
156 /* Pixel Clock step (kHz) */
157#define CVT_CLOCK_STEP 250
158 struct drm_display_mode *drm_mode;
d782c3f9
ZY
159 unsigned int vfieldrate, hperiod;
160 int hdisplay_rnd, hmargin, vdisplay_rnd, vmargin, vsync;
161 int interlace;
162
163 /* allocate the drm_display_mode structure. If failure, we will
164 * return directly
165 */
166 drm_mode = drm_mode_create(dev);
167 if (!drm_mode)
168 return NULL;
169
170 /* the CVT default refresh rate is 60Hz */
171 if (!vrefresh)
172 vrefresh = 60;
173
174 /* the required field fresh rate */
175 if (interlaced)
176 vfieldrate = vrefresh * 2;
177 else
178 vfieldrate = vrefresh;
179
180 /* horizontal pixels */
181 hdisplay_rnd = hdisplay - (hdisplay % CVT_H_GRANULARITY);
182
183 /* determine the left&right borders */
184 hmargin = 0;
185 if (margins) {
186 hmargin = hdisplay_rnd * CVT_MARGIN_PERCENTAGE / 1000;
187 hmargin -= hmargin % CVT_H_GRANULARITY;
188 }
189 /* find the total active pixels */
190 drm_mode->hdisplay = hdisplay_rnd + 2 * hmargin;
191
192 /* find the number of lines per field */
193 if (interlaced)
194 vdisplay_rnd = vdisplay / 2;
195 else
196 vdisplay_rnd = vdisplay;
197
198 /* find the top & bottom borders */
199 vmargin = 0;
200 if (margins)
201 vmargin = vdisplay_rnd * CVT_MARGIN_PERCENTAGE / 1000;
202
841b4117 203 drm_mode->vdisplay = vdisplay + 2 * vmargin;
d782c3f9
ZY
204
205 /* Interlaced */
206 if (interlaced)
207 interlace = 1;
208 else
209 interlace = 0;
210
211 /* Determine VSync Width from aspect ratio */
212 if (!(vdisplay % 3) && ((vdisplay * 4 / 3) == hdisplay))
213 vsync = 4;
214 else if (!(vdisplay % 9) && ((vdisplay * 16 / 9) == hdisplay))
215 vsync = 5;
216 else if (!(vdisplay % 10) && ((vdisplay * 16 / 10) == hdisplay))
217 vsync = 6;
218 else if (!(vdisplay % 4) && ((vdisplay * 5 / 4) == hdisplay))
219 vsync = 7;
220 else if (!(vdisplay % 9) && ((vdisplay * 15 / 9) == hdisplay))
221 vsync = 7;
222 else /* custom */
223 vsync = 10;
224
225 if (!reduced) {
226 /* simplify the GTF calculation */
227 /* 4) Minimum time of vertical sync + back porch interval (µs)
228 * default 550.0
229 */
230 int tmp1, tmp2;
231#define CVT_MIN_VSYNC_BP 550
232 /* 3) Nominal HSync width (% of line period) - default 8 */
233#define CVT_HSYNC_PERCENTAGE 8
234 unsigned int hblank_percentage;
235 int vsyncandback_porch, vback_porch, hblank;
236
237 /* estimated the horizontal period */
238 tmp1 = HV_FACTOR * 1000000 -
239 CVT_MIN_VSYNC_BP * HV_FACTOR * vfieldrate;
240 tmp2 = (vdisplay_rnd + 2 * vmargin + CVT_MIN_V_PORCH) * 2 +
241 interlace;
242 hperiod = tmp1 * 2 / (tmp2 * vfieldrate);
243
244 tmp1 = CVT_MIN_VSYNC_BP * HV_FACTOR / hperiod + 1;
245 /* 9. Find number of lines in sync + backporch */
246 if (tmp1 < (vsync + CVT_MIN_V_PORCH))
247 vsyncandback_porch = vsync + CVT_MIN_V_PORCH;
248 else
249 vsyncandback_porch = tmp1;
250 /* 10. Find number of lines in back porch */
251 vback_porch = vsyncandback_porch - vsync;
252 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin +
253 vsyncandback_porch + CVT_MIN_V_PORCH;
254 /* 5) Definition of Horizontal blanking time limitation */
255 /* Gradient (%/kHz) - default 600 */
256#define CVT_M_FACTOR 600
257 /* Offset (%) - default 40 */
258#define CVT_C_FACTOR 40
259 /* Blanking time scaling factor - default 128 */
260#define CVT_K_FACTOR 128
261 /* Scaling factor weighting - default 20 */
262#define CVT_J_FACTOR 20
263#define CVT_M_PRIME (CVT_M_FACTOR * CVT_K_FACTOR / 256)
264#define CVT_C_PRIME ((CVT_C_FACTOR - CVT_J_FACTOR) * CVT_K_FACTOR / 256 + \
265 CVT_J_FACTOR)
266 /* 12. Find ideal blanking duty cycle from formula */
267 hblank_percentage = CVT_C_PRIME * HV_FACTOR - CVT_M_PRIME *
268 hperiod / 1000;
269 /* 13. Blanking time */
270 if (hblank_percentage < 20 * HV_FACTOR)
271 hblank_percentage = 20 * HV_FACTOR;
272 hblank = drm_mode->hdisplay * hblank_percentage /
273 (100 * HV_FACTOR - hblank_percentage);
274 hblank -= hblank % (2 * CVT_H_GRANULARITY);
275 /* 14. find the total pixes per line */
276 drm_mode->htotal = drm_mode->hdisplay + hblank;
277 drm_mode->hsync_end = drm_mode->hdisplay + hblank / 2;
278 drm_mode->hsync_start = drm_mode->hsync_end -
279 (drm_mode->htotal * CVT_HSYNC_PERCENTAGE) / 100;
280 drm_mode->hsync_start += CVT_H_GRANULARITY -
281 drm_mode->hsync_start % CVT_H_GRANULARITY;
282 /* fill the Vsync values */
283 drm_mode->vsync_start = drm_mode->vdisplay + CVT_MIN_V_PORCH;
284 drm_mode->vsync_end = drm_mode->vsync_start + vsync;
285 } else {
286 /* Reduced blanking */
287 /* Minimum vertical blanking interval time (µs)- default 460 */
288#define CVT_RB_MIN_VBLANK 460
289 /* Fixed number of clocks for horizontal sync */
290#define CVT_RB_H_SYNC 32
291 /* Fixed number of clocks for horizontal blanking */
292#define CVT_RB_H_BLANK 160
293 /* Fixed number of lines for vertical front porch - default 3*/
294#define CVT_RB_VFPORCH 3
295 int vbilines;
296 int tmp1, tmp2;
297 /* 8. Estimate Horizontal period. */
298 tmp1 = HV_FACTOR * 1000000 -
299 CVT_RB_MIN_VBLANK * HV_FACTOR * vfieldrate;
300 tmp2 = vdisplay_rnd + 2 * vmargin;
301 hperiod = tmp1 / (tmp2 * vfieldrate);
302 /* 9. Find number of lines in vertical blanking */
303 vbilines = CVT_RB_MIN_VBLANK * HV_FACTOR / hperiod + 1;
304 /* 10. Check if vertical blanking is sufficient */
305 if (vbilines < (CVT_RB_VFPORCH + vsync + CVT_MIN_V_BPORCH))
306 vbilines = CVT_RB_VFPORCH + vsync + CVT_MIN_V_BPORCH;
307 /* 11. Find total number of lines in vertical field */
308 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin + vbilines;
309 /* 12. Find total number of pixels in a line */
310 drm_mode->htotal = drm_mode->hdisplay + CVT_RB_H_BLANK;
311 /* Fill in HSync values */
312 drm_mode->hsync_end = drm_mode->hdisplay + CVT_RB_H_BLANK / 2;
adde0f23
AJ
313 drm_mode->hsync_start = drm_mode->hsync_end - CVT_RB_H_SYNC;
314 /* Fill in VSync values */
315 drm_mode->vsync_start = drm_mode->vdisplay + CVT_RB_VFPORCH;
316 drm_mode->vsync_end = drm_mode->vsync_start + vsync;
d782c3f9
ZY
317 }
318 /* 15/13. Find pixel clock frequency (kHz for xf86) */
319 drm_mode->clock = drm_mode->htotal * HV_FACTOR * 1000 / hperiod;
320 drm_mode->clock -= drm_mode->clock % CVT_CLOCK_STEP;
321 /* 18/16. Find actual vertical frame frequency */
322 /* ignore - just set the mode flag for interlaced */
171fdd89 323 if (interlaced) {
d782c3f9 324 drm_mode->vtotal *= 2;
171fdd89
AJ
325 drm_mode->flags |= DRM_MODE_FLAG_INTERLACE;
326 }
d782c3f9
ZY
327 /* Fill the mode line name */
328 drm_mode_set_name(drm_mode);
329 if (reduced)
330 drm_mode->flags |= (DRM_MODE_FLAG_PHSYNC |
331 DRM_MODE_FLAG_NVSYNC);
332 else
333 drm_mode->flags |= (DRM_MODE_FLAG_PVSYNC |
334 DRM_MODE_FLAG_NHSYNC);
d782c3f9 335
171fdd89 336 return drm_mode;
d782c3f9
ZY
337}
338EXPORT_SYMBOL(drm_cvt_mode);
339
26bbdada 340/**
7a374350 341 * drm_gtf_mode_complex - create the modeline based on full GTF algorithm
26bbdada
ZY
342 *
343 * @dev :drm device
344 * @hdisplay :hdisplay size
345 * @vdisplay :vdisplay size
346 * @vrefresh :vrefresh rate.
347 * @interlaced :whether the interlace is supported
7a374350 348 * @margins :desired margin size
3ec0db81
DV
349 * @GTF_M: extended GTF formula parameters
350 * @GTF_2C: extended GTF formula parameters
351 * @GTF_K: extended GTF formula parameters
352 * @GTF_2J: extended GTF formula parameters
26bbdada 353 *
7a374350 354 * return the modeline based on full GTF algorithm.
26bbdada 355 *
7a374350
AJ
356 * GTF feature blocks specify C and J in multiples of 0.5, so we pass them
357 * in here multiplied by two. For a C of 40, pass in 80.
26bbdada 358 */
7a374350
AJ
359struct drm_display_mode *
360drm_gtf_mode_complex(struct drm_device *dev, int hdisplay, int vdisplay,
361 int vrefresh, bool interlaced, int margins,
362 int GTF_M, int GTF_2C, int GTF_K, int GTF_2J)
363{ /* 1) top/bottom margin size (% of height) - default: 1.8, */
26bbdada
ZY
364#define GTF_MARGIN_PERCENTAGE 18
365 /* 2) character cell horizontal granularity (pixels) - default 8 */
366#define GTF_CELL_GRAN 8
367 /* 3) Minimum vertical porch (lines) - default 3 */
368#define GTF_MIN_V_PORCH 1
369 /* width of vsync in lines */
370#define V_SYNC_RQD 3
371 /* width of hsync as % of total line */
372#define H_SYNC_PERCENT 8
373 /* min time of vsync + back porch (microsec) */
374#define MIN_VSYNC_PLUS_BP 550
26bbdada 375 /* C' and M' are part of the Blanking Duty Cycle computation */
7a374350
AJ
376#define GTF_C_PRIME ((((GTF_2C - GTF_2J) * GTF_K / 256) + GTF_2J) / 2)
377#define GTF_M_PRIME (GTF_K * GTF_M / 256)
26bbdada
ZY
378 struct drm_display_mode *drm_mode;
379 unsigned int hdisplay_rnd, vdisplay_rnd, vfieldrate_rqd;
380 int top_margin, bottom_margin;
381 int interlace;
382 unsigned int hfreq_est;
383 int vsync_plus_bp, vback_porch;
384 unsigned int vtotal_lines, vfieldrate_est, hperiod;
385 unsigned int vfield_rate, vframe_rate;
386 int left_margin, right_margin;
387 unsigned int total_active_pixels, ideal_duty_cycle;
388 unsigned int hblank, total_pixels, pixel_freq;
389 int hsync, hfront_porch, vodd_front_porch_lines;
390 unsigned int tmp1, tmp2;
391
392 drm_mode = drm_mode_create(dev);
393 if (!drm_mode)
394 return NULL;
395
396 /* 1. In order to give correct results, the number of horizontal
397 * pixels requested is first processed to ensure that it is divisible
398 * by the character size, by rounding it to the nearest character
399 * cell boundary:
400 */
401 hdisplay_rnd = (hdisplay + GTF_CELL_GRAN / 2) / GTF_CELL_GRAN;
402 hdisplay_rnd = hdisplay_rnd * GTF_CELL_GRAN;
403
404 /* 2. If interlace is requested, the number of vertical lines assumed
405 * by the calculation must be halved, as the computation calculates
406 * the number of vertical lines per field.
407 */
408 if (interlaced)
409 vdisplay_rnd = vdisplay / 2;
410 else
411 vdisplay_rnd = vdisplay;
412
413 /* 3. Find the frame rate required: */
414 if (interlaced)
415 vfieldrate_rqd = vrefresh * 2;
416 else
417 vfieldrate_rqd = vrefresh;
418
419 /* 4. Find number of lines in Top margin: */
420 top_margin = 0;
421 if (margins)
422 top_margin = (vdisplay_rnd * GTF_MARGIN_PERCENTAGE + 500) /
423 1000;
424 /* 5. Find number of lines in bottom margin: */
425 bottom_margin = top_margin;
426
427 /* 6. If interlace is required, then set variable interlace: */
428 if (interlaced)
429 interlace = 1;
430 else
431 interlace = 0;
432
433 /* 7. Estimate the Horizontal frequency */
434 {
435 tmp1 = (1000000 - MIN_VSYNC_PLUS_BP * vfieldrate_rqd) / 500;
436 tmp2 = (vdisplay_rnd + 2 * top_margin + GTF_MIN_V_PORCH) *
437 2 + interlace;
438 hfreq_est = (tmp2 * 1000 * vfieldrate_rqd) / tmp1;
439 }
440
441 /* 8. Find the number of lines in V sync + back porch */
442 /* [V SYNC+BP] = RINT(([MIN VSYNC+BP] * hfreq_est / 1000000)) */
443 vsync_plus_bp = MIN_VSYNC_PLUS_BP * hfreq_est / 1000;
444 vsync_plus_bp = (vsync_plus_bp + 500) / 1000;
445 /* 9. Find the number of lines in V back porch alone: */
446 vback_porch = vsync_plus_bp - V_SYNC_RQD;
447 /* 10. Find the total number of lines in Vertical field period: */
448 vtotal_lines = vdisplay_rnd + top_margin + bottom_margin +
449 vsync_plus_bp + GTF_MIN_V_PORCH;
450 /* 11. Estimate the Vertical field frequency: */
451 vfieldrate_est = hfreq_est / vtotal_lines;
452 /* 12. Find the actual horizontal period: */
453 hperiod = 1000000 / (vfieldrate_rqd * vtotal_lines);
454
455 /* 13. Find the actual Vertical field frequency: */
456 vfield_rate = hfreq_est / vtotal_lines;
457 /* 14. Find the Vertical frame frequency: */
458 if (interlaced)
459 vframe_rate = vfield_rate / 2;
460 else
461 vframe_rate = vfield_rate;
462 /* 15. Find number of pixels in left margin: */
463 if (margins)
464 left_margin = (hdisplay_rnd * GTF_MARGIN_PERCENTAGE + 500) /
465 1000;
466 else
467 left_margin = 0;
468
469 /* 16.Find number of pixels in right margin: */
470 right_margin = left_margin;
471 /* 17.Find total number of active pixels in image and left and right */
472 total_active_pixels = hdisplay_rnd + left_margin + right_margin;
473 /* 18.Find the ideal blanking duty cycle from blanking duty cycle */
474 ideal_duty_cycle = GTF_C_PRIME * 1000 -
475 (GTF_M_PRIME * 1000000 / hfreq_est);
476 /* 19.Find the number of pixels in the blanking time to the nearest
477 * double character cell: */
478 hblank = total_active_pixels * ideal_duty_cycle /
479 (100000 - ideal_duty_cycle);
480 hblank = (hblank + GTF_CELL_GRAN) / (2 * GTF_CELL_GRAN);
481 hblank = hblank * 2 * GTF_CELL_GRAN;
482 /* 20.Find total number of pixels: */
483 total_pixels = total_active_pixels + hblank;
484 /* 21.Find pixel clock frequency: */
485 pixel_freq = total_pixels * hfreq_est / 1000;
486 /* Stage 1 computations are now complete; I should really pass
487 * the results to another function and do the Stage 2 computations,
488 * but I only need a few more values so I'll just append the
489 * computations here for now */
490 /* 17. Find the number of pixels in the horizontal sync period: */
491 hsync = H_SYNC_PERCENT * total_pixels / 100;
492 hsync = (hsync + GTF_CELL_GRAN / 2) / GTF_CELL_GRAN;
493 hsync = hsync * GTF_CELL_GRAN;
494 /* 18. Find the number of pixels in horizontal front porch period */
495 hfront_porch = hblank / 2 - hsync;
496 /* 36. Find the number of lines in the odd front porch period: */
497 vodd_front_porch_lines = GTF_MIN_V_PORCH ;
498
499 /* finally, pack the results in the mode struct */
500 drm_mode->hdisplay = hdisplay_rnd;
501 drm_mode->hsync_start = hdisplay_rnd + hfront_porch;
502 drm_mode->hsync_end = drm_mode->hsync_start + hsync;
503 drm_mode->htotal = total_pixels;
504 drm_mode->vdisplay = vdisplay_rnd;
505 drm_mode->vsync_start = vdisplay_rnd + vodd_front_porch_lines;
506 drm_mode->vsync_end = drm_mode->vsync_start + V_SYNC_RQD;
507 drm_mode->vtotal = vtotal_lines;
508
509 drm_mode->clock = pixel_freq;
510
26bbdada
ZY
511 if (interlaced) {
512 drm_mode->vtotal *= 2;
513 drm_mode->flags |= DRM_MODE_FLAG_INTERLACE;
514 }
515
171fdd89 516 drm_mode_set_name(drm_mode);
c385e50c
AJ
517 if (GTF_M == 600 && GTF_2C == 80 && GTF_K == 128 && GTF_2J == 40)
518 drm_mode->flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC;
519 else
520 drm_mode->flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC;
171fdd89 521
26bbdada
ZY
522 return drm_mode;
523}
7a374350
AJ
524EXPORT_SYMBOL(drm_gtf_mode_complex);
525
526/**
527 * drm_gtf_mode - create the modeline based on GTF algorithm
528 *
529 * @dev :drm device
530 * @hdisplay :hdisplay size
531 * @vdisplay :vdisplay size
532 * @vrefresh :vrefresh rate.
533 * @interlaced :whether the interlace is supported
534 * @margins :whether the margin is supported
535 *
7a374350
AJ
536 * return the modeline based on GTF algorithm
537 *
538 * This function is to create the modeline based on the GTF algorithm.
539 * Generalized Timing Formula is derived from:
540 * GTF Spreadsheet by Andy Morrish (1/5/97)
541 * available at http://www.vesa.org
542 *
543 * And it is copied from the file of xserver/hw/xfree86/modes/xf86gtf.c.
544 * What I have done is to translate it by using integer calculation.
545 * I also refer to the function of fb_get_mode in the file of
546 * drivers/video/fbmon.c
547 *
548 * Standard GTF parameters:
549 * M = 600
550 * C = 40
551 * K = 128
552 * J = 20
553 */
554struct drm_display_mode *
555drm_gtf_mode(struct drm_device *dev, int hdisplay, int vdisplay, int vrefresh,
3ec0db81 556 bool interlaced, int margins)
7a374350 557{
3ec0db81
DV
558 return drm_gtf_mode_complex(dev, hdisplay, vdisplay, vrefresh,
559 interlaced, margins,
560 600, 40 * 2, 128, 20 * 2);
7a374350 561}
26bbdada 562EXPORT_SYMBOL(drm_gtf_mode);
7a374350 563
a38884f6 564#ifdef CONFIG_VIDEOMODE_HELPERS
ba0c2422
DV
565void drm_display_mode_from_videomode(const struct videomode *vm,
566 struct drm_display_mode *dmode)
ebc64e45
ST
567{
568 dmode->hdisplay = vm->hactive;
569 dmode->hsync_start = dmode->hdisplay + vm->hfront_porch;
570 dmode->hsync_end = dmode->hsync_start + vm->hsync_len;
571 dmode->htotal = dmode->hsync_end + vm->hback_porch;
572
573 dmode->vdisplay = vm->vactive;
574 dmode->vsync_start = dmode->vdisplay + vm->vfront_porch;
575 dmode->vsync_end = dmode->vsync_start + vm->vsync_len;
576 dmode->vtotal = dmode->vsync_end + vm->vback_porch;
577
578 dmode->clock = vm->pixelclock / 1000;
579
580 dmode->flags = 0;
06a33079 581 if (vm->flags & DISPLAY_FLAGS_HSYNC_HIGH)
ebc64e45 582 dmode->flags |= DRM_MODE_FLAG_PHSYNC;
06a33079 583 else if (vm->flags & DISPLAY_FLAGS_HSYNC_LOW)
ebc64e45 584 dmode->flags |= DRM_MODE_FLAG_NHSYNC;
06a33079 585 if (vm->flags & DISPLAY_FLAGS_VSYNC_HIGH)
ebc64e45 586 dmode->flags |= DRM_MODE_FLAG_PVSYNC;
06a33079 587 else if (vm->flags & DISPLAY_FLAGS_VSYNC_LOW)
ebc64e45 588 dmode->flags |= DRM_MODE_FLAG_NVSYNC;
06a33079 589 if (vm->flags & DISPLAY_FLAGS_INTERLACED)
ebc64e45 590 dmode->flags |= DRM_MODE_FLAG_INTERLACE;
06a33079 591 if (vm->flags & DISPLAY_FLAGS_DOUBLESCAN)
ebc64e45 592 dmode->flags |= DRM_MODE_FLAG_DBLSCAN;
328a4719
ST
593 if (vm->flags & DISPLAY_FLAGS_DOUBLECLK)
594 dmode->flags |= DRM_MODE_FLAG_DBLCLK;
ebc64e45 595 drm_mode_set_name(dmode);
ebc64e45
ST
596}
597EXPORT_SYMBOL_GPL(drm_display_mode_from_videomode);
ebc64e45 598
a38884f6 599#ifdef CONFIG_OF
edb37a95
ST
600/**
601 * of_get_drm_display_mode - get a drm_display_mode from devicetree
602 * @np: device_node with the timing specification
603 * @dmode: will be set to the return value
604 * @index: index into the list of display timings in devicetree
605 *
606 * This function is expensive and should only be used, if only one mode is to be
607 * read from DT. To get multiple modes start with of_get_display_timings and
608 * work with that instead.
609 */
610int of_get_drm_display_mode(struct device_node *np,
611 struct drm_display_mode *dmode, int index)
612{
613 struct videomode vm;
614 int ret;
615
616 ret = of_get_videomode(np, &vm, index);
617 if (ret)
618 return ret;
619
620 drm_display_mode_from_videomode(&vm, dmode);
621
622 pr_debug("%s: got %dx%d display mode from %s\n",
623 of_node_full_name(np), vm.hactive, vm.vactive, np->name);
624 drm_mode_debug_printmodeline(dmode);
625
626 return 0;
627}
628EXPORT_SYMBOL_GPL(of_get_drm_display_mode);
a38884f6
TV
629#endif /* CONFIG_OF */
630#endif /* CONFIG_VIDEOMODE_HELPERS */
edb37a95 631
f453ba04
DA
632/**
633 * drm_mode_set_name - set the name on a mode
634 * @mode: name will be set in this mode
635 *
f453ba04
DA
636 * Set the name of @mode to a standard format.
637 */
638void drm_mode_set_name(struct drm_display_mode *mode)
639{
171fdd89
AJ
640 bool interlaced = !!(mode->flags & DRM_MODE_FLAG_INTERLACE);
641
642 snprintf(mode->name, DRM_DISPLAY_MODE_LEN, "%dx%d%s",
643 mode->hdisplay, mode->vdisplay,
644 interlaced ? "i" : "");
f453ba04
DA
645}
646EXPORT_SYMBOL(drm_mode_set_name);
647
7ac96a9c
AJ
648/** drm_mode_hsync - get the hsync of a mode
649 * @mode: mode
650 *
7ac96a9c
AJ
651 * Return @modes's hsync rate in kHz, rounded to the nearest int.
652 */
b1f559ec 653int drm_mode_hsync(const struct drm_display_mode *mode)
7ac96a9c
AJ
654{
655 unsigned int calc_val;
656
657 if (mode->hsync)
658 return mode->hsync;
659
660 if (mode->htotal < 0)
661 return 0;
662
663 calc_val = (mode->clock * 1000) / mode->htotal; /* hsync in Hz */
664 calc_val += 500; /* round to 1000Hz */
665 calc_val /= 1000; /* truncate to kHz */
666
667 return calc_val;
668}
669EXPORT_SYMBOL(drm_mode_hsync);
670
f453ba04
DA
671/**
672 * drm_mode_vrefresh - get the vrefresh of a mode
673 * @mode: mode
674 *
7ac96a9c 675 * Return @mode's vrefresh rate in Hz or calculate it if necessary.
f453ba04
DA
676 *
677 * FIXME: why is this needed? shouldn't vrefresh be set already?
678 *
679 * RETURNS:
559ee21d
ZY
680 * Vertical refresh rate. It will be the result of actual value plus 0.5.
681 * If it is 70.288, it will return 70Hz.
682 * If it is 59.6, it will return 60Hz.
f453ba04 683 */
b1f559ec 684int drm_mode_vrefresh(const struct drm_display_mode *mode)
f453ba04
DA
685{
686 int refresh = 0;
687 unsigned int calc_val;
688
689 if (mode->vrefresh > 0)
690 refresh = mode->vrefresh;
691 else if (mode->htotal > 0 && mode->vtotal > 0) {
559ee21d
ZY
692 int vtotal;
693 vtotal = mode->vtotal;
f453ba04
DA
694 /* work out vrefresh the value will be x1000 */
695 calc_val = (mode->clock * 1000);
f453ba04 696 calc_val /= mode->htotal;
559ee21d 697 refresh = (calc_val + vtotal / 2) / vtotal;
f453ba04 698
f453ba04
DA
699 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
700 refresh *= 2;
701 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
702 refresh /= 2;
703 if (mode->vscan > 1)
704 refresh /= mode->vscan;
705 }
706 return refresh;
707}
708EXPORT_SYMBOL(drm_mode_vrefresh);
709
710/**
711 * drm_mode_set_crtcinfo - set CRTC modesetting parameters
712 * @p: mode
448cce25 713 * @adjust_flags: a combination of adjustment flags
f453ba04 714 *
f453ba04 715 * Setup the CRTC modesetting parameters for @p, adjusting if necessary.
448cce25
DL
716 *
717 * - The CRTC_INTERLACE_HALVE_V flag can be used to halve vertical timings of
718 * interlaced modes.
719 * - The CRTC_STEREO_DOUBLE flag can be used to compute the timings for
720 * buffers containing two eyes (only adjust the timings when needed, eg. for
721 * "frame packing" or "side by side full").
f453ba04
DA
722 */
723void drm_mode_set_crtcinfo(struct drm_display_mode *p, int adjust_flags)
724{
725 if ((p == NULL) || ((p->type & DRM_MODE_TYPE_CRTC_C) == DRM_MODE_TYPE_BUILTIN))
726 return;
727
bde2dcf7 728 p->crtc_clock = p->clock;
f453ba04
DA
729 p->crtc_hdisplay = p->hdisplay;
730 p->crtc_hsync_start = p->hsync_start;
731 p->crtc_hsync_end = p->hsync_end;
732 p->crtc_htotal = p->htotal;
733 p->crtc_hskew = p->hskew;
734 p->crtc_vdisplay = p->vdisplay;
735 p->crtc_vsync_start = p->vsync_start;
736 p->crtc_vsync_end = p->vsync_end;
737 p->crtc_vtotal = p->vtotal;
738
739 if (p->flags & DRM_MODE_FLAG_INTERLACE) {
740 if (adjust_flags & CRTC_INTERLACE_HALVE_V) {
741 p->crtc_vdisplay /= 2;
742 p->crtc_vsync_start /= 2;
743 p->crtc_vsync_end /= 2;
744 p->crtc_vtotal /= 2;
745 }
f453ba04
DA
746 }
747
748 if (p->flags & DRM_MODE_FLAG_DBLSCAN) {
749 p->crtc_vdisplay *= 2;
750 p->crtc_vsync_start *= 2;
751 p->crtc_vsync_end *= 2;
752 p->crtc_vtotal *= 2;
753 }
754
755 if (p->vscan > 1) {
756 p->crtc_vdisplay *= p->vscan;
757 p->crtc_vsync_start *= p->vscan;
758 p->crtc_vsync_end *= p->vscan;
759 p->crtc_vtotal *= p->vscan;
760 }
761
448cce25
DL
762 if (adjust_flags & CRTC_STEREO_DOUBLE) {
763 unsigned int layout = p->flags & DRM_MODE_FLAG_3D_MASK;
764
765 switch (layout) {
766 case DRM_MODE_FLAG_3D_FRAME_PACKING:
767 p->crtc_clock *= 2;
768 p->crtc_vdisplay += p->crtc_vtotal;
769 p->crtc_vsync_start += p->crtc_vtotal;
770 p->crtc_vsync_end += p->crtc_vtotal;
771 p->crtc_vtotal += p->crtc_vtotal;
772 break;
773 }
774 }
775
f453ba04
DA
776 p->crtc_vblank_start = min(p->crtc_vsync_start, p->crtc_vdisplay);
777 p->crtc_vblank_end = max(p->crtc_vsync_end, p->crtc_vtotal);
778 p->crtc_hblank_start = min(p->crtc_hsync_start, p->crtc_hdisplay);
779 p->crtc_hblank_end = max(p->crtc_hsync_end, p->crtc_htotal);
f453ba04
DA
780}
781EXPORT_SYMBOL(drm_mode_set_crtcinfo);
782
783
c3c50e8b
VS
784/**
785 * drm_mode_copy - copy the mode
786 * @dst: mode to overwrite
787 * @src: mode to copy
788 *
72e45e92
VS
789 * Copy an existing mode into another mode, preserving the object id and
790 * list head of the destination mode.
c3c50e8b
VS
791 */
792void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src)
793{
794 int id = dst->base.id;
72e45e92 795 struct list_head head = dst->head;
c3c50e8b
VS
796
797 *dst = *src;
798 dst->base.id = id;
72e45e92 799 dst->head = head;
c3c50e8b
VS
800}
801EXPORT_SYMBOL(drm_mode_copy);
802
f453ba04
DA
803/**
804 * drm_mode_duplicate - allocate and duplicate an existing mode
3ec0db81
DV
805 * @dev: drm_device to allocate the duplicated mode for
806 * @mode: mode to duplicate
f453ba04 807 *
f453ba04
DA
808 * Just allocate a new mode, copy the existing mode into it, and return
809 * a pointer to it. Used to create new instances of established modes.
810 */
811struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev,
b1f559ec 812 const struct drm_display_mode *mode)
f453ba04
DA
813{
814 struct drm_display_mode *nmode;
f453ba04
DA
815
816 nmode = drm_mode_create(dev);
817 if (!nmode)
818 return NULL;
819
c3c50e8b
VS
820 drm_mode_copy(nmode, mode);
821
f453ba04
DA
822 return nmode;
823}
824EXPORT_SYMBOL(drm_mode_duplicate);
825
826/**
827 * drm_mode_equal - test modes for equality
828 * @mode1: first mode
829 * @mode2: second mode
830 *
f453ba04
DA
831 * Check to see if @mode1 and @mode2 are equivalent.
832 *
833 * RETURNS:
834 * True if the modes are equal, false otherwise.
835 */
0b3904ab 836bool drm_mode_equal(const struct drm_display_mode *mode1, const struct drm_display_mode *mode2)
f453ba04
DA
837{
838 /* do clock check convert to PICOS so fb modes get matched
839 * the same */
840 if (mode1->clock && mode2->clock) {
841 if (KHZ2PICOS(mode1->clock) != KHZ2PICOS(mode2->clock))
842 return false;
843 } else if (mode1->clock != mode2->clock)
844 return false;
845
f2ecf2e3
DL
846 if ((mode1->flags & DRM_MODE_FLAG_3D_MASK) !=
847 (mode2->flags & DRM_MODE_FLAG_3D_MASK))
848 return false;
849
850 return drm_mode_equal_no_clocks_no_stereo(mode1, mode2);
8cc3f23c
VS
851}
852EXPORT_SYMBOL(drm_mode_equal);
853
854/**
f2ecf2e3 855 * drm_mode_equal_no_clocks_no_stereo - test modes for equality
8cc3f23c
VS
856 * @mode1: first mode
857 * @mode2: second mode
858 *
8cc3f23c 859 * Check to see if @mode1 and @mode2 are equivalent, but
f2ecf2e3 860 * don't check the pixel clocks nor the stereo layout.
8cc3f23c
VS
861 *
862 * RETURNS:
863 * True if the modes are equal, false otherwise.
864 */
f2ecf2e3
DL
865bool drm_mode_equal_no_clocks_no_stereo(const struct drm_display_mode *mode1,
866 const struct drm_display_mode *mode2)
8cc3f23c 867{
f453ba04
DA
868 if (mode1->hdisplay == mode2->hdisplay &&
869 mode1->hsync_start == mode2->hsync_start &&
870 mode1->hsync_end == mode2->hsync_end &&
871 mode1->htotal == mode2->htotal &&
872 mode1->hskew == mode2->hskew &&
873 mode1->vdisplay == mode2->vdisplay &&
874 mode1->vsync_start == mode2->vsync_start &&
875 mode1->vsync_end == mode2->vsync_end &&
876 mode1->vtotal == mode2->vtotal &&
877 mode1->vscan == mode2->vscan &&
f2ecf2e3
DL
878 (mode1->flags & ~DRM_MODE_FLAG_3D_MASK) ==
879 (mode2->flags & ~DRM_MODE_FLAG_3D_MASK))
f453ba04
DA
880 return true;
881
882 return false;
883}
f2ecf2e3 884EXPORT_SYMBOL(drm_mode_equal_no_clocks_no_stereo);
f453ba04
DA
885
886/**
887 * drm_mode_validate_size - make sure modes adhere to size constraints
888 * @dev: DRM device
889 * @mode_list: list of modes to check
890 * @maxX: maximum width
891 * @maxY: maximum height
f453ba04 892 *
f453ba04
DA
893 * The DRM device (@dev) has size and pitch limits. Here we validate the
894 * modes we probed for @dev against those limits and set their status as
895 * necessary.
896 */
897void drm_mode_validate_size(struct drm_device *dev,
898 struct list_head *mode_list,
3e70292c 899 int maxX, int maxY)
f453ba04
DA
900{
901 struct drm_display_mode *mode;
902
903 list_for_each_entry(mode, mode_list, head) {
f453ba04
DA
904 if (maxX > 0 && mode->hdisplay > maxX)
905 mode->status = MODE_VIRTUAL_X;
906
907 if (maxY > 0 && mode->vdisplay > maxY)
908 mode->status = MODE_VIRTUAL_Y;
909 }
910}
911EXPORT_SYMBOL(drm_mode_validate_size);
912
f453ba04
DA
913/**
914 * drm_mode_prune_invalid - remove invalid modes from mode list
915 * @dev: DRM device
916 * @mode_list: list of modes to check
917 * @verbose: be verbose about it
918 *
f453ba04
DA
919 * Once mode list generation is complete, a caller can use this routine to
920 * remove invalid modes from a mode list. If any of the modes have a
921 * status other than %MODE_OK, they are removed from @mode_list and freed.
922 */
923void drm_mode_prune_invalid(struct drm_device *dev,
924 struct list_head *mode_list, bool verbose)
925{
926 struct drm_display_mode *mode, *t;
927
928 list_for_each_entry_safe(mode, t, mode_list, head) {
929 if (mode->status != MODE_OK) {
930 list_del(&mode->head);
931 if (verbose) {
932 drm_mode_debug_printmodeline(mode);
f940f37f 933 DRM_DEBUG_KMS("Not using %s mode %d\n",
f0531859 934 mode->name, mode->status);
f453ba04
DA
935 }
936 drm_mode_destroy(dev, mode);
937 }
938 }
939}
940EXPORT_SYMBOL(drm_mode_prune_invalid);
941
942/**
943 * drm_mode_compare - compare modes for favorability
2c761270 944 * @priv: unused
f453ba04
DA
945 * @lh_a: list_head for first mode
946 * @lh_b: list_head for second mode
947 *
f453ba04
DA
948 * Compare two modes, given by @lh_a and @lh_b, returning a value indicating
949 * which is better.
950 *
951 * RETURNS:
952 * Negative if @lh_a is better than @lh_b, zero if they're equivalent, or
953 * positive if @lh_b is better than @lh_a.
954 */
2c761270 955static int drm_mode_compare(void *priv, struct list_head *lh_a, struct list_head *lh_b)
f453ba04
DA
956{
957 struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head);
958 struct drm_display_mode *b = list_entry(lh_b, struct drm_display_mode, head);
959 int diff;
960
961 diff = ((b->type & DRM_MODE_TYPE_PREFERRED) != 0) -
962 ((a->type & DRM_MODE_TYPE_PREFERRED) != 0);
963 if (diff)
964 return diff;
965 diff = b->hdisplay * b->vdisplay - a->hdisplay * a->vdisplay;
966 if (diff)
967 return diff;
9bc3cd56
VS
968
969 diff = b->vrefresh - a->vrefresh;
970 if (diff)
971 return diff;
972
f453ba04
DA
973 diff = b->clock - a->clock;
974 return diff;
975}
976
f453ba04
DA
977/**
978 * drm_mode_sort - sort mode list
979 * @mode_list: list to sort
980 *
f453ba04
DA
981 * Sort @mode_list by favorability, putting good modes first.
982 */
983void drm_mode_sort(struct list_head *mode_list)
984{
2c761270 985 list_sort(NULL, mode_list, drm_mode_compare);
f453ba04
DA
986}
987EXPORT_SYMBOL(drm_mode_sort);
988
989/**
990 * drm_mode_connector_list_update - update the mode list for the connector
991 * @connector: the connector to update
992 *
f453ba04
DA
993 * This moves the modes from the @connector probed_modes list
994 * to the actual mode list. It compares the probed mode against the current
995 * list and only adds different modes. All modes unverified after this point
996 * will be removed by the prune invalid modes.
997 */
998void drm_mode_connector_list_update(struct drm_connector *connector)
999{
1000 struct drm_display_mode *mode;
1001 struct drm_display_mode *pmode, *pt;
1002 int found_it;
1003
63951385
DV
1004 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex));
1005
f453ba04
DA
1006 list_for_each_entry_safe(pmode, pt, &connector->probed_modes,
1007 head) {
1008 found_it = 0;
1009 /* go through current modes checking for the new probed mode */
1010 list_for_each_entry(mode, &connector->modes, head) {
1011 if (drm_mode_equal(pmode, mode)) {
1012 found_it = 1;
1013 /* if equal delete the probed mode */
1014 mode->status = pmode->status;
38d5487d 1015 /* Merge type bits together */
abce1ec9 1016 mode->type |= pmode->type;
f453ba04
DA
1017 list_del(&pmode->head);
1018 drm_mode_destroy(connector->dev, pmode);
1019 break;
1020 }
1021 }
1022
1023 if (!found_it) {
1024 list_move_tail(&pmode->head, &connector->modes);
1025 }
1026 }
1027}
1028EXPORT_SYMBOL(drm_mode_connector_list_update);
1794d257
CW
1029
1030/**
1031 * drm_mode_parse_command_line_for_connector - parse command line for connector
3ec0db81
DV
1032 * @mode_option: per connector mode option
1033 * @connector: connector to parse line for
1034 * @mode: preallocated mode structure to fill out
1794d257
CW
1035 *
1036 * This parses the connector specific then generic command lines for
1037 * modes and options to configure the connector.
1038 *
1039 * This uses the same parameters as the fb modedb.c, except for extra
1040 * <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m][eDd]
1041 *
1042 * enable/enable Digital/disable bit at the end
1043 */
1044bool drm_mode_parse_command_line_for_connector(const char *mode_option,
1045 struct drm_connector *connector,
1046 struct drm_cmdline_mode *mode)
1047{
1048 const char *name;
1049 unsigned int namelen;
04fee895 1050 bool res_specified = false, bpp_specified = false, refresh_specified = false;
1794d257 1051 unsigned int xres = 0, yres = 0, bpp = 32, refresh = 0;
04fee895
REB
1052 bool yres_specified = false, cvt = false, rb = false;
1053 bool interlace = false, margins = false, was_digit = false;
1794d257
CW
1054 int i;
1055 enum drm_connector_force force = DRM_FORCE_UNSPECIFIED;
1056
cb3c438e 1057#ifdef CONFIG_FB
1794d257
CW
1058 if (!mode_option)
1059 mode_option = fb_mode_option;
cb3c438e 1060#endif
1794d257
CW
1061
1062 if (!mode_option) {
1063 mode->specified = false;
1064 return false;
1065 }
1066
1067 name = mode_option;
1068 namelen = strlen(name);
1069 for (i = namelen-1; i >= 0; i--) {
1070 switch (name[i]) {
1071 case '@':
1794d257 1072 if (!refresh_specified && !bpp_specified &&
04fee895 1073 !yres_specified && !cvt && !rb && was_digit) {
1794d257 1074 refresh = simple_strtol(&name[i+1], NULL, 10);
04fee895
REB
1075 refresh_specified = true;
1076 was_digit = false;
1794d257
CW
1077 } else
1078 goto done;
1079 break;
1080 case '-':
04fee895
REB
1081 if (!bpp_specified && !yres_specified && !cvt &&
1082 !rb && was_digit) {
1794d257 1083 bpp = simple_strtol(&name[i+1], NULL, 10);
04fee895
REB
1084 bpp_specified = true;
1085 was_digit = false;
1794d257
CW
1086 } else
1087 goto done;
1088 break;
1089 case 'x':
04fee895 1090 if (!yres_specified && was_digit) {
1794d257 1091 yres = simple_strtol(&name[i+1], NULL, 10);
04fee895
REB
1092 yres_specified = true;
1093 was_digit = false;
1794d257
CW
1094 } else
1095 goto done;
97fbfbf4 1096 break;
1794d257 1097 case '0' ... '9':
04fee895 1098 was_digit = true;
1794d257
CW
1099 break;
1100 case 'M':
04fee895
REB
1101 if (yres_specified || cvt || was_digit)
1102 goto done;
1103 cvt = true;
1794d257
CW
1104 break;
1105 case 'R':
04fee895
REB
1106 if (yres_specified || cvt || rb || was_digit)
1107 goto done;
1108 rb = true;
1794d257
CW
1109 break;
1110 case 'm':
04fee895
REB
1111 if (cvt || yres_specified || was_digit)
1112 goto done;
1113 margins = true;
1794d257
CW
1114 break;
1115 case 'i':
04fee895
REB
1116 if (cvt || yres_specified || was_digit)
1117 goto done;
1118 interlace = true;
1794d257
CW
1119 break;
1120 case 'e':
04fee895
REB
1121 if (yres_specified || bpp_specified || refresh_specified ||
1122 was_digit || (force != DRM_FORCE_UNSPECIFIED))
1123 goto done;
1124
1794d257
CW
1125 force = DRM_FORCE_ON;
1126 break;
1127 case 'D':
04fee895
REB
1128 if (yres_specified || bpp_specified || refresh_specified ||
1129 was_digit || (force != DRM_FORCE_UNSPECIFIED))
1130 goto done;
1131
1794d257
CW
1132 if ((connector->connector_type != DRM_MODE_CONNECTOR_DVII) &&
1133 (connector->connector_type != DRM_MODE_CONNECTOR_HDMIB))
1134 force = DRM_FORCE_ON;
1135 else
1136 force = DRM_FORCE_ON_DIGITAL;
1137 break;
1138 case 'd':
04fee895
REB
1139 if (yres_specified || bpp_specified || refresh_specified ||
1140 was_digit || (force != DRM_FORCE_UNSPECIFIED))
1141 goto done;
1142
1794d257
CW
1143 force = DRM_FORCE_OFF;
1144 break;
1145 default:
1146 goto done;
1147 }
1148 }
04fee895 1149
1794d257 1150 if (i < 0 && yres_specified) {
04fee895
REB
1151 char *ch;
1152 xres = simple_strtol(name, &ch, 10);
1153 if ((ch != NULL) && (*ch == 'x'))
1154 res_specified = true;
1155 else
1156 i = ch - name;
1157 } else if (!yres_specified && was_digit) {
1158 /* catch mode that begins with digits but has no 'x' */
1159 i = 0;
1794d257
CW
1160 }
1161done:
04fee895
REB
1162 if (i >= 0) {
1163 printk(KERN_WARNING
1164 "parse error at position %i in video mode '%s'\n",
1165 i, name);
1166 mode->specified = false;
1167 return false;
1168 }
1169
1794d257
CW
1170 if (res_specified) {
1171 mode->specified = true;
1172 mode->xres = xres;
1173 mode->yres = yres;
1174 }
1175
1176 if (refresh_specified) {
1177 mode->refresh_specified = true;
1178 mode->refresh = refresh;
1179 }
1180
1181 if (bpp_specified) {
1182 mode->bpp_specified = true;
1183 mode->bpp = bpp;
1184 }
04fee895
REB
1185 mode->rb = rb;
1186 mode->cvt = cvt;
1187 mode->interlace = interlace;
1188 mode->margins = margins;
1794d257
CW
1189 mode->force = force;
1190
1191 return true;
1192}
1193EXPORT_SYMBOL(drm_mode_parse_command_line_for_connector);
1194
1195struct drm_display_mode *
1196drm_mode_create_from_cmdline_mode(struct drm_device *dev,
1197 struct drm_cmdline_mode *cmd)
1198{
1199 struct drm_display_mode *mode;
1200
1201 if (cmd->cvt)
1202 mode = drm_cvt_mode(dev,
1203 cmd->xres, cmd->yres,
1204 cmd->refresh_specified ? cmd->refresh : 60,
1205 cmd->rb, cmd->interlace,
1206 cmd->margins);
1207 else
1208 mode = drm_gtf_mode(dev,
1209 cmd->xres, cmd->yres,
1210 cmd->refresh_specified ? cmd->refresh : 60,
1211 cmd->interlace,
1212 cmd->margins);
1213 if (!mode)
1214 return NULL;
1215
1216 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
1217 return mode;
1218}
1219EXPORT_SYMBOL(drm_mode_create_from_cmdline_mode);