aboutsummaryrefslogtreecommitdiff
path: root/util/superiotool/superiotool.c
blob: a5dcb2e7531820a70a4674e73e97a75d7485423a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * This file is part of the LinuxBIOS project.
 *
 * Copyright (C) 2006 Ronald Minnich <rminnich@gmail.com>
 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
 * Copyright (C) 2007 Carl-Daniel Hailfinger
 *
 * 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
 */

#include "superiotool.h"

unsigned char regval(unsigned short port, unsigned char reg)
{
	outb(reg, port);
	return inb(port + 1);
}

void regwrite(unsigned short port, unsigned char reg, unsigned char val)
{
	outb(reg, port);
	outb(val, port + 1);
}

void dump_superio(const char *name, const struct superio_registers reg_table[],
		  unsigned short port, unsigned short id)
{
	int i, j, k;
	signed short *idx;

	printf("%s ", name);

	for (i = 0; /* Nothing */; i++) {
		if (reg_table[i].superio_id == EOT)
			break;

		if ((unsigned short)reg_table[i].superio_id != id)
			continue;

		printf("%s\n", reg_table[i].name);

		for (j = 0;; j++) {
			if (reg_table[i].ldn[j].ldn == EOT)
				break;

			if (reg_table[i].ldn[j].ldn != NOLDN) {
				printf("Switching to LDN 0x%01x\n",
				       reg_table[i].ldn[j].ldn);
				regwrite(port, 0x07,
					 reg_table[i].ldn[j].ldn);
			}

			idx = reg_table[i].ldn[j].idx;

			printf("idx ");
			for (k = 0;; k++) {
				if (idx[k] == EOT)
					break;
				printf("%02x ", idx[k]);
			}

			printf("\nval ");
			for (k = 0;; k++) {
				if (idx[k] == EOT)
					break;
				printf("%02x ", regval(port, idx[k]));
			}

			printf("\ndef ");
			idx = reg_table[i].ldn[j].def;
			for (k = 0;; k++) {
				if (idx[k] == EOT)
					break;
				else if (idx[k] == NANA)
					printf("NA ");
				else if (idx[k] == RSVD)
					printf("RR ");
				else
					printf("%02x ", idx[k]);
			}
			printf("\n");
		}
	}
}

int main(int argc, char *argv[])
{
	if (iopl(3) < 0) {
		perror("iopl");
		exit(1);
	}

	probe_idregs_simple(0x2e);
	probe_idregs_simple(0x4e);

	probe_idregs_fintek(0x2e);
	probe_idregs_fintek(0x4e);

	probe_idregs_ite(0x2e);
	probe_idregs_ite(0x4e);

	probe_idregs_smsc(0x3f0);
	probe_idregs_smsc(0x370);

	return 0;
}