blob: 0dcc2fa261cd30f19fa7f21b11c8f6d07f4576ee [file] [log] [blame]
Uwe Hermann0120e1a2007-09-16 18:11:03 +00001/*
2 * This file is part of the LinuxBIOS project.
3 *
Uwe Hermann4cb7e712007-09-16 18:17:44 +00004 * Copyright (C) 2007 Carl-Daniel Hailfinger
Uwe Hermann0120e1a2007-09-16 18:11:03 +00005 * 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#ifndef SUPERIOTOOL_H
23#define SUPERIOTOOL_H
24
25#include <stdio.h>
26#include <stdlib.h>
Uwe Hermann6ff6af72007-09-18 22:24:34 +000027#include <stdint.h>
Uwe Hermann0120e1a2007-09-16 18:11:03 +000028#include <sys/io.h>
29
Uwe Hermannd754d2c2007-09-18 23:30:24 +000030#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
31
Uwe Hermann4cb7e712007-09-16 18:17:44 +000032#define EOT -1 /* End Of Table */
33#define NOLDN -2 /* NO LDN needed */
34#define NANA -3 /* Not Available */
Uwe Hermann6ff6af72007-09-18 22:24:34 +000035#define RSVD -4 /* Reserved */
Uwe Hermann4cb7e712007-09-16 18:17:44 +000036#define MAXNAMELEN 20 /* Maximum Name Length */
37#define MAXLDN 0xa /* Biggest LDN */
38#define LDNSIZE (MAXLDN + 3) /* Biggest LDN + 0 + NOLDN + EOT */
39#define MAXNUMIDX 70 /* Maximum number of indexes */
40#define IDXSIZE (MAXNUMIDX + 1)
Uwe Hermannd754d2c2007-09-18 23:30:24 +000041#define MAXNUMPORTS (2 + 1) /* Maximum number of Super I/O ports */
Uwe Hermann4cb7e712007-09-16 18:17:44 +000042
43struct superio_registers {
Uwe Hermannde24a0e2007-09-19 00:03:14 +000044 int32_t superio_id; /* Signed, as we need EOT. */
Uwe Hermann4cb7e712007-09-16 18:17:44 +000045 const char name[MAXNAMELEN];
Uwe Hermann6ff6af72007-09-18 22:24:34 +000046 struct {
Uwe Hermannde24a0e2007-09-19 00:03:14 +000047 int ldn;
48 int idx[IDXSIZE];
49 int def[IDXSIZE];
Uwe Hermann4cb7e712007-09-16 18:17:44 +000050 } ldn[LDNSIZE];
51};
52
53/* superiotool.c */
Uwe Hermannde24a0e2007-09-19 00:03:14 +000054uint8_t regval(uint16_t port, uint8_t reg);
55void regwrite(uint16_t port, uint8_t reg, uint8_t val);
Uwe Hermann519419b2007-09-16 20:59:01 +000056void dump_superio(const char *name, const struct superio_registers reg_table[],
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000057 uint16_t port, uint16_t id);
Uwe Hermannde24a0e2007-09-19 00:03:14 +000058void probe_superio(uint16_t port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +000059
60/* fintek.c */
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000061void enter_conf_mode_fintek(uint16_t port);
62void exit_conf_mode_fintek(uint16_t port);
Uwe Hermannde24a0e2007-09-19 00:03:14 +000063void dump_fintek(uint16_t port, uint16_t did);
64void probe_idregs_fintek(uint16_t port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +000065
66/* ite.c */
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000067void enter_conf_mode_ite(uint16_t port);
68void exit_conf_mode_ite(uint16_t port);
Uwe Hermannde24a0e2007-09-19 00:03:14 +000069void dump_ite(uint16_t port, uint16_t id);
70void probe_idregs_ite(uint16_t port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +000071
72/* nsc.c */
Uwe Hermannde24a0e2007-09-19 00:03:14 +000073void dump_ns8374(uint16_t port);
74void probe_idregs_simple(uint16_t port);
Uwe Hermann0120e1a2007-09-16 18:11:03 +000075
Uwe Hermann6ff6af72007-09-18 22:24:34 +000076/* smsc.c */
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000077void enter_conf_mode_smsc(uint16_t port);
78void exit_conf_mode_smsc(uint16_t port);
Uwe Hermannde24a0e2007-09-19 00:03:14 +000079void dump_smsc(uint16_t port, uint16_t id);
80void probe_idregs_smsc(uint16_t port);
Uwe Hermannd754d2c2007-09-18 23:30:24 +000081
82/** Table of which config ports to probe on each Super I/O. */
83const static struct {
Uwe Hermannde24a0e2007-09-19 00:03:14 +000084 void (*probe_idregs) (uint16_t port);
85 int ports[MAXNUMPORTS]; /* Signed, as we need EOT. */
Uwe Hermannd754d2c2007-09-18 23:30:24 +000086} superio_ports_table[] = {
87 {probe_idregs_simple, {0x2e, 0x4e, EOT}},
88 {probe_idregs_fintek, {0x2e, 0x4e, EOT}},
89 {probe_idregs_ite, {0x2e, 0x4e, EOT}},
90 {probe_idregs_smsc, {0x3f0, 0x370, EOT}},
91};
Uwe Hermann6ff6af72007-09-18 22:24:34 +000092
Uwe Hermann0120e1a2007-09-16 18:11:03 +000093#endif