2007-01-17 11:57:42 +01:00
|
|
|
/*
|
2007-09-28 17:45:43 +02:00
|
|
|
* This file is part of the superiotool project.
|
2007-01-17 11:57:42 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Ronald Minnich <rminnich@gmail.com>
|
2007-09-01 21:42:42 +02:00
|
|
|
* Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
|
2007-09-16 22:59:01 +02:00
|
|
|
* Copyright (C) 2007 Carl-Daniel Hailfinger
|
2007-01-17 11:57:42 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2007-09-16 20:11:03 +02:00
|
|
|
#include "superiotool.h"
|
2006-02-22 23:12:21 +01:00
|
|
|
|
2007-09-19 03:55:35 +02:00
|
|
|
/* Command line options. */
|
2007-09-21 01:57:44 +02:00
|
|
|
int dump = 0, dump_readable = 0, verbose = 0;
|
2007-09-19 03:55:35 +02:00
|
|
|
|
2007-09-19 02:03:14 +02:00
|
|
|
uint8_t regval(uint16_t port, uint8_t reg)
|
2007-09-01 23:02:44 +02:00
|
|
|
{
|
2006-02-22 23:12:21 +01:00
|
|
|
outb(reg, port);
|
2007-08-28 12:43:57 +02:00
|
|
|
return inb(port + 1);
|
2006-02-22 23:12:21 +01:00
|
|
|
}
|
|
|
|
|
2007-09-19 02:03:14 +02:00
|
|
|
void regwrite(uint16_t port, uint8_t reg, uint8_t val)
|
2007-09-01 23:02:44 +02:00
|
|
|
{
|
2007-08-27 09:28:28 +02:00
|
|
|
outb(reg, port);
|
2007-08-28 12:43:57 +02:00
|
|
|
outb(val, port + 1);
|
2007-08-27 09:28:28 +02:00
|
|
|
}
|
|
|
|
|
2007-09-21 01:37:56 +02:00
|
|
|
void enter_conf_mode_winbond_fintek_ite_8787(uint16_t port)
|
|
|
|
{
|
|
|
|
outb(0x87, port);
|
|
|
|
outb(0x87, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
void exit_conf_mode_winbond_fintek_ite_8787(uint16_t port)
|
|
|
|
{
|
|
|
|
outb(0xaa, port); /* Fintek, Winbond */
|
|
|
|
regwrite(port, 0x02, 0x02); /* ITE */
|
|
|
|
}
|
|
|
|
|
2007-09-19 17:52:23 +02:00
|
|
|
int superio_unknown(const struct superio_registers reg_table[], uint16_t id)
|
|
|
|
{
|
|
|
|
return !strncmp(get_superio_name(reg_table, id), "<unknown>", 9);
|
|
|
|
}
|
|
|
|
|
2007-09-19 03:55:35 +02:00
|
|
|
const char *get_superio_name(const struct superio_registers reg_table[],
|
|
|
|
uint16_t id)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; /* Nothing */; i++) {
|
|
|
|
if (reg_table[i].superio_id == EOT)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ((uint16_t)reg_table[i].superio_id != id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
return reg_table[i].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "<unknown>";
|
|
|
|
}
|
|
|
|
|
2007-09-20 02:00:49 +02:00
|
|
|
static void dump_regs(const struct superio_registers reg_table[],
|
|
|
|
int i, int j, uint16_t port)
|
|
|
|
{
|
2007-09-25 00:02:31 +02:00
|
|
|
int k;
|
|
|
|
const int *idx;
|
2007-09-20 02:00:49 +02:00
|
|
|
|
|
|
|
if (reg_table[i].ldn[j].ldn != NOLDN) {
|
|
|
|
printf("LDN 0x%02x ", reg_table[i].ldn[j].ldn);
|
|
|
|
if (reg_table[i].ldn[j].name != NULL)
|
|
|
|
printf("(%s)", reg_table[i].ldn[j].name);
|
|
|
|
regwrite(port, 0x07, reg_table[i].ldn[j].ldn);
|
|
|
|
} else {
|
|
|
|
printf("Register dump:");
|
|
|
|
}
|
|
|
|
|
|
|
|
idx = reg_table[i].ldn[j].idx;
|
|
|
|
|
|
|
|
printf("\nidx ");
|
|
|
|
for (k = 0; /* Nothing */; k++) {
|
|
|
|
if (idx[k] == EOT)
|
|
|
|
break;
|
|
|
|
printf("%02x ", idx[k]);
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\nval ");
|
|
|
|
for (k = 0; /* Nothing */; k++) {
|
|
|
|
if (idx[k] == EOT)
|
|
|
|
break;
|
|
|
|
printf("%02x ", regval(port, idx[k]));
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\ndef ");
|
|
|
|
idx = reg_table[i].ldn[j].def;
|
|
|
|
for (k = 0; /* Nothing */; k++) {
|
|
|
|
if (idx[k] == EOT)
|
|
|
|
break;
|
|
|
|
else if (idx[k] == NANA)
|
|
|
|
printf("NA ");
|
|
|
|
else if (idx[k] == RSVD)
|
|
|
|
printf("RR ");
|
|
|
|
else if (idx[k] == MISC) /* TODO */
|
|
|
|
printf("MM ");
|
|
|
|
else
|
|
|
|
printf("%02x ", idx[k]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_superio(const char *vendor,
|
|
|
|
const struct superio_registers reg_table[],
|
2007-09-19 02:03:14 +02:00
|
|
|
uint16_t port, uint16_t id)
|
2007-09-16 22:59:01 +02:00
|
|
|
{
|
2007-09-20 02:00:49 +02:00
|
|
|
int i, j, no_dump_available = 1;
|
2007-09-16 22:59:01 +02:00
|
|
|
|
2007-09-19 17:52:23 +02:00
|
|
|
if (!dump)
|
|
|
|
return;
|
|
|
|
|
2007-09-16 22:59:01 +02:00
|
|
|
for (i = 0; /* Nothing */; i++) {
|
|
|
|
if (reg_table[i].superio_id == EOT)
|
|
|
|
break;
|
|
|
|
|
2007-09-19 02:03:14 +02:00
|
|
|
if ((uint16_t)reg_table[i].superio_id != id)
|
2007-09-16 22:59:01 +02:00
|
|
|
continue;
|
|
|
|
|
2007-09-19 02:03:14 +02:00
|
|
|
for (j = 0; /* Nothing */; j++) {
|
2007-09-16 22:59:01 +02:00
|
|
|
if (reg_table[i].ldn[j].ldn == EOT)
|
|
|
|
break;
|
2007-09-20 02:00:49 +02:00
|
|
|
no_dump_available = 0;
|
|
|
|
dump_regs(reg_table, i, j, port);
|
2007-09-16 22:59:01 +02:00
|
|
|
}
|
2007-09-19 02:48:42 +02:00
|
|
|
|
2007-09-20 02:00:49 +02:00
|
|
|
if (no_dump_available)
|
|
|
|
printf("No dump available for this Super I/O\n");
|
2007-09-16 22:59:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
void dump_superio_readable(uint16_t port)
|
|
|
|
{
|
|
|
|
/* TODO */
|
|
|
|
if (dump_readable)
|
|
|
|
printf("No human-readable dump available for this Super I/O\n");
|
|
|
|
}
|
|
|
|
|
2007-10-04 17:23:38 +02:00
|
|
|
void probing_for(const char *vendor, const char *info, uint16_t port)
|
2007-09-20 02:00:49 +02:00
|
|
|
{
|
2007-09-19 03:55:35 +02:00
|
|
|
if (!verbose)
|
|
|
|
return;
|
|
|
|
|
2007-10-04 17:23:38 +02:00
|
|
|
/* Yes, there's no space between '%s' and 'at'! */
|
|
|
|
printf("Probing for %s Super I/O %sat 0x%x...\n",
|
|
|
|
vendor, info, port);
|
2007-09-19 03:55:35 +02:00
|
|
|
}
|
|
|
|
|
2007-10-03 01:32:21 +02:00
|
|
|
static void print_version(void)
|
|
|
|
{
|
|
|
|
char tmp[80];
|
|
|
|
|
|
|
|
strncpy((char *)&tmp,
|
|
|
|
(const char *)&SUPERIOTOOL_VERSION[6],
|
|
|
|
strlen(SUPERIOTOOL_VERSION) - 8);
|
|
|
|
printf("superiotool r%s\n", (char *)&tmp);
|
|
|
|
}
|
|
|
|
|
2007-09-01 23:02:44 +02:00
|
|
|
int main(int argc, char *argv[])
|
2007-01-17 11:57:42 +01:00
|
|
|
{
|
2007-09-19 03:55:35 +02:00
|
|
|
int i, j, opt, option_index;
|
|
|
|
|
|
|
|
const static struct option long_options[] = {
|
2007-09-21 01:57:44 +02:00
|
|
|
{"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'},
|
2007-09-19 03:55:35 +02:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
2007-09-21 01:57:44 +02:00
|
|
|
while ((opt = getopt_long(argc, argv, "dDVvh",
|
2007-09-19 03:55:35 +02:00
|
|
|
long_options, &option_index)) != EOF) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'd':
|
|
|
|
dump = 1;
|
|
|
|
break;
|
2007-09-21 01:57:44 +02:00
|
|
|
case 'D':
|
|
|
|
dump_readable = 1;
|
|
|
|
break;
|
2007-09-19 03:55:35 +02:00
|
|
|
case 'V':
|
2007-10-03 01:32:21 +02:00
|
|
|
/* Print version in --verbose mode. */
|
|
|
|
print_version();
|
2007-09-19 03:55:35 +02:00
|
|
|
verbose = 1;
|
|
|
|
break;
|
|
|
|
case 'v':
|
2007-10-03 01:32:21 +02:00
|
|
|
print_version();
|
2007-09-19 03:55:35 +02:00
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
case 'h':
|
2007-09-19 18:26:18 +02:00
|
|
|
printf(USAGE);
|
2007-09-19 03:55:35 +02:00
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Unknown option. */
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-09-19 01:30:24 +02:00
|
|
|
|
2006-02-22 23:12:21 +01:00
|
|
|
if (iopl(3) < 0) {
|
|
|
|
perror("iopl");
|
2007-09-19 17:52:23 +02:00
|
|
|
printf("Superiotool must be run as root.\n");
|
2006-02-22 23:12:21 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-09-19 01:30:24 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(superio_ports_table); i++) {
|
|
|
|
for (j = 0; superio_ports_table[i].ports[j] != EOT; j++)
|
|
|
|
superio_ports_table[i].probe_idregs(
|
|
|
|
superio_ports_table[i].ports[j]);
|
|
|
|
}
|
2007-01-17 11:57:42 +01:00
|
|
|
|
|
|
|
return 0;
|
2006-02-22 23:12:21 +01:00
|
|
|
}
|