blob: 3bfc53661f6fbf612f787a71204284f6de8c6895 [file] [log] [blame]
Uwe Hermann6ff6af72007-09-18 22:24:34 +00001/*
2 * This file is part of the LinuxBIOS project.
3 *
4 * Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "superiotool.h"
22
23#define DEVICE_ID_REG 0x0d
24#define DEVICE_REV_REG 0x0e
25
26const static struct superio_registers reg_table[] = {
27 {0x28, "FDC37N769", {
Uwe Hermann2c290e32007-09-20 00:00:49 +000028 {NOLDN, NULL,
Uwe Hermann6ff6af72007-09-18 22:24:34 +000029 {0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
30 0x0a,0x0b,0x0c,0x0d,0x0e,0x0f,0x10,0x11,0x12,0x13,
31 0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,
32 0x1e,0x1f,0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,
33 0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f,EOT},
34 {0x28,0x9c,0x88,0x70,0x00,0x00,0xff,0x00,0x00,0x00,
35 0x00,0x00,0x02,0x28,NANA,0x00,0x00,0x80,RSVD,RSVD,
36 NANA,NANA,NANA,0x03,RSVD,RSVD,RSVD,RSVD,RSVD,RSVD,
37 0x80,0x00,0x3c,RSVD,RSVD,0x00,0x00,0x00,0x00,0x00,
38 0x00,0x00,RSVD,0x00,0x00,0x03,0x00,0x00,EOT}},
39 {EOT}}},
40 {EOT}
41};
42
Uwe Hermann3acf31e2007-09-19 01:55:35 +000043static void enter_conf_mode_smsc(uint16_t port)
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000044{
45 outb(0x55, port);
46}
47
Uwe Hermann3acf31e2007-09-19 01:55:35 +000048static void exit_conf_mode_smsc(uint16_t port)
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000049{
50 outb(0xaa, port);
51}
52
Uwe Hermannde24a0e2007-09-19 00:03:14 +000053void probe_idregs_smsc(uint16_t port)
Uwe Hermann6ff6af72007-09-18 22:24:34 +000054{
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +000055 uint8_t id, rev;
Uwe Hermann6ff6af72007-09-18 22:24:34 +000056
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000057 enter_conf_mode_smsc(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +000058
Uwe Hermann6ff6af72007-09-18 22:24:34 +000059 id = regval(port, DEVICE_ID_REG);
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +000060 rev = regval(port, DEVICE_REV_REG);
61
62 if (superio_unknown(reg_table, id)) {
Uwe Hermann3acf31e2007-09-19 01:55:35 +000063 no_superio_found(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +000064 return;
65 }
66
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +000067 printf("Found SMSC %s (id=0x%02x, rev=0x%02x) at port=0x%x\n",
Uwe Hermann3acf31e2007-09-19 01:55:35 +000068 get_superio_name(reg_table, id), id, rev, port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +000069
Uwe Hermann7e7e9ac2007-09-19 15:52:23 +000070 dump_superio("SMSC", reg_table, port, id);
Uwe Hermann6ff6af72007-09-18 22:24:34 +000071
Uwe Hermann25a6c0f2007-09-19 00:48:42 +000072 exit_conf_mode_smsc(port);
Uwe Hermann6ff6af72007-09-18 22:24:34 +000073}
74