Re: [Mesa-dev] [PATCH] i965: Fix incorrect maximum PS thread count shift on Ivybridge.

2011-09-24 Thread Eric Anholt
On Fri, 23 Sep 2011 23:45:54 -0700, Kenneth Graunke wrote: > I mistakenly set GEN7_PS_MAX_THREAD_SHIFT to 23; it's actually 24 on > Ivybridge. Not only did this halve our thread count, it caused us to > write 1 into a bit 23, which is marked as MBZ (must be zero). > Furthermore, it made us write

[Mesa-dev] [PATCH] i965: Fix incorrect maximum PS thread count shift on Ivybridge.

2011-09-23 Thread Kenneth Graunke
I mistakenly set GEN7_PS_MAX_THREAD_SHIFT to 23; it's actually 24 on Ivybridge. Not only did this halve our thread count, it caused us to write 1 into a bit 23, which is marked as MBZ (must be zero). Furthermore, it made us write an even number into this field, which is apparently not allowed. Ap