From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [RFC PATCH i-g-t 0/1] April Tools: complete intel reg tool overhaul
Date: Wed, 1 Apr 2015 21:37:22 +0300 [thread overview]
Message-ID: <cover.1427910607.git.jani.nikula@intel.com> (raw)
Hi all -
I think having several overlapping register read/write/dump/etc. tools
is just silly. I've been working on unsillifying the situation a bit on
the background, in the idle moments ("while my kernel's compiling").
Here's what I got: a replacement for
intel_reg_dumper
quick_dump.py
intel_reg_read
intel_reg_write
intel_iosf_sb_read
intel_iosf_sb_write
intel_dpio_read
intel_dpio_write
intel_reg_snapshot
intel_vga_read
intel_vga_write
I'm calling it "intel_reg". It's a busybox-like tool that understands
the subcommands
dump
read
write
decode
snapshot
The read, write and decode subcommands understand register references in
the form [(PORTNAME|PORTNUM|MMIO-OFFSET):](REGNAME|REGADDR) letting you
address all registers on all platforms. For example,
$ intel_reg read DPIO:TX2_CH0_DW10
$ intel_reg write 0x70000 0xffff
The register "spec", i.e. the registers known by name and their mapping
to address, sideband port or mmio offset, is completely separated from
the decoding. The spec can be provided through quick_dump.py compatible
files (although it should not be difficult to add other formats). Quick
addition of new registers to dump is just as easy as for
quick_dump.py. As fallback, all the registers currently known by
intel_reg_dumper are built-in.
The decoding is done based on the resolved address, initially using the
same functionality currently available in intel_reg_dumper.
Now all the decoding and name<->address mapping is available for *all*
subcommands. All subcommands use the same output format (which,
admittedly, I didn't polish yet, but that's a few lines of printfs). For
dumping a bunch of registers with with --count, we also get the names
for all:
$ intel_reg read --count 2 BLC_PWM_CPU_CTL2
0x00048250 (BLC_PWM_CPU_CTL2): 0x80000000 enable 1, pipe A
0x00048254 (BLC_PWM_CPU_CTL): 0x00000206 cycle 518
intel_reg_decode.c is mostly a copy of intel_reg_dumper.c, otherwise
this is fairly small amount of code for the functionality, compared to
everything it's aiming to replace.
It's mostly done, probably with plenty of bikeshedding potential, so I
stopped short from the polishing stage. Let's hear it.
TODO consists of eating a previously done dump and re-decoding the
values with possibly updated decode code, bash completion for the
commands and register names, and also replacing intel_audio_dump which
has become a monster.
BR,
Jani.
Jani Nikula (1):
intel_reg: introduce one intel_reg tool to rule them all
tools/Makefile.sources | 6 +
tools/intel_reg.c | 658 +++++++++++
tools/intel_reg_decode.c | 2697 ++++++++++++++++++++++++++++++++++++++++++++++
tools/intel_reg_spec.c | 409 +++++++
tools/intel_reg_spec.h | 68 ++
5 files changed, 3838 insertions(+)
create mode 100644 tools/intel_reg.c
create mode 100644 tools/intel_reg_decode.c
create mode 100644 tools/intel_reg_spec.c
create mode 100644 tools/intel_reg_spec.h
--
2.1.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next reply other threads:[~2015-04-01 18:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-01 18:37 Jani Nikula [this message]
2015-04-01 18:37 ` [RFC PATCH i-g-t 1/1] intel_reg: introduce one intel_reg tool to rule them all Jani Nikula
2015-04-07 8:36 ` [RFC PATCH i-g-t 0/1] April Tools: complete intel reg tool overhaul Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1427910607.git.jani.nikula@intel.com \
--to=jani.nikula@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox