Drop support for the --human-readable option. It's not any more useful than
authorUwe Hermann <uwe@hermann-uwe.de>
Wed, 17 Oct 2007 23:43:59 +0000 (23:43 +0000)
committerUwe Hermann <uwe@hermann-uwe.de>
Wed, 17 Oct 2007 23:43:59 +0000 (23:43 +0000)
the --dump option, it just means lots of additional work for no gain, IMO.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2872 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

util/superiotool/README
util/superiotool/ali.c
util/superiotool/fintek.c
util/superiotool/ite.c
util/superiotool/nsc.c
util/superiotool/smsc.c
util/superiotool/superiotool.8
util/superiotool/superiotool.c
util/superiotool/superiotool.h
util/superiotool/winbond.c

index 2a152f3f689377da7ce9e9ef3d6d03e80e88e3f6..c971e7f420f30285199944d12e52d847ffe82635 100644 (file)
@@ -33,7 +33,6 @@ Usage
  $ superiotool [-d] [-D] [-V] [-v] [-h]
 
  -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
@@ -51,10 +50,6 @@ Typical usage of superiotool:
 
    $ superiotool -d
 
- - Detailed register dump in human-readable format:
-
-   $ superiotool -D
-
 
 Supported Super I/O Chips
 -------------------------
index 58d348577a748fa8e49049aacdfa5ac3a1e3f9b1..9331c65c3077a916e2b7acf48aaee3269fdf3d8c 100644 (file)
@@ -92,7 +92,6 @@ void probe_idregs_ali(uint16_t port)
        chip_found = 1;
 
        dump_superio("ALi", reg_table, port, id);
-       dump_superio_readable(port); /* TODO */
 
        exit_conf_mode_ali(port);
 }
index bdabbc6583165aeaf9d3ed9cb36c7e406a00c712..461be1821f5e4dd2be74aecbe7f84923bd2752c0 100644 (file)
@@ -70,68 +70,6 @@ const static struct superio_registers reg_table[] = {
        {EOT}
 };
 
-static void dump_readable_fintek(uint16_t port, uint16_t did)
-{
-       if (!dump_readable)
-               return;
-
-       printf("Human-readable register dump:\n");
-
-       printf("Flash write is %s.\n",
-              regval(port, 0x28) & 0x80 ? "enabled" : "disabled");
-       printf("Flash control is 0x%04x.\n", regval(port, 0x28));
-       printf("27=%02x\n", regval(port, 0x27));
-       printf("29=%02x\n", regval(port, 0x29));
-       printf("2a=%02x\n", regval(port, 0x2a));
-       printf("2b=%02x\n", regval(port, 0x2b));
-
-       /* Select UART 1. */
-       regwrite(port, 0x07, 0x01);
-       printf("UART1 is %s\n",
-              regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf("UART1 base=%02x%02x, irq=%02x, mode=%s\n", regval(port, 0x60),
-              regval(port, 0x61), regval(port, 0x70) & 0x0f,
-              regval(port, 0xf0) & 0x10 ? "RS485" : "RS232");
-
-       /* Select UART 2. */
-       regwrite(port, 0x07, 0x02);
-       printf("UART2 is %s\n",
-              regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf("UART2 base=%02x%02x, irq=%02x, mode=%s\n", regval(port, 0x60),
-              regval(port, 0x61), regval(port, 0x70) & 0x0f,
-              regval(port, 0xf0) & 0x10 ? "RS485" : "RS232");
-
-       /* Select parallel port. */
-       regwrite(port, 0x07, 0x03);
-       printf("PARPORT is %s\n",
-              regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf("PARPORT base=%02x%02x, irq=%02x\n", regval(port, 0x60),
-              regval(port, 0x61), regval(port, 0x70) & 0x0f);
-
-       /* Select HW monitor. */
-       regwrite(port, 0x07, 0x04);
-       printf("HW monitor is %s\n",
-              regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf("HW monitor base=%02x%02x, irq=%02x\n", regval(port, 0x60),
-              regval(port, 0x61), regval(port, 0x70) & 0x0f);
-
-       /* Select GPIO. */
-       regwrite(port, 0x07, 0x05);
-       printf("GPIO is %s\n", regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf
-           ("GPIO 70=%02x, e0=%02x, e1=%02x, e2=%02x, e3=%02x, e4=%02x, e5=%02x\n",
-            regval(port, 0x70), regval(port, 0xe0), regval(port, 0xe1),
-            regval(port, 0xe2), regval(port, 0xe3), regval(port, 0xe4),
-            regval(port, 0xe5));
-       printf
-           ("GPIO e6=%02x, e7=%02x, e8=%02x, e9=%02x, f0=%02x, f1=%02x, f3=%02x, f4=%02x\n",
-            regval(port, 0xe6), regval(port, 0xe7), regval(port, 0xe8),
-            regval(port, 0xe9), regval(port, 0xf0), regval(port, 0xf1),
-            regval(port, 0xf3), regval(port, 0xf4));
-       printf("GPIO f5=%02x, f6=%02x, f7=%02x, f8=%02x\n", regval(port, 0xf5),
-              regval(port, 0xf6), regval(port, 0xf7), regval(port, 0xf8));
-}
-
 void probe_idregs_fintek(uint16_t port)
 {
        uint16_t vid, did;
@@ -158,7 +96,6 @@ void probe_idregs_fintek(uint16_t port)
        chip_found = 1;
 
        dump_superio("Fintek", reg_table, port, did);
-       dump_readable_fintek(port, did);
 
        exit_conf_mode_winbond_fintek_ite_8787(port);
 }
index 6b201d9404ef3493afc72033fb085bcbcf225fee..060ebf2f45851915fa7b3c39eb06c43d02ccc9ae 100644 (file)
@@ -369,7 +369,6 @@ static void probe_idregs_ite_helper(const char *init, uint16_t port)
        chip_found = 1;
 
        dump_superio("ITE", reg_table, port, id);
-       dump_superio_readable(port); /* TODO */
 }
 
 void probe_idregs_ite(uint16_t port)
index 3863101bfb8a713cffa324fa69df5584db8be152..0edf2a0ab57cc53031831344061728c3535c5688 100644 (file)
@@ -135,42 +135,6 @@ const static struct superio_registers reg_table[] = {
        {EOT}
 };
 
-static void dump_readable_pc8374l(uint16_t port)
-{
-       if (!dump_readable)
-               return;
-
-       printf("Human-readable register dump:\n");
-
-       printf("Enables: 21=%02x, 22=%02x, 23=%02x, 24=%02x, 26=%02x\n",
-              regval(port, 0x21), regval(port, 0x22), regval(port, 0x23),
-              regval(port, 0x24), regval(port, 0x26));
-       printf("SMBUS at %02x\n", regval(port, 0x2a));
-
-       /* Check COM1. This is all we care about at present. */
-       printf("COM 1 is globally %s\n",
-              regval(port, 0x26) & 8 ? "disabled" : "enabled");
-
-       /* Select COM1. */
-       regwrite(port, 0x07, 0x03);
-       printf("COM 1 is locally %s\n",
-              regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf
-           ("COM1 60=%02x, 61=%02x, 70=%02x, 71=%02x, 74=%02x, 75=%02x, f0=%02x\n",
-            regval(port, 0x60), regval(port, 0x61), regval(port, 0x70),
-            regval(port, 0x71), regval(port, 0x74), regval(port, 0x75),
-            regval(port, 0xf0));
-
-       /* Select GPIO. */
-       regwrite(port, 0x07, 0x07);
-       printf("GPIO is %s\n", regval(port, 0x30) & 1 ? "enabled" : "disabled");
-       printf
-           ("GPIO 60=%02x, 61=%02x, 70=%02x, 71=%02x, 74=%02x, 75=%02x, f0=%02x\n",
-            regval(port, 0x60), regval(port, 0x61), regval(port, 0x70),
-            regval(port, 0x71), regval(port, 0x74), regval(port, 0x75),
-            regval(port, 0xf0));
-}
-
 void probe_idregs_nsc(uint16_t port)
 {
        uint8_t id, rev;
@@ -205,7 +169,5 @@ void probe_idregs_nsc(uint16_t port)
        chip_found = 1;
 
        dump_superio("NSC", reg_table, port, id);
-       if (id == 0xf1)
-               dump_readable_pc8374l(port);
 }
 
index d4e7b6e2b1b008422d57ff90fdb51401bcc3f33e..f26204dc51196286649c8ad2ffbc6feeb8e63abf 100644 (file)
@@ -381,7 +381,6 @@ static void probe_idregs_smsc_helper(uint16_t port, uint8_t idreg,
        chip_found = 1;
 
        dump_superio((id == 0x77 ? "ASUS" : "SMSC"), reg_table, port, id);
-       dump_superio_readable(port); /* TODO */
 
        exit_conf_mode_smsc(port);
 }
index 711509ceedba611cffc327e2781258da89b5125b..17066bfa012110ccad779b6d62474ef3d1dc1e81 100644 (file)
@@ -2,7 +2,7 @@
 .SH NAME
 superiotool \- Super I/O detection tool
 .SH SYNOPSIS
-.B superiotool \fR[\fB\-dDVvh\fR] 
+.B superiotool \fR[\fB\-dVvh\fR] 
 .SH DESCRIPTION
 .B superiotool
 is a GPL'd user-space utility which can
@@ -72,17 +72,6 @@ which can mean several things. It's recommended to consult the datasheet for
 detailed information about the
 .BR MM " fields."
 .TP
-.B "\-D, \-\-dump-readable"
-Dump Super I/O registers in human-readable format (if the Super I/O chip
-is detected and
-.B superiotool
-supports the
-.B "\-\-dump-readable"
-option for this chip).
-.sp
-The output format of this option is different for every Super I/O, and only
-very few Super I/Os currently support this option.
-.TP
 .B "\-V, \-\-verbose"
 Enable verbose mode. This option can be used together with the
 .BR "\-d" " or " "\-D" " option (or both)."
index 202daec15173482c496f29ed3a89782a07644300..47561c9ef014a75dd8f48acaefe8142d594d7557 100644 (file)
@@ -23,7 +23,7 @@
 #include "superiotool.h"
 
 /* Command line options. */
-int dump = 0, dump_readable = 0, verbose = 0;
+int dump = 0, verbose = 0;
 
 /* Global flag which indicates whether a chip was detected at all. */
 int chip_found = 0;
@@ -151,13 +151,6 @@ void dump_superio(const char *vendor,
        }
 }
 
-void dump_superio_readable(uint16_t port)
-{
-       /* TODO */
-       if (dump_readable)
-               printf("No human-readable dump available for this Super I/O\n");
-}
-
 void probing_for(const char *vendor, const char *info, uint16_t port)
 {
        if (!verbose)
@@ -179,22 +172,18 @@ int main(int argc, char *argv[])
 
        const static struct option long_options[] = {
                {"dump",                no_argument, NULL, 'd'},
-               {"dump-readable",       no_argument, NULL, 'D'},
                {"verbose",             no_argument, NULL, 'V'},
                {"version",             no_argument, NULL, 'v'},
                {"help",                no_argument, NULL, 'h'},
                {0, 0, 0, 0}
        };
 
-       while ((opt = getopt_long(argc, argv, "dDVvh",
+       while ((opt = getopt_long(argc, argv, "dVvh",
                                  long_options, &option_index)) != EOF) {
                switch (opt) {
                case 'd':
                        dump = 1;
                        break;
-               case 'D':
-                       dump_readable = 1;
-                       break;
                case 'V':
                        verbose = 1;
                        break;
index f67edcc328c5e619ed9c2bd805707e886aa4992d..38f9cdfc1a6863b6e72f0b48dfd6eed5b4ec6f92 100644 (file)
@@ -29,9 +29,8 @@
 #include <getopt.h>
 #include <sys/io.h>
 
-#define USAGE "Usage: superiotool [-d] [-D] [-V] [-v] [-h]\n\n\
+#define USAGE "Usage: superiotool [-d] [-V] [-v] [-h]\n\n\
   -d | --dump            Dump Super I/O registers\n\
-  -D | --dump-readable   Dump Super I/O registers in human-readable format\n\
   -V | --verbose         Verbose mode\n\
   -v | --version         Show the superiotool version\n\
   -h | --help            Show a short help text\n\n\
@@ -55,7 +54,7 @@ and print its vendor, name, ID, revision, and config port.\n"
 #define MAXNUMPORTS    (6 + 1)         /* Maximum number of Super I/O ports */
 
 /* Command line parameters. */
-extern int dump, dump_readable, verbose;
+extern int dump, verbose;
 
 extern int chip_found;
 
@@ -80,7 +79,6 @@ const char *get_superio_name(const struct superio_registers reg_table[],
                             uint16_t id);
 void dump_superio(const char *name, const struct superio_registers reg_table[],
                  uint16_t port, uint16_t id);
-void dump_superio_readable(uint16_t port);
 void probing_for(const char *vendor, const char *info, uint16_t port);
 
 /* ali.c */
index 44e0c4a3c658aafc3e9e1f9c5cbf9b1015f0ab50..d7a8b9a18fc51cb65a2c451f43064518b238213d 100644 (file)
@@ -428,7 +428,6 @@ void probe_idregs_winbond_helper(const char *init, uint16_t port)
 
        /* TODO: Special notes in dump output for the MISC entries. */
        dump_superio("Winbond", reg_table, port, id);
-       dump_superio_readable(port); /* TODO */
 }
 
 void probe_idregs_winbond(uint16_t port)