blob: f73bd4eceb28f0e46c628b1902b3b2d6d90c0195 [file] [log] [blame]
Thomas Gleixner16216332019-05-19 15:51:31 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rudolf Marek29fa06c2006-08-28 14:40:17 +02002/*
3 * k8temp.c - Linux kernel module for hardware monitoring
4 *
Jean Delvare7188cc62006-12-12 18:18:30 +01005 * Copyright (C) 2006 Rudolf Marek <r.marek@assembler.cz>
Rudolf Marek29fa06c2006-08-28 14:40:17 +02006 *
7 * Inspired from the w83785 and amd756 drivers.
Rudolf Marek29fa06c2006-08-28 14:40:17 +02008 */
9
10#include <linux/module.h>
Rudolf Marek29fa06c2006-08-28 14:40:17 +020011#include <linux/init.h>
12#include <linux/slab.h>
Rudolf Marek29fa06c2006-08-28 14:40:17 +020013#include <linux/pci.h>
14#include <linux/hwmon.h>
Rudolf Marek29fa06c2006-08-28 14:40:17 +020015#include <linux/err.h>
16#include <linux/mutex.h>
Andreas Herrmannbb9a35f2009-01-15 22:27:46 +010017#include <asm/processor.h>
Rudolf Marek29fa06c2006-08-28 14:40:17 +020018
19#define TEMP_FROM_REG(val) (((((val) >> 16) & 0xff) - 49) * 1000)
20#define REG_TEMP 0xe4
21#define SEL_PLACE 0x40
22#define SEL_CORE 0x04
23
24struct k8temp_data {
Rudolf Marek29fa06c2006-08-28 14:40:17 +020025 struct mutex update_lock;
Rudolf Marek29fa06c2006-08-28 14:40:17 +020026
27 /* registers values */
Frans Meulenbroeks93092a62012-01-10 23:01:39 +010028 u8 sensorsp; /* sensor presence bits - SEL_CORE, SEL_PLACE */
Andreas Herrmanna2e066b2009-01-15 22:27:47 +010029 u8 swap_core_select; /* meaning of SEL_CORE is inverted */
Andreas Herrmann76ff08d2009-01-15 22:27:47 +010030 u32 temp_offset;
Rudolf Marek29fa06c2006-08-28 14:40:17 +020031};
32
Jingoo Hancd9bb052013-12-03 07:10:29 +000033static const struct pci_device_id k8temp_ids[] = {
Rudolf Marek29fa06c2006-08-28 14:40:17 +020034 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB_MISC) },
35 { 0 },
36};
Jean Delvareb17ebc92006-08-28 14:41:03 +020037MODULE_DEVICE_TABLE(pci, k8temp_ids);
38
Bill Pemberton6c931ae2012-11-19 13:22:35 -050039static int is_rev_g_desktop(u8 model)
Andreas Herrmanna05e93f2010-08-25 15:42:12 +020040{
41 u32 brandidx;
42
43 if (model < 0x69)
44 return 0;
45
46 if (model == 0xc1 || model == 0x6c || model == 0x7c)
47 return 0;
48
49 /*
50 * Differentiate between AM2 and ASB1.
51 * See "Constructing the processor Name String" in "Revision
52 * Guide for AMD NPT Family 0Fh Processors" (33610).
53 */
54 brandidx = cpuid_ebx(0x80000001);
55 brandidx = (brandidx >> 9) & 0x1f;
56
57 /* Single core */
58 if ((model == 0x6f || model == 0x7f) &&
59 (brandidx == 0x7 || brandidx == 0x9 || brandidx == 0xc))
60 return 0;
61
62 /* Dual core */
63 if (model == 0x6b &&
64 (brandidx == 0xb || brandidx == 0xc))
65 return 0;
66
67 return 1;
68}
69
Robert Karszniewicz3b07a702019-07-21 14:00:51 +020070static umode_t
71k8temp_is_visible(const void *drvdata, enum hwmon_sensor_types type,
72 u32 attr, int channel)
73{
74 const struct k8temp_data *data = drvdata;
75
76 if ((channel & 1) && !(data->sensorsp & SEL_PLACE))
77 return 0;
78
79 if ((channel & 2) && !(data->sensorsp & SEL_CORE))
80 return 0;
81
82 return 0444;
83}
84
85static int
86k8temp_read(struct device *dev, enum hwmon_sensor_types type,
87 u32 attr, int channel, long *val)
88{
89 struct k8temp_data *data = dev_get_drvdata(dev);
90 struct pci_dev *pdev = to_pci_dev(dev->parent);
91 int core, place;
92 u32 temp;
93 u8 tmp;
94
95 core = (channel >> 1) & 1;
96 place = channel & 1;
97
98 core ^= data->swap_core_select;
99
100 mutex_lock(&data->update_lock);
101 pci_read_config_byte(pdev, REG_TEMP, &tmp);
102 tmp &= ~(SEL_PLACE | SEL_CORE);
103 if (core)
104 tmp |= SEL_CORE;
105 if (place)
106 tmp |= SEL_PLACE;
107 pci_write_config_byte(pdev, REG_TEMP, tmp);
108 pci_read_config_dword(pdev, REG_TEMP, &temp);
109 mutex_unlock(&data->update_lock);
110
111 *val = TEMP_FROM_REG(temp) + data->temp_offset;
112
113 return 0;
114}
115
116static const struct hwmon_ops k8temp_ops = {
117 .is_visible = k8temp_is_visible,
118 .read = k8temp_read,
119};
120
121static const struct hwmon_channel_info *k8temp_info[] = {
122 HWMON_CHANNEL_INFO(temp,
123 HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT, HWMON_T_INPUT),
124 NULL
125};
126
127static const struct hwmon_chip_info k8temp_chip_info = {
128 .ops = &k8temp_ops,
129 .info = k8temp_info,
130};
131
Bill Pemberton6c931ae2012-11-19 13:22:35 -0500132static int k8temp_probe(struct pci_dev *pdev,
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200133 const struct pci_device_id *id)
134{
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200135 u8 scfg;
136 u32 temp;
Andreas Herrmannbb9a35f2009-01-15 22:27:46 +0100137 u8 model, stepping;
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200138 struct k8temp_data *data;
Robert Karszniewicz3b07a702019-07-21 14:00:51 +0200139 struct device *hwmon_dev;
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200140
Guenter Roecka0d44cb2012-06-02 12:04:06 -0700141 data = devm_kzalloc(&pdev->dev, sizeof(struct k8temp_data), GFP_KERNEL);
142 if (!data)
143 return -ENOMEM;
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200144
Andreas Herrmannbb9a35f2009-01-15 22:27:46 +0100145 model = boot_cpu_data.x86_model;
Jia Zhangb3991512018-01-01 09:52:10 +0800146 stepping = boot_cpu_data.x86_stepping;
Andreas Herrmannbb9a35f2009-01-15 22:27:46 +0100147
Andreas Herrmann628b4502010-10-28 20:31:42 +0200148 /* feature available since SH-C0, exclude older revisions */
Guenter Roecka0d44cb2012-06-02 12:04:06 -0700149 if ((model == 4 && stepping == 0) ||
150 (model == 5 && stepping <= 1))
151 return -ENODEV;
Andreas Herrmannbb9a35f2009-01-15 22:27:46 +0100152
Andreas Herrmann628b4502010-10-28 20:31:42 +0200153 /*
154 * AMD NPT family 0fh, i.e. RevF and RevG:
155 * meaning of SEL_CORE bit is inverted
156 */
157 if (model >= 0x40) {
158 data->swap_core_select = 1;
Guenter Roeckb55f3752013-01-10 10:01:24 -0800159 dev_warn(&pdev->dev,
160 "Temperature readouts might be wrong - check erratum #141\n");
Andreas Herrmann628b4502010-10-28 20:31:42 +0200161 }
162
163 /*
164 * RevG desktop CPUs (i.e. no socket S1G1 or ASB1 parts) need
165 * additional offset, otherwise reported temperature is below
166 * ambient temperature
167 */
168 if (is_rev_g_desktop(model))
169 data->temp_offset = 21000;
170
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200171 pci_read_config_byte(pdev, REG_TEMP, &scfg);
Frans Meulenbroeks93092a62012-01-10 23:01:39 +0100172 scfg &= ~(SEL_PLACE | SEL_CORE); /* Select sensor 0, core0 */
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200173 pci_write_config_byte(pdev, REG_TEMP, scfg);
174 pci_read_config_byte(pdev, REG_TEMP, &scfg);
175
176 if (scfg & (SEL_PLACE | SEL_CORE)) {
177 dev_err(&pdev->dev, "Configuration bit(s) stuck at 1!\n");
Guenter Roecka0d44cb2012-06-02 12:04:06 -0700178 return -ENODEV;
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200179 }
180
181 scfg |= (SEL_PLACE | SEL_CORE);
182 pci_write_config_byte(pdev, REG_TEMP, scfg);
183
184 /* now we know if we can change core and/or sensor */
185 pci_read_config_byte(pdev, REG_TEMP, &data->sensorsp);
186
187 if (data->sensorsp & SEL_PLACE) {
188 scfg &= ~SEL_CORE; /* Select sensor 1, core0 */
189 pci_write_config_byte(pdev, REG_TEMP, scfg);
190 pci_read_config_dword(pdev, REG_TEMP, &temp);
191 scfg |= SEL_CORE; /* prepare for next selection */
Frans Meulenbroeks93092a62012-01-10 23:01:39 +0100192 if (!((temp >> 16) & 0xff)) /* if temp is 0 -49C is unlikely */
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200193 data->sensorsp &= ~SEL_PLACE;
194 }
195
196 if (data->sensorsp & SEL_CORE) {
197 scfg &= ~SEL_PLACE; /* Select sensor 0, core1 */
198 pci_write_config_byte(pdev, REG_TEMP, scfg);
199 pci_read_config_dword(pdev, REG_TEMP, &temp);
Frans Meulenbroeks93092a62012-01-10 23:01:39 +0100200 if (!((temp >> 16) & 0xff)) /* if temp is 0 -49C is unlikely */
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200201 data->sensorsp &= ~SEL_CORE;
202 }
203
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200204 mutex_init(&data->update_lock);
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200205
Robert Karszniewicz3b07a702019-07-21 14:00:51 +0200206 hwmon_dev = devm_hwmon_device_register_with_info(&pdev->dev,
207 "k8temp",
208 data,
209 &k8temp_chip_info,
210 NULL);
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200211
Robert Karszniewicz3b07a702019-07-21 14:00:51 +0200212 return PTR_ERR_OR_ZERO(hwmon_dev);
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200213}
214
215static struct pci_driver k8temp_driver = {
216 .name = "k8temp",
217 .id_table = k8temp_ids,
218 .probe = k8temp_probe,
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200219};
220
Axel Linf71f5a52012-04-02 21:25:46 -0400221module_pci_driver(k8temp_driver);
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200222
Jean Delvare7188cc62006-12-12 18:18:30 +0100223MODULE_AUTHOR("Rudolf Marek <r.marek@assembler.cz>");
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200224MODULE_DESCRIPTION("AMD K8 core temperature monitor");
225MODULE_LICENSE("GPL");