From 17b8abdb6b9401768c9b1821ac33220d3b7eea5e Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 23 Feb 2010 17:00:54 -0800 Subject: Add manpages for a bunch of recently-added tools. --- man/Makefile.am | 5 +++++ man/intel_audio_dump.1 | 11 +++++++++++ man/intel_bios_dumper.1 | 14 ++++++++++++++ man/intel_bios_reader.1 | 15 +++++++++++++++ man/intel_gtt.1 | 2 +- man/intel_lid.1 | 12 ++++++++++++ man/intel_reg_dumper.1 | 2 +- man/intel_reg_read.1 | 15 +++++++++++++++ man/intel_reg_write.1 | 2 +- 9 files changed, 75 insertions(+), 3 deletions(-) create mode 100644 man/intel_audio_dump.1 create mode 100644 man/intel_bios_dumper.1 create mode 100644 man/intel_bios_reader.1 create mode 100644 man/intel_lid.1 create mode 100644 man/intel_reg_read.1 (limited to 'man') diff --git a/man/Makefile.am b/man/Makefile.am index 2b9d8526..304c4804 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,8 +1,13 @@ dist_man1_MANS = \ + intel_audio_dump.1 \ + intel_bios_dumper.1 \ + intel_bios_reader.1 \ intel_gpu_dump.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 \ diff --git a/man/intel_audio_dump.1 b/man/intel_audio_dump.1 new file mode 100644 index 00000000..3d636c9f --- /dev/null +++ b/man/intel_audio_dump.1 @@ -0,0 +1,11 @@ +.\" 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_bios_dumper.1 b/man/intel_bios_dumper.1 new file mode 100644 index 00000000..062e0ff8 --- /dev/null +++ b/man/intel_bios_dumper.1 @@ -0,0 +1,14 @@ +.\" 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_reader.1 b/man/intel_bios_reader.1 new file mode 100644 index 00000000..cabc1105 --- /dev/null +++ b/man/intel_bios_reader.1 @@ -0,0 +1,15 @@ +.\" 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_gtt.1 b/man/intel_gtt.1 index 9d64e6bd..cd909050 100644 --- a/man/intel_gtt.1 +++ b/man/intel_gtt.1 @@ -1,4 +1,4 @@ -emacs .\" shorthand for double quote that works everywhere. +.\" shorthand for double quote that works everywhere. .ds q \N'34' .TH intel_gtt 1 "intel_gtt 1.0" .SH NAME diff --git a/man/intel_lid.1 b/man/intel_lid.1 new file mode 100644 index 00000000..97fd5317 --- /dev/null +++ b/man/intel_lid.1 @@ -0,0 +1,12 @@ +.\" 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_reg_dumper.1 b/man/intel_reg_dumper.1 index cdaeee12..9fbe300c 100644 --- a/man/intel_reg_dumper.1 +++ b/man/intel_reg_dumper.1 @@ -1,4 +1,4 @@ -emacs .\" shorthand for double quote that works everywhere. +.\" shorthand for double quote that works everywhere. .ds q \N'34' .TH intel_reg_dumper 1 "intel_reg_dumper 1.0" .SH NAME diff --git a/man/intel_reg_read.1 b/man/intel_reg_read.1 new file mode 100644 index 00000000..60aed9d3 --- /dev/null +++ b/man/intel_reg_read.1 @@ -0,0 +1,15 @@ +.\" 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_write.1 b/man/intel_reg_write.1 index 34c25a41..d70c5c6e 100644 --- a/man/intel_reg_write.1 +++ b/man/intel_reg_write.1 @@ -1,4 +1,4 @@ -emacs .\" shorthand for double quote that works everywhere. +.\" shorthand for double quote that works everywhere. .ds q \N'34' .TH intel_reg_write 1 "intel_reg_write 1.0" .SH NAME -- cgit v1.2.3