From 4384c68f2ed7dac944b1cf57ac4acda606fafffe Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 3 Jan 2012 21:12:19 -0500 Subject: Man pages still showing version 1.0 in the 1.1 release The patch coverts the man subdir to the standard xorg man page makefile. The version number is automatically updated when a new release is made. The man page section number is no longer hard coded either. The package util-macros at version 1.8 or greater is required. Acked-by: Cyril Brulebois Reviewed-by: Ben Widawsky Signed-off-by: Gaetan Nadon Signed-off-by: Daniel Vetter --- man/.gitignore | 1 - man/Makefile.am | 44 +++++++++++++++++++++++-------------- man/intel_audio_dump.1 | 11 ---------- man/intel_audio_dump.man | 11 ++++++++++ man/intel_bios_dumper.1 | 14 ------------ man/intel_bios_dumper.man | 14 ++++++++++++ man/intel_bios_reader.1 | 15 ------------- man/intel_bios_reader.man | 15 +++++++++++++ man/intel_error_decode.1 | 20 ----------------- man/intel_error_decode.man | 20 +++++++++++++++++ man/intel_gpu_top.1 | 41 ---------------------------------- man/intel_gpu_top.man | 41 ++++++++++++++++++++++++++++++++++ man/intel_gtt.1 | 14 ------------ man/intel_gtt.man | 14 ++++++++++++ man/intel_lid.1 | 12 ---------- man/intel_lid.man | 12 ++++++++++ man/intel_reg_dumper.1 | 24 -------------------- man/intel_reg_dumper.man | 24 ++++++++++++++++++++ man/intel_reg_read.1 | 15 ------------- man/intel_reg_read.man | 15 +++++++++++++ man/intel_reg_snapshot.1 | 15 ------------- man/intel_reg_snapshot.man | 15 +++++++++++++ man/intel_reg_write.1 | 16 -------------- man/intel_reg_write.man | 16 ++++++++++++++ man/intel_stepping.1 | 15 ------------- man/intel_stepping.man | 15 +++++++++++++ man/intel_upload_blit_large.1 | 18 --------------- man/intel_upload_blit_large.man | 18 +++++++++++++++ man/intel_upload_blit_large_gtt.1 | 18 --------------- man/intel_upload_blit_large_gtt.man | 18 +++++++++++++++ man/intel_upload_blit_large_map.1 | 18 --------------- man/intel_upload_blit_large_map.man | 18 +++++++++++++++ man/intel_upload_blit_small.1 | 18 --------------- man/intel_upload_blit_small.man | 18 +++++++++++++++ 34 files changed, 312 insertions(+), 301 deletions(-) delete mode 100644 man/.gitignore delete mode 100644 man/intel_audio_dump.1 create mode 100644 man/intel_audio_dump.man delete mode 100644 man/intel_bios_dumper.1 create mode 100644 man/intel_bios_dumper.man delete mode 100644 man/intel_bios_reader.1 create mode 100644 man/intel_bios_reader.man delete mode 100644 man/intel_error_decode.1 create mode 100644 man/intel_error_decode.man delete mode 100644 man/intel_gpu_top.1 create mode 100644 man/intel_gpu_top.man delete mode 100644 man/intel_gtt.1 create mode 100644 man/intel_gtt.man delete mode 100644 man/intel_lid.1 create mode 100644 man/intel_lid.man delete mode 100644 man/intel_reg_dumper.1 create mode 100644 man/intel_reg_dumper.man delete mode 100644 man/intel_reg_read.1 create mode 100644 man/intel_reg_read.man delete mode 100644 man/intel_reg_snapshot.1 create mode 100644 man/intel_reg_snapshot.man delete mode 100644 man/intel_reg_write.1 create mode 100644 man/intel_reg_write.man delete mode 100644 man/intel_stepping.1 create mode 100644 man/intel_stepping.man delete mode 100644 man/intel_upload_blit_large.1 create mode 100644 man/intel_upload_blit_large.man delete mode 100644 man/intel_upload_blit_large_gtt.1 create mode 100644 man/intel_upload_blit_large_gtt.man delete mode 100644 man/intel_upload_blit_large_map.1 create mode 100644 man/intel_upload_blit_large_map.man delete mode 100644 man/intel_upload_blit_small.1 create mode 100644 man/intel_upload_blit_small.man (limited to 'man') diff --git a/man/.gitignore b/man/.gitignore deleted file mode 100644 index af65d61e..00000000 --- a/man/.gitignore +++ /dev/null @@ -1 +0,0 @@ -!*.1 diff --git a/man/Makefile.am b/man/Makefile.am index 5187abde..2b541957 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,16 +1,28 @@ -dist_man1_MANS = \ - intel_audio_dump.1 \ - intel_bios_dumper.1 \ - intel_bios_reader.1 \ - intel_error_decode.1 \ - intel_gpu_top.1 \ - intel_gtt.1 \ - intel_lid.1 \ - intel_reg_dumper.1 \ - intel_reg_read.1 \ - intel_reg_write.1 \ - intel_stepping.1 \ - intel_upload_blit_large.1 \ - intel_upload_blit_large_gtt.1 \ - intel_upload_blit_large_map.1 \ - intel_upload_blit_small.1 +appmandir = $(APP_MAN_DIR) +appman_PRE = \ + intel_audio_dump.man \ + intel_bios_dumper.man \ + intel_bios_reader.man \ + intel_error_decode.man \ + intel_gpu_top.man \ + intel_gtt.man \ + intel_lid.man \ + intel_reg_dumper.man \ + intel_reg_read.man \ + intel_reg_write.man \ + intel_stepping.man \ + intel_upload_blit_large.man \ + intel_upload_blit_large_gtt.man \ + intel_upload_blit_large_map.man \ + intel_upload_blit_small.man + +appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX)) + +EXTRA_DIST = $(appman_PRE) +CLEANFILES = $(appman_DATA) + +# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +.man.$(APP_MAN_SUFFIX): + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ diff --git a/man/intel_audio_dump.1 b/man/intel_audio_dump.1 deleted file mode 100644 index 3d636c9f..00000000 --- a/man/intel_audio_dump.1 +++ /dev/null @@ -1,11 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_audio_dump 1 "intel_audio_dump 1.0" -.SH NAME -intel_audio_dump \- Dumps the Intel GPU registers for HDMI audio setup. -.SH SYNOPSIS -.B intel_audio_dump -.SH DESCRIPTION -.B intel_audio_dump -dumps and decodes registers containing the configuration of HDMI audio -handling on Intel GPUs. diff --git a/man/intel_audio_dump.man b/man/intel_audio_dump.man new file mode 100644 index 00000000..89a81ec4 --- /dev/null +++ b/man/intel_audio_dump.man @@ -0,0 +1,11 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_audio_dump __appmansuffix__ __xorgversion__ +.SH NAME +intel_audio_dump \- Dumps the Intel GPU registers for HDMI audio setup. +.SH SYNOPSIS +.B intel_audio_dump +.SH DESCRIPTION +.B intel_audio_dump +dumps and decodes registers containing the configuration of HDMI audio +handling on Intel GPUs. diff --git a/man/intel_bios_dumper.1 b/man/intel_bios_dumper.1 deleted file mode 100644 index 062e0ff8..00000000 --- a/man/intel_bios_dumper.1 +++ /dev/null @@ -1,14 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_bios_dumper 1 "intel_bios_dumper 1.0" -.SH NAME -intel_bios_dumper \- Saves the Intel video BIOS contents to a file. -.SH SYNOPSIS -.B intel_reg_read \fIfilename\fR -.SH DESCRIPTION -.B intel_bios_dumper -is a tool to save the contents of the Intel video BIOS to a file. It -can then be parsed offline for debugging issues with the video bios -table handling. -.SH SEE ALSO -.BR intel_bios_reader(1) diff --git a/man/intel_bios_dumper.man b/man/intel_bios_dumper.man new file mode 100644 index 00000000..0813a556 --- /dev/null +++ b/man/intel_bios_dumper.man @@ -0,0 +1,14 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_bios_dumper __appmansuffix__ __xorgversion__ +.SH NAME +intel_bios_dumper \- Saves the Intel video BIOS contents to a file. +.SH SYNOPSIS +.B intel_reg_read \fIfilename\fR +.SH DESCRIPTION +.B intel_bios_dumper +is a tool to save the contents of the Intel video BIOS to a file. It +can then be parsed offline for debugging issues with the video bios +table handling. +.SH SEE ALSO +.BR intel_bios_reader(1) diff --git a/man/intel_bios_reader.1 b/man/intel_bios_reader.1 deleted file mode 100644 index cabc1105..00000000 --- a/man/intel_bios_reader.1 +++ /dev/null @@ -1,15 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_bios_reader 1 "intel_bios_dumper 1.0" -.SH NAME -intel_bios_reader \- Parses an Intel BIOS and displays many of its tables -.SH SYNOPSIS -.B intel_bios_reader \fIfilename\fR -.SH DESCRIPTION -.B intel_bios_reader -is a tool to parse the contents of an Intel video BIOS file. The file -can come from intel_bios_dumper. This can be used for quick debugging -of video bios table handling, which is harder when done inside of the -kernel graphics driver. -.SH SEE ALSO -.BR intel_bios_dumper (1) diff --git a/man/intel_bios_reader.man b/man/intel_bios_reader.man new file mode 100644 index 00000000..2f125fc9 --- /dev/null +++ b/man/intel_bios_reader.man @@ -0,0 +1,15 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_bios_reader __appmansuffix__ __xorgversion__ +.SH NAME +intel_bios_reader \- Parses an Intel BIOS and displays many of its tables +.SH SYNOPSIS +.B intel_bios_reader \fIfilename\fR +.SH DESCRIPTION +.B intel_bios_reader +is a tool to parse the contents of an Intel video BIOS file. The file +can come from intel_bios_dumper. This can be used for quick debugging +of video bios table handling, which is harder when done inside of the +kernel graphics driver. +.SH SEE ALSO +.BR intel_bios_dumper (1) diff --git a/man/intel_error_decode.1 b/man/intel_error_decode.1 deleted file mode 100644 index db03bb6e..00000000 --- a/man/intel_error_decode.1 +++ /dev/null @@ -1,20 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_error_decode 1 "intel_error_decode 1.0" -.SH NAME -intel_error_decode \- Decodes an Intel GPU dump automatically captured by the kernel at the time of an error. -.SH SYNOPSIS -.nf -.B intel_error_decode -.B intel_error_decode [ filename ] -.fi -.SH DESCRIPTION -.B intel_error_decode -is a tool that decodes the instructions and state of the GPU at the time of -an error. It requires kernel 2.6.34 or newer, and either debugfs mounted on -/sys/kernel/debug or /debug containing a current i915_error_state or you can -pass a file containing a saved error. -.SS Options -.TP -.B filename -Decodes a previously saved error. diff --git a/man/intel_error_decode.man b/man/intel_error_decode.man new file mode 100644 index 00000000..e53d898d --- /dev/null +++ b/man/intel_error_decode.man @@ -0,0 +1,20 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_error_decode __appmansuffix__ __xorgversion__ +.SH NAME +intel_error_decode \- Decodes an Intel GPU dump automatically captured by the kernel at the time of an error. +.SH SYNOPSIS +.nf +.B intel_error_decode +.B intel_error_decode [ filename ] +.fi +.SH DESCRIPTION +.B intel_error_decode +is a tool that decodes the instructions and state of the GPU at the time of +an error. It requires kernel 2.6.34 or newer, and either debugfs mounted on +/sys/kernel/debug or /debug containing a current i915_error_state or you can +pass a file containing a saved error. +.SS Options +.TP +.B filename +Decodes a previously saved error. diff --git a/man/intel_gpu_top.1 b/man/intel_gpu_top.1 deleted file mode 100644 index 1a483fcb..00000000 --- a/man/intel_gpu_top.1 +++ /dev/null @@ -1,41 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_gpu_top 1 "intel_gpu_top 1.0" -.SH NAME -intel_gpu_top \- Display a top-like summary of Intel GPU usage -.SH SYNOPSIS -.nf -.B intel_gpu_top -.B intel_gpu_top [ parameters ] -.SH DESCRIPTION -.B intel_gpu_top -is a tool to display usage information of an Intel GPU. It requires root -privilege to map the graphics device. -.SS Options -.TP -.B -s [samples per second] -number of samples to acquire per second -.TP -.B -o [output file] -collect usage statistics to [file]. If file is "-", run non-interactively -and output statistics to stdout. -.TP -.B -e ["command to profile"] -execute a command, and leave when it is finished. Note that the entire command -with all parameters should be included as one parameter. -.TP -.B -h -show usage notes -.SH EXAMPLES -.TP -intel_gpu_top -o "cairo-trace-gvim.log" -s 100 -e "cairo-perf-trace /tmp/gvim" -will run cairo-perf-trace with /tmp/gvim trace, non-interactively, saving the -statistics into cairo-trace-gvim.log file, and collecting 100 samples per -second. -.PP -Note that idle units are not -displayed, so an entirely idle GPU will only display the ring status and -header. -.SH BUGS -Some GPUs report some units as busy when they aren't, such that even when -idle and not hung, it will show up as 100% busy. diff --git a/man/intel_gpu_top.man b/man/intel_gpu_top.man new file mode 100644 index 00000000..b307a238 --- /dev/null +++ b/man/intel_gpu_top.man @@ -0,0 +1,41 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_gpu_top __appmansuffix__ __xorgversion__ +.SH NAME +intel_gpu_top \- Display a top-like summary of Intel GPU usage +.SH SYNOPSIS +.nf +.B intel_gpu_top +.B intel_gpu_top [ parameters ] +.SH DESCRIPTION +.B intel_gpu_top +is a tool to display usage information of an Intel GPU. It requires root +privilege to map the graphics device. +.SS Options +.TP +.B -s [samples per second] +number of samples to acquire per second +.TP +.B -o [output file] +collect usage statistics to [file]. If file is "-", run non-interactively +and output statistics to stdout. +.TP +.B -e ["command to profile"] +execute a command, and leave when it is finished. Note that the entire command +with all parameters should be included as one parameter. +.TP +.B -h +show usage notes +.SH EXAMPLES +.TP +intel_gpu_top -o "cairo-trace-gvim.log" -s 100 -e "cairo-perf-trace /tmp/gvim" +will run cairo-perf-trace with /tmp/gvim trace, non-interactively, saving the +statistics into cairo-trace-gvim.log file, and collecting 100 samples per +second. +.PP +Note that idle units are not +displayed, so an entirely idle GPU will only display the ring status and +header. +.SH BUGS +Some GPUs report some units as busy when they aren't, such that even when +idle and not hung, it will show up as 100% busy. diff --git a/man/intel_gtt.1 b/man/intel_gtt.1 deleted file mode 100644 index dd036aff..00000000 --- a/man/intel_gtt.1 +++ /dev/null @@ -1,14 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_gtt 1 "intel_gtt 1.0" -.SH NAME -intel_gtt \- Dump the contents of an Intel GPU's GTT -.SH SYNOPSIS -.B intel_gtt -.SH DESCRIPTION -.B intel_gtt -is a tool to view the contents of the GTT on an Intel GPU. The GTT is -the page table that maps between GPU addresses and system memory. -This tool can be useful in debugging the Linux AGP driver -initialization of the chip or in debugging later overwriting of the -GTT with garbage data. diff --git a/man/intel_gtt.man b/man/intel_gtt.man new file mode 100644 index 00000000..8b23f287 --- /dev/null +++ b/man/intel_gtt.man @@ -0,0 +1,14 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_gtt __appmansuffix__ __xorgversion__ +.SH NAME +intel_gtt \- Dump the contents of an Intel GPU's GTT +.SH SYNOPSIS +.B intel_gtt +.SH DESCRIPTION +.B intel_gtt +is a tool to view the contents of the GTT on an Intel GPU. The GTT is +the page table that maps between GPU addresses and system memory. +This tool can be useful in debugging the Linux AGP driver +initialization of the chip or in debugging later overwriting of the +GTT with garbage data. diff --git a/man/intel_lid.1 b/man/intel_lid.1 deleted file mode 100644 index 97fd5317..00000000 --- a/man/intel_lid.1 +++ /dev/null @@ -1,12 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_lid 1 "intel_lid 1.0" -.SH NAME -intel_ \- Polls the values of different reports about laptop lid state. -.SH SYNOPSIS -.B intel_lid -.SH DESCRIPTION -.B intel_lid -is a tool to poll ACPI and the BIOS scratch register's reporting of -laptop lid state. This can be used for debugging issues with laptop -modesetting for lid opening and closing. diff --git a/man/intel_lid.man b/man/intel_lid.man new file mode 100644 index 00000000..d06af79b --- /dev/null +++ b/man/intel_lid.man @@ -0,0 +1,12 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_lid __appmansuffix__ __xorgversion__ +.SH NAME +intel_ \- Polls the values of different reports about laptop lid state. +.SH SYNOPSIS +.B intel_lid +.SH DESCRIPTION +.B intel_lid +is a tool to poll ACPI and the BIOS scratch register's reporting of +laptop lid state. This can be used for debugging issues with laptop +modesetting for lid opening and closing. diff --git a/man/intel_reg_dumper.1 b/man/intel_reg_dumper.1 deleted file mode 100644 index a92b054c..00000000 --- a/man/intel_reg_dumper.1 +++ /dev/null @@ -1,24 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_reg_dumper 1 "intel_reg_dumper 1.0" -.SH NAME -intel_reg_dumper \- Decode a bunch of Intel GPU registers for debugging -.SH SYNOPSIS -.B intel_reg_dumper [ file ] -.SH DESCRIPTION -.B intel_reg_dumper -is a tool to read and decode the values of many Intel GPU registers. It is -commonly used in debugging video mode setting issues. If the -.B file -argument is present, the registers will be decoded from the given file -instead of the current registers. Use the -.B intel_reg_snapshot -tool to generate such files. -.SH ENVIRONMENT -.BR HAS_PCH_SPLIT -.PP -If set, decode as though the GPU has a PCH split. This is only necessary for -Intel HD (Ironlake) and later register dumps in files; live decodes get this -correct automatically. -.SH SEE ALSO -.BR intel_reg_snapshot(1) diff --git a/man/intel_reg_dumper.man b/man/intel_reg_dumper.man new file mode 100644 index 00000000..63f3dcdc --- /dev/null +++ b/man/intel_reg_dumper.man @@ -0,0 +1,24 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_reg_dumper __appmansuffix__ __xorgversion__ +.SH NAME +intel_reg_dumper \- Decode a bunch of Intel GPU registers for debugging +.SH SYNOPSIS +.B intel_reg_dumper [ file ] +.SH DESCRIPTION +.B intel_reg_dumper +is a tool to read and decode the values of many Intel GPU registers. It is +commonly used in debugging video mode setting issues. If the +.B file +argument is present, the registers will be decoded from the given file +instead of the current registers. Use the +.B intel_reg_snapshot +tool to generate such files. +.SH ENVIRONMENT +.BR HAS_PCH_SPLIT +.PP +If set, decode as though the GPU has a PCH split. This is only necessary for +Intel HD (Ironlake) and later register dumps in files; live decodes get this +correct automatically. +.SH SEE ALSO +.BR intel_reg_snapshot(1) diff --git a/man/intel_reg_read.1 b/man/intel_reg_read.1 deleted file mode 100644 index 60aed9d3..00000000 --- a/man/intel_reg_read.1 +++ /dev/null @@ -1,15 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_reg_read 1 "intel_reg_read 1.0" -.SH NAME -intel_reg_read \- Reads an Intel GPU register value -.SH SYNOPSIS -.B intel_reg_read \fIregister\fR -.SH DESCRIPTION -.B intel_reg_read -is a tool to read Intel GPU registers, for use in debugging. The -\fIregister\fR argument is given as hexadecimal. -.SH EXAMPLES -.TP -intel_reg_read 0x61230 -Shows the register value for the first internal panel fitter. diff --git a/man/intel_reg_read.man b/man/intel_reg_read.man new file mode 100644 index 00000000..cc2bf612 --- /dev/null +++ b/man/intel_reg_read.man @@ -0,0 +1,15 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_reg_read __appmansuffix__ __xorgversion__ +.SH NAME +intel_reg_read \- Reads an Intel GPU register value +.SH SYNOPSIS +.B intel_reg_read \fIregister\fR +.SH DESCRIPTION +.B intel_reg_read +is a tool to read Intel GPU registers, for use in debugging. The +\fIregister\fR argument is given as hexadecimal. +.SH EXAMPLES +.TP +intel_reg_read 0x61230 +Shows the register value for the first internal panel fitter. diff --git a/man/intel_reg_snapshot.1 b/man/intel_reg_snapshot.1 deleted file mode 100644 index 07cfb6e3..00000000 --- a/man/intel_reg_snapshot.1 +++ /dev/null @@ -1,15 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_reg_snapshot 1 "intel_reg_snapshot 1.0" -.SH NAME -intel_reg_snapshot \- Take a GPU register snapshot -.SH SYNOPSIS -.B intel_reg_snapshot -.SH DESCRIPTION -.B intel_reg_snapshot -takes a snapshot of the registers of an Intel GPU, and writes it to standard -output. These files can be inspected later with the -.B intel_reg_dumper -tool. -.SH SEE ALSO -.BR intel_reg_dumper(1) diff --git a/man/intel_reg_snapshot.man b/man/intel_reg_snapshot.man new file mode 100644 index 00000000..1930f613 --- /dev/null +++ b/man/intel_reg_snapshot.man @@ -0,0 +1,15 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_reg_snapshot __appmansuffix__ __xorgversion__ +.SH NAME +intel_reg_snapshot \- Take a GPU register snapshot +.SH SYNOPSIS +.B intel_reg_snapshot +.SH DESCRIPTION +.B intel_reg_snapshot +takes a snapshot of the registers of an Intel GPU, and writes it to standard +output. These files can be inspected later with the +.B intel_reg_dumper +tool. +.SH SEE ALSO +.BR intel_reg_dumper(1) diff --git a/man/intel_reg_write.1 b/man/intel_reg_write.1 deleted file mode 100644 index d70c5c6e..00000000 --- a/man/intel_reg_write.1 +++ /dev/null @@ -1,16 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_reg_write 1 "intel_reg_write 1.0" -.SH NAME -intel_reg_write \- Set an Intel GPU register to a value -.SH SYNOPSIS -.B intel_reg_write \fIregister\fR \fIvalue\fR -.SH DESCRIPTION -.B intel_reg_write -is a tool to set Intel GPU registers to values, for use in speeding up -debugging. The \fIregister\fR and \fIvalue\fR arguments are given as -hexadecimal. -.SH EXAMPLES -.TP -intel_reg_write 0x61230 0x0 -Disables the first internal panel fitter. diff --git a/man/intel_reg_write.man b/man/intel_reg_write.man new file mode 100644 index 00000000..cb1731c6 --- /dev/null +++ b/man/intel_reg_write.man @@ -0,0 +1,16 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_reg_write __appmansuffix__ __xorgversion__ +.SH NAME +intel_reg_write \- Set an Intel GPU register to a value +.SH SYNOPSIS +.B intel_reg_write \fIregister\fR \fIvalue\fR +.SH DESCRIPTION +.B intel_reg_write +is a tool to set Intel GPU registers to values, for use in speeding up +debugging. The \fIregister\fR and \fIvalue\fR arguments are given as +hexadecimal. +.SH EXAMPLES +.TP +intel_reg_write 0x61230 0x0 +Disables the first internal panel fitter. diff --git a/man/intel_stepping.1 b/man/intel_stepping.1 deleted file mode 100644 index 7221b495..00000000 --- a/man/intel_stepping.1 +++ /dev/null @@ -1,15 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_stepping 1 "intel_stepping 1.0" -.SH NAME -intel_stepping \- Display the stepping information for an Intel GPU -.SH SYNOPSIS -.B intel_stepping -.SH DESCRIPTION -.B intel_stepping -is a tool to print the stepping information for an Intel GPU, along with -the PCI ID and revision used to determine it. -It requires root privilege to map the graphics device. -.SH BUGS -Not all the known stepping IDs or chipsets are included, so the output -on some devices may not be as specific as possible. diff --git a/man/intel_stepping.man b/man/intel_stepping.man new file mode 100644 index 00000000..fe172107 --- /dev/null +++ b/man/intel_stepping.man @@ -0,0 +1,15 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_stepping __appmansuffix__ __xorgversion__ +.SH NAME +intel_stepping \- Display the stepping information for an Intel GPU +.SH SYNOPSIS +.B intel_stepping +.SH DESCRIPTION +.B intel_stepping +is a tool to print the stepping information for an Intel GPU, along with +the PCI ID and revision used to determine it. +It requires root privilege to map the graphics device. +.SH BUGS +Not all the known stepping IDs or chipsets are included, so the output +on some devices may not be as specific as possible. diff --git a/man/intel_upload_blit_large.1 b/man/intel_upload_blit_large.1 deleted file mode 100644 index 0f7e4aae..00000000 --- a/man/intel_upload_blit_large.1 +++ /dev/null @@ -1,18 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_upload_blit_large 1 "intel_upload_blit_large 1.0" -.SH NAME -intel_upload_blit_large \- microbenchmark of Intel GPU performance -.SH SYNOPSIS -.nf -.B intel_upload_blit_large -.fi -.SH DESCRIPTION -.B intel_upload_blit_large -is a microbenchmark tool for DRM performance. It should be run with kernel -modesetting enabled, and may require root privilege for correct operation. -It does not require X to be running. -.PP -Given that it is a microbenchmark, its utility is largely for regression -testing of the kernel, and not for general conclusions on graphics -performance. diff --git a/man/intel_upload_blit_large.man b/man/intel_upload_blit_large.man new file mode 100644 index 00000000..9c75e1a1 --- /dev/null +++ b/man/intel_upload_blit_large.man @@ -0,0 +1,18 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_upload_blit_large __appmansuffix__ __xorgversion__ +.SH NAME +intel_upload_blit_large \- microbenchmark of Intel GPU performance +.SH SYNOPSIS +.nf +.B intel_upload_blit_large +.fi +.SH DESCRIPTION +.B intel_upload_blit_large +is a microbenchmark tool for DRM performance. It should be run with kernel +modesetting enabled, and may require root privilege for correct operation. +It does not require X to be running. +.PP +Given that it is a microbenchmark, its utility is largely for regression +testing of the kernel, and not for general conclusions on graphics +performance. diff --git a/man/intel_upload_blit_large_gtt.1 b/man/intel_upload_blit_large_gtt.1 deleted file mode 100644 index 289f8ff7..00000000 --- a/man/intel_upload_blit_large_gtt.1 +++ /dev/null @@ -1,18 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_upload_blit_large_gtt 1 "intel_upload_blit_large_gtt 1.0" -.SH NAME -intel_upload_blit_large_gtt \- microbenchmark of Intel GPU performance -.SH SYNOPSIS -.nf -.B intel_upload_blit_large_gtt -.fi -.SH DESCRIPTION -.B intel_upload_blit_large_gtt -is a microbenchmark tool for DRM performance. It should be run with kernel -modesetting enabled, and may require root privilege for correct operation. -It does not require X to be running. -.PP -Given that it is a microbenchmark, its utility is largely for regression -testing of the kernel, and not for general conclusions on graphics -performance. diff --git a/man/intel_upload_blit_large_gtt.man b/man/intel_upload_blit_large_gtt.man new file mode 100644 index 00000000..fbe4623c --- /dev/null +++ b/man/intel_upload_blit_large_gtt.man @@ -0,0 +1,18 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_upload_blit_large_gtt __appmansuffix__ __xorgversion__ +.SH NAME +intel_upload_blit_large_gtt \- microbenchmark of Intel GPU performance +.SH SYNOPSIS +.nf +.B intel_upload_blit_large_gtt +.fi +.SH DESCRIPTION +.B intel_upload_blit_large_gtt +is a microbenchmark tool for DRM performance. It should be run with kernel +modesetting enabled, and may require root privilege for correct operation. +It does not require X to be running. +.PP +Given that it is a microbenchmark, its utility is largely for regression +testing of the kernel, and not for general conclusions on graphics +performance. diff --git a/man/intel_upload_blit_large_map.1 b/man/intel_upload_blit_large_map.1 deleted file mode 100644 index b558b85e..00000000 --- a/man/intel_upload_blit_large_map.1 +++ /dev/null @@ -1,18 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_upload_blit_large_map 1 "intel_upload_blit_large_map 1.0" -.SH NAME -intel_upload_blit_large_map \- microbenchmark of Intel GPU performance -.SH SYNOPSIS -.nf -.B intel_upload_blit_large_map -.fi -.SH DESCRIPTION -.B intel_upload_blit_large_map -is a microbenchmark tool for DRM performance. It should be run with kernel -modesetting enabled, and may require root privilege for correct operation. -It does not require X to be running. -.PP -Given that it is a microbenchmark, its utility is largely for regression -testing of the kernel, and not for general conclusions on graphics -performance. diff --git a/man/intel_upload_blit_large_map.man b/man/intel_upload_blit_large_map.man new file mode 100644 index 00000000..04123f3d --- /dev/null +++ b/man/intel_upload_blit_large_map.man @@ -0,0 +1,18 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_upload_blit_large_map __appmansuffix__ __xorgversion__ +.SH NAME +intel_upload_blit_large_map \- microbenchmark of Intel GPU performance +.SH SYNOPSIS +.nf +.B intel_upload_blit_large_map +.fi +.SH DESCRIPTION +.B intel_upload_blit_large_map +is a microbenchmark tool for DRM performance. It should be run with kernel +modesetting enabled, and may require root privilege for correct operation. +It does not require X to be running. +.PP +Given that it is a microbenchmark, its utility is largely for regression +testing of the kernel, and not for general conclusions on graphics +performance. diff --git a/man/intel_upload_blit_small.1 b/man/intel_upload_blit_small.1 deleted file mode 100644 index d3773b55..00000000 --- a/man/intel_upload_blit_small.1 +++ /dev/null @@ -1,18 +0,0 @@ -.\" shorthand for double quote that works everywhere. -.ds q \N'34' -.TH intel_upload_blit_small 1 "intel_upload_blit_small 1.0" -.SH NAME -intel_upload_blit_small \- microbenchmark of Intel GPU performance -.SH SYNOPSIS -.nf -.B intel_upload_blit_small -.fi -.SH DESCRIPTION -.B intel_upload_blit_small -is a microbenchmark tool for DRM performance. It should be run with kernel -modesetting enabled, and may require root privilege for correct operation. -It does not require X to be running. -.PP -Given that it is a microbenchmark, its utility is largely for regression -testing of the kernel, and not for general conclusions on graphics -performance. diff --git a/man/intel_upload_blit_small.man b/man/intel_upload_blit_small.man new file mode 100644 index 00000000..478bbfc5 --- /dev/null +++ b/man/intel_upload_blit_small.man @@ -0,0 +1,18 @@ +.\" shorthand for double quote that works everywhere. +.ds q \N'34' +.TH intel_upload_blit_small __appmansuffix__ __xorgversion__ +.SH NAME +intel_upload_blit_small \- microbenchmark of Intel GPU performance +.SH SYNOPSIS +.nf +.B intel_upload_blit_small +.fi +.SH DESCRIPTION +.B intel_upload_blit_small +is a microbenchmark tool for DRM performance. It should be run with kernel +modesetting enabled, and may require root privilege for correct operation. +It does not require X to be running. +.PP +Given that it is a microbenchmark, its utility is largely for regression +testing of the kernel, and not for general conclusions on graphics +performance. -- cgit v1.2.3