blob: b8a7e84dce71b12ff25edffb1dedf5dbd009f934 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Arthur Heymans7b9c1392017-04-09 20:40:39 +02002
Kyösti Mälkki13f66502019-03-03 08:01:05 +02003#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Arthur Heymans7b9c1392017-04-09 20:40:39 +02005#include <device/device.h>
6#include <device/pci.h>
7#include <device/pci_ids.h>
8
Arthur Heymans349e0852017-04-09 20:48:37 +02009#include "i82801jx.h"
Arthur Heymans7b9c1392017-04-09 20:40:39 +020010
11static void thermal_init(struct device *dev)
12{
Arthur Heymans7b9c1392017-04-09 20:40:39 +020013 u8 reg8;
Arthur Heymans7b9c1392017-04-09 20:40:39 +020014
15 pci_write_config32(dev, 0x10, (uintptr_t)DEFAULT_TBAR);
Angel Pons2048cb42020-06-08 02:09:33 +020016 pci_or_config32(dev, 0x04, 1 << 1);
Arthur Heymans7b9c1392017-04-09 20:40:39 +020017
18 write32(DEFAULT_TBAR + 0x04, 0); /* Clear thermal trip points. */
19 write32(DEFAULT_TBAR + 0x44, 0);
20
21 write8(DEFAULT_TBAR + 0x01, 0xba); /* Enable sensor 0 + 1. */
22 write8(DEFAULT_TBAR + 0x41, 0xba);
23
24 reg8 = read8(DEFAULT_TBAR + 0x08); /* Lock thermal registers. */
25 write8(DEFAULT_TBAR + 0x08, reg8 | (1 << 7));
26 reg8 = read8(DEFAULT_TBAR + 0x48);
27 write8(DEFAULT_TBAR + 0x48, reg8 | (1 << 7));
28
Angel Pons2048cb42020-06-08 02:09:33 +020029 pci_and_config32(dev, 0x04, ~(1 << 1));
Arthur Heymans7b9c1392017-04-09 20:40:39 +020030 pci_write_config32(dev, 0x10, 0);
31}
32
Arthur Heymans7b9c1392017-04-09 20:40:39 +020033static struct device_operations device_ops = {
34 .read_resources = pci_dev_read_resources,
35 .set_resources = pci_dev_set_resources,
36 .enable_resources = pci_dev_enable_resources,
37 .init = thermal_init,
Angel Pons1fc0edd2020-05-31 00:03:28 +020038 .ops_pci = &pci_dev_ops_pci,
Arthur Heymans7b9c1392017-04-09 20:40:39 +020039};
40
Arthur Heymans349e0852017-04-09 20:48:37 +020041static const unsigned short pci_device_ids[] = {
42 0x3a32,
43 0x3a62,
44 0
45};
46
47static const struct pci_driver ich10_thermal __pci_driver = {
Arthur Heymans7b9c1392017-04-09 20:40:39 +020048 .ops = &device_ops,
Felix Singer43b7f412022-03-07 04:34:52 +010049 .vendor = PCI_VID_INTEL,
Arthur Heymans349e0852017-04-09 20:48:37 +020050 .devices = pci_device_ids,
Arthur Heymans7b9c1392017-04-09 20:40:39 +020051};