summaryrefslogtreecommitdiff
path: root/src/evergreen_accel.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2011-05-24 18:31:47 -0400
committerAlex Deucher <alexdeucher@gmail.com>2011-05-24 18:31:47 -0400
commit470ecd02347c32e79316046d01a7d5dad0e2fe99 (patch)
tree47cb9be35f6f87cc616f1a55cf5ef2417213299d /src/evergreen_accel.c
parentb913e7ba2b60d47a6660699210cc3cf6f5dc52c2 (diff)
EXA/Xv: add workarounds for eg/cayman scissors bugs
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/evergreen_accel.c')
-rw-r--r--src/evergreen_accel.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/evergreen_accel.c b/src/evergreen_accel.c
index 40aa372c..5a0e3570 100644
--- a/src/evergreen_accel.c
+++ b/src/evergreen_accel.c
@@ -704,12 +704,36 @@ evergreen_set_tex_sampler (ScrnInfoPtr pScrn, tex_sampler_t *s)
END_BATCH();
}
+/* workarounds for hw bugs in eg+ */
+/* only affects screen/window/generic/vport. cliprects are not affected */
+void evergreen_fix_scissor_coordinates(ScrnInfoPtr pScrn, int *x1, int *y1, int *x2, int *y2)
+{
+ RADEONInfoPtr info = RADEONPTR(pScrn);
+
+ /* all eg+ asics */
+ if (*x2 == 0)
+ *x1 = 1;
+ if (*y2 == 0)
+ *y1 = 1;
+
+ /* cayman only */
+ if (info->ChipFamily == CHIP_FAMILY_CAYMAN) {
+ /* cliprects aren't affected so we can use them to clip if we need
+ * a true 1x1 clip region
+ */
+ if ((*x2 == 1) && (*y2 == 1))
+ *x2 = 2;
+ }
+}
+
//XXX deal with clip offsets in clip setup
void
evergreen_set_screen_scissor(ScrnInfoPtr pScrn, int x1, int y1, int x2, int y2)
{
RADEONInfoPtr info = RADEONPTR(pScrn);
+ evergreen_fix_scissor_coordinates(pScrn, &x1, &y1, &x2, &y2);
+
BEGIN_BATCH(4);
PACK0(PA_SC_SCREEN_SCISSOR_TL, 2);
E32(((x1 << PA_SC_SCREEN_SCISSOR_TL__TL_X_shift) |
@@ -724,6 +748,8 @@ evergreen_set_vport_scissor(ScrnInfoPtr pScrn, int id, int x1, int y1, int x2, i
{
RADEONInfoPtr info = RADEONPTR(pScrn);
+ evergreen_fix_scissor_coordinates(pScrn, &x1, &y1, &x2, &y2);
+
BEGIN_BATCH(4);
PACK0(PA_SC_VPORT_SCISSOR_0_TL + id * PA_SC_VPORT_SCISSOR_0_TL_offset, 2);
E32(((x1 << PA_SC_VPORT_SCISSOR_0_TL__TL_X_shift) |
@@ -739,6 +765,8 @@ evergreen_set_generic_scissor(ScrnInfoPtr pScrn, int x1, int y1, int x2, int y2)
{
RADEONInfoPtr info = RADEONPTR(pScrn);
+ evergreen_fix_scissor_coordinates(pScrn, &x1, &y1, &x2, &y2);
+
BEGIN_BATCH(4);
PACK0(PA_SC_GENERIC_SCISSOR_TL, 2);
E32(((x1 << PA_SC_GENERIC_SCISSOR_TL__TL_X_shift) |
@@ -754,6 +782,8 @@ evergreen_set_window_scissor(ScrnInfoPtr pScrn, int x1, int y1, int x2, int y2)
{
RADEONInfoPtr info = RADEONPTR(pScrn);
+ evergreen_fix_scissor_coordinates(pScrn, &x1, &y1, &x2, &y2);
+
BEGIN_BATCH(4);
PACK0(PA_SC_WINDOW_SCISSOR_TL, 2);
E32(((x1 << PA_SC_WINDOW_SCISSOR_TL__TL_X_shift) |