1 /* 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> 6 * Copyright 2005-2006 Luc Verhaegen 7 * Copyright (c) 2001, Andy Ritger aritger@nvidia.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 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/ctype.h> 34 #include <linux/list.h> 35 #include <linux/list_sort.h> 36 #include <linux/export.h> 37 #include <linux/fb.h> 38 39 #include <video/of_display_timing.h> 40 #include <video/of_videomode.h> 41 #include <video/videomode.h> 42 43 #include <drm/drm_crtc.h> 44 #include <drm/drm_device.h> 45 #include <drm/drm_edid.h> 46 #include <drm/drm_modes.h> 47 #include <drm/drm_print.h> 48 49 #include "drm_crtc_internal.h" 50 51 /** 52 * drm_mode_debug_printmodeline - print a mode to dmesg 53 * @mode: mode to print 54 * 55 * Describe @mode using DRM_DEBUG. 56 */ 57 void drm_mode_debug_printmodeline(const struct drm_display_mode *mode) 58 { 59 DRM_DEBUG_KMS("Modeline " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); 60 } 61 EXPORT_SYMBOL(drm_mode_debug_printmodeline); 62 63 /** 64 * drm_mode_create - create a new display mode 65 * @dev: DRM device 66 * 67 * Create a new, cleared drm_display_mode with kzalloc, allocate an ID for it 68 * and return it. 69 * 70 * Returns: 71 * Pointer to new mode on success, NULL on error. 72 */ 73 struct drm_display_mode *drm_mode_create(struct drm_device *dev) 74 { 75 struct drm_display_mode *nmode; 76 77 nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL); 78 if (!nmode) 79 return NULL; 80 81 return nmode; 82 } 83 EXPORT_SYMBOL(drm_mode_create); 84 85 /** 86 * drm_mode_destroy - remove a mode 87 * @dev: DRM device 88 * @mode: mode to remove 89 * 90 * Release @mode's unique ID, then free it @mode structure itself using kfree. 91 */ 92 void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode) 93 { 94 if (!mode) 95 return; 96 97 kfree(mode); 98 } 99 EXPORT_SYMBOL(drm_mode_destroy); 100 101 /** 102 * drm_mode_probed_add - add a mode to a connector's probed_mode list 103 * @connector: connector the new mode 104 * @mode: mode data 105 * 106 * Add @mode to @connector's probed_mode list for later use. This list should 107 * then in a second step get filtered and all the modes actually supported by 108 * the hardware moved to the @connector's modes list. 109 */ 110 void drm_mode_probed_add(struct drm_connector *connector, 111 struct drm_display_mode *mode) 112 { 113 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex)); 114 115 list_add_tail(&mode->head, &connector->probed_modes); 116 } 117 EXPORT_SYMBOL(drm_mode_probed_add); 118 119 enum drm_mode_analog { 120 DRM_MODE_ANALOG_NTSC, /* 525 lines, 60Hz */ 121 DRM_MODE_ANALOG_PAL, /* 625 lines, 50Hz */ 122 }; 123 124 /* 125 * The timings come from: 126 * - https://web.archive.org/web/20220406232708/http://www.kolumbus.fi/pami1/video/pal_ntsc.html 127 * - https://web.archive.org/web/20220406124914/http://martin.hinner.info/vga/pal.html 128 * - https://web.archive.org/web/20220609202433/http://www.batsocks.co.uk/readme/video_timing.htm 129 */ 130 #define NTSC_LINE_DURATION_NS 63556U 131 #define NTSC_LINES_NUMBER 525 132 133 #define NTSC_HBLK_DURATION_TYP_NS 10900U 134 #define NTSC_HBLK_DURATION_MIN_NS (NTSC_HBLK_DURATION_TYP_NS - 200) 135 #define NTSC_HBLK_DURATION_MAX_NS (NTSC_HBLK_DURATION_TYP_NS + 200) 136 137 #define NTSC_HACT_DURATION_TYP_NS (NTSC_LINE_DURATION_NS - NTSC_HBLK_DURATION_TYP_NS) 138 #define NTSC_HACT_DURATION_MIN_NS (NTSC_LINE_DURATION_NS - NTSC_HBLK_DURATION_MAX_NS) 139 #define NTSC_HACT_DURATION_MAX_NS (NTSC_LINE_DURATION_NS - NTSC_HBLK_DURATION_MIN_NS) 140 141 #define NTSC_HFP_DURATION_TYP_NS 1500 142 #define NTSC_HFP_DURATION_MIN_NS 1270 143 #define NTSC_HFP_DURATION_MAX_NS 2220 144 145 #define NTSC_HSLEN_DURATION_TYP_NS 4700 146 #define NTSC_HSLEN_DURATION_MIN_NS (NTSC_HSLEN_DURATION_TYP_NS - 100) 147 #define NTSC_HSLEN_DURATION_MAX_NS (NTSC_HSLEN_DURATION_TYP_NS + 100) 148 149 #define NTSC_HBP_DURATION_TYP_NS 4700 150 151 /* 152 * I couldn't find the actual tolerance for the back porch, so let's 153 * just reuse the sync length ones. 154 */ 155 #define NTSC_HBP_DURATION_MIN_NS (NTSC_HBP_DURATION_TYP_NS - 100) 156 #define NTSC_HBP_DURATION_MAX_NS (NTSC_HBP_DURATION_TYP_NS + 100) 157 158 #define PAL_LINE_DURATION_NS 64000U 159 #define PAL_LINES_NUMBER 625 160 161 #define PAL_HACT_DURATION_TYP_NS 51950U 162 #define PAL_HACT_DURATION_MIN_NS (PAL_HACT_DURATION_TYP_NS - 100) 163 #define PAL_HACT_DURATION_MAX_NS (PAL_HACT_DURATION_TYP_NS + 400) 164 165 #define PAL_HBLK_DURATION_TYP_NS (PAL_LINE_DURATION_NS - PAL_HACT_DURATION_TYP_NS) 166 #define PAL_HBLK_DURATION_MIN_NS (PAL_LINE_DURATION_NS - PAL_HACT_DURATION_MAX_NS) 167 #define PAL_HBLK_DURATION_MAX_NS (PAL_LINE_DURATION_NS - PAL_HACT_DURATION_MIN_NS) 168 169 #define PAL_HFP_DURATION_TYP_NS 1650 170 #define PAL_HFP_DURATION_MIN_NS (PAL_HFP_DURATION_TYP_NS - 100) 171 #define PAL_HFP_DURATION_MAX_NS (PAL_HFP_DURATION_TYP_NS + 400) 172 173 #define PAL_HSLEN_DURATION_TYP_NS 4700 174 #define PAL_HSLEN_DURATION_MIN_NS (PAL_HSLEN_DURATION_TYP_NS - 200) 175 #define PAL_HSLEN_DURATION_MAX_NS (PAL_HSLEN_DURATION_TYP_NS + 200) 176 177 #define PAL_HBP_DURATION_TYP_NS 5700 178 #define PAL_HBP_DURATION_MIN_NS (PAL_HBP_DURATION_TYP_NS - 200) 179 #define PAL_HBP_DURATION_MAX_NS (PAL_HBP_DURATION_TYP_NS + 200) 180 181 struct analog_param_field { 182 unsigned int even, odd; 183 }; 184 185 #define PARAM_FIELD(_odd, _even) \ 186 { .even = _even, .odd = _odd } 187 188 struct analog_param_range { 189 unsigned int min, typ, max; 190 }; 191 192 #define PARAM_RANGE(_min, _typ, _max) \ 193 { .min = _min, .typ = _typ, .max = _max } 194 195 struct analog_parameters { 196 unsigned int num_lines; 197 unsigned int line_duration_ns; 198 199 struct analog_param_range hact_ns; 200 struct analog_param_range hfp_ns; 201 struct analog_param_range hslen_ns; 202 struct analog_param_range hbp_ns; 203 struct analog_param_range hblk_ns; 204 205 unsigned int bt601_hfp; 206 207 struct analog_param_field vfp_lines; 208 struct analog_param_field vslen_lines; 209 struct analog_param_field vbp_lines; 210 }; 211 212 #define TV_MODE_PARAMETER(_mode, _lines, _line_dur, _hact, _hfp, \ 213 _hslen, _hbp, _hblk, _bt601_hfp, _vfp, \ 214 _vslen, _vbp) \ 215 [_mode] = { \ 216 .num_lines = _lines, \ 217 .line_duration_ns = _line_dur, \ 218 .hact_ns = _hact, \ 219 .hfp_ns = _hfp, \ 220 .hslen_ns = _hslen, \ 221 .hbp_ns = _hbp, \ 222 .hblk_ns = _hblk, \ 223 .bt601_hfp = _bt601_hfp, \ 224 .vfp_lines = _vfp, \ 225 .vslen_lines = _vslen, \ 226 .vbp_lines = _vbp, \ 227 } 228 229 static const struct analog_parameters tv_modes_parameters[] = { 230 TV_MODE_PARAMETER(DRM_MODE_ANALOG_NTSC, 231 NTSC_LINES_NUMBER, 232 NTSC_LINE_DURATION_NS, 233 PARAM_RANGE(NTSC_HACT_DURATION_MIN_NS, 234 NTSC_HACT_DURATION_TYP_NS, 235 NTSC_HACT_DURATION_MAX_NS), 236 PARAM_RANGE(NTSC_HFP_DURATION_MIN_NS, 237 NTSC_HFP_DURATION_TYP_NS, 238 NTSC_HFP_DURATION_MAX_NS), 239 PARAM_RANGE(NTSC_HSLEN_DURATION_MIN_NS, 240 NTSC_HSLEN_DURATION_TYP_NS, 241 NTSC_HSLEN_DURATION_MAX_NS), 242 PARAM_RANGE(NTSC_HBP_DURATION_MIN_NS, 243 NTSC_HBP_DURATION_TYP_NS, 244 NTSC_HBP_DURATION_MAX_NS), 245 PARAM_RANGE(NTSC_HBLK_DURATION_MIN_NS, 246 NTSC_HBLK_DURATION_TYP_NS, 247 NTSC_HBLK_DURATION_MAX_NS), 248 16, 249 PARAM_FIELD(3, 3), 250 PARAM_FIELD(3, 3), 251 PARAM_FIELD(16, 17)), 252 TV_MODE_PARAMETER(DRM_MODE_ANALOG_PAL, 253 PAL_LINES_NUMBER, 254 PAL_LINE_DURATION_NS, 255 PARAM_RANGE(PAL_HACT_DURATION_MIN_NS, 256 PAL_HACT_DURATION_TYP_NS, 257 PAL_HACT_DURATION_MAX_NS), 258 PARAM_RANGE(PAL_HFP_DURATION_MIN_NS, 259 PAL_HFP_DURATION_TYP_NS, 260 PAL_HFP_DURATION_MAX_NS), 261 PARAM_RANGE(PAL_HSLEN_DURATION_MIN_NS, 262 PAL_HSLEN_DURATION_TYP_NS, 263 PAL_HSLEN_DURATION_MAX_NS), 264 PARAM_RANGE(PAL_HBP_DURATION_MIN_NS, 265 PAL_HBP_DURATION_TYP_NS, 266 PAL_HBP_DURATION_MAX_NS), 267 PARAM_RANGE(PAL_HBLK_DURATION_MIN_NS, 268 PAL_HBLK_DURATION_TYP_NS, 269 PAL_HBLK_DURATION_MAX_NS), 270 12, 271 272 /* 273 * The front porch is actually 6 short sync 274 * pulses for the even field, and 5 for the 275 * odd field. Each sync takes half a life so 276 * the odd field front porch is shorter by 277 * half a line. 278 * 279 * In progressive, we're supposed to use 6 280 * pulses, so we're fine there 281 */ 282 PARAM_FIELD(3, 2), 283 284 /* 285 * The vsync length is 5 long sync pulses, 286 * each field taking half a line. We're 287 * shorter for both fields by half a line. 288 * 289 * In progressive, we're supposed to use 5 290 * pulses, so we're off by half 291 * a line. 292 * 293 * In interlace, we're now off by half a line 294 * for the even field and one line for the odd 295 * field. 296 */ 297 PARAM_FIELD(3, 3), 298 299 /* 300 * The back porch starts with post-equalizing 301 * pulses, consisting in 5 short sync pulses 302 * for the even field, 4 for the odd field. In 303 * progressive, it's 5 short syncs. 304 * 305 * In progressive, we thus have 2.5 lines, 306 * plus the 0.5 line we were missing 307 * previously, so we should use 3 lines. 308 * 309 * In interlace, the even field is in the 310 * exact same case than progressive. For the 311 * odd field, we should be using 2 lines but 312 * we're one line short, so we'll make up for 313 * it here by using 3. 314 * 315 * The entire blanking area is supposed to 316 * take 25 lines, so we also need to account 317 * for the rest of the blanking area that 318 * can't be in either the front porch or sync 319 * period. 320 */ 321 PARAM_FIELD(19, 20)), 322 }; 323 324 static int fill_analog_mode(struct drm_device *dev, 325 struct drm_display_mode *mode, 326 const struct analog_parameters *params, 327 unsigned long pixel_clock_hz, 328 unsigned int hactive, 329 unsigned int vactive, 330 bool interlace) 331 { 332 unsigned long pixel_duration_ns = NSEC_PER_SEC / pixel_clock_hz; 333 unsigned int htotal, vtotal; 334 unsigned int max_hact, hact_duration_ns; 335 unsigned int hblk, hblk_duration_ns; 336 unsigned int hfp, hfp_duration_ns; 337 unsigned int hslen, hslen_duration_ns; 338 unsigned int hbp, hbp_duration_ns; 339 unsigned int porches, porches_duration_ns; 340 unsigned int vfp, vfp_min; 341 unsigned int vbp, vbp_min; 342 unsigned int vslen; 343 bool bt601 = false; 344 int porches_rem; 345 u64 result; 346 347 drm_dbg_kms(dev, 348 "Generating a %ux%u%c, %u-line mode with a %lu kHz clock\n", 349 hactive, vactive, 350 interlace ? 'i' : 'p', 351 params->num_lines, 352 pixel_clock_hz / 1000); 353 354 max_hact = params->hact_ns.max / pixel_duration_ns; 355 if (pixel_clock_hz == 13500000 && hactive > max_hact && hactive <= 720) { 356 drm_dbg_kms(dev, "Trying to generate a BT.601 mode. Disabling checks.\n"); 357 bt601 = true; 358 } 359 360 /* 361 * Our pixel duration is going to be round down by the division, 362 * so rounding up is probably going to introduce even more 363 * deviation. 364 */ 365 result = (u64)params->line_duration_ns * pixel_clock_hz; 366 do_div(result, NSEC_PER_SEC); 367 htotal = result; 368 369 drm_dbg_kms(dev, "Total Horizontal Number of Pixels: %u\n", htotal); 370 371 hact_duration_ns = hactive * pixel_duration_ns; 372 if (!bt601 && 373 (hact_duration_ns < params->hact_ns.min || 374 hact_duration_ns > params->hact_ns.max)) { 375 DRM_ERROR("Invalid horizontal active area duration: %uns (min: %u, max %u)\n", 376 hact_duration_ns, params->hact_ns.min, params->hact_ns.max); 377 return -EINVAL; 378 } 379 380 hblk = htotal - hactive; 381 drm_dbg_kms(dev, "Horizontal Blanking Period: %u\n", hblk); 382 383 hblk_duration_ns = hblk * pixel_duration_ns; 384 if (!bt601 && 385 (hblk_duration_ns < params->hblk_ns.min || 386 hblk_duration_ns > params->hblk_ns.max)) { 387 DRM_ERROR("Invalid horizontal blanking duration: %uns (min: %u, max %u)\n", 388 hblk_duration_ns, params->hblk_ns.min, params->hblk_ns.max); 389 return -EINVAL; 390 } 391 392 hslen = DIV_ROUND_UP(params->hslen_ns.typ, pixel_duration_ns); 393 drm_dbg_kms(dev, "Horizontal Sync Period: %u\n", hslen); 394 395 hslen_duration_ns = hslen * pixel_duration_ns; 396 if (!bt601 && 397 (hslen_duration_ns < params->hslen_ns.min || 398 hslen_duration_ns > params->hslen_ns.max)) { 399 DRM_ERROR("Invalid horizontal sync duration: %uns (min: %u, max %u)\n", 400 hslen_duration_ns, params->hslen_ns.min, params->hslen_ns.max); 401 return -EINVAL; 402 } 403 404 porches = hblk - hslen; 405 drm_dbg_kms(dev, "Remaining horizontal pixels for both porches: %u\n", porches); 406 407 porches_duration_ns = porches * pixel_duration_ns; 408 if (!bt601 && 409 (porches_duration_ns > (params->hfp_ns.max + params->hbp_ns.max) || 410 porches_duration_ns < (params->hfp_ns.min + params->hbp_ns.min))) { 411 DRM_ERROR("Invalid horizontal porches duration: %uns\n", porches_duration_ns); 412 return -EINVAL; 413 } 414 415 if (bt601) { 416 hfp = params->bt601_hfp; 417 } else { 418 unsigned int hfp_min = DIV_ROUND_UP(params->hfp_ns.min, 419 pixel_duration_ns); 420 unsigned int hbp_min = DIV_ROUND_UP(params->hbp_ns.min, 421 pixel_duration_ns); 422 int porches_rem = porches - hfp_min - hbp_min; 423 424 hfp = hfp_min + DIV_ROUND_UP(porches_rem, 2); 425 } 426 427 drm_dbg_kms(dev, "Horizontal Front Porch: %u\n", hfp); 428 429 hfp_duration_ns = hfp * pixel_duration_ns; 430 if (!bt601 && 431 (hfp_duration_ns < params->hfp_ns.min || 432 hfp_duration_ns > params->hfp_ns.max)) { 433 DRM_ERROR("Invalid horizontal front porch duration: %uns (min: %u, max %u)\n", 434 hfp_duration_ns, params->hfp_ns.min, params->hfp_ns.max); 435 return -EINVAL; 436 } 437 438 hbp = porches - hfp; 439 drm_dbg_kms(dev, "Horizontal Back Porch: %u\n", hbp); 440 441 hbp_duration_ns = hbp * pixel_duration_ns; 442 if (!bt601 && 443 (hbp_duration_ns < params->hbp_ns.min || 444 hbp_duration_ns > params->hbp_ns.max)) { 445 DRM_ERROR("Invalid horizontal back porch duration: %uns (min: %u, max %u)\n", 446 hbp_duration_ns, params->hbp_ns.min, params->hbp_ns.max); 447 return -EINVAL; 448 } 449 450 if (htotal != (hactive + hfp + hslen + hbp)) 451 return -EINVAL; 452 453 mode->clock = pixel_clock_hz / 1000; 454 mode->hdisplay = hactive; 455 mode->hsync_start = mode->hdisplay + hfp; 456 mode->hsync_end = mode->hsync_start + hslen; 457 mode->htotal = mode->hsync_end + hbp; 458 459 if (interlace) { 460 vfp_min = params->vfp_lines.even + params->vfp_lines.odd; 461 vbp_min = params->vbp_lines.even + params->vbp_lines.odd; 462 vslen = params->vslen_lines.even + params->vslen_lines.odd; 463 } else { 464 /* 465 * By convention, NTSC (aka 525/60) systems start with 466 * the even field, but PAL (aka 625/50) systems start 467 * with the odd one. 468 * 469 * PAL systems also have asymmetric timings between the 470 * even and odd field, while NTSC is symmetric. 471 * 472 * Moreover, if we want to create a progressive mode for 473 * PAL, we need to use the odd field timings. 474 * 475 * Since odd == even for NTSC, we can just use the odd 476 * one all the time to simplify the code a bit. 477 */ 478 vfp_min = params->vfp_lines.odd; 479 vbp_min = params->vbp_lines.odd; 480 vslen = params->vslen_lines.odd; 481 } 482 483 drm_dbg_kms(dev, "Vertical Sync Period: %u\n", vslen); 484 485 porches = params->num_lines - vactive - vslen; 486 drm_dbg_kms(dev, "Remaining vertical pixels for both porches: %u\n", porches); 487 488 porches_rem = porches - vfp_min - vbp_min; 489 vfp = vfp_min + (porches_rem / 2); 490 drm_dbg_kms(dev, "Vertical Front Porch: %u\n", vfp); 491 492 vbp = porches - vfp; 493 drm_dbg_kms(dev, "Vertical Back Porch: %u\n", vbp); 494 495 vtotal = vactive + vfp + vslen + vbp; 496 if (params->num_lines != vtotal) { 497 DRM_ERROR("Invalid vertical total: %upx (expected %upx)\n", 498 vtotal, params->num_lines); 499 return -EINVAL; 500 } 501 502 mode->vdisplay = vactive; 503 mode->vsync_start = mode->vdisplay + vfp; 504 mode->vsync_end = mode->vsync_start + vslen; 505 mode->vtotal = mode->vsync_end + vbp; 506 507 if (mode->vtotal != params->num_lines) 508 return -EINVAL; 509 510 mode->type = DRM_MODE_TYPE_DRIVER; 511 mode->flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC; 512 if (interlace) 513 mode->flags |= DRM_MODE_FLAG_INTERLACE; 514 515 drm_mode_set_name(mode); 516 517 drm_dbg_kms(dev, "Generated mode " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); 518 519 return 0; 520 } 521 522 /** 523 * drm_analog_tv_mode - create a display mode for an analog TV 524 * @dev: drm device 525 * @tv_mode: TV Mode standard to create a mode for. See DRM_MODE_TV_MODE_*. 526 * @pixel_clock_hz: Pixel Clock Frequency, in Hertz 527 * @hdisplay: hdisplay size 528 * @vdisplay: vdisplay size 529 * @interlace: whether to compute an interlaced mode 530 * 531 * This function creates a struct drm_display_mode instance suited for 532 * an analog TV output, for one of the usual analog TV mode. 533 * 534 * Note that @hdisplay is larger than the usual constraints for the PAL 535 * and NTSC timings, and we'll choose to ignore most timings constraints 536 * to reach those resolutions. 537 * 538 * Returns: 539 * 540 * A pointer to the mode, allocated with drm_mode_create(). Returns NULL 541 * on error. 542 */ 543 struct drm_display_mode *drm_analog_tv_mode(struct drm_device *dev, 544 enum drm_connector_tv_mode tv_mode, 545 unsigned long pixel_clock_hz, 546 unsigned int hdisplay, 547 unsigned int vdisplay, 548 bool interlace) 549 { 550 struct drm_display_mode *mode; 551 enum drm_mode_analog analog; 552 int ret; 553 554 switch (tv_mode) { 555 case DRM_MODE_TV_MODE_NTSC: 556 fallthrough; 557 case DRM_MODE_TV_MODE_NTSC_443: 558 fallthrough; 559 case DRM_MODE_TV_MODE_NTSC_J: 560 fallthrough; 561 case DRM_MODE_TV_MODE_PAL_M: 562 analog = DRM_MODE_ANALOG_NTSC; 563 break; 564 565 case DRM_MODE_TV_MODE_PAL: 566 fallthrough; 567 case DRM_MODE_TV_MODE_PAL_N: 568 fallthrough; 569 case DRM_MODE_TV_MODE_SECAM: 570 analog = DRM_MODE_ANALOG_PAL; 571 break; 572 573 default: 574 return NULL; 575 } 576 577 mode = drm_mode_create(dev); 578 if (!mode) 579 return NULL; 580 581 ret = fill_analog_mode(dev, mode, 582 &tv_modes_parameters[analog], 583 pixel_clock_hz, hdisplay, vdisplay, interlace); 584 if (ret) 585 goto err_free_mode; 586 587 return mode; 588 589 err_free_mode: 590 drm_mode_destroy(dev, mode); 591 return NULL; 592 } 593 EXPORT_SYMBOL(drm_analog_tv_mode); 594 595 /** 596 * drm_cvt_mode -create a modeline based on the CVT algorithm 597 * @dev: drm device 598 * @hdisplay: hdisplay size 599 * @vdisplay: vdisplay size 600 * @vrefresh: vrefresh rate 601 * @reduced: whether to use reduced blanking 602 * @interlaced: whether to compute an interlaced mode 603 * @margins: whether to add margins (borders) 604 * 605 * This function is called to generate the modeline based on CVT algorithm 606 * according to the hdisplay, vdisplay, vrefresh. 607 * It is based from the VESA(TM) Coordinated Video Timing Generator by 608 * Graham Loveridge April 9, 2003 available at 609 * http://www.elo.utfsm.cl/~elo212/docs/CVTd6r1.xls 610 * 611 * And it is copied from xf86CVTmode in xserver/hw/xfree86/modes/xf86cvt.c. 612 * What I have done is to translate it by using integer calculation. 613 * 614 * Returns: 615 * The modeline based on the CVT algorithm stored in a drm_display_mode object. 616 * The display mode object is allocated with drm_mode_create(). Returns NULL 617 * when no mode could be allocated. 618 */ 619 struct drm_display_mode *drm_cvt_mode(struct drm_device *dev, int hdisplay, 620 int vdisplay, int vrefresh, 621 bool reduced, bool interlaced, bool margins) 622 { 623 #define HV_FACTOR 1000 624 /* 1) top/bottom margin size (% of height) - default: 1.8, */ 625 #define CVT_MARGIN_PERCENTAGE 18 626 /* 2) character cell horizontal granularity (pixels) - default 8 */ 627 #define CVT_H_GRANULARITY 8 628 /* 3) Minimum vertical porch (lines) - default 3 */ 629 #define CVT_MIN_V_PORCH 3 630 /* 4) Minimum number of vertical back porch lines - default 6 */ 631 #define CVT_MIN_V_BPORCH 6 632 /* Pixel Clock step (kHz) */ 633 #define CVT_CLOCK_STEP 250 634 struct drm_display_mode *drm_mode; 635 unsigned int vfieldrate, hperiod; 636 int hdisplay_rnd, hmargin, vdisplay_rnd, vmargin, vsync; 637 int interlace; 638 u64 tmp; 639 640 if (!hdisplay || !vdisplay) 641 return NULL; 642 643 /* allocate the drm_display_mode structure. If failure, we will 644 * return directly 645 */ 646 drm_mode = drm_mode_create(dev); 647 if (!drm_mode) 648 return NULL; 649 650 /* the CVT default refresh rate is 60Hz */ 651 if (!vrefresh) 652 vrefresh = 60; 653 654 /* the required field fresh rate */ 655 if (interlaced) 656 vfieldrate = vrefresh * 2; 657 else 658 vfieldrate = vrefresh; 659 660 /* horizontal pixels */ 661 hdisplay_rnd = hdisplay - (hdisplay % CVT_H_GRANULARITY); 662 663 /* determine the left&right borders */ 664 hmargin = 0; 665 if (margins) { 666 hmargin = hdisplay_rnd * CVT_MARGIN_PERCENTAGE / 1000; 667 hmargin -= hmargin % CVT_H_GRANULARITY; 668 } 669 /* find the total active pixels */ 670 drm_mode->hdisplay = hdisplay_rnd + 2 * hmargin; 671 672 /* find the number of lines per field */ 673 if (interlaced) 674 vdisplay_rnd = vdisplay / 2; 675 else 676 vdisplay_rnd = vdisplay; 677 678 /* find the top & bottom borders */ 679 vmargin = 0; 680 if (margins) 681 vmargin = vdisplay_rnd * CVT_MARGIN_PERCENTAGE / 1000; 682 683 drm_mode->vdisplay = vdisplay + 2 * vmargin; 684 685 /* Interlaced */ 686 if (interlaced) 687 interlace = 1; 688 else 689 interlace = 0; 690 691 /* Determine VSync Width from aspect ratio */ 692 if (!(vdisplay % 3) && ((vdisplay * 4 / 3) == hdisplay)) 693 vsync = 4; 694 else if (!(vdisplay % 9) && ((vdisplay * 16 / 9) == hdisplay)) 695 vsync = 5; 696 else if (!(vdisplay % 10) && ((vdisplay * 16 / 10) == hdisplay)) 697 vsync = 6; 698 else if (!(vdisplay % 4) && ((vdisplay * 5 / 4) == hdisplay)) 699 vsync = 7; 700 else if (!(vdisplay % 9) && ((vdisplay * 15 / 9) == hdisplay)) 701 vsync = 7; 702 else /* custom */ 703 vsync = 10; 704 705 if (!reduced) { 706 /* simplify the GTF calculation */ 707 /* 4) Minimum time of vertical sync + back porch interval (µs) 708 * default 550.0 709 */ 710 int tmp1, tmp2; 711 #define CVT_MIN_VSYNC_BP 550 712 /* 3) Nominal HSync width (% of line period) - default 8 */ 713 #define CVT_HSYNC_PERCENTAGE 8 714 unsigned int hblank_percentage; 715 int vsyncandback_porch, __maybe_unused vback_porch, hblank; 716 717 /* estimated the horizontal period */ 718 tmp1 = HV_FACTOR * 1000000 - 719 CVT_MIN_VSYNC_BP * HV_FACTOR * vfieldrate; 720 tmp2 = (vdisplay_rnd + 2 * vmargin + CVT_MIN_V_PORCH) * 2 + 721 interlace; 722 hperiod = tmp1 * 2 / (tmp2 * vfieldrate); 723 724 tmp1 = CVT_MIN_VSYNC_BP * HV_FACTOR / hperiod + 1; 725 /* 9. Find number of lines in sync + backporch */ 726 if (tmp1 < (vsync + CVT_MIN_V_PORCH)) 727 vsyncandback_porch = vsync + CVT_MIN_V_PORCH; 728 else 729 vsyncandback_porch = tmp1; 730 /* 10. Find number of lines in back porch */ 731 vback_porch = vsyncandback_porch - vsync; 732 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin + 733 vsyncandback_porch + CVT_MIN_V_PORCH; 734 /* 5) Definition of Horizontal blanking time limitation */ 735 /* Gradient (%/kHz) - default 600 */ 736 #define CVT_M_FACTOR 600 737 /* Offset (%) - default 40 */ 738 #define CVT_C_FACTOR 40 739 /* Blanking time scaling factor - default 128 */ 740 #define CVT_K_FACTOR 128 741 /* Scaling factor weighting - default 20 */ 742 #define CVT_J_FACTOR 20 743 #define CVT_M_PRIME (CVT_M_FACTOR * CVT_K_FACTOR / 256) 744 #define CVT_C_PRIME ((CVT_C_FACTOR - CVT_J_FACTOR) * CVT_K_FACTOR / 256 + \ 745 CVT_J_FACTOR) 746 /* 12. Find ideal blanking duty cycle from formula */ 747 hblank_percentage = CVT_C_PRIME * HV_FACTOR - CVT_M_PRIME * 748 hperiod / 1000; 749 /* 13. Blanking time */ 750 if (hblank_percentage < 20 * HV_FACTOR) 751 hblank_percentage = 20 * HV_FACTOR; 752 hblank = drm_mode->hdisplay * hblank_percentage / 753 (100 * HV_FACTOR - hblank_percentage); 754 hblank -= hblank % (2 * CVT_H_GRANULARITY); 755 /* 14. find the total pixels per line */ 756 drm_mode->htotal = drm_mode->hdisplay + hblank; 757 drm_mode->hsync_end = drm_mode->hdisplay + hblank / 2; 758 drm_mode->hsync_start = drm_mode->hsync_end - 759 (drm_mode->htotal * CVT_HSYNC_PERCENTAGE) / 100; 760 drm_mode->hsync_start += CVT_H_GRANULARITY - 761 drm_mode->hsync_start % CVT_H_GRANULARITY; 762 /* fill the Vsync values */ 763 drm_mode->vsync_start = drm_mode->vdisplay + CVT_MIN_V_PORCH; 764 drm_mode->vsync_end = drm_mode->vsync_start + vsync; 765 } else { 766 /* Reduced blanking */ 767 /* Minimum vertical blanking interval time (µs)- default 460 */ 768 #define CVT_RB_MIN_VBLANK 460 769 /* Fixed number of clocks for horizontal sync */ 770 #define CVT_RB_H_SYNC 32 771 /* Fixed number of clocks for horizontal blanking */ 772 #define CVT_RB_H_BLANK 160 773 /* Fixed number of lines for vertical front porch - default 3*/ 774 #define CVT_RB_VFPORCH 3 775 int vbilines; 776 int tmp1, tmp2; 777 /* 8. Estimate Horizontal period. */ 778 tmp1 = HV_FACTOR * 1000000 - 779 CVT_RB_MIN_VBLANK * HV_FACTOR * vfieldrate; 780 tmp2 = vdisplay_rnd + 2 * vmargin; 781 hperiod = tmp1 / (tmp2 * vfieldrate); 782 /* 9. Find number of lines in vertical blanking */ 783 vbilines = CVT_RB_MIN_VBLANK * HV_FACTOR / hperiod + 1; 784 /* 10. Check if vertical blanking is sufficient */ 785 if (vbilines < (CVT_RB_VFPORCH + vsync + CVT_MIN_V_BPORCH)) 786 vbilines = CVT_RB_VFPORCH + vsync + CVT_MIN_V_BPORCH; 787 /* 11. Find total number of lines in vertical field */ 788 drm_mode->vtotal = vdisplay_rnd + 2 * vmargin + vbilines; 789 /* 12. Find total number of pixels in a line */ 790 drm_mode->htotal = drm_mode->hdisplay + CVT_RB_H_BLANK; 791 /* Fill in HSync values */ 792 drm_mode->hsync_end = drm_mode->hdisplay + CVT_RB_H_BLANK / 2; 793 drm_mode->hsync_start = drm_mode->hsync_end - CVT_RB_H_SYNC; 794 /* Fill in VSync values */ 795 drm_mode->vsync_start = drm_mode->vdisplay + CVT_RB_VFPORCH; 796 drm_mode->vsync_end = drm_mode->vsync_start + vsync; 797 } 798 /* 15/13. Find pixel clock frequency (kHz for xf86) */ 799 tmp = drm_mode->htotal; /* perform intermediate calcs in u64 */ 800 tmp *= HV_FACTOR * 1000; 801 do_div(tmp, hperiod); 802 tmp -= drm_mode->clock % CVT_CLOCK_STEP; 803 drm_mode->clock = tmp; 804 /* 18/16. Find actual vertical frame frequency */ 805 /* ignore - just set the mode flag for interlaced */ 806 if (interlaced) { 807 drm_mode->vtotal *= 2; 808 drm_mode->flags |= DRM_MODE_FLAG_INTERLACE; 809 } 810 /* Fill the mode line name */ 811 drm_mode_set_name(drm_mode); 812 if (reduced) 813 drm_mode->flags |= (DRM_MODE_FLAG_PHSYNC | 814 DRM_MODE_FLAG_NVSYNC); 815 else 816 drm_mode->flags |= (DRM_MODE_FLAG_PVSYNC | 817 DRM_MODE_FLAG_NHSYNC); 818 819 return drm_mode; 820 } 821 EXPORT_SYMBOL(drm_cvt_mode); 822 823 /** 824 * drm_gtf_mode_complex - create the modeline based on the full GTF algorithm 825 * @dev: drm device 826 * @hdisplay: hdisplay size 827 * @vdisplay: vdisplay size 828 * @vrefresh: vrefresh rate. 829 * @interlaced: whether to compute an interlaced mode 830 * @margins: desired margin (borders) size 831 * @GTF_M: extended GTF formula parameters 832 * @GTF_2C: extended GTF formula parameters 833 * @GTF_K: extended GTF formula parameters 834 * @GTF_2J: extended GTF formula parameters 835 * 836 * GTF feature blocks specify C and J in multiples of 0.5, so we pass them 837 * in here multiplied by two. For a C of 40, pass in 80. 838 * 839 * Returns: 840 * The modeline based on the full GTF algorithm stored in a drm_display_mode object. 841 * The display mode object is allocated with drm_mode_create(). Returns NULL 842 * when no mode could be allocated. 843 */ 844 struct drm_display_mode * 845 drm_gtf_mode_complex(struct drm_device *dev, int hdisplay, int vdisplay, 846 int vrefresh, bool interlaced, int margins, 847 int GTF_M, int GTF_2C, int GTF_K, int GTF_2J) 848 { /* 1) top/bottom margin size (% of height) - default: 1.8, */ 849 #define GTF_MARGIN_PERCENTAGE 18 850 /* 2) character cell horizontal granularity (pixels) - default 8 */ 851 #define GTF_CELL_GRAN 8 852 /* 3) Minimum vertical porch (lines) - default 3 */ 853 #define GTF_MIN_V_PORCH 1 854 /* width of vsync in lines */ 855 #define V_SYNC_RQD 3 856 /* width of hsync as % of total line */ 857 #define H_SYNC_PERCENT 8 858 /* min time of vsync + back porch (microsec) */ 859 #define MIN_VSYNC_PLUS_BP 550 860 /* C' and M' are part of the Blanking Duty Cycle computation */ 861 #define GTF_C_PRIME ((((GTF_2C - GTF_2J) * GTF_K / 256) + GTF_2J) / 2) 862 #define GTF_M_PRIME (GTF_K * GTF_M / 256) 863 struct drm_display_mode *drm_mode; 864 unsigned int hdisplay_rnd, vdisplay_rnd, vfieldrate_rqd; 865 int top_margin, bottom_margin; 866 int interlace; 867 unsigned int hfreq_est; 868 int vsync_plus_bp, __maybe_unused vback_porch; 869 unsigned int vtotal_lines, __maybe_unused vfieldrate_est; 870 unsigned int __maybe_unused hperiod; 871 unsigned int vfield_rate, __maybe_unused vframe_rate; 872 int left_margin, right_margin; 873 unsigned int total_active_pixels, ideal_duty_cycle; 874 unsigned int hblank, total_pixels, pixel_freq; 875 int hsync, hfront_porch, vodd_front_porch_lines; 876 unsigned int tmp1, tmp2; 877 878 if (!hdisplay || !vdisplay) 879 return NULL; 880 881 drm_mode = drm_mode_create(dev); 882 if (!drm_mode) 883 return NULL; 884 885 /* 1. In order to give correct results, the number of horizontal 886 * pixels requested is first processed to ensure that it is divisible 887 * by the character size, by rounding it to the nearest character 888 * cell boundary: 889 */ 890 hdisplay_rnd = (hdisplay + GTF_CELL_GRAN / 2) / GTF_CELL_GRAN; 891 hdisplay_rnd = hdisplay_rnd * GTF_CELL_GRAN; 892 893 /* 2. If interlace is requested, the number of vertical lines assumed 894 * by the calculation must be halved, as the computation calculates 895 * the number of vertical lines per field. 896 */ 897 if (interlaced) 898 vdisplay_rnd = vdisplay / 2; 899 else 900 vdisplay_rnd = vdisplay; 901 902 /* 3. Find the frame rate required: */ 903 if (interlaced) 904 vfieldrate_rqd = vrefresh * 2; 905 else 906 vfieldrate_rqd = vrefresh; 907 908 /* 4. Find number of lines in Top margin: */ 909 top_margin = 0; 910 if (margins) 911 top_margin = (vdisplay_rnd * GTF_MARGIN_PERCENTAGE + 500) / 912 1000; 913 /* 5. Find number of lines in bottom margin: */ 914 bottom_margin = top_margin; 915 916 /* 6. If interlace is required, then set variable interlace: */ 917 if (interlaced) 918 interlace = 1; 919 else 920 interlace = 0; 921 922 /* 7. Estimate the Horizontal frequency */ 923 { 924 tmp1 = (1000000 - MIN_VSYNC_PLUS_BP * vfieldrate_rqd) / 500; 925 tmp2 = (vdisplay_rnd + 2 * top_margin + GTF_MIN_V_PORCH) * 926 2 + interlace; 927 hfreq_est = (tmp2 * 1000 * vfieldrate_rqd) / tmp1; 928 } 929 930 /* 8. Find the number of lines in V sync + back porch */ 931 /* [V SYNC+BP] = RINT(([MIN VSYNC+BP] * hfreq_est / 1000000)) */ 932 vsync_plus_bp = MIN_VSYNC_PLUS_BP * hfreq_est / 1000; 933 vsync_plus_bp = (vsync_plus_bp + 500) / 1000; 934 /* 9. Find the number of lines in V back porch alone: */ 935 vback_porch = vsync_plus_bp - V_SYNC_RQD; 936 /* 10. Find the total number of lines in Vertical field period: */ 937 vtotal_lines = vdisplay_rnd + top_margin + bottom_margin + 938 vsync_plus_bp + GTF_MIN_V_PORCH; 939 /* 11. Estimate the Vertical field frequency: */ 940 vfieldrate_est = hfreq_est / vtotal_lines; 941 /* 12. Find the actual horizontal period: */ 942 hperiod = 1000000 / (vfieldrate_rqd * vtotal_lines); 943 944 /* 13. Find the actual Vertical field frequency: */ 945 vfield_rate = hfreq_est / vtotal_lines; 946 /* 14. Find the Vertical frame frequency: */ 947 if (interlaced) 948 vframe_rate = vfield_rate / 2; 949 else 950 vframe_rate = vfield_rate; 951 /* 15. Find number of pixels in left margin: */ 952 if (margins) 953 left_margin = (hdisplay_rnd * GTF_MARGIN_PERCENTAGE + 500) / 954 1000; 955 else 956 left_margin = 0; 957 958 /* 16.Find number of pixels in right margin: */ 959 right_margin = left_margin; 960 /* 17.Find total number of active pixels in image and left and right */ 961 total_active_pixels = hdisplay_rnd + left_margin + right_margin; 962 /* 18.Find the ideal blanking duty cycle from blanking duty cycle */ 963 ideal_duty_cycle = GTF_C_PRIME * 1000 - 964 (GTF_M_PRIME * 1000000 / hfreq_est); 965 /* 19.Find the number of pixels in the blanking time to the nearest 966 * double character cell: */ 967 hblank = total_active_pixels * ideal_duty_cycle / 968 (100000 - ideal_duty_cycle); 969 hblank = (hblank + GTF_CELL_GRAN) / (2 * GTF_CELL_GRAN); 970 hblank = hblank * 2 * GTF_CELL_GRAN; 971 /* 20.Find total number of pixels: */ 972 total_pixels = total_active_pixels + hblank; 973 /* 21.Find pixel clock frequency: */ 974 pixel_freq = total_pixels * hfreq_est / 1000; 975 /* Stage 1 computations are now complete; I should really pass 976 * the results to another function and do the Stage 2 computations, 977 * but I only need a few more values so I'll just append the 978 * computations here for now */ 979 /* 17. Find the number of pixels in the horizontal sync period: */ 980 hsync = H_SYNC_PERCENT * total_pixels / 100; 981 hsync = (hsync + GTF_CELL_GRAN / 2) / GTF_CELL_GRAN; 982 hsync = hsync * GTF_CELL_GRAN; 983 /* 18. Find the number of pixels in horizontal front porch period */ 984 hfront_porch = hblank / 2 - hsync; 985 /* 36. Find the number of lines in the odd front porch period: */ 986 vodd_front_porch_lines = GTF_MIN_V_PORCH ; 987 988 /* finally, pack the results in the mode struct */ 989 drm_mode->hdisplay = hdisplay_rnd; 990 drm_mode->hsync_start = hdisplay_rnd + hfront_porch; 991 drm_mode->hsync_end = drm_mode->hsync_start + hsync; 992 drm_mode->htotal = total_pixels; 993 drm_mode->vdisplay = vdisplay_rnd; 994 drm_mode->vsync_start = vdisplay_rnd + vodd_front_porch_lines; 995 drm_mode->vsync_end = drm_mode->vsync_start + V_SYNC_RQD; 996 drm_mode->vtotal = vtotal_lines; 997 998 drm_mode->clock = pixel_freq; 999 1000 if (interlaced) { 1001 drm_mode->vtotal *= 2; 1002 drm_mode->flags |= DRM_MODE_FLAG_INTERLACE; 1003 } 1004 1005 drm_mode_set_name(drm_mode); 1006 if (GTF_M == 600 && GTF_2C == 80 && GTF_K == 128 && GTF_2J == 40) 1007 drm_mode->flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC; 1008 else 1009 drm_mode->flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NVSYNC; 1010 1011 return drm_mode; 1012 } 1013 EXPORT_SYMBOL(drm_gtf_mode_complex); 1014 1015 /** 1016 * drm_gtf_mode - create the modeline based on the GTF algorithm 1017 * @dev: drm device 1018 * @hdisplay: hdisplay size 1019 * @vdisplay: vdisplay size 1020 * @vrefresh: vrefresh rate. 1021 * @interlaced: whether to compute an interlaced mode 1022 * @margins: desired margin (borders) size 1023 * 1024 * return the modeline based on GTF algorithm 1025 * 1026 * This function is to create the modeline based on the GTF algorithm. 1027 * Generalized Timing Formula is derived from: 1028 * 1029 * GTF Spreadsheet by Andy Morrish (1/5/97) 1030 * available at https://www.vesa.org 1031 * 1032 * And it is copied from the file of xserver/hw/xfree86/modes/xf86gtf.c. 1033 * What I have done is to translate it by using integer calculation. 1034 * I also refer to the function of fb_get_mode in the file of 1035 * drivers/video/fbmon.c 1036 * 1037 * Standard GTF parameters:: 1038 * 1039 * M = 600 1040 * C = 40 1041 * K = 128 1042 * J = 20 1043 * 1044 * Returns: 1045 * The modeline based on the GTF algorithm stored in a drm_display_mode object. 1046 * The display mode object is allocated with drm_mode_create(). Returns NULL 1047 * when no mode could be allocated. 1048 */ 1049 struct drm_display_mode * 1050 drm_gtf_mode(struct drm_device *dev, int hdisplay, int vdisplay, int vrefresh, 1051 bool interlaced, int margins) 1052 { 1053 return drm_gtf_mode_complex(dev, hdisplay, vdisplay, vrefresh, 1054 interlaced, margins, 1055 600, 40 * 2, 128, 20 * 2); 1056 } 1057 EXPORT_SYMBOL(drm_gtf_mode); 1058 1059 #ifdef CONFIG_VIDEOMODE_HELPERS 1060 /** 1061 * drm_display_mode_from_videomode - fill in @dmode using @vm, 1062 * @vm: videomode structure to use as source 1063 * @dmode: drm_display_mode structure to use as destination 1064 * 1065 * Fills out @dmode using the display mode specified in @vm. 1066 */ 1067 void drm_display_mode_from_videomode(const struct videomode *vm, 1068 struct drm_display_mode *dmode) 1069 { 1070 dmode->hdisplay = vm->hactive; 1071 dmode->hsync_start = dmode->hdisplay + vm->hfront_porch; 1072 dmode->hsync_end = dmode->hsync_start + vm->hsync_len; 1073 dmode->htotal = dmode->hsync_end + vm->hback_porch; 1074 1075 dmode->vdisplay = vm->vactive; 1076 dmode->vsync_start = dmode->vdisplay + vm->vfront_porch; 1077 dmode->vsync_end = dmode->vsync_start + vm->vsync_len; 1078 dmode->vtotal = dmode->vsync_end + vm->vback_porch; 1079 1080 dmode->clock = vm->pixelclock / 1000; 1081 1082 dmode->flags = 0; 1083 if (vm->flags & DISPLAY_FLAGS_HSYNC_HIGH) 1084 dmode->flags |= DRM_MODE_FLAG_PHSYNC; 1085 else if (vm->flags & DISPLAY_FLAGS_HSYNC_LOW) 1086 dmode->flags |= DRM_MODE_FLAG_NHSYNC; 1087 if (vm->flags & DISPLAY_FLAGS_VSYNC_HIGH) 1088 dmode->flags |= DRM_MODE_FLAG_PVSYNC; 1089 else if (vm->flags & DISPLAY_FLAGS_VSYNC_LOW) 1090 dmode->flags |= DRM_MODE_FLAG_NVSYNC; 1091 if (vm->flags & DISPLAY_FLAGS_INTERLACED) 1092 dmode->flags |= DRM_MODE_FLAG_INTERLACE; 1093 if (vm->flags & DISPLAY_FLAGS_DOUBLESCAN) 1094 dmode->flags |= DRM_MODE_FLAG_DBLSCAN; 1095 if (vm->flags & DISPLAY_FLAGS_DOUBLECLK) 1096 dmode->flags |= DRM_MODE_FLAG_DBLCLK; 1097 drm_mode_set_name(dmode); 1098 } 1099 EXPORT_SYMBOL_GPL(drm_display_mode_from_videomode); 1100 1101 /** 1102 * drm_display_mode_to_videomode - fill in @vm using @dmode, 1103 * @dmode: drm_display_mode structure to use as source 1104 * @vm: videomode structure to use as destination 1105 * 1106 * Fills out @vm using the display mode specified in @dmode. 1107 */ 1108 void drm_display_mode_to_videomode(const struct drm_display_mode *dmode, 1109 struct videomode *vm) 1110 { 1111 vm->hactive = dmode->hdisplay; 1112 vm->hfront_porch = dmode->hsync_start - dmode->hdisplay; 1113 vm->hsync_len = dmode->hsync_end - dmode->hsync_start; 1114 vm->hback_porch = dmode->htotal - dmode->hsync_end; 1115 1116 vm->vactive = dmode->vdisplay; 1117 vm->vfront_porch = dmode->vsync_start - dmode->vdisplay; 1118 vm->vsync_len = dmode->vsync_end - dmode->vsync_start; 1119 vm->vback_porch = dmode->vtotal - dmode->vsync_end; 1120 1121 vm->pixelclock = dmode->clock * 1000; 1122 1123 vm->flags = 0; 1124 if (dmode->flags & DRM_MODE_FLAG_PHSYNC) 1125 vm->flags |= DISPLAY_FLAGS_HSYNC_HIGH; 1126 else if (dmode->flags & DRM_MODE_FLAG_NHSYNC) 1127 vm->flags |= DISPLAY_FLAGS_HSYNC_LOW; 1128 if (dmode->flags & DRM_MODE_FLAG_PVSYNC) 1129 vm->flags |= DISPLAY_FLAGS_VSYNC_HIGH; 1130 else if (dmode->flags & DRM_MODE_FLAG_NVSYNC) 1131 vm->flags |= DISPLAY_FLAGS_VSYNC_LOW; 1132 if (dmode->flags & DRM_MODE_FLAG_INTERLACE) 1133 vm->flags |= DISPLAY_FLAGS_INTERLACED; 1134 if (dmode->flags & DRM_MODE_FLAG_DBLSCAN) 1135 vm->flags |= DISPLAY_FLAGS_DOUBLESCAN; 1136 if (dmode->flags & DRM_MODE_FLAG_DBLCLK) 1137 vm->flags |= DISPLAY_FLAGS_DOUBLECLK; 1138 } 1139 EXPORT_SYMBOL_GPL(drm_display_mode_to_videomode); 1140 1141 /** 1142 * drm_bus_flags_from_videomode - extract information about pixelclk and 1143 * DE polarity from videomode and store it in a separate variable 1144 * @vm: videomode structure to use 1145 * @bus_flags: information about pixelclk, sync and DE polarity will be stored 1146 * here 1147 * 1148 * Sets DRM_BUS_FLAG_DE_(LOW|HIGH), DRM_BUS_FLAG_PIXDATA_DRIVE_(POS|NEG)EDGE 1149 * and DISPLAY_FLAGS_SYNC_(POS|NEG)EDGE in @bus_flags according to DISPLAY_FLAGS 1150 * found in @vm 1151 */ 1152 void drm_bus_flags_from_videomode(const struct videomode *vm, u32 *bus_flags) 1153 { 1154 *bus_flags = 0; 1155 if (vm->flags & DISPLAY_FLAGS_PIXDATA_POSEDGE) 1156 *bus_flags |= DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE; 1157 if (vm->flags & DISPLAY_FLAGS_PIXDATA_NEGEDGE) 1158 *bus_flags |= DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE; 1159 1160 if (vm->flags & DISPLAY_FLAGS_SYNC_POSEDGE) 1161 *bus_flags |= DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE; 1162 if (vm->flags & DISPLAY_FLAGS_SYNC_NEGEDGE) 1163 *bus_flags |= DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE; 1164 1165 if (vm->flags & DISPLAY_FLAGS_DE_LOW) 1166 *bus_flags |= DRM_BUS_FLAG_DE_LOW; 1167 if (vm->flags & DISPLAY_FLAGS_DE_HIGH) 1168 *bus_flags |= DRM_BUS_FLAG_DE_HIGH; 1169 } 1170 EXPORT_SYMBOL_GPL(drm_bus_flags_from_videomode); 1171 1172 #ifdef CONFIG_OF 1173 /** 1174 * of_get_drm_display_mode - get a drm_display_mode from devicetree 1175 * @np: device_node with the timing specification 1176 * @dmode: will be set to the return value 1177 * @bus_flags: information about pixelclk, sync and DE polarity 1178 * @index: index into the list of display timings in devicetree 1179 * 1180 * This function is expensive and should only be used, if only one mode is to be 1181 * read from DT. To get multiple modes start with of_get_display_timings and 1182 * work with that instead. 1183 * 1184 * Returns: 1185 * 0 on success, a negative errno code when no of videomode node was found. 1186 */ 1187 int of_get_drm_display_mode(struct device_node *np, 1188 struct drm_display_mode *dmode, u32 *bus_flags, 1189 int index) 1190 { 1191 struct videomode vm; 1192 int ret; 1193 1194 ret = of_get_videomode(np, &vm, index); 1195 if (ret) 1196 return ret; 1197 1198 drm_display_mode_from_videomode(&vm, dmode); 1199 if (bus_flags) 1200 drm_bus_flags_from_videomode(&vm, bus_flags); 1201 1202 pr_debug("%pOF: got %dx%d display mode\n", 1203 np, vm.hactive, vm.vactive); 1204 drm_mode_debug_printmodeline(dmode); 1205 1206 return 0; 1207 } 1208 EXPORT_SYMBOL_GPL(of_get_drm_display_mode); 1209 1210 /** 1211 * of_get_drm_panel_display_mode - get a panel-timing drm_display_mode from devicetree 1212 * @np: device_node with the panel-timing specification 1213 * @dmode: will be set to the return value 1214 * @bus_flags: information about pixelclk, sync and DE polarity 1215 * 1216 * The mandatory Device Tree properties width-mm and height-mm 1217 * are read and set on the display mode. 1218 * 1219 * Returns: 1220 * Zero on success, negative error code on failure. 1221 */ 1222 int of_get_drm_panel_display_mode(struct device_node *np, 1223 struct drm_display_mode *dmode, u32 *bus_flags) 1224 { 1225 u32 width_mm = 0, height_mm = 0; 1226 struct display_timing timing; 1227 struct videomode vm; 1228 int ret; 1229 1230 ret = of_get_display_timing(np, "panel-timing", &timing); 1231 if (ret) 1232 return ret; 1233 1234 videomode_from_timing(&timing, &vm); 1235 1236 memset(dmode, 0, sizeof(*dmode)); 1237 drm_display_mode_from_videomode(&vm, dmode); 1238 if (bus_flags) 1239 drm_bus_flags_from_videomode(&vm, bus_flags); 1240 1241 ret = of_property_read_u32(np, "width-mm", &width_mm); 1242 if (ret) 1243 return ret; 1244 1245 ret = of_property_read_u32(np, "height-mm", &height_mm); 1246 if (ret) 1247 return ret; 1248 1249 dmode->width_mm = width_mm; 1250 dmode->height_mm = height_mm; 1251 1252 drm_mode_debug_printmodeline(dmode); 1253 1254 return 0; 1255 } 1256 EXPORT_SYMBOL_GPL(of_get_drm_panel_display_mode); 1257 #endif /* CONFIG_OF */ 1258 #endif /* CONFIG_VIDEOMODE_HELPERS */ 1259 1260 /** 1261 * drm_mode_set_name - set the name on a mode 1262 * @mode: name will be set in this mode 1263 * 1264 * Set the name of @mode to a standard format which is <hdisplay>x<vdisplay> 1265 * with an optional 'i' suffix for interlaced modes. 1266 */ 1267 void drm_mode_set_name(struct drm_display_mode *mode) 1268 { 1269 bool interlaced = !!(mode->flags & DRM_MODE_FLAG_INTERLACE); 1270 1271 snprintf(mode->name, DRM_DISPLAY_MODE_LEN, "%dx%d%s", 1272 mode->hdisplay, mode->vdisplay, 1273 interlaced ? "i" : ""); 1274 } 1275 EXPORT_SYMBOL(drm_mode_set_name); 1276 1277 /** 1278 * drm_mode_vrefresh - get the vrefresh of a mode 1279 * @mode: mode 1280 * 1281 * Returns: 1282 * @modes's vrefresh rate in Hz, rounded to the nearest integer. Calculates the 1283 * value first if it is not yet set. 1284 */ 1285 int drm_mode_vrefresh(const struct drm_display_mode *mode) 1286 { 1287 unsigned int num, den; 1288 1289 if (mode->htotal == 0 || mode->vtotal == 0) 1290 return 0; 1291 1292 num = mode->clock; 1293 den = mode->htotal * mode->vtotal; 1294 1295 if (mode->flags & DRM_MODE_FLAG_INTERLACE) 1296 num *= 2; 1297 if (mode->flags & DRM_MODE_FLAG_DBLSCAN) 1298 den *= 2; 1299 if (mode->vscan > 1) 1300 den *= mode->vscan; 1301 1302 return DIV_ROUND_CLOSEST_ULL(mul_u32_u32(num, 1000), den); 1303 } 1304 EXPORT_SYMBOL(drm_mode_vrefresh); 1305 1306 /** 1307 * drm_mode_get_hv_timing - Fetches hdisplay/vdisplay for given mode 1308 * @mode: mode to query 1309 * @hdisplay: hdisplay value to fill in 1310 * @vdisplay: vdisplay value to fill in 1311 * 1312 * The vdisplay value will be doubled if the specified mode is a stereo mode of 1313 * the appropriate layout. 1314 */ 1315 void drm_mode_get_hv_timing(const struct drm_display_mode *mode, 1316 int *hdisplay, int *vdisplay) 1317 { 1318 struct drm_display_mode adjusted; 1319 1320 drm_mode_init(&adjusted, mode); 1321 1322 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY); 1323 *hdisplay = adjusted.crtc_hdisplay; 1324 *vdisplay = adjusted.crtc_vdisplay; 1325 } 1326 EXPORT_SYMBOL(drm_mode_get_hv_timing); 1327 1328 /** 1329 * drm_mode_set_crtcinfo - set CRTC modesetting timing parameters 1330 * @p: mode 1331 * @adjust_flags: a combination of adjustment flags 1332 * 1333 * Setup the CRTC modesetting timing parameters for @p, adjusting if necessary. 1334 * 1335 * - The CRTC_INTERLACE_HALVE_V flag can be used to halve vertical timings of 1336 * interlaced modes. 1337 * - The CRTC_STEREO_DOUBLE flag can be used to compute the timings for 1338 * buffers containing two eyes (only adjust the timings when needed, eg. for 1339 * "frame packing" or "side by side full"). 1340 * - The CRTC_NO_DBLSCAN and CRTC_NO_VSCAN flags request that adjustment *not* 1341 * be performed for doublescan and vscan > 1 modes respectively. 1342 */ 1343 void drm_mode_set_crtcinfo(struct drm_display_mode *p, int adjust_flags) 1344 { 1345 if (!p) 1346 return; 1347 1348 p->crtc_clock = p->clock; 1349 p->crtc_hdisplay = p->hdisplay; 1350 p->crtc_hsync_start = p->hsync_start; 1351 p->crtc_hsync_end = p->hsync_end; 1352 p->crtc_htotal = p->htotal; 1353 p->crtc_hskew = p->hskew; 1354 p->crtc_vdisplay = p->vdisplay; 1355 p->crtc_vsync_start = p->vsync_start; 1356 p->crtc_vsync_end = p->vsync_end; 1357 p->crtc_vtotal = p->vtotal; 1358 1359 if (p->flags & DRM_MODE_FLAG_INTERLACE) { 1360 if (adjust_flags & CRTC_INTERLACE_HALVE_V) { 1361 p->crtc_vdisplay /= 2; 1362 p->crtc_vsync_start /= 2; 1363 p->crtc_vsync_end /= 2; 1364 p->crtc_vtotal /= 2; 1365 } 1366 } 1367 1368 if (!(adjust_flags & CRTC_NO_DBLSCAN)) { 1369 if (p->flags & DRM_MODE_FLAG_DBLSCAN) { 1370 p->crtc_vdisplay *= 2; 1371 p->crtc_vsync_start *= 2; 1372 p->crtc_vsync_end *= 2; 1373 p->crtc_vtotal *= 2; 1374 } 1375 } 1376 1377 if (!(adjust_flags & CRTC_NO_VSCAN)) { 1378 if (p->vscan > 1) { 1379 p->crtc_vdisplay *= p->vscan; 1380 p->crtc_vsync_start *= p->vscan; 1381 p->crtc_vsync_end *= p->vscan; 1382 p->crtc_vtotal *= p->vscan; 1383 } 1384 } 1385 1386 if (adjust_flags & CRTC_STEREO_DOUBLE) { 1387 unsigned int layout = p->flags & DRM_MODE_FLAG_3D_MASK; 1388 1389 switch (layout) { 1390 case DRM_MODE_FLAG_3D_FRAME_PACKING: 1391 p->crtc_clock *= 2; 1392 p->crtc_vdisplay += p->crtc_vtotal; 1393 p->crtc_vsync_start += p->crtc_vtotal; 1394 p->crtc_vsync_end += p->crtc_vtotal; 1395 p->crtc_vtotal += p->crtc_vtotal; 1396 break; 1397 } 1398 } 1399 1400 p->crtc_vblank_start = min(p->crtc_vsync_start, p->crtc_vdisplay); 1401 p->crtc_vblank_end = max(p->crtc_vsync_end, p->crtc_vtotal); 1402 p->crtc_hblank_start = min(p->crtc_hsync_start, p->crtc_hdisplay); 1403 p->crtc_hblank_end = max(p->crtc_hsync_end, p->crtc_htotal); 1404 } 1405 EXPORT_SYMBOL(drm_mode_set_crtcinfo); 1406 1407 /** 1408 * drm_mode_copy - copy the mode 1409 * @dst: mode to overwrite 1410 * @src: mode to copy 1411 * 1412 * Copy an existing mode into another mode, preserving the 1413 * list head of the destination mode. 1414 */ 1415 void drm_mode_copy(struct drm_display_mode *dst, const struct drm_display_mode *src) 1416 { 1417 struct list_head head = dst->head; 1418 1419 *dst = *src; 1420 dst->head = head; 1421 } 1422 EXPORT_SYMBOL(drm_mode_copy); 1423 1424 /** 1425 * drm_mode_init - initialize the mode from another mode 1426 * @dst: mode to overwrite 1427 * @src: mode to copy 1428 * 1429 * Copy an existing mode into another mode, zeroing the 1430 * list head of the destination mode. Typically used 1431 * to guarantee the list head is not left with stack 1432 * garbage in on-stack modes. 1433 */ 1434 void drm_mode_init(struct drm_display_mode *dst, const struct drm_display_mode *src) 1435 { 1436 memset(dst, 0, sizeof(*dst)); 1437 drm_mode_copy(dst, src); 1438 } 1439 EXPORT_SYMBOL(drm_mode_init); 1440 1441 /** 1442 * drm_mode_duplicate - allocate and duplicate an existing mode 1443 * @dev: drm_device to allocate the duplicated mode for 1444 * @mode: mode to duplicate 1445 * 1446 * Just allocate a new mode, copy the existing mode into it, and return 1447 * a pointer to it. Used to create new instances of established modes. 1448 * 1449 * Returns: 1450 * Pointer to duplicated mode on success, NULL on error. 1451 */ 1452 struct drm_display_mode *drm_mode_duplicate(struct drm_device *dev, 1453 const struct drm_display_mode *mode) 1454 { 1455 struct drm_display_mode *nmode; 1456 1457 nmode = drm_mode_create(dev); 1458 if (!nmode) 1459 return NULL; 1460 1461 drm_mode_copy(nmode, mode); 1462 1463 return nmode; 1464 } 1465 EXPORT_SYMBOL(drm_mode_duplicate); 1466 1467 static bool drm_mode_match_timings(const struct drm_display_mode *mode1, 1468 const struct drm_display_mode *mode2) 1469 { 1470 return mode1->hdisplay == mode2->hdisplay && 1471 mode1->hsync_start == mode2->hsync_start && 1472 mode1->hsync_end == mode2->hsync_end && 1473 mode1->htotal == mode2->htotal && 1474 mode1->hskew == mode2->hskew && 1475 mode1->vdisplay == mode2->vdisplay && 1476 mode1->vsync_start == mode2->vsync_start && 1477 mode1->vsync_end == mode2->vsync_end && 1478 mode1->vtotal == mode2->vtotal && 1479 mode1->vscan == mode2->vscan; 1480 } 1481 1482 static bool drm_mode_match_clock(const struct drm_display_mode *mode1, 1483 const struct drm_display_mode *mode2) 1484 { 1485 /* 1486 * do clock check convert to PICOS 1487 * so fb modes get matched the same 1488 */ 1489 if (mode1->clock && mode2->clock) 1490 return KHZ2PICOS(mode1->clock) == KHZ2PICOS(mode2->clock); 1491 else 1492 return mode1->clock == mode2->clock; 1493 } 1494 1495 static bool drm_mode_match_flags(const struct drm_display_mode *mode1, 1496 const struct drm_display_mode *mode2) 1497 { 1498 return (mode1->flags & ~DRM_MODE_FLAG_3D_MASK) == 1499 (mode2->flags & ~DRM_MODE_FLAG_3D_MASK); 1500 } 1501 1502 static bool drm_mode_match_3d_flags(const struct drm_display_mode *mode1, 1503 const struct drm_display_mode *mode2) 1504 { 1505 return (mode1->flags & DRM_MODE_FLAG_3D_MASK) == 1506 (mode2->flags & DRM_MODE_FLAG_3D_MASK); 1507 } 1508 1509 static bool drm_mode_match_aspect_ratio(const struct drm_display_mode *mode1, 1510 const struct drm_display_mode *mode2) 1511 { 1512 return mode1->picture_aspect_ratio == mode2->picture_aspect_ratio; 1513 } 1514 1515 /** 1516 * drm_mode_match - test modes for (partial) equality 1517 * @mode1: first mode 1518 * @mode2: second mode 1519 * @match_flags: which parts need to match (DRM_MODE_MATCH_*) 1520 * 1521 * Check to see if @mode1 and @mode2 are equivalent. 1522 * 1523 * Returns: 1524 * True if the modes are (partially) equal, false otherwise. 1525 */ 1526 bool drm_mode_match(const struct drm_display_mode *mode1, 1527 const struct drm_display_mode *mode2, 1528 unsigned int match_flags) 1529 { 1530 if (!mode1 && !mode2) 1531 return true; 1532 1533 if (!mode1 || !mode2) 1534 return false; 1535 1536 if (match_flags & DRM_MODE_MATCH_TIMINGS && 1537 !drm_mode_match_timings(mode1, mode2)) 1538 return false; 1539 1540 if (match_flags & DRM_MODE_MATCH_CLOCK && 1541 !drm_mode_match_clock(mode1, mode2)) 1542 return false; 1543 1544 if (match_flags & DRM_MODE_MATCH_FLAGS && 1545 !drm_mode_match_flags(mode1, mode2)) 1546 return false; 1547 1548 if (match_flags & DRM_MODE_MATCH_3D_FLAGS && 1549 !drm_mode_match_3d_flags(mode1, mode2)) 1550 return false; 1551 1552 if (match_flags & DRM_MODE_MATCH_ASPECT_RATIO && 1553 !drm_mode_match_aspect_ratio(mode1, mode2)) 1554 return false; 1555 1556 return true; 1557 } 1558 EXPORT_SYMBOL(drm_mode_match); 1559 1560 /** 1561 * drm_mode_equal - test modes for equality 1562 * @mode1: first mode 1563 * @mode2: second mode 1564 * 1565 * Check to see if @mode1 and @mode2 are equivalent. 1566 * 1567 * Returns: 1568 * True if the modes are equal, false otherwise. 1569 */ 1570 bool drm_mode_equal(const struct drm_display_mode *mode1, 1571 const struct drm_display_mode *mode2) 1572 { 1573 return drm_mode_match(mode1, mode2, 1574 DRM_MODE_MATCH_TIMINGS | 1575 DRM_MODE_MATCH_CLOCK | 1576 DRM_MODE_MATCH_FLAGS | 1577 DRM_MODE_MATCH_3D_FLAGS| 1578 DRM_MODE_MATCH_ASPECT_RATIO); 1579 } 1580 EXPORT_SYMBOL(drm_mode_equal); 1581 1582 /** 1583 * drm_mode_equal_no_clocks - test modes for equality 1584 * @mode1: first mode 1585 * @mode2: second mode 1586 * 1587 * Check to see if @mode1 and @mode2 are equivalent, but 1588 * don't check the pixel clocks. 1589 * 1590 * Returns: 1591 * True if the modes are equal, false otherwise. 1592 */ 1593 bool drm_mode_equal_no_clocks(const struct drm_display_mode *mode1, 1594 const struct drm_display_mode *mode2) 1595 { 1596 return drm_mode_match(mode1, mode2, 1597 DRM_MODE_MATCH_TIMINGS | 1598 DRM_MODE_MATCH_FLAGS | 1599 DRM_MODE_MATCH_3D_FLAGS); 1600 } 1601 EXPORT_SYMBOL(drm_mode_equal_no_clocks); 1602 1603 /** 1604 * drm_mode_equal_no_clocks_no_stereo - test modes for equality 1605 * @mode1: first mode 1606 * @mode2: second mode 1607 * 1608 * Check to see if @mode1 and @mode2 are equivalent, but 1609 * don't check the pixel clocks nor the stereo layout. 1610 * 1611 * Returns: 1612 * True if the modes are equal, false otherwise. 1613 */ 1614 bool drm_mode_equal_no_clocks_no_stereo(const struct drm_display_mode *mode1, 1615 const struct drm_display_mode *mode2) 1616 { 1617 return drm_mode_match(mode1, mode2, 1618 DRM_MODE_MATCH_TIMINGS | 1619 DRM_MODE_MATCH_FLAGS); 1620 } 1621 EXPORT_SYMBOL(drm_mode_equal_no_clocks_no_stereo); 1622 1623 static enum drm_mode_status 1624 drm_mode_validate_basic(const struct drm_display_mode *mode) 1625 { 1626 if (mode->type & ~DRM_MODE_TYPE_ALL) 1627 return MODE_BAD; 1628 1629 if (mode->flags & ~DRM_MODE_FLAG_ALL) 1630 return MODE_BAD; 1631 1632 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX) 1633 return MODE_BAD; 1634 1635 if (mode->clock == 0) 1636 return MODE_CLOCK_LOW; 1637 1638 if (mode->hdisplay == 0 || 1639 mode->hsync_start < mode->hdisplay || 1640 mode->hsync_end < mode->hsync_start || 1641 mode->htotal < mode->hsync_end) 1642 return MODE_H_ILLEGAL; 1643 1644 if (mode->vdisplay == 0 || 1645 mode->vsync_start < mode->vdisplay || 1646 mode->vsync_end < mode->vsync_start || 1647 mode->vtotal < mode->vsync_end) 1648 return MODE_V_ILLEGAL; 1649 1650 return MODE_OK; 1651 } 1652 1653 /** 1654 * drm_mode_validate_driver - make sure the mode is somewhat sane 1655 * @dev: drm device 1656 * @mode: mode to check 1657 * 1658 * First do basic validation on the mode, and then allow the driver 1659 * to check for device/driver specific limitations via the optional 1660 * &drm_mode_config_helper_funcs.mode_valid hook. 1661 * 1662 * Returns: 1663 * The mode status 1664 */ 1665 enum drm_mode_status 1666 drm_mode_validate_driver(struct drm_device *dev, 1667 const struct drm_display_mode *mode) 1668 { 1669 enum drm_mode_status status; 1670 1671 status = drm_mode_validate_basic(mode); 1672 if (status != MODE_OK) 1673 return status; 1674 1675 if (dev->mode_config.funcs->mode_valid) 1676 return dev->mode_config.funcs->mode_valid(dev, mode); 1677 else 1678 return MODE_OK; 1679 } 1680 EXPORT_SYMBOL(drm_mode_validate_driver); 1681 1682 /** 1683 * drm_mode_validate_size - make sure modes adhere to size constraints 1684 * @mode: mode to check 1685 * @maxX: maximum width 1686 * @maxY: maximum height 1687 * 1688 * This function is a helper which can be used to validate modes against size 1689 * limitations of the DRM device/connector. If a mode is too big its status 1690 * member is updated with the appropriate validation failure code. The list 1691 * itself is not changed. 1692 * 1693 * Returns: 1694 * The mode status 1695 */ 1696 enum drm_mode_status 1697 drm_mode_validate_size(const struct drm_display_mode *mode, 1698 int maxX, int maxY) 1699 { 1700 if (maxX > 0 && mode->hdisplay > maxX) 1701 return MODE_VIRTUAL_X; 1702 1703 if (maxY > 0 && mode->vdisplay > maxY) 1704 return MODE_VIRTUAL_Y; 1705 1706 return MODE_OK; 1707 } 1708 EXPORT_SYMBOL(drm_mode_validate_size); 1709 1710 /** 1711 * drm_mode_validate_ycbcr420 - add 'ycbcr420-only' modes only when allowed 1712 * @mode: mode to check 1713 * @connector: drm connector under action 1714 * 1715 * This function is a helper which can be used to filter out any YCBCR420 1716 * only mode, when the source doesn't support it. 1717 * 1718 * Returns: 1719 * The mode status 1720 */ 1721 enum drm_mode_status 1722 drm_mode_validate_ycbcr420(const struct drm_display_mode *mode, 1723 struct drm_connector *connector) 1724 { 1725 if (!connector->ycbcr_420_allowed && 1726 drm_mode_is_420_only(&connector->display_info, mode)) 1727 return MODE_NO_420; 1728 1729 return MODE_OK; 1730 } 1731 EXPORT_SYMBOL(drm_mode_validate_ycbcr420); 1732 1733 #define MODE_STATUS(status) [MODE_ ## status + 3] = #status 1734 1735 static const char * const drm_mode_status_names[] = { 1736 MODE_STATUS(OK), 1737 MODE_STATUS(HSYNC), 1738 MODE_STATUS(VSYNC), 1739 MODE_STATUS(H_ILLEGAL), 1740 MODE_STATUS(V_ILLEGAL), 1741 MODE_STATUS(BAD_WIDTH), 1742 MODE_STATUS(NOMODE), 1743 MODE_STATUS(NO_INTERLACE), 1744 MODE_STATUS(NO_DBLESCAN), 1745 MODE_STATUS(NO_VSCAN), 1746 MODE_STATUS(MEM), 1747 MODE_STATUS(VIRTUAL_X), 1748 MODE_STATUS(VIRTUAL_Y), 1749 MODE_STATUS(MEM_VIRT), 1750 MODE_STATUS(NOCLOCK), 1751 MODE_STATUS(CLOCK_HIGH), 1752 MODE_STATUS(CLOCK_LOW), 1753 MODE_STATUS(CLOCK_RANGE), 1754 MODE_STATUS(BAD_HVALUE), 1755 MODE_STATUS(BAD_VVALUE), 1756 MODE_STATUS(BAD_VSCAN), 1757 MODE_STATUS(HSYNC_NARROW), 1758 MODE_STATUS(HSYNC_WIDE), 1759 MODE_STATUS(HBLANK_NARROW), 1760 MODE_STATUS(HBLANK_WIDE), 1761 MODE_STATUS(VSYNC_NARROW), 1762 MODE_STATUS(VSYNC_WIDE), 1763 MODE_STATUS(VBLANK_NARROW), 1764 MODE_STATUS(VBLANK_WIDE), 1765 MODE_STATUS(PANEL), 1766 MODE_STATUS(INTERLACE_WIDTH), 1767 MODE_STATUS(ONE_WIDTH), 1768 MODE_STATUS(ONE_HEIGHT), 1769 MODE_STATUS(ONE_SIZE), 1770 MODE_STATUS(NO_REDUCED), 1771 MODE_STATUS(NO_STEREO), 1772 MODE_STATUS(NO_420), 1773 MODE_STATUS(STALE), 1774 MODE_STATUS(BAD), 1775 MODE_STATUS(ERROR), 1776 }; 1777 1778 #undef MODE_STATUS 1779 1780 const char *drm_get_mode_status_name(enum drm_mode_status status) 1781 { 1782 int index = status + 3; 1783 1784 if (WARN_ON(index < 0 || index >= ARRAY_SIZE(drm_mode_status_names))) 1785 return ""; 1786 1787 return drm_mode_status_names[index]; 1788 } 1789 1790 /** 1791 * drm_mode_prune_invalid - remove invalid modes from mode list 1792 * @dev: DRM device 1793 * @mode_list: list of modes to check 1794 * @verbose: be verbose about it 1795 * 1796 * This helper function can be used to prune a display mode list after 1797 * validation has been completed. All modes whose status is not MODE_OK will be 1798 * removed from the list, and if @verbose the status code and mode name is also 1799 * printed to dmesg. 1800 */ 1801 void drm_mode_prune_invalid(struct drm_device *dev, 1802 struct list_head *mode_list, bool verbose) 1803 { 1804 struct drm_display_mode *mode, *t; 1805 1806 list_for_each_entry_safe(mode, t, mode_list, head) { 1807 if (mode->status != MODE_OK) { 1808 list_del(&mode->head); 1809 if (mode->type & DRM_MODE_TYPE_USERDEF) { 1810 drm_warn(dev, "User-defined mode not supported: " 1811 DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); 1812 } 1813 if (verbose) { 1814 drm_mode_debug_printmodeline(mode); 1815 DRM_DEBUG_KMS("Not using %s mode: %s\n", 1816 mode->name, 1817 drm_get_mode_status_name(mode->status)); 1818 } 1819 drm_mode_destroy(dev, mode); 1820 } 1821 } 1822 } 1823 EXPORT_SYMBOL(drm_mode_prune_invalid); 1824 1825 /** 1826 * drm_mode_compare - compare modes for favorability 1827 * @priv: unused 1828 * @lh_a: list_head for first mode 1829 * @lh_b: list_head for second mode 1830 * 1831 * Compare two modes, given by @lh_a and @lh_b, returning a value indicating 1832 * which is better. 1833 * 1834 * Returns: 1835 * Negative if @lh_a is better than @lh_b, zero if they're equivalent, or 1836 * positive if @lh_b is better than @lh_a. 1837 */ 1838 static int drm_mode_compare(void *priv, const struct list_head *lh_a, 1839 const struct list_head *lh_b) 1840 { 1841 struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head); 1842 struct drm_display_mode *b = list_entry(lh_b, struct drm_display_mode, head); 1843 int diff; 1844 1845 diff = ((b->type & DRM_MODE_TYPE_PREFERRED) != 0) - 1846 ((a->type & DRM_MODE_TYPE_PREFERRED) != 0); 1847 if (diff) 1848 return diff; 1849 diff = b->hdisplay * b->vdisplay - a->hdisplay * a->vdisplay; 1850 if (diff) 1851 return diff; 1852 1853 diff = drm_mode_vrefresh(b) - drm_mode_vrefresh(a); 1854 if (diff) 1855 return diff; 1856 1857 diff = b->clock - a->clock; 1858 return diff; 1859 } 1860 1861 /** 1862 * drm_mode_sort - sort mode list 1863 * @mode_list: list of drm_display_mode structures to sort 1864 * 1865 * Sort @mode_list by favorability, moving good modes to the head of the list. 1866 */ 1867 void drm_mode_sort(struct list_head *mode_list) 1868 { 1869 list_sort(NULL, mode_list, drm_mode_compare); 1870 } 1871 EXPORT_SYMBOL(drm_mode_sort); 1872 1873 /** 1874 * drm_connector_list_update - update the mode list for the connector 1875 * @connector: the connector to update 1876 * 1877 * This moves the modes from the @connector probed_modes list 1878 * to the actual mode list. It compares the probed mode against the current 1879 * list and only adds different/new modes. 1880 * 1881 * This is just a helper functions doesn't validate any modes itself and also 1882 * doesn't prune any invalid modes. Callers need to do that themselves. 1883 */ 1884 void drm_connector_list_update(struct drm_connector *connector) 1885 { 1886 struct drm_display_mode *pmode, *pt; 1887 1888 WARN_ON(!mutex_is_locked(&connector->dev->mode_config.mutex)); 1889 1890 list_for_each_entry_safe(pmode, pt, &connector->probed_modes, head) { 1891 struct drm_display_mode *mode; 1892 bool found_it = false; 1893 1894 /* go through current modes checking for the new probed mode */ 1895 list_for_each_entry(mode, &connector->modes, head) { 1896 if (!drm_mode_equal(pmode, mode)) 1897 continue; 1898 1899 found_it = true; 1900 1901 /* 1902 * If the old matching mode is stale (ie. left over 1903 * from a previous probe) just replace it outright. 1904 * Otherwise just merge the type bits between all 1905 * equal probed modes. 1906 * 1907 * If two probed modes are considered equal, pick the 1908 * actual timings from the one that's marked as 1909 * preferred (in case the match isn't 100%). If 1910 * multiple or zero preferred modes are present, favor 1911 * the mode added to the probed_modes list first. 1912 */ 1913 if (mode->status == MODE_STALE) { 1914 drm_mode_copy(mode, pmode); 1915 } else if ((mode->type & DRM_MODE_TYPE_PREFERRED) == 0 && 1916 (pmode->type & DRM_MODE_TYPE_PREFERRED) != 0) { 1917 pmode->type |= mode->type; 1918 drm_mode_copy(mode, pmode); 1919 } else { 1920 mode->type |= pmode->type; 1921 } 1922 1923 list_del(&pmode->head); 1924 drm_mode_destroy(connector->dev, pmode); 1925 break; 1926 } 1927 1928 if (!found_it) { 1929 list_move_tail(&pmode->head, &connector->modes); 1930 } 1931 } 1932 } 1933 EXPORT_SYMBOL(drm_connector_list_update); 1934 1935 static int drm_mode_parse_cmdline_bpp(const char *str, char **end_ptr, 1936 struct drm_cmdline_mode *mode) 1937 { 1938 unsigned int bpp; 1939 1940 if (str[0] != '-') 1941 return -EINVAL; 1942 1943 str++; 1944 bpp = simple_strtol(str, end_ptr, 10); 1945 if (*end_ptr == str) 1946 return -EINVAL; 1947 1948 mode->bpp = bpp; 1949 mode->bpp_specified = true; 1950 1951 return 0; 1952 } 1953 1954 static int drm_mode_parse_cmdline_refresh(const char *str, char **end_ptr, 1955 struct drm_cmdline_mode *mode) 1956 { 1957 unsigned int refresh; 1958 1959 if (str[0] != '@') 1960 return -EINVAL; 1961 1962 str++; 1963 refresh = simple_strtol(str, end_ptr, 10); 1964 if (*end_ptr == str) 1965 return -EINVAL; 1966 1967 mode->refresh = refresh; 1968 mode->refresh_specified = true; 1969 1970 return 0; 1971 } 1972 1973 static int drm_mode_parse_cmdline_extra(const char *str, int length, 1974 bool freestanding, 1975 const struct drm_connector *connector, 1976 struct drm_cmdline_mode *mode) 1977 { 1978 int i; 1979 1980 for (i = 0; i < length; i++) { 1981 switch (str[i]) { 1982 case 'i': 1983 if (freestanding) 1984 return -EINVAL; 1985 1986 mode->interlace = true; 1987 break; 1988 case 'm': 1989 if (freestanding) 1990 return -EINVAL; 1991 1992 mode->margins = true; 1993 break; 1994 case 'D': 1995 if (mode->force != DRM_FORCE_UNSPECIFIED) 1996 return -EINVAL; 1997 1998 if ((connector->connector_type != DRM_MODE_CONNECTOR_DVII) && 1999 (connector->connector_type != DRM_MODE_CONNECTOR_HDMIB)) 2000 mode->force = DRM_FORCE_ON; 2001 else 2002 mode->force = DRM_FORCE_ON_DIGITAL; 2003 break; 2004 case 'd': 2005 if (mode->force != DRM_FORCE_UNSPECIFIED) 2006 return -EINVAL; 2007 2008 mode->force = DRM_FORCE_OFF; 2009 break; 2010 case 'e': 2011 if (mode->force != DRM_FORCE_UNSPECIFIED) 2012 return -EINVAL; 2013 2014 mode->force = DRM_FORCE_ON; 2015 break; 2016 default: 2017 return -EINVAL; 2018 } 2019 } 2020 2021 return 0; 2022 } 2023 2024 static int drm_mode_parse_cmdline_res_mode(const char *str, unsigned int length, 2025 bool extras, 2026 const struct drm_connector *connector, 2027 struct drm_cmdline_mode *mode) 2028 { 2029 const char *str_start = str; 2030 bool rb = false, cvt = false; 2031 int xres = 0, yres = 0; 2032 int remaining, i; 2033 char *end_ptr; 2034 2035 xres = simple_strtol(str, &end_ptr, 10); 2036 if (end_ptr == str) 2037 return -EINVAL; 2038 2039 if (end_ptr[0] != 'x') 2040 return -EINVAL; 2041 end_ptr++; 2042 2043 str = end_ptr; 2044 yres = simple_strtol(str, &end_ptr, 10); 2045 if (end_ptr == str) 2046 return -EINVAL; 2047 2048 remaining = length - (end_ptr - str_start); 2049 if (remaining < 0) 2050 return -EINVAL; 2051 2052 for (i = 0; i < remaining; i++) { 2053 switch (end_ptr[i]) { 2054 case 'M': 2055 cvt = true; 2056 break; 2057 case 'R': 2058 rb = true; 2059 break; 2060 default: 2061 /* 2062 * Try to pass that to our extras parsing 2063 * function to handle the case where the 2064 * extras are directly after the resolution 2065 */ 2066 if (extras) { 2067 int ret = drm_mode_parse_cmdline_extra(end_ptr + i, 2068 1, 2069 false, 2070 connector, 2071 mode); 2072 if (ret) 2073 return ret; 2074 } else { 2075 return -EINVAL; 2076 } 2077 } 2078 } 2079 2080 mode->xres = xres; 2081 mode->yres = yres; 2082 mode->cvt = cvt; 2083 mode->rb = rb; 2084 2085 return 0; 2086 } 2087 2088 static int drm_mode_parse_cmdline_int(const char *delim, unsigned int *int_ret) 2089 { 2090 const char *value; 2091 char *endp; 2092 2093 /* 2094 * delim must point to the '=', otherwise it is a syntax error and 2095 * if delim points to the terminating zero, then delim + 1 will point 2096 * past the end of the string. 2097 */ 2098 if (*delim != '=') 2099 return -EINVAL; 2100 2101 value = delim + 1; 2102 *int_ret = simple_strtol(value, &endp, 10); 2103 2104 /* Make sure we have parsed something */ 2105 if (endp == value) 2106 return -EINVAL; 2107 2108 return 0; 2109 } 2110 2111 static int drm_mode_parse_panel_orientation(const char *delim, 2112 struct drm_cmdline_mode *mode) 2113 { 2114 const char *value; 2115 2116 if (*delim != '=') 2117 return -EINVAL; 2118 2119 value = delim + 1; 2120 delim = strchr(value, ','); 2121 if (!delim) 2122 delim = value + strlen(value); 2123 2124 if (!strncmp(value, "normal", delim - value)) 2125 mode->panel_orientation = DRM_MODE_PANEL_ORIENTATION_NORMAL; 2126 else if (!strncmp(value, "upside_down", delim - value)) 2127 mode->panel_orientation = DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP; 2128 else if (!strncmp(value, "left_side_up", delim - value)) 2129 mode->panel_orientation = DRM_MODE_PANEL_ORIENTATION_LEFT_UP; 2130 else if (!strncmp(value, "right_side_up", delim - value)) 2131 mode->panel_orientation = DRM_MODE_PANEL_ORIENTATION_RIGHT_UP; 2132 else 2133 return -EINVAL; 2134 2135 return 0; 2136 } 2137 2138 static int drm_mode_parse_tv_mode(const char *delim, 2139 struct drm_cmdline_mode *mode) 2140 { 2141 const char *value; 2142 int ret; 2143 2144 if (*delim != '=') 2145 return -EINVAL; 2146 2147 value = delim + 1; 2148 delim = strchr(value, ','); 2149 if (!delim) 2150 delim = value + strlen(value); 2151 2152 ret = drm_get_tv_mode_from_name(value, delim - value); 2153 if (ret < 0) 2154 return ret; 2155 2156 mode->tv_mode_specified = true; 2157 mode->tv_mode = ret; 2158 2159 return 0; 2160 } 2161 2162 static int drm_mode_parse_cmdline_options(const char *str, 2163 bool freestanding, 2164 const struct drm_connector *connector, 2165 struct drm_cmdline_mode *mode) 2166 { 2167 unsigned int deg, margin, rotation = 0; 2168 const char *delim, *option, *sep; 2169 2170 option = str; 2171 do { 2172 delim = strchr(option, '='); 2173 if (!delim) { 2174 delim = strchr(option, ','); 2175 2176 if (!delim) 2177 delim = option + strlen(option); 2178 } 2179 2180 if (!strncmp(option, "rotate", delim - option)) { 2181 if (drm_mode_parse_cmdline_int(delim, °)) 2182 return -EINVAL; 2183 2184 switch (deg) { 2185 case 0: 2186 rotation |= DRM_MODE_ROTATE_0; 2187 break; 2188 2189 case 90: 2190 rotation |= DRM_MODE_ROTATE_90; 2191 break; 2192 2193 case 180: 2194 rotation |= DRM_MODE_ROTATE_180; 2195 break; 2196 2197 case 270: 2198 rotation |= DRM_MODE_ROTATE_270; 2199 break; 2200 2201 default: 2202 return -EINVAL; 2203 } 2204 } else if (!strncmp(option, "reflect_x", delim - option)) { 2205 rotation |= DRM_MODE_REFLECT_X; 2206 } else if (!strncmp(option, "reflect_y", delim - option)) { 2207 rotation |= DRM_MODE_REFLECT_Y; 2208 } else if (!strncmp(option, "margin_right", delim - option)) { 2209 if (drm_mode_parse_cmdline_int(delim, &margin)) 2210 return -EINVAL; 2211 2212 mode->tv_margins.right = margin; 2213 } else if (!strncmp(option, "margin_left", delim - option)) { 2214 if (drm_mode_parse_cmdline_int(delim, &margin)) 2215 return -EINVAL; 2216 2217 mode->tv_margins.left = margin; 2218 } else if (!strncmp(option, "margin_top", delim - option)) { 2219 if (drm_mode_parse_cmdline_int(delim, &margin)) 2220 return -EINVAL; 2221 2222 mode->tv_margins.top = margin; 2223 } else if (!strncmp(option, "margin_bottom", delim - option)) { 2224 if (drm_mode_parse_cmdline_int(delim, &margin)) 2225 return -EINVAL; 2226 2227 mode->tv_margins.bottom = margin; 2228 } else if (!strncmp(option, "panel_orientation", delim - option)) { 2229 if (drm_mode_parse_panel_orientation(delim, mode)) 2230 return -EINVAL; 2231 } else if (!strncmp(option, "tv_mode", delim - option)) { 2232 if (drm_mode_parse_tv_mode(delim, mode)) 2233 return -EINVAL; 2234 } else { 2235 return -EINVAL; 2236 } 2237 sep = strchr(delim, ','); 2238 option = sep + 1; 2239 } while (sep); 2240 2241 if (rotation && freestanding) 2242 return -EINVAL; 2243 2244 if (!(rotation & DRM_MODE_ROTATE_MASK)) 2245 rotation |= DRM_MODE_ROTATE_0; 2246 2247 /* Make sure there is exactly one rotation defined */ 2248 if (!is_power_of_2(rotation & DRM_MODE_ROTATE_MASK)) 2249 return -EINVAL; 2250 2251 mode->rotation_reflection = rotation; 2252 2253 return 0; 2254 } 2255 2256 struct drm_named_mode { 2257 const char *name; 2258 unsigned int pixel_clock_khz; 2259 unsigned int xres; 2260 unsigned int yres; 2261 unsigned int flags; 2262 unsigned int tv_mode; 2263 }; 2264 2265 #define NAMED_MODE(_name, _pclk, _x, _y, _flags, _mode) \ 2266 { \ 2267 .name = _name, \ 2268 .pixel_clock_khz = _pclk, \ 2269 .xres = _x, \ 2270 .yres = _y, \ 2271 .flags = _flags, \ 2272 .tv_mode = _mode, \ 2273 } 2274 2275 static const struct drm_named_mode drm_named_modes[] = { 2276 NAMED_MODE("NTSC", 13500, 720, 480, DRM_MODE_FLAG_INTERLACE, DRM_MODE_TV_MODE_NTSC), 2277 NAMED_MODE("NTSC-J", 13500, 720, 480, DRM_MODE_FLAG_INTERLACE, DRM_MODE_TV_MODE_NTSC_J), 2278 NAMED_MODE("PAL", 13500, 720, 576, DRM_MODE_FLAG_INTERLACE, DRM_MODE_TV_MODE_PAL), 2279 NAMED_MODE("PAL-M", 13500, 720, 480, DRM_MODE_FLAG_INTERLACE, DRM_MODE_TV_MODE_PAL_M), 2280 }; 2281 2282 static int drm_mode_parse_cmdline_named_mode(const char *name, 2283 unsigned int name_end, 2284 struct drm_cmdline_mode *cmdline_mode) 2285 { 2286 unsigned int i; 2287 2288 if (!name_end) 2289 return 0; 2290 2291 /* If the name starts with a digit, it's not a named mode */ 2292 if (isdigit(name[0])) 2293 return 0; 2294 2295 /* 2296 * If there's an equal sign in the name, the command-line 2297 * contains only an option and no mode. 2298 */ 2299 if (strnchr(name, name_end, '=')) 2300 return 0; 2301 2302 /* The connection status extras can be set without a mode. */ 2303 if (name_end == 1 && 2304 (name[0] == 'd' || name[0] == 'D' || name[0] == 'e')) 2305 return 0; 2306 2307 /* 2308 * We're sure we're a named mode at this point, iterate over the 2309 * list of modes we're aware of. 2310 */ 2311 for (i = 0; i < ARRAY_SIZE(drm_named_modes); i++) { 2312 const struct drm_named_mode *mode = &drm_named_modes[i]; 2313 int ret; 2314 2315 ret = str_has_prefix(name, mode->name); 2316 if (ret != name_end) 2317 continue; 2318 2319 strscpy(cmdline_mode->name, mode->name, sizeof(cmdline_mode->name)); 2320 cmdline_mode->pixel_clock = mode->pixel_clock_khz; 2321 cmdline_mode->xres = mode->xres; 2322 cmdline_mode->yres = mode->yres; 2323 cmdline_mode->interlace = !!(mode->flags & DRM_MODE_FLAG_INTERLACE); 2324 cmdline_mode->tv_mode = mode->tv_mode; 2325 cmdline_mode->tv_mode_specified = true; 2326 cmdline_mode->specified = true; 2327 2328 return 1; 2329 } 2330 2331 return -EINVAL; 2332 } 2333 2334 /** 2335 * drm_mode_parse_command_line_for_connector - parse command line modeline for connector 2336 * @mode_option: optional per connector mode option 2337 * @connector: connector to parse modeline for 2338 * @mode: preallocated drm_cmdline_mode structure to fill out 2339 * 2340 * This parses @mode_option command line modeline for modes and options to 2341 * configure the connector. If @mode_option is NULL the default command line 2342 * modeline in fb_mode_option will be parsed instead. 2343 * 2344 * This uses the same parameters as the fb modedb.c, except for an extra 2345 * force-enable, force-enable-digital and force-disable bit at the end:: 2346 * 2347 * <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m][eDd] 2348 * 2349 * Additionals options can be provided following the mode, using a comma to 2350 * separate each option. Valid options can be found in 2351 * Documentation/fb/modedb.rst. 2352 * 2353 * The intermediate drm_cmdline_mode structure is required to store additional 2354 * options from the command line modline like the force-enable/disable flag. 2355 * 2356 * Returns: 2357 * True if a valid modeline has been parsed, false otherwise. 2358 */ 2359 bool drm_mode_parse_command_line_for_connector(const char *mode_option, 2360 const struct drm_connector *connector, 2361 struct drm_cmdline_mode *mode) 2362 { 2363 const char *name; 2364 bool freestanding = false, parse_extras = false; 2365 unsigned int bpp_off = 0, refresh_off = 0, options_off = 0; 2366 unsigned int mode_end = 0; 2367 const char *bpp_ptr = NULL, *refresh_ptr = NULL, *extra_ptr = NULL; 2368 const char *options_ptr = NULL; 2369 char *bpp_end_ptr = NULL, *refresh_end_ptr = NULL; 2370 int len, ret; 2371 2372 memset(mode, 0, sizeof(*mode)); 2373 mode->panel_orientation = DRM_MODE_PANEL_ORIENTATION_UNKNOWN; 2374 2375 if (!mode_option) 2376 return false; 2377 2378 name = mode_option; 2379 2380 /* Locate the start of named options */ 2381 options_ptr = strchr(name, ','); 2382 if (options_ptr) 2383 options_off = options_ptr - name; 2384 else 2385 options_off = strlen(name); 2386 2387 /* Try to locate the bpp and refresh specifiers, if any */ 2388 bpp_ptr = strnchr(name, options_off, '-'); 2389 while (bpp_ptr && !isdigit(bpp_ptr[1])) 2390 bpp_ptr = strnchr(bpp_ptr + 1, options_off, '-'); 2391 if (bpp_ptr) 2392 bpp_off = bpp_ptr - name; 2393 2394 refresh_ptr = strnchr(name, options_off, '@'); 2395 if (refresh_ptr) 2396 refresh_off = refresh_ptr - name; 2397 2398 /* Locate the end of the name / resolution, and parse it */ 2399 if (bpp_ptr) { 2400 mode_end = bpp_off; 2401 } else if (refresh_ptr) { 2402 mode_end = refresh_off; 2403 } else if (options_ptr) { 2404 mode_end = options_off; 2405 parse_extras = true; 2406 } else { 2407 mode_end = strlen(name); 2408 parse_extras = true; 2409 } 2410 2411 if (!mode_end) 2412 return false; 2413 2414 ret = drm_mode_parse_cmdline_named_mode(name, mode_end, mode); 2415 if (ret < 0) 2416 return false; 2417 2418 /* 2419 * Having a mode that starts by a letter (and thus is named) and 2420 * an at-sign (used to specify a refresh rate) is disallowed. 2421 */ 2422 if (ret && refresh_ptr) 2423 return false; 2424 2425 /* No named mode? Check for a normal mode argument, e.g. 1024x768 */ 2426 if (!mode->specified && isdigit(name[0])) { 2427 ret = drm_mode_parse_cmdline_res_mode(name, mode_end, 2428 parse_extras, 2429 connector, 2430 mode); 2431 if (ret) 2432 return false; 2433 2434 mode->specified = true; 2435 } 2436 2437 /* No mode? Check for freestanding extras and/or options */ 2438 if (!mode->specified) { 2439 unsigned int len = strlen(mode_option); 2440 2441 if (bpp_ptr || refresh_ptr) 2442 return false; /* syntax error */ 2443 2444 if (len == 1 || (len >= 2 && mode_option[1] == ',')) 2445 extra_ptr = mode_option; 2446 else 2447 options_ptr = mode_option - 1; 2448 2449 freestanding = true; 2450 } 2451 2452 if (bpp_ptr) { 2453 ret = drm_mode_parse_cmdline_bpp(bpp_ptr, &bpp_end_ptr, mode); 2454 if (ret) 2455 return false; 2456 2457 mode->bpp_specified = true; 2458 } 2459 2460 if (refresh_ptr) { 2461 ret = drm_mode_parse_cmdline_refresh(refresh_ptr, 2462 &refresh_end_ptr, mode); 2463 if (ret) 2464 return false; 2465 2466 mode->refresh_specified = true; 2467 } 2468 2469 /* 2470 * Locate the end of the bpp / refresh, and parse the extras 2471 * if relevant 2472 */ 2473 if (bpp_ptr && refresh_ptr) 2474 extra_ptr = max(bpp_end_ptr, refresh_end_ptr); 2475 else if (bpp_ptr) 2476 extra_ptr = bpp_end_ptr; 2477 else if (refresh_ptr) 2478 extra_ptr = refresh_end_ptr; 2479 2480 if (extra_ptr) { 2481 if (options_ptr) 2482 len = options_ptr - extra_ptr; 2483 else 2484 len = strlen(extra_ptr); 2485 2486 ret = drm_mode_parse_cmdline_extra(extra_ptr, len, freestanding, 2487 connector, mode); 2488 if (ret) 2489 return false; 2490 } 2491 2492 if (options_ptr) { 2493 ret = drm_mode_parse_cmdline_options(options_ptr + 1, 2494 freestanding, 2495 connector, mode); 2496 if (ret) 2497 return false; 2498 } 2499 2500 return true; 2501 } 2502 EXPORT_SYMBOL(drm_mode_parse_command_line_for_connector); 2503 2504 static struct drm_display_mode *drm_named_mode(struct drm_device *dev, 2505 struct drm_cmdline_mode *cmd) 2506 { 2507 unsigned int i; 2508 2509 for (i = 0; i < ARRAY_SIZE(drm_named_modes); i++) { 2510 const struct drm_named_mode *named_mode = &drm_named_modes[i]; 2511 2512 if (strcmp(cmd->name, named_mode->name)) 2513 continue; 2514 2515 if (!cmd->tv_mode_specified) 2516 continue; 2517 2518 return drm_analog_tv_mode(dev, 2519 named_mode->tv_mode, 2520 named_mode->pixel_clock_khz * 1000, 2521 named_mode->xres, 2522 named_mode->yres, 2523 named_mode->flags & DRM_MODE_FLAG_INTERLACE); 2524 } 2525 2526 return NULL; 2527 } 2528 2529 /** 2530 * drm_mode_create_from_cmdline_mode - convert a command line modeline into a DRM display mode 2531 * @dev: DRM device to create the new mode for 2532 * @cmd: input command line modeline 2533 * 2534 * Returns: 2535 * Pointer to converted mode on success, NULL on error. 2536 */ 2537 struct drm_display_mode * 2538 drm_mode_create_from_cmdline_mode(struct drm_device *dev, 2539 struct drm_cmdline_mode *cmd) 2540 { 2541 struct drm_display_mode *mode; 2542 2543 if (cmd->xres == 0 || cmd->yres == 0) 2544 return NULL; 2545 2546 if (strlen(cmd->name)) 2547 mode = drm_named_mode(dev, cmd); 2548 else if (cmd->cvt) 2549 mode = drm_cvt_mode(dev, 2550 cmd->xres, cmd->yres, 2551 cmd->refresh_specified ? cmd->refresh : 60, 2552 cmd->rb, cmd->interlace, 2553 cmd->margins); 2554 else 2555 mode = drm_gtf_mode(dev, 2556 cmd->xres, cmd->yres, 2557 cmd->refresh_specified ? cmd->refresh : 60, 2558 cmd->interlace, 2559 cmd->margins); 2560 if (!mode) 2561 return NULL; 2562 2563 mode->type |= DRM_MODE_TYPE_USERDEF; 2564 /* fix up 1368x768: GFT/CVT can't express 1366 width due to alignment */ 2565 if (cmd->xres == 1366) 2566 drm_mode_fixup_1366x768(mode); 2567 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V); 2568 return mode; 2569 } 2570 EXPORT_SYMBOL(drm_mode_create_from_cmdline_mode); 2571 2572 /** 2573 * drm_mode_convert_to_umode - convert a drm_display_mode into a modeinfo 2574 * @out: drm_mode_modeinfo struct to return to the user 2575 * @in: drm_display_mode to use 2576 * 2577 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to 2578 * the user. 2579 */ 2580 void drm_mode_convert_to_umode(struct drm_mode_modeinfo *out, 2581 const struct drm_display_mode *in) 2582 { 2583 out->clock = in->clock; 2584 out->hdisplay = in->hdisplay; 2585 out->hsync_start = in->hsync_start; 2586 out->hsync_end = in->hsync_end; 2587 out->htotal = in->htotal; 2588 out->hskew = in->hskew; 2589 out->vdisplay = in->vdisplay; 2590 out->vsync_start = in->vsync_start; 2591 out->vsync_end = in->vsync_end; 2592 out->vtotal = in->vtotal; 2593 out->vscan = in->vscan; 2594 out->vrefresh = drm_mode_vrefresh(in); 2595 out->flags = in->flags; 2596 out->type = in->type; 2597 2598 switch (in->picture_aspect_ratio) { 2599 case HDMI_PICTURE_ASPECT_4_3: 2600 out->flags |= DRM_MODE_FLAG_PIC_AR_4_3; 2601 break; 2602 case HDMI_PICTURE_ASPECT_16_9: 2603 out->flags |= DRM_MODE_FLAG_PIC_AR_16_9; 2604 break; 2605 case HDMI_PICTURE_ASPECT_64_27: 2606 out->flags |= DRM_MODE_FLAG_PIC_AR_64_27; 2607 break; 2608 case HDMI_PICTURE_ASPECT_256_135: 2609 out->flags |= DRM_MODE_FLAG_PIC_AR_256_135; 2610 break; 2611 default: 2612 WARN(1, "Invalid aspect ratio (0%x) on mode\n", 2613 in->picture_aspect_ratio); 2614 fallthrough; 2615 case HDMI_PICTURE_ASPECT_NONE: 2616 out->flags |= DRM_MODE_FLAG_PIC_AR_NONE; 2617 break; 2618 } 2619 2620 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN); 2621 out->name[DRM_DISPLAY_MODE_LEN-1] = 0; 2622 } 2623 2624 /** 2625 * drm_mode_convert_umode - convert a modeinfo into a drm_display_mode 2626 * @dev: drm device 2627 * @out: drm_display_mode to return to the user 2628 * @in: drm_mode_modeinfo to use 2629 * 2630 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to 2631 * the caller. 2632 * 2633 * Returns: 2634 * Zero on success, negative errno on failure. 2635 */ 2636 int drm_mode_convert_umode(struct drm_device *dev, 2637 struct drm_display_mode *out, 2638 const struct drm_mode_modeinfo *in) 2639 { 2640 if (in->clock > INT_MAX || in->vrefresh > INT_MAX) 2641 return -ERANGE; 2642 2643 out->clock = in->clock; 2644 out->hdisplay = in->hdisplay; 2645 out->hsync_start = in->hsync_start; 2646 out->hsync_end = in->hsync_end; 2647 out->htotal = in->htotal; 2648 out->hskew = in->hskew; 2649 out->vdisplay = in->vdisplay; 2650 out->vsync_start = in->vsync_start; 2651 out->vsync_end = in->vsync_end; 2652 out->vtotal = in->vtotal; 2653 out->vscan = in->vscan; 2654 out->flags = in->flags; 2655 /* 2656 * Old xf86-video-vmware (possibly others too) used to 2657 * leave 'type' uninitialized. Just ignore any bits we 2658 * don't like. It's a just hint after all, and more 2659 * useful for the kernel->userspace direction anyway. 2660 */ 2661 out->type = in->type & DRM_MODE_TYPE_ALL; 2662 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN); 2663 out->name[DRM_DISPLAY_MODE_LEN-1] = 0; 2664 2665 /* Clearing picture aspect ratio bits from out flags, 2666 * as the aspect-ratio information is not stored in 2667 * flags for kernel-mode, but in picture_aspect_ratio. 2668 */ 2669 out->flags &= ~DRM_MODE_FLAG_PIC_AR_MASK; 2670 2671 switch (in->flags & DRM_MODE_FLAG_PIC_AR_MASK) { 2672 case DRM_MODE_FLAG_PIC_AR_4_3: 2673 out->picture_aspect_ratio = HDMI_PICTURE_ASPECT_4_3; 2674 break; 2675 case DRM_MODE_FLAG_PIC_AR_16_9: 2676 out->picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9; 2677 break; 2678 case DRM_MODE_FLAG_PIC_AR_64_27: 2679 out->picture_aspect_ratio = HDMI_PICTURE_ASPECT_64_27; 2680 break; 2681 case DRM_MODE_FLAG_PIC_AR_256_135: 2682 out->picture_aspect_ratio = HDMI_PICTURE_ASPECT_256_135; 2683 break; 2684 case DRM_MODE_FLAG_PIC_AR_NONE: 2685 out->picture_aspect_ratio = HDMI_PICTURE_ASPECT_NONE; 2686 break; 2687 default: 2688 return -EINVAL; 2689 } 2690 2691 out->status = drm_mode_validate_driver(dev, out); 2692 if (out->status != MODE_OK) 2693 return -EINVAL; 2694 2695 drm_mode_set_crtcinfo(out, CRTC_INTERLACE_HALVE_V); 2696 2697 return 0; 2698 } 2699 2700 /** 2701 * drm_mode_is_420_only - if a given videomode can be only supported in YCBCR420 2702 * output format 2703 * 2704 * @display: display under action 2705 * @mode: video mode to be tested. 2706 * 2707 * Returns: 2708 * true if the mode can be supported in YCBCR420 format 2709 * false if not. 2710 */ 2711 bool drm_mode_is_420_only(const struct drm_display_info *display, 2712 const struct drm_display_mode *mode) 2713 { 2714 u8 vic = drm_match_cea_mode(mode); 2715 2716 return test_bit(vic, display->hdmi.y420_vdb_modes); 2717 } 2718 EXPORT_SYMBOL(drm_mode_is_420_only); 2719 2720 /** 2721 * drm_mode_is_420_also - if a given videomode can be supported in YCBCR420 2722 * output format also (along with RGB/YCBCR444/422) 2723 * 2724 * @display: display under action. 2725 * @mode: video mode to be tested. 2726 * 2727 * Returns: 2728 * true if the mode can be support YCBCR420 format 2729 * false if not. 2730 */ 2731 bool drm_mode_is_420_also(const struct drm_display_info *display, 2732 const struct drm_display_mode *mode) 2733 { 2734 u8 vic = drm_match_cea_mode(mode); 2735 2736 return test_bit(vic, display->hdmi.y420_cmdb_modes); 2737 } 2738 EXPORT_SYMBOL(drm_mode_is_420_also); 2739 /** 2740 * drm_mode_is_420 - if a given videomode can be supported in YCBCR420 2741 * output format 2742 * 2743 * @display: display under action. 2744 * @mode: video mode to be tested. 2745 * 2746 * Returns: 2747 * true if the mode can be supported in YCBCR420 format 2748 * false if not. 2749 */ 2750 bool drm_mode_is_420(const struct drm_display_info *display, 2751 const struct drm_display_mode *mode) 2752 { 2753 return drm_mode_is_420_only(display, mode) || 2754 drm_mode_is_420_also(display, mode); 2755 } 2756 EXPORT_SYMBOL(drm_mode_is_420); 2757