Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-23 | r600g: not fatal if we can't get tiling info from kernel | Dave Airlie | |
2010-10-21 | winsys/xlib: rename xm->xlib | Brian Paul | |
Move away from the old Mesa-oriented names. | |||
2010-10-21 | winsys/xlib: fix up allocation/dealloction of XImage | Brian Paul | |
Fixes a crash upon exit when using remote display. | |||
2010-10-21 | winsys/xlib: use Bool type for shm field | Brian Paul | |
2010-10-21 | winsys/xlib: formatting fixes | Brian Paul | |
2010-10-18 | r600g: retrieve tiling info from kernel for shared buffers. | Dave Airlie | |
we need to know if the back is tiled so we can blit from it properly. | |||
2010-10-18 | r600g: get tiling info from kernel | Dave Airlie | |
2010-10-15 | wrapper: Add a way to dewrap a pipe screen without destroying it | Jakob Bornecrantz | |
2010-10-15 | wrapper: Fix spelling | Jakob Bornecrantz | |
2010-10-15 | r600/drm: fix segfaults in winsys create failure path | Keith Whitwell | |
Would try to destroy radeon->cman, radeon->kman both which were still NULL. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-10-08 | r600g: Silence uninitialized variable warning. | Vinson Lee | |
2010-10-08 | r600g: Silence uninitialized variable warning. | Vinson Lee | |
2010-10-08 | r600g: Silence uninitialized variable warning. | Vinson Lee | |
2010-10-08 | r600g: Remove unnecessary header. | Vinson Lee | |
2010-10-06 | r600g: fix dirty state handling | Jerome Glisse | |
Avoid having object ending up in dead list of dirty object. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-06 | r600g: avoid segfault due to unintialized list pointer | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-05 | r600g: userspace fence to avoid kernel call for testing bo busy status | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-05 | r600g: simplify block relocation | Jerome Glisse | |
Since flush rework there could be only one relocation per register in a block. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-05 | r600g: use dirty list to track dirty blocks | Bas Nieuwenhuizen | |
Got a speed up by tracking the dirty blocks in a seperate list instead of looping through all blocks. This version should work with block that get their dirty state disabled again and I added a dirty check during the flush as some blocks were already dirty. | |||
2010-10-05 | r600g: improve bo flushing | Jerome Glisse | |
Flush read cache before writting register. Track flushing inside of a same cs and avoid reflushing same bo if not necessary. Allmost properly force flush if bo rendered too and then use as a texture in same cs (missing pipeline flush dunno if it's needed or not). Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-05 | r600g: store reloc information in bo structure | Jerome Glisse | |
Allow fast lookup of relocation information & id which was a CPU time consumming operation. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-05 | r600g: avoid unneeded bo wait | Dave Airlie | |
if we know the bo has gone not busy, no need to add another bo wait thanks to Andre (taiu) on irc for pointing this out. | |||
2010-10-05 | r600g: drop use_mem_constant. | Dave Airlie | |
since we plan on using dx10 constant buffers everywhere. | |||
2010-10-05 | r600g: drop mman allocator | Dave Airlie | |
we don't use this since constant buffers are now being used on all gpus. | |||
2010-10-05 | r600g: add bo busy backoff. | Dave Airlie | |
When we go to do a lot of bos in one draw like constant bufs we need to avoid bouncing off the busy ioctl, this mitigates by backing off on busy bos for a short amount of times. | |||
2010-10-05 | r600g: add bo fenced list. | Dave Airlie | |
this just keeps a list of bos submitted together, and uses them to decide bo busy state for the whole group. | |||
2010-10-04 | r600g: Fix SCons build. | Vinson Lee | |
2010-10-04 | r600g: remove dead label & fix indentation | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-04 | r600g: rename radeon_ws_bo to r600_bo | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-04 | r600g: use r600_bo for relocation argument, simplify code | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-04 | r600g: allow r600_bo to be a sub allocation of a big bo | Jerome Glisse | |
Add bo offset everywhere needed if r600_bo is ever a sub bo of a bigger bo. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-04 | r600g: rename radeon_ws_bo to r600_bo | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-10-04 | r600g: TODO domain management | Dave Airlie | |
no wonder it was slow, the code is deliberately forcing stuff into GTT, we used to have domain management but it seems to have disappeared. | |||
2010-10-04 | r600g: fix wwarning in bo_map function | Dave Airlie | |
2010-10-04 | r600g: break out of search for reloc bo after finding it. | Dave Airlie | |
this function was taking quite a lot of pointless CPU. | |||
2010-10-01 | r600g: setup basic loop consts on r600 + evergreen. | Dave Airlie | |
this sets up a single loop constant like r600c does. | |||
2010-10-01 | r600g: flush SH cache on constant change on evergreen | Dave Airlie | |
2010-10-01 | r600g: fix evergreen draw-buffers | Dave Airlie | |
just a typo in the register headers. | |||
2010-10-01 | r600g: add cb flushing for extra buffers + depth buffer on r600/evergreen | Dave Airlie | |
2010-10-01 | r600g: sync vertex/texture cache on resources on evergreen | Dave Airlie | |
this gets rid of lots of the instability on evergreen, which isn't surprising since it really broken not to flush caches. | |||
2010-10-01 | r600g: add reloc for evergreen color attrib | Dave Airlie | |
we'll need this for color tiling on evergreen. | |||
2010-10-01 | r600g: add winsys support for CTL constants. | Dave Airlie | |
These need to be emitted, we also need them to do proper vtx start, instead of abusing index offset. | |||
2010-10-01 | r600g: use Elements macro instead of manual sizeofs | Dave Airlie | |
2010-09-30 | r600g: keep a mapping around for each bo | John Doe | |
Save a lot of call into the kernel and thus improve performances. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-09-30 | r600g: don't double count dirty block | John Doe | |
This avoid to overcount the number of dwords we need and thus avoid maximazation of cs buffer use. Signed-off-by: Jerome Glisse <jglisse@redhat.com | |||
2010-09-30 | evergreeng: avoid overlapping border color btw VS & PS | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-09-30 | r600g: use constant buffer instead of register for constant | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-09-30 | gallium/winsys: remove duplicated include | Nicolas Kaiser | |
Remove duplicated include. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-09-30 | r600g: clean up some code from move to new paths. | Dave Airlie | |
mainly remove 2 suffix from function names | |||
2010-09-29 | r600g: Fix SCons build. | Vinson Lee | |