Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-07-29 | r300: Fix cliprect emit | Nicolai Haehnle | |
This makes our handling of cliprects sane. drm_clip_rect always has exclusive bottom-right corners, but the hardware expects inclusive bottom-right corners, so we adjust this here. This complements Michel Daenzer's commit 57aea290e1e0a26d1e74df6cff777eb9f038f1f8 to Mesa. See also http://bugs.freedesktop.org/show_bug.cgi?id=16123 . | |||
2008-07-26 | r300_cmdbuf: Always emit INDX_BUFFER immediately after DRAW_INDEX | Nicolai Haehnle | |
DRAW_INDEX writes a vertex count to VAP_VF_CNTL. Docs say that behaviour is undefined (i.e. lockups happen) when this write is not followed by the right number of vertex indices. Thus we used to do the wrong thing when drawing across many cliprects was necessary, because we emitted a sequence DRAW_INDEX, DRAW_INDEX, INDX_BUFFER, INDX_BUFFER instead of DRAW_INDEX, INDX_BUFFER, DRAW_INDEX, INDX_BUFFER The latter is what we're doing now and which ought to be correct. | |||
2008-06-20 | r300: fix warning | Dave Airlie | |
2008-06-15 | radeon: *really* fix screen corruption thanks to Lukasz Krotowski | Jerome Glisse | |
2008-06-15 | radeon: actualy try to fix the corruption | Jerome Glisse | |
2008-06-15 | radeon: fix screen corruption introduced by last patch | Jerome Glisse | |
2008-06-13 | radeon: r345xx fixe hard lockup | Jerome Glisse | |
This patch should fixe hard lockup and convert them in softlockup (ie you can ssh the box but the gpu is busted and we are waiting in loop for it to come back to reason). | |||
2008-06-09 | r300/r500: add hier-z regs | Dave Airlie | |
2008-05-23 | r500: add two more register ranges for mesa driver to setup | Dave Airlie | |
2008-05-17 | r500: add more register ranges for Mesa driver | Dave Airlie | |
2008-05-05 | r500: add allowed range for us config/pixsize | Dave Airlie | |
2008-03-30 | drm/r300: fix wait interface mixup | Dave Airlie | |
This interface was defined completely wrong, however userspace has only ever used 4 values from it (0x1, 0x2, 0x3 and 0x6), so fix the interface to do what userspace actually expected but define new defines for new users to use it properly. | |||
2008-03-29 | r300: Correctly translate the value for the R300_CMD_WAIT command. | Oliver McFadden | |
Previously, the R300_CMD_WAIT command would write the passed directly to the hardware. However this is incorrect because the R300_WAIT_* values used are internal interface values that do not map directly to the hardware. The new function I have added translates the R300_WAIT_* values into appropriate values for the hardware before writing the register. Thanks to John Bridgman for pointing this out. :-) | |||
2008-03-21 | r500: fragment program upload is also used to upload constants. | Dave Airlie | |
Limit frag address to 8 bits | |||
2008-03-20 | drm: fixup r500fp submission | Dave Airlie | |
2008-03-19 | move some more r300 regs into not allowed on r500 | Dave Airlie | |
2008-03-17 | initial r500 RS and FP register and upload code | Dave Airlie | |
2007-11-27 | r500: add a bunch of all r5xx pci ids.. | Dave Airlie | |
fix up a range that may be needed for r500 mesa | |||
2007-11-21 | r500: suggestion from glisse to not add cliprect offset on r5xx | Dave Airlie | |
2007-11-05 | drm: remove lots of spurious whitespace. | Dave Airlie | |
Kernel "cleanfile" script run. | |||
2007-07-20 | Replace filp in ioctl arguments with drm_file *file_priv. | Eric Anholt | |
As a fallout, replace filp storage with file_priv storage for "unique identifier of a client" all over the DRM. There is a 1:1 mapping, so this should be a noop. This could be a minor performance improvement, as everything on Linux dereferenced filp to get file_priv anyway, while only the mmap ioctls went the other direction. | |||
2007-07-20 | Remove DRM_ERR OS macro. | Eric Anholt | |
This was used to make all ioctl handlers return -errno on linux and errno on *BSD. Instead, just return -errno in shared code, and flip sign on return from shared code to *BSD code. | |||
2007-07-16 | drm: remove drm_buf_t | Dave Airlie | |
2007-07-16 | drm: remove drmP.h internal typedefs | Dave Airlie | |
2007-07-16 | drm: detypedef drm.h and fixup all problems | Dave Airlie | |
2007-06-21 | r300: Allow writes to R300_VAP_PVS_WAITIDLE. | Oliver McFadden | |
2007-06-18 | r300: Registers 0x2220-0x2230 are known as R300_VAP_CLIP_X_0-R300_VAP_CLIP_Y_1. | Oliver McFadden | |
2007-05-06 | r300: Use the defined names for known registers. | Oliver McFadden | |
2007-03-13 | r300: Renamed the CACHE_CTLSTAT values to include UNKNOWN in the name; not | Oliver McFadden | |
enough information is known about them to be sure as to what the values mean. | |||
2007-03-13 | Add defines for the values written to R300_RB3D_ZCACHE_CTLSTAT. | Oliver McFadden | |
Note that just like the values written to R300_RB3D_DSTCACHE_CTLSTAT these values are really unknown; ideally more reverse engineering should be done to determine what these values mean and when they should be set. | |||
2007-03-13 | Corrected values written to R300_RB3D_DSTCACHE_CTLSTAT to either | Oliver McFadden | |
R300_RB3D_DSTCACHE_02 or R300_RB3D_DSTCACHE_0A, rather than hexadecimal values. | |||
2007-03-13 | Guess another unknown register used for R300 pacification. | Oliver McFadden | |
2006-12-14 | Unify radeon offset checking. | Michel Dänzer | |
Replace r300_check_offset() with generic radeon_check_offset(), which doesn't reject valid offsets when the framebuffer area is at the very end of the card's 32 bit address space. Make radeon_check_and_fixup_offset() use radeon_check_offset() as well. This fixes https://bugs.freedesktop.org/show_bug.cgi?id=7697 . | |||
2006-10-10 | only allow specific type-3 packets to pass the verifier instead of all for ↵ | Roland Scheidegger | |
r100/r200 as others might be unsafe (r300 already does this), and add checking for these we need but aren't safe. Check the RADEON_CP_INDX_BUFFER packet on both r200 and r300 as it isn't safe neither. | |||
2006-04-23 | Fix from Benh for ppc r300 scratch | Dave Airlie | |
2006-04-08 | Compile fixes for FreeBSD. | Eric Anholt | |
2006-03-25 | radeon fix up the PCI ids for new memory map like the kernel one.. not | Dave Airlie | |
perfect but should be very safe... align some other kernel bits i810 align with kernel | |||
2006-03-07 | ia64 support for r300_scratch. (not tested) | Aapo Tahkola | |
2006-03-06 | Add general-purpose packet for manipulating scratch registers (r300) | Aapo Tahkola | |
2006-02-19 | missed a piece of benh patch | Dave Airlie | |
2006-02-18 | fix brace placement | Dave Airlie | |
2006-02-18 | add proper checking for bitblt multi | Dave Airlie | |
2006-02-18 | major realigment of DRM CVS with kernel code, makes integration much easier | Dave Airlie | |
2006-01-20 | Add support for texture cache flushes (R300_TX_CNTL) | Aapo Tahkola | |
2006-01-20 | Sync from r300_reg.h from Mesa. | Aapo Tahkola | |
2006-01-02 | The radeon DRM wasn't passing sparse checking in the kernel, this fixes it | Dave Airlie | |
by adding a new kernel internal cmd buffer type, that has no userspace members, and passes it around. | |||
2005-12-05 | add texrect support for r300 | Dave Airlie | |
2005-07-28 | Fix issues with buffer aging when more than one dma buffer is discarded in | Eric Anholt | |
a cmdbuf, which could lead to hangs. Submitted by: Aapo Tahkola | |||
2005-07-20 | Add latest r300 support from r300.sf.net CVS. Patch submitted by volodya, | Eric Anholt | |
with BSD fix from jkim and the r300_reg.h license from Nicolai Haehnle. Big thanks to everyone involved! |