blob: 3cac32f3b3eaa0e46069c4a255cdd1cf89b15c93 [file] [log] [blame]
Patrick Georgie72a8a32012-11-06 11:05:09 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * 2012 secunet Security Networks AG
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Patrick Georgie72a8a32012-11-06 11:05:09 +010016 */
17
18#include <arch/io.h>
Patrick Georgie72a8a32012-11-06 11:05:09 +010019#include <console/console.h>
20#include <device/pci_ids.h>
21#include <device/pci_def.h>
22#include "i82801ix.h"
23#include "smbus.h"
24
25void enable_smbus(void)
26{
27 device_t dev;
28
29 /* Set the SMBus device statically. */
30 dev = PCI_DEV(0x0, 0x1f, 0x3);
31
32 /* Check to make sure we've got the right device. */
33 if (pci_read_config16(dev, 0x2) != 0x2930) {
34 die("SMBus controller not found!");
35 }
36
37 /* Set SMBus I/O base. */
38 pci_write_config32(dev, SMB_BASE,
39 SMBUS_IO_BASE | PCI_BASE_ADDRESS_SPACE_IO);
40
41 /* Set SMBus enable. */
42 pci_write_config8(dev, HOSTC, HST_EN);
43
44 /* Set SMBus I/O space enable. */
45 pci_write_config16(dev, PCI_COMMAND, PCI_COMMAND_IO);
46
47 /* Disable interrupt generation. */
48 outb(0, SMBUS_IO_BASE + SMBHSTCTL);
49
50 /* Clear any lingering errors, so transactions can run. */
51 outb(inb(SMBUS_IO_BASE + SMBHSTSTAT), SMBUS_IO_BASE + SMBHSTSTAT);
Stefan Reinauer5ab52dd2015-01-05 13:01:01 -080052 printk(BIOS_DEBUG, "SMBus controller enabled.\n");
Patrick Georgie72a8a32012-11-06 11:05:09 +010053}
54
55int smbus_read_byte(unsigned device, unsigned address)
56{
57 return do_smbus_read_byte(SMBUS_IO_BASE, device, address);
58}