Intel 82801ax/82801bx: Fix and hook up i82801xx_smbus.c.
[coreboot.git] / src / southbridge / intel / i82801ax / i82801ax_early_smbus.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 Tyan Computer
5  * (Written by Yinghai Lu <yinghailu@gmail.com> for Tyan Computer)
6  * Copyright (C) 2007 Corey Osgood <corey.osgood@gmail.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
21  */
22
23 #include <device/pci_ids.h>
24 #include "i82801ax.h"
25 #include "i82801ax_smbus.h"
26
27 static void enable_smbus(void)
28 {
29         device_t dev;
30         uint16_t device_id;
31
32         /* Set the SMBus device statically. */
33         dev = PCI_DEV(0x0, 0x1f, 0x3);
34
35         /* Check to make sure we've got the right device. */
36         device_id = pci_read_config16(dev, 0x2);
37
38         /* Clear bits 7-4 (the only bits that vary between models). */
39         device_id &= 0xff0f;
40
41         if (device_id != 0x2403) {
42                 die("Device not found, Corey probably screwed up!");
43         }
44
45         /* Set SMBus I/O base. */
46         pci_write_config32(dev, SMB_BASE,
47                            SMBUS_IO_BASE | PCI_BASE_ADDRESS_SPACE_IO);
48
49         /* Set SMBus enable. */
50         pci_write_config8(dev, HOSTC, HST_EN);
51
52         /* Set SMBus I/O space enable. */
53         pci_write_config16(dev, PCI_COMMAND, PCI_COMMAND_IO);
54
55         /* Disable interrupt generation. */
56         outb(0, SMBUS_IO_BASE + SMBHSTCTL);
57
58         /* Clear any lingering errors, so transactions can run. */
59         outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
60
61         print_debug("SMBus controller enabled\n");
62 }
63
64 static inline int smbus_read_byte(unsigned device, unsigned address)
65 {
66         return do_smbus_read_byte(SMBUS_IO_BASE, device, address);
67 }
68