blob: 931198254d57d25fc233d7abdfa6803309247577 [file] [log] [blame]
Patrick Georgie72a8a32012-11-06 11:05:09 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Patrick Georgie72a8a32012-11-06 11:05:09 +010016 */
17
18#include <arch/io.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
22
23#include "i82801ix.h"
24
25static void thermal_init(struct device *dev)
26{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030027 if (LPC_IS_MOBILE(pcidev_on_root(0x1f, 0)))
Patrick Georgie72a8a32012-11-06 11:05:09 +010028 return;
29
30 u8 reg8;
31 u32 reg32;
32
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080033 pci_write_config32(dev, 0x10, (uintptr_t)DEFAULT_TBAR);
Patrick Georgie72a8a32012-11-06 11:05:09 +010034 reg32 = pci_read_config32(dev, 0x04);
35 pci_write_config32(dev, 0x04, reg32 | (1 << 1));
36
37 write32(DEFAULT_TBAR + 0x04, 0); /* Clear thermal trip points. */
38 write32(DEFAULT_TBAR + 0x44, 0);
39
40 write8(DEFAULT_TBAR + 0x01, 0xba); /* Enable sensor 0 + 1. */
41 write8(DEFAULT_TBAR + 0x41, 0xba);
42
43 reg8 = read8(DEFAULT_TBAR + 0x08); /* Lock thermal registers. */
44 write8(DEFAULT_TBAR + 0x08, reg8 | (1 << 7));
45 reg8 = read8(DEFAULT_TBAR + 0x48);
46 write8(DEFAULT_TBAR + 0x48, reg8 | (1 << 7));
47
48 reg32 = pci_read_config32(dev, 0x04);
49 pci_write_config32(dev, 0x04, reg32 & ~(1 << 1));
50 pci_write_config32(dev, 0x10, 0);
51}
52
Elyes HAOUAS8aa50732018-05-13 13:34:58 +020053static void thermal_set_subsystem(struct device *dev, unsigned vendor,
54 unsigned device)
Patrick Georgie72a8a32012-11-06 11:05:09 +010055{
56 if (!vendor || !device) {
57 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
58 pci_read_config32(dev, PCI_VENDOR_ID));
59 } else {
60 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
61 ((device & 0xffff) << 16) | (vendor & 0xffff));
62 }
63}
64
65static struct pci_operations thermal_pci_ops = {
66 .set_subsystem = thermal_set_subsystem,
67};
68
69static struct device_operations device_ops = {
70 .read_resources = pci_dev_read_resources,
71 .set_resources = pci_dev_set_resources,
72 .enable_resources = pci_dev_enable_resources,
73 .init = thermal_init,
74 .scan_bus = 0,
75 .ops_pci = &thermal_pci_ops,
76};
77
78static const struct pci_driver ich9_thermal __pci_driver = {
79 .ops = &device_ops,
80 .vendor = PCI_VENDOR_ID_INTEL,
81 .device = 0x2932,
82};