1 /* 2 * Copyright (c) 2006-2009 Red Hat Inc. 3 * Copyright (c) 2006-2008 Intel Corporation 4 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie> 5 * 6 * DRM framebuffer helper functions 7 * 8 * Permission to use, copy, modify, distribute, and sell this software and its 9 * documentation for any purpose is hereby granted without fee, provided that 10 * the above copyright notice appear in all copies and that both that copyright 11 * notice and this permission notice appear in supporting documentation, and 12 * that the name of the copyright holders not be used in advertising or 13 * publicity pertaining to distribution of the software without specific, 14 * written prior permission. The copyright holders make no representations 15 * about the suitability of this software for any purpose. It is provided "as 16 * is" without express or implied warranty. 17 * 18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 24 * OF THIS SOFTWARE. 25 * 26 * Authors: 27 * Dave Airlie <airlied@linux.ie> 28 * Jesse Barnes <jesse.barnes@intel.com> 29 */ 30 31 #include <drm/drmP.h> 32 #include <drm/drm_crtc.h> 33 #include <drm/drm_fb_helper.h> 34 #include <drm/drm_crtc_helper.h> 35 36 static LINUX_LIST_HEAD(kernel_fb_helper_list); 37 38 /** 39 * DOC: fbdev helpers 40 * 41 * The fb helper functions are useful to provide an fbdev on top of a drm kernel 42 * mode setting driver. They can be used mostly independantely from the crtc 43 * helper functions used by many drivers to implement the kernel mode setting 44 * interfaces. 45 * 46 * Initialization is done as a three-step process with drm_fb_helper_init(), 47 * drm_fb_helper_single_add_all_connectors() and drm_fb_helper_initial_config(). 48 * Drivers with fancier requirements than the default beheviour can override the 49 * second step with their own code. Teardown is done with drm_fb_helper_fini(). 50 * 51 * At runtime drivers should restore the fbdev console by calling 52 * drm_fb_helper_restore_fbdev_mode() from their ->lastclose callback. They 53 * should also notify the fb helper code from updates to the output 54 * configuration by calling drm_fb_helper_hotplug_event(). For easier 55 * integration with the output polling code in drm_crtc_helper.c the modeset 56 * code proves a ->output_poll_changed callback. 57 * 58 * All other functions exported by the fb helper library can be used to 59 * implement the fbdev driver interface by the driver. 60 */ 61 62 /** 63 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev 64 * emulation helper 65 * @fb_helper: fbdev initialized with drm_fb_helper_init 66 * 67 * This functions adds all the available connectors for use with the given 68 * fb_helper. This is a separate step to allow drivers to freely assign 69 * connectors to the fbdev, e.g. if some are reserved for special purposes or 70 * not adequate to be used for the fbcon. 71 * 72 * Since this is part of the initial setup before the fbdev is published, no 73 * locking is required. 74 */ 75 int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper) 76 { 77 struct drm_device *dev = fb_helper->dev; 78 struct drm_connector *connector; 79 int i; 80 81 list_for_each_entry(connector, &dev->mode_config.connector_list, head) { 82 struct drm_fb_helper_connector *fb_helper_connector; 83 84 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL); 85 if (!fb_helper_connector) 86 goto fail; 87 88 fb_helper_connector->connector = connector; 89 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector; 90 } 91 return 0; 92 fail: 93 for (i = 0; i < fb_helper->connector_count; i++) { 94 kfree(fb_helper->connector_info[i]); 95 fb_helper->connector_info[i] = NULL; 96 } 97 fb_helper->connector_count = 0; 98 return -ENOMEM; 99 } 100 EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors); 101 102 static int 103 fb_get_options(const char *connector_name, char **option) 104 { 105 106 return (1); 107 } 108 109 static int drm_fb_helper_parse_command_line(struct drm_fb_helper *fb_helper) 110 { 111 struct drm_fb_helper_connector *fb_helper_conn; 112 int i; 113 114 for (i = 0; i < fb_helper->connector_count; i++) { 115 struct drm_cmdline_mode *mode; 116 struct drm_connector *connector; 117 char *option = NULL; 118 119 fb_helper_conn = fb_helper->connector_info[i]; 120 connector = fb_helper_conn->connector; 121 mode = &fb_helper_conn->cmdline_mode; 122 123 /* do something on return - turn off connector maybe */ 124 if (fb_get_options(drm_get_connector_name(connector), &option)) 125 continue; 126 127 if (drm_mode_parse_command_line_for_connector(option, 128 connector, 129 mode)) { 130 if (mode->force) { 131 const char *s; 132 switch (mode->force) { 133 case DRM_FORCE_OFF: 134 s = "OFF"; 135 break; 136 case DRM_FORCE_ON_DIGITAL: 137 s = "ON - dig"; 138 break; 139 default: 140 case DRM_FORCE_ON: 141 s = "ON"; 142 break; 143 } 144 145 DRM_INFO("forcing %s connector %s\n", 146 drm_get_connector_name(connector), s); 147 connector->force = mode->force; 148 } 149 150 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n", 151 drm_get_connector_name(connector), 152 mode->xres, mode->yres, 153 mode->refresh_specified ? mode->refresh : 60, 154 mode->rb ? " reduced blanking" : "", 155 mode->margins ? " with margins" : "", 156 mode->interlace ? " interlaced" : ""); 157 } 158 159 } 160 return 0; 161 } 162 163 #if 0 164 static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper) 165 { 166 uint16_t *r_base, *g_base, *b_base; 167 int i; 168 169 if (helper->funcs->gamma_get == NULL) 170 return; 171 172 r_base = crtc->gamma_store; 173 g_base = r_base + crtc->gamma_size; 174 b_base = g_base + crtc->gamma_size; 175 176 for (i = 0; i < crtc->gamma_size; i++) 177 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i); 178 } 179 180 static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc) 181 { 182 uint16_t *r_base, *g_base, *b_base; 183 184 if (crtc->funcs->gamma_set == NULL) 185 return; 186 187 r_base = crtc->gamma_store; 188 g_base = r_base + crtc->gamma_size; 189 b_base = g_base + crtc->gamma_size; 190 191 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size); 192 } 193 194 /** 195 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter 196 * @info: fbdev registered by the helper 197 */ 198 int drm_fb_helper_debug_enter(struct fb_info *info) 199 { 200 struct drm_fb_helper *helper = info->par; 201 struct drm_crtc_helper_funcs *funcs; 202 int i; 203 204 if (list_empty(&kernel_fb_helper_list)) 205 return false; 206 207 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) { 208 for (i = 0; i < helper->crtc_count; i++) { 209 struct drm_mode_set *mode_set = 210 &helper->crtc_info[i].mode_set; 211 212 if (!mode_set->crtc->enabled) 213 continue; 214 215 funcs = mode_set->crtc->helper_private; 216 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper); 217 funcs->mode_set_base_atomic(mode_set->crtc, 218 mode_set->fb, 219 mode_set->x, 220 mode_set->y, 221 ENTER_ATOMIC_MODE_SET); 222 } 223 } 224 225 return 0; 226 } 227 EXPORT_SYMBOL(drm_fb_helper_debug_enter); 228 229 /* Find the real fb for a given fb helper CRTC */ 230 static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc) 231 { 232 struct drm_device *dev = crtc->dev; 233 struct drm_crtc *c; 234 235 list_for_each_entry(c, &dev->mode_config.crtc_list, head) { 236 if (crtc->base.id == c->base.id) 237 return c->fb; 238 } 239 240 return NULL; 241 } 242 243 /** 244 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave 245 * @info: fbdev registered by the helper 246 */ 247 int drm_fb_helper_debug_leave(struct fb_info *info) 248 { 249 struct drm_fb_helper *helper = info->par; 250 struct drm_crtc *crtc; 251 struct drm_crtc_helper_funcs *funcs; 252 struct drm_framebuffer *fb; 253 int i; 254 255 for (i = 0; i < helper->crtc_count; i++) { 256 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set; 257 crtc = mode_set->crtc; 258 funcs = crtc->helper_private; 259 fb = drm_mode_config_fb(crtc); 260 261 if (!crtc->enabled) 262 continue; 263 264 if (!fb) { 265 DRM_ERROR("no fb to restore??\n"); 266 continue; 267 } 268 269 drm_fb_helper_restore_lut_atomic(mode_set->crtc); 270 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x, 271 crtc->y, LEAVE_ATOMIC_MODE_SET); 272 } 273 274 return 0; 275 } 276 EXPORT_SYMBOL(drm_fb_helper_debug_leave); 277 #endif 278 279 /** 280 * drm_fb_helper_restore_fbdev_mode - restore fbdev configuration 281 * @fb_helper: fbcon to restore 282 * 283 * This should be called from driver's drm ->lastclose callback 284 * when implementing an fbcon on top of kms using this helper. This ensures that 285 * the user isn't greeted with a black screen when e.g. X dies. 286 */ 287 bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper) 288 { 289 struct drm_device *dev = fb_helper->dev; 290 struct drm_plane *plane; 291 bool error = false; 292 int i; 293 294 drm_warn_on_modeset_not_all_locked(dev); 295 296 list_for_each_entry(plane, &dev->mode_config.plane_list, head) 297 drm_plane_force_disable(plane); 298 299 for (i = 0; i < fb_helper->crtc_count; i++) { 300 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set; 301 struct drm_crtc *crtc = mode_set->crtc; 302 int ret; 303 304 if (crtc->funcs->cursor_set) { 305 ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0); 306 if (ret) 307 error = true; 308 } 309 310 ret = drm_mode_set_config_internal(mode_set); 311 if (ret) 312 error = true; 313 } 314 return error; 315 } 316 EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode); 317 318 #if 0 319 /* 320 * restore fbcon display for all kms driver's using this helper, used for sysrq 321 * and panic handling. 322 */ 323 static bool drm_fb_helper_force_kernel_mode(void) 324 { 325 bool ret, error = false; 326 struct drm_fb_helper *helper; 327 328 if (list_empty(&kernel_fb_helper_list)) 329 return false; 330 331 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) { 332 if (helper->dev->switch_power_state == DRM_SWITCH_POWER_OFF) 333 continue; 334 335 ret = drm_fb_helper_restore_fbdev_mode(helper); 336 if (ret) 337 error = true; 338 } 339 return error; 340 } 341 342 static int drm_fb_helper_panic(struct notifier_block *n, unsigned long ununsed, 343 void *panic_str) 344 { 345 /* 346 * It's a waste of time and effort to switch back to text console 347 * if the kernel should reboot before panic messages can be seen. 348 */ 349 if (panic_timeout < 0) 350 return 0; 351 352 pr_err("panic occurred, switching back to text console\n"); 353 return drm_fb_helper_force_kernel_mode(); 354 } 355 356 static struct notifier_block paniced = { 357 .notifier_call = drm_fb_helper_panic, 358 }; 359 #endif 360 361 static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper) 362 { 363 struct drm_device *dev = fb_helper->dev; 364 struct drm_crtc *crtc; 365 int bound = 0, crtcs_bound = 0; 366 367 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 368 if (crtc->fb) 369 crtcs_bound++; 370 if (crtc->fb == fb_helper->fb) 371 bound++; 372 } 373 374 if (bound < crtcs_bound) 375 return false; 376 return true; 377 } 378 379 #if 0 380 #ifdef CONFIG_MAGIC_SYSRQ 381 static void drm_fb_helper_restore_work_fn(struct work_struct *ignored) 382 { 383 bool ret; 384 ret = drm_fb_helper_force_kernel_mode(); 385 if (ret == true) 386 DRM_ERROR("Failed to restore crtc configuration\n"); 387 } 388 static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn); 389 390 static void drm_fb_helper_sysrq(int dummy1) 391 { 392 schedule_work(&drm_fb_helper_restore_work); 393 } 394 395 static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { 396 .handler = drm_fb_helper_sysrq, 397 .help_msg = "force-fb(V)", 398 .action_msg = "Restore framebuffer console", 399 }; 400 #else 401 static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { }; 402 #endif 403 404 static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode) 405 { 406 struct drm_fb_helper *fb_helper = info->par; 407 struct drm_device *dev = fb_helper->dev; 408 struct drm_crtc *crtc; 409 struct drm_connector *connector; 410 int i, j; 411 412 /* 413 * fbdev->blank can be called from irq context in case of a panic. 414 * Since we already have our own special panic handler which will 415 * restore the fbdev console mode completely, just bail out early. 416 */ 417 if (oops_in_progress) 418 return; 419 420 /* 421 * For each CRTC in this fb, turn the connectors on/off. 422 */ 423 drm_modeset_lock_all(dev); 424 if (!drm_fb_helper_is_bound(fb_helper)) { 425 drm_modeset_unlock_all(dev); 426 return; 427 } 428 429 for (i = 0; i < fb_helper->crtc_count; i++) { 430 crtc = fb_helper->crtc_info[i].mode_set.crtc; 431 432 if (!crtc->enabled) 433 continue; 434 435 /* Walk the connectors & encoders on this fb turning them on/off */ 436 for (j = 0; j < fb_helper->connector_count; j++) { 437 connector = fb_helper->connector_info[j]->connector; 438 connector->funcs->dpms(connector, dpms_mode); 439 drm_object_property_set_value(&connector->base, 440 dev->mode_config.dpms_property, dpms_mode); 441 } 442 } 443 drm_modeset_unlock_all(dev); 444 } 445 446 /** 447 * drm_fb_helper_blank - implementation for ->fb_blank 448 * @blank: desired blanking state 449 * @info: fbdev registered by the helper 450 */ 451 int drm_fb_helper_blank(int blank, struct fb_info *info) 452 { 453 switch (blank) { 454 /* Display: On; HSync: On, VSync: On */ 455 case FB_BLANK_UNBLANK: 456 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON); 457 break; 458 /* Display: Off; HSync: On, VSync: On */ 459 case FB_BLANK_NORMAL: 460 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY); 461 break; 462 /* Display: Off; HSync: Off, VSync: On */ 463 case FB_BLANK_HSYNC_SUSPEND: 464 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY); 465 break; 466 /* Display: Off; HSync: On, VSync: Off */ 467 case FB_BLANK_VSYNC_SUSPEND: 468 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND); 469 break; 470 /* Display: Off; HSync: Off, VSync: Off */ 471 case FB_BLANK_POWERDOWN: 472 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF); 473 break; 474 } 475 return 0; 476 } 477 EXPORT_SYMBOL(drm_fb_helper_blank); 478 #endif 479 480 static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper) 481 { 482 int i; 483 484 for (i = 0; i < helper->connector_count; i++) 485 kfree(helper->connector_info[i]); 486 kfree(helper->connector_info); 487 for (i = 0; i < helper->crtc_count; i++) { 488 kfree(helper->crtc_info[i].mode_set.connectors); 489 if (helper->crtc_info[i].mode_set.mode) 490 drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode); 491 } 492 kfree(helper->crtc_info); 493 } 494 495 /** 496 * drm_fb_helper_init - initialize a drm_fb_helper structure 497 * @dev: drm device 498 * @fb_helper: driver-allocated fbdev helper structure to initialize 499 * @crtc_count: maximum number of crtcs to support in this fbdev emulation 500 * @max_conn_count: max connector count 501 * 502 * This allocates the structures for the fbdev helper with the given limits. 503 * Note that this won't yet touch the hardware (through the driver interfaces) 504 * nor register the fbdev. This is only done in drm_fb_helper_initial_config() 505 * to allow driver writes more control over the exact init sequence. 506 * 507 * Drivers must set fb_helper->funcs before calling 508 * drm_fb_helper_initial_config(). 509 * 510 * RETURNS: 511 * Zero if everything went ok, nonzero otherwise. 512 */ 513 int drm_fb_helper_init(struct drm_device *dev, 514 struct drm_fb_helper *fb_helper, 515 int crtc_count, int max_conn_count) 516 { 517 struct drm_crtc *crtc; 518 int i; 519 520 fb_helper->dev = dev; 521 522 INIT_LIST_HEAD(&fb_helper->kernel_fb_list); 523 524 fb_helper->crtc_info = kmalloc(crtc_count * 525 sizeof(struct drm_fb_helper_crtc), M_DRM, M_WAITOK | M_ZERO); 526 if (!fb_helper->crtc_info) 527 return -ENOMEM; 528 529 fb_helper->crtc_count = crtc_count; 530 fb_helper->connector_info = kmalloc(dev->mode_config.num_connector * 531 sizeof(struct drm_fb_helper_connector *), M_DRM, 532 M_WAITOK | M_ZERO); 533 if (!fb_helper->connector_info) { 534 kfree(fb_helper->crtc_info); 535 return -ENOMEM; 536 } 537 fb_helper->connector_count = 0; 538 539 for (i = 0; i < crtc_count; i++) { 540 fb_helper->crtc_info[i].mode_set.connectors = 541 kmalloc(max_conn_count * sizeof(struct drm_connector *), 542 M_DRM, M_WAITOK | M_ZERO); 543 544 if (!fb_helper->crtc_info[i].mode_set.connectors) 545 goto out_free; 546 fb_helper->crtc_info[i].mode_set.num_connectors = 0; 547 } 548 549 i = 0; 550 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 551 fb_helper->crtc_info[i].mode_set.crtc = crtc; 552 i++; 553 } 554 555 return 0; 556 out_free: 557 drm_fb_helper_crtc_free(fb_helper); 558 return -ENOMEM; 559 } 560 EXPORT_SYMBOL(drm_fb_helper_init); 561 562 void drm_fb_helper_fini(struct drm_fb_helper *fb_helper) 563 { 564 if (!list_empty(&fb_helper->kernel_fb_list)) { 565 list_del(&fb_helper->kernel_fb_list); 566 if (list_empty(&kernel_fb_helper_list)) { 567 #if 0 568 pr_info("drm: unregistered panic notifier\n"); 569 atomic_notifier_chain_unregister(&panic_notifier_list, 570 &paniced); 571 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op); 572 #endif 573 } 574 } 575 576 drm_fb_helper_crtc_free(fb_helper); 577 578 } 579 EXPORT_SYMBOL(drm_fb_helper_fini); 580 581 #if 0 582 static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green, 583 u16 blue, u16 regno, struct fb_info *info) 584 { 585 struct drm_fb_helper *fb_helper = info->par; 586 struct drm_framebuffer *fb = fb_helper->fb; 587 int pindex; 588 589 if (info->fix.visual == FB_VISUAL_TRUECOLOR) { 590 u32 *palette; 591 u32 value; 592 /* place color in psuedopalette */ 593 if (regno > 16) 594 return -EINVAL; 595 palette = (u32 *)info->pseudo_palette; 596 red >>= (16 - info->var.red.length); 597 green >>= (16 - info->var.green.length); 598 blue >>= (16 - info->var.blue.length); 599 value = (red << info->var.red.offset) | 600 (green << info->var.green.offset) | 601 (blue << info->var.blue.offset); 602 if (info->var.transp.length > 0) { 603 u32 mask = (1 << info->var.transp.length) - 1; 604 mask <<= info->var.transp.offset; 605 value |= mask; 606 } 607 palette[regno] = value; 608 return 0; 609 } 610 611 /* 612 * The driver really shouldn't advertise pseudo/directcolor 613 * visuals if it can't deal with the palette. 614 */ 615 if (WARN_ON(!fb_helper->funcs->gamma_set || 616 !fb_helper->funcs->gamma_get)) 617 return -EINVAL; 618 619 pindex = regno; 620 621 if (fb->bits_per_pixel == 16) { 622 pindex = regno << 3; 623 624 if (fb->depth == 16 && regno > 63) 625 return -EINVAL; 626 if (fb->depth == 15 && regno > 31) 627 return -EINVAL; 628 629 if (fb->depth == 16) { 630 u16 r, g, b; 631 int i; 632 if (regno < 32) { 633 for (i = 0; i < 8; i++) 634 fb_helper->funcs->gamma_set(crtc, red, 635 green, blue, pindex + i); 636 } 637 638 fb_helper->funcs->gamma_get(crtc, &r, 639 &g, &b, 640 pindex >> 1); 641 642 for (i = 0; i < 4; i++) 643 fb_helper->funcs->gamma_set(crtc, r, 644 green, b, 645 (pindex >> 1) + i); 646 } 647 } 648 649 if (fb->depth != 16) 650 fb_helper->funcs->gamma_set(crtc, red, green, blue, pindex); 651 return 0; 652 } 653 654 /** 655 * drm_fb_helper_setcmap - implementation for ->fb_setcmap 656 * @cmap: cmap to set 657 * @info: fbdev registered by the helper 658 */ 659 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info) 660 { 661 struct drm_fb_helper *fb_helper = info->par; 662 struct drm_device *dev = fb_helper->dev; 663 struct drm_crtc_helper_funcs *crtc_funcs; 664 u16 *red, *green, *blue, *transp; 665 struct drm_crtc *crtc; 666 int i, j, rc = 0; 667 int start; 668 669 drm_modeset_lock_all(dev); 670 if (!drm_fb_helper_is_bound(fb_helper)) { 671 drm_modeset_unlock_all(dev); 672 return -EBUSY; 673 } 674 675 for (i = 0; i < fb_helper->crtc_count; i++) { 676 crtc = fb_helper->crtc_info[i].mode_set.crtc; 677 crtc_funcs = crtc->helper_private; 678 679 red = cmap->red; 680 green = cmap->green; 681 blue = cmap->blue; 682 transp = cmap->transp; 683 start = cmap->start; 684 685 for (j = 0; j < cmap->len; j++) { 686 u16 hred, hgreen, hblue, htransp = 0xffff; 687 688 hred = *red++; 689 hgreen = *green++; 690 hblue = *blue++; 691 692 if (transp) 693 htransp = *transp++; 694 695 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info); 696 if (rc) 697 goto out; 698 } 699 if (crtc_funcs->load_lut) 700 crtc_funcs->load_lut(crtc); 701 } 702 out: 703 drm_modeset_unlock_all(dev); 704 return rc; 705 } 706 EXPORT_SYMBOL(drm_fb_helper_setcmap); 707 708 /** 709 * drm_fb_helper_check_var - implementation for ->fb_check_var 710 * @var: screeninfo to check 711 * @info: fbdev registered by the helper 712 */ 713 int drm_fb_helper_check_var(struct fb_var_screeninfo *var, 714 struct fb_info *info) 715 { 716 struct drm_fb_helper *fb_helper = info->par; 717 struct drm_framebuffer *fb = fb_helper->fb; 718 int depth; 719 720 if (var->pixclock != 0 || in_dbg_master()) 721 return -EINVAL; 722 723 /* Need to resize the fb object !!! */ 724 if (var->bits_per_pixel > fb->bits_per_pixel || 725 var->xres > fb->width || var->yres > fb->height || 726 var->xres_virtual > fb->width || var->yres_virtual > fb->height) { 727 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb " 728 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n", 729 var->xres, var->yres, var->bits_per_pixel, 730 var->xres_virtual, var->yres_virtual, 731 fb->width, fb->height, fb->bits_per_pixel); 732 return -EINVAL; 733 } 734 735 switch (var->bits_per_pixel) { 736 case 16: 737 depth = (var->green.length == 6) ? 16 : 15; 738 break; 739 case 32: 740 depth = (var->transp.length > 0) ? 32 : 24; 741 break; 742 default: 743 depth = var->bits_per_pixel; 744 break; 745 } 746 747 switch (depth) { 748 case 8: 749 var->red.offset = 0; 750 var->green.offset = 0; 751 var->blue.offset = 0; 752 var->red.length = 8; 753 var->green.length = 8; 754 var->blue.length = 8; 755 var->transp.length = 0; 756 var->transp.offset = 0; 757 break; 758 case 15: 759 var->red.offset = 10; 760 var->green.offset = 5; 761 var->blue.offset = 0; 762 var->red.length = 5; 763 var->green.length = 5; 764 var->blue.length = 5; 765 var->transp.length = 1; 766 var->transp.offset = 15; 767 break; 768 case 16: 769 var->red.offset = 11; 770 var->green.offset = 5; 771 var->blue.offset = 0; 772 var->red.length = 5; 773 var->green.length = 6; 774 var->blue.length = 5; 775 var->transp.length = 0; 776 var->transp.offset = 0; 777 break; 778 case 24: 779 var->red.offset = 16; 780 var->green.offset = 8; 781 var->blue.offset = 0; 782 var->red.length = 8; 783 var->green.length = 8; 784 var->blue.length = 8; 785 var->transp.length = 0; 786 var->transp.offset = 0; 787 break; 788 case 32: 789 var->red.offset = 16; 790 var->green.offset = 8; 791 var->blue.offset = 0; 792 var->red.length = 8; 793 var->green.length = 8; 794 var->blue.length = 8; 795 var->transp.length = 8; 796 var->transp.offset = 24; 797 break; 798 default: 799 return -EINVAL; 800 } 801 return 0; 802 } 803 EXPORT_SYMBOL(drm_fb_helper_check_var); 804 805 /** 806 * drm_fb_helper_set_par - implementation for ->fb_set_par 807 * @info: fbdev registered by the helper 808 * 809 * This will let fbcon do the mode init and is called at initialization time by 810 * the fbdev core when registering the driver, and later on through the hotplug 811 * callback. 812 */ 813 int drm_fb_helper_set_par(struct fb_info *info) 814 { 815 struct drm_fb_helper *fb_helper = info->par; 816 struct drm_device *dev = fb_helper->dev; 817 struct fb_var_screeninfo *var = &info->var; 818 int ret; 819 int i; 820 821 if (var->pixclock != 0) { 822 DRM_ERROR("PIXEL CLOCK SET\n"); 823 return -EINVAL; 824 } 825 826 drm_modeset_lock_all(dev); 827 for (i = 0; i < fb_helper->crtc_count; i++) { 828 ret = drm_mode_set_config_internal(&fb_helper->crtc_info[i].mode_set); 829 if (ret) { 830 drm_modeset_unlock_all(dev); 831 return ret; 832 } 833 } 834 drm_modeset_unlock_all(dev); 835 836 if (fb_helper->delayed_hotplug) { 837 fb_helper->delayed_hotplug = false; 838 drm_fb_helper_hotplug_event(fb_helper); 839 } 840 return 0; 841 } 842 EXPORT_SYMBOL(drm_fb_helper_set_par); 843 844 /** 845 * drm_fb_helper_pan_display - implementation for ->fb_pan_display 846 * @var: updated screen information 847 * @info: fbdev registered by the helper 848 */ 849 int drm_fb_helper_pan_display(struct fb_var_screeninfo *var, 850 struct fb_info *info) 851 { 852 struct drm_fb_helper *fb_helper = info->par; 853 struct drm_device *dev = fb_helper->dev; 854 struct drm_mode_set *modeset; 855 int ret = 0; 856 int i; 857 858 drm_modeset_lock_all(dev); 859 if (!drm_fb_helper_is_bound(fb_helper)) { 860 drm_modeset_unlock_all(dev); 861 return -EBUSY; 862 } 863 864 for (i = 0; i < fb_helper->crtc_count; i++) { 865 modeset = &fb_helper->crtc_info[i].mode_set; 866 867 modeset->x = var->xoffset; 868 modeset->y = var->yoffset; 869 870 if (modeset->num_connectors) { 871 ret = drm_mode_set_config_internal(modeset); 872 if (!ret) { 873 info->var.xoffset = var->xoffset; 874 info->var.yoffset = var->yoffset; 875 } 876 } 877 } 878 drm_modeset_unlock_all(dev); 879 return ret; 880 } 881 EXPORT_SYMBOL(drm_fb_helper_pan_display); 882 #endif 883 884 /* 885 * Allocates the backing storage and sets up the fbdev info structure through 886 * the ->fb_probe callback and then registers the fbdev and sets up the panic 887 * notifier. 888 */ 889 static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper, 890 int preferred_bpp) 891 { 892 int ret = 0; 893 int crtc_count = 0; 894 int i; 895 struct fb_info *info; 896 struct drm_fb_helper_surface_size sizes; 897 int gamma_size = 0; 898 899 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size)); 900 sizes.surface_depth = 24; 901 sizes.surface_bpp = 32; 902 sizes.fb_width = (unsigned)-1; 903 sizes.fb_height = (unsigned)-1; 904 905 /* if driver picks 8 or 16 by default use that 906 for both depth/bpp */ 907 if (preferred_bpp != sizes.surface_bpp) 908 sizes.surface_depth = sizes.surface_bpp = preferred_bpp; 909 910 /* first up get a count of crtcs now in use and new min/maxes width/heights */ 911 for (i = 0; i < fb_helper->connector_count; i++) { 912 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i]; 913 struct drm_cmdline_mode *cmdline_mode; 914 915 cmdline_mode = &fb_helper_conn->cmdline_mode; 916 917 if (cmdline_mode->bpp_specified) { 918 switch (cmdline_mode->bpp) { 919 case 8: 920 sizes.surface_depth = sizes.surface_bpp = 8; 921 break; 922 case 15: 923 sizes.surface_depth = 15; 924 sizes.surface_bpp = 16; 925 break; 926 case 16: 927 sizes.surface_depth = sizes.surface_bpp = 16; 928 break; 929 case 24: 930 sizes.surface_depth = sizes.surface_bpp = 24; 931 break; 932 case 32: 933 sizes.surface_depth = 24; 934 sizes.surface_bpp = 32; 935 break; 936 } 937 break; 938 } 939 } 940 941 crtc_count = 0; 942 for (i = 0; i < fb_helper->crtc_count; i++) { 943 struct drm_display_mode *desired_mode; 944 desired_mode = fb_helper->crtc_info[i].desired_mode; 945 946 if (desired_mode) { 947 if (gamma_size == 0) 948 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size; 949 if (desired_mode->hdisplay < sizes.fb_width) 950 sizes.fb_width = desired_mode->hdisplay; 951 if (desired_mode->vdisplay < sizes.fb_height) 952 sizes.fb_height = desired_mode->vdisplay; 953 if (desired_mode->hdisplay > sizes.surface_width) 954 sizes.surface_width = desired_mode->hdisplay; 955 if (desired_mode->vdisplay > sizes.surface_height) 956 sizes.surface_height = desired_mode->vdisplay; 957 crtc_count++; 958 } 959 } 960 961 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) { 962 /* hmm everyone went away - assume VGA cable just fell out 963 and will come back later. */ 964 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n"); 965 sizes.fb_width = sizes.surface_width = 1024; 966 sizes.fb_height = sizes.surface_height = 768; 967 } 968 969 /* push down into drivers */ 970 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes); 971 if (ret < 0) 972 return ret; 973 974 info = fb_helper->fbdev; 975 976 /* 977 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug 978 * events, but at init time drm_setup_crtcs needs to be called before 979 * the fb is allocated (since we need to figure out the desired size of 980 * the fb before we can allocate it ...). Hence we need to fix things up 981 * here again. 982 */ 983 for (i = 0; i < fb_helper->crtc_count; i++) 984 if (fb_helper->crtc_info[i].mode_set.num_connectors) 985 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb; 986 987 988 #if 0 989 info->var.pixclock = 0; 990 if (register_framebuffer(info) < 0) 991 return -EINVAL; 992 993 dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n", 994 info->node, info->fix.id); 995 996 /* Switch back to kernel console on panic */ 997 /* multi card linked list maybe */ 998 if (list_empty(&kernel_fb_helper_list)) { 999 dev_info(fb_helper->dev->dev, "registered panic notifier\n"); 1000 atomic_notifier_chain_register(&panic_notifier_list, 1001 &paniced); 1002 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op); 1003 } 1004 1005 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list); 1006 #endif 1007 1008 return 0; 1009 } 1010 1011 #if 0 1012 /** 1013 * drm_fb_helper_fill_fix - initializes fixed fbdev information 1014 * @info: fbdev registered by the helper 1015 * @pitch: desired pitch 1016 * @depth: desired depth 1017 * 1018 * Helper to fill in the fixed fbdev information useful for a non-accelerated 1019 * fbdev emulations. Drivers which support acceleration methods which impose 1020 * additional constraints need to set up their own limits. 1021 * 1022 * Drivers should call this (or their equivalent setup code) from their 1023 * ->fb_probe callback. 1024 */ 1025 void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch, 1026 uint32_t depth) 1027 { 1028 info->fix.type = FB_TYPE_PACKED_PIXELS; 1029 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR : 1030 FB_VISUAL_TRUECOLOR; 1031 info->fix.mmio_start = 0; 1032 info->fix.mmio_len = 0; 1033 info->fix.type_aux = 0; 1034 info->fix.xpanstep = 1; /* doing it in hw */ 1035 info->fix.ypanstep = 1; /* doing it in hw */ 1036 info->fix.ywrapstep = 0; 1037 info->fix.accel = FB_ACCEL_NONE; 1038 info->fix.type_aux = 0; 1039 1040 info->fix.line_length = pitch; 1041 return; 1042 } 1043 EXPORT_SYMBOL(drm_fb_helper_fill_fix); 1044 1045 /** 1046 * drm_fb_helper_fill_var - initalizes variable fbdev information 1047 * @info: fbdev instance to set up 1048 * @fb_helper: fb helper instance to use as template 1049 * @fb_width: desired fb width 1050 * @fb_height: desired fb height 1051 * 1052 * Sets up the variable fbdev metainformation from the given fb helper instance 1053 * and the drm framebuffer allocated in fb_helper->fb. 1054 * 1055 * Drivers should call this (or their equivalent setup code) from their 1056 * ->fb_probe callback after having allocated the fbdev backing 1057 * storage framebuffer. 1058 */ 1059 void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper, 1060 uint32_t fb_width, uint32_t fb_height) 1061 { 1062 struct drm_framebuffer *fb = fb_helper->fb; 1063 info->pseudo_palette = fb_helper->pseudo_palette; 1064 info->var.xres_virtual = fb->width; 1065 info->var.yres_virtual = fb->height; 1066 info->var.bits_per_pixel = fb->bits_per_pixel; 1067 info->var.accel_flags = FB_ACCELF_TEXT; 1068 info->var.xoffset = 0; 1069 info->var.yoffset = 0; 1070 info->var.activate = FB_ACTIVATE_NOW; 1071 info->var.height = -1; 1072 info->var.width = -1; 1073 1074 switch (fb->depth) { 1075 case 8: 1076 info->var.red.offset = 0; 1077 info->var.green.offset = 0; 1078 info->var.blue.offset = 0; 1079 info->var.red.length = 8; /* 8bit DAC */ 1080 info->var.green.length = 8; 1081 info->var.blue.length = 8; 1082 info->var.transp.offset = 0; 1083 info->var.transp.length = 0; 1084 break; 1085 case 15: 1086 info->var.red.offset = 10; 1087 info->var.green.offset = 5; 1088 info->var.blue.offset = 0; 1089 info->var.red.length = 5; 1090 info->var.green.length = 5; 1091 info->var.blue.length = 5; 1092 info->var.transp.offset = 15; 1093 info->var.transp.length = 1; 1094 break; 1095 case 16: 1096 info->var.red.offset = 11; 1097 info->var.green.offset = 5; 1098 info->var.blue.offset = 0; 1099 info->var.red.length = 5; 1100 info->var.green.length = 6; 1101 info->var.blue.length = 5; 1102 info->var.transp.offset = 0; 1103 break; 1104 case 24: 1105 info->var.red.offset = 16; 1106 info->var.green.offset = 8; 1107 info->var.blue.offset = 0; 1108 info->var.red.length = 8; 1109 info->var.green.length = 8; 1110 info->var.blue.length = 8; 1111 info->var.transp.offset = 0; 1112 info->var.transp.length = 0; 1113 break; 1114 case 32: 1115 info->var.red.offset = 16; 1116 info->var.green.offset = 8; 1117 info->var.blue.offset = 0; 1118 info->var.red.length = 8; 1119 info->var.green.length = 8; 1120 info->var.blue.length = 8; 1121 info->var.transp.offset = 24; 1122 info->var.transp.length = 8; 1123 break; 1124 default: 1125 break; 1126 } 1127 1128 info->var.xres = fb_width; 1129 info->var.yres = fb_height; 1130 } 1131 EXPORT_SYMBOL(drm_fb_helper_fill_var); 1132 #endif 1133 1134 static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper, 1135 uint32_t maxX, 1136 uint32_t maxY) 1137 { 1138 struct drm_connector *connector; 1139 int count = 0; 1140 int i; 1141 1142 for (i = 0; i < fb_helper->connector_count; i++) { 1143 connector = fb_helper->connector_info[i]->connector; 1144 count += connector->funcs->fill_modes(connector, maxX, maxY); 1145 } 1146 1147 return count; 1148 } 1149 1150 static struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector *fb_connector, int width, int height) 1151 { 1152 struct drm_display_mode *mode; 1153 1154 list_for_each_entry(mode, &fb_connector->connector->modes, head) { 1155 if (drm_mode_width(mode) > width || 1156 drm_mode_height(mode) > height) 1157 continue; 1158 if (mode->type & DRM_MODE_TYPE_PREFERRED) 1159 return mode; 1160 } 1161 return NULL; 1162 } 1163 1164 static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector) 1165 { 1166 struct drm_cmdline_mode *cmdline_mode; 1167 cmdline_mode = &fb_connector->cmdline_mode; 1168 return cmdline_mode->specified; 1169 } 1170 1171 static struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn, 1172 int width, int height) 1173 { 1174 struct drm_cmdline_mode *cmdline_mode; 1175 struct drm_display_mode *mode = NULL; 1176 1177 cmdline_mode = &fb_helper_conn->cmdline_mode; 1178 if (cmdline_mode->specified == false) 1179 return mode; 1180 1181 /* attempt to find a matching mode in the list of modes 1182 * we have gotten so far, if not add a CVT mode that conforms 1183 */ 1184 if (cmdline_mode->rb || cmdline_mode->margins) 1185 goto create_mode; 1186 1187 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) { 1188 /* check width/height */ 1189 if (mode->hdisplay != cmdline_mode->xres || 1190 mode->vdisplay != cmdline_mode->yres) 1191 continue; 1192 1193 if (cmdline_mode->refresh_specified) { 1194 if (mode->vrefresh != cmdline_mode->refresh) 1195 continue; 1196 } 1197 1198 if (cmdline_mode->interlace) { 1199 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE)) 1200 continue; 1201 } 1202 return mode; 1203 } 1204 1205 create_mode: 1206 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev, 1207 cmdline_mode); 1208 list_add(&mode->head, &fb_helper_conn->connector->modes); 1209 return mode; 1210 } 1211 1212 static bool drm_connector_enabled(struct drm_connector *connector, bool strict) 1213 { 1214 bool enable; 1215 1216 if (strict) 1217 enable = connector->status == connector_status_connected; 1218 else 1219 enable = connector->status != connector_status_disconnected; 1220 1221 return enable; 1222 } 1223 1224 static void drm_enable_connectors(struct drm_fb_helper *fb_helper, 1225 bool *enabled) 1226 { 1227 bool any_enabled = false; 1228 struct drm_connector *connector; 1229 int i = 0; 1230 1231 for (i = 0; i < fb_helper->connector_count; i++) { 1232 connector = fb_helper->connector_info[i]->connector; 1233 enabled[i] = drm_connector_enabled(connector, true); 1234 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id, 1235 enabled[i] ? "yes" : "no"); 1236 any_enabled |= enabled[i]; 1237 } 1238 1239 if (any_enabled) 1240 return; 1241 1242 for (i = 0; i < fb_helper->connector_count; i++) { 1243 connector = fb_helper->connector_info[i]->connector; 1244 enabled[i] = drm_connector_enabled(connector, false); 1245 } 1246 } 1247 1248 static bool drm_target_cloned(struct drm_fb_helper *fb_helper, 1249 struct drm_display_mode **modes, 1250 bool *enabled, int width, int height) 1251 { 1252 int count, i, j; 1253 bool can_clone = false; 1254 struct drm_fb_helper_connector *fb_helper_conn; 1255 struct drm_display_mode *dmt_mode, *mode; 1256 1257 /* only contemplate cloning in the single crtc case */ 1258 if (fb_helper->crtc_count > 1) 1259 return false; 1260 1261 count = 0; 1262 for (i = 0; i < fb_helper->connector_count; i++) { 1263 if (enabled[i]) 1264 count++; 1265 } 1266 1267 /* only contemplate cloning if more than one connector is enabled */ 1268 if (count <= 1) 1269 return false; 1270 1271 /* check the command line or if nothing common pick 1024x768 */ 1272 can_clone = true; 1273 for (i = 0; i < fb_helper->connector_count; i++) { 1274 if (!enabled[i]) 1275 continue; 1276 fb_helper_conn = fb_helper->connector_info[i]; 1277 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height); 1278 if (!modes[i]) { 1279 can_clone = false; 1280 break; 1281 } 1282 for (j = 0; j < i; j++) { 1283 if (!enabled[j]) 1284 continue; 1285 if (!drm_mode_equal(modes[j], modes[i])) 1286 can_clone = false; 1287 } 1288 } 1289 1290 if (can_clone) { 1291 DRM_DEBUG_KMS("can clone using command line\n"); 1292 return true; 1293 } 1294 1295 /* try and find a 1024x768 mode on each connector */ 1296 can_clone = true; 1297 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false); 1298 1299 for (i = 0; i < fb_helper->connector_count; i++) { 1300 1301 if (!enabled[i]) 1302 continue; 1303 1304 fb_helper_conn = fb_helper->connector_info[i]; 1305 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) { 1306 if (drm_mode_equal(mode, dmt_mode)) 1307 modes[i] = mode; 1308 } 1309 if (!modes[i]) 1310 can_clone = false; 1311 } 1312 1313 if (can_clone) { 1314 DRM_DEBUG_KMS("can clone using 1024x768\n"); 1315 return true; 1316 } 1317 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n"); 1318 return false; 1319 } 1320 1321 static bool drm_target_preferred(struct drm_fb_helper *fb_helper, 1322 struct drm_display_mode **modes, 1323 bool *enabled, int width, int height) 1324 { 1325 struct drm_fb_helper_connector *fb_helper_conn; 1326 int i; 1327 1328 for (i = 0; i < fb_helper->connector_count; i++) { 1329 fb_helper_conn = fb_helper->connector_info[i]; 1330 1331 if (enabled[i] == false) 1332 continue; 1333 1334 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n", 1335 fb_helper_conn->connector->base.id); 1336 1337 /* got for command line mode first */ 1338 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height); 1339 if (!modes[i]) { 1340 DRM_DEBUG_KMS("looking for preferred mode on connector %d\n", 1341 fb_helper_conn->connector->base.id); 1342 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height); 1343 } 1344 /* No preferred modes, pick one off the list */ 1345 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) { 1346 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head) 1347 break; 1348 } 1349 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name : 1350 "none"); 1351 } 1352 return true; 1353 } 1354 1355 static int drm_pick_crtcs(struct drm_fb_helper *fb_helper, 1356 struct drm_fb_helper_crtc **best_crtcs, 1357 struct drm_display_mode **modes, 1358 int n, int width, int height) 1359 { 1360 int c, o; 1361 struct drm_device *dev = fb_helper->dev; 1362 struct drm_connector *connector; 1363 struct drm_connector_helper_funcs *connector_funcs; 1364 struct drm_encoder *encoder; 1365 int my_score, best_score, score; 1366 struct drm_fb_helper_crtc **crtcs, *crtc; 1367 struct drm_fb_helper_connector *fb_helper_conn; 1368 1369 if (n == fb_helper->connector_count) 1370 return 0; 1371 1372 fb_helper_conn = fb_helper->connector_info[n]; 1373 connector = fb_helper_conn->connector; 1374 1375 best_crtcs[n] = NULL; 1376 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height); 1377 if (modes[n] == NULL) 1378 return best_score; 1379 1380 crtcs = kzalloc(dev->mode_config.num_connector * 1381 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL); 1382 if (!crtcs) 1383 return best_score; 1384 1385 my_score = 1; 1386 if (connector->status == connector_status_connected) 1387 my_score++; 1388 if (drm_has_cmdline_mode(fb_helper_conn)) 1389 my_score++; 1390 if (drm_has_preferred_mode(fb_helper_conn, width, height)) 1391 my_score++; 1392 1393 connector_funcs = connector->helper_private; 1394 encoder = connector_funcs->best_encoder(connector); 1395 if (!encoder) 1396 goto out; 1397 1398 /* select a crtc for this connector and then attempt to configure 1399 remaining connectors */ 1400 for (c = 0; c < fb_helper->crtc_count; c++) { 1401 crtc = &fb_helper->crtc_info[c]; 1402 1403 if ((encoder->possible_crtcs & (1 << c)) == 0) 1404 continue; 1405 1406 for (o = 0; o < n; o++) 1407 if (best_crtcs[o] == crtc) 1408 break; 1409 1410 if (o < n) { 1411 /* ignore cloning unless only a single crtc */ 1412 if (fb_helper->crtc_count > 1) 1413 continue; 1414 1415 if (!drm_mode_equal(modes[o], modes[n])) 1416 continue; 1417 } 1418 1419 crtcs[n] = crtc; 1420 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *)); 1421 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1, 1422 width, height); 1423 if (score > best_score) { 1424 best_score = score; 1425 memcpy(best_crtcs, crtcs, 1426 dev->mode_config.num_connector * 1427 sizeof(struct drm_fb_helper_crtc *)); 1428 } 1429 } 1430 out: 1431 kfree(crtcs); 1432 return best_score; 1433 } 1434 1435 static void drm_setup_crtcs(struct drm_fb_helper *fb_helper) 1436 { 1437 struct drm_device *dev = fb_helper->dev; 1438 struct drm_fb_helper_crtc **crtcs; 1439 struct drm_display_mode **modes; 1440 struct drm_mode_set *modeset; 1441 bool *enabled; 1442 int width, height; 1443 int i; 1444 1445 DRM_DEBUG_KMS("\n"); 1446 1447 width = dev->mode_config.max_width; 1448 height = dev->mode_config.max_height; 1449 1450 crtcs = kmalloc(dev->mode_config.num_connector * 1451 sizeof(struct drm_fb_helper_crtc *), M_DRM, 1452 M_WAITOK | M_ZERO); 1453 modes = kmalloc(dev->mode_config.num_connector * 1454 sizeof(struct drm_display_mode *), M_DRM, 1455 M_WAITOK | M_ZERO); 1456 enabled = kmalloc(dev->mode_config.num_connector * 1457 sizeof(bool), M_DRM, M_WAITOK | M_ZERO); 1458 if (!crtcs || !modes || !enabled) { 1459 DRM_ERROR("Memory allocation failed\n"); 1460 goto out; 1461 } 1462 1463 1464 drm_enable_connectors(fb_helper, enabled); 1465 1466 if (!(fb_helper->funcs->initial_config && 1467 fb_helper->funcs->initial_config(fb_helper, crtcs, modes, 1468 enabled, width, height))) { 1469 memset(modes, 0, dev->mode_config.num_connector*sizeof(modes[0])); 1470 memset(crtcs, 0, dev->mode_config.num_connector*sizeof(crtcs[0])); 1471 1472 if (!drm_target_cloned(fb_helper, 1473 modes, enabled, width, height) && 1474 !drm_target_preferred(fb_helper, 1475 modes, enabled, width, height)) 1476 DRM_ERROR("Unable to find initial modes\n"); 1477 1478 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n", 1479 width, height); 1480 1481 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height); 1482 } 1483 1484 /* need to set the modesets up here for use later */ 1485 /* fill out the connector<->crtc mappings into the modesets */ 1486 for (i = 0; i < fb_helper->crtc_count; i++) { 1487 modeset = &fb_helper->crtc_info[i].mode_set; 1488 modeset->num_connectors = 0; 1489 modeset->fb = NULL; 1490 } 1491 1492 for (i = 0; i < fb_helper->connector_count; i++) { 1493 struct drm_display_mode *mode = modes[i]; 1494 struct drm_fb_helper_crtc *fb_crtc = crtcs[i]; 1495 modeset = &fb_crtc->mode_set; 1496 1497 if (mode && fb_crtc) { 1498 DRM_DEBUG_KMS("desired mode %s set on crtc %d\n", 1499 mode->name, fb_crtc->mode_set.crtc->base.id); 1500 fb_crtc->desired_mode = mode; 1501 if (modeset->mode) 1502 drm_mode_destroy(dev, modeset->mode); 1503 modeset->mode = drm_mode_duplicate(dev, 1504 fb_crtc->desired_mode); 1505 modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector; 1506 modeset->fb = fb_helper->fb; 1507 } 1508 } 1509 1510 /* Clear out any old modes if there are no more connected outputs. */ 1511 for (i = 0; i < fb_helper->crtc_count; i++) { 1512 modeset = &fb_helper->crtc_info[i].mode_set; 1513 if (modeset->num_connectors == 0) { 1514 BUG_ON(modeset->fb); 1515 BUG_ON(modeset->num_connectors); 1516 if (modeset->mode) 1517 drm_mode_destroy(dev, modeset->mode); 1518 modeset->mode = NULL; 1519 } 1520 } 1521 out: 1522 kfree(crtcs); 1523 kfree(modes); 1524 kfree(enabled); 1525 } 1526 1527 /** 1528 * drm_fb_helper_initial_config - setup a sane initial connector configuration 1529 * @fb_helper: fb_helper device struct 1530 * @bpp_sel: bpp value to use for the framebuffer configuration 1531 * 1532 * Scans the CRTCs and connectors and tries to put together an initial setup. 1533 * At the moment, this is a cloned configuration across all heads with 1534 * a new framebuffer object as the backing store. 1535 * 1536 * Note that this also registers the fbdev and so allows userspace to call into 1537 * the driver through the fbdev interfaces. 1538 * 1539 * This function will call down into the ->fb_probe callback to let 1540 * the driver allocate and initialize the fbdev info structure and the drm 1541 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and 1542 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default 1543 * values for the fbdev info structure. 1544 * 1545 * RETURNS: 1546 * Zero if everything went ok, nonzero otherwise. 1547 */ 1548 bool drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel) 1549 { 1550 struct drm_device *dev = fb_helper->dev; 1551 int count = 0; 1552 1553 drm_fb_helper_parse_command_line(fb_helper); 1554 1555 count = drm_fb_helper_probe_connector_modes(fb_helper, 1556 dev->mode_config.max_width, 1557 dev->mode_config.max_height); 1558 /* 1559 * we shouldn't end up with no modes here. 1560 */ 1561 if (count == 0) 1562 dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n"); 1563 1564 drm_setup_crtcs(fb_helper); 1565 1566 return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel); 1567 } 1568 EXPORT_SYMBOL(drm_fb_helper_initial_config); 1569 1570 /** 1571 * drm_fb_helper_hotplug_event - respond to a hotplug notification by 1572 * probing all the outputs attached to the fb 1573 * @fb_helper: the drm_fb_helper 1574 * 1575 * Scan the connectors attached to the fb_helper and try to put together a 1576 * setup after *notification of a change in output configuration. 1577 * 1578 * Called at runtime, takes the mode config locks to be able to check/change the 1579 * modeset configuration. Must be run from process context (which usually means 1580 * either the output polling work or a work item launched from the driver's 1581 * hotplug interrupt). 1582 * 1583 * Note that the driver must ensure that this is only called _after_ the fb has 1584 * been fully set up, i.e. after the call to drm_fb_helper_initial_config. 1585 * 1586 * RETURNS: 1587 * 0 on success and a non-zero error code otherwise. 1588 */ 1589 int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper) 1590 { 1591 struct drm_device *dev = fb_helper->dev; 1592 u32 max_width, max_height; 1593 1594 if (!fb_helper->fb) 1595 return 0; 1596 1597 mutex_lock(&fb_helper->dev->mode_config.mutex); 1598 if (!drm_fb_helper_is_bound(fb_helper)) { 1599 fb_helper->delayed_hotplug = true; 1600 mutex_unlock(&fb_helper->dev->mode_config.mutex); 1601 return 0; 1602 } 1603 DRM_DEBUG_KMS("\n"); 1604 1605 max_width = fb_helper->fb->width; 1606 max_height = fb_helper->fb->height; 1607 1608 drm_fb_helper_probe_connector_modes(fb_helper, max_width, max_height); 1609 mutex_unlock(&fb_helper->dev->mode_config.mutex); 1610 1611 drm_modeset_lock_all(dev); 1612 drm_setup_crtcs(fb_helper); 1613 drm_modeset_unlock_all(dev); 1614 #if 0 1615 drm_fb_helper_set_par(fb_helper->fbdev); 1616 #endif 1617 1618 return 0; 1619 } 1620 EXPORT_SYMBOL(drm_fb_helper_hotplug_event); 1621 1622 /* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT) 1623 * but the module doesn't depend on any fb console symbols. At least 1624 * attempt to load fbcon to avoid leaving the system without a usable console. 1625 */ 1626 #if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT) 1627 static int __init drm_fb_helper_modinit(void) 1628 { 1629 const char *name = "fbcon"; 1630 struct module *fbcon; 1631 1632 mutex_lock(&module_mutex); 1633 fbcon = find_module(name); 1634 mutex_unlock(&module_mutex); 1635 1636 if (!fbcon) 1637 request_module_nowait(name); 1638 return 0; 1639 } 1640 1641 module_init(drm_fb_helper_modinit); 1642 #endif 1643