diff options
author | Dave Airlie <airlied@redhat.com> | 2019-03-14 11:17:32 +0100 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2019-03-15 12:42:04 +0100 |
commit | 4407c78bd86da4460ee07a15a365e07d99e0dd27 (patch) | |
tree | a83554916a1930e3c091ccc5d952116b15846f7e /src/drmmode_display.h | |
parent | 79bc0e054f37026377d54cac6cd8127d4aa9baca (diff) |
modesetting: add tile property support
This adds tiling support to the driver, it retrieves the tile info from
the kernel and translates it into the server format and exposes the
property.
(Ported from xserver commits 8fb8bbb3062f1a06621ab7030a9e89d5e8367b35
and 6abdb54a11dac4e8854ff94ecdcb90a14321ab31)
(Ported from amdgpu commit 6ee857726166f495abcd68e4ff60e3a09593d079)
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/drmmode_display.h')
-rw-r--r-- | src/drmmode_display.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drmmode_display.h b/src/drmmode_display.h index 2c2c3d57..96eaef0a 100644 --- a/src/drmmode_display.h +++ b/src/drmmode_display.h @@ -142,6 +142,9 @@ typedef struct { drmModeConnectorPtr mode_output; drmModeEncoderPtr *mode_encoders; drmModePropertyBlobPtr edid_blob; +#if XORG_VERSION_CURRENT >= XORG_VERSION_NUMERIC(1, 17, 99, 901, 0) + drmModePropertyBlobPtr tile_blob; +#endif int dpms_enum_id; int num_props; drmmode_prop_ptr props; |