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
|
2008-01-15 23:30:55 +01:00
|
|
|
* Copyright (C) 2008 Robinson P. Tryon <bishop.robinson@gmail.com>
|
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.
|
|
|
|
*/
|
|
|
|
|
2007-09-16 20:11:03 +02:00
|
|
|
#include "superiotool.h"
|
2006-02-22 23:12:21 +01:00
|
|
|
|
2008-10-28 23:13:38 +01:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2007-09-19 03:55:35 +02:00
|
|
|
/* Command line options. */
|
2016-10-12 12:12:51 +02:00
|
|
|
int dump = 0, verbose = 0, extra_dump = 0, alternate_dump = 0;
|
2007-09-19 03:55:35 +02:00
|
|
|
|
2007-10-07 22:01:23 +02:00
|
|
|
/* Global flag which indicates whether a chip was detected at all. */
|
|
|
|
int chip_found = 0;
|
|
|
|
|
2012-06-29 21:23:50 +02:00
|
|
|
static void set_bank(uint16_t port, uint8_t bank)
|
|
|
|
{
|
|
|
|
OUTB(0x4E, port);
|
|
|
|
OUTB(bank, port + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t datareg(uint16_t port, uint8_t reg)
|
|
|
|
{
|
|
|
|
OUTB(reg, port);
|
|
|
|
return INB(port + 1);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2008-10-28 23:13:38 +01:00
|
|
|
OUTB(reg, port);
|
|
|
|
return INB(port + ((port == 0x3bd) ? 2 : 1)); /* 0x3bd is special. */
|
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
|
|
|
{
|
2008-10-28 23:13:38 +01:00
|
|
|
OUTB(reg, port);
|
|
|
|
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)
|
|
|
|
{
|
2008-10-28 23:13:38 +01:00
|
|
|
OUTB(0x87, port);
|
|
|
|
OUTB(0x87, port);
|
2007-09-21 01:37:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void exit_conf_mode_winbond_fintek_ite_8787(uint16_t port)
|
|
|
|
{
|
2008-10-28 23:13:38 +01:00
|
|
|
OUTB(0xaa, port); /* Fintek, Winbond */
|
2007-09-21 01:37:56 +02:00
|
|
|
regwrite(port, 0x02, 0x02); /* ITE */
|
|
|
|
}
|
|
|
|
|
2010-08-17 10:24:01 +02:00
|
|
|
void enter_conf_mode_fintek_7777(uint16_t port)
|
|
|
|
{
|
|
|
|
OUTB(0x77, port);
|
|
|
|
OUTB(0x77, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
void exit_conf_mode_fintek_7777(uint16_t port)
|
|
|
|
{
|
|
|
|
OUTB(0xaa, port); /* Fintek */
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2010-08-17 10:24:01 +02:00
|
|
|
|
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[],
|
2008-12-01 15:18:57 +01:00
|
|
|
int i, int j, uint16_t port, uint8_t ldn_sel)
|
2007-09-20 02:00:49 +02:00
|
|
|
{
|
2007-09-25 00:02:31 +02:00
|
|
|
int k;
|
2016-10-12 12:12:51 +02:00
|
|
|
const int16_t *idx, *def;
|
2007-09-20 02:00:49 +02:00
|
|
|
|
|
|
|
if (reg_table[i].ldn[j].ldn != NOLDN) {
|
2007-11-13 10:09:33 +01:00
|
|
|
printf("LDN 0x%02x", reg_table[i].ldn[j].ldn);
|
2007-09-20 02:00:49 +02:00
|
|
|
if (reg_table[i].ldn[j].name != NULL)
|
2007-11-13 10:09:33 +01:00
|
|
|
printf(" (%s)", reg_table[i].ldn[j].name);
|
2008-12-01 15:18:57 +01:00
|
|
|
regwrite(port, ldn_sel, reg_table[i].ldn[j].ldn);
|
2007-09-20 02:00:49 +02:00
|
|
|
} else {
|
2010-08-22 21:40:11 +02:00
|
|
|
if (reg_table[i].ldn[j].name == NULL)
|
|
|
|
printf("Register dump:");
|
|
|
|
else
|
|
|
|
printf("(%s)", reg_table[i].ldn[j].name);
|
2007-09-20 02:00:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
idx = reg_table[i].ldn[j].idx;
|
2016-10-12 12:12:51 +02:00
|
|
|
def = reg_table[i].ldn[j].def;
|
|
|
|
|
|
|
|
if (alternate_dump) {
|
|
|
|
int skip_def = 0;
|
|
|
|
|
|
|
|
printf("\nidx val def\n");
|
|
|
|
|
|
|
|
for (k = 0; idx[k] != EOT; k++) {
|
|
|
|
printf("0x%02x: 0x%02x", idx[k], regval(port, idx[k]));
|
|
|
|
|
|
|
|
if (skip_def || def[k] == EOT) {
|
|
|
|
skip_def = 1;
|
|
|
|
printf("\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (def[k] == NANA)
|
|
|
|
printf(" (NA)\n");
|
|
|
|
else if (def[k] == RSVD)
|
|
|
|
printf(" (RR)\n");
|
|
|
|
else if (def[k] == MISC)
|
|
|
|
printf(" (MM)\n");
|
|
|
|
else
|
|
|
|
printf(" (0x%02x)\n", def[k]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
printf("\nidx");
|
|
|
|
for (k = 0; idx[k] != EOT; k++) {
|
|
|
|
if (k && !(k % 8))
|
|
|
|
putchar(' ');
|
|
|
|
printf(" %02x", idx[k]);
|
|
|
|
}
|
2007-09-20 02:00:49 +02:00
|
|
|
|
2016-10-12 12:12:51 +02:00
|
|
|
printf("\nval");
|
|
|
|
for (k = 0; idx[k] != EOT; k++) {
|
|
|
|
if (k && !(k % 8))
|
|
|
|
putchar(' ');
|
|
|
|
printf(" %02x", regval(port, idx[k]));
|
|
|
|
}
|
2007-09-20 02:00:49 +02:00
|
|
|
|
2016-10-12 12:12:51 +02:00
|
|
|
printf("\ndef");
|
|
|
|
for (k = 0; def[k] != EOT; k++) {
|
|
|
|
if (k && !(k % 8))
|
|
|
|
putchar(' ');
|
|
|
|
if (def[k] == NANA)
|
|
|
|
printf(" NA");
|
|
|
|
else if (def[k] == RSVD)
|
|
|
|
printf(" RR");
|
|
|
|
else if (def[k] == MISC)
|
|
|
|
printf(" MM");
|
|
|
|
else
|
|
|
|
printf(" %02x", def[k]);
|
|
|
|
}
|
2007-09-20 02:00:49 +02:00
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void dump_superio(const char *vendor,
|
|
|
|
const struct superio_registers reg_table[],
|
2008-12-01 15:18:57 +01:00
|
|
|
uint16_t port, uint16_t id, uint8_t ldn_sel)
|
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;
|
2008-12-01 15:18:57 +01:00
|
|
|
dump_regs(reg_table, i, j, port, ldn_sel);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-11 15:48:20 +01:00
|
|
|
void dump_io(uint16_t iobase, uint16_t length)
|
|
|
|
{
|
|
|
|
uint16_t i;
|
|
|
|
|
2009-03-25 18:38:40 +01:00
|
|
|
printf("Dumping %d I/O mapped registers at base 0x%04x:\n",
|
2009-03-11 15:48:20 +01:00
|
|
|
length, iobase);
|
2009-03-25 18:38:40 +01:00
|
|
|
for (i = 0; i < length; i++)
|
|
|
|
printf("%02x ", i);
|
2009-03-11 15:48:20 +01:00
|
|
|
printf("\n");
|
2009-03-25 18:38:40 +01:00
|
|
|
for (i = 0; i < length; i++)
|
|
|
|
printf("%02x ", INB(iobase + i));
|
2009-03-11 15:48:20 +01:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2012-06-29 21:23:50 +02:00
|
|
|
void dump_data(uint16_t iobase, int bank)
|
|
|
|
{
|
|
|
|
uint16_t i;
|
|
|
|
|
|
|
|
printf("Bank %d:\n", bank);
|
|
|
|
printf(" ");
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
printf("%02x ", i);
|
|
|
|
set_bank(iobase, bank);
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
if (i % 16 == 0)
|
|
|
|
printf("\n%02x: ", i / 16);
|
|
|
|
printf("%02x ", datareg(iobase, i));
|
|
|
|
}
|
|
|
|
printf("\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'! */
|
2008-03-01 19:49:39 +01:00
|
|
|
printf("Probing for %s Super I/O %sat 0x%x...\n", vendor, info, port);
|
2007-09-19 03:55:35 +02:00
|
|
|
}
|
|
|
|
|
2008-01-15 23:30:55 +01:00
|
|
|
/** Print a list of all supported chips from the given vendor. */
|
|
|
|
void print_vendor_chips(const char *vendor,
|
|
|
|
const struct superio_registers reg_table[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; reg_table[i].superio_id != EOT; i++) {
|
|
|
|
printf("%s %s", vendor, reg_table[i].name);
|
|
|
|
|
|
|
|
/* Unless the ldn is empty, assume this chip has a dump. */
|
|
|
|
if (reg_table[i].ldn[0].ldn != EOT)
|
|
|
|
printf(" (dump available)");
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we printed any chips for this vendor, put in a blank line. */
|
|
|
|
if (i != 0)
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Print a list of all chips supported by superiotool. */
|
|
|
|
void print_list_of_supported_chips(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
printf("Supported Super I/O chips:\n\n");
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(vendor_print_functions); i++)
|
|
|
|
vendor_print_functions[i].print_list();
|
|
|
|
|
2017-06-05 12:33:23 +02:00
|
|
|
printf("See <https://coreboot.org/Superiotool#Supported_devices> "
|
2008-01-15 23:30:55 +01:00
|
|
|
"for more information.\n");
|
|
|
|
}
|
|
|
|
|
2007-10-03 01:32:21 +02:00
|
|
|
static void print_version(void)
|
|
|
|
{
|
2007-10-13 20:06:12 +02:00
|
|
|
printf("superiotool r%s\n", SUPERIOTOOL_VERSION);
|
2007-10-03 01:32:21 +02:00
|
|
|
}
|
|
|
|
|
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;
|
2008-10-28 23:13:38 +01:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
int io_fd;
|
|
|
|
#endif
|
2007-09-19 03:55:35 +02:00
|
|
|
|
2007-10-31 23:22:11 +01:00
|
|
|
static const struct option long_options[] = {
|
2007-09-21 01:57:44 +02:00
|
|
|
{"dump", no_argument, NULL, 'd'},
|
2008-02-25 23:32:41 +01:00
|
|
|
{"extra-dump", no_argument, NULL, 'e'},
|
2016-10-12 12:12:51 +02:00
|
|
|
{"alternate-dump", no_argument, NULL, 'a'},
|
2008-01-15 23:30:55 +01:00
|
|
|
{"list-supported", no_argument, NULL, 'l'},
|
2007-09-21 01:57:44 +02:00
|
|
|
{"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}
|
|
|
|
};
|
|
|
|
|
2016-10-12 12:12:51 +02:00
|
|
|
while ((opt = getopt_long(argc, argv, "dealVvh",
|
2007-09-19 03:55:35 +02:00
|
|
|
long_options, &option_index)) != EOF) {
|
|
|
|
switch (opt) {
|
|
|
|
case 'd':
|
|
|
|
dump = 1;
|
|
|
|
break;
|
2008-02-25 23:32:41 +01:00
|
|
|
case 'e':
|
|
|
|
extra_dump = 1;
|
|
|
|
break;
|
2016-10-12 12:12:51 +02:00
|
|
|
case 'a':
|
|
|
|
alternate_dump = 1;
|
|
|
|
break;
|
2008-01-15 23:30:55 +01:00
|
|
|
case 'l':
|
|
|
|
print_list_of_supported_chips();
|
|
|
|
exit(0);
|
|
|
|
break;
|
2007-09-19 03:55:35 +02:00
|
|
|
case 'V':
|
|
|
|
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);
|
2008-03-17 14:43:48 +01:00
|
|
|
printf(USAGE_INFO);
|
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
|
|
|
|
2008-10-28 23:13:38 +01:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
if ((io_fd = open("/dev/io", O_RDWR)) < 0) {
|
|
|
|
perror("/dev/io");
|
|
|
|
#else
|
2006-02-22 23:12:21 +01:00
|
|
|
if (iopl(3) < 0) {
|
|
|
|
perror("iopl");
|
2008-10-28 23:13:38 +01:00
|
|
|
#endif
|
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-10-18 01:42:02 +02:00
|
|
|
print_version();
|
|
|
|
|
2010-01-24 02:40:46 +01:00
|
|
|
#ifdef PCI_SUPPORT
|
|
|
|
/* Do some basic libpci init. */
|
|
|
|
pacc = pci_alloc();
|
|
|
|
pci_init(pacc);
|
|
|
|
pci_scan_bus(pacc);
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2007-10-07 22:01:23 +02:00
|
|
|
if (!chip_found)
|
|
|
|
printf("No Super I/O found\n");
|
|
|
|
|
2008-10-28 23:13:38 +01:00
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
close(io_fd);
|
|
|
|
#endif
|
2007-01-17 11:57:42 +01:00
|
|
|
return 0;
|
2006-02-22 23:12:21 +01:00
|
|
|
}
|