aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/winent/mb6047/mainboard.c
blob: 7d9516b4f584fd66ac1dd9af92ef9e878798f210 (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
#include <arch/io.h>
#include <console/console.h>
#include <device/device.h>
#include <device/pnp_def.h>
#include <stdlib.h>
#include <superio/winbond/w83627thg/w83627thg.h>

static void hwm_write(u16 base, u8 bank, u8 reg, u8 value)
{
	outb(0x4e, base + 0x05);
	outb(bank, base + 0x06);
	outb(reg, base + 0x05);
	outb(value, base + 0x06);
}

static void mb6047_hwm_init(void)
{
	struct device *dev;
	struct resource *res;
	size_t i;

	static const struct { u8 bnk; u8 idx; u8 dat; } hwmtab[] = {
		{ 0x00, 0x5d, 0x05 }, /* CPUTIN diode */
		{ 0x04, 0x55, 0x32 }, /* CPUTIN offset */
		{ 0x00, 0x4e, 0x00 }, /* reset bank */
	};

	dev = dev_find_slot_pnp(0x2e, W83627THG_HWM);
	if (dev == NULL)
		return;

	res = find_resource(dev, PNP_IDX_IO0);
	if (res == NULL)
		return;

	printk(BIOS_INFO, "setting up hardware monitor at 0x%04x\n", (unsigned int)res->base);

	/* Init hardware monitor. */
	for (i = 0; i < ARRAY_SIZE(hwmtab); i++)
		hwm_write(res->base, hwmtab[i].bnk, hwmtab[i].idx, hwmtab[i].dat);
}

static void mb6047_mainboard_init(struct device *dev)
{
	mb6047_hwm_init();
}

static void mainboard_enable(struct device *dev)
{
	dev->ops->init = mb6047_mainboard_init;
}

struct chip_operations mainboard_ops = {
	.enable_dev = mainboard_enable,
};