Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-03-25 | For 2.6.12 and 2.6.11.x: | Dave Airlie | |
Remove incorrect "drm_"-prefix from parameter description. Signed-off-by: Magnus Damm <damm@opensource.se> | |||
2005-03-18 | Add support for production version of ATI RN50/ES1000. (ATI Technologies | Michel Daenzer | |
Inc.) | |||
2005-03-15 | add R200_EMIT_PP_TRI_PERF_CNTL packet to support brilinear filtering on | Roland Scheidegger | |
r200 | |||
2005-03-14 | via changes: | Thomas Hellstrom | |
1. Initialize futex locks to zero on device init. 2. Remove some stray defines from via_drm.h 3. Prepare via_drm.h for drm client inclusion. The goal is to share a common file with common definitions. 4. Sync shared / shared-core via_drm.h 5. Bump minor, because of the futex lock initialization. | |||
2005-03-13 | Command DMA optimizations: | Felix Kuehling | |
- don't waste DMA memory when small command buffers are flushed - minimized padding with noops - slightly simplified faked DMA flushing | |||
2005-03-08 | Fix for bug 2673 from Egbert Eich - memset the version | Dave Airlie | |
2005-03-07 | Tracked down random lockups related to command DMA that occurred in Quake3 | Felix Kuehling | |
after ~5min: buffer aging was subtly broken. Part of this may have also affected vertex DMA buffer aging and client-side texture heap aging, though with less fatal consequences. Bumped minor version and driver date. | |||
2005-03-07 | minor pointer cast typo | Dave Airlie | |
2005-03-06 | Added support for command DMA on Savage4-based hardware. Unfortunately | Felix Kuehling | |
command and vertex DMA don't work at the same time. Command DMA performance is superior and works with all vertex formats. Bumped minor version and driver date. | |||
2005-03-04 | add some idct type 3 packets for reference | Dave Airlie | |
2005-02-23 | Use wrap counter to extend 16-bit hardware event tags to 32-bit logical | Felix Kuehling | |
event counters in the SAVAGE_EVENT_EMIT/WAIT ioctls. This is needed for reliable client-side texture heap aging. Slightly simplified DMA buffer aging while at it. Bumped minor version and driver date. | |||
2005-02-20 | Fix VIA K8M800 PCI ID. | Thomas Hellstrom | |
2005-02-19 | Fix a couple of gcc warnings in DRM_INFOs. | Eric Anholt | |
2005-02-19 | Merge r1.26 from FreeBSD: Now that mem(4) is a kernel module, we need to | Eric Anholt | |
depend on it. | |||
2005-02-18 | fd.o bug #2576: Add support for ATI RN50/ES1000. (ATI Technologies Inc.) | Michel Daenzer | |
2005-02-18 | Bug #2567: Fix reversed memset arguments. (David Krause) | Adam Jackson | |
2005-02-15 | Run depmod after installing new modules | Keith Whitwell | |
2005-02-14 | Use fuword32 for DRM_GET_USER_UNCHECKED when available. May help on 64-bit | Eric Anholt | |
platforms. Submitted by: Jung-uk Kim, jkim at niksun dot com | |||
2005-02-14 | Use the proper API to get PCI vendor/device number for a dev. | Eric Anholt | |
PR: ports/76879 Submitted by: Alex, lesha at intercaf dot ru. | |||
2005-02-14 | Initialize kbuf to NULL to quiet the compiler about uninit variables | Eric Anholt | |
(wasn't an issue). Don't forget to free kbuf if the copyin fails. | |||
2005-02-13 | Fixed Futex release bug. Bumped driver date and patchlevel. | Thomas Hellstrom | |
2005-02-13 | Fix bad copy'n'pastage of copyrights -- don't disclaim anything for VA | Eric Anholt | |
Linux or PI in my copyrights when I should be doing it for myself. | |||
2005-02-13 | Add the first bits necessary for a port of savage to FreeBSD. More to | Eric Anholt | |
follow later. | |||
2005-02-10 | add support for texture micro tiling for radeon/r200. Add support for cube | Roland Scheidegger | |
maps for r100. (Stephane Marchesin's port of the core version). | |||
2005-02-10 | add support for texture micro tiling on radeon/r200. Add support for r100 | Roland Scheidegger | |
cube maps (since it also requires a version bump) at the same time. | |||
2005-02-10 | Stephane's port of Eric's race fix | Keith Whitwell | |
2005-02-08 | fix incorrect PCI id for ATI radeon | Roland Scheidegger | |
2005-02-08 | Close a race which could allow for privilege escalation by users with DRI | Eric Anholt | |
privileges on Radeon hardware. Essentially, a malicious program could submit a packet containing an offset (possibly in main memory) to be rendered from/to, while a separate thread switched that offset in userspace rapidly between a valid value and an invalid one. radeon_check_and_fixup_offset() would pull the offset in from user space, check it, and spit it back out to user space to be copied in later by the emit code. It would sometimes catch the bad value, but sometimes the malicious program could modify it after the check and get an invalid offset rendered from/to. Fix this by allocating a temporary buffer and copying the data in at once. While here, make the cliprects stuff not do the VERIFYAREA_READ and COPY_FROM_USER_UNCHECKED gymnastics, avoiding a lock order reversal on FreeBSD. Performance impact is negligible -- no difference on r200 to ~1% improvement on rv200 in quake3 tests (P4 1Ghz, demofour at 1024x768, n=4 or 5). | |||
2005-02-07 | Invalid bound check of driver defined ioctls in drm_ioctl | Dave Airlie | |
Bug 2489 Reporter: Aapo Tahkola <aet@rasterburn.org> | |||
2005-02-07 | Cast user data to correct type in radeon_surface_free's copyin. | Roland Scheidegger | |
2005-02-07 | change DRIVER_ to CORE_ makes things look nicer, also change it so the | Dave Airlie | |
driver name is marked on resource allocations | |||
2005-02-07 | fix agp detection on linux | Dave Airlie | |
2005-02-07 | Restore a debugging message to DRM_DEBUG instead of DRM_ERROR. | Eric Anholt | |
2005-02-07 | Remove some annoying trailing whitespace. | Eric Anholt | |
2005-02-05 | - Implement drm_initmap, and extend it with the resource number to help | Eric Anholt | |
FreeBSD. Add drm_get_resource_{start|len} so linux-specific stuff doesn't need to be in shared code. - Fix mach64 build by using __DECONST to work around passing a const pointer to useracc, which is unfortunately not marked const. - Get rid of a lot of maplist code by not having dev->maplist be a pointer, and by sticking the link entries directly in drm_local_map_t rather than having a separate structure for the linked list. - Factor out map uninit and removal into its own routine, rather than duplicating in both drm_takedown() and drm_rmmap(). - Hook up more driver functions, and correct FreeBSD-specific bits of radeon_cp.c, making radeon work. - Baby steps towards using bus_space as we should. | |||
2005-02-03 | Via driver: Add missing drm_poll function to via driver in core. | Thomas Hellstrom | |
2005-02-03 | Declare r128_do_cleanup_pageflip static since it's only used here and its | Eric Anholt | |
prototype went away. | |||
2005-02-03 | Cast user data to correct type in radeon_surface_free's copyin. | Eric Anholt | |
2005-02-01 | momentary revert. libdrm build may be broken now, but no one uses it yet... | Adam Jackson | |
2005-02-01 | cleanup patch from Adrian Bunk <bunk@stusta.de> | Dave Airlie | |
2005-02-01 | make functions static in i915, remove unused functions | Dave Airlie | |
2005-02-01 | update i830 similiar to the kernel, add statics | Dave Airlie | |
2005-02-01 | make more functions static in i810 and fix pageflip cleanup | Dave Airlie | |
2005-01-30 | Final pass of libdrm.so work: | Adam Jackson | |
- Add $(DESTDIR) for distributors doing package creation - Remove OS-specific include path from build - Add /usr/include/drm for driver-kernel API - Install all of shared-core/*.h in /usr/include/drm - Rename xf86drm.h to libdrm.h since we're not X biased anymore - Include backwards compat for xf86drm.h name, with a warning - Fix libdrm source to account for drm.h living in /usr/include/drm | |||
2005-01-29 | fix radeon drv | Dave Airlie | |
2005-01-27 | Fixed multiple devices DMA bug. Fixed PCI path FIRE command detection | Thomas Hellstrom | |
2005-01-27 | fix incorrect PCI id for ATI radeon | Dave Airlie | |
2005-01-26 | (Stephane Marchesin,me) Add radeon framebuffer tiling support to radeon | Roland Scheidegger | |
drm. Add new ioctls to manage surfaces which cover the tiled areas | |||
2005-01-26 | replace magic number with macro constant RADEON_ZBLOCK16 | Roland Scheidegger | |
2005-01-24 | use libdrm after it was updated | Dave Airlie | |