aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/radeon/drm/Makefile.sources
Commit message (Collapse)AuthorAgeFilesLines
* gallium/radeon: remove old CS tracingMarek Olšák2016-03-201-4/+0
| | | | | | | | | | | | | | Cons: - it was only integrated in r600g - it doesn't work with GPUVM - it records buffer contents at the end of IBs instead of at the beginning, so the replay isn't exact - it lacks an IB parser and user-friendliness A better solution is apitrace in combination with gallium/ddebug, which has a complete IB parser and can pinpoint hanging CP packets. Reviewed-by: Nicolai Hähnle <[email protected]>
* winsys/radeon: add a private interface for radeon_surfaceMarek Olšák2015-04-291-0/+1
|
* winsys/radeon: move radeon_winsys.h to drivers/radeonMarek Olšák2015-04-291-2/+1
|
* winsys/$(hw): include headers in Makefile.sourcesEmil Velikov2014-08-281-1/+9
| | | | | | Otherwise 'make dist' will not pick them up :'( Signed-off-by: Emil Velikov <[email protected]>
* winsys/radeon: add command stream replay dump for faulty lockup v3Jerome Glisse2013-04-051-0/+1
| | | | | | | | | | | | | | | | | | Build time option, set RADEON_CS_DUMP_ON_LOCKUP to 1 in radeon_drm_cs.h to enable it. When enabled after each cs submission the code will try to detect lockup by waiting on one of the buffer of the cs to become idle, after a timeout it will consider that the cs triggered a lockup and will write a radeon_lockup.c file in current directory that have all information for replaying the cs. To build this file : gcc -O0 -g radeon_lockup.c -ldrm -o radeon_lockup -I/usr/include/libdrm v2: Add radeon_ctx.h file to mesa git tree v3: Slightly improve dumped file for easier editing, only dump first faulty cs Signed-off-by: Jerome Glisse <[email protected]>
* winsys/radeon: share the source listChia-I Wu2011-08-251-0/+4
Factor out C_SOURCES from Makefile to Makefile.sources, and let Makefile and SConscript share it. Reviewed-by: Marek Olšák <[email protected]>