blob: 834f310c6ca998d15ee51819af6f2993a3e886e3 [file] [log] [blame]
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00004 * Copyright (C) 2008-2009 coresystems GmbH
Stefan Reinauerdebb11f2008-10-29 04:46:52 +00005 *
Stefan Reinauera8e11682009-03-11 14:54:18 +00006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000010 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Stefan Reinauera8e11682009-03-11 14:54:18 +000021#include <console/console.h>
22#include <device/device.h>
23#include <device/path.h>
24#include <device/smbus.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
27#include <device/pci_ops.h>
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000028#include <arch/io.h>
29#include "i82801gx.h"
stepan836ae292010-12-08 05:42:47 +000030#include "smbus.h"
Stefan Reinauer109ab312009-08-12 16:08:05 +000031
Stefan Reinauer573f7d42009-07-21 21:50:34 +000032#define SMB_BASE 0x20
33static void smbus_init(struct device *dev)
34{
35 u32 smb_base;
36
37 smb_base = pci_read_config32(dev, SMB_BASE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000038 printk(BIOS_DEBUG, "Initializing SMBus device:\n");
39 printk(BIOS_DEBUG, " Old SMBUS Base Address: 0x%04x\n", smb_base);
Stefan Reinauer573f7d42009-07-21 21:50:34 +000040 pci_write_config32(dev, SMB_BASE, 0x00000401);
41 smb_base = pci_read_config32(dev, SMB_BASE);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000042 printk(BIOS_DEBUG, " New SMBUS Base Address: 0x%04x\n", smb_base);
Stefan Reinauer573f7d42009-07-21 21:50:34 +000043}
44
Stefan Reinauera8e11682009-03-11 14:54:18 +000045static int lsmbus_read_byte(device_t dev, u8 address)
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000046{
47 u16 device;
48 struct resource *res;
Stefan Reinauera8e11682009-03-11 14:54:18 +000049 struct bus *pbus;
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000050
Stefan Reinauer2b34db82009-02-28 20:10:20 +000051 device = dev->path.i2c.device;
Stefan Reinauera8e11682009-03-11 14:54:18 +000052 pbus = get_pbus_smbus(dev);
53 res = find_resource(pbus->dev, 0x20);
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000054
55 return do_smbus_read_byte(res->base, device, address);
56}
57
58static struct smbus_bus_operations lops_smbus_bus = {
Stefan Reinauera8e11682009-03-11 14:54:18 +000059 .read_byte = lsmbus_read_byte,
60};
61
62static void smbus_set_subsystem(device_t dev, unsigned vendor, unsigned device)
63{
64 if (!vendor || !device) {
65 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
66 pci_read_config32(dev, PCI_VENDOR_ID));
67 } else {
68 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
69 ((device & 0xffff) << 16) | (vendor & 0xffff));
70 }
71}
72
73static struct pci_operations smbus_pci_ops = {
74 .set_subsystem = smbus_set_subsystem,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000075};
76
77static struct device_operations smbus_ops = {
78 .read_resources = pci_dev_read_resources,
79 .set_resources = pci_dev_set_resources,
80 .enable_resources = pci_dev_enable_resources,
Stefan Reinauer573f7d42009-07-21 21:50:34 +000081 .init = smbus_init,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000082 .scan_bus = scan_static_bus,
83 .enable = i82801gx_enable,
84 .ops_smbus_bus = &lops_smbus_bus,
Stefan Reinauera8e11682009-03-11 14:54:18 +000085 .ops_pci = &smbus_pci_ops,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000086};
87
88/* 82801GB/GR/GDH/GBM/GHM/GU (ICH7/ICH7R/ICH7DH/ICH7-M/ICH7-M DH/ICH7-U) */
89static const struct pci_driver i82801gx_smbus __pci_driver = {
90 .ops = &smbus_ops,
91 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +000092 .device = 0x27da,
Stefan Reinauerdebb11f2008-10-29 04:46:52 +000093};