/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_encoder_slave.h | 58 bool (*mode_fixup)(struct drm_encoder *encoder, member in struct:drm_encoder_slave_funcs
|
drm_bridge.h | 91 * @mode_fixup. 101 * @mode_fixup: 114 * The @mode_fixup callback is optional. 135 bool (*mode_fixup)(struct drm_bridge *bridge, member in struct:drm_bridge_funcs
|
drm_modeset_helper_vtables.h | 137 * @mode_fixup or @atomic_check. 147 * @mode_fixup: 152 * of the meaning for the &drm_encoder and &drm_bridge_funcs.mode_fixup 189 bool (*mode_fixup)(struct drm_crtc *crtc, member in struct:drm_crtc_helper_funcs 518 * @mode_fixup or @atomic_check. 528 * @mode_fixup: 554 * of the functionality of @mode_fixup. 567 bool (*mode_fixup)(struct drm_encoder *encoder, member in struct:drm_encoder_helper_funcs 791 * @mode_fixup (the requested and adjusted modes are both available 792 * through the passed in &struct drm_crtc_state) @mode_fixup is no [all...] |
/src/sys/external/bsd/drm2/include/drm/ |
drm_encoder_slave.h | 55 bool (*mode_fixup)(struct drm_encoder *, member in struct:drm_encoder_slave_funcs
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_atomic_helper.c | 407 mode_fixup(struct drm_atomic_state *state) function in typeref:typename:int 439 * it away), so we won't call ->mode_fixup twice. 461 } else if (funcs && funcs->mode_fixup) { 462 ret = funcs->mode_fixup(encoder, &new_crtc_state->mode, 483 if (!funcs || !funcs->mode_fixup) 486 ret = funcs->mode_fixup(crtc, &new_crtc_state->mode, 579 * 5. &drm_bridge_funcs.mode_fixup is called on all encoder bridges. 583 * If this function is NULL, &drm_atomic_encoder_helper_funcs.mode_fixup is called 585 * 7. &drm_crtc_helper_funcs.mode_fixup is called last, to fix up the mode with CRTC constraints. 701 * configuration. This must be done before calling mode_fixup in case [all...] |