search for: dpms_mode

Displaying 8 results from an estimated 8 matches for "dpms_mode".

Did you mean: dos_mode
2010 Aug 05
0
[PATCH] drmmode: Add backlight support
...klight_deprecated_atom; } drmmode_rec, *drmmode_ptr; typedef struct { @@ -81,6 +99,10 @@ typedef struct { drmModePropertyBlobPtr edid_blob; int num_props; drmmode_prop_ptr props; + char *backlight_iface; + int32_t backlight_active_level; + int32_t backlight_max; + int dpms_mode; } drmmode_output_private_rec, *drmmode_output_private_ptr; static void drmmode_output_dpms(xf86OutputPtr output, int mode); @@ -160,6 +182,155 @@ drmmode_ConvertToKMode(ScrnInfoPtr scrn, drmModeModeInfo *kmode, } static void +drmmode_backlight_set(xf86OutputPtr output, int level) +{ + drmm...
2017 Mar 04
0
[DDX PATCH] Consider CRTCs disabled when DPMS is off
...sertions(+), 11 deletions(-) diff --git a/src/drmmode_display.c b/src/drmmode_display.c index b6c9bb9..dd9fa27 100644 --- a/src/drmmode_display.c +++ b/src/drmmode_display.c @@ -65,6 +65,7 @@ typedef struct { uint32_t rotate_fb_id; Bool cursor_visible; int scanout_pixmap_x; + int dpms_mode; } drmmode_crtc_private_rec, *drmmode_crtc_private_ptr; typedef struct { @@ -114,6 +115,14 @@ drmmode_crtc(xf86CrtcPtr crtc) return drmmode_crtc->mode_crtc->crtc_id; } +Bool +drmmode_crtc_on(xf86CrtcPtr crtc) +{ + drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private; +...
2016 Feb 19
0
[ANNOUNCE] xf86-video-amdgpu 1.0.1
...offloading capabilities without acceleration Load fb module before glamoregl/shadow modules HAS_DIRTYTRACKING_ROTATION also supports multiple CRTCs Bump version for 1.0.1 release Mykola Lysenko (2): Check for NULL koutput in drmmode_output_dpms Initialize drmmode_crtc dpms_mode to DPMSModeOff git tag: xf86-video-amdgpu-1.0.1 http://xorg.freedesktop.org/archive/individual/driver/xf86-video-amdgpu-1.0.1.tar.bz2 MD5: f989e7a564afca970631a7b37ab78004 xf86-video-amdgpu-1.0.1.tar.bz2 SHA1: 74a6b3cbde0e7dc48f4a54dcdda479af18c0ebca xf86-video-amdgpu-1.0.1.tar.bz2 SHA256: 730...
2016 Apr 07
0
[ANNOUNCE] xf86-video-ati 7.7.0
...r for ssh clients (v2) Update pixmap pitch in radeon_set_pixmap_bo Identify DRM event queue entries by sequence number instead of by pointer Update manpage entry for Option "TearFree" Bump version for 7.7.0 release Mykola Lysenko (1): Initialize drmmode_crtc dpms_mode to DPMSModeOff Ryan Kennedy (1): Use correct tiling in drmmode_create_bo_pixmap jimqu (2): Move radeon_glamor_destroy_pixmap before radeon_glamor_create_pixmap glamor: Return NullPixmap on failure to create shareable pixmap git tag: xf86-video-ati-7.7.0 http://xorg.freedesktop...
2016 Apr 07
0
[ANNOUNCE] xf86-video-amdgpu 1.1.0
...ence number instead of by pointer Update manpage entry for Option "TearFree" glamor: Force GPU rendering to/from pixmaps created via DRI3 Bump version for 1.1.0 release Mykola Lysenko (2): Check for NULL koutput in drmmode_output_dpms Initialize drmmode_crtc dpms_mode to DPMSModeOff Tom St Denis (1): Move memset() after variable declarations jimqu (2): Move amdgpu_glamor_destroy_pixmap before amdgpu_glamor_create_pixmap glamor: Return NullPixmap on failure to create shareable pixmap git tag: xf86-video-amdgpu-1.1.0 http://xorg.freedesktop.o...
2013 May 23
14
[Bug 64904] New: [BISECTED] nouveau, nv50: External VGA not detected anymore
https://bugs.freedesktop.org/show_bug.cgi?id=64904 Priority: medium Bug ID: 64904 Assignee: nouveau at lists.freedesktop.org Summary: [BISECTED] nouveau, nv50: External VGA not detected anymore QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)
2007 Sep 03
4
Fixes and workarounds for regressions and issues in the randr-1.2 branch
...r which might be working for some (but didn't on my card) - more information is found in the text comments in the patches. I have to hurry so this is short, will be back. cu, Bernhard Kaindl -------------- next part -------------- A non-text attachment was scrubbed... Name: xf86-video-nouveau-dpms_mode.diff Type: text/x-patch Size: 1710 bytes Desc: Url : http://lists.freedesktop.org/archives/nouveau/attachments/20070903/1304c2d9/attachment.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: xf86-video-nouveau-Xv_noblit.diff Type: text/x-patch Size: 4522 bytes...
2012 Dec 12
43
[PATCH 00/37] [RFC] revamped modeset locking
Hi all, First thing first: It works, I now no longer have a few dropped frames every 10s on my testbox here with the pageflip i-g-t tests. Random notes: - New design has per-crtc locks to protect the crtc input-side (pageflip, cursor) for r/w and the output state of the crtc (mode, dpms) as read-only. It also required completely revamped fb lifecycle management, those are now refcounted