• Home
  • Raw
  • Download

Lines Matching refs:adjusted_mode

149 			     struct drm_display_mode *adjusted_mode)  in amdgpu_panel_mode_fixup()  argument
160 adjusted_mode->clock = native_mode->clock; in amdgpu_panel_mode_fixup()
161 adjusted_mode->flags = native_mode->flags; in amdgpu_panel_mode_fixup()
163 adjusted_mode->hdisplay = native_mode->hdisplay; in amdgpu_panel_mode_fixup()
164 adjusted_mode->vdisplay = native_mode->vdisplay; in amdgpu_panel_mode_fixup()
166 adjusted_mode->htotal = native_mode->hdisplay + hblank; in amdgpu_panel_mode_fixup()
167 adjusted_mode->hsync_start = native_mode->hdisplay + hover; in amdgpu_panel_mode_fixup()
168 adjusted_mode->hsync_end = adjusted_mode->hsync_start + hsync_width; in amdgpu_panel_mode_fixup()
170 adjusted_mode->vtotal = native_mode->vdisplay + vblank; in amdgpu_panel_mode_fixup()
171 adjusted_mode->vsync_start = native_mode->vdisplay + vover; in amdgpu_panel_mode_fixup()
172 adjusted_mode->vsync_end = adjusted_mode->vsync_start + vsync_width; in amdgpu_panel_mode_fixup()
174 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V); in amdgpu_panel_mode_fixup()
176 adjusted_mode->crtc_hdisplay = native_mode->hdisplay; in amdgpu_panel_mode_fixup()
177 adjusted_mode->crtc_vdisplay = native_mode->vdisplay; in amdgpu_panel_mode_fixup()
179 adjusted_mode->crtc_htotal = adjusted_mode->crtc_hdisplay + hblank; in amdgpu_panel_mode_fixup()
180 adjusted_mode->crtc_hsync_start = adjusted_mode->crtc_hdisplay + hover; in amdgpu_panel_mode_fixup()
181 adjusted_mode->crtc_hsync_end = adjusted_mode->crtc_hsync_start + hsync_width; in amdgpu_panel_mode_fixup()
183 adjusted_mode->crtc_vtotal = adjusted_mode->crtc_vdisplay + vblank; in amdgpu_panel_mode_fixup()
184 adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vdisplay + vover; in amdgpu_panel_mode_fixup()
185 adjusted_mode->crtc_vsync_end = adjusted_mode->crtc_vsync_start + vsync_width; in amdgpu_panel_mode_fixup()