blob: eafb1ee2dfe1ab8ba01af97f285642ba7446aac7 [file] [log] [blame]
Vladimir Serbinenko888d5592013-11-13 17:53:38 +01001/*
2 * This file is part of the coreboot project.
3 *
Vladimir Serbinenko888d5592013-11-13 17:53:38 +01004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * the License.
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.
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010014 */
15
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010016#include <device/device.h>
17#include <device/path.h>
18#include <device/smbus.h>
19#include <device/pci.h>
20#include <device/pci_ids.h>
21#include <device/pci_ops.h>
Kyösti Mälkki1cae4542020-01-06 12:31:34 +020022#include <device/smbus_host.h>
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010023#include "pch.h"
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010024
Elyes HAOUASbe841402018-05-13 13:40:39 +020025static void pch_smbus_init(struct device *dev)
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010026{
27 struct resource *res;
28 u16 reg16;
29
30 /* Enable clock gating */
31 reg16 = pci_read_config32(dev, 0x80);
32 reg16 &= ~((1 << 8)|(1 << 10)|(1 << 12)|(1 << 14));
33 pci_write_config32(dev, 0x80, reg16);
34
35 /* Set Receive Slave Address */
36 res = find_resource(dev, PCI_BASE_ADDRESS_4);
37 if (res)
Kyösti Mälkki73451fd2020-01-06 19:00:31 +020038 smbus_set_slave_addr(res->base, SMBUS_SLAVE_ADDR);
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010039}
40
Elyes HAOUASbe841402018-05-13 13:40:39 +020041static int lsmbus_read_byte(struct device *dev, u8 address)
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010042{
43 u16 device;
44 struct resource *res;
45 struct bus *pbus;
46
47 device = dev->path.i2c.device;
48 pbus = get_pbus_smbus(dev);
49 res = find_resource(pbus->dev, 0x20);
50
51 return do_smbus_read_byte(res->base, device, address);
52}
53
Elyes HAOUASbe841402018-05-13 13:40:39 +020054static int lsmbus_write_byte(struct device *dev, u8 address, u8 val)
Vladimir Serbinenko5f20dbf2014-01-27 23:57:44 +010055{
56 u16 device;
57 struct resource *res;
58 struct bus *pbus;
59
60 device = dev->path.i2c.device;
61 pbus = get_pbus_smbus(dev);
62 res = find_resource(pbus->dev, 0x20);
63
64 return do_smbus_write_byte(res->base, device, address, val);
65}
66
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010067static struct smbus_bus_operations lops_smbus_bus = {
68 .read_byte = lsmbus_read_byte,
Vladimir Serbinenko5f20dbf2014-01-27 23:57:44 +010069 .write_byte = lsmbus_write_byte,
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010070};
71
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010072static struct pci_operations smbus_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +053073 .set_subsystem = pci_dev_set_subsystem,
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010074};
75
Elyes HAOUASbe841402018-05-13 13:40:39 +020076static void smbus_read_resources(struct device *dev)
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010077{
78 struct resource *res = new_resource(dev, PCI_BASE_ADDRESS_4);
79 res->base = SMBUS_IO_BASE;
80 res->size = 32;
81 res->limit = res->base + res->size - 1;
82 res->flags = IORESOURCE_IO | IORESOURCE_FIXED | IORESOURCE_RESERVE |
83 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
84
85 /* Also add MMIO resource */
86 res = pci_get_resource(dev, PCI_BASE_ADDRESS_0);
87}
88
89static struct device_operations smbus_ops = {
90 .read_resources = smbus_read_resources,
91 .set_resources = pci_dev_set_resources,
92 .enable_resources = pci_dev_enable_resources,
Kyösti Mälkkid0e212c2015-02-26 20:47:47 +020093 .scan_bus = scan_smbus,
Vladimir Serbinenko888d5592013-11-13 17:53:38 +010094 .init = pch_smbus_init,
95 .ops_smbus_bus = &lops_smbus_bus,
96 .ops_pci = &smbus_pci_ops,
97};
98
99static const unsigned short pci_device_ids[] = { 0x1c22, 0x1e22, 0x3b30, 0 };
100
101static const struct pci_driver pch_smbus __pci_driver = {
102 .ops = &smbus_ops,
103 .vendor = PCI_VENDOR_ID_INTEL,
104 .devices = pci_device_ids,
105};