Split up superiotool.c into multiple source files, one per vendor.
[coreboot.git] / util / superiotool / superiotool.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2006 Ronald Minnich <rminnich@gmail.com>
5  * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include "superiotool.h"
23
24 unsigned char regval(unsigned short port, unsigned char reg)
25 {
26         outb(reg, port);
27         return inb(port + 1);
28 }
29
30 void regwrite(unsigned short port, unsigned char reg, unsigned char val)
31 {
32         outb(reg, port);
33         outb(val, port + 1);
34 }
35
36 void probe_superio(unsigned short port)
37 {
38         probe_idregs_simple(port);
39         probe_idregs_fintek(port);
40         probe_idregs_ite(port);
41 }
42
43 int main(int argc, char *argv[])
44 {
45         if (iopl(3) < 0) {
46                 perror("iopl");
47                 exit(1);
48         }
49
50         probe_superio(0x2e);    /* Try 0x2e. */
51         probe_superio(0x4e);    /* Try 0x4e. */
52
53         return 0;
54 }