blob: ce75f3a8914c51fcf7ae440b04978b8943229a97 [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
Kyösti Mälkkibdaec072019-03-02 23:18:29 +020016#include <arch/io.h>
Aamir Bohra52f29742017-04-19 18:19:14 +053017#include <device/device.h>
18#include <device/path.h>
19#include <device/smbus.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
Aamir Bohra52f29742017-04-19 18:19:14 +053022#include <soc/smbus.h>
Kyösti Mälkkibbcf1a02020-01-01 17:42:45 +020023#include <southbridge/intel/common/smbus.h>
Kyösti Mälkki1cae4542020-01-06 12:31:34 +020024#include <device/smbus_host.h>
Aamir Bohra52f29742017-04-19 18:19:14 +053025#include "smbuslib.h"
26
Elyes HAOUAS4a131262018-09-16 17:35:48 +020027static int lsmbus_read_byte(struct device *dev, u8 address)
Aamir Bohra52f29742017-04-19 18:19:14 +053028{
29 u16 device;
30 struct resource *res;
31 struct bus *pbus;
32 device = dev->path.i2c.device;
33 pbus = get_pbus_smbus(dev);
34 res = find_resource(pbus->dev, PCI_BASE_ADDRESS_4);
Kyösti Mälkki4ae9f1e2020-01-01 17:42:45 +020035 return do_smbus_read_byte(res->base, device, address);
Aamir Bohra52f29742017-04-19 18:19:14 +053036}
37
Elyes HAOUAS4a131262018-09-16 17:35:48 +020038static int lsmbus_write_byte(struct device *dev, u8 address, u8 data)
Aamir Bohra52f29742017-04-19 18:19:14 +053039{
40 u16 device;
41 struct resource *res;
42 struct bus *pbus;
43
44 device = dev->path.i2c.device;
45 pbus = get_pbus_smbus(dev);
46 res = find_resource(pbus->dev, PCI_BASE_ADDRESS_4);
Kyösti Mälkki4ae9f1e2020-01-01 17:42:45 +020047 return do_smbus_write_byte(res->base, device, address, data);
Aamir Bohra52f29742017-04-19 18:19:14 +053048}
49
50static struct smbus_bus_operations lops_smbus_bus = {
51 .read_byte = lsmbus_read_byte,
52 .write_byte = lsmbus_write_byte,
53};
54
Elyes HAOUAS4a131262018-09-16 17:35:48 +020055static void pch_smbus_init(struct device *dev)
Aamir Bohra52f29742017-04-19 18:19:14 +053056{
57 struct resource *res;
Aamir Bohra52f29742017-04-19 18:19:14 +053058
59 /* Enable clock gating */
Nico Huber62788672017-08-17 16:08:00 +020060 pci_update_config32(dev, 0x80,
61 ~((1 << 8) | (1 << 10) | (1 << 12) | (1 << 14)), 0);
Aamir Bohra52f29742017-04-19 18:19:14 +053062
63 /* Set Receive Slave Address */
64 res = find_resource(dev, PCI_BASE_ADDRESS_4);
65 if (res)
66 outb(SMBUS_SLAVE_ADDR, res->base + SMB_RCV_SLVA);
67}
68
Elyes HAOUAS4a131262018-09-16 17:35:48 +020069static void smbus_read_resources(struct device *dev)
Aamir Bohra52f29742017-04-19 18:19:14 +053070{
71 struct resource *res = new_resource(dev, PCI_BASE_ADDRESS_4);
72 res->base = SMBUS_IO_BASE;
73 res->size = 32;
74 res->limit = res->base + res->size - 1;
75 res->flags = IORESOURCE_IO | IORESOURCE_FIXED | IORESOURCE_RESERVE |
76 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
77
78 /* Also add MMIO resource */
79 res = pci_get_resource(dev, PCI_BASE_ADDRESS_0);
80}
81
82static struct device_operations smbus_ops = {
Elyes HAOUAS1d191272018-11-27 12:23:48 +010083 .read_resources = smbus_read_resources,
84 .set_resources = pci_dev_set_resources,
85 .enable_resources = pci_dev_enable_resources,
86 .scan_bus = scan_smbus,
87 .init = pch_smbus_init,
Subrata Banik6bbc91a2017-12-07 14:55:51 +053088 .ops_pci = &pci_dev_ops_pci,
Aamir Bohra52f29742017-04-19 18:19:14 +053089 .ops_smbus_bus = &lops_smbus_bus,
90};
91
92static const unsigned short pci_device_ids[] = {
Lijian Zhaobbedef92017-07-29 16:38:38 -070093 PCI_DEVICE_ID_INTEL_CNL_SMBUS,
Aamir Bohra52f29742017-04-19 18:19:14 +053094 PCI_DEVICE_ID_INTEL_SPT_LP_SMBUS,
95 PCI_DEVICE_ID_INTEL_SPT_H_SMBUS,
Maxim Polyakov571d07d2019-08-22 13:11:32 +030096 PCI_DEVICE_ID_INTEL_LWB_SMBUS_SUPER,
Jonathan Zhangc9ece502019-11-25 12:41:15 -080097 PCI_DEVICE_ID_INTEL_LWB_SMBUS,
Aamir Bohra9eac0392018-06-30 12:07:04 +053098 PCI_DEVICE_ID_INTEL_ICP_LP_SMBUS,
Ronak Kanabarda7ffb482019-02-05 01:51:13 +053099 PCI_DEVICE_ID_INTEL_CMP_SMBUS,
Gaggery Tsai12a651c2019-12-05 11:23:20 -0800100 PCI_DEVICE_ID_INTEL_CMP_H_SMBUS,
Ravi Sarawadi6b5bf402019-10-21 22:25:04 -0700101 PCI_DEVICE_ID_INTEL_TGP_LP_SMBUS,
rkanabar263f1292019-11-28 10:41:45 +0530102 PCI_DEVICE_ID_INTEL_JSP_PRE_PROD_SMBUS,
Aamir Bohra52f29742017-04-19 18:19:14 +0530103 0
104};
105
106static const struct pci_driver pch_smbus __pci_driver = {
107 .ops = &smbus_ops,
108 .vendor = PCI_VENDOR_ID_INTEL,
109 .devices = pci_device_ids,
110};