blob: 7216bbcfc81e36f5bd96bb952071f6e62c8e7bf4 [file] [log] [blame]
Uwe Hermann945045b2007-09-28 15:39:10 +00001/*
Uwe Hermannafe83092007-09-28 15:45:43 +00002 * This file is part of the superiotool project.
Uwe Hermann945045b2007-09-28 15:39:10 +00003 *
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.
Uwe Hermann945045b2007-09-28 15:39:10 +000015 */
16
17#include "superiotool.h"
18
19#define DEVICE_ID_BYTE1_REG 0x20
20#define DEVICE_ID_BYTE2_REG 0x21
21
22#define DEVICE_REV_REG 0x1f
23
Uwe Hermann246be7d2007-10-31 22:22:11 +000024static const struct superio_registers reg_table[] = {
Uwe Hermann945045b2007-09-28 15:39:10 +000025 /* TODO: M5113 doesn't seem to have ID registers? */
26 {0x5315, "M1535/M1535D/M1535+/M1535D+", {
27 {NOLDN, NULL,
Uwe Hermannb0ae9762008-10-14 16:34:38 +000028 {0x1f,0x20,0x21,0x22,0x23,0x2c,0x2d,0x2e,EOT},
29 {NANA,0x53,0x15,0x00,0x00,RSVD,RSVD,RSVD,EOT}},
Uwe Hermann945045b2007-09-28 15:39:10 +000030 {0x0, "Floppy",
31 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,0xf4,EOT},
32 {0x00,0x03,0xf0,0x06,0x02,0x08,0x00,0xff,0x00,EOT}},
33 {0x3, "Parallel port",
34 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
35 {0x00,0x03,0x78,0x05,0x04,0x8c,0xc5,EOT}},
36 {0x4, "COM1",
37 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
38 {0x00,0x03,0xf8,0x04,0x00,0x00,0x0c,EOT}},
39 {0x5, "COM2",
40 {0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,0xf2,EOT},
41 {0x00,0x03,0xe8,0x09,0x04,0x80,0x00,0x0c,EOT}},
42 {0x7, "Keyboard",
43 {0x30,0x70,0x72,0xf0,EOT},
44 {NANA,0x01,0x00,0x00,EOT}},
45 {0x8, "COM3",
46 {0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
47 {0x00,0x02,0xf8,0x03,0x00,0x00,0x0c,EOT}},
48 {0xc, "Hotkey",
49 {0x30,0xf0,0xf1,0xf2,0xf3,0xf4,0xf5,EOT},
50 {0x00,0x35,0x14,0x11,0x71,RSVD,0x05,EOT}},
51 {EOT}}},
Uwe Hermann74b29b92007-11-17 17:13:52 +000052 {0x2351, "M512x", {
53 {EOT}}},
Uwe Hermann945045b2007-09-28 15:39:10 +000054 {EOT}
55};
56
57static void enter_conf_mode_ali(uint16_t port)
58{
Andriy Gaponb64aa602008-10-28 22:13:38 +000059 OUTB(0x51, port);
60 OUTB(0x23, port);
Uwe Hermann945045b2007-09-28 15:39:10 +000061}
62
63static void exit_conf_mode_ali(uint16_t port)
64{
Andriy Gaponb64aa602008-10-28 22:13:38 +000065 OUTB(0xbb, port);
Uwe Hermann945045b2007-09-28 15:39:10 +000066}
67
68void probe_idregs_ali(uint16_t port)
69{
70 uint16_t id;
71 uint8_t rev;
72
Uwe Hermann8b8d0392007-10-04 15:23:38 +000073 probing_for("ALi", "", port);
74
Uwe Hermann945045b2007-09-28 15:39:10 +000075 enter_conf_mode_ali(port);
76
77 id = regval(port, DEVICE_ID_BYTE1_REG) << 8;
78 id |= regval(port, DEVICE_ID_BYTE2_REG);
Uwe Hermann74b29b92007-11-17 17:13:52 +000079
80 /* TODO: Not documented/available on M512x (?) */
Uwe Hermann945045b2007-09-28 15:39:10 +000081 rev = regval(port, DEVICE_REV_REG);
82
83 if (superio_unknown(reg_table, id)) {
Uwe Hermann8b8d0392007-10-04 15:23:38 +000084 if (verbose)
85 printf(NOTFOUND "id=0x%04x, rev=0x%02x\n", id, rev);
Uwe Hermann945045b2007-09-28 15:39:10 +000086 exit_conf_mode_ali(port);
87 return;
88 }
89
90 printf("Found ALi %s (id=0x%04x, rev=0x%02x) at 0x%x\n",
91 get_superio_name(reg_table, id), id, rev, port);
Uwe Hermanne9d46162007-10-07 20:01:23 +000092 chip_found = 1;
Uwe Hermann945045b2007-09-28 15:39:10 +000093
Stefan Reinauer7a51e502008-12-01 14:18:57 +000094 dump_superio("ALi", reg_table, port, id, LDN_SEL);
Uwe Hermann945045b2007-09-28 15:39:10 +000095
96 exit_conf_mode_ali(port);
97}
Robinson P. Tryon552cfb72008-01-15 22:30:55 +000098
99void print_ali_chips(void)
100{
101 print_vendor_chips("ALi", reg_table);
102}