diff options
author | Patrik Jakobsson <patrik.r.jakobsson@gmail.com> | 2012-05-21 10:27:30 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-22 05:15:34 -0400 |
commit | bc794829141f28e14fe7d0e07e35870bd9aee78c (patch) | |
tree | d6cbf396d69caf53961e4c89b36cb359d51cc0f7 /drivers/gpu/drm/gma500/psb_drv.h | |
parent | ac0a5dd6ae764ba228ec645920b78c70cee05eb7 (diff) |
gma500: handle poulsbo cursor restriction
Poulsbo needs a physical address in the cursor base register. We allocate a
stolen memory buffer and copy the cursor image provided by userspace into it.
When/If we get our own userspace driver we can map this stolen memory directly.
The patch also adds a mark in chip ops so we can identify devices that has this
requirement.
Signed-off-by: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/gma500/psb_drv.h')
-rw-r--r-- | drivers/gpu/drm/gma500/psb_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/gma500/psb_drv.h b/drivers/gpu/drm/gma500/psb_drv.h index a1b0c0bce972..1bd115ecefe1 100644 --- a/drivers/gpu/drm/gma500/psb_drv.h +++ b/drivers/gpu/drm/gma500/psb_drv.h | |||
@@ -655,6 +655,7 @@ struct psb_ops { | |||
655 | int sgx_offset; /* Base offset of SGX device */ | 655 | int sgx_offset; /* Base offset of SGX device */ |
656 | int hdmi_mask; /* Mask of HDMI CRTCs */ | 656 | int hdmi_mask; /* Mask of HDMI CRTCs */ |
657 | int lvds_mask; /* Mask of LVDS CRTCs */ | 657 | int lvds_mask; /* Mask of LVDS CRTCs */ |
658 | int cursor_needs_phys; /* If cursor base reg need physical address */ | ||
658 | 659 | ||
659 | /* Sub functions */ | 660 | /* Sub functions */ |
660 | struct drm_crtc_helper_funcs const *crtc_helper; | 661 | struct drm_crtc_helper_funcs const *crtc_helper; |