blob: e95f1baac677c973babe123ccbe5e25a63156e63 [file] [log] [blame]
Stefan Reinauer6a5bc462007-01-17 10:57:42 +00001/*
2 * This file is part of the LinuxBIOS project.
3 *
4 * Copyright (C) 2006 Ronald Minnich <rminnich@gmail.com>
Uwe Hermannbd263922007-09-01 19:42:42 +00005 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
Uwe Hermann519419b2007-09-16 20:59:01 +00006 * Copyright (C) 2007 Carl-Daniel Hailfinger
Stefan Reinauer6a5bc462007-01-17 10:57:42 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
Uwe Hermann0120e1a2007-09-16 18:11:03 +000023#include "superiotool.h"
Ronald G. Minnich394e7c42006-02-22 22:12:21 +000024
Uwe Hermannde24a0e2007-09-19 00:03:14 +000025uint8_t regval(uint16_t port, uint8_t reg)
Uwe Hermann2046ff92007-09-01 21:02:44 +000026{
Ronald G. Minnich394e7c42006-02-22 22:12:21 +000027 outb(reg, port);
Carl-Daniel Hailfingerb1786c22007-08-28 10:43:57 +000028 return inb(port + 1);
Ronald G. Minnich394e7c42006-02-22 22:12:21 +000029}
30
Uwe Hermannde24a0e2007-09-19 00:03:14 +000031void regwrite(uint16_t port, uint8_t reg, uint8_t val)
Uwe Hermann2046ff92007-09-01 21:02:44 +000032{
Carl-Daniel Hailfinger7a7890a2007-08-27 07:28:28 +000033 outb(reg, port);
Carl-Daniel Hailfingerb1786c22007-08-28 10:43:57 +000034 outb(val, port + 1);
Carl-Daniel Hailfinger7a7890a2007-08-27 07:28:28 +000035}
36
Uwe Hermann519419b2007-09-16 20:59:01 +000037void dump_superio(const char *name, const struct superio_registers reg_table[],
Uwe Hermannde24a0e2007-09-19 00:03:14 +000038 uint16_t port, uint16_t id)
Uwe Hermann519419b2007-09-16 20:59:01 +000039{
40 int i, j, k;
Uwe Hermannde24a0e2007-09-19 00:03:14 +000041 int *idx;
Uwe Hermann519419b2007-09-16 20:59:01 +000042
43 printf("%s ", name);
44
45 for (i = 0; /* Nothing */; i++) {
46 if (reg_table[i].superio_id == EOT)
47 break;
48
Uwe Hermannde24a0e2007-09-19 00:03:14 +000049 if ((uint16_t)reg_table[i].superio_id != id)
Uwe Hermann519419b2007-09-16 20:59:01 +000050 continue;
51
52 printf("%s\n", reg_table[i].name);
53
Uwe Hermannde24a0e2007-09-19 00:03:14 +000054 for (j = 0; /* Nothing */; j++) {
Uwe Hermann519419b2007-09-16 20:59:01 +000055 if (reg_table[i].ldn[j].ldn == EOT)
56 break;
57
58 if (reg_table[i].ldn[j].ldn != NOLDN) {
Uwe Hermannde24a0e2007-09-19 00:03:14 +000059 printf("Switching to LDN 0x%02x\n",
Uwe Hermann519419b2007-09-16 20:59:01 +000060 reg_table[i].ldn[j].ldn);
Uwe Hermannde24a0e2007-09-19 00:03:14 +000061 regwrite(port, 0x07, reg_table[i].ldn[j].ldn);
Uwe Hermann519419b2007-09-16 20:59:01 +000062 }
63
64 idx = reg_table[i].ldn[j].idx;
65
66 printf("idx ");
Uwe Hermannde24a0e2007-09-19 00:03:14 +000067 for (k = 0; /* Nothing */; k++) {
Uwe Hermann519419b2007-09-16 20:59:01 +000068 if (idx[k] == EOT)
69 break;
70 printf("%02x ", idx[k]);
71 }
72
73 printf("\nval ");
Uwe Hermannde24a0e2007-09-19 00:03:14 +000074 for (k = 0; /* Nothing */; k++) {
Uwe Hermann519419b2007-09-16 20:59:01 +000075 if (idx[k] == EOT)
76 break;
77 printf("%02x ", regval(port, idx[k]));
78 }
79
80 printf("\ndef ");
81 idx = reg_table[i].ldn[j].def;
Uwe Hermannde24a0e2007-09-19 00:03:14 +000082 for (k = 0; /* Nothing */; k++) {
Uwe Hermann519419b2007-09-16 20:59:01 +000083 if (idx[k] == EOT)
84 break;
Uwe Hermann6ff6af72007-09-18 22:24:34 +000085 else if (idx[k] == NANA)
Uwe Hermann519419b2007-09-16 20:59:01 +000086 printf("NA ");
Uwe Hermann6ff6af72007-09-18 22:24:34 +000087 else if (idx[k] == RSVD)
88 printf("RR ");
Uwe Hermann519419b2007-09-16 20:59:01 +000089 else
90 printf("%02x ", idx[k]);
91 }
92 printf("\n");
93 }
94 }
95}
96
Uwe Hermann2046ff92007-09-01 21:02:44 +000097int main(int argc, char *argv[])
Stefan Reinauer6a5bc462007-01-17 10:57:42 +000098{
Uwe Hermannd754d2c2007-09-18 23:30:24 +000099 int i, j;
100
Ronald G. Minnich394e7c42006-02-22 22:12:21 +0000101 if (iopl(3) < 0) {
102 perror("iopl");
103 exit(1);
104 }
105
Uwe Hermannd754d2c2007-09-18 23:30:24 +0000106 for (i = 0; i < ARRAY_SIZE(superio_ports_table); i++) {
107 for (j = 0; superio_ports_table[i].ports[j] != EOT; j++)
108 superio_ports_table[i].probe_idregs(
109 superio_ports_table[i].ports[j]);
110 }
Stefan Reinauer6a5bc462007-01-17 10:57:42 +0000111
112 return 0;
Ronald G. Minnich394e7c42006-02-22 22:12:21 +0000113}