summaryrefslogtreecommitdiff
path: root/util/superiotool/via.c
blob: 0312de70c80a6570718ec2441087ac6b30ac05b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
 * This file is part of the superiotool project.
 *
 * Copyright (C) 2009 Carl-Daniel Hailfinger
 *
 * 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.
 */

#include "superiotool.h"

#define DEVICE_ID_VT82C686_REG	0xe0
#define DEVICE_REV_VT82C686_REG	0xe1

#define DEVICE_ID_VT1211_REG    0x20
#define DEVICE_REV_VT1211_REG   0x21

static const struct superio_registers reg_table[] = {
	{0x3c00, "VT82C686A/VT82C686B", {
		{EOT}}},
	{0x3c01, "VT1211", {
		{NOLDN, NULL,
			{0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,
			 0x2e,0x2f,EOT},
			{0x3c,0x01,0x00,0x11,0x00,0x00,0x00,0x00,0x00,0x00,
			 0x00,0x00,EOT}},
		{0x0, "Floppy Disk Controller (FDC)",
			{0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
			{0x00,0x03,0xf0,0x06,0x01,0x00,0x00,EOT}},
		{0x1, "Parallel Port (PP)",
			{0x30,0x60,0x61,0x70,0x74,0xf0,EOT},
			{0x03,0x03,0x78,0x05,0x00,0x00,EOT}},
		{0x2, "Serial Port 1 (UART1)",
			{0x30,0x60,0x61,0x70,0xf0,EOT},
			{0x00,0x03,0xf8,0x04,0x00,EOT}},
		{0x3, "Serial Port 2 (UART2)",
			{0x30,0x60,0x61,0x70,0xf0,EOT},
			{0x00,0x02,0xf8,0x03,0x00,EOT}},
		{0x6, "MIDI",
			{0x30,0x60,0x61,0x70,EOT},
			{0x00,0x03,0x30,0x00,EOT}},
		{0x7, "Game Port (GMP)",
			{0x30,0x60,0x61,EOT},
			{0x00,0x02,0x00,EOT}},
		{0x8, "GPIO",
			{0x30,0x60,0x61,0x70,0xf0,0xf1,0xf2,EOT},
			{0x00,0xe9,0x00,0x00,0x00,0x00,0x00,EOT}},
		{0x9, "Watch Dog (WDG)",
			{0x30,0x60,0x61,0x70,0xf0,EOT},
			{0x00,0xea,0x00,0x00,0x00,EOT}},
		{0xa, "Wake-up Control (WUC)",
			{0x30,0x60,0x61,0x70,EOT},
			{0x00,0xeb,0x00,0x00,EOT}},
		{0xb, "Hardware Monitor (HM)",
			{0x30,0x60,0x61,0x70,EOT},
			{0x00,0xec,0x00,0x00,EOT}},
		{0xc, "Very Fast IR (VFIR)",
			{0x30,0x60,0x61,0x70,0x74,0xf0,EOT},
			{0x00,0xe8,0x00,0x00,0x06,0x00,EOT}},
		{0xd, "Flash ROM (ROM)",
			{0x30,0xf0,EOT},
			{0x01,0x00,EOT}},
		{EOT}}},
	{EOT}
};

static uint8_t vt82c686_conf = 0;

static int enter_conf_mode_via_vt82c686(void)
{
	struct pci_dev *dev;

	dev = pci_dev_find(0x1106, 0x0686);
	if (!dev) {
		if (verbose)
			printf("  PCI device 1106:0686 not found.\n");
		return 1;
	}

	vt82c686_conf = pci_read_byte(dev, 0x85);
	if (verbose)
		printf("  Super I/O %sabled, Super I/O configuration %sabled\n",
		       (vt82c686_conf & (1 << 0)) ? "en" : "dis",
		       (vt82c686_conf & (1 << 1)) ? "en" : "dis");

	/* If the Super I/O is not enabled, skip it. */
	if (!(vt82c686_conf & (1 << 0)))
		return 1;

	/* Enable Super I/O configuration mode. */
	pci_write_byte(dev, 0x85, vt82c686_conf | (1 << 1));

	return 0;
}

static void exit_conf_mode_via_vt82c686(void)
{
	struct pci_dev *dev;

	dev = pci_dev_find(0x1106, 0x0686);
	if (!dev) {
		printf("Bug: PCI device 1106:0686 not found during shutdown.\n"
		       "Please report to coreboot@coreboot.org.\n");
		return;
	}

	/* Restore (disable?) Super I/O configuration mode setting. */
	pci_write_byte(dev, 0x85, vt82c686_conf);
}

void probe_idregs_via(uint16_t port)
{
	uint16_t id;
	uint8_t devid;
	uint8_t rev;

	if (port == 0x3f0) {
		probing_for("VIA", "(init=vt82c686) ", port);
		if (enter_conf_mode_via_vt82c686())
			return;

		devid = regval(port, DEVICE_ID_VT82C686_REG);
		rev = regval(port, DEVICE_REV_VT82C686_REG);
		id = devid << 8;

		if (superio_unknown(reg_table, id)) {
			if (verbose)
				printf(NOTFOUND "id=0x%02x, rev=0x%02x\n", devid, rev);
		} else {
			printf("Found VIA %s (id=0x%02x, rev=0x%02x) at 0x%x\n",
			       get_superio_name(reg_table, id), devid, rev, port);
			chip_found = 1;
		}
		exit_conf_mode_via_vt82c686();
		if (chip_found)
			return;
	} else {
		probing_for("VIA", "(init=0x87,0x87) ", port);
		enter_conf_mode_winbond_fintek_ite_8787(port);

	        devid = regval(port, DEVICE_ID_VT1211_REG);
		rev = regval(port, DEVICE_REV_VT1211_REG);
		id = (devid << 8) | 1;

		if (superio_unknown(reg_table, id)) {
			if (verbose)
				printf(NOTFOUND "id=0x%02x, rev=0x%02x\n", devid, rev);
		} else {
			printf("Found VIA %s (id=0x%02x, rev=0x%02x) at 0x%x\n",
			       get_superio_name(reg_table, id), devid, rev, port);
			chip_found = 1;
			dump_superio("VIA", reg_table, port, id, LDN_SEL);
		}
	}

	exit_conf_mode_winbond_fintek_ite_8787(port);
}

void print_via_chips(void)
{
	print_vendor_chips("VIA", reg_table);
}