coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
thermal.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <device/mmio.h>
4 #include <device/pci_ops.h>
5 #include <device/device.h>
6 #include <device/pci.h>
7 #include <device/pci_ids.h>
8 
9 #include "i82801ix.h"
10 
11 static void thermal_init(struct device *dev)
12 {
13  if (LPC_IS_MOBILE(pcidev_on_root(0x1f, 0)))
14  return;
15 
16  u8 reg8;
17 
19  pci_or_config32(dev, 0x04, 1 << 1);
20 
21  write32(DEFAULT_TBAR + 0x04, 0); /* Clear thermal trip points. */
22  write32(DEFAULT_TBAR + 0x44, 0);
23 
24  write8(DEFAULT_TBAR + 0x01, 0xba); /* Enable sensor 0 + 1. */
25  write8(DEFAULT_TBAR + 0x41, 0xba);
26 
27  reg8 = read8(DEFAULT_TBAR + 0x08); /* Lock thermal registers. */
28  write8(DEFAULT_TBAR + 0x08, reg8 | (1 << 7));
29  reg8 = read8(DEFAULT_TBAR + 0x48);
30  write8(DEFAULT_TBAR + 0x48, reg8 | (1 << 7));
31 
32  pci_and_config32(dev, 0x04, ~(1 << 1));
33  pci_write_config32(dev, 0x10, 0);
34 }
35 
36 static struct device_operations device_ops = {
38  .set_resources = pci_dev_set_resources,
39  .enable_resources = pci_dev_enable_resources,
40  .init = thermal_init,
41  .ops_pci = &pci_dev_ops_pci,
42 };
43 
44 static const struct pci_driver ich9_thermal __pci_driver = {
45  .ops = &device_ops,
46  .vendor = PCI_VID_INTEL,
48 };
static void write8(void *addr, uint8_t val)
Definition: mmio.h:30
static void write32(void *addr, uint32_t val)
Definition: mmio.h:40
static uint8_t read8(const void *addr)
Definition: mmio.h:12
DEVTREE_CONST struct device * pcidev_on_root(uint8_t dev, uint8_t fn)
Definition: device_const.c:260
#define LPC_IS_MOBILE(dev)
Definition: i82801ix.h:159
#define DEFAULT_TBAR
Definition: i82801ix.h:6
static __always_inline void pci_or_config32(const struct device *dev, u16 reg, u32 ormask)
Definition: pci_ops.h:191
static __always_inline void pci_write_config32(const struct device *dev, u16 reg, u32 val)
Definition: pci_ops.h:76
static __always_inline void pci_and_config32(const struct device *dev, u16 reg, u32 andmask)
Definition: pci_ops.h:158
void pci_dev_enable_resources(struct device *dev)
Definition: pci_device.c:721
void pci_dev_read_resources(struct device *dev)
Definition: pci_device.c:534
struct pci_operations pci_dev_ops_pci
Default device operation for PCI devices.
Definition: pci_device.c:911
void pci_dev_set_resources(struct device *dev)
Definition: pci_device.c:691
#define PCI_VID_INTEL
Definition: pci_ids.h:2157
#define PCI_DID_INTEL_82801IB_THERMAL
Definition: pci_ids.h:2637
static struct device_operations device_ops
Definition: thermal.c:36
static void thermal_init(struct device *dev)
Definition: thermal.c:11
static const struct pci_driver ich9_thermal __pci_driver
Definition: thermal.c:44
unsigned long uintptr_t
Definition: stdint.h:21
uint8_t u8
Definition: stdint.h:45
void(* read_resources)(struct device *dev)
Definition: device.h:39
Definition: device.h:107