blob: a99efafe85a0ad8dbe3b814a76589cc83e23f2e8 [file] [log] [blame]
Aamir Bohra52f29742017-04-19 18:19:14 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2017 Intel Corporation.
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 as published by
8 * the Free Software Foundation; version 2 of 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.
14 */
15
16#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>
Aamir Bohra52f29742017-04-19 18:19:14 +053021#include <soc/smbus.h>
Kyösti Mälkki1cae4542020-01-06 12:31:34 +020022#include <device/smbus_host.h>
Aamir Bohra52f29742017-04-19 18:19:14 +053023#include "smbuslib.h"
24
Elyes HAOUAS4a131262018-09-16 17:35:48 +020025static int lsmbus_read_byte(struct device *dev, u8 address)
Aamir Bohra52f29742017-04-19 18:19:14 +053026{
27 u16 device;
28 struct resource *res;
29 struct bus *pbus;
30 device = dev->path.i2c.device;
31 pbus = get_pbus_smbus(dev);
32 res = find_resource(pbus->dev, PCI_BASE_ADDRESS_4);
Kyösti Mälkki4ae9f1e2020-01-01 17:42:45 +020033 return do_smbus_read_byte(res->base, device, address);
Aamir Bohra52f29742017-04-19 18:19:14 +053034}
35
Elyes HAOUAS4a131262018-09-16 17:35:48 +020036static int lsmbus_write_byte(struct device *dev, u8 address, u8 data)
Aamir Bohra52f29742017-04-19 18:19:14 +053037{
38 u16 device;
39 struct resource *res;
40 struct bus *pbus;
41
42 device = dev->path.i2c.device;
43 pbus = get_pbus_smbus(dev);
44 res = find_resource(pbus->dev, PCI_BASE_ADDRESS_4);
Kyösti Mälkki4ae9f1e2020-01-01 17:42:45 +020045 return do_smbus_write_byte(res->base, device, address, data);
Aamir Bohra52f29742017-04-19 18:19:14 +053046}
47
48static struct smbus_bus_operations lops_smbus_bus = {
49 .read_byte = lsmbus_read_byte,
50 .write_byte = lsmbus_write_byte,
51};
52
Elyes HAOUAS4a131262018-09-16 17:35:48 +020053static void pch_smbus_init(struct device *dev)
Aamir Bohra52f29742017-04-19 18:19:14 +053054{
55 struct resource *res;
Aamir Bohra52f29742017-04-19 18:19:14 +053056
57 /* Enable clock gating */
Nico Huber62788672017-08-17 16:08:00 +020058 pci_update_config32(dev, 0x80,
59 ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)), 0);
Aamir Bohra52f29742017-04-19 18:19:14 +053060
61 /* Set Receive Slave Address */
62 res = find_resource(dev, PCI_BASE_ADDRESS_4);
63 if (res)
Kyösti Mälkki73451fd2020-01-06 19:00:31 +020064 smbus_set_slave_addr(res->base, SMBUS_SLAVE_ADDR);
Aamir Bohra52f29742017-04-19 18:19:14 +053065}
66
Elyes HAOUAS4a131262018-09-16 17:35:48 +020067static void smbus_read_resources(struct device *dev)
Aamir Bohra52f29742017-04-19 18:19:14 +053068{
69 struct resource *res = new_resource(dev, PCI_BASE_ADDRESS_4);
70 res->base = SMBUS_IO_BASE;
71 res->size = 32;
72 res->limit = res->base + res->size - 1;
73 res->flags = IORESOURCE_IO | IORESOURCE_FIXED | IORESOURCE_RESERVE |
74 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
75
76 /* Also add MMIO resource */
77 res = pci_get_resource(dev, PCI_BASE_ADDRESS_0);
78}
79
80static struct device_operations smbus_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010081 .read_resources = smbus_read_resources,
82 .set_resources = pci_dev_set_resources,
83 .enable_resources = pci_dev_enable_resources,
84 .scan_bus = scan_smbus,
85 .init = pch_smbus_init,
Subrata Banik6bbc91a2017-12-07 14:55:51 +053086 .ops_pci = &pci_dev_ops_pci,
Aamir Bohra52f29742017-04-19 18:19:14 +053087 .ops_smbus_bus = &lops_smbus_bus,
88};
89
90static const unsigned short pci_device_ids[] = {
Lijian Zhaobbedef92017-07-29 16:38:38 -070091 PCI_DEVICE_ID_INTEL_CNL_SMBUS,
Aamir Bohra52f29742017-04-19 18:19:14 +053092 PCI_DEVICE_ID_INTEL_SPT_LP_SMBUS,
93 PCI_DEVICE_ID_INTEL_SPT_H_SMBUS,
Maxim Polyakov571d07d2019-08-22 13:11:32 +030094 PCI_DEVICE_ID_INTEL_LWB_SMBUS_SUPER,
Jonathan Zhangc9ece502019-11-25 12:41:15 -080095 PCI_DEVICE_ID_INTEL_LWB_SMBUS,
Aamir Bohra9eac0392018-06-30 12:07:04 +053096 PCI_DEVICE_ID_INTEL_ICP_LP_SMBUS,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +053097 PCI_DEVICE_ID_INTEL_CMP_SMBUS,
Gaggery Tsai12a651c2019-12-05 11:23:20 -080098 PCI_DEVICE_ID_INTEL_CMP_H_SMBUS,
Ravi Sarawadi6b5bf402019-10-21 22:25:04 -070099 PCI_DEVICE_ID_INTEL_TGP_LP_SMBUS,
rkanabar263f1292019-11-28 10:41:45 +0530100 PCI_DEVICE_ID_INTEL_JSP_PRE_PROD_SMBUS,
Aamir Bohra52f29742017-04-19 18:19:14 +0530101 0
102};
103
104static const struct pci_driver pch_smbus __pci_driver = {
105 .ops = &smbus_ops,
106 .vendor = PCI_VENDOR_ID_INTEL,
107 .devices = pci_device_ids,
108};