aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801jx/thermal.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2017-04-09 20:40:39 +0200
committerMartin Roth <martinroth@google.com>2017-07-21 15:43:18 +0000
commit7b9c139ac26eded525980e896b354c99c08cdca7 (patch)
treea30eb4f79395626495a106b7ca1f138753c90636 /src/southbridge/intel/i82801jx/thermal.c
parentc3198543b690fbdeda0f1e1ffaf78048fe765ec0 (diff)
sb/intel/i82801jx: Copy i82801ix
Change-Id: I878960e7e0f992426382ca717b8b42787f01ebc6 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/19248 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/southbridge/intel/i82801jx/thermal.c')
-rw-r--r--src/southbridge/intel/i82801jx/thermal.c81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801jx/thermal.c b/src/southbridge/intel/i82801jx/thermal.c
new file mode 100644
index 0000000000..12cf89891f
--- /dev/null
+++ b/src/southbridge/intel/i82801jx/thermal.c
@@ -0,0 +1,81 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2012 secunet Security Networks AG
+ * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include <arch/io.h>
+#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ids.h>
+
+#include "i82801ix.h"
+
+static void thermal_init(struct device *dev)
+{
+ if (LPC_IS_MOBILE(dev_find_slot(0, PCI_DEVFN(0x1f, 0))))
+ return;
+
+ u8 reg8;
+ u32 reg32;
+
+ pci_write_config32(dev, 0x10, (uintptr_t)DEFAULT_TBAR);
+ reg32 = pci_read_config32(dev, 0x04);
+ pci_write_config32(dev, 0x04, reg32 | (1 << 1));
+
+ write32(DEFAULT_TBAR + 0x04, 0); /* Clear thermal trip points. */
+ write32(DEFAULT_TBAR + 0x44, 0);
+
+ write8(DEFAULT_TBAR + 0x01, 0xba); /* Enable sensor 0 + 1. */
+ write8(DEFAULT_TBAR + 0x41, 0xba);
+
+ reg8 = read8(DEFAULT_TBAR + 0x08); /* Lock thermal registers. */
+ write8(DEFAULT_TBAR + 0x08, reg8 | (1 << 7));
+ reg8 = read8(DEFAULT_TBAR + 0x48);
+ write8(DEFAULT_TBAR + 0x48, reg8 | (1 << 7));
+
+ reg32 = pci_read_config32(dev, 0x04);
+ pci_write_config32(dev, 0x04, reg32 & ~(1 << 1));
+ pci_write_config32(dev, 0x10, 0);
+}
+
+static void thermal_set_subsystem(device_t dev, unsigned vendor, unsigned device)
+{
+ if (!vendor || !device) {
+ pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
+ pci_read_config32(dev, PCI_VENDOR_ID));
+ } else {
+ pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
+ ((device & 0xffff) << 16) | (vendor & 0xffff));
+ }
+}
+
+static struct pci_operations thermal_pci_ops = {
+ .set_subsystem = thermal_set_subsystem,
+};
+
+static struct device_operations device_ops = {
+ .read_resources = pci_dev_read_resources,
+ .set_resources = pci_dev_set_resources,
+ .enable_resources = pci_dev_enable_resources,
+ .init = thermal_init,
+ .scan_bus = 0,
+ .ops_pci = &thermal_pci_ops,
+};
+
+static const struct pci_driver ich9_thermal __pci_driver = {
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = 0x2932,
+};