Add support for Intel Panther Point PCH
[coreboot.git] / src / southbridge / intel / i3100 / smbus.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Arastra, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  */
20
21 #include <device/device.h>
22 #include <device/path.h>
23 #include <device/pci.h>
24 #include <device/pci_ids.h>
25 #include <device/pci_ops.h>
26 #include <device/smbus.h>
27 #include <arch/io.h>
28 #include "i3100.h"
29 #include "smbus.h"
30
31 static int lsmbus_read_byte(device_t dev, u8 address)
32 {
33         u16 device;
34         struct resource *res;
35         struct bus *pbus;
36
37         device = dev->path.i2c.device;
38         pbus = get_pbus_smbus(dev);
39         res = find_resource(pbus->dev, 0x20);
40
41         return do_smbus_read_byte(res->base, device, address);
42 }
43
44 static struct smbus_bus_operations lops_smbus_bus = {
45         .read_byte  = lsmbus_read_byte,
46 };
47
48 static void smbus_set_subsystem(device_t dev, unsigned vendor, unsigned device)
49 {
50         pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
51                 ((device & 0xffff) << 16) | (vendor & 0xffff));
52 }
53
54 static struct pci_operations lops_pci = {
55         .set_subsystem = &smbus_set_subsystem,
56 };
57
58 static struct device_operations smbus_ops = {
59         .read_resources   = pci_dev_read_resources,
60         .set_resources    = pci_dev_set_resources,
61         .enable_resources = pci_dev_enable_resources,
62         .init             = 0,
63         .scan_bus         = scan_static_bus,
64         .enable           = i3100_enable,
65         .ops_pci          = &lops_pci,
66         .ops_smbus_bus    = &lops_smbus_bus,
67 };
68
69 static const struct pci_driver smbus_driver __pci_driver = {
70         .ops    = &smbus_ops,
71         .vendor = PCI_VENDOR_ID_INTEL,
72         .device = PCI_DEVICE_ID_INTEL_3100_SMB,
73 };
74
75 static const struct pci_driver smbus_driver_ep80579 __pci_driver = {
76         .ops    = &smbus_ops,
77         .vendor = PCI_VENDOR_ID_INTEL,
78         .device = PCI_DEVICE_ID_INTEL_EP80579_SMB,
79 };