blob: ba9b9766e6d0739df957c5d8fae0ea67caea555b [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer8e073822012-04-04 00:07:22 +02004 *
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.
Stefan Reinauer8e073822012-04-04 00:07:22 +020014 */
15
Stefan Reinauer8e073822012-04-04 00:07:22 +020016#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>
Stefan Reinauer8e073822012-04-04 00:07:22 +020023#include "pch.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020024
Elyes HAOUAS4aec3402018-05-25 08:29:27 +020025static void pch_smbus_init(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +020026{
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);
Stefan Reinauer8e073822012-04-04 00:07:22 +020039}
40
Elyes HAOUAS4aec3402018-05-25 08:29:27 +020041static int lsmbus_read_byte(struct device *dev, u8 address)
Stefan Reinauer8e073822012-04-04 00:07:22 +020042{
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 HAOUAS4aec3402018-05-25 08:29:27 +020054static int lsmbus_write_byte(struct device *dev, u8 address, u8 val)
Vladimir Serbinenkoe57718f2014-01-27 23:48:27 +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
Stefan Reinauer8e073822012-04-04 00:07:22 +020067static struct smbus_bus_operations lops_smbus_bus = {
68 .read_byte = lsmbus_read_byte,
Vladimir Serbinenkoe57718f2014-01-27 23:48:27 +010069 .write_byte = lsmbus_write_byte,
Stefan Reinauer8e073822012-04-04 00:07:22 +020070};
71
Stefan Reinauer8e073822012-04-04 00:07:22 +020072static struct pci_operations smbus_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +053073 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer8e073822012-04-04 00:07:22 +020074};
75
Elyes HAOUAS4aec3402018-05-25 08:29:27 +020076static void smbus_read_resources(struct device *dev)
Stefan Reinauer8e073822012-04-04 00:07:22 +020077{
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
Aaron Durbinaa090cb2017-09-13 16:01:52 -060089static const char *smbus_acpi_name(const struct device *dev)
Patrick Rudolph604f6982017-06-07 09:46:52 +020090{
91 return "SBUS";
92}
93
Stefan Reinauer8e073822012-04-04 00:07:22 +020094static struct device_operations smbus_ops = {
95 .read_resources = smbus_read_resources,
96 .set_resources = pci_dev_set_resources,
97 .enable_resources = pci_dev_enable_resources,
Kyösti Mälkkid0e212c2015-02-26 20:47:47 +020098 .scan_bus = scan_smbus,
Stefan Reinauer8e073822012-04-04 00:07:22 +020099 .init = pch_smbus_init,
100 .ops_smbus_bus = &lops_smbus_bus,
101 .ops_pci = &smbus_pci_ops,
Patrick Rudolph604f6982017-06-07 09:46:52 +0200102 .acpi_name = smbus_acpi_name,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200103};
104
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700105static const unsigned short pci_device_ids[] = { 0x1c22, 0x1e22, 0 };
Stefan Reinauer8e073822012-04-04 00:07:22 +0200106
Stefan Reinauer9a380ab2012-06-22 13:16:11 -0700107static const struct pci_driver pch_smbus __pci_driver = {
108 .ops = &smbus_ops,
109 .vendor = PCI_VENDOR_ID_INTEL,
110 .devices = pci_device_ids,
Stefan Reinauer8e073822012-04-04 00:07:22 +0200111};