1873 Commits

Author SHA1 Message Date
Xiang, Haihao
b20efcf585 CS FENCE in URB_FENCE is 11-bits wide
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
2009-09-08 09:31:46 +08:00
Xiang, Haihao
84a877511f Fix the length of CONSTANT_BUFFER
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
2009-09-08 09:31:38 +08:00
Eric Anholt
61237b98bb intel_gpu_dump: Don't pretend we understand vertex formats on 8xx. 2009-09-04 12:19:25 -07:00
Eric Anholt
b66d2feb69 intel_gpu_dump: Parse LOAD_STATE_IMMEDIATE_2 for 830. 2009-09-04 12:19:25 -07:00
Eric Anholt
7bc13bc00c intel_gpu_dump: Add IPEIR and PGTBL_ER to output. 2009-09-04 12:19:25 -07:00
Eric Anholt
56bdcd1d6b Add INSTDONE bits for 830-865. 2009-09-04 12:19:25 -07:00
Eric Anholt
1cbfe0ea6a intel_gpu_dump: Fix decode for LOAD_STATE_IMMEDIATE_1 with S8 set. 2009-09-04 12:19:25 -07:00
Eric Anholt
d9e28e63e5 Add a manpage for intel_reg_write 2009-09-04 12:19:25 -07:00
Chris Wilson
d83a417c01 dump: Minor typo 2009-09-03 10:58:59 +01:00
Chris Wilson
8f3f862b96 Add gem_fence_thrash test
This is a test case that overcommits fence registers between threads, which
are copying from one fenced bo to another. In earlier versions of the driver
this would cause excessive spinning as the first inactive (i.e. not in use
by the GPU) would be used to service the next page. After all the fence
registers had been allocated, in effect only the very first fence would then
be used for all subsequent faults.
2009-09-01 11:53:47 +01:00
Ben Gamari
4839ee9787 Add CS_USB_STATE decoding 2009-07-07 10:49:33 -07:00
Ben Gamari
147f07b5c2 Add CONSTANT_BUFFER decoding 2009-07-07 10:49:15 -07:00
Ben Gamari
357e43a4f1 Fix gs_fence output in URB_FENCE output 2009-07-07 10:48:52 -07:00
Ben Gamari
e302d0fe89 add realloc bits to URB_FENCE decoding 2009-07-07 10:48:16 -07:00
Carl Worth
3fda98b4db Fix error message for case of kernel prior to 2.6.30
The error message was falsely claiming that a debugfs directory
didn't exist, when it was supposed to report that the ringbuffer
file did not exist within that directory.
2009-07-07 10:46:17 -07:00
Eric Anholt
324428ca82 .gitignore: catch up to intel_reg_write addition 2009-06-30 18:05:57 -07:00
Eric Anholt
eb239afeb7 intel_gpu_dump: Add instdone register values and decoding. 2009-06-30 18:04:53 -07:00
Eric Anholt
3904b7c6a2 intel_gpu_top: Move instdone bit definitions to lib to share with _dump. 2009-06-30 18:04:50 -07:00
Eric Anholt
21b6f2600d intel_gpu_dump: Use the correct IPEHR on pre-965. 2009-06-23 19:35:19 -07:00
Eric Anholt
eafbad3707 intel_gpu_dump: Add details on URB_FENCE. 2009-06-23 18:43:59 -07:00
Eric Anholt
bf3b1a3da9 Oops, fix up printed hw offset since the HEAD pointer fixup 2009-06-23 18:16:42 -07:00
Eric Anholt
a18af8ed43 Add more 965 INSTDONE bits.
This shows off the units that are stuck busy in the ut2004 hang.
2009-06-23 17:18:52 -07:00
Eric Anholt
da2c7f35c7 Correctly flag the acthd when it points within a packet. 2009-06-23 16:36:32 -07:00
Eric Anholt
12ceecf971 Add the acthd to the GPU dump. 2009-06-23 16:36:32 -07:00
Ben Gamari
c25532cc61 Add register writing tool
Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-23 16:36:32 -07:00
Jesse Barnes
bbafc3d0bf Four new tests for error handling
Add four new tests for error the error handling cases:
  - gem_bad_address - store to a bad address, should generate a protection or
    page table error
  - gem_bad_batch - try to execute a bad batch, should generate a protection,
    invalid instruction or page table error
  - gem_bad_blit - blit to an invalid location, should generated a protection
    or page table error
  - gem_hang - hang the GPU on an event that will never happen, test hang
    detection & recovery code
2009-06-18 18:10:23 -07:00
Eric Anholt
49c564ec2f Make the precentage bars fit in 80 columns.
Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-09 11:31:52 -07:00
Robert Bragg
8c7be93544 A pedantic addition of a format string to a printf call
The printf used to clear the screen didn't have a format string, this
adds one to avoid a compiler warning.

Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-09 11:31:37 -07:00
Robert Bragg
700e45a522 Adds unicode bars for quickly visualizing the busy percentages
It can be a bit easier to digest the percentages with bar graphs than by
scanning continually changing numbers.

Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-09 11:31:30 -07:00
Robert Bragg
2f0c0aa8ae Increases the sample frequency from 100/sec to 10,000/sec
For a typical vsync locked application running at 60fps, sampling at just
under twice a frame doesn't seem to give very stable lists of relevent hardware
units because there are a number of units involved that may not be sampled one
second to the next.

This bumps the sample rate to 10,000 instead which is ~ 170 samples per
frame so we tend to hit all the units involved.

It also changes the report threshold to a sample count >= 1, so you don't
see as many units with a percentage of 0.

Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-09 11:31:24 -07:00
Robert Bragg
2a50faae7e Revert "intel_gpu_top:print a visual clue on how big a certain use is"
This reverts commit 5e13b98da1e7e31cffba84fd257002357d5f2682.

We can print prettier graphs using unicode

Signed-off-by: Eric Anholt <eric@anholt.net>
2009-06-09 11:31:15 -07:00
Eric Anholt
114763f419 intel_gpu_top: Print GPU clock information, which seems interesting. 2009-06-04 14:39:41 +00:00
Arjan van de Ven
5e13b98da1 intel_gpu_top:print a visual clue on how big a certain use is
humans are pretty bad at reading percentages quicky; this patch adds a
histogram capability to make it more visually clear as to which lines are
big ticket items
2009-06-04 14:07:48 +00:00
Eric Anholt
0521bca629 Bump version to 1.0.1 for release. 2009-05-19 16:48:40 -07:00
Eric Anholt
3365c8563a intel_gpu_dump: Stop decoding batchbuffers after MI_BATCH_BUFFER_END. 2009-05-19 16:32:39 -07:00
Eric Anholt
652d5518d6 Add decode of gen4 PIPE_CONTROL 2009-05-19 16:26:35 -07:00
Eric Anholt
b7d70fc1fd Add decode of dest buffer variables (destination format)
(cherry-pick from Mesa commit 0af7e9170fd7c0d906652378b9f78fe2ba9725ad)
2009-05-19 16:12:43 -07:00
Eric Anholt
e71c628302 Add manpages for all installed binaries. 2009-05-19 16:09:08 -07:00
Eric Anholt
49cba961a2 Add gem_largeobject to ignore. 2009-05-19 15:53:55 -07:00
Jesse Barnes
433e1c85a0 tests: add large object test
The large object test simply tries to allocate a 128M object, pin it, then
pwrite the whole thing.  This should make obvious any leaks on close or
page pointer allocation failures.
2009-05-14 14:39:48 -07:00
Eric Anholt
c9de429332 Fix distcheck 2009-04-27 09:45:22 -07:00
Eric Anholt
49ccc2bfc2 .gitignore libtool junk 2009-04-27 09:41:41 -07:00
Eric Anholt
7583e811a5 intel_gpu_top: Add ring information. 2009-04-27 09:39:05 -07:00
Eric Anholt
302d15f2e7 Add a test to try to fill the ring.
Did this while trying to debug the Ubuntu DRI1+compiz issue.  Didn't succeed
in filling the ring.
2009-04-27 09:35:40 -07:00
Carl Worth
28a1d6436e intel_gpu_dump: Use asprintf instead of a static-sized array
Not that we're really concerned about buffer-overrun attacks
against this utility, but still, good habits and clean code
are always preferred.
2009-04-13 14:35:11 -07:00
Carl Worth
5b8c19445c intel_gpu_dump: Give a nicer message for missing batchbuffer-dumping code
This is the case where debugfs is mounted, the dri/0 directory
exists but there's no i915_ringbuffer_info file. Point the user
toward upgrading the driver.
2009-04-13 14:33:09 -07:00
Carl Worth
0a820610ee intel_gpu_dump: Mention filename in error message
This helps for when the user makes a typo trying to pass a file
or directory name to intel_gpu_dump.
2009-04-13 14:06:00 -07:00
Carl Worth
660a20f611 Add example command for mounting debugfs
This is a nice opportunity to teach the user something, (and help our
users to actually succeed in creating useful bug reports for us).
2009-04-13 14:02:04 -07:00
Eric Anholt
48888093b2 intel_gpu_dump: Add no-arguments automatic mode, and clean up comments. 2009-04-12 18:03:25 -07:00
Eric Anholt
5b40c86c9a intel_gpu_dump: Dump ring, batch, and head/tail info when given the directory. 2009-04-12 17:49:31 -07:00