blob: 8ac89d0781ccc68336eff6f13270063ed69a3ee9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Guenter Roeck27b9de32012-01-15 11:07:26 -08002 * w83627hf.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (c) 1998 - 2003 Frodo Looijaard <frodol@dds.nl>,
5 * Philip Edelbrock <phil@netroedge.com>,
6 * and Mark Studebaker <mdsxyz123@yahoo.com>
7 * Ported to 2.6 by Bernhard C. Schrenk <clemy@clemy.org>
Jean Delvare7c81c602014-01-29 20:40:08 +01008 * Copyright (c) 2007 - 1012 Jean Delvare <jdelvare@suse.de>
Guenter Roeck27b9de32012-01-15 11:07:26 -08009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
Guenter Roeck27b9de32012-01-15 11:07:26 -080026 * Supports following chips:
27 *
Jean Delvare4101ece2012-11-05 21:54:40 +010028 * Chip #vin #fanin #pwm #temp wchipid vendid i2c ISA
Guenter Roeck27b9de32012-01-15 11:07:26 -080029 * w83627hf 9 3 2 3 0x20 0x5ca3 no yes(LPC)
30 * w83627thf 7 3 3 3 0x90 0x5ca3 no yes(LPC)
31 * w83637hf 7 3 3 3 0x80 0x5ca3 no yes(LPC)
32 * w83687thf 7 3 3 3 0x90 0x5ca3 no yes(LPC)
33 * w83697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC)
34 *
35 * For other winbond chips, and for i2c support in the above chips,
36 * use w83781d.c.
37 *
38 * Note: automatic ("cruise") fan control for 697, 637 & 627thf not
39 * supported yet.
40 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Joe Perches18de0302010-10-20 06:51:55 +000042#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/init.h>
46#include <linux/slab.h>
47#include <linux/jiffies.h>
Jean Delvare787c72b2007-05-08 17:22:00 +020048#include <linux/platform_device.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040049#include <linux/hwmon.h>
Jim Cromie07584c72007-10-12 21:08:00 +020050#include <linux/hwmon-sysfs.h>
Jean Delvare303760b2005-07-31 21:52:01 +020051#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040052#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010053#include <linux/mutex.h>
Jean Delvared27c37c2007-05-08 17:21:59 +020054#include <linux/ioport.h>
Jean Delvareb9acb642009-01-07 16:37:35 +010055#include <linux/acpi.h>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020056#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include "lm75.h"
58
Jean Delvare787c72b2007-05-08 17:22:00 +020059static struct platform_device *pdev;
Jean Delvared27c37c2007-05-08 17:21:59 +020060
61#define DRVNAME "w83627hf"
62enum chips { w83627hf, w83627thf, w83697hf, w83637hf, w83687thf };
63
Jean Delvareb72656d2009-12-09 20:35:49 +010064struct w83627hf_sio_data {
65 enum chips type;
66 int sioaddr;
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static u8 force_i2c = 0x1f;
70module_param(force_i2c, byte, 0);
71MODULE_PARM_DESC(force_i2c,
72 "Initialize the i2c address of the sensors");
73
Rusty Russell90ab5ee2012-01-13 09:32:20 +103074static bool init = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075module_param(init, bool, 0);
76MODULE_PARM_DESC(init, "Set to zero to bypass chip initialization");
77
Jean Delvare67b671b2007-12-06 23:13:42 +010078static unsigned short force_id;
79module_param(force_id, ushort, 0);
80MODULE_PARM_DESC(force_id, "Override the detected device ID");
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* modified from kernel/include/traps.c */
Guenter Roeck27b9de32012-01-15 11:07:26 -080083#define DEV 0x07 /* Register: Logical device select */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* logical device numbers for superio_select (below) */
86#define W83627HF_LD_FDC 0x00
87#define W83627HF_LD_PRT 0x01
88#define W83627HF_LD_UART1 0x02
89#define W83627HF_LD_UART2 0x03
90#define W83627HF_LD_KBC 0x05
91#define W83627HF_LD_CIR 0x06 /* w83627hf only */
92#define W83627HF_LD_GAME 0x07
93#define W83627HF_LD_MIDI 0x07
94#define W83627HF_LD_GPIO1 0x07
95#define W83627HF_LD_GPIO5 0x07 /* w83627thf only */
96#define W83627HF_LD_GPIO2 0x08
97#define W83627HF_LD_GPIO3 0x09
98#define W83627HF_LD_GPIO4 0x09 /* w83627thf only */
99#define W83627HF_LD_ACPI 0x0a
100#define W83627HF_LD_HWM 0x0b
101
Guenter Roeck27b9de32012-01-15 11:07:26 -0800102#define DEVID 0x20 /* Register: Device ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104#define W83627THF_GPIO5_EN 0x30 /* w83627thf only */
105#define W83627THF_GPIO5_IOSR 0xf3 /* w83627thf only */
106#define W83627THF_GPIO5_DR 0xf4 /* w83627thf only */
107
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100108#define W83687THF_VID_EN 0x29 /* w83687thf only */
109#define W83687THF_VID_CFG 0xF0 /* w83687thf only */
110#define W83687THF_VID_DATA 0xF1 /* w83687thf only */
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static inline void
Jean Delvareb72656d2009-12-09 20:35:49 +0100113superio_outb(struct w83627hf_sio_data *sio, int reg, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Jean Delvareb72656d2009-12-09 20:35:49 +0100115 outb(reg, sio->sioaddr);
116 outb(val, sio->sioaddr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static inline int
Jean Delvareb72656d2009-12-09 20:35:49 +0100120superio_inb(struct w83627hf_sio_data *sio, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Jean Delvareb72656d2009-12-09 20:35:49 +0100122 outb(reg, sio->sioaddr);
123 return inb(sio->sioaddr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126static inline void
Jean Delvareb72656d2009-12-09 20:35:49 +0100127superio_select(struct w83627hf_sio_data *sio, int ld)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Jean Delvareb72656d2009-12-09 20:35:49 +0100129 outb(DEV, sio->sioaddr);
130 outb(ld, sio->sioaddr + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133static inline void
Jean Delvareb72656d2009-12-09 20:35:49 +0100134superio_enter(struct w83627hf_sio_data *sio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jean Delvareb72656d2009-12-09 20:35:49 +0100136 outb(0x87, sio->sioaddr);
137 outb(0x87, sio->sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140static inline void
Jean Delvareb72656d2009-12-09 20:35:49 +0100141superio_exit(struct w83627hf_sio_data *sio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jean Delvareb72656d2009-12-09 20:35:49 +0100143 outb(0xAA, sio->sioaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146#define W627_DEVID 0x52
147#define W627THF_DEVID 0x82
148#define W697_DEVID 0x60
149#define W637_DEVID 0x70
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100150#define W687THF_DEVID 0x85
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#define WINB_ACT_REG 0x30
152#define WINB_BASE_REG 0x60
153/* Constants specified below */
154
Petr Vandrovecada0c2f2005-10-07 23:11:03 +0200155/* Alignment of the base address */
156#define WINB_ALIGNMENT ~7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Petr Vandrovecada0c2f2005-10-07 23:11:03 +0200158/* Offset & size of I/O region we are interested in */
159#define WINB_REGION_OFFSET 5
160#define WINB_REGION_SIZE 2
161
Jean Delvare787c72b2007-05-08 17:22:00 +0200162/* Where are the sensors address/data registers relative to the region offset */
163#define W83781D_ADDR_REG_OFFSET 0
164#define W83781D_DATA_REG_OFFSET 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/* The W83781D registers */
167/* The W83782D registers for nr=7,8 are in bank 5 */
168#define W83781D_REG_IN_MAX(nr) ((nr < 7) ? (0x2b + (nr) * 2) : \
169 (0x554 + (((nr) - 7) * 2)))
170#define W83781D_REG_IN_MIN(nr) ((nr < 7) ? (0x2c + (nr) * 2) : \
171 (0x555 + (((nr) - 7) * 2)))
172#define W83781D_REG_IN(nr) ((nr < 7) ? (0x20 + (nr)) : \
173 (0x550 + (nr) - 7))
174
Jim Cromie2ca2fcd2007-10-14 17:20:50 -0600175/* nr:0-2 for fans:1-3 */
176#define W83627HF_REG_FAN_MIN(nr) (0x3b + (nr))
177#define W83627HF_REG_FAN(nr) (0x28 + (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Jim Cromiedf48ed82007-10-14 17:10:52 -0600179#define W83627HF_REG_TEMP2_CONFIG 0x152
180#define W83627HF_REG_TEMP3_CONFIG 0x252
181/* these are zero-based, unlike config constants above */
182static const u16 w83627hf_reg_temp[] = { 0x27, 0x150, 0x250 };
183static const u16 w83627hf_reg_temp_hyst[] = { 0x3A, 0x153, 0x253 };
184static const u16 w83627hf_reg_temp_over[] = { 0x39, 0x155, 0x255 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186#define W83781D_REG_BANK 0x4E
187
188#define W83781D_REG_CONFIG 0x40
Yuan Mu4a1c44472005-11-07 22:19:04 +0100189#define W83781D_REG_ALARM1 0x459
190#define W83781D_REG_ALARM2 0x45A
191#define W83781D_REG_ALARM3 0x45B
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#define W83781D_REG_BEEP_CONFIG 0x4D
194#define W83781D_REG_BEEP_INTS1 0x56
195#define W83781D_REG_BEEP_INTS2 0x57
196#define W83781D_REG_BEEP_INTS3 0x453
197
198#define W83781D_REG_VID_FANDIV 0x47
199
200#define W83781D_REG_CHIPID 0x49
201#define W83781D_REG_WCHIPID 0x58
202#define W83781D_REG_CHIPMAN 0x4F
203#define W83781D_REG_PIN 0x4B
204
205#define W83781D_REG_VBAT 0x5D
206
207#define W83627HF_REG_PWM1 0x5A
208#define W83627HF_REG_PWM2 0x5B
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Dominik Geyera95a5ed2008-08-06 22:41:04 +0200210static const u8 W83627THF_REG_PWM_ENABLE[] = {
211 0x04, /* FAN 1 mode */
212 0x04, /* FAN 2 mode */
213 0x12, /* FAN AUX mode */
214};
215static const u8 W83627THF_PWM_ENABLE_SHIFT[] = { 2, 4, 1 };
216
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100217#define W83627THF_REG_PWM1 0x01 /* 697HF/637HF/687THF too */
218#define W83627THF_REG_PWM2 0x03 /* 697HF/637HF/687THF too */
219#define W83627THF_REG_PWM3 0x11 /* 637HF/687THF too */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100221#define W83627THF_REG_VRM_OVT_CFG 0x18 /* 637HF/687THF too */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223static const u8 regpwm_627hf[] = { W83627HF_REG_PWM1, W83627HF_REG_PWM2 };
224static const u8 regpwm[] = { W83627THF_REG_PWM1, W83627THF_REG_PWM2,
225 W83627THF_REG_PWM3 };
226#define W836X7HF_REG_PWM(type, nr) (((type) == w83627hf) ? \
Jim Cromie07584c72007-10-12 21:08:00 +0200227 regpwm_627hf[nr] : regpwm[nr])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400229#define W83627HF_REG_PWM_FREQ 0x5C /* Only for the 627HF */
230
231#define W83637HF_REG_PWM_FREQ1 0x00 /* 697HF/687THF too */
232#define W83637HF_REG_PWM_FREQ2 0x02 /* 697HF/687THF too */
233#define W83637HF_REG_PWM_FREQ3 0x10 /* 687THF too */
234
235static const u8 W83637HF_REG_PWM_FREQ[] = { W83637HF_REG_PWM_FREQ1,
236 W83637HF_REG_PWM_FREQ2,
237 W83637HF_REG_PWM_FREQ3 };
238
239#define W83627HF_BASE_PWM_FREQ 46870
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#define W83781D_REG_I2C_ADDR 0x48
242#define W83781D_REG_I2C_SUBADDR 0x4A
243
244/* Sensor selection */
245#define W83781D_REG_SCFG1 0x5D
246static const u8 BIT_SCFG1[] = { 0x02, 0x04, 0x08 };
247#define W83781D_REG_SCFG2 0x59
248static const u8 BIT_SCFG2[] = { 0x10, 0x20, 0x40 };
249#define W83781D_DEFAULT_BETA 3435
250
Guenter Roeck27b9de32012-01-15 11:07:26 -0800251/*
252 * Conversions. Limit checking is only done on the TO_REG
253 * variants. Note that you should be a bit careful with which arguments
254 * these macros are called: arguments may be evaluated more than once.
255 * Fixing this is just not worth it.
256 */
Guenter Roeck2a844c12013-01-09 08:09:34 -0800257#define IN_TO_REG(val) (clamp_val((((val) + 8) / 16), 0, 255))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define IN_FROM_REG(val) ((val) * 16)
259
260static inline u8 FAN_TO_REG(long rpm, int div)
261{
262 if (rpm == 0)
263 return 255;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800264 rpm = clamp_val(rpm, 1, 1000000);
265 return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
268#define TEMP_MIN (-128000)
269#define TEMP_MAX ( 127000)
270
Guenter Roeck27b9de32012-01-15 11:07:26 -0800271/*
272 * TEMP: 0.001C/bit (-128C to +127C)
273 * REG: 1C/bit, two's complement
274 */
Christian Hohnstaedt5bfedac2007-08-16 11:40:10 +0200275static u8 TEMP_TO_REG(long temp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Guenter Roeck2a844c12013-01-09 08:09:34 -0800277 int ntemp = clamp_val(temp, TEMP_MIN, TEMP_MAX);
278 ntemp += (ntemp < 0 ? -500 : 500);
279 return (u8)(ntemp / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int TEMP_FROM_REG(u8 reg)
283{
284 return (s8)reg * 1000;
285}
286
287#define FAN_FROM_REG(val,div) ((val)==0?-1:(val)==255?0:1350000/((val)*(div)))
288
Guenter Roeck2a844c12013-01-09 08:09:34 -0800289#define PWM_TO_REG(val) (clamp_val((val), 0, 255))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400291static inline unsigned long pwm_freq_from_reg_627hf(u8 reg)
292{
293 unsigned long freq;
294 freq = W83627HF_BASE_PWM_FREQ >> reg;
295 return freq;
296}
297static inline u8 pwm_freq_to_reg_627hf(unsigned long val)
298{
299 u8 i;
Guenter Roeck27b9de32012-01-15 11:07:26 -0800300 /*
301 * Only 5 dividers (1 2 4 8 16)
302 * Search for the nearest available frequency
303 */
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400304 for (i = 0; i < 4; i++) {
305 if (val > (((W83627HF_BASE_PWM_FREQ >> i) +
306 (W83627HF_BASE_PWM_FREQ >> (i+1))) / 2))
307 break;
308 }
309 return i;
310}
311
312static inline unsigned long pwm_freq_from_reg(u8 reg)
313{
314 /* Clock bit 8 -> 180 kHz or 24 MHz */
315 unsigned long clock = (reg & 0x80) ? 180000UL : 24000000UL;
316
317 reg &= 0x7f;
318 /* This should not happen but anyway... */
319 if (reg == 0)
320 reg++;
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100321 return clock / (reg << 8);
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400322}
323static inline u8 pwm_freq_to_reg(unsigned long val)
324{
325 /* Minimum divider value is 0x01 and maximum is 0x7F */
326 if (val >= 93750) /* The highest we can do */
327 return 0x01;
328 if (val >= 720) /* Use 24 MHz clock */
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100329 return 24000000UL / (val << 8);
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400330 if (val < 6) /* The lowest we can do */
331 return 0xFF;
332 else /* Use 180 kHz clock */
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100333 return 0x80 | (180000UL / (val << 8));
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400334}
335
Jean Delvare1c138102008-01-03 23:04:55 +0100336#define BEEP_MASK_FROM_REG(val) ((val) & 0xff7fff)
337#define BEEP_MASK_TO_REG(val) ((val) & 0xff7fff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339#define DIV_FROM_REG(val) (1 << (val))
340
341static inline u8 DIV_TO_REG(long val)
342{
343 int i;
Guenter Roeck2a844c12013-01-09 08:09:34 -0800344 val = clamp_val(val, 1, 128) >> 1;
Grant Coadyabc01922005-05-12 13:41:51 +1000345 for (i = 0; i < 7; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (val == 0)
347 break;
348 val >>= 1;
349 }
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100350 return (u8)i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Guenter Roeck27b9de32012-01-15 11:07:26 -0800353/*
354 * For each registered chip, we need to keep some data in memory.
355 * The structure is dynamically allocated.
356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357struct w83627hf_data {
Jean Delvare787c72b2007-05-08 17:22:00 +0200358 unsigned short addr;
359 const char *name;
Tony Jones1beeffe2007-08-20 13:46:20 -0700360 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100361 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 enum chips type;
363
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100364 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 char valid; /* !=0 if following fields are valid */
366 unsigned long last_updated; /* In jiffies */
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 u8 in[9]; /* Register value */
369 u8 in_max[9]; /* Register value */
370 u8 in_min[9]; /* Register value */
371 u8 fan[3]; /* Register value */
372 u8 fan_min[3]; /* Register value */
Jim Cromiedf48ed82007-10-14 17:10:52 -0600373 u16 temp[3]; /* Register value */
374 u16 temp_max[3]; /* Register value */
375 u16 temp_max_hyst[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 u8 fan_div[3]; /* Register encoding, shifted right */
377 u8 vid; /* Register encoding, combined */
378 u32 alarms; /* Register encoding, combined */
379 u32 beep_mask; /* Register encoding, combined */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 u8 pwm[3]; /* Register value */
Dominik Geyera95a5ed2008-08-06 22:41:04 +0200381 u8 pwm_enable[3]; /* 1 = manual
Guenter Roeck27b9de32012-01-15 11:07:26 -0800382 * 2 = thermal cruise (also called SmartFan I)
383 * 3 = fan speed cruise
384 */
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -0400385 u8 pwm_freq[3]; /* Register value */
Jean Delvareb26f9332007-08-16 14:30:01 +0200386 u16 sens[3]; /* 1 = pentium diode; 2 = 3904 diode;
Guenter Roeck27b9de32012-01-15 11:07:26 -0800387 * 4 = thermistor
388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 u8 vrm;
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100390 u8 vrm_ovt; /* Register value, 627THF/637HF/687THF only */
Jean Delvare275b7d62012-12-19 22:16:59 +0100391
392#ifdef CONFIG_PM
393 /* Remember extra register values over suspend/resume */
394 u8 scfg1;
395 u8 scfg2;
396#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397};
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Jean Delvare787c72b2007-05-08 17:22:00 +0200400static int w83627hf_probe(struct platform_device *pdev);
Bill Pemberton281dfd02012-11-19 13:25:51 -0500401static int w83627hf_remove(struct platform_device *pdev);
Jean Delvare787c72b2007-05-08 17:22:00 +0200402
403static int w83627hf_read_value(struct w83627hf_data *data, u16 reg);
404static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value);
Jean Delvarec09c5182007-10-12 21:53:07 +0200405static void w83627hf_update_fan_div(struct w83627hf_data *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406static struct w83627hf_data *w83627hf_update_device(struct device *dev);
Jean Delvare787c72b2007-05-08 17:22:00 +0200407static void w83627hf_init_device(struct platform_device *pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Jean Delvare275b7d62012-12-19 22:16:59 +0100409#ifdef CONFIG_PM
410static int w83627hf_suspend(struct device *dev)
411{
412 struct w83627hf_data *data = w83627hf_update_device(dev);
413
414 mutex_lock(&data->update_lock);
415 data->scfg1 = w83627hf_read_value(data, W83781D_REG_SCFG1);
416 data->scfg2 = w83627hf_read_value(data, W83781D_REG_SCFG2);
417 mutex_unlock(&data->update_lock);
418
419 return 0;
420}
421
422static int w83627hf_resume(struct device *dev)
423{
424 struct w83627hf_data *data = dev_get_drvdata(dev);
425 int i, num_temps = (data->type == w83697hf) ? 2 : 3;
426
427 /* Restore limits */
428 mutex_lock(&data->update_lock);
429 for (i = 0; i <= 8; i++) {
430 /* skip missing sensors */
431 if (((data->type == w83697hf) && (i == 1)) ||
432 ((data->type != w83627hf && data->type != w83697hf)
433 && (i == 5 || i == 6)))
434 continue;
435 w83627hf_write_value(data, W83781D_REG_IN_MAX(i),
436 data->in_max[i]);
437 w83627hf_write_value(data, W83781D_REG_IN_MIN(i),
438 data->in_min[i]);
439 }
440 for (i = 0; i <= 2; i++)
441 w83627hf_write_value(data, W83627HF_REG_FAN_MIN(i),
442 data->fan_min[i]);
443 for (i = 0; i < num_temps; i++) {
444 w83627hf_write_value(data, w83627hf_reg_temp_over[i],
445 data->temp_max[i]);
446 w83627hf_write_value(data, w83627hf_reg_temp_hyst[i],
447 data->temp_max_hyst[i]);
448 }
449
450 /* Fixup BIOS bugs */
451 if (data->type == w83627thf || data->type == w83637hf ||
452 data->type == w83687thf)
453 w83627hf_write_value(data, W83627THF_REG_VRM_OVT_CFG,
454 data->vrm_ovt);
455 w83627hf_write_value(data, W83781D_REG_SCFG1, data->scfg1);
456 w83627hf_write_value(data, W83781D_REG_SCFG2, data->scfg2);
457
458 /* Force re-reading all values */
459 data->valid = 0;
460 mutex_unlock(&data->update_lock);
461
462 return 0;
463}
464
465static const struct dev_pm_ops w83627hf_dev_pm_ops = {
466 .suspend = w83627hf_suspend,
467 .resume = w83627hf_resume,
468};
469
470#define W83627HF_DEV_PM_OPS (&w83627hf_dev_pm_ops)
471#else
472#define W83627HF_DEV_PM_OPS NULL
473#endif /* CONFIG_PM */
474
Jean Delvare787c72b2007-05-08 17:22:00 +0200475static struct platform_driver w83627hf_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100476 .driver = {
Jean Delvared27c37c2007-05-08 17:21:59 +0200477 .name = DRVNAME,
Jean Delvare275b7d62012-12-19 22:16:59 +0100478 .pm = W83627HF_DEV_PM_OPS,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100479 },
Jean Delvare787c72b2007-05-08 17:22:00 +0200480 .probe = w83627hf_probe,
Bill Pemberton9e5e9b72012-11-19 13:21:20 -0500481 .remove = w83627hf_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482};
483
Jim Cromie07584c72007-10-12 21:08:00 +0200484static ssize_t
485show_in_input(struct device *dev, struct device_attribute *devattr, char *buf)
486{
487 int nr = to_sensor_dev_attr(devattr)->index;
488 struct w83627hf_data *data = w83627hf_update_device(dev);
489 return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
Jim Cromie07584c72007-10-12 21:08:00 +0200491static ssize_t
492show_in_min(struct device *dev, struct device_attribute *devattr, char *buf)
493{
494 int nr = to_sensor_dev_attr(devattr)->index;
495 struct w83627hf_data *data = w83627hf_update_device(dev);
496 return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
Jim Cromie07584c72007-10-12 21:08:00 +0200498static ssize_t
499show_in_max(struct device *dev, struct device_attribute *devattr, char *buf)
500{
501 int nr = to_sensor_dev_attr(devattr)->index;
502 struct w83627hf_data *data = w83627hf_update_device(dev);
503 return sprintf(buf, "%ld\n", (long)IN_FROM_REG(data->in_max[nr]));
504}
505static ssize_t
506store_in_min(struct device *dev, struct device_attribute *devattr,
507 const char *buf, size_t count)
508{
509 int nr = to_sensor_dev_attr(devattr)->index;
510 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800511 long val;
512 int err;
513
514 err = kstrtol(buf, 10, &val);
515 if (err)
516 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Jim Cromie07584c72007-10-12 21:08:00 +0200518 mutex_lock(&data->update_lock);
519 data->in_min[nr] = IN_TO_REG(val);
520 w83627hf_write_value(data, W83781D_REG_IN_MIN(nr), data->in_min[nr]);
521 mutex_unlock(&data->update_lock);
522 return count;
523}
524static ssize_t
525store_in_max(struct device *dev, struct device_attribute *devattr,
526 const char *buf, size_t count)
527{
528 int nr = to_sensor_dev_attr(devattr)->index;
529 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800530 long val;
531 int err;
532
533 err = kstrtol(buf, 10, &val);
534 if (err)
535 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Jim Cromie07584c72007-10-12 21:08:00 +0200537 mutex_lock(&data->update_lock);
538 data->in_max[nr] = IN_TO_REG(val);
539 w83627hf_write_value(data, W83781D_REG_IN_MAX(nr), data->in_max[nr]);
540 mutex_unlock(&data->update_lock);
541 return count;
542}
543#define sysfs_vin_decl(offset) \
544static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
545 show_in_input, NULL, offset); \
546static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO|S_IWUSR, \
547 show_in_min, store_in_min, offset); \
548static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO|S_IWUSR, \
549 show_in_max, store_in_max, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Jim Cromie07584c72007-10-12 21:08:00 +0200551sysfs_vin_decl(1);
552sysfs_vin_decl(2);
553sysfs_vin_decl(3);
554sysfs_vin_decl(4);
555sysfs_vin_decl(5);
556sysfs_vin_decl(6);
557sysfs_vin_decl(7);
558sysfs_vin_decl(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560/* use a different set of functions for in0 */
561static ssize_t show_in_0(struct w83627hf_data *data, char *buf, u8 reg)
562{
563 long in0;
564
565 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100566 (w83627thf == data->type || w83637hf == data->type
567 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* use VRM9 calculation */
570 in0 = (long)((reg * 488 + 70000 + 50) / 100);
571 else
572 /* use VRM8 (standard) calculation */
573 in0 = (long)IN_FROM_REG(reg);
574
575 return sprintf(buf,"%ld\n", in0);
576}
577
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100578static ssize_t in0_input_show(struct device *dev,
579 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
581 struct w83627hf_data *data = w83627hf_update_device(dev);
582 return show_in_0(data, buf, data->in[0]);
583}
584
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100585static ssize_t in0_min_show(struct device *dev, struct device_attribute *attr,
586 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 struct w83627hf_data *data = w83627hf_update_device(dev);
589 return show_in_0(data, buf, data->in_min[0]);
590}
591
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100592static ssize_t in0_max_show(struct device *dev, struct device_attribute *attr,
593 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct w83627hf_data *data = w83627hf_update_device(dev);
596 return show_in_0(data, buf, data->in_max[0]);
597}
598
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100599static ssize_t in0_min_store(struct device *dev,
600 struct device_attribute *attr, const char *buf,
601 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Jean Delvare787c72b2007-05-08 17:22:00 +0200603 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800604 unsigned long val;
605 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Guenter Roeck27b9de32012-01-15 11:07:26 -0800607 err = kstrtoul(buf, 10, &val);
608 if (err)
609 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100611 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100614 (w83627thf == data->type || w83637hf == data->type
615 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* use VRM9 calculation */
Yuan Mu2723ab92005-11-23 15:44:21 -0800618 data->in_min[0] =
Guenter Roeck2a844c12013-01-09 08:09:34 -0800619 clamp_val(((val * 100) - 70000 + 244) / 488, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 else
621 /* use VRM8 (standard) calculation */
622 data->in_min[0] = IN_TO_REG(val);
623
Jean Delvare787c72b2007-05-08 17:22:00 +0200624 w83627hf_write_value(data, W83781D_REG_IN_MIN(0), data->in_min[0]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100625 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return count;
627}
628
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100629static ssize_t in0_max_store(struct device *dev,
630 struct device_attribute *attr, const char *buf,
631 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Jean Delvare787c72b2007-05-08 17:22:00 +0200633 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800634 unsigned long val;
635 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Guenter Roeck27b9de32012-01-15 11:07:26 -0800637 err = kstrtoul(buf, 10, &val);
638 if (err)
639 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100641 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if ((data->vrm_ovt & 0x01) &&
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100644 (w83627thf == data->type || w83637hf == data->type
645 || w83687thf == data->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /* use VRM9 calculation */
Yuan Mu2723ab92005-11-23 15:44:21 -0800648 data->in_max[0] =
Guenter Roeck2a844c12013-01-09 08:09:34 -0800649 clamp_val(((val * 100) - 70000 + 244) / 488, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 else
651 /* use VRM8 (standard) calculation */
652 data->in_max[0] = IN_TO_REG(val);
653
Jean Delvare787c72b2007-05-08 17:22:00 +0200654 w83627hf_write_value(data, W83781D_REG_IN_MAX(0), data->in_max[0]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100655 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return count;
657}
658
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100659static DEVICE_ATTR_RO(in0_input);
660static DEVICE_ATTR_RW(in0_min);
661static DEVICE_ATTR_RW(in0_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +0200664show_fan_input(struct device *dev, struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Jim Cromie07584c72007-10-12 21:08:00 +0200666 int nr = to_sensor_dev_attr(devattr)->index;
667 struct w83627hf_data *data = w83627hf_update_device(dev);
668 return sprintf(buf, "%ld\n", FAN_FROM_REG(data->fan[nr],
669 (long)DIV_FROM_REG(data->fan_div[nr])));
670}
671static ssize_t
672show_fan_min(struct device *dev, struct device_attribute *devattr, char *buf)
673{
674 int nr = to_sensor_dev_attr(devattr)->index;
675 struct w83627hf_data *data = w83627hf_update_device(dev);
676 return sprintf(buf, "%ld\n", FAN_FROM_REG(data->fan_min[nr],
677 (long)DIV_FROM_REG(data->fan_div[nr])));
678}
679static ssize_t
680store_fan_min(struct device *dev, struct device_attribute *devattr,
681 const char *buf, size_t count)
682{
683 int nr = to_sensor_dev_attr(devattr)->index;
Jean Delvare787c72b2007-05-08 17:22:00 +0200684 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800685 unsigned long val;
686 int err;
687
688 err = kstrtoul(buf, 10, &val);
689 if (err)
690 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100692 mutex_lock(&data->update_lock);
Jim Cromie07584c72007-10-12 21:08:00 +0200693 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
Jim Cromie2ca2fcd2007-10-14 17:20:50 -0600694 w83627hf_write_value(data, W83627HF_REG_FAN_MIN(nr),
Jim Cromie07584c72007-10-12 21:08:00 +0200695 data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100697 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return count;
699}
Jim Cromie07584c72007-10-12 21:08:00 +0200700#define sysfs_fan_decl(offset) \
701static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
702 show_fan_input, NULL, offset - 1); \
703static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
704 show_fan_min, store_fan_min, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Jim Cromie07584c72007-10-12 21:08:00 +0200706sysfs_fan_decl(1);
707sysfs_fan_decl(2);
708sysfs_fan_decl(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Jim Cromie07584c72007-10-12 21:08:00 +0200710static ssize_t
711show_temp(struct device *dev, struct device_attribute *devattr, char *buf)
712{
713 int nr = to_sensor_dev_attr(devattr)->index;
714 struct w83627hf_data *data = w83627hf_update_device(dev);
Jim Cromiedf48ed82007-10-14 17:10:52 -0600715
716 u16 tmp = data->temp[nr];
717 return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
718 : (long) TEMP_FROM_REG(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jim Cromie07584c72007-10-12 21:08:00 +0200721static ssize_t
722show_temp_max(struct device *dev, struct device_attribute *devattr,
723 char *buf)
724{
725 int nr = to_sensor_dev_attr(devattr)->index;
726 struct w83627hf_data *data = w83627hf_update_device(dev);
Jim Cromiedf48ed82007-10-14 17:10:52 -0600727
728 u16 tmp = data->temp_max[nr];
729 return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
730 : (long) TEMP_FROM_REG(tmp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Jim Cromie07584c72007-10-12 21:08:00 +0200733static ssize_t
734show_temp_max_hyst(struct device *dev, struct device_attribute *devattr,
735 char *buf)
736{
737 int nr = to_sensor_dev_attr(devattr)->index;
738 struct w83627hf_data *data = w83627hf_update_device(dev);
Jim Cromiedf48ed82007-10-14 17:10:52 -0600739
740 u16 tmp = data->temp_max_hyst[nr];
741 return sprintf(buf, "%ld\n", (nr) ? (long) LM75_TEMP_FROM_REG(tmp)
742 : (long) TEMP_FROM_REG(tmp));
Jim Cromie07584c72007-10-12 21:08:00 +0200743}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jim Cromie07584c72007-10-12 21:08:00 +0200745static ssize_t
746store_temp_max(struct device *dev, struct device_attribute *devattr,
747 const char *buf, size_t count)
748{
749 int nr = to_sensor_dev_attr(devattr)->index;
750 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800751 u16 tmp;
752 long val;
753 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Guenter Roeck27b9de32012-01-15 11:07:26 -0800755 err = kstrtol(buf, 10, &val);
756 if (err)
757 return err;
758
759 tmp = (nr) ? LM75_TEMP_TO_REG(val) : TEMP_TO_REG(val);
Jim Cromie07584c72007-10-12 21:08:00 +0200760 mutex_lock(&data->update_lock);
Jim Cromiedf48ed82007-10-14 17:10:52 -0600761 data->temp_max[nr] = tmp;
762 w83627hf_write_value(data, w83627hf_reg_temp_over[nr], tmp);
Jim Cromie07584c72007-10-12 21:08:00 +0200763 mutex_unlock(&data->update_lock);
764 return count;
765}
766
767static ssize_t
768store_temp_max_hyst(struct device *dev, struct device_attribute *devattr,
769 const char *buf, size_t count)
770{
771 int nr = to_sensor_dev_attr(devattr)->index;
772 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800773 u16 tmp;
774 long val;
775 int err;
Jim Cromie07584c72007-10-12 21:08:00 +0200776
Guenter Roeck27b9de32012-01-15 11:07:26 -0800777 err = kstrtol(buf, 10, &val);
778 if (err)
779 return err;
780
781 tmp = (nr) ? LM75_TEMP_TO_REG(val) : TEMP_TO_REG(val);
Jim Cromie07584c72007-10-12 21:08:00 +0200782 mutex_lock(&data->update_lock);
Jim Cromiedf48ed82007-10-14 17:10:52 -0600783 data->temp_max_hyst[nr] = tmp;
784 w83627hf_write_value(data, w83627hf_reg_temp_hyst[nr], tmp);
Jim Cromie07584c72007-10-12 21:08:00 +0200785 mutex_unlock(&data->update_lock);
786 return count;
787}
788
789#define sysfs_temp_decl(offset) \
790static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
Jim Cromiedf48ed82007-10-14 17:10:52 -0600791 show_temp, NULL, offset - 1); \
Jim Cromie07584c72007-10-12 21:08:00 +0200792static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO|S_IWUSR, \
Jim Cromiedf48ed82007-10-14 17:10:52 -0600793 show_temp_max, store_temp_max, offset - 1); \
Jim Cromie07584c72007-10-12 21:08:00 +0200794static SENSOR_DEVICE_ATTR(temp##offset##_max_hyst, S_IRUGO|S_IWUSR, \
Jim Cromiedf48ed82007-10-14 17:10:52 -0600795 show_temp_max_hyst, store_temp_max_hyst, offset - 1);
Jim Cromie07584c72007-10-12 21:08:00 +0200796
797sysfs_temp_decl(1);
798sysfs_temp_decl(2);
799sysfs_temp_decl(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100802cpu0_vid_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 struct w83627hf_data *data = w83627hf_update_device(dev);
805 return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm));
806}
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100807static DEVICE_ATTR_RO(cpu0_vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100810vrm_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Jean Delvare90d66192007-10-08 18:24:35 +0200812 struct w83627hf_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return sprintf(buf, "%ld\n", (long) data->vrm);
814}
815static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100816vrm_store(struct device *dev, struct device_attribute *attr, const char *buf,
817 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Jean Delvare787c72b2007-05-08 17:22:00 +0200819 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -0800820 unsigned long val;
821 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Guenter Roeck27b9de32012-01-15 11:07:26 -0800823 err = kstrtoul(buf, 10, &val);
824 if (err)
825 return err;
Axel Lin970255b2014-08-06 08:27:11 +0800826
827 if (val > 255)
828 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 data->vrm = val;
830
831 return count;
832}
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100833static DEVICE_ATTR_RW(vrm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100836alarms_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 struct w83627hf_data *data = w83627hf_update_device(dev);
839 return sprintf(buf, "%ld\n", (long) data->alarms);
840}
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100841static DEVICE_ATTR_RO(alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Jean Delvaree3604c62008-01-03 23:00:30 +0100843static ssize_t
844show_alarm(struct device *dev, struct device_attribute *attr, char *buf)
845{
846 struct w83627hf_data *data = w83627hf_update_device(dev);
847 int bitnr = to_sensor_dev_attr(attr)->index;
848 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
849}
850static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
851static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
852static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
853static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
854static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
855static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
856static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 10);
857static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 16);
858static SENSOR_DEVICE_ATTR(in8_alarm, S_IRUGO, show_alarm, NULL, 17);
859static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
860static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
861static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 11);
862static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
863static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
864static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 13);
865
Jean Delvare1c138102008-01-03 23:04:55 +0100866static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100867beep_mask_show(struct device *dev, struct device_attribute *attr, char *buf)
Jean Delvare1c138102008-01-03 23:04:55 +0100868{
869 struct w83627hf_data *data = w83627hf_update_device(dev);
870 return sprintf(buf, "%ld\n",
871 (long)BEEP_MASK_FROM_REG(data->beep_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100875beep_mask_store(struct device *dev, struct device_attribute *attr,
Jean Delvare1c138102008-01-03 23:04:55 +0100876 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Jean Delvare787c72b2007-05-08 17:22:00 +0200878 struct w83627hf_data *data = dev_get_drvdata(dev);
Jean Delvare1c138102008-01-03 23:04:55 +0100879 unsigned long val;
Guenter Roeck27b9de32012-01-15 11:07:26 -0800880 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Guenter Roeck27b9de32012-01-15 11:07:26 -0800882 err = kstrtoul(buf, 10, &val);
883 if (err)
884 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100886 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Jean Delvare1c138102008-01-03 23:04:55 +0100888 /* preserve beep enable */
889 data->beep_mask = (data->beep_mask & 0x8000)
890 | BEEP_MASK_TO_REG(val);
891 w83627hf_write_value(data, W83781D_REG_BEEP_INTS1,
892 data->beep_mask & 0xff);
893 w83627hf_write_value(data, W83781D_REG_BEEP_INTS3,
894 ((data->beep_mask) >> 16) & 0xff);
Jean Delvare787c72b2007-05-08 17:22:00 +0200895 w83627hf_write_value(data, W83781D_REG_BEEP_INTS2,
Jean Delvare1c138102008-01-03 23:04:55 +0100896 (data->beep_mask >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100898 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return count;
900}
901
Julia Lawall8dfcdfc2016-12-22 13:05:11 +0100902static DEVICE_ATTR_RW(beep_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904static ssize_t
Jean Delvaree3604c62008-01-03 23:00:30 +0100905show_beep(struct device *dev, struct device_attribute *attr, char *buf)
906{
907 struct w83627hf_data *data = w83627hf_update_device(dev);
908 int bitnr = to_sensor_dev_attr(attr)->index;
909 return sprintf(buf, "%u\n", (data->beep_mask >> bitnr) & 1);
910}
911
912static ssize_t
913store_beep(struct device *dev, struct device_attribute *attr,
914 const char *buf, size_t count)
915{
916 struct w83627hf_data *data = dev_get_drvdata(dev);
917 int bitnr = to_sensor_dev_attr(attr)->index;
Jean Delvaree3604c62008-01-03 23:00:30 +0100918 u8 reg;
Guenter Roeck27b9de32012-01-15 11:07:26 -0800919 unsigned long bit;
920 int err;
Jean Delvaree3604c62008-01-03 23:00:30 +0100921
Guenter Roeck27b9de32012-01-15 11:07:26 -0800922 err = kstrtoul(buf, 10, &bit);
923 if (err)
924 return err;
925
Jean Delvaree3604c62008-01-03 23:00:30 +0100926 if (bit & ~1)
927 return -EINVAL;
928
929 mutex_lock(&data->update_lock);
930 if (bit)
931 data->beep_mask |= (1 << bitnr);
932 else
933 data->beep_mask &= ~(1 << bitnr);
934
935 if (bitnr < 8) {
936 reg = w83627hf_read_value(data, W83781D_REG_BEEP_INTS1);
937 if (bit)
938 reg |= (1 << bitnr);
939 else
940 reg &= ~(1 << bitnr);
941 w83627hf_write_value(data, W83781D_REG_BEEP_INTS1, reg);
942 } else if (bitnr < 16) {
943 reg = w83627hf_read_value(data, W83781D_REG_BEEP_INTS2);
944 if (bit)
945 reg |= (1 << (bitnr - 8));
946 else
947 reg &= ~(1 << (bitnr - 8));
948 w83627hf_write_value(data, W83781D_REG_BEEP_INTS2, reg);
949 } else {
950 reg = w83627hf_read_value(data, W83781D_REG_BEEP_INTS3);
951 if (bit)
952 reg |= (1 << (bitnr - 16));
953 else
954 reg &= ~(1 << (bitnr - 16));
955 w83627hf_write_value(data, W83781D_REG_BEEP_INTS3, reg);
956 }
957 mutex_unlock(&data->update_lock);
958
959 return count;
960}
961
962static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR,
963 show_beep, store_beep, 0);
964static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR,
965 show_beep, store_beep, 1);
966static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR,
967 show_beep, store_beep, 2);
968static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR,
969 show_beep, store_beep, 3);
970static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR,
971 show_beep, store_beep, 8);
972static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO | S_IWUSR,
973 show_beep, store_beep, 9);
974static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO | S_IWUSR,
975 show_beep, store_beep, 10);
976static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO | S_IWUSR,
977 show_beep, store_beep, 16);
978static SENSOR_DEVICE_ATTR(in8_beep, S_IRUGO | S_IWUSR,
979 show_beep, store_beep, 17);
980static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR,
981 show_beep, store_beep, 6);
982static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR,
983 show_beep, store_beep, 7);
984static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO | S_IWUSR,
985 show_beep, store_beep, 11);
986static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR,
987 show_beep, store_beep, 4);
988static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR,
989 show_beep, store_beep, 5);
990static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO | S_IWUSR,
991 show_beep, store_beep, 13);
Jean Delvare1c138102008-01-03 23:04:55 +0100992static SENSOR_DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
993 show_beep, store_beep, 15);
Jean Delvaree3604c62008-01-03 23:00:30 +0100994
995static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +0200996show_fan_div(struct device *dev, struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Jim Cromie07584c72007-10-12 21:08:00 +0200998 int nr = to_sensor_dev_attr(devattr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 struct w83627hf_data *data = w83627hf_update_device(dev);
1000 return sprintf(buf, "%ld\n",
Jim Cromie07584c72007-10-12 21:08:00 +02001001 (long) DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002}
Guenter Roeck27b9de32012-01-15 11:07:26 -08001003/*
1004 * Note: we save and restore the fan minimum here, because its value is
1005 * determined in part by the fan divisor. This follows the principle of
1006 * least surprise; the user doesn't expect the fan minimum to change just
1007 * because the divisor changed.
1008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001010store_fan_div(struct device *dev, struct device_attribute *devattr,
1011 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Jim Cromie07584c72007-10-12 21:08:00 +02001013 int nr = to_sensor_dev_attr(devattr)->index;
Jean Delvare787c72b2007-05-08 17:22:00 +02001014 struct w83627hf_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 unsigned long min;
1016 u8 reg;
Guenter Roeck27b9de32012-01-15 11:07:26 -08001017 unsigned long val;
1018 int err;
1019
1020 err = kstrtoul(buf, 10, &val);
1021 if (err)
1022 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001024 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 /* Save fan_min */
1027 min = FAN_FROM_REG(data->fan_min[nr],
1028 DIV_FROM_REG(data->fan_div[nr]));
1029
1030 data->fan_div[nr] = DIV_TO_REG(val);
1031
Jean Delvare787c72b2007-05-08 17:22:00 +02001032 reg = (w83627hf_read_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 & (nr==0 ? 0xcf : 0x3f))
1034 | ((data->fan_div[nr] & 0x03) << (nr==0 ? 4 : 6));
Jean Delvare787c72b2007-05-08 17:22:00 +02001035 w83627hf_write_value(data, nr==2 ? W83781D_REG_PIN : W83781D_REG_VID_FANDIV, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Jean Delvare787c72b2007-05-08 17:22:00 +02001037 reg = (w83627hf_read_value(data, W83781D_REG_VBAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 & ~(1 << (5 + nr)))
1039 | ((data->fan_div[nr] & 0x04) << (3 + nr));
Jean Delvare787c72b2007-05-08 17:22:00 +02001040 w83627hf_write_value(data, W83781D_REG_VBAT, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /* Restore fan_min */
1043 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
Jim Cromie2ca2fcd2007-10-14 17:20:50 -06001044 w83627hf_write_value(data, W83627HF_REG_FAN_MIN(nr), data->fan_min[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001046 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return count;
1048}
1049
Jim Cromie07584c72007-10-12 21:08:00 +02001050static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO|S_IWUSR,
1051 show_fan_div, store_fan_div, 0);
1052static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO|S_IWUSR,
1053 show_fan_div, store_fan_div, 1);
1054static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO|S_IWUSR,
1055 show_fan_div, store_fan_div, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001058show_pwm(struct device *dev, struct device_attribute *devattr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Jim Cromie07584c72007-10-12 21:08:00 +02001060 int nr = to_sensor_dev_attr(devattr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 struct w83627hf_data *data = w83627hf_update_device(dev);
Jim Cromie07584c72007-10-12 21:08:00 +02001062 return sprintf(buf, "%ld\n", (long) data->pwm[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001066store_pwm(struct device *dev, struct device_attribute *devattr,
1067 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Jim Cromie07584c72007-10-12 21:08:00 +02001069 int nr = to_sensor_dev_attr(devattr)->index;
Jean Delvare787c72b2007-05-08 17:22:00 +02001070 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -08001071 unsigned long val;
1072 int err;
1073
1074 err = kstrtoul(buf, 10, &val);
1075 if (err)
1076 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001078 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 if (data->type == w83627thf) {
1081 /* bits 0-3 are reserved in 627THF */
Jim Cromie07584c72007-10-12 21:08:00 +02001082 data->pwm[nr] = PWM_TO_REG(val) & 0xf0;
Jean Delvare787c72b2007-05-08 17:22:00 +02001083 w83627hf_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 W836X7HF_REG_PWM(data->type, nr),
Jim Cromie07584c72007-10-12 21:08:00 +02001085 data->pwm[nr] |
Jean Delvare787c72b2007-05-08 17:22:00 +02001086 (w83627hf_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 W836X7HF_REG_PWM(data->type, nr)) & 0x0f));
1088 } else {
Jim Cromie07584c72007-10-12 21:08:00 +02001089 data->pwm[nr] = PWM_TO_REG(val);
Jean Delvare787c72b2007-05-08 17:22:00 +02001090 w83627hf_write_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 W836X7HF_REG_PWM(data->type, nr),
Jim Cromie07584c72007-10-12 21:08:00 +02001092 data->pwm[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001095 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 return count;
1097}
1098
Jim Cromie07584c72007-10-12 21:08:00 +02001099static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO|S_IWUSR, show_pwm, store_pwm, 0);
1100static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO|S_IWUSR, show_pwm, store_pwm, 1);
1101static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO|S_IWUSR, show_pwm, store_pwm, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103static ssize_t
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001104show_pwm_enable(struct device *dev, struct device_attribute *devattr, char *buf)
1105{
1106 int nr = to_sensor_dev_attr(devattr)->index;
1107 struct w83627hf_data *data = w83627hf_update_device(dev);
1108 return sprintf(buf, "%d\n", data->pwm_enable[nr]);
1109}
1110
1111static ssize_t
1112store_pwm_enable(struct device *dev, struct device_attribute *devattr,
1113 const char *buf, size_t count)
1114{
1115 int nr = to_sensor_dev_attr(devattr)->index;
1116 struct w83627hf_data *data = dev_get_drvdata(dev);
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001117 u8 reg;
Guenter Roeck27b9de32012-01-15 11:07:26 -08001118 unsigned long val;
1119 int err;
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001120
Guenter Roeck27b9de32012-01-15 11:07:26 -08001121 err = kstrtoul(buf, 10, &val);
1122 if (err)
1123 return err;
1124
1125 if (!val || val > 3) /* modes 1, 2 and 3 are supported */
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001126 return -EINVAL;
1127 mutex_lock(&data->update_lock);
1128 data->pwm_enable[nr] = val;
1129 reg = w83627hf_read_value(data, W83627THF_REG_PWM_ENABLE[nr]);
1130 reg &= ~(0x03 << W83627THF_PWM_ENABLE_SHIFT[nr]);
1131 reg |= (val - 1) << W83627THF_PWM_ENABLE_SHIFT[nr];
1132 w83627hf_write_value(data, W83627THF_REG_PWM_ENABLE[nr], reg);
1133 mutex_unlock(&data->update_lock);
1134 return count;
1135}
1136
1137static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
1138 store_pwm_enable, 0);
1139static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
1140 store_pwm_enable, 1);
1141static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO|S_IWUSR, show_pwm_enable,
1142 store_pwm_enable, 2);
1143
1144static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001145show_pwm_freq(struct device *dev, struct device_attribute *devattr, char *buf)
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001146{
Jim Cromie07584c72007-10-12 21:08:00 +02001147 int nr = to_sensor_dev_attr(devattr)->index;
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001148 struct w83627hf_data *data = w83627hf_update_device(dev);
1149 if (data->type == w83627hf)
1150 return sprintf(buf, "%ld\n",
Jim Cromie07584c72007-10-12 21:08:00 +02001151 pwm_freq_from_reg_627hf(data->pwm_freq[nr]));
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001152 else
1153 return sprintf(buf, "%ld\n",
Jim Cromie07584c72007-10-12 21:08:00 +02001154 pwm_freq_from_reg(data->pwm_freq[nr]));
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001155}
1156
1157static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001158store_pwm_freq(struct device *dev, struct device_attribute *devattr,
1159 const char *buf, size_t count)
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001160{
Jim Cromie07584c72007-10-12 21:08:00 +02001161 int nr = to_sensor_dev_attr(devattr)->index;
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001162 struct w83627hf_data *data = dev_get_drvdata(dev);
1163 static const u8 mask[]={0xF8, 0x8F};
Guenter Roeck27b9de32012-01-15 11:07:26 -08001164 unsigned long val;
1165 int err;
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001166
Guenter Roeck27b9de32012-01-15 11:07:26 -08001167 err = kstrtoul(buf, 10, &val);
1168 if (err)
1169 return err;
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001170
1171 mutex_lock(&data->update_lock);
1172
1173 if (data->type == w83627hf) {
Jim Cromie07584c72007-10-12 21:08:00 +02001174 data->pwm_freq[nr] = pwm_freq_to_reg_627hf(val);
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001175 w83627hf_write_value(data, W83627HF_REG_PWM_FREQ,
Jim Cromie07584c72007-10-12 21:08:00 +02001176 (data->pwm_freq[nr] << (nr*4)) |
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001177 (w83627hf_read_value(data,
Jim Cromie07584c72007-10-12 21:08:00 +02001178 W83627HF_REG_PWM_FREQ) & mask[nr]));
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001179 } else {
Jim Cromie07584c72007-10-12 21:08:00 +02001180 data->pwm_freq[nr] = pwm_freq_to_reg(val);
1181 w83627hf_write_value(data, W83637HF_REG_PWM_FREQ[nr],
1182 data->pwm_freq[nr]);
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001183 }
1184
1185 mutex_unlock(&data->update_lock);
1186 return count;
1187}
1188
Jim Cromie07584c72007-10-12 21:08:00 +02001189static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO|S_IWUSR,
1190 show_pwm_freq, store_pwm_freq, 0);
1191static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO|S_IWUSR,
1192 show_pwm_freq, store_pwm_freq, 1);
1193static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO|S_IWUSR,
1194 show_pwm_freq, store_pwm_freq, 2);
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001195
1196static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001197show_temp_type(struct device *dev, struct device_attribute *devattr,
1198 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Jim Cromie07584c72007-10-12 21:08:00 +02001200 int nr = to_sensor_dev_attr(devattr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 struct w83627hf_data *data = w83627hf_update_device(dev);
Jim Cromie07584c72007-10-12 21:08:00 +02001202 return sprintf(buf, "%ld\n", (long) data->sens[nr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205static ssize_t
Jim Cromie07584c72007-10-12 21:08:00 +02001206store_temp_type(struct device *dev, struct device_attribute *devattr,
1207 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Jim Cromie07584c72007-10-12 21:08:00 +02001209 int nr = to_sensor_dev_attr(devattr)->index;
Jean Delvare787c72b2007-05-08 17:22:00 +02001210 struct w83627hf_data *data = dev_get_drvdata(dev);
Guenter Roeck27b9de32012-01-15 11:07:26 -08001211 unsigned long val;
1212 u32 tmp;
1213 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Guenter Roeck27b9de32012-01-15 11:07:26 -08001215 err = kstrtoul(buf, 10, &val);
1216 if (err)
1217 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001219 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 switch (val) {
1222 case 1: /* PII/Celeron diode */
Jean Delvare787c72b2007-05-08 17:22:00 +02001223 tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
1224 w83627hf_write_value(data, W83781D_REG_SCFG1,
Jim Cromie07584c72007-10-12 21:08:00 +02001225 tmp | BIT_SCFG1[nr]);
Jean Delvare787c72b2007-05-08 17:22:00 +02001226 tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
1227 w83627hf_write_value(data, W83781D_REG_SCFG2,
Jim Cromie07584c72007-10-12 21:08:00 +02001228 tmp | BIT_SCFG2[nr]);
1229 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 break;
1231 case 2: /* 3904 */
Jean Delvare787c72b2007-05-08 17:22:00 +02001232 tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
1233 w83627hf_write_value(data, W83781D_REG_SCFG1,
Jim Cromie07584c72007-10-12 21:08:00 +02001234 tmp | BIT_SCFG1[nr]);
Jean Delvare787c72b2007-05-08 17:22:00 +02001235 tmp = w83627hf_read_value(data, W83781D_REG_SCFG2);
1236 w83627hf_write_value(data, W83781D_REG_SCFG2,
Jim Cromie07584c72007-10-12 21:08:00 +02001237 tmp & ~BIT_SCFG2[nr]);
1238 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 break;
Jean Delvareb26f9332007-08-16 14:30:01 +02001240 case W83781D_DEFAULT_BETA:
1241 dev_warn(dev, "Sensor type %d is deprecated, please use 4 "
1242 "instead\n", W83781D_DEFAULT_BETA);
1243 /* fall through */
1244 case 4: /* thermistor */
Jean Delvare787c72b2007-05-08 17:22:00 +02001245 tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
1246 w83627hf_write_value(data, W83781D_REG_SCFG1,
Jim Cromie07584c72007-10-12 21:08:00 +02001247 tmp & ~BIT_SCFG1[nr]);
1248 data->sens[nr] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 break;
1250 default:
Jean Delvare787c72b2007-05-08 17:22:00 +02001251 dev_err(dev,
Jean Delvareb26f9332007-08-16 14:30:01 +02001252 "Invalid sensor type %ld; must be 1, 2, or 4\n",
1253 (long) val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 break;
1255 }
1256
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001257 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return count;
1259}
1260
Jim Cromie07584c72007-10-12 21:08:00 +02001261#define sysfs_temp_type(offset) \
1262static SENSOR_DEVICE_ATTR(temp##offset##_type, S_IRUGO | S_IWUSR, \
1263 show_temp_type, store_temp_type, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Jim Cromie07584c72007-10-12 21:08:00 +02001265sysfs_temp_type(1);
1266sysfs_temp_type(2);
1267sysfs_temp_type(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Jim Cromie07584c72007-10-12 21:08:00 +02001269static ssize_t
Julia Lawall8dfcdfc2016-12-22 13:05:11 +01001270name_show(struct device *dev, struct device_attribute *devattr, char *buf)
Jean Delvare787c72b2007-05-08 17:22:00 +02001271{
1272 struct w83627hf_data *data = dev_get_drvdata(dev);
1273
1274 return sprintf(buf, "%s\n", data->name);
1275}
Julia Lawall8dfcdfc2016-12-22 13:05:11 +01001276static DEVICE_ATTR_RO(name);
Jean Delvare787c72b2007-05-08 17:22:00 +02001277
1278static int __init w83627hf_find(int sioaddr, unsigned short *addr,
1279 struct w83627hf_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Jean Delvared27c37c2007-05-08 17:21:59 +02001281 int err = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 u16 val;
1283
Andi Kleen64f50302012-08-18 10:30:05 -07001284 static __initconst char *const names[] = {
Jean Delvare787c72b2007-05-08 17:22:00 +02001285 "W83627HF",
1286 "W83627THF",
1287 "W83697HF",
1288 "W83637HF",
1289 "W83687THF",
1290 };
1291
Christian Schultec46c0e92009-12-16 21:38:29 +01001292 sio_data->sioaddr = sioaddr;
Jean Delvareb72656d2009-12-09 20:35:49 +01001293 superio_enter(sio_data);
1294 val = force_id ? force_id : superio_inb(sio_data, DEVID);
Jean Delvare787c72b2007-05-08 17:22:00 +02001295 switch (val) {
1296 case W627_DEVID:
1297 sio_data->type = w83627hf;
1298 break;
1299 case W627THF_DEVID:
1300 sio_data->type = w83627thf;
1301 break;
1302 case W697_DEVID:
1303 sio_data->type = w83697hf;
1304 break;
1305 case W637_DEVID:
1306 sio_data->type = w83637hf;
1307 break;
1308 case W687THF_DEVID:
1309 sio_data->type = w83687thf;
1310 break;
Jean Delvaree142e2a2007-05-27 22:17:43 +02001311 case 0xff: /* No device at all */
1312 goto exit;
Jean Delvare787c72b2007-05-08 17:22:00 +02001313 default:
Jean Delvaree142e2a2007-05-27 22:17:43 +02001314 pr_debug(DRVNAME ": Unsupported chip (DEVID=0x%02x)\n", val);
Jean Delvared27c37c2007-05-08 17:21:59 +02001315 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317
Jean Delvareb72656d2009-12-09 20:35:49 +01001318 superio_select(sio_data, W83627HF_LD_HWM);
1319 val = (superio_inb(sio_data, WINB_BASE_REG) << 8) |
1320 superio_inb(sio_data, WINB_BASE_REG + 1);
Petr Vandrovecada0c2f2005-10-07 23:11:03 +02001321 *addr = val & WINB_ALIGNMENT;
Jean Delvared27c37c2007-05-08 17:21:59 +02001322 if (*addr == 0) {
Joe Perches18de0302010-10-20 06:51:55 +00001323 pr_warn("Base address not set, skipping\n");
Jean Delvared27c37c2007-05-08 17:21:59 +02001324 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jean Delvareb72656d2009-12-09 20:35:49 +01001327 val = superio_inb(sio_data, WINB_ACT_REG);
Jean Delvared27c37c2007-05-08 17:21:59 +02001328 if (!(val & 0x01)) {
Joe Perches18de0302010-10-20 06:51:55 +00001329 pr_warn("Enabling HWM logical device\n");
Jean Delvareb72656d2009-12-09 20:35:49 +01001330 superio_outb(sio_data, WINB_ACT_REG, val | 0x01);
Jean Delvared27c37c2007-05-08 17:21:59 +02001331 }
1332
1333 err = 0;
Jean Delvare787c72b2007-05-08 17:22:00 +02001334 pr_info(DRVNAME ": Found %s chip at %#x\n",
1335 names[sio_data->type], *addr);
Jean Delvared27c37c2007-05-08 17:21:59 +02001336
1337 exit:
Jean Delvareb72656d2009-12-09 20:35:49 +01001338 superio_exit(sio_data);
Jean Delvared27c37c2007-05-08 17:21:59 +02001339 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Jim Cromie07584c72007-10-12 21:08:00 +02001342#define VIN_UNIT_ATTRS(_X_) \
1343 &sensor_dev_attr_in##_X_##_input.dev_attr.attr, \
1344 &sensor_dev_attr_in##_X_##_min.dev_attr.attr, \
Jean Delvaree3604c62008-01-03 23:00:30 +01001345 &sensor_dev_attr_in##_X_##_max.dev_attr.attr, \
1346 &sensor_dev_attr_in##_X_##_alarm.dev_attr.attr, \
1347 &sensor_dev_attr_in##_X_##_beep.dev_attr.attr
Jim Cromie07584c72007-10-12 21:08:00 +02001348
1349#define FAN_UNIT_ATTRS(_X_) \
1350 &sensor_dev_attr_fan##_X_##_input.dev_attr.attr, \
1351 &sensor_dev_attr_fan##_X_##_min.dev_attr.attr, \
Jean Delvaree3604c62008-01-03 23:00:30 +01001352 &sensor_dev_attr_fan##_X_##_div.dev_attr.attr, \
1353 &sensor_dev_attr_fan##_X_##_alarm.dev_attr.attr, \
1354 &sensor_dev_attr_fan##_X_##_beep.dev_attr.attr
Jim Cromie07584c72007-10-12 21:08:00 +02001355
1356#define TEMP_UNIT_ATTRS(_X_) \
1357 &sensor_dev_attr_temp##_X_##_input.dev_attr.attr, \
1358 &sensor_dev_attr_temp##_X_##_max.dev_attr.attr, \
1359 &sensor_dev_attr_temp##_X_##_max_hyst.dev_attr.attr, \
Jean Delvaree3604c62008-01-03 23:00:30 +01001360 &sensor_dev_attr_temp##_X_##_type.dev_attr.attr, \
1361 &sensor_dev_attr_temp##_X_##_alarm.dev_attr.attr, \
1362 &sensor_dev_attr_temp##_X_##_beep.dev_attr.attr
Jim Cromie07584c72007-10-12 21:08:00 +02001363
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001364static struct attribute *w83627hf_attributes[] = {
1365 &dev_attr_in0_input.attr,
1366 &dev_attr_in0_min.attr,
1367 &dev_attr_in0_max.attr,
Jean Delvaree3604c62008-01-03 23:00:30 +01001368 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1369 &sensor_dev_attr_in0_beep.dev_attr.attr,
Jim Cromie07584c72007-10-12 21:08:00 +02001370 VIN_UNIT_ATTRS(2),
1371 VIN_UNIT_ATTRS(3),
1372 VIN_UNIT_ATTRS(4),
1373 VIN_UNIT_ATTRS(7),
1374 VIN_UNIT_ATTRS(8),
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001375
Jim Cromie07584c72007-10-12 21:08:00 +02001376 FAN_UNIT_ATTRS(1),
1377 FAN_UNIT_ATTRS(2),
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001378
Jim Cromie07584c72007-10-12 21:08:00 +02001379 TEMP_UNIT_ATTRS(1),
1380 TEMP_UNIT_ATTRS(2),
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001381
1382 &dev_attr_alarms.attr,
Jean Delvare1c138102008-01-03 23:04:55 +01001383 &sensor_dev_attr_beep_enable.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001384 &dev_attr_beep_mask.attr,
1385
Jim Cromie07584c72007-10-12 21:08:00 +02001386 &sensor_dev_attr_pwm1.dev_attr.attr,
1387 &sensor_dev_attr_pwm2.dev_attr.attr,
Jean Delvare787c72b2007-05-08 17:22:00 +02001388 &dev_attr_name.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001389 NULL
1390};
1391
1392static const struct attribute_group w83627hf_group = {
1393 .attrs = w83627hf_attributes,
1394};
1395
1396static struct attribute *w83627hf_attributes_opt[] = {
Jim Cromie07584c72007-10-12 21:08:00 +02001397 VIN_UNIT_ATTRS(1),
1398 VIN_UNIT_ATTRS(5),
1399 VIN_UNIT_ATTRS(6),
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001400
Jim Cromie07584c72007-10-12 21:08:00 +02001401 FAN_UNIT_ATTRS(3),
1402 TEMP_UNIT_ATTRS(3),
1403 &sensor_dev_attr_pwm3.dev_attr.attr,
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001404
Jim Cromie07584c72007-10-12 21:08:00 +02001405 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
1406 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
1407 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001408
1409 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1410 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1411 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
1412
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001413 NULL
1414};
1415
1416static const struct attribute_group w83627hf_group_opt = {
1417 .attrs = w83627hf_attributes_opt,
1418};
1419
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001420static int w83627hf_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Jean Delvare787c72b2007-05-08 17:22:00 +02001422 struct device *dev = &pdev->dev;
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09001423 struct w83627hf_sio_data *sio_data = dev_get_platdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 struct w83627hf_data *data;
Jean Delvare787c72b2007-05-08 17:22:00 +02001425 struct resource *res;
Jim Cromie2ca2fcd2007-10-14 17:20:50 -06001426 int err, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Jean Delvare787c72b2007-05-08 17:22:00 +02001428 static const char *names[] = {
1429 "w83627hf",
1430 "w83627thf",
1431 "w83697hf",
1432 "w83637hf",
1433 "w83687thf",
1434 };
1435
1436 res = platform_get_resource(pdev, IORESOURCE_IO, 0);
Guenter Roeck0cf46992012-06-02 11:47:59 -07001437 if (!devm_request_region(dev, res->start, WINB_REGION_SIZE, DRVNAME)) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001438 dev_err(dev, "Failed to request region 0x%lx-0x%lx\n",
1439 (unsigned long)res->start,
1440 (unsigned long)(res->start + WINB_REGION_SIZE - 1));
Guenter Roeck0cf46992012-06-02 11:47:59 -07001441 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
Guenter Roeck0cf46992012-06-02 11:47:59 -07001444 data = devm_kzalloc(dev, sizeof(struct w83627hf_data), GFP_KERNEL);
1445 if (!data)
1446 return -ENOMEM;
1447
Jean Delvare787c72b2007-05-08 17:22:00 +02001448 data->addr = res->start;
1449 data->type = sio_data->type;
1450 data->name = names[sio_data->type];
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001451 mutex_init(&data->lock);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001452 mutex_init(&data->update_lock);
Jean Delvare787c72b2007-05-08 17:22:00 +02001453 platform_set_drvdata(pdev, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* Initialize the chip */
Jean Delvare787c72b2007-05-08 17:22:00 +02001456 w83627hf_init_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 /* A few vars need to be filled upon startup */
Jim Cromie2ca2fcd2007-10-14 17:20:50 -06001459 for (i = 0; i <= 2; i++)
1460 data->fan_min[i] = w83627hf_read_value(
1461 data, W83627HF_REG_FAN_MIN(i));
Jean Delvarec09c5182007-10-12 21:53:07 +02001462 w83627hf_update_fan_div(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001464 /* Register common device attributes */
Guenter Roeck27b9de32012-01-15 11:07:26 -08001465 err = sysfs_create_group(&dev->kobj, &w83627hf_group);
1466 if (err)
Guenter Roeck0cf46992012-06-02 11:47:59 -07001467 return err;
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001468
1469 /* Register chip-specific device attributes */
Jean Delvare787c72b2007-05-08 17:22:00 +02001470 if (data->type == w83627hf || data->type == w83697hf)
Jim Cromie07584c72007-10-12 21:08:00 +02001471 if ((err = device_create_file(dev,
1472 &sensor_dev_attr_in5_input.dev_attr))
1473 || (err = device_create_file(dev,
1474 &sensor_dev_attr_in5_min.dev_attr))
1475 || (err = device_create_file(dev,
1476 &sensor_dev_attr_in5_max.dev_attr))
1477 || (err = device_create_file(dev,
Jean Delvaree3604c62008-01-03 23:00:30 +01001478 &sensor_dev_attr_in5_alarm.dev_attr))
1479 || (err = device_create_file(dev,
1480 &sensor_dev_attr_in5_beep.dev_attr))
1481 || (err = device_create_file(dev,
Jim Cromie07584c72007-10-12 21:08:00 +02001482 &sensor_dev_attr_in6_input.dev_attr))
1483 || (err = device_create_file(dev,
1484 &sensor_dev_attr_in6_min.dev_attr))
1485 || (err = device_create_file(dev,
1486 &sensor_dev_attr_in6_max.dev_attr))
1487 || (err = device_create_file(dev,
Jean Delvaree3604c62008-01-03 23:00:30 +01001488 &sensor_dev_attr_in6_alarm.dev_attr))
1489 || (err = device_create_file(dev,
1490 &sensor_dev_attr_in6_beep.dev_attr))
1491 || (err = device_create_file(dev,
Jim Cromie07584c72007-10-12 21:08:00 +02001492 &sensor_dev_attr_pwm1_freq.dev_attr))
1493 || (err = device_create_file(dev,
1494 &sensor_dev_attr_pwm2_freq.dev_attr)))
Guenter Roeck0cf46992012-06-02 11:47:59 -07001495 goto error;
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001496
Jean Delvare787c72b2007-05-08 17:22:00 +02001497 if (data->type != w83697hf)
Jim Cromie07584c72007-10-12 21:08:00 +02001498 if ((err = device_create_file(dev,
1499 &sensor_dev_attr_in1_input.dev_attr))
1500 || (err = device_create_file(dev,
1501 &sensor_dev_attr_in1_min.dev_attr))
1502 || (err = device_create_file(dev,
1503 &sensor_dev_attr_in1_max.dev_attr))
1504 || (err = device_create_file(dev,
Jean Delvaree3604c62008-01-03 23:00:30 +01001505 &sensor_dev_attr_in1_alarm.dev_attr))
1506 || (err = device_create_file(dev,
1507 &sensor_dev_attr_in1_beep.dev_attr))
1508 || (err = device_create_file(dev,
Jim Cromie07584c72007-10-12 21:08:00 +02001509 &sensor_dev_attr_fan3_input.dev_attr))
1510 || (err = device_create_file(dev,
1511 &sensor_dev_attr_fan3_min.dev_attr))
1512 || (err = device_create_file(dev,
1513 &sensor_dev_attr_fan3_div.dev_attr))
1514 || (err = device_create_file(dev,
Jean Delvaree3604c62008-01-03 23:00:30 +01001515 &sensor_dev_attr_fan3_alarm.dev_attr))
1516 || (err = device_create_file(dev,
1517 &sensor_dev_attr_fan3_beep.dev_attr))
1518 || (err = device_create_file(dev,
Jim Cromie07584c72007-10-12 21:08:00 +02001519 &sensor_dev_attr_temp3_input.dev_attr))
1520 || (err = device_create_file(dev,
1521 &sensor_dev_attr_temp3_max.dev_attr))
1522 || (err = device_create_file(dev,
1523 &sensor_dev_attr_temp3_max_hyst.dev_attr))
1524 || (err = device_create_file(dev,
Jean Delvaree3604c62008-01-03 23:00:30 +01001525 &sensor_dev_attr_temp3_alarm.dev_attr))
1526 || (err = device_create_file(dev,
1527 &sensor_dev_attr_temp3_beep.dev_attr))
1528 || (err = device_create_file(dev,
Jim Cromie07584c72007-10-12 21:08:00 +02001529 &sensor_dev_attr_temp3_type.dev_attr)))
Guenter Roeck0cf46992012-06-02 11:47:59 -07001530 goto error;
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001531
Jean Delvare787c72b2007-05-08 17:22:00 +02001532 if (data->type != w83697hf && data->vid != 0xff) {
Jean Delvare8a665a02007-05-08 17:21:59 +02001533 /* Convert VID to voltage based on VRM */
1534 data->vrm = vid_which_vrm();
1535
Jean Delvare787c72b2007-05-08 17:22:00 +02001536 if ((err = device_create_file(dev, &dev_attr_cpu0_vid))
1537 || (err = device_create_file(dev, &dev_attr_vrm)))
Guenter Roeck0cf46992012-06-02 11:47:59 -07001538 goto error;
Jean Delvare8a665a02007-05-08 17:21:59 +02001539 }
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001540
Jean Delvare787c72b2007-05-08 17:22:00 +02001541 if (data->type == w83627thf || data->type == w83637hf
Guenter Roeck27b9de32012-01-15 11:07:26 -08001542 || data->type == w83687thf) {
1543 err = device_create_file(dev, &sensor_dev_attr_pwm3.dev_attr);
1544 if (err)
Guenter Roeck0cf46992012-06-02 11:47:59 -07001545 goto error;
Guenter Roeck27b9de32012-01-15 11:07:26 -08001546 }
Mark M. Hoffmanc1685f62006-09-24 20:59:49 +02001547
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001548 if (data->type == w83637hf || data->type == w83687thf)
Jim Cromie07584c72007-10-12 21:08:00 +02001549 if ((err = device_create_file(dev,
1550 &sensor_dev_attr_pwm1_freq.dev_attr))
1551 || (err = device_create_file(dev,
1552 &sensor_dev_attr_pwm2_freq.dev_attr))
1553 || (err = device_create_file(dev,
1554 &sensor_dev_attr_pwm3_freq.dev_attr)))
Guenter Roeck0cf46992012-06-02 11:47:59 -07001555 goto error;
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001556
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001557 if (data->type != w83627hf)
1558 if ((err = device_create_file(dev,
1559 &sensor_dev_attr_pwm1_enable.dev_attr))
1560 || (err = device_create_file(dev,
1561 &sensor_dev_attr_pwm2_enable.dev_attr)))
Guenter Roeck0cf46992012-06-02 11:47:59 -07001562 goto error;
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001563
1564 if (data->type == w83627thf || data->type == w83637hf
Guenter Roeck27b9de32012-01-15 11:07:26 -08001565 || data->type == w83687thf) {
1566 err = device_create_file(dev,
1567 &sensor_dev_attr_pwm3_enable.dev_attr);
1568 if (err)
Guenter Roeck0cf46992012-06-02 11:47:59 -07001569 goto error;
Guenter Roeck27b9de32012-01-15 11:07:26 -08001570 }
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001571
Tony Jones1beeffe2007-08-20 13:46:20 -07001572 data->hwmon_dev = hwmon_device_register(dev);
1573 if (IS_ERR(data->hwmon_dev)) {
1574 err = PTR_ERR(data->hwmon_dev);
Guenter Roeck0cf46992012-06-02 11:47:59 -07001575 goto error;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001576 }
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 return 0;
1579
Guenter Roeck0cf46992012-06-02 11:47:59 -07001580 error:
Jean Delvare787c72b2007-05-08 17:22:00 +02001581 sysfs_remove_group(&dev->kobj, &w83627hf_group);
1582 sysfs_remove_group(&dev->kobj, &w83627hf_group_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return err;
1584}
1585
Bill Pemberton281dfd02012-11-19 13:25:51 -05001586static int w83627hf_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Jean Delvare787c72b2007-05-08 17:22:00 +02001588 struct w83627hf_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Tony Jones1beeffe2007-08-20 13:46:20 -07001590 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001591
Jean Delvare787c72b2007-05-08 17:22:00 +02001592 sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group);
1593 sysfs_remove_group(&pdev->dev.kobj, &w83627hf_group_opt);
Jean Delvare787c72b2007-05-08 17:22:00 +02001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return 0;
1596}
1597
1598
Jean Delvared58df9c2007-10-10 16:30:23 +02001599/* Registers 0x50-0x5f are banked */
1600static inline void w83627hf_set_bank(struct w83627hf_data *data, u16 reg)
1601{
1602 if ((reg & 0x00f0) == 0x50) {
1603 outb_p(W83781D_REG_BANK, data->addr + W83781D_ADDR_REG_OFFSET);
1604 outb_p(reg >> 8, data->addr + W83781D_DATA_REG_OFFSET);
1605 }
1606}
1607
1608/* Not strictly necessary, but play it safe for now */
1609static inline void w83627hf_reset_bank(struct w83627hf_data *data, u16 reg)
1610{
1611 if (reg & 0xff00) {
1612 outb_p(W83781D_REG_BANK, data->addr + W83781D_ADDR_REG_OFFSET);
1613 outb_p(0, data->addr + W83781D_DATA_REG_OFFSET);
1614 }
1615}
1616
Jean Delvare787c72b2007-05-08 17:22:00 +02001617static int w83627hf_read_value(struct w83627hf_data *data, u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 int res, word_sized;
1620
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001621 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 word_sized = (((reg & 0xff00) == 0x100)
1623 || ((reg & 0xff00) == 0x200))
1624 && (((reg & 0x00ff) == 0x50)
1625 || ((reg & 0x00ff) == 0x53)
1626 || ((reg & 0x00ff) == 0x55));
Jean Delvared58df9c2007-10-10 16:30:23 +02001627 w83627hf_set_bank(data, reg);
Jean Delvare787c72b2007-05-08 17:22:00 +02001628 outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
1629 res = inb_p(data->addr + W83781D_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (word_sized) {
1631 outb_p((reg & 0xff) + 1,
Jean Delvare787c72b2007-05-08 17:22:00 +02001632 data->addr + W83781D_ADDR_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 res =
Jean Delvare787c72b2007-05-08 17:22:00 +02001634 (res << 8) + inb_p(data->addr +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 W83781D_DATA_REG_OFFSET);
1636 }
Jean Delvared58df9c2007-10-10 16:30:23 +02001637 w83627hf_reset_bank(data, reg);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001638 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return res;
1640}
1641
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001642static int w83627thf_read_gpio5(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09001644 struct w83627hf_sio_data *sio_data = dev_get_platdata(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 int res = 0xff, sel;
1646
Jean Delvareb72656d2009-12-09 20:35:49 +01001647 superio_enter(sio_data);
1648 superio_select(sio_data, W83627HF_LD_GPIO5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 /* Make sure these GPIO pins are enabled */
Jean Delvareb72656d2009-12-09 20:35:49 +01001651 if (!(superio_inb(sio_data, W83627THF_GPIO5_EN) & (1<<3))) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001652 dev_dbg(&pdev->dev, "GPIO5 disabled, no VID function\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 goto exit;
1654 }
1655
Guenter Roeck27b9de32012-01-15 11:07:26 -08001656 /*
1657 * Make sure the pins are configured for input
1658 * There must be at least five (VRM 9), and possibly 6 (VRM 10)
1659 */
Jean Delvareb72656d2009-12-09 20:35:49 +01001660 sel = superio_inb(sio_data, W83627THF_GPIO5_IOSR) & 0x3f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if ((sel & 0x1f) != 0x1f) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001662 dev_dbg(&pdev->dev, "GPIO5 not configured for VID "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 "function\n");
1664 goto exit;
1665 }
1666
Jean Delvare787c72b2007-05-08 17:22:00 +02001667 dev_info(&pdev->dev, "Reading VID from GPIO5\n");
Jean Delvareb72656d2009-12-09 20:35:49 +01001668 res = superio_inb(sio_data, W83627THF_GPIO5_DR) & sel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670exit:
Jean Delvareb72656d2009-12-09 20:35:49 +01001671 superio_exit(sio_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return res;
1673}
1674
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001675static int w83687thf_read_vid(struct platform_device *pdev)
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001676{
Jingoo Hana8b3a3a2013-07-30 17:13:06 +09001677 struct w83627hf_sio_data *sio_data = dev_get_platdata(&pdev->dev);
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001678 int res = 0xff;
1679
Jean Delvareb72656d2009-12-09 20:35:49 +01001680 superio_enter(sio_data);
1681 superio_select(sio_data, W83627HF_LD_HWM);
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001682
1683 /* Make sure these GPIO pins are enabled */
Jean Delvareb72656d2009-12-09 20:35:49 +01001684 if (!(superio_inb(sio_data, W83687THF_VID_EN) & (1 << 2))) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001685 dev_dbg(&pdev->dev, "VID disabled, no VID function\n");
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001686 goto exit;
1687 }
1688
1689 /* Make sure the pins are configured for input */
Jean Delvareb72656d2009-12-09 20:35:49 +01001690 if (!(superio_inb(sio_data, W83687THF_VID_CFG) & (1 << 4))) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001691 dev_dbg(&pdev->dev, "VID configured as output, "
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001692 "no VID function\n");
1693 goto exit;
1694 }
1695
Jean Delvareb72656d2009-12-09 20:35:49 +01001696 res = superio_inb(sio_data, W83687THF_VID_DATA) & 0x3f;
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001697
1698exit:
Jean Delvareb72656d2009-12-09 20:35:49 +01001699 superio_exit(sio_data);
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001700 return res;
1701}
1702
Jean Delvare787c72b2007-05-08 17:22:00 +02001703static int w83627hf_write_value(struct w83627hf_data *data, u16 reg, u16 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 int word_sized;
1706
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001707 mutex_lock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 word_sized = (((reg & 0xff00) == 0x100)
1709 || ((reg & 0xff00) == 0x200))
1710 && (((reg & 0x00ff) == 0x53)
1711 || ((reg & 0x00ff) == 0x55));
Jean Delvared58df9c2007-10-10 16:30:23 +02001712 w83627hf_set_bank(data, reg);
Jean Delvare787c72b2007-05-08 17:22:00 +02001713 outb_p(reg & 0xff, data->addr + W83781D_ADDR_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (word_sized) {
1715 outb_p(value >> 8,
Jean Delvare787c72b2007-05-08 17:22:00 +02001716 data->addr + W83781D_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 outb_p((reg & 0xff) + 1,
Jean Delvare787c72b2007-05-08 17:22:00 +02001718 data->addr + W83781D_ADDR_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720 outb_p(value & 0xff,
Jean Delvare787c72b2007-05-08 17:22:00 +02001721 data->addr + W83781D_DATA_REG_OFFSET);
Jean Delvared58df9c2007-10-10 16:30:23 +02001722 w83627hf_reset_bank(data, reg);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001723 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return 0;
1725}
1726
Bill Pemberton6c931ae2012-11-19 13:22:35 -05001727static void w83627hf_init_device(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Jean Delvare787c72b2007-05-08 17:22:00 +02001729 struct w83627hf_data *data = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 int i;
Jean Delvared27c37c2007-05-08 17:21:59 +02001731 enum chips type = data->type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 u8 tmp;
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /* Minimize conflicts with other winbond i2c-only clients... */
1735 /* disable i2c subclients... how to disable main i2c client?? */
1736 /* force i2c address to relatively uncommon address */
Jean Delvare8f3c7c52012-12-19 22:17:00 +01001737 if (type == w83627hf) {
1738 w83627hf_write_value(data, W83781D_REG_I2C_SUBADDR, 0x89);
1739 w83627hf_write_value(data, W83781D_REG_I2C_ADDR, force_i2c);
1740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 /* Read VID only once */
Jean Delvared27c37c2007-05-08 17:21:59 +02001743 if (type == w83627hf || type == w83637hf) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001744 int lo = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
1745 int hi = w83627hf_read_value(data, W83781D_REG_CHIPID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 data->vid = (lo & 0x0f) | ((hi & 0x01) << 4);
Jean Delvared27c37c2007-05-08 17:21:59 +02001747 } else if (type == w83627thf) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001748 data->vid = w83627thf_read_gpio5(pdev);
Jean Delvared27c37c2007-05-08 17:21:59 +02001749 } else if (type == w83687thf) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001750 data->vid = w83687thf_read_vid(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752
1753 /* Read VRM & OVT Config only once */
Jean Delvared27c37c2007-05-08 17:21:59 +02001754 if (type == w83627thf || type == w83637hf || type == w83687thf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 data->vrm_ovt =
Jean Delvare787c72b2007-05-08 17:22:00 +02001756 w83627hf_read_value(data, W83627THF_REG_VRM_OVT_CFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758
Jean Delvare787c72b2007-05-08 17:22:00 +02001759 tmp = w83627hf_read_value(data, W83781D_REG_SCFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 for (i = 1; i <= 3; i++) {
1761 if (!(tmp & BIT_SCFG1[i - 1])) {
Jean Delvareb26f9332007-08-16 14:30:01 +02001762 data->sens[i - 1] = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 } else {
1764 if (w83627hf_read_value
Jean Delvare787c72b2007-05-08 17:22:00 +02001765 (data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 W83781D_REG_SCFG2) & BIT_SCFG2[i - 1])
1767 data->sens[i - 1] = 1;
1768 else
1769 data->sens[i - 1] = 2;
1770 }
1771 if ((type == w83697hf) && (i == 2))
1772 break;
1773 }
1774
1775 if(init) {
1776 /* Enable temp2 */
Jim Cromiedf48ed82007-10-14 17:10:52 -06001777 tmp = w83627hf_read_value(data, W83627HF_REG_TEMP2_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (tmp & 0x01) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001779 dev_warn(&pdev->dev, "Enabling temp2, readings "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 "might not make sense\n");
Jim Cromiedf48ed82007-10-14 17:10:52 -06001781 w83627hf_write_value(data, W83627HF_REG_TEMP2_CONFIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 tmp & 0xfe);
1783 }
1784
1785 /* Enable temp3 */
1786 if (type != w83697hf) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001787 tmp = w83627hf_read_value(data,
Jim Cromiedf48ed82007-10-14 17:10:52 -06001788 W83627HF_REG_TEMP3_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (tmp & 0x01) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001790 dev_warn(&pdev->dev, "Enabling temp3, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 "readings might not make sense\n");
Jean Delvare787c72b2007-05-08 17:22:00 +02001792 w83627hf_write_value(data,
Jim Cromiedf48ed82007-10-14 17:10:52 -06001793 W83627HF_REG_TEMP3_CONFIG, tmp & 0xfe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
1795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797
1798 /* Start monitoring */
Jean Delvare787c72b2007-05-08 17:22:00 +02001799 w83627hf_write_value(data, W83781D_REG_CONFIG,
1800 (w83627hf_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 W83781D_REG_CONFIG) & 0xf7)
1802 | 0x01);
Jean Delvareef878b12008-01-03 22:54:13 +01001803
1804 /* Enable VBAT monitoring if needed */
1805 tmp = w83627hf_read_value(data, W83781D_REG_VBAT);
1806 if (!(tmp & 0x01))
1807 w83627hf_write_value(data, W83781D_REG_VBAT, tmp | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809
Jean Delvarec09c5182007-10-12 21:53:07 +02001810static void w83627hf_update_fan_div(struct w83627hf_data *data)
1811{
1812 int reg;
1813
1814 reg = w83627hf_read_value(data, W83781D_REG_VID_FANDIV);
1815 data->fan_div[0] = (reg >> 4) & 0x03;
1816 data->fan_div[1] = (reg >> 6) & 0x03;
1817 if (data->type != w83697hf) {
1818 data->fan_div[2] = (w83627hf_read_value(data,
1819 W83781D_REG_PIN) >> 6) & 0x03;
1820 }
1821 reg = w83627hf_read_value(data, W83781D_REG_VBAT);
1822 data->fan_div[0] |= (reg >> 3) & 0x04;
1823 data->fan_div[1] |= (reg >> 4) & 0x04;
1824 if (data->type != w83697hf)
1825 data->fan_div[2] |= (reg >> 5) & 0x04;
1826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828static struct w83627hf_data *w83627hf_update_device(struct device *dev)
1829{
Jean Delvare787c72b2007-05-08 17:22:00 +02001830 struct w83627hf_data *data = dev_get_drvdata(dev);
Jim Cromiedf48ed82007-10-14 17:10:52 -06001831 int i, num_temps = (data->type == w83697hf) ? 2 : 3;
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001832 int num_pwms = (data->type == w83697hf) ? 2 : 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001834 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
1837 || !data->valid) {
1838 for (i = 0; i <= 8; i++) {
1839 /* skip missing sensors */
1840 if (((data->type == w83697hf) && (i == 1)) ||
Jean Delvarec2db6ce2006-01-18 23:22:12 +01001841 ((data->type != w83627hf && data->type != w83697hf)
Yuan Mu4a1c44472005-11-07 22:19:04 +01001842 && (i == 5 || i == 6)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 continue;
1844 data->in[i] =
Jean Delvare787c72b2007-05-08 17:22:00 +02001845 w83627hf_read_value(data, W83781D_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 data->in_min[i] =
Jean Delvare787c72b2007-05-08 17:22:00 +02001847 w83627hf_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 W83781D_REG_IN_MIN(i));
1849 data->in_max[i] =
Jean Delvare787c72b2007-05-08 17:22:00 +02001850 w83627hf_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 W83781D_REG_IN_MAX(i));
1852 }
Jim Cromie2ca2fcd2007-10-14 17:20:50 -06001853 for (i = 0; i <= 2; i++) {
1854 data->fan[i] =
1855 w83627hf_read_value(data, W83627HF_REG_FAN(i));
1856 data->fan_min[i] =
Jean Delvare787c72b2007-05-08 17:22:00 +02001857 w83627hf_read_value(data,
Jim Cromie2ca2fcd2007-10-14 17:20:50 -06001858 W83627HF_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
Jim Cromie07584c72007-10-12 21:08:00 +02001860 for (i = 0; i <= 2; i++) {
Jean Delvare787c72b2007-05-08 17:22:00 +02001861 u8 tmp = w83627hf_read_value(data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 W836X7HF_REG_PWM(data->type, i));
1863 /* bits 0-3 are reserved in 627THF */
1864 if (data->type == w83627thf)
1865 tmp &= 0xf0;
Jim Cromie07584c72007-10-12 21:08:00 +02001866 data->pwm[i] = tmp;
1867 if (i == 1 &&
1868 (data->type == w83627hf || data->type == w83697hf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 break;
1870 }
Carlos Olalla Martinez1550cb62007-06-09 10:11:16 -04001871 if (data->type == w83627hf) {
1872 u8 tmp = w83627hf_read_value(data,
1873 W83627HF_REG_PWM_FREQ);
1874 data->pwm_freq[0] = tmp & 0x07;
1875 data->pwm_freq[1] = (tmp >> 4) & 0x07;
1876 } else if (data->type != w83627thf) {
1877 for (i = 1; i <= 3; i++) {
1878 data->pwm_freq[i - 1] =
1879 w83627hf_read_value(data,
1880 W83637HF_REG_PWM_FREQ[i - 1]);
1881 if (i == 2 && (data->type == w83697hf))
1882 break;
1883 }
1884 }
Dominik Geyera95a5ed2008-08-06 22:41:04 +02001885 if (data->type != w83627hf) {
1886 for (i = 0; i < num_pwms; i++) {
1887 u8 tmp = w83627hf_read_value(data,
1888 W83627THF_REG_PWM_ENABLE[i]);
1889 data->pwm_enable[i] =
1890 ((tmp >> W83627THF_PWM_ENABLE_SHIFT[i])
1891 & 0x03) + 1;
1892 }
1893 }
Jim Cromiedf48ed82007-10-14 17:10:52 -06001894 for (i = 0; i < num_temps; i++) {
1895 data->temp[i] = w83627hf_read_value(
1896 data, w83627hf_reg_temp[i]);
1897 data->temp_max[i] = w83627hf_read_value(
1898 data, w83627hf_reg_temp_over[i]);
1899 data->temp_max_hyst[i] = w83627hf_read_value(
1900 data, w83627hf_reg_temp_hyst[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
1902
Jean Delvarec09c5182007-10-12 21:53:07 +02001903 w83627hf_update_fan_div(data);
1904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 data->alarms =
Jean Delvare787c72b2007-05-08 17:22:00 +02001906 w83627hf_read_value(data, W83781D_REG_ALARM1) |
1907 (w83627hf_read_value(data, W83781D_REG_ALARM2) << 8) |
1908 (w83627hf_read_value(data, W83781D_REG_ALARM3) << 16);
1909 i = w83627hf_read_value(data, W83781D_REG_BEEP_INTS2);
Jean Delvare1c138102008-01-03 23:04:55 +01001910 data->beep_mask = (i << 8) |
Jean Delvare787c72b2007-05-08 17:22:00 +02001911 w83627hf_read_value(data, W83781D_REG_BEEP_INTS1) |
1912 w83627hf_read_value(data, W83781D_REG_BEEP_INTS3) << 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 data->last_updated = jiffies;
1914 data->valid = 1;
1915 }
1916
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001917 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 return data;
1920}
1921
Jean Delvare787c72b2007-05-08 17:22:00 +02001922static int __init w83627hf_device_add(unsigned short address,
1923 const struct w83627hf_sio_data *sio_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Jean Delvare787c72b2007-05-08 17:22:00 +02001925 struct resource res = {
1926 .start = address + WINB_REGION_OFFSET,
1927 .end = address + WINB_REGION_OFFSET + WINB_REGION_SIZE - 1,
1928 .name = DRVNAME,
1929 .flags = IORESOURCE_IO,
1930 };
1931 int err;
1932
Jean Delvareb9acb642009-01-07 16:37:35 +01001933 err = acpi_check_resource_conflict(&res);
1934 if (err)
1935 goto exit;
1936
Jean Delvare787c72b2007-05-08 17:22:00 +02001937 pdev = platform_device_alloc(DRVNAME, address);
1938 if (!pdev) {
1939 err = -ENOMEM;
Joe Perches18de0302010-10-20 06:51:55 +00001940 pr_err("Device allocation failed\n");
Jean Delvare787c72b2007-05-08 17:22:00 +02001941 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Jean Delvare787c72b2007-05-08 17:22:00 +02001944 err = platform_device_add_resources(pdev, &res, 1);
1945 if (err) {
Joe Perches18de0302010-10-20 06:51:55 +00001946 pr_err("Device resource addition failed (%d)\n", err);
Jean Delvare787c72b2007-05-08 17:22:00 +02001947 goto exit_device_put;
1948 }
1949
Jean Delvare2df6d812007-06-09 10:11:16 -04001950 err = platform_device_add_data(pdev, sio_data,
1951 sizeof(struct w83627hf_sio_data));
1952 if (err) {
Joe Perches18de0302010-10-20 06:51:55 +00001953 pr_err("Platform data allocation failed\n");
Jean Delvare787c72b2007-05-08 17:22:00 +02001954 goto exit_device_put;
1955 }
Jean Delvare787c72b2007-05-08 17:22:00 +02001956
1957 err = platform_device_add(pdev);
1958 if (err) {
Joe Perches18de0302010-10-20 06:51:55 +00001959 pr_err("Device addition failed (%d)\n", err);
Jean Delvare787c72b2007-05-08 17:22:00 +02001960 goto exit_device_put;
1961 }
1962
1963 return 0;
1964
1965exit_device_put:
1966 platform_device_put(pdev);
1967exit:
1968 return err;
1969}
1970
1971static int __init sensors_w83627hf_init(void)
1972{
1973 int err;
1974 unsigned short address;
1975 struct w83627hf_sio_data sio_data;
1976
1977 if (w83627hf_find(0x2e, &address, &sio_data)
1978 && w83627hf_find(0x4e, &address, &sio_data))
1979 return -ENODEV;
1980
1981 err = platform_driver_register(&w83627hf_driver);
1982 if (err)
1983 goto exit;
1984
1985 /* Sets global pdev as a side effect */
1986 err = w83627hf_device_add(address, &sio_data);
1987 if (err)
1988 goto exit_driver;
1989
1990 return 0;
1991
1992exit_driver:
1993 platform_driver_unregister(&w83627hf_driver);
1994exit:
1995 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
1998static void __exit sensors_w83627hf_exit(void)
1999{
Jean Delvare787c72b2007-05-08 17:22:00 +02002000 platform_device_unregister(pdev);
2001 platform_driver_unregister(&w83627hf_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002}
2003
2004MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
2005 "Philip Edelbrock <phil@netroedge.com>, "
2006 "and Mark Studebaker <mdsxyz123@yahoo.com>");
2007MODULE_DESCRIPTION("W83627HF driver");
2008MODULE_LICENSE("GPL");
2009
2010module_init(sensors_w83627hf_init);
2011module_exit(sensors_w83627hf_exit);