summaryrefslogtreecommitdiffstats
path: root/util/superiotool/via.c
blob: 3fa36359793163541136c523c344368e791d42c2 (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
/*
 * 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", {
		{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);
}