Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2 | * it87.c - Part of lm_sensors, Linux kernel modules for hardware |
| 3 | * monitoring. |
| 4 | * |
| 5 | * The IT8705F is an LPC-based Super I/O part that contains UARTs, a |
| 6 | * parallel port, an IR port, a MIDI port, a floppy controller, etc., in |
| 7 | * addition to an Environment Controller (Enhanced Hardware Monitor and |
| 8 | * Fan Controller) |
| 9 | * |
| 10 | * This driver supports only the Environment Controller in the IT8705F and |
| 11 | * similar parts. The other devices are supported by different drivers. |
| 12 | * |
| 13 | * Supports: IT8705F Super I/O chip w/LPC interface |
| 14 | * IT8712F Super I/O chip w/LPC interface |
| 15 | * IT8716F Super I/O chip w/LPC interface |
| 16 | * IT8718F Super I/O chip w/LPC interface |
| 17 | * IT8720F Super I/O chip w/LPC interface |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 18 | * IT8721F Super I/O chip w/LPC interface |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 19 | * IT8726F Super I/O chip w/LPC interface |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 20 | * IT8728F Super I/O chip w/LPC interface |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 21 | * IT8758E Super I/O chip w/LPC interface |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 22 | * IT8782F Super I/O chip w/LPC interface |
| 23 | * IT8783E/F Super I/O chip w/LPC interface |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 24 | * Sis950 A clone of the IT8705F |
| 25 | * |
| 26 | * Copyright (C) 2001 Chris Gauthron |
| 27 | * Copyright (C) 2005-2010 Jean Delvare <khali@linux-fr.org> |
| 28 | * |
| 29 | * This program is free software; you can redistribute it and/or modify |
| 30 | * it under the terms of the GNU General Public License as published by |
| 31 | * the Free Software Foundation; either version 2 of the License, or |
| 32 | * (at your option) any later version. |
| 33 | * |
| 34 | * This program is distributed in the hope that it will be useful, |
| 35 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 36 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 37 | * GNU General Public License for more details. |
| 38 | * |
| 39 | * You should have received a copy of the GNU General Public License |
| 40 | * along with this program; if not, write to the Free Software |
| 41 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 42 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 44 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/module.h> |
| 47 | #include <linux/init.h> |
| 48 | #include <linux/slab.h> |
| 49 | #include <linux/jiffies.h> |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 50 | #include <linux/platform_device.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 51 | #include <linux/hwmon.h> |
Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 52 | #include <linux/hwmon-sysfs.h> |
| 53 | #include <linux/hwmon-vid.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 54 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 55 | #include <linux/mutex.h> |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 56 | #include <linux/sysfs.h> |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 57 | #include <linux/string.h> |
| 58 | #include <linux/dmi.h> |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 59 | #include <linux/acpi.h> |
H Hartley Sweeten | 6055fae | 2009-09-15 17:18:13 +0200 | [diff] [blame] | 60 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 62 | #define DRVNAME "it87" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 64 | enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8782, |
| 65 | it8783 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Jean Delvare | 67b671b | 2007-12-06 23:13:42 +0100 | [diff] [blame] | 67 | static unsigned short force_id; |
| 68 | module_param(force_id, ushort, 0); |
| 69 | MODULE_PARM_DESC(force_id, "Override the detected device ID"); |
| 70 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 71 | static struct platform_device *pdev; |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define REG 0x2e /* The register to read/write */ |
| 74 | #define DEV 0x07 /* Register: Logical device select */ |
| 75 | #define VAL 0x2f /* The value to read/write */ |
| 76 | #define PME 0x04 /* The device with the fan registers in it */ |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 77 | |
| 78 | /* The device with the IT8718F/IT8720F VID value in it */ |
| 79 | #define GPIO 0x07 |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #define DEVID 0x20 /* Register: Device ID */ |
| 82 | #define DEVREV 0x22 /* Register: Device Revision */ |
| 83 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 84 | static inline int superio_inb(int reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
| 86 | outb(reg, REG); |
| 87 | return inb(VAL); |
| 88 | } |
| 89 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 90 | static inline void superio_outb(int reg, int val) |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 91 | { |
| 92 | outb(reg, REG); |
| 93 | outb(val, VAL); |
| 94 | } |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static int superio_inw(int reg) |
| 97 | { |
| 98 | int val; |
| 99 | outb(reg++, REG); |
| 100 | val = inb(VAL) << 8; |
| 101 | outb(reg, REG); |
| 102 | val |= inb(VAL); |
| 103 | return val; |
| 104 | } |
| 105 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 106 | static inline void superio_select(int ldn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | outb(DEV, REG); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 109 | outb(ldn, VAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 112 | static inline int superio_enter(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 114 | /* |
| 115 | * Try to reserve REG and REG + 1 for exclusive access. |
| 116 | */ |
| 117 | if (!request_muxed_region(REG, 2, DRVNAME)) |
| 118 | return -EBUSY; |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | outb(0x87, REG); |
| 121 | outb(0x01, REG); |
| 122 | outb(0x55, REG); |
| 123 | outb(0x55, REG); |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 124 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 127 | static inline void superio_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { |
| 129 | outb(0x02, REG); |
| 130 | outb(0x02, VAL); |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 131 | release_region(REG, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 134 | /* Logical device 4 registers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | #define IT8712F_DEVID 0x8712 |
| 136 | #define IT8705F_DEVID 0x8705 |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 137 | #define IT8716F_DEVID 0x8716 |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 138 | #define IT8718F_DEVID 0x8718 |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 139 | #define IT8720F_DEVID 0x8720 |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 140 | #define IT8721F_DEVID 0x8721 |
Rudolf Marek | 08a8f6e | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 141 | #define IT8726F_DEVID 0x8726 |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 142 | #define IT8728F_DEVID 0x8728 |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 143 | #define IT8782F_DEVID 0x8782 |
| 144 | #define IT8783E_DEVID 0x8783 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | #define IT87_ACT_REG 0x30 |
| 146 | #define IT87_BASE_REG 0x60 |
| 147 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 148 | /* Logical device 7 registers (IT8712F and later) */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 149 | #define IT87_SIO_GPIO1_REG 0x25 |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 150 | #define IT87_SIO_GPIO3_REG 0x27 |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 151 | #define IT87_SIO_GPIO5_REG 0x29 |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 152 | #define IT87_SIO_PINX1_REG 0x2a /* Pin selection */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 153 | #define IT87_SIO_PINX2_REG 0x2c /* Pin selection */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 154 | #define IT87_SIO_SPI_REG 0xef /* SPI function pin select */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 155 | #define IT87_SIO_VID_REG 0xfc /* VID value */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 156 | #define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /* Update battery voltage after every reading if true */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 159 | static bool update_vbat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* Not all BIOSes properly configure the PWM registers */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 162 | static bool fix_pwm_polarity; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* Many IT87 constants specified below */ |
| 165 | |
| 166 | /* Length of ISA address segment */ |
| 167 | #define IT87_EXTENT 8 |
| 168 | |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 169 | /* Length of ISA address segment for Environmental Controller */ |
| 170 | #define IT87_EC_EXTENT 2 |
| 171 | |
| 172 | /* Offset of EC registers from ISA base address */ |
| 173 | #define IT87_EC_OFFSET 5 |
| 174 | |
| 175 | /* Where are the ISA address/data registers relative to the EC base address */ |
| 176 | #define IT87_ADDR_REG_OFFSET 0 |
| 177 | #define IT87_DATA_REG_OFFSET 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | /*----- The IT87 registers -----*/ |
| 180 | |
| 181 | #define IT87_REG_CONFIG 0x00 |
| 182 | |
| 183 | #define IT87_REG_ALARM1 0x01 |
| 184 | #define IT87_REG_ALARM2 0x02 |
| 185 | #define IT87_REG_ALARM3 0x03 |
| 186 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 187 | /* |
| 188 | * The IT8718F and IT8720F have the VID value in a different register, in |
| 189 | * Super-I/O configuration space. |
| 190 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | #define IT87_REG_VID 0x0a |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 192 | /* |
| 193 | * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b |
| 194 | * for fan divisors. Later IT8712F revisions must use 16-bit tachometer |
| 195 | * mode. |
| 196 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | #define IT87_REG_FAN_DIV 0x0b |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 198 | #define IT87_REG_FAN_16BIT 0x0c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | /* Monitors: 9 voltage (0 to 7, battery), 3 temp (1 to 3), 3 fan (1 to 3) */ |
| 201 | |
Jean Delvare | c7f1f71 | 2007-09-03 17:11:46 +0200 | [diff] [blame] | 202 | static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82 }; |
| 203 | static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86 }; |
| 204 | static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83 }; |
| 205 | static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87 }; |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 206 | static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 }; |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #define IT87_REG_FAN_MAIN_CTRL 0x13 |
| 209 | #define IT87_REG_FAN_CTL 0x14 |
| 210 | #define IT87_REG_PWM(nr) (0x15 + (nr)) |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 211 | #define IT87_REG_PWM_DUTY(nr) (0x63 + (nr) * 8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | #define IT87_REG_VIN(nr) (0x20 + (nr)) |
| 214 | #define IT87_REG_TEMP(nr) (0x29 + (nr)) |
| 215 | |
| 216 | #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2) |
| 217 | #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2) |
| 218 | #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2) |
| 219 | #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2) |
| 220 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | #define IT87_REG_VIN_ENABLE 0x50 |
| 222 | #define IT87_REG_TEMP_ENABLE 0x51 |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 223 | #define IT87_REG_TEMP_EXTRA 0x55 |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 224 | #define IT87_REG_BEEP_ENABLE 0x5c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | #define IT87_REG_CHIPID 0x58 |
| 227 | |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 228 | #define IT87_REG_AUTO_TEMP(nr, i) (0x60 + (nr) * 8 + (i)) |
| 229 | #define IT87_REG_AUTO_PWM(nr, i) (0x65 + (nr) * 8 + (i)) |
| 230 | |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 231 | struct it87_devices { |
| 232 | const char *name; |
| 233 | u16 features; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 234 | u16 peci_mask; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | #define FEAT_12MV_ADC (1 << 0) |
| 238 | #define FEAT_NEWER_AUTOPWM (1 << 1) |
| 239 | #define FEAT_OLD_AUTOPWM (1 << 2) |
| 240 | #define FEAT_16BIT_FANS (1 << 3) |
| 241 | #define FEAT_TEMP_OFFSET (1 << 4) |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 242 | #define FEAT_TEMP_PECI (1 << 5) |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 243 | |
| 244 | static const struct it87_devices it87_devices[] = { |
| 245 | [it87] = { |
| 246 | .name = "it87", |
| 247 | .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */ |
| 248 | }, |
| 249 | [it8712] = { |
| 250 | .name = "it8712", |
| 251 | .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */ |
| 252 | }, |
| 253 | [it8716] = { |
| 254 | .name = "it8716", |
| 255 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET, |
| 256 | }, |
| 257 | [it8718] = { |
| 258 | .name = "it8718", |
| 259 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET, |
| 260 | }, |
| 261 | [it8720] = { |
| 262 | .name = "it8720", |
| 263 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET, |
| 264 | }, |
| 265 | [it8721] = { |
| 266 | .name = "it8721", |
| 267 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 268 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI, |
| 269 | .peci_mask = 0x05, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 270 | }, |
| 271 | [it8728] = { |
| 272 | .name = "it8728", |
| 273 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 274 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI, |
| 275 | .peci_mask = 0x07, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 276 | }, |
| 277 | [it8782] = { |
| 278 | .name = "it8782", |
| 279 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET, |
| 280 | }, |
| 281 | [it8783] = { |
| 282 | .name = "it8783", |
| 283 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET, |
| 284 | }, |
| 285 | }; |
| 286 | |
| 287 | #define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS) |
| 288 | #define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC) |
| 289 | #define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM) |
| 290 | #define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM) |
| 291 | #define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET) |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 292 | #define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \ |
| 293 | ((data)->peci_mask & (1 << nr))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 295 | struct it87_sio_data { |
| 296 | enum chips type; |
| 297 | /* Values read from Super-I/O config space */ |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 298 | u8 revision; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 299 | u8 vid_value; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 300 | u8 beep_pin; |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 301 | u8 internal; /* Internal sensors can be labeled */ |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 302 | /* Features skipped based on config or DMI */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 303 | u16 skip_in; |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 304 | u8 skip_vid; |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 305 | u8 skip_fan; |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 306 | u8 skip_pwm; |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 307 | u8 skip_temp; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 308 | }; |
| 309 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 310 | /* |
| 311 | * For each registered chip, we need to keep some data in memory. |
| 312 | * The structure is dynamically allocated. |
| 313 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | struct it87_data { |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 315 | struct device *hwmon_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | enum chips type; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 317 | u16 features; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 318 | u16 peci_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 320 | unsigned short addr; |
| 321 | const char *name; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 322 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | char valid; /* !=0 if following fields are valid */ |
| 324 | unsigned long last_updated; /* In jiffies */ |
| 325 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 326 | u16 in_scaled; /* Internal voltage sensors are scaled */ |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 327 | u8 in[9][3]; /* [nr][0]=in, [1]=min, [2]=max */ |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 328 | u8 has_fan; /* Bitfield, fans enabled */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 329 | u16 fan[5][2]; /* Register values, [nr][0]=fan, [1]=min */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 330 | u8 has_temp; /* Bitfield, temp sensors enabled */ |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 331 | s8 temp[3][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | u8 sensor; /* Register value */ |
| 333 | u8 fan_div[3]; /* Register encoding, shifted right */ |
| 334 | u8 vid; /* Register encoding, combined */ |
Jean Delvare | a7be58a | 2005-12-18 16:40:14 +0100 | [diff] [blame] | 335 | u8 vrm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | u32 alarms; /* Register encoding, combined */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 337 | u8 beeps; /* Register encoding */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | u8 fan_main_ctrl; /* Register value */ |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 339 | u8 fan_ctl; /* Register value */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 340 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 341 | /* |
| 342 | * The following 3 arrays correspond to the same registers up to |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 343 | * the IT8720F. The meaning of bits 6-0 depends on the value of bit |
| 344 | * 7, and we want to preserve settings on mode changes, so we have |
| 345 | * to track all values separately. |
| 346 | * Starting with the IT8721F, the manual PWM duty cycles are stored |
| 347 | * in separate registers (8-bit values), so the separate tracking |
| 348 | * is no longer needed, but it is still done to keep the driver |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 349 | * simple. |
| 350 | */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 351 | u8 pwm_ctrl[3]; /* Register value */ |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 352 | u8 pwm_duty[3]; /* Manual PWM value set by user */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 353 | u8 pwm_temp_map[3]; /* PWM to temp. chan. mapping (bits 1-0) */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 354 | |
| 355 | /* Automatic fan speed control registers */ |
| 356 | u8 auto_pwm[3][4]; /* [nr][3] is hard-coded */ |
| 357 | s8 auto_temp[3][5]; /* [nr][0] is point1_temp_hyst */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | }; |
| 359 | |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 360 | static int adc_lsb(const struct it87_data *data, int nr) |
| 361 | { |
| 362 | int lsb = has_12mv_adc(data) ? 12 : 16; |
| 363 | if (data->in_scaled & (1 << nr)) |
| 364 | lsb <<= 1; |
| 365 | return lsb; |
| 366 | } |
| 367 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 368 | static u8 in_to_reg(const struct it87_data *data, int nr, long val) |
| 369 | { |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 370 | val = DIV_ROUND_CLOSEST(val, adc_lsb(data, nr)); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 371 | return SENSORS_LIMIT(val, 0, 255); |
| 372 | } |
| 373 | |
| 374 | static int in_from_reg(const struct it87_data *data, int nr, int val) |
| 375 | { |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 376 | return val * adc_lsb(data, nr); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 377 | } |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 378 | |
| 379 | static inline u8 FAN_TO_REG(long rpm, int div) |
| 380 | { |
| 381 | if (rpm == 0) |
| 382 | return 255; |
| 383 | rpm = SENSORS_LIMIT(rpm, 1, 1000000); |
| 384 | return SENSORS_LIMIT((1350000 + rpm * div / 2) / (rpm * div), 1, |
| 385 | 254); |
| 386 | } |
| 387 | |
| 388 | static inline u16 FAN16_TO_REG(long rpm) |
| 389 | { |
| 390 | if (rpm == 0) |
| 391 | return 0xffff; |
| 392 | return SENSORS_LIMIT((1350000 + rpm) / (rpm * 2), 1, 0xfffe); |
| 393 | } |
| 394 | |
| 395 | #define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \ |
| 396 | 1350000 / ((val) * (div))) |
| 397 | /* The divider is fixed to 2 in 16-bit mode */ |
| 398 | #define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \ |
| 399 | 1350000 / ((val) * 2)) |
| 400 | |
| 401 | #define TEMP_TO_REG(val) (SENSORS_LIMIT(((val) < 0 ? (((val) - 500) / 1000) : \ |
| 402 | ((val) + 500) / 1000), -128, 127)) |
| 403 | #define TEMP_FROM_REG(val) ((val) * 1000) |
| 404 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 405 | static u8 pwm_to_reg(const struct it87_data *data, long val) |
| 406 | { |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 407 | if (has_newer_autopwm(data)) |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 408 | return val; |
| 409 | else |
| 410 | return val >> 1; |
| 411 | } |
| 412 | |
| 413 | static int pwm_from_reg(const struct it87_data *data, u8 reg) |
| 414 | { |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 415 | if (has_newer_autopwm(data)) |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 416 | return reg; |
| 417 | else |
| 418 | return (reg & 0x7f) << 1; |
| 419 | } |
| 420 | |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 421 | |
| 422 | static int DIV_TO_REG(int val) |
| 423 | { |
| 424 | int answer = 0; |
| 425 | while (answer < 7 && (val >>= 1)) |
| 426 | answer++; |
| 427 | return answer; |
| 428 | } |
| 429 | #define DIV_FROM_REG(val) (1 << (val)) |
| 430 | |
| 431 | static const unsigned int pwm_freq[8] = { |
| 432 | 48000000 / 128, |
| 433 | 24000000 / 128, |
| 434 | 12000000 / 128, |
| 435 | 8000000 / 128, |
| 436 | 6000000 / 128, |
| 437 | 3000000 / 128, |
| 438 | 1500000 / 128, |
| 439 | 750000 / 128, |
| 440 | }; |
| 441 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 442 | static int it87_probe(struct platform_device *pdev); |
Bill Pemberton | 281dfd0 | 2012-11-19 13:25:51 -0500 | [diff] [blame] | 443 | static int it87_remove(struct platform_device *pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 445 | static int it87_read_value(struct it87_data *data, u8 reg); |
| 446 | static void it87_write_value(struct it87_data *data, u8 reg, u8 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | static struct it87_data *it87_update_device(struct device *dev); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 448 | static int it87_check_pwm(struct device *dev); |
| 449 | static void it87_init_device(struct platform_device *pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
| 451 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 452 | static struct platform_driver it87_driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 453 | .driver = { |
Jean Delvare | 8721884 | 2006-09-03 22:36:14 +0200 | [diff] [blame] | 454 | .owner = THIS_MODULE, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 455 | .name = DRVNAME, |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 456 | }, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 457 | .probe = it87_probe, |
Bill Pemberton | 9e5e9b7 | 2012-11-19 13:21:20 -0500 | [diff] [blame] | 458 | .remove = it87_remove, |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 459 | }; |
| 460 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 461 | static ssize_t show_in(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 462 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | { |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 464 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 465 | int nr = sattr->nr; |
| 466 | int index = sattr->index; |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 467 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 469 | return sprintf(buf, "%d\n", in_from_reg(data, nr, data->in[nr][index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 472 | static ssize_t set_in(struct device *dev, struct device_attribute *attr, |
| 473 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | { |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 475 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 476 | int nr = sattr->nr; |
| 477 | int index = sattr->index; |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 478 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 479 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 480 | unsigned long val; |
| 481 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 482 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 483 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 485 | mutex_lock(&data->update_lock); |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 486 | data->in[nr][index] = in_to_reg(data, nr, val); |
| 487 | it87_write_value(data, |
| 488 | index == 1 ? IT87_REG_VIN_MIN(nr) |
| 489 | : IT87_REG_VIN_MAX(nr), |
| 490 | data->in[nr][index]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 491 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | return count; |
| 493 | } |
| 494 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 495 | static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0); |
| 496 | static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 497 | 0, 1); |
| 498 | static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 499 | 0, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 501 | static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0); |
| 502 | static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 503 | 1, 1); |
| 504 | static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 505 | 1, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 507 | static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0); |
| 508 | static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 509 | 2, 1); |
| 510 | static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 511 | 2, 2); |
| 512 | |
| 513 | static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0); |
| 514 | static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 515 | 3, 1); |
| 516 | static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 517 | 3, 2); |
| 518 | |
| 519 | static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0); |
| 520 | static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 521 | 4, 1); |
| 522 | static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 523 | 4, 2); |
| 524 | |
| 525 | static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0); |
| 526 | static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 527 | 5, 1); |
| 528 | static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 529 | 5, 2); |
| 530 | |
| 531 | static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0); |
| 532 | static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 533 | 6, 1); |
| 534 | static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 535 | 6, 2); |
| 536 | |
| 537 | static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0); |
| 538 | static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 539 | 7, 1); |
| 540 | static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 541 | 7, 2); |
| 542 | |
| 543 | static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | /* 3 temperatures */ |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 546 | static ssize_t show_temp(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 547 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 549 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 550 | int nr = sattr->nr; |
| 551 | int index = sattr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 553 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 554 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 556 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 557 | static ssize_t set_temp(struct device *dev, struct device_attribute *attr, |
| 558 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | { |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 560 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 561 | int nr = sattr->nr; |
| 562 | int index = sattr->index; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 563 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 564 | long val; |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 565 | u8 reg, regval; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 566 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 567 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 568 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 570 | mutex_lock(&data->update_lock); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 571 | |
| 572 | switch (index) { |
| 573 | default: |
| 574 | case 1: |
| 575 | reg = IT87_REG_TEMP_LOW(nr); |
| 576 | break; |
| 577 | case 2: |
| 578 | reg = IT87_REG_TEMP_HIGH(nr); |
| 579 | break; |
| 580 | case 3: |
| 581 | regval = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
| 582 | if (!(regval & 0x80)) { |
| 583 | regval |= 0x80; |
| 584 | it87_write_value(data, IT87_REG_BEEP_ENABLE, regval); |
| 585 | } |
| 586 | data->valid = 0; |
| 587 | reg = IT87_REG_TEMP_OFFSET[nr]; |
| 588 | break; |
| 589 | } |
| 590 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 591 | data->temp[nr][index] = TEMP_TO_REG(val); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 592 | it87_write_value(data, reg, data->temp[nr][index]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 593 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | return count; |
| 595 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 596 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 597 | static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0); |
| 598 | static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 599 | 0, 1); |
| 600 | static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 601 | 0, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 602 | static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp, |
| 603 | set_temp, 0, 3); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 604 | static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0); |
| 605 | static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 606 | 1, 1); |
| 607 | static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 608 | 1, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 609 | static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp, |
| 610 | set_temp, 1, 3); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 611 | static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0); |
| 612 | static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 613 | 2, 1); |
| 614 | static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 615 | 2, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 616 | static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp, |
| 617 | set_temp, 2, 3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 619 | static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr, |
| 620 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 622 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 623 | int nr = sensor_attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 625 | u8 reg = data->sensor; /* In case value is updated while used */ |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 626 | |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 627 | if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) |
| 628 | return sprintf(buf, "6\n"); /* Intel PECI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | if (reg & (1 << nr)) |
| 630 | return sprintf(buf, "3\n"); /* thermal diode */ |
| 631 | if (reg & (8 << nr)) |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 632 | return sprintf(buf, "4\n"); /* thermistor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | return sprintf(buf, "0\n"); /* disabled */ |
| 634 | } |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 635 | |
| 636 | static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr, |
| 637 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 639 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 640 | int nr = sensor_attr->index; |
| 641 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 642 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 643 | long val; |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 644 | u8 reg; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 645 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 646 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 647 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 649 | reg = it87_read_value(data, IT87_REG_TEMP_ENABLE); |
| 650 | reg &= ~(1 << nr); |
| 651 | reg &= ~(8 << nr); |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 652 | if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6)) |
| 653 | reg &= 0x3f; |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 654 | if (val == 2) { /* backwards compatibility */ |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 655 | dev_warn(dev, |
| 656 | "Sensor type 2 is deprecated, please use 4 instead\n"); |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 657 | val = 4; |
| 658 | } |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 659 | /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | if (val == 3) |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 661 | reg |= 1 << nr; |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 662 | else if (val == 4) |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 663 | reg |= 8 << nr; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 664 | else if (has_temp_peci(data, nr) && val == 6) |
| 665 | reg |= (nr + 1) << 6; |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 666 | else if (val != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | return -EINVAL; |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 668 | |
| 669 | mutex_lock(&data->update_lock); |
| 670 | data->sensor = reg; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 671 | it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor); |
Jean Delvare | 2b3d1d8 | 2010-04-14 16:14:10 +0200 | [diff] [blame] | 672 | data->valid = 0; /* Force cache refresh */ |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 673 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | return count; |
| 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 677 | static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 678 | set_temp_type, 0); |
| 679 | static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 680 | set_temp_type, 1); |
| 681 | static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 682 | set_temp_type, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
| 684 | /* 3 Fans */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 685 | |
| 686 | static int pwm_mode(const struct it87_data *data, int nr) |
| 687 | { |
| 688 | int ctrl = data->fan_main_ctrl & (1 << nr); |
| 689 | |
| 690 | if (ctrl == 0) /* Full speed */ |
| 691 | return 0; |
| 692 | if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */ |
| 693 | return 2; |
| 694 | else /* Manual mode */ |
| 695 | return 1; |
| 696 | } |
| 697 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 698 | static ssize_t show_fan(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 699 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | { |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 701 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 702 | int nr = sattr->nr; |
| 703 | int index = sattr->index; |
| 704 | int speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 706 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 707 | speed = has_16bit_fans(data) ? |
| 708 | FAN16_FROM_REG(data->fan[nr][index]) : |
| 709 | FAN_FROM_REG(data->fan[nr][index], |
| 710 | DIV_FROM_REG(data->fan_div[nr])); |
| 711 | return sprintf(buf, "%d\n", speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 713 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 714 | static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr, |
| 715 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 717 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 718 | int nr = sensor_attr->index; |
| 719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | struct it87_data *data = it87_update_device(dev); |
| 721 | return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr])); |
| 722 | } |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 723 | static ssize_t show_pwm_enable(struct device *dev, |
| 724 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 726 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 727 | int nr = sensor_attr->index; |
| 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 730 | return sprintf(buf, "%d\n", pwm_mode(data, nr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 732 | static ssize_t show_pwm(struct device *dev, struct device_attribute *attr, |
| 733 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 735 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 736 | int nr = sensor_attr->index; |
| 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 739 | return sprintf(buf, "%d\n", |
| 740 | pwm_from_reg(data, data->pwm_duty[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 742 | static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr, |
| 743 | char *buf) |
| 744 | { |
| 745 | struct it87_data *data = it87_update_device(dev); |
| 746 | int index = (data->fan_ctl >> 4) & 0x07; |
| 747 | |
| 748 | return sprintf(buf, "%u\n", pwm_freq[index]); |
| 749 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 750 | |
| 751 | static ssize_t set_fan(struct device *dev, struct device_attribute *attr, |
| 752 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 754 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 755 | int nr = sattr->nr; |
| 756 | int index = sattr->index; |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 757 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 758 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 759 | long val; |
Jean Delvare | 7f999aa | 2007-02-14 21:15:03 +0100 | [diff] [blame] | 760 | u8 reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 762 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 763 | return -EINVAL; |
| 764 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 765 | mutex_lock(&data->update_lock); |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 766 | |
| 767 | if (has_16bit_fans(data)) { |
| 768 | data->fan[nr][index] = FAN16_TO_REG(val); |
| 769 | it87_write_value(data, IT87_REG_FAN_MIN[nr], |
| 770 | data->fan[nr][index] & 0xff); |
| 771 | it87_write_value(data, IT87_REG_FANX_MIN[nr], |
| 772 | data->fan[nr][index] >> 8); |
| 773 | } else { |
| 774 | reg = it87_read_value(data, IT87_REG_FAN_DIV); |
| 775 | switch (nr) { |
| 776 | case 0: |
| 777 | data->fan_div[nr] = reg & 0x07; |
| 778 | break; |
| 779 | case 1: |
| 780 | data->fan_div[nr] = (reg >> 3) & 0x07; |
| 781 | break; |
| 782 | case 2: |
| 783 | data->fan_div[nr] = (reg & 0x40) ? 3 : 1; |
| 784 | break; |
| 785 | } |
| 786 | data->fan[nr][index] = |
| 787 | FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr])); |
| 788 | it87_write_value(data, IT87_REG_FAN_MIN[nr], |
| 789 | data->fan[nr][index]); |
Jean Delvare | 07eab46 | 2005-11-23 15:44:31 -0800 | [diff] [blame] | 790 | } |
| 791 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 792 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | return count; |
| 794 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 795 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 796 | static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr, |
| 797 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 799 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 800 | int nr = sensor_attr->index; |
| 801 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 802 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 803 | unsigned long val; |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 804 | int min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | u8 old; |
| 806 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 807 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 808 | return -EINVAL; |
| 809 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 810 | mutex_lock(&data->update_lock); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 811 | old = it87_read_value(data, IT87_REG_FAN_DIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 813 | /* Save fan min limit */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 814 | min = FAN_FROM_REG(data->fan[nr][1], DIV_FROM_REG(data->fan_div[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
| 816 | switch (nr) { |
| 817 | case 0: |
| 818 | case 1: |
| 819 | data->fan_div[nr] = DIV_TO_REG(val); |
| 820 | break; |
| 821 | case 2: |
| 822 | if (val < 8) |
| 823 | data->fan_div[nr] = 1; |
| 824 | else |
| 825 | data->fan_div[nr] = 3; |
| 826 | } |
| 827 | val = old & 0x80; |
| 828 | val |= (data->fan_div[0] & 0x07); |
| 829 | val |= (data->fan_div[1] & 0x07) << 3; |
| 830 | if (data->fan_div[2] == 3) |
| 831 | val |= 0x1 << 6; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 832 | it87_write_value(data, IT87_REG_FAN_DIV, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 834 | /* Restore fan min limit */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 835 | data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); |
| 836 | it87_write_value(data, IT87_REG_FAN_MIN[nr], data->fan[nr][1]); |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 837 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 838 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | return count; |
| 840 | } |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 841 | |
| 842 | /* Returns 0 if OK, -EINVAL otherwise */ |
| 843 | static int check_trip_points(struct device *dev, int nr) |
| 844 | { |
| 845 | const struct it87_data *data = dev_get_drvdata(dev); |
| 846 | int i, err = 0; |
| 847 | |
| 848 | if (has_old_autopwm(data)) { |
| 849 | for (i = 0; i < 3; i++) { |
| 850 | if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1]) |
| 851 | err = -EINVAL; |
| 852 | } |
| 853 | for (i = 0; i < 2; i++) { |
| 854 | if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1]) |
| 855 | err = -EINVAL; |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | if (err) { |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 860 | dev_err(dev, |
| 861 | "Inconsistent trip points, not switching to automatic mode\n"); |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 862 | dev_err(dev, "Adjust the trip points and try again\n"); |
| 863 | } |
| 864 | return err; |
| 865 | } |
| 866 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 867 | static ssize_t set_pwm_enable(struct device *dev, |
| 868 | struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 870 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 871 | int nr = sensor_attr->index; |
| 872 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 873 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 874 | long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 876 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2) |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 877 | return -EINVAL; |
| 878 | |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 879 | /* Check trip points before switching to automatic mode */ |
| 880 | if (val == 2) { |
| 881 | if (check_trip_points(dev, nr) < 0) |
| 882 | return -EINVAL; |
| 883 | } |
| 884 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 885 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
| 887 | if (val == 0) { |
| 888 | int tmp; |
| 889 | /* make sure the fan is on when in on/off mode */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 890 | tmp = it87_read_value(data, IT87_REG_FAN_CTL); |
| 891 | it87_write_value(data, IT87_REG_FAN_CTL, tmp | (1 << nr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | /* set on/off mode */ |
| 893 | data->fan_main_ctrl &= ~(1 << nr); |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 894 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 895 | data->fan_main_ctrl); |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 896 | } else { |
| 897 | if (val == 1) /* Manual mode */ |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 898 | data->pwm_ctrl[nr] = has_newer_autopwm(data) ? |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 899 | data->pwm_temp_map[nr] : |
| 900 | data->pwm_duty[nr]; |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 901 | else /* Automatic mode */ |
| 902 | data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr]; |
| 903 | it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | /* set SmartGuardian mode */ |
| 905 | data->fan_main_ctrl |= (1 << nr); |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 906 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 907 | data->fan_main_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | } |
| 909 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 910 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | return count; |
| 912 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 913 | static ssize_t set_pwm(struct device *dev, struct device_attribute *attr, |
| 914 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 916 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 917 | int nr = sensor_attr->index; |
| 918 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 919 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 920 | long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 922 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | return -EINVAL; |
| 924 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 925 | mutex_lock(&data->update_lock); |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 926 | if (has_newer_autopwm(data)) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 927 | /* |
| 928 | * If we are in automatic mode, the PWM duty cycle register |
| 929 | * is read-only so we can't write the value. |
| 930 | */ |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 931 | if (data->pwm_ctrl[nr] & 0x80) { |
| 932 | mutex_unlock(&data->update_lock); |
| 933 | return -EBUSY; |
| 934 | } |
| 935 | data->pwm_duty[nr] = pwm_to_reg(data, val); |
| 936 | it87_write_value(data, IT87_REG_PWM_DUTY(nr), |
| 937 | data->pwm_duty[nr]); |
| 938 | } else { |
| 939 | data->pwm_duty[nr] = pwm_to_reg(data, val); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 940 | /* |
| 941 | * If we are in manual mode, write the duty cycle immediately; |
| 942 | * otherwise, just store it for later use. |
| 943 | */ |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 944 | if (!(data->pwm_ctrl[nr] & 0x80)) { |
| 945 | data->pwm_ctrl[nr] = data->pwm_duty[nr]; |
| 946 | it87_write_value(data, IT87_REG_PWM(nr), |
| 947 | data->pwm_ctrl[nr]); |
| 948 | } |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 949 | } |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 950 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | return count; |
| 952 | } |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 953 | static ssize_t set_pwm_freq(struct device *dev, |
| 954 | struct device_attribute *attr, const char *buf, size_t count) |
| 955 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 956 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 957 | unsigned long val; |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 958 | int i; |
| 959 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 960 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 961 | return -EINVAL; |
| 962 | |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 963 | /* Search for the nearest available frequency */ |
| 964 | for (i = 0; i < 7; i++) { |
| 965 | if (val > (pwm_freq[i] + pwm_freq[i+1]) / 2) |
| 966 | break; |
| 967 | } |
| 968 | |
| 969 | mutex_lock(&data->update_lock); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 970 | data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f; |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 971 | data->fan_ctl |= i << 4; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 972 | it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl); |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 973 | mutex_unlock(&data->update_lock); |
| 974 | |
| 975 | return count; |
| 976 | } |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 977 | static ssize_t show_pwm_temp_map(struct device *dev, |
| 978 | struct device_attribute *attr, char *buf) |
| 979 | { |
| 980 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 981 | int nr = sensor_attr->index; |
| 982 | |
| 983 | struct it87_data *data = it87_update_device(dev); |
| 984 | int map; |
| 985 | |
| 986 | if (data->pwm_temp_map[nr] < 3) |
| 987 | map = 1 << data->pwm_temp_map[nr]; |
| 988 | else |
| 989 | map = 0; /* Should never happen */ |
| 990 | return sprintf(buf, "%d\n", map); |
| 991 | } |
| 992 | static ssize_t set_pwm_temp_map(struct device *dev, |
| 993 | struct device_attribute *attr, const char *buf, size_t count) |
| 994 | { |
| 995 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 996 | int nr = sensor_attr->index; |
| 997 | |
| 998 | struct it87_data *data = dev_get_drvdata(dev); |
| 999 | long val; |
| 1000 | u8 reg; |
| 1001 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1002 | /* |
| 1003 | * This check can go away if we ever support automatic fan speed |
| 1004 | * control on newer chips. |
| 1005 | */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1006 | if (!has_old_autopwm(data)) { |
| 1007 | dev_notice(dev, "Mapping change disabled for safety reasons\n"); |
| 1008 | return -EINVAL; |
| 1009 | } |
| 1010 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1011 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1012 | return -EINVAL; |
| 1013 | |
| 1014 | switch (val) { |
| 1015 | case (1 << 0): |
| 1016 | reg = 0x00; |
| 1017 | break; |
| 1018 | case (1 << 1): |
| 1019 | reg = 0x01; |
| 1020 | break; |
| 1021 | case (1 << 2): |
| 1022 | reg = 0x02; |
| 1023 | break; |
| 1024 | default: |
| 1025 | return -EINVAL; |
| 1026 | } |
| 1027 | |
| 1028 | mutex_lock(&data->update_lock); |
| 1029 | data->pwm_temp_map[nr] = reg; |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1030 | /* |
| 1031 | * If we are in automatic mode, write the temp mapping immediately; |
| 1032 | * otherwise, just store it for later use. |
| 1033 | */ |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1034 | if (data->pwm_ctrl[nr] & 0x80) { |
| 1035 | data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr]; |
| 1036 | it87_write_value(data, IT87_REG_PWM(nr), data->pwm_ctrl[nr]); |
| 1037 | } |
| 1038 | mutex_unlock(&data->update_lock); |
| 1039 | return count; |
| 1040 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1042 | static ssize_t show_auto_pwm(struct device *dev, |
| 1043 | struct device_attribute *attr, char *buf) |
| 1044 | { |
| 1045 | struct it87_data *data = it87_update_device(dev); |
| 1046 | struct sensor_device_attribute_2 *sensor_attr = |
| 1047 | to_sensor_dev_attr_2(attr); |
| 1048 | int nr = sensor_attr->nr; |
| 1049 | int point = sensor_attr->index; |
| 1050 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1051 | return sprintf(buf, "%d\n", |
| 1052 | pwm_from_reg(data, data->auto_pwm[nr][point])); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | static ssize_t set_auto_pwm(struct device *dev, |
| 1056 | struct device_attribute *attr, const char *buf, size_t count) |
| 1057 | { |
| 1058 | struct it87_data *data = dev_get_drvdata(dev); |
| 1059 | struct sensor_device_attribute_2 *sensor_attr = |
| 1060 | to_sensor_dev_attr_2(attr); |
| 1061 | int nr = sensor_attr->nr; |
| 1062 | int point = sensor_attr->index; |
| 1063 | long val; |
| 1064 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1065 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1066 | return -EINVAL; |
| 1067 | |
| 1068 | mutex_lock(&data->update_lock); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1069 | data->auto_pwm[nr][point] = pwm_to_reg(data, val); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1070 | it87_write_value(data, IT87_REG_AUTO_PWM(nr, point), |
| 1071 | data->auto_pwm[nr][point]); |
| 1072 | mutex_unlock(&data->update_lock); |
| 1073 | return count; |
| 1074 | } |
| 1075 | |
| 1076 | static ssize_t show_auto_temp(struct device *dev, |
| 1077 | struct device_attribute *attr, char *buf) |
| 1078 | { |
| 1079 | struct it87_data *data = it87_update_device(dev); |
| 1080 | struct sensor_device_attribute_2 *sensor_attr = |
| 1081 | to_sensor_dev_attr_2(attr); |
| 1082 | int nr = sensor_attr->nr; |
| 1083 | int point = sensor_attr->index; |
| 1084 | |
| 1085 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->auto_temp[nr][point])); |
| 1086 | } |
| 1087 | |
| 1088 | static ssize_t set_auto_temp(struct device *dev, |
| 1089 | struct device_attribute *attr, const char *buf, size_t count) |
| 1090 | { |
| 1091 | struct it87_data *data = dev_get_drvdata(dev); |
| 1092 | struct sensor_device_attribute_2 *sensor_attr = |
| 1093 | to_sensor_dev_attr_2(attr); |
| 1094 | int nr = sensor_attr->nr; |
| 1095 | int point = sensor_attr->index; |
| 1096 | long val; |
| 1097 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1098 | if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1099 | return -EINVAL; |
| 1100 | |
| 1101 | mutex_lock(&data->update_lock); |
| 1102 | data->auto_temp[nr][point] = TEMP_TO_REG(val); |
| 1103 | it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), |
| 1104 | data->auto_temp[nr][point]); |
| 1105 | mutex_unlock(&data->update_lock); |
| 1106 | return count; |
| 1107 | } |
| 1108 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1109 | static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0); |
| 1110 | static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1111 | 0, 1); |
| 1112 | static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1113 | set_fan_div, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1115 | static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0); |
| 1116 | static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1117 | 1, 1); |
| 1118 | static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1119 | set_fan_div, 1); |
| 1120 | |
| 1121 | static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0); |
| 1122 | static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1123 | 2, 1); |
| 1124 | static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1125 | set_fan_div, 2); |
| 1126 | |
| 1127 | static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0); |
| 1128 | static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1129 | 3, 1); |
| 1130 | |
| 1131 | static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0); |
| 1132 | static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1133 | 4, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1135 | static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, |
| 1136 | show_pwm_enable, set_pwm_enable, 0); |
| 1137 | static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0); |
| 1138 | static DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, set_pwm_freq); |
| 1139 | static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 1140 | show_pwm_temp_map, set_pwm_temp_map, 0); |
| 1141 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1142 | show_auto_pwm, set_auto_pwm, 0, 0); |
| 1143 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1144 | show_auto_pwm, set_auto_pwm, 0, 1); |
| 1145 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1146 | show_auto_pwm, set_auto_pwm, 0, 2); |
| 1147 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO, |
| 1148 | show_auto_pwm, NULL, 0, 3); |
| 1149 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1150 | show_auto_temp, set_auto_temp, 0, 1); |
| 1151 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1152 | show_auto_temp, set_auto_temp, 0, 0); |
| 1153 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1154 | show_auto_temp, set_auto_temp, 0, 2); |
| 1155 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1156 | show_auto_temp, set_auto_temp, 0, 3); |
| 1157 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1158 | show_auto_temp, set_auto_temp, 0, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1160 | static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR, |
| 1161 | show_pwm_enable, set_pwm_enable, 1); |
| 1162 | static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1); |
| 1163 | static DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, NULL); |
| 1164 | static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 1165 | show_pwm_temp_map, set_pwm_temp_map, 1); |
| 1166 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1167 | show_auto_pwm, set_auto_pwm, 1, 0); |
| 1168 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1169 | show_auto_pwm, set_auto_pwm, 1, 1); |
| 1170 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1171 | show_auto_pwm, set_auto_pwm, 1, 2); |
| 1172 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO, |
| 1173 | show_auto_pwm, NULL, 1, 3); |
| 1174 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1175 | show_auto_temp, set_auto_temp, 1, 1); |
| 1176 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1177 | show_auto_temp, set_auto_temp, 1, 0); |
| 1178 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1179 | show_auto_temp, set_auto_temp, 1, 2); |
| 1180 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1181 | show_auto_temp, set_auto_temp, 1, 3); |
| 1182 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1183 | show_auto_temp, set_auto_temp, 1, 4); |
| 1184 | |
| 1185 | static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR, |
| 1186 | show_pwm_enable, set_pwm_enable, 2); |
| 1187 | static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2); |
| 1188 | static DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL); |
| 1189 | static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 1190 | show_pwm_temp_map, set_pwm_temp_map, 2); |
| 1191 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1192 | show_auto_pwm, set_auto_pwm, 2, 0); |
| 1193 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1194 | show_auto_pwm, set_auto_pwm, 2, 1); |
| 1195 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1196 | show_auto_pwm, set_auto_pwm, 2, 2); |
| 1197 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO, |
| 1198 | show_auto_pwm, NULL, 2, 3); |
| 1199 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1200 | show_auto_temp, set_auto_temp, 2, 1); |
| 1201 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1202 | show_auto_temp, set_auto_temp, 2, 0); |
| 1203 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1204 | show_auto_temp, set_auto_temp, 2, 2); |
| 1205 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1206 | show_auto_temp, set_auto_temp, 2, 3); |
| 1207 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1208 | show_auto_temp, set_auto_temp, 2, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
| 1210 | /* Alarms */ |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1211 | static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, |
| 1212 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | { |
| 1214 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 68188ba | 2005-05-16 18:52:38 +0200 | [diff] [blame] | 1215 | return sprintf(buf, "%u\n", data->alarms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | } |
Jean Delvare | 1d66c64 | 2005-04-18 21:16:59 -0700 | [diff] [blame] | 1217 | static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1219 | static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, |
| 1220 | char *buf) |
| 1221 | { |
| 1222 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1223 | struct it87_data *data = it87_update_device(dev); |
| 1224 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); |
| 1225 | } |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1226 | |
| 1227 | static ssize_t clear_intrusion(struct device *dev, struct device_attribute |
| 1228 | *attr, const char *buf, size_t count) |
| 1229 | { |
| 1230 | struct it87_data *data = dev_get_drvdata(dev); |
| 1231 | long val; |
| 1232 | int config; |
| 1233 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1234 | if (kstrtol(buf, 10, &val) < 0 || val != 0) |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1235 | return -EINVAL; |
| 1236 | |
| 1237 | mutex_lock(&data->update_lock); |
| 1238 | config = it87_read_value(data, IT87_REG_CONFIG); |
| 1239 | if (config < 0) { |
| 1240 | count = config; |
| 1241 | } else { |
| 1242 | config |= 1 << 5; |
| 1243 | it87_write_value(data, IT87_REG_CONFIG, config); |
| 1244 | /* Invalidate cache to force re-read */ |
| 1245 | data->valid = 0; |
| 1246 | } |
| 1247 | mutex_unlock(&data->update_lock); |
| 1248 | |
| 1249 | return count; |
| 1250 | } |
| 1251 | |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1252 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8); |
| 1253 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9); |
| 1254 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10); |
| 1255 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11); |
| 1256 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12); |
| 1257 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13); |
| 1258 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14); |
| 1259 | static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15); |
| 1260 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0); |
| 1261 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1); |
| 1262 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2); |
| 1263 | static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 1264 | static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6); |
| 1265 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16); |
| 1266 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17); |
| 1267 | static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18); |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1268 | static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR, |
| 1269 | show_alarm, clear_intrusion, 4); |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1270 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1271 | static ssize_t show_beep(struct device *dev, struct device_attribute *attr, |
| 1272 | char *buf) |
| 1273 | { |
| 1274 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1275 | struct it87_data *data = it87_update_device(dev); |
| 1276 | return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1); |
| 1277 | } |
| 1278 | static ssize_t set_beep(struct device *dev, struct device_attribute *attr, |
| 1279 | const char *buf, size_t count) |
| 1280 | { |
| 1281 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1282 | struct it87_data *data = dev_get_drvdata(dev); |
| 1283 | long val; |
| 1284 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1285 | if (kstrtol(buf, 10, &val) < 0 |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1286 | || (val != 0 && val != 1)) |
| 1287 | return -EINVAL; |
| 1288 | |
| 1289 | mutex_lock(&data->update_lock); |
| 1290 | data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
| 1291 | if (val) |
| 1292 | data->beeps |= (1 << bitnr); |
| 1293 | else |
| 1294 | data->beeps &= ~(1 << bitnr); |
| 1295 | it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps); |
| 1296 | mutex_unlock(&data->update_lock); |
| 1297 | return count; |
| 1298 | } |
| 1299 | |
| 1300 | static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR, |
| 1301 | show_beep, set_beep, 1); |
| 1302 | static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1); |
| 1303 | static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1); |
| 1304 | static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1); |
| 1305 | static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1); |
| 1306 | static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1); |
| 1307 | static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1); |
| 1308 | static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1); |
| 1309 | /* fanX_beep writability is set later */ |
| 1310 | static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1311 | static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1312 | static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1313 | static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1314 | static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1315 | static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR, |
| 1316 | show_beep, set_beep, 2); |
| 1317 | static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2); |
| 1318 | static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2); |
| 1319 | |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1320 | static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr, |
| 1321 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | { |
Jean Delvare | 90d6619 | 2007-10-08 18:24:35 +0200 | [diff] [blame] | 1323 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | a7be58a | 2005-12-18 16:40:14 +0100 | [diff] [blame] | 1324 | return sprintf(buf, "%u\n", data->vrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | } |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1326 | static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr, |
| 1327 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1329 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1330 | unsigned long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1332 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1333 | return -EINVAL; |
| 1334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | data->vrm = val; |
| 1336 | |
| 1337 | return count; |
| 1338 | } |
| 1339 | static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1341 | static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr, |
| 1342 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | { |
| 1344 | struct it87_data *data = it87_update_device(dev); |
| 1345 | return sprintf(buf, "%ld\n", (long) vid_from_reg(data->vid, data->vrm)); |
| 1346 | } |
| 1347 | static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL); |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1348 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1349 | static ssize_t show_label(struct device *dev, struct device_attribute *attr, |
| 1350 | char *buf) |
| 1351 | { |
Guenter Roeck | 3c4c497 | 2012-01-20 09:29:44 -0800 | [diff] [blame] | 1352 | static const char * const labels[] = { |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1353 | "+5V", |
| 1354 | "5VSB", |
| 1355 | "Vbat", |
| 1356 | }; |
Guenter Roeck | 3c4c497 | 2012-01-20 09:29:44 -0800 | [diff] [blame] | 1357 | static const char * const labels_it8721[] = { |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1358 | "+3.3V", |
| 1359 | "3VSB", |
| 1360 | "Vbat", |
| 1361 | }; |
| 1362 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1363 | int nr = to_sensor_dev_attr(attr)->index; |
| 1364 | |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1365 | return sprintf(buf, "%s\n", has_12mv_adc(data) ? labels_it8721[nr] |
| 1366 | : labels[nr]); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1367 | } |
| 1368 | static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0); |
| 1369 | static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1); |
| 1370 | static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2); |
| 1371 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1372 | static ssize_t show_name(struct device *dev, struct device_attribute |
| 1373 | *devattr, char *buf) |
| 1374 | { |
| 1375 | struct it87_data *data = dev_get_drvdata(dev); |
| 1376 | return sprintf(buf, "%s\n", data->name); |
| 1377 | } |
| 1378 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 1379 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1380 | static struct attribute *it87_attributes_in[9][5] = { |
| 1381 | { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1382 | &sensor_dev_attr_in0_input.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1383 | &sensor_dev_attr_in0_min.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1384 | &sensor_dev_attr_in0_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1385 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1386 | NULL |
| 1387 | }, { |
| 1388 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 1389 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 1390 | &sensor_dev_attr_in1_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1391 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1392 | NULL |
| 1393 | }, { |
| 1394 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 1395 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 1396 | &sensor_dev_attr_in2_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1397 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1398 | NULL |
| 1399 | }, { |
| 1400 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 1401 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 1402 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1403 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1404 | NULL |
| 1405 | }, { |
| 1406 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 1407 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 1408 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1409 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1410 | NULL |
| 1411 | }, { |
| 1412 | &sensor_dev_attr_in5_input.dev_attr.attr, |
| 1413 | &sensor_dev_attr_in5_min.dev_attr.attr, |
| 1414 | &sensor_dev_attr_in5_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1415 | &sensor_dev_attr_in5_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1416 | NULL |
| 1417 | }, { |
| 1418 | &sensor_dev_attr_in6_input.dev_attr.attr, |
| 1419 | &sensor_dev_attr_in6_min.dev_attr.attr, |
| 1420 | &sensor_dev_attr_in6_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1421 | &sensor_dev_attr_in6_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1422 | NULL |
| 1423 | }, { |
| 1424 | &sensor_dev_attr_in7_input.dev_attr.attr, |
| 1425 | &sensor_dev_attr_in7_min.dev_attr.attr, |
| 1426 | &sensor_dev_attr_in7_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1427 | &sensor_dev_attr_in7_alarm.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1428 | NULL |
| 1429 | }, { |
| 1430 | &sensor_dev_attr_in8_input.dev_attr.attr, |
| 1431 | NULL |
| 1432 | } }; |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1433 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1434 | static const struct attribute_group it87_group_in[9] = { |
| 1435 | { .attrs = it87_attributes_in[0] }, |
| 1436 | { .attrs = it87_attributes_in[1] }, |
| 1437 | { .attrs = it87_attributes_in[2] }, |
| 1438 | { .attrs = it87_attributes_in[3] }, |
| 1439 | { .attrs = it87_attributes_in[4] }, |
| 1440 | { .attrs = it87_attributes_in[5] }, |
| 1441 | { .attrs = it87_attributes_in[6] }, |
| 1442 | { .attrs = it87_attributes_in[7] }, |
| 1443 | { .attrs = it87_attributes_in[8] }, |
| 1444 | }; |
| 1445 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1446 | static struct attribute *it87_attributes_temp[3][6] = { |
| 1447 | { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1448 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1449 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1450 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1451 | &sensor_dev_attr_temp1_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1452 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1453 | NULL |
| 1454 | } , { |
| 1455 | &sensor_dev_attr_temp2_input.dev_attr.attr, |
| 1456 | &sensor_dev_attr_temp2_max.dev_attr.attr, |
| 1457 | &sensor_dev_attr_temp2_min.dev_attr.attr, |
| 1458 | &sensor_dev_attr_temp2_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1459 | &sensor_dev_attr_temp2_alarm.dev_attr.attr, |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1460 | NULL |
| 1461 | } , { |
| 1462 | &sensor_dev_attr_temp3_input.dev_attr.attr, |
| 1463 | &sensor_dev_attr_temp3_max.dev_attr.attr, |
| 1464 | &sensor_dev_attr_temp3_min.dev_attr.attr, |
| 1465 | &sensor_dev_attr_temp3_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1466 | &sensor_dev_attr_temp3_alarm.dev_attr.attr, |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1467 | NULL |
| 1468 | } }; |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1469 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1470 | static const struct attribute_group it87_group_temp[3] = { |
| 1471 | { .attrs = it87_attributes_temp[0] }, |
| 1472 | { .attrs = it87_attributes_temp[1] }, |
| 1473 | { .attrs = it87_attributes_temp[2] }, |
| 1474 | }; |
| 1475 | |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1476 | static struct attribute *it87_attributes_temp_offset[] = { |
| 1477 | &sensor_dev_attr_temp1_offset.dev_attr.attr, |
| 1478 | &sensor_dev_attr_temp2_offset.dev_attr.attr, |
| 1479 | &sensor_dev_attr_temp3_offset.dev_attr.attr, |
| 1480 | }; |
| 1481 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1482 | static struct attribute *it87_attributes[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1483 | &dev_attr_alarms.attr, |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1484 | &sensor_dev_attr_intrusion0_alarm.dev_attr.attr, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1485 | &dev_attr_name.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1486 | NULL |
| 1487 | }; |
| 1488 | |
| 1489 | static const struct attribute_group it87_group = { |
| 1490 | .attrs = it87_attributes, |
| 1491 | }; |
| 1492 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1493 | static struct attribute *it87_attributes_in_beep[] = { |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1494 | &sensor_dev_attr_in0_beep.dev_attr.attr, |
| 1495 | &sensor_dev_attr_in1_beep.dev_attr.attr, |
| 1496 | &sensor_dev_attr_in2_beep.dev_attr.attr, |
| 1497 | &sensor_dev_attr_in3_beep.dev_attr.attr, |
| 1498 | &sensor_dev_attr_in4_beep.dev_attr.attr, |
| 1499 | &sensor_dev_attr_in5_beep.dev_attr.attr, |
| 1500 | &sensor_dev_attr_in6_beep.dev_attr.attr, |
| 1501 | &sensor_dev_attr_in7_beep.dev_attr.attr, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1502 | NULL |
| 1503 | }; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1504 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1505 | static struct attribute *it87_attributes_temp_beep[] = { |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1506 | &sensor_dev_attr_temp1_beep.dev_attr.attr, |
| 1507 | &sensor_dev_attr_temp2_beep.dev_attr.attr, |
| 1508 | &sensor_dev_attr_temp3_beep.dev_attr.attr, |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1509 | }; |
| 1510 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1511 | static struct attribute *it87_attributes_fan[5][3+1] = { { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1512 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 1513 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1514 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
| 1515 | NULL |
| 1516 | }, { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1517 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 1518 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1519 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
| 1520 | NULL |
| 1521 | }, { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1522 | &sensor_dev_attr_fan3_input.dev_attr.attr, |
| 1523 | &sensor_dev_attr_fan3_min.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1524 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1525 | NULL |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1526 | }, { |
| 1527 | &sensor_dev_attr_fan4_input.dev_attr.attr, |
| 1528 | &sensor_dev_attr_fan4_min.dev_attr.attr, |
| 1529 | &sensor_dev_attr_fan4_alarm.dev_attr.attr, |
| 1530 | NULL |
| 1531 | }, { |
| 1532 | &sensor_dev_attr_fan5_input.dev_attr.attr, |
| 1533 | &sensor_dev_attr_fan5_min.dev_attr.attr, |
| 1534 | &sensor_dev_attr_fan5_alarm.dev_attr.attr, |
| 1535 | NULL |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1536 | } }; |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1537 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1538 | static const struct attribute_group it87_group_fan[5] = { |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1539 | { .attrs = it87_attributes_fan[0] }, |
| 1540 | { .attrs = it87_attributes_fan[1] }, |
| 1541 | { .attrs = it87_attributes_fan[2] }, |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1542 | { .attrs = it87_attributes_fan[3] }, |
| 1543 | { .attrs = it87_attributes_fan[4] }, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1544 | }; |
| 1545 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1546 | static const struct attribute *it87_attributes_fan_div[] = { |
| 1547 | &sensor_dev_attr_fan1_div.dev_attr.attr, |
| 1548 | &sensor_dev_attr_fan2_div.dev_attr.attr, |
| 1549 | &sensor_dev_attr_fan3_div.dev_attr.attr, |
| 1550 | }; |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1551 | |
| 1552 | static struct attribute *it87_attributes_pwm[3][4+1] = { { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1553 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1554 | &sensor_dev_attr_pwm1.dev_attr.attr, |
Jean Delvare | d5b0b5d | 2007-12-14 14:41:53 +0100 | [diff] [blame] | 1555 | &dev_attr_pwm1_freq.attr, |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1556 | &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1557 | NULL |
| 1558 | }, { |
| 1559 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, |
| 1560 | &sensor_dev_attr_pwm2.dev_attr.attr, |
| 1561 | &dev_attr_pwm2_freq.attr, |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1562 | &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1563 | NULL |
| 1564 | }, { |
| 1565 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, |
| 1566 | &sensor_dev_attr_pwm3.dev_attr.attr, |
| 1567 | &dev_attr_pwm3_freq.attr, |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1568 | &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1569 | NULL |
| 1570 | } }; |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1571 | |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1572 | static const struct attribute_group it87_group_pwm[3] = { |
| 1573 | { .attrs = it87_attributes_pwm[0] }, |
| 1574 | { .attrs = it87_attributes_pwm[1] }, |
| 1575 | { .attrs = it87_attributes_pwm[2] }, |
| 1576 | }; |
| 1577 | |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1578 | static struct attribute *it87_attributes_autopwm[3][9+1] = { { |
| 1579 | &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr, |
| 1580 | &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr, |
| 1581 | &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr, |
| 1582 | &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr, |
| 1583 | &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr, |
| 1584 | &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr, |
| 1585 | &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr, |
| 1586 | &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr, |
| 1587 | &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr, |
| 1588 | NULL |
| 1589 | }, { |
| 1590 | &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, |
| 1591 | &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr, |
| 1592 | &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr, |
| 1593 | &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr, |
| 1594 | &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr, |
| 1595 | &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr, |
| 1596 | &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr, |
| 1597 | &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr, |
| 1598 | &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr, |
| 1599 | NULL |
| 1600 | }, { |
| 1601 | &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, |
| 1602 | &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr, |
| 1603 | &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr, |
| 1604 | &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr, |
| 1605 | &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr, |
| 1606 | &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr, |
| 1607 | &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr, |
| 1608 | &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr, |
| 1609 | &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr, |
| 1610 | NULL |
| 1611 | } }; |
| 1612 | |
| 1613 | static const struct attribute_group it87_group_autopwm[3] = { |
| 1614 | { .attrs = it87_attributes_autopwm[0] }, |
| 1615 | { .attrs = it87_attributes_autopwm[1] }, |
| 1616 | { .attrs = it87_attributes_autopwm[2] }, |
| 1617 | }; |
| 1618 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1619 | static struct attribute *it87_attributes_fan_beep[] = { |
| 1620 | &sensor_dev_attr_fan1_beep.dev_attr.attr, |
| 1621 | &sensor_dev_attr_fan2_beep.dev_attr.attr, |
| 1622 | &sensor_dev_attr_fan3_beep.dev_attr.attr, |
| 1623 | &sensor_dev_attr_fan4_beep.dev_attr.attr, |
| 1624 | &sensor_dev_attr_fan5_beep.dev_attr.attr, |
| 1625 | }; |
| 1626 | |
Jean Delvare | 6a8d7ac | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1627 | static struct attribute *it87_attributes_vid[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1628 | &dev_attr_vrm.attr, |
| 1629 | &dev_attr_cpu0_vid.attr, |
| 1630 | NULL |
| 1631 | }; |
| 1632 | |
Jean Delvare | 6a8d7ac | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1633 | static const struct attribute_group it87_group_vid = { |
| 1634 | .attrs = it87_attributes_vid, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1635 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1637 | static struct attribute *it87_attributes_label[] = { |
| 1638 | &sensor_dev_attr_in3_label.dev_attr.attr, |
| 1639 | &sensor_dev_attr_in7_label.dev_attr.attr, |
| 1640 | &sensor_dev_attr_in8_label.dev_attr.attr, |
| 1641 | NULL |
| 1642 | }; |
| 1643 | |
| 1644 | static const struct attribute_group it87_group_label = { |
Jean Delvare | fa8b697 | 2011-07-17 18:39:19 +0200 | [diff] [blame] | 1645 | .attrs = it87_attributes_label, |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1646 | }; |
| 1647 | |
Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 1648 | /* SuperIO detection - will change isa_address if a chip is found */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1649 | static int __init it87_find(unsigned short *address, |
| 1650 | struct it87_sio_data *sio_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | { |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 1652 | int err; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1653 | u16 chip_type; |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 1654 | const char *board_vendor, *board_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 1656 | err = superio_enter(); |
| 1657 | if (err) |
| 1658 | return err; |
| 1659 | |
| 1660 | err = -ENODEV; |
Jean Delvare | 67b671b | 2007-12-06 23:13:42 +0100 | [diff] [blame] | 1661 | chip_type = force_id ? force_id : superio_inw(DEVID); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1662 | |
| 1663 | switch (chip_type) { |
| 1664 | case IT8705F_DEVID: |
| 1665 | sio_data->type = it87; |
| 1666 | break; |
| 1667 | case IT8712F_DEVID: |
| 1668 | sio_data->type = it8712; |
| 1669 | break; |
| 1670 | case IT8716F_DEVID: |
| 1671 | case IT8726F_DEVID: |
| 1672 | sio_data->type = it8716; |
| 1673 | break; |
| 1674 | case IT8718F_DEVID: |
| 1675 | sio_data->type = it8718; |
| 1676 | break; |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 1677 | case IT8720F_DEVID: |
| 1678 | sio_data->type = it8720; |
| 1679 | break; |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1680 | case IT8721F_DEVID: |
| 1681 | sio_data->type = it8721; |
| 1682 | break; |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1683 | case IT8728F_DEVID: |
| 1684 | sio_data->type = it8728; |
| 1685 | break; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1686 | case IT8782F_DEVID: |
| 1687 | sio_data->type = it8782; |
| 1688 | break; |
| 1689 | case IT8783E_DEVID: |
| 1690 | sio_data->type = it8783; |
| 1691 | break; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1692 | case 0xffff: /* No device at all */ |
| 1693 | goto exit; |
| 1694 | default: |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1695 | pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1696 | goto exit; |
| 1697 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1699 | superio_select(PME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | if (!(superio_inb(IT87_ACT_REG) & 0x01)) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1701 | pr_info("Device not activated, skipping\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | goto exit; |
| 1703 | } |
| 1704 | |
| 1705 | *address = superio_inw(IT87_BASE_REG) & ~(IT87_EXTENT - 1); |
| 1706 | if (*address == 0) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1707 | pr_info("Base address not set, skipping\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | goto exit; |
| 1709 | } |
| 1710 | |
| 1711 | err = 0; |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 1712 | sio_data->revision = superio_inb(DEVREV) & 0x0f; |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1713 | pr_info("Found IT%04xF chip at 0x%x, revision %d\n", |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 1714 | chip_type, *address, sio_data->revision); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1716 | /* in8 (Vbat) is always internal */ |
| 1717 | sio_data->internal = (1 << 2); |
| 1718 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1719 | /* Read GPIO config and VID value from LDN 7 (GPIO) */ |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1720 | if (sio_data->type == it87) { |
| 1721 | /* The IT8705F doesn't have VID pins at all */ |
| 1722 | sio_data->skip_vid = 1; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1723 | |
| 1724 | /* The IT8705F has a different LD number for GPIO */ |
| 1725 | superio_select(5); |
| 1726 | sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1727 | } else if (sio_data->type == it8783) { |
| 1728 | int reg25, reg27, reg2A, reg2C, regEF; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1729 | |
| 1730 | sio_data->skip_vid = 1; /* No VID */ |
| 1731 | |
| 1732 | superio_select(GPIO); |
| 1733 | |
| 1734 | reg25 = superio_inb(IT87_SIO_GPIO1_REG); |
| 1735 | reg27 = superio_inb(IT87_SIO_GPIO3_REG); |
| 1736 | reg2A = superio_inb(IT87_SIO_PINX1_REG); |
| 1737 | reg2C = superio_inb(IT87_SIO_PINX2_REG); |
| 1738 | regEF = superio_inb(IT87_SIO_SPI_REG); |
| 1739 | |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1740 | /* Check if fan3 is there or not */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1741 | if ((reg27 & (1 << 0)) || !(reg2C & (1 << 2))) |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1742 | sio_data->skip_fan |= (1 << 2); |
| 1743 | if ((reg25 & (1 << 4)) |
| 1744 | || (!(reg2A & (1 << 1)) && (regEF & (1 << 0)))) |
| 1745 | sio_data->skip_pwm |= (1 << 2); |
| 1746 | |
| 1747 | /* Check if fan2 is there or not */ |
| 1748 | if (reg27 & (1 << 7)) |
| 1749 | sio_data->skip_fan |= (1 << 1); |
| 1750 | if (reg27 & (1 << 3)) |
| 1751 | sio_data->skip_pwm |= (1 << 1); |
| 1752 | |
| 1753 | /* VIN5 */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1754 | if ((reg27 & (1 << 0)) || (reg2C & (1 << 2))) |
| 1755 | sio_data->skip_in |= (1 << 5); /* No VIN5 */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1756 | |
| 1757 | /* VIN6 */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1758 | if (reg27 & (1 << 1)) |
| 1759 | sio_data->skip_in |= (1 << 6); /* No VIN6 */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1760 | |
| 1761 | /* |
| 1762 | * VIN7 |
| 1763 | * Does not depend on bit 2 of Reg2C, contrary to datasheet. |
| 1764 | */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1765 | if (reg27 & (1 << 2)) { |
| 1766 | /* |
| 1767 | * The data sheet is a bit unclear regarding the |
| 1768 | * internal voltage divider for VCCH5V. It says |
| 1769 | * "This bit enables and switches VIN7 (pin 91) to the |
| 1770 | * internal voltage divider for VCCH5V". |
| 1771 | * This is different to other chips, where the internal |
| 1772 | * voltage divider would connect VIN7 to an internal |
| 1773 | * voltage source. Maybe that is the case here as well. |
| 1774 | * |
| 1775 | * Since we don't know for sure, re-route it if that is |
| 1776 | * not the case, and ask the user to report if the |
| 1777 | * resulting voltage is sane. |
| 1778 | */ |
| 1779 | if (!(reg2C & (1 << 1))) { |
| 1780 | reg2C |= (1 << 1); |
| 1781 | superio_outb(IT87_SIO_PINX2_REG, reg2C); |
| 1782 | pr_notice("Routing internal VCCH5V to in7.\n"); |
| 1783 | } |
| 1784 | pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n"); |
| 1785 | pr_notice("Please report if it displays a reasonable voltage.\n"); |
| 1786 | } |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1787 | |
| 1788 | if (reg2C & (1 << 0)) |
| 1789 | sio_data->internal |= (1 << 0); |
| 1790 | if (reg2C & (1 << 1)) |
| 1791 | sio_data->internal |= (1 << 1); |
| 1792 | |
| 1793 | sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f; |
| 1794 | |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1795 | } else { |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1796 | int reg; |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1797 | bool uart6; |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1798 | |
| 1799 | superio_select(GPIO); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1800 | |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1801 | reg = superio_inb(IT87_SIO_GPIO3_REG); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1802 | if (sio_data->type == it8721 || sio_data->type == it8728 || |
| 1803 | sio_data->type == it8782) { |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1804 | /* |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1805 | * IT8721F/IT8758E, and IT8782F don't have VID pins |
| 1806 | * at all, not sure about the IT8728F. |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1807 | */ |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1808 | sio_data->skip_vid = 1; |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1809 | } else { |
| 1810 | /* We need at least 4 VID pins */ |
| 1811 | if (reg & 0x0f) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1812 | pr_info("VID is disabled (pins used for GPIO)\n"); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1813 | sio_data->skip_vid = 1; |
| 1814 | } |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1815 | } |
| 1816 | |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 1817 | /* Check if fan3 is there or not */ |
| 1818 | if (reg & (1 << 6)) |
| 1819 | sio_data->skip_pwm |= (1 << 2); |
| 1820 | if (reg & (1 << 7)) |
| 1821 | sio_data->skip_fan |= (1 << 2); |
| 1822 | |
| 1823 | /* Check if fan2 is there or not */ |
| 1824 | reg = superio_inb(IT87_SIO_GPIO5_REG); |
| 1825 | if (reg & (1 << 1)) |
| 1826 | sio_data->skip_pwm |= (1 << 1); |
| 1827 | if (reg & (1 << 2)) |
| 1828 | sio_data->skip_fan |= (1 << 1); |
| 1829 | |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 1830 | if ((sio_data->type == it8718 || sio_data->type == it8720) |
| 1831 | && !(sio_data->skip_vid)) |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1832 | sio_data->vid_value = superio_inb(IT87_SIO_VID_REG); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1833 | |
| 1834 | reg = superio_inb(IT87_SIO_PINX2_REG); |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1835 | |
| 1836 | uart6 = sio_data->type == it8782 && (reg & (1 << 2)); |
| 1837 | |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 1838 | /* |
| 1839 | * The IT8720F has no VIN7 pin, so VCCH should always be |
| 1840 | * routed internally to VIN7 with an internal divider. |
| 1841 | * Curiously, there still is a configuration bit to control |
| 1842 | * this, which means it can be set incorrectly. And even |
| 1843 | * more curiously, many boards out there are improperly |
| 1844 | * configured, even though the IT8720F datasheet claims |
| 1845 | * that the internal routing of VCCH to VIN7 is the default |
| 1846 | * setting. So we force the internal routing in this case. |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 1847 | * |
| 1848 | * On IT8782F, VIN7 is multiplexed with one of the UART6 pins. |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1849 | * If UART6 is enabled, re-route VIN7 to the internal divider |
| 1850 | * if that is not already the case. |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 1851 | */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1852 | if ((sio_data->type == it8720 || uart6) && !(reg & (1 << 1))) { |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 1853 | reg |= (1 << 1); |
| 1854 | superio_outb(IT87_SIO_PINX2_REG, reg); |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1855 | pr_notice("Routing internal VCCH to in7\n"); |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 1856 | } |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1857 | if (reg & (1 << 0)) |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1858 | sio_data->internal |= (1 << 0); |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1859 | if ((reg & (1 << 1)) || sio_data->type == it8721 || |
| 1860 | sio_data->type == it8728) |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1861 | sio_data->internal |= (1 << 1); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1862 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1863 | /* |
| 1864 | * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7. |
| 1865 | * While VIN7 can be routed to the internal voltage divider, |
| 1866 | * VIN5 and VIN6 are not available if UART6 is enabled. |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1867 | * |
| 1868 | * Also, temp3 is not available if UART6 is enabled and TEMPIN3 |
| 1869 | * is the temperature source. Since we can not read the |
| 1870 | * temperature source here, skip_temp is preliminary. |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1871 | */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1872 | if (uart6) { |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1873 | sio_data->skip_in |= (1 << 5) | (1 << 6); |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1874 | sio_data->skip_temp |= (1 << 2); |
| 1875 | } |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1876 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1877 | sio_data->beep_pin = superio_inb(IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1878 | } |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1879 | if (sio_data->beep_pin) |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1880 | pr_info("Beeping is supported\n"); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 1881 | |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 1882 | /* Disable specific features based on DMI strings */ |
| 1883 | board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR); |
| 1884 | board_name = dmi_get_system_info(DMI_BOARD_NAME); |
| 1885 | if (board_vendor && board_name) { |
| 1886 | if (strcmp(board_vendor, "nVIDIA") == 0 |
| 1887 | && strcmp(board_name, "FN68PT") == 0) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1888 | /* |
| 1889 | * On the Shuttle SN68PT, FAN_CTL2 is apparently not |
| 1890 | * connected to a fan, but to something else. One user |
| 1891 | * has reported instant system power-off when changing |
| 1892 | * the PWM2 duty cycle, so we disable it. |
| 1893 | * I use the board name string as the trigger in case |
| 1894 | * the same board is ever used in other systems. |
| 1895 | */ |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 1896 | pr_info("Disabling pwm2 due to hardware constraints\n"); |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 1897 | sio_data->skip_pwm = (1 << 1); |
| 1898 | } |
| 1899 | } |
| 1900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | exit: |
| 1902 | superio_exit(); |
| 1903 | return err; |
| 1904 | } |
| 1905 | |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1906 | static void it87_remove_files(struct device *dev) |
| 1907 | { |
| 1908 | struct it87_data *data = platform_get_drvdata(pdev); |
| 1909 | struct it87_sio_data *sio_data = dev->platform_data; |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1910 | int i; |
| 1911 | |
| 1912 | sysfs_remove_group(&dev->kobj, &it87_group); |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1913 | for (i = 0; i < 9; i++) { |
| 1914 | if (sio_data->skip_in & (1 << i)) |
| 1915 | continue; |
| 1916 | sysfs_remove_group(&dev->kobj, &it87_group_in[i]); |
| 1917 | if (it87_attributes_in_beep[i]) |
| 1918 | sysfs_remove_file(&dev->kobj, |
| 1919 | it87_attributes_in_beep[i]); |
| 1920 | } |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1921 | for (i = 0; i < 3; i++) { |
| 1922 | if (!(data->has_temp & (1 << i))) |
| 1923 | continue; |
| 1924 | sysfs_remove_group(&dev->kobj, &it87_group_temp[i]); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1925 | if (has_temp_offset(data)) |
| 1926 | sysfs_remove_file(&dev->kobj, |
| 1927 | it87_attributes_temp_offset[i]); |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 1928 | if (sio_data->beep_pin) |
| 1929 | sysfs_remove_file(&dev->kobj, |
| 1930 | it87_attributes_temp_beep[i]); |
| 1931 | } |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1932 | for (i = 0; i < 5; i++) { |
| 1933 | if (!(data->has_fan & (1 << i))) |
| 1934 | continue; |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1935 | sysfs_remove_group(&dev->kobj, &it87_group_fan[i]); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1936 | if (sio_data->beep_pin) |
| 1937 | sysfs_remove_file(&dev->kobj, |
| 1938 | it87_attributes_fan_beep[i]); |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1939 | if (i < 3 && !has_16bit_fans(data)) |
| 1940 | sysfs_remove_file(&dev->kobj, |
| 1941 | it87_attributes_fan_div[i]); |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1942 | } |
| 1943 | for (i = 0; i < 3; i++) { |
| 1944 | if (sio_data->skip_pwm & (1 << 0)) |
| 1945 | continue; |
| 1946 | sysfs_remove_group(&dev->kobj, &it87_group_pwm[i]); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1947 | if (has_old_autopwm(data)) |
| 1948 | sysfs_remove_group(&dev->kobj, |
| 1949 | &it87_group_autopwm[i]); |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1950 | } |
Jean Delvare | 6a8d7ac | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1951 | if (!sio_data->skip_vid) |
| 1952 | sysfs_remove_group(&dev->kobj, &it87_group_vid); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1953 | sysfs_remove_group(&dev->kobj, &it87_group_label); |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1954 | } |
| 1955 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 1956 | static int it87_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | struct it87_data *data; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1959 | struct resource *res; |
| 1960 | struct device *dev = &pdev->dev; |
| 1961 | struct it87_sio_data *sio_data = dev->platform_data; |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1962 | int err = 0, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | int enable_pwm_interface; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1964 | int fan_beep_need_rw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1965 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1966 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 1967 | if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT, |
| 1968 | DRVNAME)) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1969 | dev_err(dev, "Failed to request region 0x%lx-0x%lx\n", |
| 1970 | (unsigned long)res->start, |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 1971 | (unsigned long)(res->start + IT87_EC_EXTENT - 1)); |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 1972 | return -EBUSY; |
Jean Delvare | 8e9afcb | 2006-12-12 18:18:28 +0100 | [diff] [blame] | 1973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 1975 | data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL); |
| 1976 | if (!data) |
| 1977 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1979 | data->addr = res->start; |
| 1980 | data->type = sio_data->type; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1981 | data->features = it87_devices[sio_data->type].features; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame^] | 1982 | data->peci_mask = it87_devices[sio_data->type].peci_mask; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1983 | data->name = it87_devices[sio_data->type].name; |
| 1984 | /* |
| 1985 | * IT8705F Datasheet 0.4.1, 3h == Version G. |
| 1986 | * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J. |
| 1987 | * These are the first revisions with 16-bit tachometer support. |
| 1988 | */ |
| 1989 | switch (data->type) { |
| 1990 | case it87: |
| 1991 | if (sio_data->revision >= 0x03) { |
| 1992 | data->features &= ~FEAT_OLD_AUTOPWM; |
| 1993 | data->features |= FEAT_16BIT_FANS; |
| 1994 | } |
| 1995 | break; |
| 1996 | case it8712: |
| 1997 | if (sio_data->revision >= 0x08) { |
| 1998 | data->features &= ~FEAT_OLD_AUTOPWM; |
| 1999 | data->features |= FEAT_16BIT_FANS; |
| 2000 | } |
| 2001 | break; |
| 2002 | default: |
| 2003 | break; |
| 2004 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | |
| 2006 | /* Now, we do the remaining detection. */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2007 | if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2008 | || it87_read_value(data, IT87_REG_CHIPID) != 0x90) |
| 2009 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2011 | platform_set_drvdata(pdev, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 2013 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | /* Check PWM configuration */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2016 | enable_pwm_interface = it87_check_pwm(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2018 | /* Starting with IT8721F, we handle scaling of internal voltages */ |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 2019 | if (has_12mv_adc(data)) { |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2020 | if (sio_data->internal & (1 << 0)) |
| 2021 | data->in_scaled |= (1 << 3); /* in3 is AVCC */ |
| 2022 | if (sio_data->internal & (1 << 1)) |
| 2023 | data->in_scaled |= (1 << 7); /* in7 is VSB */ |
| 2024 | if (sio_data->internal & (1 << 2)) |
| 2025 | data->in_scaled |= (1 << 8); /* in8 is Vbat */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2026 | } else if (sio_data->type == it8782 || sio_data->type == it8783) { |
| 2027 | if (sio_data->internal & (1 << 0)) |
| 2028 | data->in_scaled |= (1 << 3); /* in3 is VCC5V */ |
| 2029 | if (sio_data->internal & (1 << 1)) |
| 2030 | data->in_scaled |= (1 << 7); /* in7 is VCCH5V */ |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2031 | } |
| 2032 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2033 | data->has_temp = 0x07; |
| 2034 | if (sio_data->skip_temp & (1 << 2)) { |
| 2035 | if (sio_data->type == it8782 |
| 2036 | && !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80)) |
| 2037 | data->has_temp &= ~(1 << 2); |
| 2038 | } |
| 2039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | /* Initialize the IT87 chip */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2041 | it87_init_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | |
| 2043 | /* Register sysfs hooks */ |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2044 | err = sysfs_create_group(&dev->kobj, &it87_group); |
| 2045 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2046 | return err; |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2047 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2048 | for (i = 0; i < 9; i++) { |
| 2049 | if (sio_data->skip_in & (1 << i)) |
| 2050 | continue; |
| 2051 | err = sysfs_create_group(&dev->kobj, &it87_group_in[i]); |
| 2052 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2053 | goto error; |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2054 | if (sio_data->beep_pin && it87_attributes_in_beep[i]) { |
| 2055 | err = sysfs_create_file(&dev->kobj, |
| 2056 | it87_attributes_in_beep[i]); |
| 2057 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2058 | goto error; |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2059 | } |
| 2060 | } |
| 2061 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2062 | for (i = 0; i < 3; i++) { |
| 2063 | if (!(data->has_temp & (1 << i))) |
| 2064 | continue; |
| 2065 | err = sysfs_create_group(&dev->kobj, &it87_group_temp[i]); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2066 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2067 | goto error; |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2068 | if (has_temp_offset(data)) { |
| 2069 | err = sysfs_create_file(&dev->kobj, |
| 2070 | it87_attributes_temp_offset[i]); |
| 2071 | if (err) |
| 2072 | goto error; |
| 2073 | } |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2074 | if (sio_data->beep_pin) { |
| 2075 | err = sysfs_create_file(&dev->kobj, |
| 2076 | it87_attributes_temp_beep[i]); |
| 2077 | if (err) |
| 2078 | goto error; |
| 2079 | } |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2080 | } |
| 2081 | |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 2082 | /* Do not create fan files for disabled fans */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2083 | fan_beep_need_rw = 1; |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2084 | for (i = 0; i < 5; i++) { |
| 2085 | if (!(data->has_fan & (1 << i))) |
| 2086 | continue; |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2087 | err = sysfs_create_group(&dev->kobj, &it87_group_fan[i]); |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2088 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2089 | goto error; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2090 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2091 | if (i < 3 && !has_16bit_fans(data)) { |
| 2092 | err = sysfs_create_file(&dev->kobj, |
| 2093 | it87_attributes_fan_div[i]); |
| 2094 | if (err) |
| 2095 | goto error; |
| 2096 | } |
| 2097 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2098 | if (sio_data->beep_pin) { |
| 2099 | err = sysfs_create_file(&dev->kobj, |
| 2100 | it87_attributes_fan_beep[i]); |
| 2101 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2102 | goto error; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2103 | if (!fan_beep_need_rw) |
| 2104 | continue; |
| 2105 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2106 | /* |
| 2107 | * As we have a single beep enable bit for all fans, |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2108 | * only the first enabled fan has a writable attribute |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2109 | * for it. |
| 2110 | */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2111 | if (sysfs_chmod_file(&dev->kobj, |
| 2112 | it87_attributes_fan_beep[i], |
| 2113 | S_IRUGO | S_IWUSR)) |
| 2114 | dev_dbg(dev, "chmod +w fan%d_beep failed\n", |
| 2115 | i + 1); |
| 2116 | fan_beep_need_rw = 0; |
| 2117 | } |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2118 | } |
| 2119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | if (enable_pwm_interface) { |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2121 | for (i = 0; i < 3; i++) { |
| 2122 | if (sio_data->skip_pwm & (1 << i)) |
| 2123 | continue; |
| 2124 | err = sysfs_create_group(&dev->kobj, |
| 2125 | &it87_group_pwm[i]); |
| 2126 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2127 | goto error; |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2128 | |
| 2129 | if (!has_old_autopwm(data)) |
| 2130 | continue; |
| 2131 | err = sysfs_create_group(&dev->kobj, |
| 2132 | &it87_group_autopwm[i]); |
| 2133 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2134 | goto error; |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 2135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | } |
| 2137 | |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 2138 | if (!sio_data->skip_vid) { |
Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 2139 | data->vrm = vid_which_vrm(); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2140 | /* VID reading from Super-I/O config space if available */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2141 | data->vid = sio_data->vid_value; |
Jean Delvare | 6a8d7ac | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2142 | err = sysfs_create_group(&dev->kobj, &it87_group_vid); |
| 2143 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2144 | goto error; |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2145 | } |
| 2146 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 2147 | /* Export labels for internal sensors */ |
| 2148 | for (i = 0; i < 3; i++) { |
| 2149 | if (!(sio_data->internal & (1 << i))) |
| 2150 | continue; |
| 2151 | err = sysfs_create_file(&dev->kobj, |
| 2152 | it87_attributes_label[i]); |
| 2153 | if (err) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2154 | goto error; |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 2155 | } |
| 2156 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 2157 | data->hwmon_dev = hwmon_device_register(dev); |
| 2158 | if (IS_ERR(data->hwmon_dev)) { |
| 2159 | err = PTR_ERR(data->hwmon_dev); |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2160 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | } |
| 2162 | |
| 2163 | return 0; |
| 2164 | |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2165 | error: |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2166 | it87_remove_files(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | return err; |
| 2168 | } |
| 2169 | |
Bill Pemberton | 281dfd0 | 2012-11-19 13:25:51 -0500 | [diff] [blame] | 2170 | static int it87_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2172 | struct it87_data *data = platform_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | |
Tony Jones | 1beeffe | 2007-08-20 13:46:20 -0700 | [diff] [blame] | 2174 | hwmon_device_unregister(data->hwmon_dev); |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2175 | it87_remove_files(&pdev->dev); |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | return 0; |
| 2178 | } |
| 2179 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2180 | /* |
| 2181 | * Must be called with data->update_lock held, except during initialization. |
| 2182 | * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks, |
| 2183 | * would slow down the IT87 access and should not be necessary. |
| 2184 | */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2185 | static int it87_read_value(struct it87_data *data, u8 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2187 | outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET); |
| 2188 | return inb_p(data->addr + IT87_DATA_REG_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | } |
| 2190 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2191 | /* |
| 2192 | * Must be called with data->update_lock held, except during initialization. |
| 2193 | * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks, |
| 2194 | * would slow down the IT87 access and should not be necessary. |
| 2195 | */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2196 | static void it87_write_value(struct it87_data *data, u8 reg, u8 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2198 | outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET); |
| 2199 | outb_p(value, data->addr + IT87_DATA_REG_OFFSET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | } |
| 2201 | |
| 2202 | /* Return 1 if and only if the PWM interface is safe to use */ |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 2203 | static int it87_check_pwm(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2205 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2206 | /* |
| 2207 | * Some BIOSes fail to correctly configure the IT87 fans. All fans off |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2208 | * and polarity set to active low is sign that this is the case so we |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2209 | * disable pwm control to protect the user. |
| 2210 | */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2211 | int tmp = it87_read_value(data, IT87_REG_FAN_CTL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | if ((tmp & 0x87) == 0) { |
| 2213 | if (fix_pwm_polarity) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2214 | /* |
| 2215 | * The user asks us to attempt a chip reconfiguration. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | * This means switching to active high polarity and |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2217 | * inverting all fan speed values. |
| 2218 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2219 | int i; |
| 2220 | u8 pwm[3]; |
| 2221 | |
| 2222 | for (i = 0; i < 3; i++) |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2223 | pwm[i] = it87_read_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | IT87_REG_PWM(i)); |
| 2225 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2226 | /* |
| 2227 | * If any fan is in automatic pwm mode, the polarity |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2228 | * might be correct, as suspicious as it seems, so we |
| 2229 | * better don't change anything (but still disable the |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2230 | * PWM interface). |
| 2231 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) { |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2233 | dev_info(dev, |
| 2234 | "Reconfiguring PWM to active high polarity\n"); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2235 | it87_write_value(data, IT87_REG_FAN_CTL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | tmp | 0x87); |
| 2237 | for (i = 0; i < 3; i++) |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2238 | it87_write_value(data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | IT87_REG_PWM(i), |
| 2240 | 0x7f & ~pwm[i]); |
| 2241 | return 1; |
| 2242 | } |
| 2243 | |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2244 | dev_info(dev, |
| 2245 | "PWM configuration is too broken to be fixed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | } |
| 2247 | |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2248 | dev_info(dev, |
| 2249 | "Detected broken BIOS defaults, disabling PWM interface\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | return 0; |
| 2251 | } else if (fix_pwm_polarity) { |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2252 | dev_info(dev, |
| 2253 | "PWM configuration looks sane, won't touch\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | } |
| 2255 | |
| 2256 | return 1; |
| 2257 | } |
| 2258 | |
| 2259 | /* Called when we have found a new IT87. */ |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 2260 | static void it87_init_device(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | { |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2262 | struct it87_sio_data *sio_data = pdev->dev.platform_data; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2263 | struct it87_data *data = platform_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | int tmp, i; |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2265 | u8 mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2267 | /* |
| 2268 | * For each PWM channel: |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2269 | * - If it is in automatic mode, setting to manual mode should set |
| 2270 | * the fan to full speed by default. |
| 2271 | * - If it is in manual mode, we need a mapping to temperature |
| 2272 | * channels to use when later setting to automatic mode later. |
| 2273 | * Use a 1:1 mapping by default (we are clueless.) |
| 2274 | * In both cases, the value can (and should) be changed by the user |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 2275 | * prior to switching to a different mode. |
| 2276 | * Note that this is no longer needed for the IT8721F and later, as |
| 2277 | * these have separate registers for the temperature mapping and the |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2278 | * manual duty cycle. |
| 2279 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | for (i = 0; i < 3; i++) { |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2281 | data->pwm_temp_map[i] = i; |
| 2282 | data->pwm_duty[i] = 0x7f; /* Full speed */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2283 | data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | } |
| 2285 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2286 | /* |
| 2287 | * Some chips seem to have default value 0xff for all limit |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2288 | * registers. For low voltage limits it makes no sense and triggers |
| 2289 | * alarms, so change to 0 instead. For high temperature limits, it |
| 2290 | * means -1 degree C, which surprisingly doesn't trigger an alarm, |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2291 | * but is still confusing, so change to 127 degrees C. |
| 2292 | */ |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2293 | for (i = 0; i < 8; i++) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2294 | tmp = it87_read_value(data, IT87_REG_VIN_MIN(i)); |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2295 | if (tmp == 0xff) |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2296 | it87_write_value(data, IT87_REG_VIN_MIN(i), 0); |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2297 | } |
| 2298 | for (i = 0; i < 3; i++) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2299 | tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i)); |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2300 | if (tmp == 0xff) |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2301 | it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127); |
Jean Delvare | c5df9b7 | 2006-08-28 14:37:54 +0200 | [diff] [blame] | 2302 | } |
| 2303 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2304 | /* |
| 2305 | * Temperature channels are not forcibly enabled, as they can be |
Jean Delvare | a00afb9 | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 2306 | * set to two different sensor types and we can't guess which one |
| 2307 | * is correct for a given system. These channels can be enabled at |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2308 | * run-time through the temp{1-3}_type sysfs accessors if needed. |
| 2309 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | |
| 2311 | /* Check if voltage monitors are reset manually or by some reason */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2312 | tmp = it87_read_value(data, IT87_REG_VIN_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2313 | if ((tmp & 0xff) == 0) { |
| 2314 | /* Enable all voltage monitors */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2315 | it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | /* Check if tachometers are reset manually or by some reason */ |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2319 | mask = 0x70 & ~(sio_data->skip_fan << 4); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2320 | data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL); |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2321 | if ((data->fan_main_ctrl & mask) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | /* Enable all fan tachometers */ |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2323 | data->fan_main_ctrl |= mask; |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2324 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 2325 | data->fan_main_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | } |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 2327 | data->has_fan = (data->fan_main_ctrl >> 4) & 0x07; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2329 | /* Set tachometers to 16-bit mode if needed */ |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 2330 | if (has_16bit_fans(data)) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2331 | tmp = it87_read_value(data, IT87_REG_FAN_16BIT); |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 2332 | if (~tmp & 0x07 & data->has_fan) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2333 | dev_dbg(&pdev->dev, |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2334 | "Setting fan1-3 to 16-bit mode\n"); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2335 | it87_write_value(data, IT87_REG_FAN_16BIT, |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2336 | tmp | 0x07); |
| 2337 | } |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2338 | /* IT8705F, IT8782F, and IT8783E/F only support three fans. */ |
| 2339 | if (data->type != it87 && data->type != it8782 && |
| 2340 | data->type != it8783) { |
Andrew Paprocki | 816d8c6 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 2341 | if (tmp & (1 << 4)) |
| 2342 | data->has_fan |= (1 << 3); /* fan4 enabled */ |
| 2343 | if (tmp & (1 << 5)) |
| 2344 | data->has_fan |= (1 << 4); /* fan5 enabled */ |
| 2345 | } |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2346 | } |
| 2347 | |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2348 | /* Fan input pins may be used for alternative functions */ |
| 2349 | data->has_fan &= ~sio_data->skip_fan; |
| 2350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | /* Start monitoring */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2352 | it87_write_value(data, IT87_REG_CONFIG, |
Jean Delvare | 41002f8 | 2012-07-12 22:47:37 +0200 | [diff] [blame] | 2353 | (it87_read_value(data, IT87_REG_CONFIG) & 0x3e) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | | (update_vbat ? 0x41 : 0x01)); |
| 2355 | } |
| 2356 | |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2357 | static void it87_update_pwm_ctrl(struct it87_data *data, int nr) |
| 2358 | { |
| 2359 | data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM(nr)); |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 2360 | if (has_newer_autopwm(data)) { |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2361 | data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03; |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 2362 | data->pwm_duty[nr] = it87_read_value(data, |
| 2363 | IT87_REG_PWM_DUTY(nr)); |
| 2364 | } else { |
| 2365 | if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */ |
| 2366 | data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03; |
| 2367 | else /* Manual mode */ |
| 2368 | data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f; |
| 2369 | } |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2370 | |
| 2371 | if (has_old_autopwm(data)) { |
| 2372 | int i; |
| 2373 | |
| 2374 | for (i = 0; i < 5 ; i++) |
| 2375 | data->auto_temp[nr][i] = it87_read_value(data, |
| 2376 | IT87_REG_AUTO_TEMP(nr, i)); |
| 2377 | for (i = 0; i < 3 ; i++) |
| 2378 | data->auto_pwm[nr][i] = it87_read_value(data, |
| 2379 | IT87_REG_AUTO_PWM(nr, i)); |
| 2380 | } |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2381 | } |
| 2382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | static struct it87_data *it87_update_device(struct device *dev) |
| 2384 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2385 | struct it87_data *data = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2386 | int i; |
| 2387 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 2388 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | |
| 2390 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 2391 | || !data->valid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | if (update_vbat) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2393 | /* |
| 2394 | * Cleared after each update, so reenable. Value |
| 2395 | * returned by this read will be previous value |
| 2396 | */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2397 | it87_write_value(data, IT87_REG_CONFIG, |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2398 | it87_read_value(data, IT87_REG_CONFIG) | 0x40); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | } |
| 2400 | for (i = 0; i <= 7; i++) { |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2401 | data->in[i][0] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2402 | it87_read_value(data, IT87_REG_VIN(i)); |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2403 | data->in[i][1] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2404 | it87_read_value(data, IT87_REG_VIN_MIN(i)); |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2405 | data->in[i][2] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2406 | it87_read_value(data, IT87_REG_VIN_MAX(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | } |
Jean Delvare | 3543a53 | 2006-08-28 14:27:25 +0200 | [diff] [blame] | 2408 | /* in8 (battery) has no limit registers */ |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2409 | data->in[8][0] = it87_read_value(data, IT87_REG_VIN(8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2410 | |
Jean Delvare | c7f1f71 | 2007-09-03 17:11:46 +0200 | [diff] [blame] | 2411 | for (i = 0; i < 5; i++) { |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 2412 | /* Skip disabled fans */ |
| 2413 | if (!(data->has_fan & (1 << i))) |
| 2414 | continue; |
| 2415 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2416 | data->fan[i][1] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2417 | it87_read_value(data, IT87_REG_FAN_MIN[i]); |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2418 | data->fan[i][0] = it87_read_value(data, |
Jean Delvare | c7f1f71 | 2007-09-03 17:11:46 +0200 | [diff] [blame] | 2419 | IT87_REG_FAN[i]); |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2420 | /* Add high byte if in 16-bit mode */ |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 2421 | if (has_16bit_fans(data)) { |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2422 | data->fan[i][0] |= it87_read_value(data, |
Jean Delvare | c7f1f71 | 2007-09-03 17:11:46 +0200 | [diff] [blame] | 2423 | IT87_REG_FANX[i]) << 8; |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2424 | data->fan[i][1] |= it87_read_value(data, |
Jean Delvare | c7f1f71 | 2007-09-03 17:11:46 +0200 | [diff] [blame] | 2425 | IT87_REG_FANX_MIN[i]) << 8; |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | } |
| 2428 | for (i = 0; i < 3; i++) { |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2429 | if (!(data->has_temp & (1 << i))) |
| 2430 | continue; |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2431 | data->temp[i][0] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2432 | it87_read_value(data, IT87_REG_TEMP(i)); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2433 | data->temp[i][1] = |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2434 | it87_read_value(data, IT87_REG_TEMP_LOW(i)); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 2435 | data->temp[i][2] = |
| 2436 | it87_read_value(data, IT87_REG_TEMP_HIGH(i)); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2437 | if (has_temp_offset(data)) |
| 2438 | data->temp[i][3] = |
| 2439 | it87_read_value(data, |
| 2440 | IT87_REG_TEMP_OFFSET[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2443 | /* Newer chips don't have clock dividers */ |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 2444 | if ((data->has_fan & 0x07) && !has_16bit_fans(data)) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2445 | i = it87_read_value(data, IT87_REG_FAN_DIV); |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2446 | data->fan_div[0] = i & 0x07; |
| 2447 | data->fan_div[1] = (i >> 3) & 0x07; |
| 2448 | data->fan_div[2] = (i & 0x40) ? 3 : 1; |
| 2449 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | |
| 2451 | data->alarms = |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2452 | it87_read_value(data, IT87_REG_ALARM1) | |
| 2453 | (it87_read_value(data, IT87_REG_ALARM2) << 8) | |
| 2454 | (it87_read_value(data, IT87_REG_ALARM3) << 16); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2455 | data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2456 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2457 | data->fan_main_ctrl = it87_read_value(data, |
| 2458 | IT87_REG_FAN_MAIN_CTRL); |
| 2459 | data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL); |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 2460 | for (i = 0; i < 3; i++) |
| 2461 | it87_update_pwm_ctrl(data, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2463 | data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2464 | /* |
| 2465 | * The IT8705F does not have VID capability. |
| 2466 | * The IT8718F and later don't use IT87_REG_VID for the |
| 2467 | * same purpose. |
| 2468 | */ |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2469 | if (data->type == it8712 || data->type == it8716) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2470 | data->vid = it87_read_value(data, IT87_REG_VID); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2471 | /* |
| 2472 | * The older IT8712F revisions had only 5 VID pins, |
| 2473 | * but we assume it is always safe to read 6 bits. |
| 2474 | */ |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 2475 | data->vid &= 0x3f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2476 | } |
| 2477 | data->last_updated = jiffies; |
| 2478 | data->valid = 1; |
| 2479 | } |
| 2480 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 2481 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | |
| 2483 | return data; |
| 2484 | } |
| 2485 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2486 | static int __init it87_device_add(unsigned short address, |
| 2487 | const struct it87_sio_data *sio_data) |
| 2488 | { |
| 2489 | struct resource res = { |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 2490 | .start = address + IT87_EC_OFFSET, |
| 2491 | .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2492 | .name = DRVNAME, |
| 2493 | .flags = IORESOURCE_IO, |
| 2494 | }; |
| 2495 | int err; |
| 2496 | |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 2497 | err = acpi_check_resource_conflict(&res); |
| 2498 | if (err) |
| 2499 | goto exit; |
| 2500 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2501 | pdev = platform_device_alloc(DRVNAME, address); |
| 2502 | if (!pdev) { |
| 2503 | err = -ENOMEM; |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2504 | pr_err("Device allocation failed\n"); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2505 | goto exit; |
| 2506 | } |
| 2507 | |
| 2508 | err = platform_device_add_resources(pdev, &res, 1); |
| 2509 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2510 | pr_err("Device resource addition failed (%d)\n", err); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2511 | goto exit_device_put; |
| 2512 | } |
| 2513 | |
| 2514 | err = platform_device_add_data(pdev, sio_data, |
| 2515 | sizeof(struct it87_sio_data)); |
| 2516 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2517 | pr_err("Platform data allocation failed\n"); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2518 | goto exit_device_put; |
| 2519 | } |
| 2520 | |
| 2521 | err = platform_device_add(pdev); |
| 2522 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2523 | pr_err("Device addition failed (%d)\n", err); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2524 | goto exit_device_put; |
| 2525 | } |
| 2526 | |
| 2527 | return 0; |
| 2528 | |
| 2529 | exit_device_put: |
| 2530 | platform_device_put(pdev); |
| 2531 | exit: |
| 2532 | return err; |
| 2533 | } |
| 2534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2535 | static int __init sm_it87_init(void) |
| 2536 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2537 | int err; |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2538 | unsigned short isa_address = 0; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2539 | struct it87_sio_data sio_data; |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 2540 | |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 2541 | memset(&sio_data, 0, sizeof(struct it87_sio_data)); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2542 | err = it87_find(&isa_address, &sio_data); |
| 2543 | if (err) |
| 2544 | return err; |
| 2545 | err = platform_driver_register(&it87_driver); |
| 2546 | if (err) |
| 2547 | return err; |
| 2548 | |
| 2549 | err = it87_device_add(isa_address, &sio_data); |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2550 | if (err) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2551 | platform_driver_unregister(&it87_driver); |
| 2552 | return err; |
| 2553 | } |
| 2554 | |
| 2555 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | } |
| 2557 | |
| 2558 | static void __exit sm_it87_exit(void) |
| 2559 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2560 | platform_device_unregister(pdev); |
| 2561 | platform_driver_unregister(&it87_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2562 | } |
| 2563 | |
| 2564 | |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2565 | MODULE_AUTHOR("Chris Gauthron, Jean Delvare <khali@linux-fr.org>"); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2566 | MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | module_param(update_vbat, bool, 0); |
| 2568 | MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value"); |
| 2569 | module_param(fix_pwm_polarity, bool, 0); |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 2570 | MODULE_PARM_DESC(fix_pwm_polarity, |
| 2571 | "Force PWM polarity to active high (DANGEROUS)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | MODULE_LICENSE("GPL"); |
| 2573 | |
| 2574 | module_init(sm_it87_init); |
| 2575 | module_exit(sm_it87_exit); |