2007-09-18 02:01:27 +02:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
Superiotool README
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Superiotool is a user-space utility which can
|
|
|
|
|
|
|
|
- detect which Super I/O chip is soldered onto your mainboard,
|
|
|
|
|
|
|
|
- at which configuration port it's located (usually 0x2e or 0x4e), and
|
|
|
|
|
|
|
|
- dump all register contents of the Super I/O chip, together with the
|
|
|
|
default values as per datasheet (to make comparing the values easy).
|
|
|
|
|
|
|
|
It is mainly used for LinuxBIOS development purposes (see linuxbios.org
|
|
|
|
for details on LinuxBIOS), but it may also be useful for other things.
|
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
$ svn co svn://linuxbios.org/repos/trunk/util/superiotool
|
|
|
|
|
|
|
|
$ make
|
|
|
|
|
|
|
|
$ sudo make install
|
|
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
$ superiotool [-d] [-D] [-V] [-v] [-h]
|
2007-09-18 02:01:27 +02:00
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
-d | --dump Dump Super I/O registers
|
|
|
|
-D | --dump-readable Dump Super I/O registers in human-readable format
|
|
|
|
-V | --verbose Verbose mode
|
|
|
|
-v | --version Show the superiotool version
|
|
|
|
-h | --help Show a short help text
|
2007-09-19 18:26:18 +02:00
|
|
|
|
|
|
|
Per default (no options) superiotool will just probe for a Super I/O
|
|
|
|
and print its vendor, name, ID, version, and config port.
|
|
|
|
|
|
|
|
Typical usage of superiotool:
|
|
|
|
|
|
|
|
- Probe/detect the Super I/O in your mainboard:
|
|
|
|
|
|
|
|
$ superiotool
|
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
- Register dump as table of hex-values of the Super I/O (if detected):
|
2007-09-19 18:26:18 +02:00
|
|
|
|
|
|
|
$ superiotool -d
|
2007-09-18 02:01:27 +02:00
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
- Detailed register dump in human-readable format:
|
|
|
|
|
|
|
|
$ superiotool -D
|
|
|
|
|
2007-09-18 02:01:27 +02:00
|
|
|
|
|
|
|
Supported Super I/O Chips
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
Please see http://linuxbios.org/Superiotool#Supported_devices.
|
|
|
|
|
|
|
|
|
|
|
|
Website and Mailing List
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
The main website is http://linuxbios.org/Superiotool.
|
|
|
|
|
|
|
|
For additional information, patches, and discussions, please join the
|
|
|
|
LinuxBIOS mailing list at http://linuxbios.org/Mailinglist, where most
|
|
|
|
superiotool developers are subscribed.
|
|
|
|
|
|
|
|
|
|
|
|
Copyright and License
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Superiotool is copyrighted by a number of individual developers. Please
|
|
|
|
refer to the respective source code files for details.
|
|
|
|
|
|
|
|
It is licensed under the terms of the GNU General Public License (GPL),
|
|
|
|
either version 2 of the License, or (at your option) any later version.
|
|
|
|
|