2007-01-17 11:57:42 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LinuxBIOS project.
|
|
|
|
*
|
|
|
|
* 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-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-01 23:02:44 +02:00
|
|
|
unsigned char regval(unsigned short port, unsigned char reg)
|
|
|
|
{
|
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-01 23:02:44 +02:00
|
|
|
void regwrite(unsigned short port, unsigned char reg, unsigned char val)
|
|
|
|
{
|
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-01 23:02:44 +02:00
|
|
|
void probe_superio(unsigned short port)
|
|
|
|
{
|
2007-01-17 11:57:42 +01:00
|
|
|
probe_idregs_simple(port);
|
|
|
|
probe_idregs_fintek(port);
|
2007-08-27 09:28:28 +02:00
|
|
|
probe_idregs_ite(port);
|
2006-02-22 23:12:21 +01:00
|
|
|
}
|
|
|
|
|
2007-09-01 23:02:44 +02:00
|
|
|
int main(int argc, char *argv[])
|
2007-01-17 11:57:42 +01:00
|
|
|
{
|
2006-02-22 23:12:21 +01:00
|
|
|
if (iopl(3) < 0) {
|
|
|
|
perror("iopl");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-09-01 23:02:44 +02:00
|
|
|
probe_superio(0x2e); /* Try 0x2e. */
|
|
|
|
probe_superio(0x4e); /* Try 0x4e. */
|
2007-01-17 11:57:42 +01:00
|
|
|
|
|
|
|
return 0;
|
2006-02-22 23:12:21 +01:00
|
|
|
}
|