diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-23 21:18:40 -0400 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-05-23 21:18:40 -0400 |
commit | 679236defd28bea8874004377436347950ff7bec (patch) | |
tree | 8cf1e9e3aca92a7bbe2029366c306ca717a60714 /src | |
parent | e38cad5633c974467f6417051eda8d487ac3686e (diff) |
RADEON: add output properties (not functional yet)
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon.h | 3 | ||||
-rw-r--r-- | src/radeon_crtc.c | 1 | ||||
-rw-r--r-- | src/radeon_output.c | 104 | ||||
-rw-r--r-- | src/radeon_video.c | 2 |
4 files changed, 108 insertions, 2 deletions
diff --git a/src/radeon.h b/src/radeon.h index 75dd234d..fcbae2ac 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -78,6 +78,7 @@ #endif #include "xf86Crtc.h" +#include "X11/Xatom.h" /* Render support */ #ifdef RENDER @@ -174,6 +175,8 @@ do { \ #define RADEONTRACE(x) do { } while(0) #endif +/* for Xv, outputs */ +#define MAKE_ATOM(a) MakeAtom(a, sizeof(a) - 1, TRUE) /* Other macros */ #define RADEON_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) diff --git a/src/radeon_crtc.c b/src/radeon_crtc.c index c24be8fa..638bdd08 100644 --- a/src/radeon_crtc.c +++ b/src/radeon_crtc.c @@ -279,7 +279,6 @@ static const xf86CrtcFuncsRec radeon_crtc_funcs = { .set_cursor_position = radeon_crtc_set_cursor_position, .show_cursor = radeon_crtc_show_cursor, .hide_cursor = radeon_crtc_hide_cursor, -/* .load_cursor_image = i830_crtc_load_cursor_image, */ .load_cursor_argb = radeon_crtc_load_cursor_argb, .destroy = NULL, /* XXX */ }; diff --git a/src/radeon_output.c b/src/radeon_output.c index 7fb5fb7a..ce743c50 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -373,7 +373,110 @@ radeon_destroy (xf86OutputPtr output) xfree(output->driver_private); } +static Atom backlight_atom; +static Atom rmx_atom; +static Atom monitor_type_atom; + +static void +radeon_create_resources(xf86OutputPtr output) +{ + ScrnInfoPtr pScrn = output->scrn; + RADEONOutputPrivatePtr radeon_output = output->driver_private; + INT32 range[2]; + int data, err; + + /* backlight control */ + if (radeon_output->type == OUTPUT_LVDS) { + backlight_atom = MAKE_ATOM("BACKLIGHT"); + + range[0] = 0; + range[1] = 255; // i830_lvds_get_max_backlight(pScrn); + err = RRConfigureOutputProperty(output->randr_output, backlight_atom, + FALSE, TRUE, FALSE, 2, range); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRConfigureOutputProperty error, %d\n", err); + } + /* Set the current value of the backlight property */ + data = 127; //pI830->backlight_duty_cycle; + err = RRChangeOutputProperty(output->randr_output, backlight_atom, + XA_INTEGER, 32, PropModeReplace, 1, &data, + FALSE, TRUE); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRChangeOutputProperty error, %d\n", err); + } + } + + /* RMX control - fullscreen, centered, keep ratio */ + if (radeon_output->type == OUTPUT_LVDS || + radeon_output->type == OUTPUT_DVI) { + rmx_atom = MAKE_ATOM("PANELSCALER"); + + range[0] = 0; + range[1] = 2; // i830_lvds_get_max_backlight(pScrn); + err = RRConfigureOutputProperty(output->randr_output, rmx_atom, + FALSE, TRUE, FALSE, 2, range); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRConfigureOutputProperty error, %d\n", err); + } + /* Set the current value of the backlight property */ + data = 0; //pI830->backlight_duty_cycle; + err = RRChangeOutputProperty(output->randr_output, rmx_atom, + XA_INTEGER, 32, PropModeReplace, 1, &data, + FALSE, TRUE); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRChangeOutputProperty error, %d\n", err); + } + } + + /* force analog/digital for DVI-I ports */ + /* FIXME: make sure this is DVI-I */ + if (radeon_output->type == OUTPUT_DVI) { + monitor_type_atom = MAKE_ATOM("MONITORTYPE"); + + range[0] = 0; + range[1] = 1; // i830_lvds_get_max_backlight(pScrn); + err = RRConfigureOutputProperty(output->randr_output, monitor_type_atom, + FALSE, TRUE, FALSE, 2, range); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRConfigureOutputProperty error, %d\n", err); + } + /* Set the current value of the backlight property */ + data = 0; //pI830->backlight_duty_cycle; + err = RRChangeOutputProperty(output->randr_output, monitor_type_atom, + XA_INTEGER, 32, PropModeReplace, 1, &data, + FALSE, TRUE); + if (err != 0) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "RRChangeOutputProperty error, %d\n", err); + } + } + +} + +static Bool +radeon_set_property(xf86OutputPtr output, Atom property, + RRPropertyValuePtr value) +{ + ScrnInfoPtr pScrn = output->scrn; + + if (property == backlight_atom) { + return TRUE; + } else if (property == rmx_atom) { + return TRUE; + } else if (property == monitor_type_atom) { + return TRUE; + } + + return TRUE; +} + static const xf86OutputFuncsRec radeon_output_funcs = { + .create_resources = radeon_create_resources, .dpms = radeon_dpms, .save = radeon_save, .restore = radeon_restore, @@ -384,6 +487,7 @@ static const xf86OutputFuncsRec radeon_output_funcs = { .commit = radeon_mode_commit, .detect = radeon_detect, .get_modes = radeon_get_modes, + .set_property = radeon_set_property, .destroy = radeon_destroy }; diff --git a/src/radeon_video.c b/src/radeon_video.c index 6d085ccd..5510d7b4 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -99,7 +99,7 @@ static void RADEON_TDA9885_SetEncoding(RADEONPortPrivPtr pPriv); static void RADEON_FI1236_SetEncoding(RADEONPortPrivPtr pPriv); -#define MAKE_ATOM(a) MakeAtom(a, sizeof(a) - 1, TRUE) + #define ClipValue(v,min,max) ((v) < (min) ? (min) : (v) > (max) ? (max) : (v)) static Atom xvBrightness, xvColorKey, xvSaturation, xvDoubleBuffer; |