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 | * |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 13 | * Supports: IT8603E Super I/O chip w/LPC interface |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 14 | * IT8620E Super I/O chip w/LPC interface |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 15 | * IT8622E Super I/O chip w/LPC interface |
Rudolf Marek | 574e9bd | 2014-04-04 18:01:35 +0200 | [diff] [blame] | 16 | * IT8623E Super I/O chip w/LPC interface |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 17 | * IT8628E Super I/O chip w/LPC interface |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 18 | * IT8705F Super I/O chip w/LPC interface |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 19 | * IT8712F Super I/O chip w/LPC interface |
| 20 | * IT8716F Super I/O chip w/LPC interface |
| 21 | * IT8718F Super I/O chip w/LPC interface |
| 22 | * IT8720F Super I/O chip w/LPC interface |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 23 | * IT8721F Super I/O chip w/LPC interface |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 24 | * IT8726F Super I/O chip w/LPC interface |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 25 | * IT8728F Super I/O chip w/LPC interface |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 26 | * IT8732F Super I/O chip w/LPC interface |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 27 | * IT8758E Super I/O chip w/LPC interface |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 28 | * IT8771E Super I/O chip w/LPC interface |
| 29 | * IT8772E Super I/O chip w/LPC interface |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 30 | * IT8781F Super I/O chip w/LPC interface |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 31 | * IT8782F Super I/O chip w/LPC interface |
| 32 | * IT8783E/F Super I/O chip w/LPC interface |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 33 | * IT8786E Super I/O chip w/LPC interface |
Guenter Roeck | 4ee0715 | 2015-03-25 23:26:28 -0700 | [diff] [blame] | 34 | * IT8790E Super I/O chip w/LPC interface |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 35 | * Sis950 A clone of the IT8705F |
| 36 | * |
| 37 | * Copyright (C) 2001 Chris Gauthron |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 38 | * Copyright (C) 2005-2010 Jean Delvare <jdelvare@suse.de> |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 39 | * |
| 40 | * This program is free software; you can redistribute it and/or modify |
| 41 | * it under the terms of the GNU General Public License as published by |
| 42 | * the Free Software Foundation; either version 2 of the License, or |
| 43 | * (at your option) any later version. |
| 44 | * |
| 45 | * This program is distributed in the hope that it will be useful, |
| 46 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 47 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 48 | * GNU General Public License for more details. |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 49 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 51 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 52 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 53 | #include <linux/bitops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <linux/module.h> |
| 55 | #include <linux/init.h> |
| 56 | #include <linux/slab.h> |
| 57 | #include <linux/jiffies.h> |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 58 | #include <linux/platform_device.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 59 | #include <linux/hwmon.h> |
Jean Delvare | 303760b | 2005-07-31 21:52:01 +0200 | [diff] [blame] | 60 | #include <linux/hwmon-sysfs.h> |
| 61 | #include <linux/hwmon-vid.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 62 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 63 | #include <linux/mutex.h> |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 64 | #include <linux/sysfs.h> |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 65 | #include <linux/string.h> |
| 66 | #include <linux/dmi.h> |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 67 | #include <linux/acpi.h> |
H Hartley Sweeten | 6055fae | 2009-09-15 17:18:13 +0200 | [diff] [blame] | 68 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 70 | #define DRVNAME "it87" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 72 | enum chips { it87, it8712, it8716, it8718, it8720, it8721, it8728, it8732, |
| 73 | it8771, it8772, it8781, it8782, it8783, it8786, it8790, it8603, |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 74 | it8620, it8622, it8628 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Jean Delvare | 67b671b | 2007-12-06 23:13:42 +0100 | [diff] [blame] | 76 | static unsigned short force_id; |
| 77 | module_param(force_id, ushort, 0); |
| 78 | MODULE_PARM_DESC(force_id, "Override the detected device ID"); |
| 79 | |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 80 | static struct platform_device *it87_pdev[2]; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 81 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 82 | #define REG_2E 0x2e /* The register to read/write */ |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 83 | #define REG_4E 0x4e /* Secondary register to read/write */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | #define DEV 0x07 /* Register: Logical device select */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #define PME 0x04 /* The device with the fan registers in it */ |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 87 | |
| 88 | /* The device with the IT8718F/IT8720F VID value in it */ |
| 89 | #define GPIO 0x07 |
| 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | #define DEVID 0x20 /* Register: Device ID */ |
| 92 | #define DEVREV 0x22 /* Register: Device Revision */ |
| 93 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 94 | static inline int superio_inb(int ioreg, int reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 96 | outb(reg, ioreg); |
| 97 | return inb(ioreg + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 100 | static inline void superio_outb(int ioreg, int reg, int val) |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 101 | { |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 102 | outb(reg, ioreg); |
| 103 | outb(val, ioreg + 1); |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 104 | } |
| 105 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 106 | static int superio_inw(int ioreg, int reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | { |
| 108 | int val; |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 109 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 110 | outb(reg++, ioreg); |
| 111 | val = inb(ioreg + 1) << 8; |
| 112 | outb(reg, ioreg); |
| 113 | val |= inb(ioreg + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | return val; |
| 115 | } |
| 116 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 117 | static inline void superio_select(int ioreg, int ldn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 119 | outb(DEV, ioreg); |
| 120 | outb(ldn, ioreg + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 123 | static inline int superio_enter(int ioreg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 125 | /* |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 126 | * Try to reserve ioreg and ioreg + 1 for exclusive access. |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 127 | */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 128 | if (!request_muxed_region(ioreg, 2, DRVNAME)) |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 129 | return -EBUSY; |
| 130 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 131 | outb(0x87, ioreg); |
| 132 | outb(0x01, ioreg); |
| 133 | outb(0x55, ioreg); |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 134 | outb(ioreg == REG_4E ? 0xaa : 0x55, ioreg); |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 135 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 138 | static inline void superio_exit(int ioreg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 140 | outb(0x02, ioreg); |
| 141 | outb(0x02, ioreg + 1); |
| 142 | release_region(ioreg, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
| 144 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 145 | /* Logical device 4 registers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #define IT8712F_DEVID 0x8712 |
| 147 | #define IT8705F_DEVID 0x8705 |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 148 | #define IT8716F_DEVID 0x8716 |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 149 | #define IT8718F_DEVID 0x8718 |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 150 | #define IT8720F_DEVID 0x8720 |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 151 | #define IT8721F_DEVID 0x8721 |
Rudolf Marek | 08a8f6e | 2007-06-09 10:11:16 -0400 | [diff] [blame] | 152 | #define IT8726F_DEVID 0x8726 |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 153 | #define IT8728F_DEVID 0x8728 |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 154 | #define IT8732F_DEVID 0x8732 |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 155 | #define IT8771E_DEVID 0x8771 |
| 156 | #define IT8772E_DEVID 0x8772 |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 157 | #define IT8781F_DEVID 0x8781 |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 158 | #define IT8782F_DEVID 0x8782 |
| 159 | #define IT8783E_DEVID 0x8783 |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 160 | #define IT8786E_DEVID 0x8786 |
Guenter Roeck | 4ee0715 | 2015-03-25 23:26:28 -0700 | [diff] [blame] | 161 | #define IT8790E_DEVID 0x8790 |
Rudolf Marek | 7183ae8 | 2014-04-04 18:01:35 +0200 | [diff] [blame] | 162 | #define IT8603E_DEVID 0x8603 |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 163 | #define IT8620E_DEVID 0x8620 |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 164 | #define IT8622E_DEVID 0x8622 |
Rudolf Marek | 574e9bd | 2014-04-04 18:01:35 +0200 | [diff] [blame] | 165 | #define IT8623E_DEVID 0x8623 |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 166 | #define IT8628E_DEVID 0x8628 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | #define IT87_ACT_REG 0x30 |
| 168 | #define IT87_BASE_REG 0x60 |
| 169 | |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 170 | /* Logical device 7 registers (IT8712F and later) */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 171 | #define IT87_SIO_GPIO1_REG 0x25 |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 172 | #define IT87_SIO_GPIO2_REG 0x26 |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 173 | #define IT87_SIO_GPIO3_REG 0x27 |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 174 | #define IT87_SIO_GPIO4_REG 0x28 |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 175 | #define IT87_SIO_GPIO5_REG 0x29 |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 176 | #define IT87_SIO_PINX1_REG 0x2a /* Pin selection */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 177 | #define IT87_SIO_PINX2_REG 0x2c /* Pin selection */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 178 | #define IT87_SIO_SPI_REG 0xef /* SPI function pin select */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 179 | #define IT87_SIO_VID_REG 0xfc /* VID value */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 180 | #define IT87_SIO_BEEP_PIN_REG 0xf6 /* Beep pin mapping */ |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /* Update battery voltage after every reading if true */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 183 | static bool update_vbat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | /* Not all BIOSes properly configure the PWM registers */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 186 | static bool fix_pwm_polarity; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /* Many IT87 constants specified below */ |
| 189 | |
| 190 | /* Length of ISA address segment */ |
| 191 | #define IT87_EXTENT 8 |
| 192 | |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 193 | /* Length of ISA address segment for Environmental Controller */ |
| 194 | #define IT87_EC_EXTENT 2 |
| 195 | |
| 196 | /* Offset of EC registers from ISA base address */ |
| 197 | #define IT87_EC_OFFSET 5 |
| 198 | |
| 199 | /* Where are the ISA address/data registers relative to the EC base address */ |
| 200 | #define IT87_ADDR_REG_OFFSET 0 |
| 201 | #define IT87_DATA_REG_OFFSET 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | /*----- The IT87 registers -----*/ |
| 204 | |
| 205 | #define IT87_REG_CONFIG 0x00 |
| 206 | |
| 207 | #define IT87_REG_ALARM1 0x01 |
| 208 | #define IT87_REG_ALARM2 0x02 |
| 209 | #define IT87_REG_ALARM3 0x03 |
| 210 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 211 | /* |
| 212 | * The IT8718F and IT8720F have the VID value in a different register, in |
| 213 | * Super-I/O configuration space. |
| 214 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | #define IT87_REG_VID 0x0a |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 216 | /* |
| 217 | * The IT8705F and IT8712F earlier than revision 0x08 use register 0x0b |
| 218 | * for fan divisors. Later IT8712F revisions must use 16-bit tachometer |
| 219 | * mode. |
| 220 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | #define IT87_REG_FAN_DIV 0x0b |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 222 | #define IT87_REG_FAN_16BIT 0x0c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 224 | /* |
| 225 | * Monitors: |
| 226 | * - up to 13 voltage (0 to 7, battery, avcc, 10 to 12) |
| 227 | * - up to 6 temp (1 to 6) |
| 228 | * - up to 6 fan (1 to 6) |
| 229 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 231 | static const u8 IT87_REG_FAN[] = { 0x0d, 0x0e, 0x0f, 0x80, 0x82, 0x4c }; |
| 232 | static const u8 IT87_REG_FAN_MIN[] = { 0x10, 0x11, 0x12, 0x84, 0x86, 0x4e }; |
| 233 | static const u8 IT87_REG_FANX[] = { 0x18, 0x19, 0x1a, 0x81, 0x83, 0x4d }; |
| 234 | static const u8 IT87_REG_FANX_MIN[] = { 0x1b, 0x1c, 0x1d, 0x85, 0x87, 0x4f }; |
| 235 | static const u8 IT87_REG_TEMP_OFFSET[] = { 0x56, 0x57, 0x59 }; |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | #define IT87_REG_FAN_MAIN_CTRL 0x13 |
| 238 | #define IT87_REG_FAN_CTL 0x14 |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 239 | static const u8 IT87_REG_PWM[] = { 0x15, 0x16, 0x17, 0x7f, 0xa7, 0xaf }; |
| 240 | static const u8 IT87_REG_PWM_DUTY[] = { 0x63, 0x6b, 0x73, 0x7b, 0xa3, 0xab }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Guenter Roeck | 559313c | 2015-04-01 10:15:38 -0700 | [diff] [blame] | 242 | static const u8 IT87_REG_VIN[] = { 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 243 | 0x27, 0x28, 0x2f, 0x2c, 0x2d, 0x2e }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Guenter Roeck | 559313c | 2015-04-01 10:15:38 -0700 | [diff] [blame] | 245 | #define IT87_REG_TEMP(nr) (0x29 + (nr)) |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 246 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | #define IT87_REG_VIN_MAX(nr) (0x30 + (nr) * 2) |
| 248 | #define IT87_REG_VIN_MIN(nr) (0x31 + (nr) * 2) |
| 249 | #define IT87_REG_TEMP_HIGH(nr) (0x40 + (nr) * 2) |
| 250 | #define IT87_REG_TEMP_LOW(nr) (0x41 + (nr) * 2) |
| 251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | #define IT87_REG_VIN_ENABLE 0x50 |
| 253 | #define IT87_REG_TEMP_ENABLE 0x51 |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 254 | #define IT87_REG_TEMP_EXTRA 0x55 |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 255 | #define IT87_REG_BEEP_ENABLE 0x5c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
| 257 | #define IT87_REG_CHIPID 0x58 |
| 258 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 259 | static const u8 IT87_REG_AUTO_BASE[] = { 0x60, 0x68, 0x70, 0x78, 0xa0, 0xa8 }; |
| 260 | |
| 261 | #define IT87_REG_AUTO_TEMP(nr, i) (IT87_REG_AUTO_BASE[nr] + (i)) |
| 262 | #define IT87_REG_AUTO_PWM(nr, i) (IT87_REG_AUTO_BASE[nr] + 5 + (i)) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 263 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 264 | #define IT87_REG_TEMP456_ENABLE 0x77 |
| 265 | |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 266 | #define NUM_VIN ARRAY_SIZE(IT87_REG_VIN) |
| 267 | #define NUM_VIN_LIMIT 8 |
| 268 | #define NUM_TEMP 6 |
| 269 | #define NUM_TEMP_OFFSET ARRAY_SIZE(IT87_REG_TEMP_OFFSET) |
| 270 | #define NUM_TEMP_LIMIT 3 |
| 271 | #define NUM_FAN ARRAY_SIZE(IT87_REG_FAN) |
| 272 | #define NUM_FAN_DIV 3 |
| 273 | #define NUM_PWM ARRAY_SIZE(IT87_REG_PWM) |
| 274 | #define NUM_AUTO_PWM ARRAY_SIZE(IT87_REG_PWM) |
| 275 | |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 276 | struct it87_devices { |
| 277 | const char *name; |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 278 | const char * const suffix; |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 279 | u32 features; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 280 | u8 peci_mask; |
| 281 | u8 old_peci_mask; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 282 | }; |
| 283 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 284 | #define FEAT_12MV_ADC BIT(0) |
| 285 | #define FEAT_NEWER_AUTOPWM BIT(1) |
| 286 | #define FEAT_OLD_AUTOPWM BIT(2) |
| 287 | #define FEAT_16BIT_FANS BIT(3) |
| 288 | #define FEAT_TEMP_OFFSET BIT(4) |
| 289 | #define FEAT_TEMP_PECI BIT(5) |
| 290 | #define FEAT_TEMP_OLD_PECI BIT(6) |
| 291 | #define FEAT_FAN16_CONFIG BIT(7) /* Need to enable 16-bit fans */ |
| 292 | #define FEAT_FIVE_FANS BIT(8) /* Supports five fans */ |
| 293 | #define FEAT_VID BIT(9) /* Set if chip supports VID */ |
| 294 | #define FEAT_IN7_INTERNAL BIT(10) /* Set if in7 is internal */ |
| 295 | #define FEAT_SIX_FANS BIT(11) /* Supports six fans */ |
| 296 | #define FEAT_10_9MV_ADC BIT(12) |
| 297 | #define FEAT_AVCC3 BIT(13) /* Chip supports in9/AVCC3 */ |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 298 | #define FEAT_FIVE_PWM BIT(14) /* Chip supports 5 pwm chn */ |
| 299 | #define FEAT_SIX_PWM BIT(15) /* Chip supports 6 pwm chn */ |
| 300 | #define FEAT_PWM_FREQ2 BIT(16) /* Separate pwm freq 2 */ |
| 301 | #define FEAT_SIX_TEMP BIT(17) /* Up to 6 temp sensors */ |
| 302 | #define FEAT_VIN3_5V BIT(18) /* VIN3 connected to +5V */ |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 303 | |
| 304 | static const struct it87_devices it87_devices[] = { |
| 305 | [it87] = { |
| 306 | .name = "it87", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 307 | .suffix = "F", |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 308 | .features = FEAT_OLD_AUTOPWM, /* may need to overwrite */ |
| 309 | }, |
| 310 | [it8712] = { |
| 311 | .name = "it8712", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 312 | .suffix = "F", |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 313 | .features = FEAT_OLD_AUTOPWM | FEAT_VID, |
| 314 | /* may need to overwrite */ |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 315 | }, |
| 316 | [it8716] = { |
| 317 | .name = "it8716", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 318 | .suffix = "F", |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 319 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 320 | | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_PWM_FREQ2, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 321 | }, |
| 322 | [it8718] = { |
| 323 | .name = "it8718", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 324 | .suffix = "F", |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 325 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 326 | | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS |
| 327 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 328 | .old_peci_mask = 0x4, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 329 | }, |
| 330 | [it8720] = { |
| 331 | .name = "it8720", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 332 | .suffix = "F", |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 333 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET | FEAT_VID |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 334 | | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS |
| 335 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 336 | .old_peci_mask = 0x4, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 337 | }, |
| 338 | [it8721] = { |
| 339 | .name = "it8721", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 340 | .suffix = "F", |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 341 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 342 | | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 343 | | FEAT_FAN16_CONFIG | FEAT_FIVE_FANS | FEAT_IN7_INTERNAL |
| 344 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 345 | .peci_mask = 0x05, |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 346 | .old_peci_mask = 0x02, /* Actually reports PCH */ |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 347 | }, |
| 348 | [it8728] = { |
| 349 | .name = "it8728", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 350 | .suffix = "F", |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 351 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 7f5726c | 2015-03-26 08:49:18 -0700 | [diff] [blame] | 352 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 353 | | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2, |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 354 | .peci_mask = 0x07, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 355 | }, |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 356 | [it8732] = { |
| 357 | .name = "it8732", |
| 358 | .suffix = "F", |
| 359 | .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS |
| 360 | | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI |
| 361 | | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL, |
| 362 | .peci_mask = 0x07, |
| 363 | .old_peci_mask = 0x02, /* Actually reports PCH */ |
| 364 | }, |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 365 | [it8771] = { |
| 366 | .name = "it8771", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 367 | .suffix = "E", |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 368 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 369 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL |
| 370 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 371 | /* PECI: guesswork */ |
| 372 | /* 12mV ADC (OHM) */ |
| 373 | /* 16 bit fans (OHM) */ |
| 374 | /* three fans, always 16 bit (guesswork) */ |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 375 | .peci_mask = 0x07, |
| 376 | }, |
| 377 | [it8772] = { |
| 378 | .name = "it8772", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 379 | .suffix = "E", |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 380 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 381 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL |
| 382 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 383 | /* PECI (coreboot) */ |
| 384 | /* 12mV ADC (HWSensors4, OHM) */ |
| 385 | /* 16 bit fans (HWSensors4, OHM) */ |
| 386 | /* three fans, always 16 bit (datasheet) */ |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 387 | .peci_mask = 0x07, |
| 388 | }, |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 389 | [it8781] = { |
| 390 | .name = "it8781", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 391 | .suffix = "F", |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 392 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 393 | | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2, |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 394 | .old_peci_mask = 0x4, |
| 395 | }, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 396 | [it8782] = { |
| 397 | .name = "it8782", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 398 | .suffix = "F", |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 399 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 400 | | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2, |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 401 | .old_peci_mask = 0x4, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 402 | }, |
| 403 | [it8783] = { |
| 404 | .name = "it8783", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 405 | .suffix = "E/F", |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 406 | .features = FEAT_16BIT_FANS | FEAT_TEMP_OFFSET |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 407 | | FEAT_TEMP_OLD_PECI | FEAT_FAN16_CONFIG | FEAT_PWM_FREQ2, |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 408 | .old_peci_mask = 0x4, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 409 | }, |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 410 | [it8786] = { |
| 411 | .name = "it8786", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 412 | .suffix = "E", |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 413 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 414 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL |
| 415 | | FEAT_PWM_FREQ2, |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 416 | .peci_mask = 0x07, |
| 417 | }, |
Guenter Roeck | 4ee0715 | 2015-03-25 23:26:28 -0700 | [diff] [blame] | 418 | [it8790] = { |
| 419 | .name = "it8790", |
| 420 | .suffix = "E", |
| 421 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 422 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL |
| 423 | | FEAT_PWM_FREQ2, |
Guenter Roeck | 4ee0715 | 2015-03-25 23:26:28 -0700 | [diff] [blame] | 424 | .peci_mask = 0x07, |
| 425 | }, |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 426 | [it8603] = { |
| 427 | .name = "it8603", |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 428 | .suffix = "E", |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 429 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 430 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 431 | | FEAT_AVCC3 | FEAT_PWM_FREQ2, |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 432 | .peci_mask = 0x07, |
| 433 | }, |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 434 | [it8620] = { |
| 435 | .name = "it8620", |
| 436 | .suffix = "E", |
| 437 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 438 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 439 | | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2 |
Guenter Roeck | a9eebd4 | 2017-02-08 13:51:16 -0800 | [diff] [blame] | 440 | | FEAT_SIX_TEMP | FEAT_VIN3_5V, |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 441 | .peci_mask = 0x07, |
| 442 | }, |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 443 | [it8622] = { |
| 444 | .name = "it8622", |
| 445 | .suffix = "E", |
| 446 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
| 447 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_FIVE_FANS |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 448 | | FEAT_FIVE_PWM | FEAT_IN7_INTERNAL | FEAT_PWM_FREQ2 |
| 449 | | FEAT_AVCC3 | FEAT_VIN3_5V, |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 450 | .peci_mask = 0x07, |
| 451 | }, |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 452 | [it8628] = { |
| 453 | .name = "it8628", |
| 454 | .suffix = "E", |
| 455 | .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS |
| 456 | | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_SIX_FANS |
| 457 | | FEAT_IN7_INTERNAL | FEAT_SIX_PWM | FEAT_PWM_FREQ2 |
Guenter Roeck | a9eebd4 | 2017-02-08 13:51:16 -0800 | [diff] [blame] | 458 | | FEAT_SIX_TEMP | FEAT_VIN3_5V, |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 459 | .peci_mask = 0x07, |
| 460 | }, |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 461 | }; |
| 462 | |
| 463 | #define has_16bit_fans(data) ((data)->features & FEAT_16BIT_FANS) |
| 464 | #define has_12mv_adc(data) ((data)->features & FEAT_12MV_ADC) |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 465 | #define has_10_9mv_adc(data) ((data)->features & FEAT_10_9MV_ADC) |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 466 | #define has_newer_autopwm(data) ((data)->features & FEAT_NEWER_AUTOPWM) |
| 467 | #define has_old_autopwm(data) ((data)->features & FEAT_OLD_AUTOPWM) |
| 468 | #define has_temp_offset(data) ((data)->features & FEAT_TEMP_OFFSET) |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 469 | #define has_temp_peci(data, nr) (((data)->features & FEAT_TEMP_PECI) && \ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 470 | ((data)->peci_mask & BIT(nr))) |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 471 | #define has_temp_old_peci(data, nr) \ |
| 472 | (((data)->features & FEAT_TEMP_OLD_PECI) && \ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 473 | ((data)->old_peci_mask & BIT(nr))) |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 474 | #define has_fan16_config(data) ((data)->features & FEAT_FAN16_CONFIG) |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 475 | #define has_five_fans(data) ((data)->features & (FEAT_FIVE_FANS | \ |
| 476 | FEAT_SIX_FANS)) |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 477 | #define has_vid(data) ((data)->features & FEAT_VID) |
Guenter Roeck | 7f5726c | 2015-03-26 08:49:18 -0700 | [diff] [blame] | 478 | #define has_in7_internal(data) ((data)->features & FEAT_IN7_INTERNAL) |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 479 | #define has_six_fans(data) ((data)->features & FEAT_SIX_FANS) |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 480 | #define has_avcc3(data) ((data)->features & FEAT_AVCC3) |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 481 | #define has_five_pwm(data) ((data)->features & (FEAT_FIVE_PWM \ |
| 482 | | FEAT_SIX_PWM)) |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 483 | #define has_six_pwm(data) ((data)->features & FEAT_SIX_PWM) |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 484 | #define has_pwm_freq2(data) ((data)->features & FEAT_PWM_FREQ2) |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 485 | #define has_six_temp(data) ((data)->features & FEAT_SIX_TEMP) |
Guenter Roeck | a9eebd4 | 2017-02-08 13:51:16 -0800 | [diff] [blame] | 486 | #define has_vin3_5v(data) ((data)->features & FEAT_VIN3_5V) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 488 | struct it87_sio_data { |
| 489 | enum chips type; |
| 490 | /* Values read from Super-I/O config space */ |
Andrew Paprocki | 0475169 | 2008-08-06 22:41:06 +0200 | [diff] [blame] | 491 | u8 revision; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 492 | u8 vid_value; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 493 | u8 beep_pin; |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 494 | u8 internal; /* Internal sensors can be labeled */ |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 495 | /* Features skipped based on config or DMI */ |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 496 | u16 skip_in; |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 497 | u8 skip_vid; |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 498 | u8 skip_fan; |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 499 | u8 skip_pwm; |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 500 | u8 skip_temp; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 501 | }; |
| 502 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 503 | /* |
| 504 | * For each registered chip, we need to keep some data in memory. |
| 505 | * The structure is dynamically allocated. |
| 506 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | struct it87_data { |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 508 | const struct attribute_group *groups[7]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | enum chips type; |
Guenter Roeck | aa8b187 | 2016-08-09 22:09:19 -0700 | [diff] [blame] | 510 | u32 features; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 511 | u8 peci_mask; |
| 512 | u8 old_peci_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 514 | unsigned short addr; |
| 515 | const char *name; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 516 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | char valid; /* !=0 if following fields are valid */ |
| 518 | unsigned long last_updated; /* In jiffies */ |
| 519 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 520 | u16 in_scaled; /* Internal voltage sensors are scaled */ |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 521 | u16 in_internal; /* Bitfield, internal sensors (for labels) */ |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 522 | u16 has_in; /* Bitfield, voltage sensors enabled */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 523 | u8 in[NUM_VIN][3]; /* [nr][0]=in, [1]=min, [2]=max */ |
Jean Delvare | 9060f8b | 2006-08-28 14:24:17 +0200 | [diff] [blame] | 524 | u8 has_fan; /* Bitfield, fans enabled */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 525 | u16 fan[NUM_FAN][2]; /* Register values, [nr][0]=fan, [1]=min */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 526 | u8 has_temp; /* Bitfield, temp sensors enabled */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 527 | s8 temp[NUM_TEMP][4]; /* [nr][0]=temp, [1]=min, [2]=max, [3]=offset */ |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 528 | u8 sensor; /* Register value (IT87_REG_TEMP_ENABLE) */ |
| 529 | u8 extra; /* Register value (IT87_REG_TEMP_EXTRA) */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 530 | u8 fan_div[NUM_FAN_DIV];/* Register encoding, shifted right */ |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 531 | bool has_vid; /* True if VID supported */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | u8 vid; /* Register encoding, combined */ |
Jean Delvare | a7be58a | 2005-12-18 16:40:14 +0100 | [diff] [blame] | 533 | u8 vrm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | u32 alarms; /* Register encoding, combined */ |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 535 | bool has_beep; /* true if beep supported */ |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 536 | u8 beeps; /* Register encoding */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | u8 fan_main_ctrl; /* Register value */ |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 538 | u8 fan_ctl; /* Register value */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 539 | |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 540 | /* |
| 541 | * The following 3 arrays correspond to the same registers up to |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 542 | * the IT8720F. The meaning of bits 6-0 depends on the value of bit |
| 543 | * 7, and we want to preserve settings on mode changes, so we have |
| 544 | * to track all values separately. |
| 545 | * Starting with the IT8721F, the manual PWM duty cycles are stored |
| 546 | * in separate registers (8-bit values), so the separate tracking |
| 547 | * 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] | 548 | * simple. |
| 549 | */ |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 550 | u8 has_pwm; /* Bitfield, pwm control enabled */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 551 | u8 pwm_ctrl[NUM_PWM]; /* Register value */ |
| 552 | u8 pwm_duty[NUM_PWM]; /* Manual PWM value set by user */ |
| 553 | u8 pwm_temp_map[NUM_PWM];/* PWM to temp. chan. mapping (bits 1-0) */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 554 | |
| 555 | /* Automatic fan speed control registers */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 556 | u8 auto_pwm[NUM_AUTO_PWM][4]; /* [nr][3] is hard-coded */ |
| 557 | s8 auto_temp[NUM_AUTO_PWM][5]; /* [nr][0] is point1_temp_hyst */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | }; |
| 559 | |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 560 | static int adc_lsb(const struct it87_data *data, int nr) |
| 561 | { |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 562 | int lsb; |
| 563 | |
| 564 | if (has_12mv_adc(data)) |
| 565 | lsb = 120; |
| 566 | else if (has_10_9mv_adc(data)) |
| 567 | lsb = 109; |
| 568 | else |
| 569 | lsb = 160; |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 570 | if (data->in_scaled & BIT(nr)) |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 571 | lsb <<= 1; |
| 572 | return lsb; |
| 573 | } |
| 574 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 575 | static u8 in_to_reg(const struct it87_data *data, int nr, long val) |
| 576 | { |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 577 | val = DIV_ROUND_CLOSEST(val * 10, adc_lsb(data, nr)); |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 578 | return clamp_val(val, 0, 255); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | static int in_from_reg(const struct it87_data *data, int nr, int val) |
| 582 | { |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 583 | return DIV_ROUND_CLOSEST(val * adc_lsb(data, nr), 10); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 584 | } |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 585 | |
| 586 | static inline u8 FAN_TO_REG(long rpm, int div) |
| 587 | { |
| 588 | if (rpm == 0) |
| 589 | return 255; |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 590 | rpm = clamp_val(rpm, 1, 1000000); |
| 591 | return clamp_val((1350000 + rpm * div / 2) / (rpm * div), 1, 254); |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | static inline u16 FAN16_TO_REG(long rpm) |
| 595 | { |
| 596 | if (rpm == 0) |
| 597 | return 0xffff; |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 598 | return clamp_val((1350000 + rpm) / (rpm * 2), 1, 0xfffe); |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | #define FAN_FROM_REG(val, div) ((val) == 0 ? -1 : (val) == 255 ? 0 : \ |
| 602 | 1350000 / ((val) * (div))) |
| 603 | /* The divider is fixed to 2 in 16-bit mode */ |
| 604 | #define FAN16_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \ |
| 605 | 1350000 / ((val) * 2)) |
| 606 | |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 607 | #define TEMP_TO_REG(val) (clamp_val(((val) < 0 ? (((val) - 500) / 1000) : \ |
| 608 | ((val) + 500) / 1000), -128, 127)) |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 609 | #define TEMP_FROM_REG(val) ((val) * 1000) |
| 610 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 611 | static u8 pwm_to_reg(const struct it87_data *data, long val) |
| 612 | { |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 613 | if (has_newer_autopwm(data)) |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 614 | return val; |
| 615 | else |
| 616 | return val >> 1; |
| 617 | } |
| 618 | |
| 619 | static int pwm_from_reg(const struct it87_data *data, u8 reg) |
| 620 | { |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 621 | if (has_newer_autopwm(data)) |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 622 | return reg; |
| 623 | else |
| 624 | return (reg & 0x7f) << 1; |
| 625 | } |
| 626 | |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 627 | static int DIV_TO_REG(int val) |
| 628 | { |
| 629 | int answer = 0; |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 630 | |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 631 | while (answer < 7 && (val >>= 1)) |
| 632 | answer++; |
| 633 | return answer; |
| 634 | } |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 635 | |
| 636 | #define DIV_FROM_REG(val) BIT(val) |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 637 | |
Guenter Roeck | f56c9c0 | 2015-03-26 20:01:24 -0700 | [diff] [blame] | 638 | /* |
| 639 | * PWM base frequencies. The frequency has to be divided by either 128 or 256, |
| 640 | * depending on the chip type, to calculate the actual PWM frequency. |
| 641 | * |
| 642 | * Some of the chip datasheets suggest a base frequency of 51 kHz instead |
| 643 | * of 750 kHz for the slowest base frequency, resulting in a PWM frequency |
| 644 | * of 200 Hz. Sometimes both PWM frequency select registers are affected, |
| 645 | * sometimes just one. It is unknown if this is a datasheet error or real, |
| 646 | * so this is ignored for now. |
| 647 | */ |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 648 | static const unsigned int pwm_freq[8] = { |
Guenter Roeck | f56c9c0 | 2015-03-26 20:01:24 -0700 | [diff] [blame] | 649 | 48000000, |
| 650 | 24000000, |
| 651 | 12000000, |
| 652 | 8000000, |
| 653 | 6000000, |
| 654 | 3000000, |
| 655 | 1500000, |
| 656 | 750000, |
Jean Delvare | 0df6454d | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 657 | }; |
| 658 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 659 | /* |
| 660 | * Must be called with data->update_lock held, except during initialization. |
| 661 | * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks, |
| 662 | * would slow down the IT87 access and should not be necessary. |
| 663 | */ |
| 664 | static int it87_read_value(struct it87_data *data, u8 reg) |
| 665 | { |
| 666 | outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET); |
| 667 | return inb_p(data->addr + IT87_DATA_REG_OFFSET); |
| 668 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 670 | /* |
| 671 | * Must be called with data->update_lock held, except during initialization. |
| 672 | * We ignore the IT87 BUSY flag at this moment - it could lead to deadlocks, |
| 673 | * would slow down the IT87 access and should not be necessary. |
| 674 | */ |
| 675 | static void it87_write_value(struct it87_data *data, u8 reg, u8 value) |
| 676 | { |
| 677 | outb_p(reg, data->addr + IT87_ADDR_REG_OFFSET); |
| 678 | outb_p(value, data->addr + IT87_DATA_REG_OFFSET); |
| 679 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 681 | static void it87_update_pwm_ctrl(struct it87_data *data, int nr) |
| 682 | { |
| 683 | data->pwm_ctrl[nr] = it87_read_value(data, IT87_REG_PWM[nr]); |
| 684 | if (has_newer_autopwm(data)) { |
Guenter Roeck | 0624d86 | 2015-04-06 21:04:18 -0700 | [diff] [blame] | 685 | data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03; |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 686 | data->pwm_duty[nr] = it87_read_value(data, |
| 687 | IT87_REG_PWM_DUTY[nr]); |
| 688 | } else { |
| 689 | if (data->pwm_ctrl[nr] & 0x80) /* Automatic mode */ |
| 690 | data->pwm_temp_map[nr] = data->pwm_ctrl[nr] & 0x03; |
| 691 | else /* Manual mode */ |
| 692 | data->pwm_duty[nr] = data->pwm_ctrl[nr] & 0x7f; |
| 693 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 695 | if (has_old_autopwm(data)) { |
| 696 | int i; |
| 697 | |
| 698 | for (i = 0; i < 5 ; i++) |
| 699 | data->auto_temp[nr][i] = it87_read_value(data, |
| 700 | IT87_REG_AUTO_TEMP(nr, i)); |
| 701 | for (i = 0; i < 3 ; i++) |
| 702 | data->auto_pwm[nr][i] = it87_read_value(data, |
| 703 | IT87_REG_AUTO_PWM(nr, i)); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 704 | } else if (has_newer_autopwm(data)) { |
| 705 | int i; |
| 706 | |
| 707 | /* |
| 708 | * 0: temperature hysteresis (base + 5) |
| 709 | * 1: fan off temperature (base + 0) |
| 710 | * 2: fan start temperature (base + 1) |
| 711 | * 3: fan max temperature (base + 2) |
| 712 | */ |
| 713 | data->auto_temp[nr][0] = |
| 714 | it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 5)); |
| 715 | |
| 716 | for (i = 0; i < 3 ; i++) |
| 717 | data->auto_temp[nr][i + 1] = |
| 718 | it87_read_value(data, |
| 719 | IT87_REG_AUTO_TEMP(nr, i)); |
| 720 | /* |
| 721 | * 0: start pwm value (base + 3) |
| 722 | * 1: pwm slope (base + 4, 1/8th pwm) |
| 723 | */ |
| 724 | data->auto_pwm[nr][0] = |
| 725 | it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 3)); |
| 726 | data->auto_pwm[nr][1] = |
| 727 | it87_read_value(data, IT87_REG_AUTO_TEMP(nr, 4)); |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 728 | } |
| 729 | } |
| 730 | |
| 731 | static struct it87_data *it87_update_device(struct device *dev) |
| 732 | { |
| 733 | struct it87_data *data = dev_get_drvdata(dev); |
| 734 | int i; |
| 735 | |
| 736 | mutex_lock(&data->update_lock); |
| 737 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 738 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) || |
| 739 | !data->valid) { |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 740 | if (update_vbat) { |
| 741 | /* |
| 742 | * Cleared after each update, so reenable. Value |
| 743 | * returned by this read will be previous value |
| 744 | */ |
| 745 | it87_write_value(data, IT87_REG_CONFIG, |
| 746 | it87_read_value(data, IT87_REG_CONFIG) | 0x40); |
| 747 | } |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 748 | for (i = 0; i < NUM_VIN; i++) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 749 | if (!(data->has_in & BIT(i))) |
Guenter Roeck | 559313c | 2015-04-01 10:15:38 -0700 | [diff] [blame] | 750 | continue; |
| 751 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 752 | data->in[i][0] = |
Guenter Roeck | 559313c | 2015-04-01 10:15:38 -0700 | [diff] [blame] | 753 | it87_read_value(data, IT87_REG_VIN[i]); |
| 754 | |
| 755 | /* VBAT and AVCC don't have limit registers */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 756 | if (i >= NUM_VIN_LIMIT) |
Guenter Roeck | 559313c | 2015-04-01 10:15:38 -0700 | [diff] [blame] | 757 | continue; |
| 758 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 759 | data->in[i][1] = |
| 760 | it87_read_value(data, IT87_REG_VIN_MIN(i)); |
| 761 | data->in[i][2] = |
| 762 | it87_read_value(data, IT87_REG_VIN_MAX(i)); |
| 763 | } |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 764 | |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 765 | for (i = 0; i < NUM_FAN; i++) { |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 766 | /* Skip disabled fans */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 767 | if (!(data->has_fan & BIT(i))) |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 768 | continue; |
| 769 | |
| 770 | data->fan[i][1] = |
| 771 | it87_read_value(data, IT87_REG_FAN_MIN[i]); |
| 772 | data->fan[i][0] = it87_read_value(data, |
| 773 | IT87_REG_FAN[i]); |
| 774 | /* Add high byte if in 16-bit mode */ |
| 775 | if (has_16bit_fans(data)) { |
| 776 | data->fan[i][0] |= it87_read_value(data, |
| 777 | IT87_REG_FANX[i]) << 8; |
| 778 | data->fan[i][1] |= it87_read_value(data, |
| 779 | IT87_REG_FANX_MIN[i]) << 8; |
| 780 | } |
| 781 | } |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 782 | for (i = 0; i < NUM_TEMP; i++) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 783 | if (!(data->has_temp & BIT(i))) |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 784 | continue; |
| 785 | data->temp[i][0] = |
| 786 | it87_read_value(data, IT87_REG_TEMP(i)); |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 787 | |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 788 | if (has_temp_offset(data) && i < NUM_TEMP_OFFSET) |
| 789 | data->temp[i][3] = |
| 790 | it87_read_value(data, |
| 791 | IT87_REG_TEMP_OFFSET[i]); |
| 792 | |
| 793 | if (i >= NUM_TEMP_LIMIT) |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 794 | continue; |
| 795 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 796 | data->temp[i][1] = |
| 797 | it87_read_value(data, IT87_REG_TEMP_LOW(i)); |
| 798 | data->temp[i][2] = |
| 799 | it87_read_value(data, IT87_REG_TEMP_HIGH(i)); |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 800 | } |
| 801 | |
| 802 | /* Newer chips don't have clock dividers */ |
| 803 | if ((data->has_fan & 0x07) && !has_16bit_fans(data)) { |
| 804 | i = it87_read_value(data, IT87_REG_FAN_DIV); |
| 805 | data->fan_div[0] = i & 0x07; |
| 806 | data->fan_div[1] = (i >> 3) & 0x07; |
| 807 | data->fan_div[2] = (i & 0x40) ? 3 : 1; |
| 808 | } |
| 809 | |
| 810 | data->alarms = |
| 811 | it87_read_value(data, IT87_REG_ALARM1) | |
| 812 | (it87_read_value(data, IT87_REG_ALARM2) << 8) | |
| 813 | (it87_read_value(data, IT87_REG_ALARM3) << 16); |
| 814 | data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
| 815 | |
| 816 | data->fan_main_ctrl = it87_read_value(data, |
| 817 | IT87_REG_FAN_MAIN_CTRL); |
| 818 | data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL); |
Guenter Roeck | 0624d86 | 2015-04-06 21:04:18 -0700 | [diff] [blame] | 819 | for (i = 0; i < NUM_PWM; i++) { |
| 820 | if (!(data->has_pwm & BIT(i))) |
| 821 | continue; |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 822 | it87_update_pwm_ctrl(data, i); |
Guenter Roeck | 0624d86 | 2015-04-06 21:04:18 -0700 | [diff] [blame] | 823 | } |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 824 | |
| 825 | data->sensor = it87_read_value(data, IT87_REG_TEMP_ENABLE); |
| 826 | data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA); |
| 827 | /* |
| 828 | * The IT8705F does not have VID capability. |
| 829 | * The IT8718F and later don't use IT87_REG_VID for the |
| 830 | * same purpose. |
| 831 | */ |
| 832 | if (data->type == it8712 || data->type == it8716) { |
| 833 | data->vid = it87_read_value(data, IT87_REG_VID); |
| 834 | /* |
| 835 | * The older IT8712F revisions had only 5 VID pins, |
| 836 | * but we assume it is always safe to read 6 bits. |
| 837 | */ |
| 838 | data->vid &= 0x3f; |
| 839 | } |
| 840 | data->last_updated = jiffies; |
| 841 | data->valid = 1; |
| 842 | } |
| 843 | |
| 844 | mutex_unlock(&data->update_lock); |
| 845 | |
| 846 | return data; |
| 847 | } |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 848 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 849 | static ssize_t show_in(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 850 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | { |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 852 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 854 | int index = sattr->index; |
| 855 | int nr = sattr->nr; |
| 856 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 857 | 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] | 858 | } |
| 859 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 860 | static ssize_t set_in(struct device *dev, struct device_attribute *attr, |
| 861 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | { |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 863 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 864 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 865 | int index = sattr->index; |
| 866 | int nr = sattr->nr; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 867 | unsigned long val; |
| 868 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 869 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 870 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 872 | mutex_lock(&data->update_lock); |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 873 | data->in[nr][index] = in_to_reg(data, nr, val); |
| 874 | it87_write_value(data, |
| 875 | index == 1 ? IT87_REG_VIN_MIN(nr) |
| 876 | : IT87_REG_VIN_MAX(nr), |
| 877 | data->in[nr][index]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 878 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | return count; |
| 880 | } |
| 881 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 882 | static SENSOR_DEVICE_ATTR_2(in0_input, S_IRUGO, show_in, NULL, 0, 0); |
| 883 | static SENSOR_DEVICE_ATTR_2(in0_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 884 | 0, 1); |
| 885 | static SENSOR_DEVICE_ATTR_2(in0_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 886 | 0, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 888 | static SENSOR_DEVICE_ATTR_2(in1_input, S_IRUGO, show_in, NULL, 1, 0); |
| 889 | static SENSOR_DEVICE_ATTR_2(in1_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 890 | 1, 1); |
| 891 | static SENSOR_DEVICE_ATTR_2(in1_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 892 | 1, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | |
Guenter Roeck | 929c6a5 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 894 | static SENSOR_DEVICE_ATTR_2(in2_input, S_IRUGO, show_in, NULL, 2, 0); |
| 895 | static SENSOR_DEVICE_ATTR_2(in2_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 896 | 2, 1); |
| 897 | static SENSOR_DEVICE_ATTR_2(in2_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 898 | 2, 2); |
| 899 | |
| 900 | static SENSOR_DEVICE_ATTR_2(in3_input, S_IRUGO, show_in, NULL, 3, 0); |
| 901 | static SENSOR_DEVICE_ATTR_2(in3_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 902 | 3, 1); |
| 903 | static SENSOR_DEVICE_ATTR_2(in3_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 904 | 3, 2); |
| 905 | |
| 906 | static SENSOR_DEVICE_ATTR_2(in4_input, S_IRUGO, show_in, NULL, 4, 0); |
| 907 | static SENSOR_DEVICE_ATTR_2(in4_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 908 | 4, 1); |
| 909 | static SENSOR_DEVICE_ATTR_2(in4_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 910 | 4, 2); |
| 911 | |
| 912 | static SENSOR_DEVICE_ATTR_2(in5_input, S_IRUGO, show_in, NULL, 5, 0); |
| 913 | static SENSOR_DEVICE_ATTR_2(in5_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 914 | 5, 1); |
| 915 | static SENSOR_DEVICE_ATTR_2(in5_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 916 | 5, 2); |
| 917 | |
| 918 | static SENSOR_DEVICE_ATTR_2(in6_input, S_IRUGO, show_in, NULL, 6, 0); |
| 919 | static SENSOR_DEVICE_ATTR_2(in6_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 920 | 6, 1); |
| 921 | static SENSOR_DEVICE_ATTR_2(in6_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 922 | 6, 2); |
| 923 | |
| 924 | static SENSOR_DEVICE_ATTR_2(in7_input, S_IRUGO, show_in, NULL, 7, 0); |
| 925 | static SENSOR_DEVICE_ATTR_2(in7_min, S_IRUGO | S_IWUSR, show_in, set_in, |
| 926 | 7, 1); |
| 927 | static SENSOR_DEVICE_ATTR_2(in7_max, S_IRUGO | S_IWUSR, show_in, set_in, |
| 928 | 7, 2); |
| 929 | |
| 930 | static SENSOR_DEVICE_ATTR_2(in8_input, S_IRUGO, show_in, NULL, 8, 0); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 931 | static SENSOR_DEVICE_ATTR_2(in9_input, S_IRUGO, show_in, NULL, 9, 0); |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 932 | static SENSOR_DEVICE_ATTR_2(in10_input, S_IRUGO, show_in, NULL, 10, 0); |
| 933 | static SENSOR_DEVICE_ATTR_2(in11_input, S_IRUGO, show_in, NULL, 11, 0); |
| 934 | static SENSOR_DEVICE_ATTR_2(in12_input, S_IRUGO, show_in, NULL, 12, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 936 | /* Up to 6 temperatures */ |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 937 | static ssize_t show_temp(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 938 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | { |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 940 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 941 | int nr = sattr->nr; |
| 942 | int index = sattr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 944 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 945 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[nr][index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 947 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 948 | static ssize_t set_temp(struct device *dev, struct device_attribute *attr, |
| 949 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 951 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 952 | int nr = sattr->nr; |
| 953 | int index = sattr->index; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 954 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 955 | long val; |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 956 | u8 reg, regval; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 957 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 958 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 959 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 961 | mutex_lock(&data->update_lock); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 962 | |
| 963 | switch (index) { |
| 964 | default: |
| 965 | case 1: |
| 966 | reg = IT87_REG_TEMP_LOW(nr); |
| 967 | break; |
| 968 | case 2: |
| 969 | reg = IT87_REG_TEMP_HIGH(nr); |
| 970 | break; |
| 971 | case 3: |
| 972 | regval = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
| 973 | if (!(regval & 0x80)) { |
| 974 | regval |= 0x80; |
| 975 | it87_write_value(data, IT87_REG_BEEP_ENABLE, regval); |
| 976 | } |
| 977 | data->valid = 0; |
| 978 | reg = IT87_REG_TEMP_OFFSET[nr]; |
| 979 | break; |
| 980 | } |
| 981 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 982 | data->temp[nr][index] = TEMP_TO_REG(val); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 983 | it87_write_value(data, reg, data->temp[nr][index]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 984 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | return count; |
| 986 | } |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 987 | |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 988 | static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0); |
| 989 | static SENSOR_DEVICE_ATTR_2(temp1_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 990 | 0, 1); |
| 991 | static SENSOR_DEVICE_ATTR_2(temp1_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 992 | 0, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 993 | static SENSOR_DEVICE_ATTR_2(temp1_offset, S_IRUGO | S_IWUSR, show_temp, |
| 994 | set_temp, 0, 3); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 995 | static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 1, 0); |
| 996 | static SENSOR_DEVICE_ATTR_2(temp2_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 997 | 1, 1); |
| 998 | static SENSOR_DEVICE_ATTR_2(temp2_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 999 | 1, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1000 | static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IRUGO | S_IWUSR, show_temp, |
| 1001 | set_temp, 1, 3); |
Guenter Roeck | 60ca385 | 2012-12-19 22:17:00 +0100 | [diff] [blame] | 1002 | static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 2, 0); |
| 1003 | static SENSOR_DEVICE_ATTR_2(temp3_min, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 1004 | 2, 1); |
| 1005 | static SENSOR_DEVICE_ATTR_2(temp3_max, S_IRUGO | S_IWUSR, show_temp, set_temp, |
| 1006 | 2, 2); |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1007 | static SENSOR_DEVICE_ATTR_2(temp3_offset, S_IRUGO | S_IWUSR, show_temp, |
| 1008 | set_temp, 2, 3); |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 1009 | static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 3, 0); |
| 1010 | static SENSOR_DEVICE_ATTR_2(temp5_input, S_IRUGO, show_temp, NULL, 4, 0); |
| 1011 | static SENSOR_DEVICE_ATTR_2(temp6_input, S_IRUGO, show_temp, NULL, 5, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1013 | static ssize_t show_temp_type(struct device *dev, struct device_attribute *attr, |
| 1014 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1016 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 1017 | int nr = sensor_attr->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1019 | u8 reg = data->sensor; /* In case value is updated while used */ |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1020 | u8 extra = data->extra; |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1021 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1022 | if ((has_temp_peci(data, nr) && (reg >> 6 == nr + 1)) || |
| 1023 | (has_temp_old_peci(data, nr) && (extra & 0x80))) |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1024 | return sprintf(buf, "6\n"); /* Intel PECI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | if (reg & (1 << nr)) |
| 1026 | return sprintf(buf, "3\n"); /* thermal diode */ |
| 1027 | if (reg & (8 << nr)) |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 1028 | return sprintf(buf, "4\n"); /* thermistor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | return sprintf(buf, "0\n"); /* disabled */ |
| 1030 | } |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1031 | |
| 1032 | static ssize_t set_temp_type(struct device *dev, struct device_attribute *attr, |
| 1033 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1035 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 1036 | int nr = sensor_attr->index; |
| 1037 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1038 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1039 | long val; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1040 | u8 reg, extra; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1041 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1042 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1043 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 1045 | reg = it87_read_value(data, IT87_REG_TEMP_ENABLE); |
| 1046 | reg &= ~(1 << nr); |
| 1047 | reg &= ~(8 << nr); |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1048 | if (has_temp_peci(data, nr) && (reg >> 6 == nr + 1 || val == 6)) |
| 1049 | reg &= 0x3f; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1050 | extra = it87_read_value(data, IT87_REG_TEMP_EXTRA); |
| 1051 | if (has_temp_old_peci(data, nr) && ((extra & 0x80) || val == 6)) |
| 1052 | extra &= 0x7f; |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 1053 | if (val == 2) { /* backwards compatibility */ |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1054 | dev_warn(dev, |
| 1055 | "Sensor type 2 is deprecated, please use 4 instead\n"); |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 1056 | val = 4; |
| 1057 | } |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1058 | /* 3 = thermal diode; 4 = thermistor; 6 = Intel PECI; 0 = disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | if (val == 3) |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 1060 | reg |= 1 << nr; |
Jean Delvare | 4ed1077 | 2008-10-17 17:51:16 +0200 | [diff] [blame] | 1061 | else if (val == 4) |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 1062 | reg |= 8 << nr; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1063 | else if (has_temp_peci(data, nr) && val == 6) |
| 1064 | reg |= (nr + 1) << 6; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1065 | else if (has_temp_old_peci(data, nr) && val == 6) |
| 1066 | extra |= 0x80; |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 1067 | else if (val != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | return -EINVAL; |
Jean Delvare | 8acf07c | 2010-04-14 16:14:09 +0200 | [diff] [blame] | 1069 | |
| 1070 | mutex_lock(&data->update_lock); |
| 1071 | data->sensor = reg; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1072 | data->extra = extra; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1073 | it87_write_value(data, IT87_REG_TEMP_ENABLE, data->sensor); |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1074 | if (has_temp_old_peci(data, nr)) |
| 1075 | it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra); |
Jean Delvare | 2b3d1d8 | 2010-04-14 16:14:10 +0200 | [diff] [blame] | 1076 | data->valid = 0; /* Force cache refresh */ |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1077 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | return count; |
| 1079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
Guenter Roeck | 2cece01 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1081 | static SENSOR_DEVICE_ATTR(temp1_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 1082 | set_temp_type, 0); |
| 1083 | static SENSOR_DEVICE_ATTR(temp2_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 1084 | set_temp_type, 1); |
| 1085 | static SENSOR_DEVICE_ATTR(temp3_type, S_IRUGO | S_IWUSR, show_temp_type, |
| 1086 | set_temp_type, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
Guenter Roeck | f1bbe61 | 2015-04-05 13:16:54 -0700 | [diff] [blame] | 1088 | /* 6 Fans */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1089 | |
| 1090 | static int pwm_mode(const struct it87_data *data, int nr) |
| 1091 | { |
Guenter Roeck | f1bbe61 | 2015-04-05 13:16:54 -0700 | [diff] [blame] | 1092 | if (data->type != it8603 && nr < 3 && !(data->fan_main_ctrl & BIT(nr))) |
| 1093 | return 0; /* Full speed */ |
| 1094 | if (data->pwm_ctrl[nr] & 0x80) |
| 1095 | return 2; /* Automatic mode */ |
| 1096 | if ((data->type == it8603 || nr >= 3) && |
| 1097 | data->pwm_duty[nr] == pwm_to_reg(data, 0xff)) |
| 1098 | return 0; /* Full speed */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1099 | |
Guenter Roeck | f1bbe61 | 2015-04-05 13:16:54 -0700 | [diff] [blame] | 1100 | return 1; /* Manual mode */ |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1101 | } |
| 1102 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1103 | static ssize_t show_fan(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1104 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | { |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1106 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 1107 | int nr = sattr->nr; |
| 1108 | int index = sattr->index; |
| 1109 | int speed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1111 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1112 | speed = has_16bit_fans(data) ? |
| 1113 | FAN16_FROM_REG(data->fan[nr][index]) : |
| 1114 | FAN_FROM_REG(data->fan[nr][index], |
| 1115 | DIV_FROM_REG(data->fan_div[nr])); |
| 1116 | return sprintf(buf, "%d\n", speed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1118 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1119 | static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1120 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1122 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1123 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1124 | int nr = sensor_attr->index; |
| 1125 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1126 | return sprintf(buf, "%lu\n", DIV_FROM_REG(data->fan_div[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1128 | |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 1129 | static ssize_t show_pwm_enable(struct device *dev, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1130 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1132 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1133 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1134 | int nr = sensor_attr->index; |
| 1135 | |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1136 | return sprintf(buf, "%d\n", pwm_mode(data, nr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1138 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1139 | static ssize_t show_pwm(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1140 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1142 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1143 | struct it87_data *data = it87_update_device(dev); |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1144 | int nr = sensor_attr->index; |
| 1145 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1146 | return sprintf(buf, "%d\n", |
| 1147 | pwm_from_reg(data, data->pwm_duty[nr])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1149 | |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1150 | static ssize_t show_pwm_freq(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1151 | char *buf) |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1152 | { |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1153 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1154 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1155 | int nr = sensor_attr->index; |
Guenter Roeck | f56c9c0 | 2015-03-26 20:01:24 -0700 | [diff] [blame] | 1156 | unsigned int freq; |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1157 | int index; |
| 1158 | |
| 1159 | if (has_pwm_freq2(data) && nr == 1) |
| 1160 | index = (data->extra >> 4) & 0x07; |
| 1161 | else |
| 1162 | index = (data->fan_ctl >> 4) & 0x07; |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1163 | |
Guenter Roeck | f56c9c0 | 2015-03-26 20:01:24 -0700 | [diff] [blame] | 1164 | freq = pwm_freq[index] / (has_newer_autopwm(data) ? 256 : 128); |
| 1165 | |
| 1166 | return sprintf(buf, "%u\n", freq); |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1167 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1168 | |
| 1169 | static ssize_t set_fan(struct device *dev, struct device_attribute *attr, |
| 1170 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | { |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1172 | struct sensor_device_attribute_2 *sattr = to_sensor_dev_attr_2(attr); |
| 1173 | int nr = sattr->nr; |
| 1174 | int index = sattr->index; |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1175 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1176 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1177 | long val; |
Jean Delvare | 7f999aa | 2007-02-14 21:15:03 +0100 | [diff] [blame] | 1178 | u8 reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1180 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1181 | return -EINVAL; |
| 1182 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1183 | mutex_lock(&data->update_lock); |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1184 | |
| 1185 | if (has_16bit_fans(data)) { |
| 1186 | data->fan[nr][index] = FAN16_TO_REG(val); |
| 1187 | it87_write_value(data, IT87_REG_FAN_MIN[nr], |
| 1188 | data->fan[nr][index] & 0xff); |
| 1189 | it87_write_value(data, IT87_REG_FANX_MIN[nr], |
| 1190 | data->fan[nr][index] >> 8); |
| 1191 | } else { |
| 1192 | reg = it87_read_value(data, IT87_REG_FAN_DIV); |
| 1193 | switch (nr) { |
| 1194 | case 0: |
| 1195 | data->fan_div[nr] = reg & 0x07; |
| 1196 | break; |
| 1197 | case 1: |
| 1198 | data->fan_div[nr] = (reg >> 3) & 0x07; |
| 1199 | break; |
| 1200 | case 2: |
| 1201 | data->fan_div[nr] = (reg & 0x40) ? 3 : 1; |
| 1202 | break; |
| 1203 | } |
| 1204 | data->fan[nr][index] = |
| 1205 | FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr])); |
| 1206 | it87_write_value(data, IT87_REG_FAN_MIN[nr], |
| 1207 | data->fan[nr][index]); |
Jean Delvare | 07eab46 | 2005-11-23 15:44:31 -0800 | [diff] [blame] | 1208 | } |
| 1209 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1210 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | return count; |
| 1212 | } |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1213 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1214 | static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1215 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1217 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1218 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1219 | int nr = sensor_attr->index; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1220 | unsigned long val; |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 1221 | int min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | u8 old; |
| 1223 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1224 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1225 | return -EINVAL; |
| 1226 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1227 | mutex_lock(&data->update_lock); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1228 | old = it87_read_value(data, IT87_REG_FAN_DIV); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 1230 | /* Save fan min limit */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1231 | 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] | 1232 | |
| 1233 | switch (nr) { |
| 1234 | case 0: |
| 1235 | case 1: |
| 1236 | data->fan_div[nr] = DIV_TO_REG(val); |
| 1237 | break; |
| 1238 | case 2: |
| 1239 | if (val < 8) |
| 1240 | data->fan_div[nr] = 1; |
| 1241 | else |
| 1242 | data->fan_div[nr] = 3; |
| 1243 | } |
| 1244 | val = old & 0x80; |
| 1245 | val |= (data->fan_div[0] & 0x07); |
| 1246 | val |= (data->fan_div[1] & 0x07) << 3; |
| 1247 | if (data->fan_div[2] == 3) |
| 1248 | val |= 0x1 << 6; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1249 | it87_write_value(data, IT87_REG_FAN_DIV, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | |
Jean Delvare | 8ab4ec3 | 2006-08-28 14:35:46 +0200 | [diff] [blame] | 1251 | /* Restore fan min limit */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1252 | data->fan[nr][1] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr])); |
| 1253 | 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] | 1254 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1255 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | return count; |
| 1257 | } |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1258 | |
| 1259 | /* Returns 0 if OK, -EINVAL otherwise */ |
| 1260 | static int check_trip_points(struct device *dev, int nr) |
| 1261 | { |
| 1262 | const struct it87_data *data = dev_get_drvdata(dev); |
| 1263 | int i, err = 0; |
| 1264 | |
| 1265 | if (has_old_autopwm(data)) { |
| 1266 | for (i = 0; i < 3; i++) { |
| 1267 | if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1]) |
| 1268 | err = -EINVAL; |
| 1269 | } |
| 1270 | for (i = 0; i < 2; i++) { |
| 1271 | if (data->auto_pwm[nr][i] > data->auto_pwm[nr][i + 1]) |
| 1272 | err = -EINVAL; |
| 1273 | } |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1274 | } else if (has_newer_autopwm(data)) { |
| 1275 | for (i = 1; i < 3; i++) { |
| 1276 | if (data->auto_temp[nr][i] > data->auto_temp[nr][i + 1]) |
| 1277 | err = -EINVAL; |
| 1278 | } |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1279 | } |
| 1280 | |
| 1281 | if (err) { |
Guenter Roeck | 1d9bcf6 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1282 | dev_err(dev, |
| 1283 | "Inconsistent trip points, not switching to automatic mode\n"); |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1284 | dev_err(dev, "Adjust the trip points and try again\n"); |
| 1285 | } |
| 1286 | return err; |
| 1287 | } |
| 1288 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1289 | static ssize_t set_pwm_enable(struct device *dev, struct device_attribute *attr, |
| 1290 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1292 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1293 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1294 | int nr = sensor_attr->index; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1295 | long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1297 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2) |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1298 | return -EINVAL; |
| 1299 | |
Jean Delvare | cccfc9c | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1300 | /* Check trip points before switching to automatic mode */ |
| 1301 | if (val == 2) { |
| 1302 | if (check_trip_points(dev, nr) < 0) |
| 1303 | return -EINVAL; |
| 1304 | } |
| 1305 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1306 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
| 1308 | if (val == 0) { |
Guenter Roeck | f1bbe61 | 2015-04-05 13:16:54 -0700 | [diff] [blame] | 1309 | if (nr < 3 && data->type != it8603) { |
| 1310 | int tmp; |
| 1311 | /* make sure the fan is on when in on/off mode */ |
| 1312 | tmp = it87_read_value(data, IT87_REG_FAN_CTL); |
| 1313 | it87_write_value(data, IT87_REG_FAN_CTL, tmp | BIT(nr)); |
| 1314 | /* set on/off mode */ |
| 1315 | data->fan_main_ctrl &= ~BIT(nr); |
| 1316 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 1317 | data->fan_main_ctrl); |
| 1318 | } else { |
| 1319 | /* No on/off mode, set maximum pwm value */ |
| 1320 | data->pwm_duty[nr] = pwm_to_reg(data, 0xff); |
| 1321 | it87_write_value(data, IT87_REG_PWM_DUTY[nr], |
| 1322 | data->pwm_duty[nr]); |
| 1323 | /* and set manual mode */ |
| 1324 | data->pwm_ctrl[nr] = has_newer_autopwm(data) ? |
| 1325 | data->pwm_temp_map[nr] : |
| 1326 | data->pwm_duty[nr]; |
| 1327 | it87_write_value(data, IT87_REG_PWM[nr], |
| 1328 | data->pwm_ctrl[nr]); |
| 1329 | } |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1330 | } else { |
| 1331 | if (val == 1) /* Manual mode */ |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1332 | data->pwm_ctrl[nr] = has_newer_autopwm(data) ? |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 1333 | data->pwm_temp_map[nr] : |
| 1334 | data->pwm_duty[nr]; |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1335 | else /* Automatic mode */ |
| 1336 | data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr]; |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1337 | it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 1338 | |
Guenter Roeck | f1bbe61 | 2015-04-05 13:16:54 -0700 | [diff] [blame] | 1339 | if (data->type != it8603 && nr < 3) { |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 1340 | /* set SmartGuardian mode */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1341 | data->fan_main_ctrl |= BIT(nr); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 1342 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 1343 | data->fan_main_ctrl); |
| 1344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1347 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | return count; |
| 1349 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1350 | |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1351 | static ssize_t set_pwm(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1352 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | { |
Jean Delvare | 20ad93d | 2005-06-05 11:53:25 +0200 | [diff] [blame] | 1354 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1355 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1356 | int nr = sensor_attr->index; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1357 | long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1359 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | return -EINVAL; |
| 1361 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1362 | mutex_lock(&data->update_lock); |
Guenter Roeck | 82dbe98 | 2017-02-08 14:02:59 -0800 | [diff] [blame] | 1363 | it87_update_pwm_ctrl(data, nr); |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 1364 | if (has_newer_autopwm(data)) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1365 | /* |
| 1366 | * If we are in automatic mode, the PWM duty cycle register |
| 1367 | * is read-only so we can't write the value. |
| 1368 | */ |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 1369 | if (data->pwm_ctrl[nr] & 0x80) { |
| 1370 | mutex_unlock(&data->update_lock); |
| 1371 | return -EBUSY; |
| 1372 | } |
| 1373 | data->pwm_duty[nr] = pwm_to_reg(data, val); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1374 | it87_write_value(data, IT87_REG_PWM_DUTY[nr], |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 1375 | data->pwm_duty[nr]); |
| 1376 | } else { |
| 1377 | data->pwm_duty[nr] = pwm_to_reg(data, val); |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1378 | /* |
| 1379 | * If we are in manual mode, write the duty cycle immediately; |
| 1380 | * otherwise, just store it for later use. |
| 1381 | */ |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 1382 | if (!(data->pwm_ctrl[nr] & 0x80)) { |
| 1383 | data->pwm_ctrl[nr] = data->pwm_duty[nr]; |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1384 | it87_write_value(data, IT87_REG_PWM[nr], |
Jean Delvare | 6229cdb | 2010-12-08 16:27:22 +0100 | [diff] [blame] | 1385 | data->pwm_ctrl[nr]); |
| 1386 | } |
Jean Delvare | b99883d | 2010-03-05 22:17:15 +0100 | [diff] [blame] | 1387 | } |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 1388 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | return count; |
| 1390 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1391 | |
| 1392 | static ssize_t set_pwm_freq(struct device *dev, struct device_attribute *attr, |
| 1393 | const char *buf, size_t count) |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1394 | { |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1395 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1396 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1397 | int nr = sensor_attr->index; |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1398 | unsigned long val; |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1399 | int i; |
| 1400 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1401 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1402 | return -EINVAL; |
| 1403 | |
Guenter Roeck | f56c9c0 | 2015-03-26 20:01:24 -0700 | [diff] [blame] | 1404 | val = clamp_val(val, 0, 1000000); |
| 1405 | val *= has_newer_autopwm(data) ? 256 : 128; |
| 1406 | |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1407 | /* Search for the nearest available frequency */ |
| 1408 | for (i = 0; i < 7; i++) { |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1409 | if (val > (pwm_freq[i] + pwm_freq[i + 1]) / 2) |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1410 | break; |
| 1411 | } |
| 1412 | |
| 1413 | mutex_lock(&data->update_lock); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1414 | if (nr == 0) { |
| 1415 | data->fan_ctl = it87_read_value(data, IT87_REG_FAN_CTL) & 0x8f; |
| 1416 | data->fan_ctl |= i << 4; |
| 1417 | it87_write_value(data, IT87_REG_FAN_CTL, data->fan_ctl); |
| 1418 | } else { |
| 1419 | data->extra = it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x8f; |
| 1420 | data->extra |= i << 4; |
| 1421 | it87_write_value(data, IT87_REG_TEMP_EXTRA, data->extra); |
| 1422 | } |
Jean Delvare | f8d0c19 | 2007-02-14 21:15:02 +0100 | [diff] [blame] | 1423 | mutex_unlock(&data->update_lock); |
| 1424 | |
| 1425 | return count; |
| 1426 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1427 | |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1428 | static ssize_t show_pwm_temp_map(struct device *dev, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1429 | struct device_attribute *attr, char *buf) |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1430 | { |
| 1431 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1432 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1433 | int nr = sensor_attr->index; |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1434 | int map; |
| 1435 | |
Guenter Roeck | 0624d86 | 2015-04-06 21:04:18 -0700 | [diff] [blame] | 1436 | map = data->pwm_temp_map[nr]; |
| 1437 | if (map >= 3) |
| 1438 | map = 0; /* Should never happen */ |
| 1439 | if (nr >= 3) /* pwm channels 3..6 map to temp4..6 */ |
| 1440 | map += 3; |
| 1441 | |
| 1442 | return sprintf(buf, "%d\n", (int)BIT(map)); |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1443 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1444 | |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1445 | static ssize_t set_pwm_temp_map(struct device *dev, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1446 | struct device_attribute *attr, const char *buf, |
| 1447 | size_t count) |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1448 | { |
| 1449 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1450 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1451 | int nr = sensor_attr->index; |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1452 | long val; |
| 1453 | u8 reg; |
| 1454 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1455 | if (kstrtol(buf, 10, &val) < 0) |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1456 | return -EINVAL; |
| 1457 | |
Guenter Roeck | 0624d86 | 2015-04-06 21:04:18 -0700 | [diff] [blame] | 1458 | if (nr >= 3) |
| 1459 | val -= 3; |
| 1460 | |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1461 | switch (val) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1462 | case BIT(0): |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1463 | reg = 0x00; |
| 1464 | break; |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1465 | case BIT(1): |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1466 | reg = 0x01; |
| 1467 | break; |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1468 | case BIT(2): |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1469 | reg = 0x02; |
| 1470 | break; |
| 1471 | default: |
| 1472 | return -EINVAL; |
| 1473 | } |
| 1474 | |
| 1475 | mutex_lock(&data->update_lock); |
Guenter Roeck | 82dbe98 | 2017-02-08 14:02:59 -0800 | [diff] [blame] | 1476 | it87_update_pwm_ctrl(data, nr); |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1477 | data->pwm_temp_map[nr] = reg; |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 1478 | /* |
| 1479 | * If we are in automatic mode, write the temp mapping immediately; |
| 1480 | * otherwise, just store it for later use. |
| 1481 | */ |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1482 | if (data->pwm_ctrl[nr] & 0x80) { |
| 1483 | data->pwm_ctrl[nr] = 0x80 | data->pwm_temp_map[nr]; |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1484 | it87_write_value(data, IT87_REG_PWM[nr], data->pwm_ctrl[nr]); |
Jean Delvare | 94ac7ee | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 1485 | } |
| 1486 | mutex_unlock(&data->update_lock); |
| 1487 | return count; |
| 1488 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1490 | static ssize_t show_auto_pwm(struct device *dev, struct device_attribute *attr, |
| 1491 | char *buf) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1492 | { |
| 1493 | struct it87_data *data = it87_update_device(dev); |
| 1494 | struct sensor_device_attribute_2 *sensor_attr = |
| 1495 | to_sensor_dev_attr_2(attr); |
| 1496 | int nr = sensor_attr->nr; |
| 1497 | int point = sensor_attr->index; |
| 1498 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1499 | return sprintf(buf, "%d\n", |
| 1500 | pwm_from_reg(data, data->auto_pwm[nr][point])); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1501 | } |
| 1502 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1503 | static ssize_t set_auto_pwm(struct device *dev, struct device_attribute *attr, |
| 1504 | const char *buf, size_t count) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1505 | { |
| 1506 | struct it87_data *data = dev_get_drvdata(dev); |
| 1507 | struct sensor_device_attribute_2 *sensor_attr = |
| 1508 | to_sensor_dev_attr_2(attr); |
| 1509 | int nr = sensor_attr->nr; |
| 1510 | int point = sensor_attr->index; |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1511 | int regaddr; |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1512 | long val; |
| 1513 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1514 | if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1515 | return -EINVAL; |
| 1516 | |
| 1517 | mutex_lock(&data->update_lock); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1518 | data->auto_pwm[nr][point] = pwm_to_reg(data, val); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1519 | if (has_newer_autopwm(data)) |
| 1520 | regaddr = IT87_REG_AUTO_TEMP(nr, 3); |
| 1521 | else |
| 1522 | regaddr = IT87_REG_AUTO_PWM(nr, point); |
| 1523 | it87_write_value(data, regaddr, data->auto_pwm[nr][point]); |
| 1524 | mutex_unlock(&data->update_lock); |
| 1525 | return count; |
| 1526 | } |
| 1527 | |
| 1528 | static ssize_t show_auto_pwm_slope(struct device *dev, |
| 1529 | struct device_attribute *attr, char *buf) |
| 1530 | { |
| 1531 | struct it87_data *data = it87_update_device(dev); |
| 1532 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 1533 | int nr = sensor_attr->index; |
| 1534 | |
| 1535 | return sprintf(buf, "%d\n", data->auto_pwm[nr][1] & 0x7f); |
| 1536 | } |
| 1537 | |
| 1538 | static ssize_t set_auto_pwm_slope(struct device *dev, |
| 1539 | struct device_attribute *attr, |
| 1540 | const char *buf, size_t count) |
| 1541 | { |
| 1542 | struct it87_data *data = dev_get_drvdata(dev); |
| 1543 | struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); |
| 1544 | int nr = sensor_attr->index; |
| 1545 | unsigned long val; |
| 1546 | |
| 1547 | if (kstrtoul(buf, 10, &val) < 0 || val > 127) |
| 1548 | return -EINVAL; |
| 1549 | |
| 1550 | mutex_lock(&data->update_lock); |
| 1551 | data->auto_pwm[nr][1] = (data->auto_pwm[nr][1] & 0x80) | val; |
| 1552 | it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 4), |
| 1553 | data->auto_pwm[nr][1]); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1554 | mutex_unlock(&data->update_lock); |
| 1555 | return count; |
| 1556 | } |
| 1557 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1558 | static ssize_t show_auto_temp(struct device *dev, struct device_attribute *attr, |
| 1559 | char *buf) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1560 | { |
| 1561 | struct it87_data *data = it87_update_device(dev); |
| 1562 | struct sensor_device_attribute_2 *sensor_attr = |
| 1563 | to_sensor_dev_attr_2(attr); |
| 1564 | int nr = sensor_attr->nr; |
| 1565 | int point = sensor_attr->index; |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1566 | int reg; |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1567 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1568 | if (has_old_autopwm(data) || point) |
| 1569 | reg = data->auto_temp[nr][point]; |
| 1570 | else |
| 1571 | reg = data->auto_temp[nr][1] - (data->auto_temp[nr][0] & 0x1f); |
| 1572 | |
| 1573 | return sprintf(buf, "%d\n", TEMP_FROM_REG(reg)); |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1574 | } |
| 1575 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1576 | static ssize_t set_auto_temp(struct device *dev, struct device_attribute *attr, |
| 1577 | const char *buf, size_t count) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1578 | { |
| 1579 | struct it87_data *data = dev_get_drvdata(dev); |
| 1580 | struct sensor_device_attribute_2 *sensor_attr = |
| 1581 | to_sensor_dev_attr_2(attr); |
| 1582 | int nr = sensor_attr->nr; |
| 1583 | int point = sensor_attr->index; |
| 1584 | long val; |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1585 | int reg; |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1586 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1587 | if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000) |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1588 | return -EINVAL; |
| 1589 | |
| 1590 | mutex_lock(&data->update_lock); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1591 | if (has_newer_autopwm(data) && !point) { |
| 1592 | reg = data->auto_temp[nr][1] - TEMP_TO_REG(val); |
| 1593 | reg = clamp_val(reg, 0, 0x1f) | (data->auto_temp[nr][0] & 0xe0); |
| 1594 | data->auto_temp[nr][0] = reg; |
| 1595 | it87_write_value(data, IT87_REG_AUTO_TEMP(nr, 5), reg); |
| 1596 | } else { |
| 1597 | reg = TEMP_TO_REG(val); |
| 1598 | data->auto_temp[nr][point] = reg; |
| 1599 | if (has_newer_autopwm(data)) |
| 1600 | point--; |
| 1601 | it87_write_value(data, IT87_REG_AUTO_TEMP(nr, point), reg); |
| 1602 | } |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 1603 | mutex_unlock(&data->update_lock); |
| 1604 | return count; |
| 1605 | } |
| 1606 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1607 | static SENSOR_DEVICE_ATTR_2(fan1_input, S_IRUGO, show_fan, NULL, 0, 0); |
| 1608 | static SENSOR_DEVICE_ATTR_2(fan1_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1609 | 0, 1); |
| 1610 | static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1611 | set_fan_div, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 1613 | static SENSOR_DEVICE_ATTR_2(fan2_input, S_IRUGO, show_fan, NULL, 1, 0); |
| 1614 | static SENSOR_DEVICE_ATTR_2(fan2_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1615 | 1, 1); |
| 1616 | static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1617 | set_fan_div, 1); |
| 1618 | |
| 1619 | static SENSOR_DEVICE_ATTR_2(fan3_input, S_IRUGO, show_fan, NULL, 2, 0); |
| 1620 | static SENSOR_DEVICE_ATTR_2(fan3_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1621 | 2, 1); |
| 1622 | static SENSOR_DEVICE_ATTR(fan3_div, S_IRUGO | S_IWUSR, show_fan_div, |
| 1623 | set_fan_div, 2); |
| 1624 | |
| 1625 | static SENSOR_DEVICE_ATTR_2(fan4_input, S_IRUGO, show_fan, NULL, 3, 0); |
| 1626 | static SENSOR_DEVICE_ATTR_2(fan4_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1627 | 3, 1); |
| 1628 | |
| 1629 | static SENSOR_DEVICE_ATTR_2(fan5_input, S_IRUGO, show_fan, NULL, 4, 0); |
| 1630 | static SENSOR_DEVICE_ATTR_2(fan5_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1631 | 4, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 1633 | static SENSOR_DEVICE_ATTR_2(fan6_input, S_IRUGO, show_fan, NULL, 5, 0); |
| 1634 | static SENSOR_DEVICE_ATTR_2(fan6_min, S_IRUGO | S_IWUSR, show_fan, set_fan, |
| 1635 | 5, 1); |
| 1636 | |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1637 | static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, |
| 1638 | show_pwm_enable, set_pwm_enable, 0); |
| 1639 | static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1640 | static SENSOR_DEVICE_ATTR(pwm1_freq, S_IRUGO | S_IWUSR, show_pwm_freq, |
| 1641 | set_pwm_freq, 0); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1642 | static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IRUGO, |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1643 | show_pwm_temp_map, set_pwm_temp_map, 0); |
| 1644 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1645 | show_auto_pwm, set_auto_pwm, 0, 0); |
| 1646 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1647 | show_auto_pwm, set_auto_pwm, 0, 1); |
| 1648 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1649 | show_auto_pwm, set_auto_pwm, 0, 2); |
| 1650 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_pwm, S_IRUGO, |
| 1651 | show_auto_pwm, NULL, 0, 3); |
| 1652 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1653 | show_auto_temp, set_auto_temp, 0, 1); |
| 1654 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1655 | show_auto_temp, set_auto_temp, 0, 0); |
| 1656 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1657 | show_auto_temp, set_auto_temp, 0, 2); |
| 1658 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1659 | show_auto_temp, set_auto_temp, 0, 3); |
| 1660 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1661 | show_auto_temp, set_auto_temp, 0, 4); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1662 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_start, S_IRUGO | S_IWUSR, |
| 1663 | show_auto_pwm, set_auto_pwm, 0, 0); |
| 1664 | static SENSOR_DEVICE_ATTR(pwm1_auto_slope, S_IRUGO | S_IWUSR, |
| 1665 | show_auto_pwm_slope, set_auto_pwm_slope, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1667 | static SENSOR_DEVICE_ATTR(pwm2_enable, S_IRUGO | S_IWUSR, |
| 1668 | show_pwm_enable, set_pwm_enable, 1); |
| 1669 | static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1670 | static SENSOR_DEVICE_ATTR(pwm2_freq, S_IRUGO, show_pwm_freq, set_pwm_freq, 1); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1671 | static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IRUGO, |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1672 | show_pwm_temp_map, set_pwm_temp_map, 1); |
| 1673 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1674 | show_auto_pwm, set_auto_pwm, 1, 0); |
| 1675 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1676 | show_auto_pwm, set_auto_pwm, 1, 1); |
| 1677 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1678 | show_auto_pwm, set_auto_pwm, 1, 2); |
| 1679 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_pwm, S_IRUGO, |
| 1680 | show_auto_pwm, NULL, 1, 3); |
| 1681 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1682 | show_auto_temp, set_auto_temp, 1, 1); |
| 1683 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1684 | show_auto_temp, set_auto_temp, 1, 0); |
| 1685 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1686 | show_auto_temp, set_auto_temp, 1, 2); |
| 1687 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1688 | show_auto_temp, set_auto_temp, 1, 3); |
| 1689 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1690 | show_auto_temp, set_auto_temp, 1, 4); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1691 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_start, S_IRUGO | S_IWUSR, |
| 1692 | show_auto_pwm, set_auto_pwm, 1, 0); |
| 1693 | static SENSOR_DEVICE_ATTR(pwm2_auto_slope, S_IRUGO | S_IWUSR, |
| 1694 | show_auto_pwm_slope, set_auto_pwm_slope, 1); |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1695 | |
| 1696 | static SENSOR_DEVICE_ATTR(pwm3_enable, S_IRUGO | S_IWUSR, |
| 1697 | show_pwm_enable, set_pwm_enable, 2); |
| 1698 | static SENSOR_DEVICE_ATTR(pwm3, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 2); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1699 | static SENSOR_DEVICE_ATTR(pwm3_freq, S_IRUGO, show_pwm_freq, NULL, 2); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1700 | static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IRUGO, |
Guenter Roeck | c4458db | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 1701 | show_pwm_temp_map, set_pwm_temp_map, 2); |
| 1702 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR, |
| 1703 | show_auto_pwm, set_auto_pwm, 2, 0); |
| 1704 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_pwm, S_IRUGO | S_IWUSR, |
| 1705 | show_auto_pwm, set_auto_pwm, 2, 1); |
| 1706 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_pwm, S_IRUGO | S_IWUSR, |
| 1707 | show_auto_pwm, set_auto_pwm, 2, 2); |
| 1708 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_pwm, S_IRUGO, |
| 1709 | show_auto_pwm, NULL, 2, 3); |
| 1710 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1711 | show_auto_temp, set_auto_temp, 2, 1); |
| 1712 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1713 | show_auto_temp, set_auto_temp, 2, 0); |
| 1714 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1715 | show_auto_temp, set_auto_temp, 2, 2); |
| 1716 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1717 | show_auto_temp, set_auto_temp, 2, 3); |
| 1718 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point4_temp, S_IRUGO | S_IWUSR, |
| 1719 | show_auto_temp, set_auto_temp, 2, 4); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1720 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_start, S_IRUGO | S_IWUSR, |
| 1721 | show_auto_pwm, set_auto_pwm, 2, 0); |
| 1722 | static SENSOR_DEVICE_ATTR(pwm3_auto_slope, S_IRUGO | S_IWUSR, |
| 1723 | show_auto_pwm_slope, set_auto_pwm_slope, 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1725 | static SENSOR_DEVICE_ATTR(pwm4_enable, S_IRUGO | S_IWUSR, |
| 1726 | show_pwm_enable, set_pwm_enable, 3); |
| 1727 | static SENSOR_DEVICE_ATTR(pwm4, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 3); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1728 | static SENSOR_DEVICE_ATTR(pwm4_freq, S_IRUGO, show_pwm_freq, NULL, 3); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1729 | static SENSOR_DEVICE_ATTR(pwm4_auto_channels_temp, S_IRUGO, |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1730 | show_pwm_temp_map, set_pwm_temp_map, 3); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1731 | static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1732 | show_auto_temp, set_auto_temp, 2, 1); |
| 1733 | static SENSOR_DEVICE_ATTR_2(pwm4_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1734 | show_auto_temp, set_auto_temp, 2, 0); |
| 1735 | static SENSOR_DEVICE_ATTR_2(pwm4_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1736 | show_auto_temp, set_auto_temp, 2, 2); |
| 1737 | static SENSOR_DEVICE_ATTR_2(pwm4_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1738 | show_auto_temp, set_auto_temp, 2, 3); |
| 1739 | static SENSOR_DEVICE_ATTR_2(pwm4_auto_start, S_IRUGO | S_IWUSR, |
| 1740 | show_auto_pwm, set_auto_pwm, 3, 0); |
| 1741 | static SENSOR_DEVICE_ATTR(pwm4_auto_slope, S_IRUGO | S_IWUSR, |
| 1742 | show_auto_pwm_slope, set_auto_pwm_slope, 3); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1743 | |
| 1744 | static SENSOR_DEVICE_ATTR(pwm5_enable, S_IRUGO | S_IWUSR, |
| 1745 | show_pwm_enable, set_pwm_enable, 4); |
| 1746 | static SENSOR_DEVICE_ATTR(pwm5, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 4); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1747 | static SENSOR_DEVICE_ATTR(pwm5_freq, S_IRUGO, show_pwm_freq, NULL, 4); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1748 | static SENSOR_DEVICE_ATTR(pwm5_auto_channels_temp, S_IRUGO, |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1749 | show_pwm_temp_map, set_pwm_temp_map, 4); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1750 | static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1751 | show_auto_temp, set_auto_temp, 2, 1); |
| 1752 | static SENSOR_DEVICE_ATTR_2(pwm5_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1753 | show_auto_temp, set_auto_temp, 2, 0); |
| 1754 | static SENSOR_DEVICE_ATTR_2(pwm5_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1755 | show_auto_temp, set_auto_temp, 2, 2); |
| 1756 | static SENSOR_DEVICE_ATTR_2(pwm5_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1757 | show_auto_temp, set_auto_temp, 2, 3); |
| 1758 | static SENSOR_DEVICE_ATTR_2(pwm5_auto_start, S_IRUGO | S_IWUSR, |
| 1759 | show_auto_pwm, set_auto_pwm, 4, 0); |
| 1760 | static SENSOR_DEVICE_ATTR(pwm5_auto_slope, S_IRUGO | S_IWUSR, |
| 1761 | show_auto_pwm_slope, set_auto_pwm_slope, 4); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1762 | |
| 1763 | static SENSOR_DEVICE_ATTR(pwm6_enable, S_IRUGO | S_IWUSR, |
| 1764 | show_pwm_enable, set_pwm_enable, 5); |
| 1765 | static SENSOR_DEVICE_ATTR(pwm6, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 5); |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 1766 | static SENSOR_DEVICE_ATTR(pwm6_freq, S_IRUGO, show_pwm_freq, NULL, 5); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 1767 | static SENSOR_DEVICE_ATTR(pwm6_auto_channels_temp, S_IRUGO, |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1768 | show_pwm_temp_map, set_pwm_temp_map, 5); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 1769 | static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp, S_IRUGO | S_IWUSR, |
| 1770 | show_auto_temp, set_auto_temp, 2, 1); |
| 1771 | static SENSOR_DEVICE_ATTR_2(pwm6_auto_point1_temp_hyst, S_IRUGO | S_IWUSR, |
| 1772 | show_auto_temp, set_auto_temp, 2, 0); |
| 1773 | static SENSOR_DEVICE_ATTR_2(pwm6_auto_point2_temp, S_IRUGO | S_IWUSR, |
| 1774 | show_auto_temp, set_auto_temp, 2, 2); |
| 1775 | static SENSOR_DEVICE_ATTR_2(pwm6_auto_point3_temp, S_IRUGO | S_IWUSR, |
| 1776 | show_auto_temp, set_auto_temp, 2, 3); |
| 1777 | static SENSOR_DEVICE_ATTR_2(pwm6_auto_start, S_IRUGO | S_IWUSR, |
| 1778 | show_auto_pwm, set_auto_pwm, 5, 0); |
| 1779 | static SENSOR_DEVICE_ATTR(pwm6_auto_slope, S_IRUGO | S_IWUSR, |
| 1780 | show_auto_pwm_slope, set_auto_pwm_slope, 5); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 1781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | /* Alarms */ |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1783 | static ssize_t alarms_show(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1784 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | { |
| 1786 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1787 | |
Jean Delvare | 68188ba | 2005-05-16 18:52:38 +0200 | [diff] [blame] | 1788 | return sprintf(buf, "%u\n", data->alarms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | } |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1790 | static DEVICE_ATTR_RO(alarms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1792 | static ssize_t show_alarm(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1793 | char *buf) |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1794 | { |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1795 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1796 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1797 | |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1798 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); |
| 1799 | } |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1800 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1801 | static ssize_t clear_intrusion(struct device *dev, |
| 1802 | struct device_attribute *attr, const char *buf, |
| 1803 | size_t count) |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1804 | { |
| 1805 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1806 | int config; |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1807 | long val; |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1808 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1809 | if (kstrtol(buf, 10, &val) < 0 || val != 0) |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1810 | return -EINVAL; |
| 1811 | |
| 1812 | mutex_lock(&data->update_lock); |
| 1813 | config = it87_read_value(data, IT87_REG_CONFIG); |
| 1814 | if (config < 0) { |
| 1815 | count = config; |
| 1816 | } else { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1817 | config |= BIT(5); |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1818 | it87_write_value(data, IT87_REG_CONFIG, config); |
| 1819 | /* Invalidate cache to force re-read */ |
| 1820 | data->valid = 0; |
| 1821 | } |
| 1822 | mutex_unlock(&data->update_lock); |
| 1823 | |
| 1824 | return count; |
| 1825 | } |
| 1826 | |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1827 | static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 8); |
| 1828 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 9); |
| 1829 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 10); |
| 1830 | static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 11); |
| 1831 | static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 12); |
| 1832 | static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 13); |
| 1833 | static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 14); |
| 1834 | static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 15); |
| 1835 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0); |
| 1836 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 1); |
| 1837 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 2); |
| 1838 | static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 3); |
| 1839 | static SENSOR_DEVICE_ATTR(fan5_alarm, S_IRUGO, show_alarm, NULL, 6); |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 1840 | static SENSOR_DEVICE_ATTR(fan6_alarm, S_IRUGO, show_alarm, NULL, 7); |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1841 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 16); |
| 1842 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 17); |
| 1843 | static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 18); |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 1844 | static SENSOR_DEVICE_ATTR(intrusion0_alarm, S_IRUGO | S_IWUSR, |
| 1845 | show_alarm, clear_intrusion, 4); |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1846 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1847 | static ssize_t show_beep(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1848 | char *buf) |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1849 | { |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1850 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1851 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1852 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1853 | return sprintf(buf, "%u\n", (data->beeps >> bitnr) & 1); |
| 1854 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1855 | |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1856 | static ssize_t set_beep(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1857 | const char *buf, size_t count) |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1858 | { |
| 1859 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 1860 | struct it87_data *data = dev_get_drvdata(dev); |
| 1861 | long val; |
| 1862 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1863 | if (kstrtol(buf, 10, &val) < 0 || (val != 0 && val != 1)) |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1864 | return -EINVAL; |
| 1865 | |
| 1866 | mutex_lock(&data->update_lock); |
| 1867 | data->beeps = it87_read_value(data, IT87_REG_BEEP_ENABLE); |
| 1868 | if (val) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1869 | data->beeps |= BIT(bitnr); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1870 | else |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1871 | data->beeps &= ~BIT(bitnr); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1872 | it87_write_value(data, IT87_REG_BEEP_ENABLE, data->beeps); |
| 1873 | mutex_unlock(&data->update_lock); |
| 1874 | return count; |
| 1875 | } |
| 1876 | |
| 1877 | static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR, |
| 1878 | show_beep, set_beep, 1); |
| 1879 | static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO, show_beep, NULL, 1); |
| 1880 | static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO, show_beep, NULL, 1); |
| 1881 | static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO, show_beep, NULL, 1); |
| 1882 | static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO, show_beep, NULL, 1); |
| 1883 | static SENSOR_DEVICE_ATTR(in5_beep, S_IRUGO, show_beep, NULL, 1); |
| 1884 | static SENSOR_DEVICE_ATTR(in6_beep, S_IRUGO, show_beep, NULL, 1); |
| 1885 | static SENSOR_DEVICE_ATTR(in7_beep, S_IRUGO, show_beep, NULL, 1); |
| 1886 | /* fanX_beep writability is set later */ |
| 1887 | static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1888 | static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1889 | static SENSOR_DEVICE_ATTR(fan3_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1890 | static SENSOR_DEVICE_ATTR(fan4_beep, S_IRUGO, show_beep, set_beep, 0); |
| 1891 | static SENSOR_DEVICE_ATTR(fan5_beep, S_IRUGO, show_beep, set_beep, 0); |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 1892 | static SENSOR_DEVICE_ATTR(fan6_beep, S_IRUGO, show_beep, set_beep, 0); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 1893 | static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR, |
| 1894 | show_beep, set_beep, 2); |
| 1895 | static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO, show_beep, NULL, 2); |
| 1896 | static SENSOR_DEVICE_ATTR(temp3_beep, S_IRUGO, show_beep, NULL, 2); |
| 1897 | |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1898 | static ssize_t vrm_show(struct device *dev, struct device_attribute *attr, |
| 1899 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | { |
Jean Delvare | 90d6619 | 2007-10-08 18:24:35 +0200 | [diff] [blame] | 1901 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1902 | |
Jean Delvare | a7be58a | 2005-12-18 16:40:14 +0100 | [diff] [blame] | 1903 | return sprintf(buf, "%u\n", data->vrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | } |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1905 | |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1906 | static ssize_t vrm_store(struct device *dev, struct device_attribute *attr, |
| 1907 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 1909 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1910 | unsigned long val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 1912 | if (kstrtoul(buf, 10, &val) < 0) |
Jean Delvare | f5f6450 | 2010-03-05 22:17:19 +0100 | [diff] [blame] | 1913 | return -EINVAL; |
| 1914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | data->vrm = val; |
| 1916 | |
| 1917 | return count; |
| 1918 | } |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1919 | static DEVICE_ATTR_RW(vrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1921 | static ssize_t cpu0_vid_show(struct device *dev, |
| 1922 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | { |
| 1924 | struct it87_data *data = it87_update_device(dev); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1925 | |
| 1926 | return sprintf(buf, "%ld\n", (long)vid_from_reg(data->vid, data->vrm)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
Julia Lawall | ddc64ae | 2016-12-22 13:05:21 +0100 | [diff] [blame] | 1928 | static DEVICE_ATTR_RO(cpu0_vid); |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1929 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1930 | static ssize_t show_label(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 1931 | char *buf) |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1932 | { |
Guenter Roeck | 3c4c497 | 2012-01-20 09:29:44 -0800 | [diff] [blame] | 1933 | static const char * const labels[] = { |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1934 | "+5V", |
| 1935 | "5VSB", |
| 1936 | "Vbat", |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 1937 | "AVCC", |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1938 | }; |
Guenter Roeck | 3c4c497 | 2012-01-20 09:29:44 -0800 | [diff] [blame] | 1939 | static const char * const labels_it8721[] = { |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1940 | "+3.3V", |
| 1941 | "3VSB", |
| 1942 | "Vbat", |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 1943 | "+3.3V", |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 1944 | }; |
| 1945 | struct it87_data *data = dev_get_drvdata(dev); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1946 | int nr = to_sensor_dev_attr(attr)->index; |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 1947 | const char *label; |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1948 | |
Guenter Roeck | a9eebd4 | 2017-02-08 13:51:16 -0800 | [diff] [blame] | 1949 | if (has_vin3_5v(data) && nr == 0) |
| 1950 | label = labels[0]; |
| 1951 | else if (has_12mv_adc(data) || has_10_9mv_adc(data)) |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 1952 | label = labels_it8721[nr]; |
| 1953 | else |
| 1954 | label = labels[nr]; |
| 1955 | |
| 1956 | return sprintf(buf, "%s\n", label); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1957 | } |
| 1958 | static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0); |
| 1959 | static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1); |
| 1960 | static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2); |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 1961 | /* AVCC3 */ |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 1962 | static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 3); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 1963 | |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1964 | static umode_t it87_in_is_visible(struct kobject *kobj, |
| 1965 | struct attribute *attr, int index) |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1966 | { |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1967 | struct device *dev = container_of(kobj, struct device, kobj); |
| 1968 | struct it87_data *data = dev_get_drvdata(dev); |
| 1969 | int i = index / 5; /* voltage index */ |
| 1970 | int a = index % 5; /* attribute index */ |
| 1971 | |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 1972 | if (index >= 40) { /* in8 and higher only have input attributes */ |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1973 | i = index - 40 + 8; |
| 1974 | a = 0; |
| 1975 | } |
| 1976 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 1977 | if (!(data->has_in & BIT(i))) |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1978 | return 0; |
| 1979 | |
| 1980 | if (a == 4 && !data->has_beep) |
| 1981 | return 0; |
| 1982 | |
| 1983 | return attr->mode; |
| 1984 | } |
| 1985 | |
| 1986 | static struct attribute *it87_attributes_in[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1987 | &sensor_dev_attr_in0_input.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1988 | &sensor_dev_attr_in0_min.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 1989 | &sensor_dev_attr_in0_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1990 | &sensor_dev_attr_in0_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1991 | &sensor_dev_attr_in0_beep.dev_attr.attr, /* 4 */ |
| 1992 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1993 | &sensor_dev_attr_in1_input.dev_attr.attr, |
| 1994 | &sensor_dev_attr_in1_min.dev_attr.attr, |
| 1995 | &sensor_dev_attr_in1_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 1996 | &sensor_dev_attr_in1_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 1997 | &sensor_dev_attr_in1_beep.dev_attr.attr, /* 9 */ |
| 1998 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 1999 | &sensor_dev_attr_in2_input.dev_attr.attr, |
| 2000 | &sensor_dev_attr_in2_min.dev_attr.attr, |
| 2001 | &sensor_dev_attr_in2_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2002 | &sensor_dev_attr_in2_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2003 | &sensor_dev_attr_in2_beep.dev_attr.attr, /* 14 */ |
| 2004 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2005 | &sensor_dev_attr_in3_input.dev_attr.attr, |
| 2006 | &sensor_dev_attr_in3_min.dev_attr.attr, |
| 2007 | &sensor_dev_attr_in3_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2008 | &sensor_dev_attr_in3_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2009 | &sensor_dev_attr_in3_beep.dev_attr.attr, /* 19 */ |
| 2010 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2011 | &sensor_dev_attr_in4_input.dev_attr.attr, |
| 2012 | &sensor_dev_attr_in4_min.dev_attr.attr, |
| 2013 | &sensor_dev_attr_in4_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2014 | &sensor_dev_attr_in4_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2015 | &sensor_dev_attr_in4_beep.dev_attr.attr, /* 24 */ |
| 2016 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2017 | &sensor_dev_attr_in5_input.dev_attr.attr, |
| 2018 | &sensor_dev_attr_in5_min.dev_attr.attr, |
| 2019 | &sensor_dev_attr_in5_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2020 | &sensor_dev_attr_in5_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2021 | &sensor_dev_attr_in5_beep.dev_attr.attr, /* 29 */ |
| 2022 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2023 | &sensor_dev_attr_in6_input.dev_attr.attr, |
| 2024 | &sensor_dev_attr_in6_min.dev_attr.attr, |
| 2025 | &sensor_dev_attr_in6_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2026 | &sensor_dev_attr_in6_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2027 | &sensor_dev_attr_in6_beep.dev_attr.attr, /* 34 */ |
| 2028 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2029 | &sensor_dev_attr_in7_input.dev_attr.attr, |
| 2030 | &sensor_dev_attr_in7_min.dev_attr.attr, |
| 2031 | &sensor_dev_attr_in7_max.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2032 | &sensor_dev_attr_in7_alarm.dev_attr.attr, |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2033 | &sensor_dev_attr_in7_beep.dev_attr.attr, /* 39 */ |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2034 | |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2035 | &sensor_dev_attr_in8_input.dev_attr.attr, /* 40 */ |
Jean Delvare | d5f3f6c | 2016-08-29 13:33:29 +0200 | [diff] [blame] | 2036 | &sensor_dev_attr_in9_input.dev_attr.attr, |
| 2037 | &sensor_dev_attr_in10_input.dev_attr.attr, |
| 2038 | &sensor_dev_attr_in11_input.dev_attr.attr, |
| 2039 | &sensor_dev_attr_in12_input.dev_attr.attr, |
Jean Delvare | 3c32926 | 2016-08-29 13:18:23 +0200 | [diff] [blame] | 2040 | NULL |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 2041 | }; |
| 2042 | |
| 2043 | static const struct attribute_group it87_group_in = { |
| 2044 | .attrs = it87_attributes_in, |
| 2045 | .is_visible = it87_in_is_visible, |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2046 | }; |
| 2047 | |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2048 | static umode_t it87_temp_is_visible(struct kobject *kobj, |
| 2049 | struct attribute *attr, int index) |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2050 | { |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2051 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2052 | struct it87_data *data = dev_get_drvdata(dev); |
| 2053 | int i = index / 7; /* temperature index */ |
| 2054 | int a = index % 7; /* attribute index */ |
| 2055 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 2056 | if (index >= 21) { |
| 2057 | i = index - 21 + 3; |
| 2058 | a = 0; |
| 2059 | } |
| 2060 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2061 | if (!(data->has_temp & BIT(i))) |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2062 | return 0; |
| 2063 | |
| 2064 | if (a == 5 && !has_temp_offset(data)) |
| 2065 | return 0; |
| 2066 | |
| 2067 | if (a == 6 && !data->has_beep) |
| 2068 | return 0; |
| 2069 | |
| 2070 | return attr->mode; |
| 2071 | } |
| 2072 | |
| 2073 | static struct attribute *it87_attributes_temp[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2074 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2075 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2076 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2077 | &sensor_dev_attr_temp1_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2078 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2079 | &sensor_dev_attr_temp1_offset.dev_attr.attr, /* 5 */ |
| 2080 | &sensor_dev_attr_temp1_beep.dev_attr.attr, /* 6 */ |
| 2081 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 2082 | &sensor_dev_attr_temp2_input.dev_attr.attr, /* 7 */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2083 | &sensor_dev_attr_temp2_max.dev_attr.attr, |
| 2084 | &sensor_dev_attr_temp2_min.dev_attr.attr, |
| 2085 | &sensor_dev_attr_temp2_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2086 | &sensor_dev_attr_temp2_alarm.dev_attr.attr, |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2087 | &sensor_dev_attr_temp2_offset.dev_attr.attr, |
| 2088 | &sensor_dev_attr_temp2_beep.dev_attr.attr, |
| 2089 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 2090 | &sensor_dev_attr_temp3_input.dev_attr.attr, /* 14 */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2091 | &sensor_dev_attr_temp3_max.dev_attr.attr, |
| 2092 | &sensor_dev_attr_temp3_min.dev_attr.attr, |
| 2093 | &sensor_dev_attr_temp3_type.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2094 | &sensor_dev_attr_temp3_alarm.dev_attr.attr, |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2095 | &sensor_dev_attr_temp3_offset.dev_attr.attr, |
| 2096 | &sensor_dev_attr_temp3_beep.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2097 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 2098 | &sensor_dev_attr_temp4_input.dev_attr.attr, /* 21 */ |
| 2099 | &sensor_dev_attr_temp5_input.dev_attr.attr, |
| 2100 | &sensor_dev_attr_temp6_input.dev_attr.attr, |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2101 | NULL |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2102 | }; |
| 2103 | |
Guenter Roeck | 8753377 | 2013-03-30 14:23:20 -0700 | [diff] [blame] | 2104 | static const struct attribute_group it87_group_temp = { |
| 2105 | .attrs = it87_attributes_temp, |
| 2106 | .is_visible = it87_temp_is_visible, |
Guenter Roeck | 161d898 | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2107 | }; |
| 2108 | |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 2109 | static umode_t it87_is_visible(struct kobject *kobj, |
| 2110 | struct attribute *attr, int index) |
| 2111 | { |
| 2112 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2113 | struct it87_data *data = dev_get_drvdata(dev); |
| 2114 | |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 2115 | if ((index == 2 || index == 3) && !data->has_vid) |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 2116 | return 0; |
| 2117 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2118 | if (index > 3 && !(data->in_internal & BIT(index - 4))) |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 2119 | return 0; |
| 2120 | |
| 2121 | return attr->mode; |
| 2122 | } |
| 2123 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2124 | static struct attribute *it87_attributes[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2125 | &dev_attr_alarms.attr, |
Jean Delvare | 3d30f9e | 2011-07-25 21:46:10 +0200 | [diff] [blame] | 2126 | &sensor_dev_attr_intrusion0_alarm.dev_attr.attr, |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 2127 | &dev_attr_vrm.attr, /* 2 */ |
| 2128 | &dev_attr_cpu0_vid.attr, /* 3 */ |
| 2129 | &sensor_dev_attr_in3_label.dev_attr.attr, /* 4 .. 7 */ |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 2130 | &sensor_dev_attr_in7_label.dev_attr.attr, |
| 2131 | &sensor_dev_attr_in8_label.dev_attr.attr, |
| 2132 | &sensor_dev_attr_in9_label.dev_attr.attr, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2133 | NULL |
| 2134 | }; |
| 2135 | |
| 2136 | static const struct attribute_group it87_group = { |
| 2137 | .attrs = it87_attributes, |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 2138 | .is_visible = it87_is_visible, |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2139 | }; |
| 2140 | |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2141 | static umode_t it87_fan_is_visible(struct kobject *kobj, |
| 2142 | struct attribute *attr, int index) |
| 2143 | { |
| 2144 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2145 | struct it87_data *data = dev_get_drvdata(dev); |
| 2146 | int i = index / 5; /* fan index */ |
| 2147 | int a = index % 5; /* attribute index */ |
| 2148 | |
| 2149 | if (index >= 15) { /* fan 4..6 don't have divisor attributes */ |
| 2150 | i = (index - 15) / 4 + 3; |
| 2151 | a = (index - 15) % 4; |
| 2152 | } |
| 2153 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2154 | if (!(data->has_fan & BIT(i))) |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2155 | return 0; |
| 2156 | |
| 2157 | if (a == 3) { /* beep */ |
| 2158 | if (!data->has_beep) |
| 2159 | return 0; |
| 2160 | /* first fan beep attribute is writable */ |
| 2161 | if (i == __ffs(data->has_fan)) |
| 2162 | return attr->mode | S_IWUSR; |
| 2163 | } |
| 2164 | |
| 2165 | if (a == 4 && has_16bit_fans(data)) /* divisor */ |
| 2166 | return 0; |
| 2167 | |
| 2168 | return attr->mode; |
| 2169 | } |
| 2170 | |
| 2171 | static struct attribute *it87_attributes_fan[] = { |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2172 | &sensor_dev_attr_fan1_input.dev_attr.attr, |
| 2173 | &sensor_dev_attr_fan1_min.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2174 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2175 | &sensor_dev_attr_fan1_beep.dev_attr.attr, /* 3 */ |
| 2176 | &sensor_dev_attr_fan1_div.dev_attr.attr, /* 4 */ |
| 2177 | |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2178 | &sensor_dev_attr_fan2_input.dev_attr.attr, |
| 2179 | &sensor_dev_attr_fan2_min.dev_attr.attr, |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2180 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2181 | &sensor_dev_attr_fan2_beep.dev_attr.attr, |
| 2182 | &sensor_dev_attr_fan2_div.dev_attr.attr, /* 9 */ |
| 2183 | |
Jean Delvare | 87808be | 2006-09-24 21:17:13 +0200 | [diff] [blame] | 2184 | &sensor_dev_attr_fan3_input.dev_attr.attr, |
| 2185 | &sensor_dev_attr_fan3_min.dev_attr.attr, |
Jean Delvare | 0124dd7 | 2007-11-25 16:16:41 +0100 | [diff] [blame] | 2186 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2187 | &sensor_dev_attr_fan3_beep.dev_attr.attr, |
| 2188 | &sensor_dev_attr_fan3_div.dev_attr.attr, /* 14 */ |
| 2189 | |
| 2190 | &sensor_dev_attr_fan4_input.dev_attr.attr, /* 15 */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2191 | &sensor_dev_attr_fan4_min.dev_attr.attr, |
| 2192 | &sensor_dev_attr_fan4_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2193 | &sensor_dev_attr_fan4_beep.dev_attr.attr, |
| 2194 | |
| 2195 | &sensor_dev_attr_fan5_input.dev_attr.attr, /* 19 */ |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2196 | &sensor_dev_attr_fan5_min.dev_attr.attr, |
| 2197 | &sensor_dev_attr_fan5_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2198 | &sensor_dev_attr_fan5_beep.dev_attr.attr, |
| 2199 | |
| 2200 | &sensor_dev_attr_fan6_input.dev_attr.attr, /* 23 */ |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 2201 | &sensor_dev_attr_fan6_min.dev_attr.attr, |
| 2202 | &sensor_dev_attr_fan6_alarm.dev_attr.attr, |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2203 | &sensor_dev_attr_fan6_beep.dev_attr.attr, |
Guenter Roeck | fa3f70d | 2015-03-25 23:15:32 -0700 | [diff] [blame] | 2204 | NULL |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2205 | }; |
| 2206 | |
Guenter Roeck | 9a70ee8 | 2013-03-30 14:51:20 -0700 | [diff] [blame] | 2207 | static const struct attribute_group it87_group_fan = { |
| 2208 | .attrs = it87_attributes_fan, |
| 2209 | .is_visible = it87_fan_is_visible, |
Guenter Roeck | e1169ba | 2012-12-19 22:17:01 +0100 | [diff] [blame] | 2210 | }; |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2211 | |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2212 | static umode_t it87_pwm_is_visible(struct kobject *kobj, |
| 2213 | struct attribute *attr, int index) |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 2214 | { |
| 2215 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2216 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2217 | int i = index / 4; /* pwm index */ |
| 2218 | int a = index % 4; /* attribute index */ |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 2219 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2220 | if (!(data->has_pwm & BIT(i))) |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2221 | return 0; |
| 2222 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2223 | /* pwmX_auto_channels_temp is only writable if auto pwm is supported */ |
| 2224 | if (a == 3 && (has_old_autopwm(data) || has_newer_autopwm(data))) |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2225 | return attr->mode | S_IWUSR; |
| 2226 | |
| 2227 | /* pwm2_freq is writable if there are two pwm frequency selects */ |
| 2228 | if (has_pwm_freq2(data) && i == 1 && a == 2) |
Guenter Roeck | 60878bc | 2015-03-26 19:57:42 -0700 | [diff] [blame] | 2229 | return attr->mode | S_IWUSR; |
| 2230 | |
| 2231 | return attr->mode; |
| 2232 | } |
| 2233 | |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2234 | static struct attribute *it87_attributes_pwm[] = { |
| 2235 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, |
| 2236 | &sensor_dev_attr_pwm1.dev_attr.attr, |
| 2237 | &sensor_dev_attr_pwm1_freq.dev_attr.attr, |
| 2238 | &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr, |
| 2239 | |
| 2240 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, |
| 2241 | &sensor_dev_attr_pwm2.dev_attr.attr, |
| 2242 | &sensor_dev_attr_pwm2_freq.dev_attr.attr, |
| 2243 | &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr, |
| 2244 | |
| 2245 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, |
| 2246 | &sensor_dev_attr_pwm3.dev_attr.attr, |
| 2247 | &sensor_dev_attr_pwm3_freq.dev_attr.attr, |
| 2248 | &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr, |
| 2249 | |
| 2250 | &sensor_dev_attr_pwm4_enable.dev_attr.attr, |
| 2251 | &sensor_dev_attr_pwm4.dev_attr.attr, |
| 2252 | &sensor_dev_attr_pwm4_freq.dev_attr.attr, |
| 2253 | &sensor_dev_attr_pwm4_auto_channels_temp.dev_attr.attr, |
| 2254 | |
| 2255 | &sensor_dev_attr_pwm5_enable.dev_attr.attr, |
| 2256 | &sensor_dev_attr_pwm5.dev_attr.attr, |
| 2257 | &sensor_dev_attr_pwm5_freq.dev_attr.attr, |
| 2258 | &sensor_dev_attr_pwm5_auto_channels_temp.dev_attr.attr, |
| 2259 | |
| 2260 | &sensor_dev_attr_pwm6_enable.dev_attr.attr, |
| 2261 | &sensor_dev_attr_pwm6.dev_attr.attr, |
| 2262 | &sensor_dev_attr_pwm6_freq.dev_attr.attr, |
| 2263 | &sensor_dev_attr_pwm6_auto_channels_temp.dev_attr.attr, |
| 2264 | |
| 2265 | NULL |
Jean Delvare | 723a0aa | 2010-03-05 22:17:16 +0100 | [diff] [blame] | 2266 | }; |
| 2267 | |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2268 | static const struct attribute_group it87_group_pwm = { |
| 2269 | .attrs = it87_attributes_pwm, |
| 2270 | .is_visible = it87_pwm_is_visible, |
| 2271 | }; |
| 2272 | |
| 2273 | static umode_t it87_auto_pwm_is_visible(struct kobject *kobj, |
| 2274 | struct attribute *attr, int index) |
| 2275 | { |
| 2276 | struct device *dev = container_of(kobj, struct device, kobj); |
| 2277 | struct it87_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2278 | int i = index / 11; /* pwm index */ |
| 2279 | int a = index % 11; /* attribute index */ |
| 2280 | |
| 2281 | if (index >= 33) { /* pwm 4..6 */ |
| 2282 | i = (index - 33) / 6 + 3; |
| 2283 | a = (index - 33) % 6 + 4; |
| 2284 | } |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2285 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2286 | if (!(data->has_pwm & BIT(i))) |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2287 | return 0; |
| 2288 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2289 | if (has_newer_autopwm(data)) { |
| 2290 | if (a < 4) /* no auto point pwm */ |
| 2291 | return 0; |
| 2292 | if (a == 8) /* no auto_point4 */ |
| 2293 | return 0; |
| 2294 | } |
| 2295 | if (has_old_autopwm(data)) { |
| 2296 | if (a >= 9) /* no pwm_auto_start, pwm_auto_slope */ |
| 2297 | return 0; |
| 2298 | } |
| 2299 | |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2300 | return attr->mode; |
| 2301 | } |
| 2302 | |
| 2303 | static struct attribute *it87_attributes_auto_pwm[] = { |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2304 | &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr, |
| 2305 | &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr, |
| 2306 | &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr, |
| 2307 | &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr, |
| 2308 | &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr, |
| 2309 | &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr, |
| 2310 | &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr, |
| 2311 | &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr, |
| 2312 | &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr, |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2313 | &sensor_dev_attr_pwm1_auto_start.dev_attr.attr, |
| 2314 | &sensor_dev_attr_pwm1_auto_slope.dev_attr.attr, |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2315 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2316 | &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, /* 11 */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2317 | &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr, |
| 2318 | &sensor_dev_attr_pwm2_auto_point3_pwm.dev_attr.attr, |
| 2319 | &sensor_dev_attr_pwm2_auto_point4_pwm.dev_attr.attr, |
| 2320 | &sensor_dev_attr_pwm2_auto_point1_temp.dev_attr.attr, |
| 2321 | &sensor_dev_attr_pwm2_auto_point1_temp_hyst.dev_attr.attr, |
| 2322 | &sensor_dev_attr_pwm2_auto_point2_temp.dev_attr.attr, |
| 2323 | &sensor_dev_attr_pwm2_auto_point3_temp.dev_attr.attr, |
| 2324 | &sensor_dev_attr_pwm2_auto_point4_temp.dev_attr.attr, |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2325 | &sensor_dev_attr_pwm2_auto_start.dev_attr.attr, |
| 2326 | &sensor_dev_attr_pwm2_auto_slope.dev_attr.attr, |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2327 | |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2328 | &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, /* 22 */ |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2329 | &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr, |
| 2330 | &sensor_dev_attr_pwm3_auto_point3_pwm.dev_attr.attr, |
| 2331 | &sensor_dev_attr_pwm3_auto_point4_pwm.dev_attr.attr, |
| 2332 | &sensor_dev_attr_pwm3_auto_point1_temp.dev_attr.attr, |
| 2333 | &sensor_dev_attr_pwm3_auto_point1_temp_hyst.dev_attr.attr, |
| 2334 | &sensor_dev_attr_pwm3_auto_point2_temp.dev_attr.attr, |
| 2335 | &sensor_dev_attr_pwm3_auto_point3_temp.dev_attr.attr, |
| 2336 | &sensor_dev_attr_pwm3_auto_point4_temp.dev_attr.attr, |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 2337 | &sensor_dev_attr_pwm3_auto_start.dev_attr.attr, |
| 2338 | &sensor_dev_attr_pwm3_auto_slope.dev_attr.attr, |
| 2339 | |
| 2340 | &sensor_dev_attr_pwm4_auto_point1_temp.dev_attr.attr, /* 33 */ |
| 2341 | &sensor_dev_attr_pwm4_auto_point1_temp_hyst.dev_attr.attr, |
| 2342 | &sensor_dev_attr_pwm4_auto_point2_temp.dev_attr.attr, |
| 2343 | &sensor_dev_attr_pwm4_auto_point3_temp.dev_attr.attr, |
| 2344 | &sensor_dev_attr_pwm4_auto_start.dev_attr.attr, |
| 2345 | &sensor_dev_attr_pwm4_auto_slope.dev_attr.attr, |
| 2346 | |
| 2347 | &sensor_dev_attr_pwm5_auto_point1_temp.dev_attr.attr, |
| 2348 | &sensor_dev_attr_pwm5_auto_point1_temp_hyst.dev_attr.attr, |
| 2349 | &sensor_dev_attr_pwm5_auto_point2_temp.dev_attr.attr, |
| 2350 | &sensor_dev_attr_pwm5_auto_point3_temp.dev_attr.attr, |
| 2351 | &sensor_dev_attr_pwm5_auto_start.dev_attr.attr, |
| 2352 | &sensor_dev_attr_pwm5_auto_slope.dev_attr.attr, |
| 2353 | |
| 2354 | &sensor_dev_attr_pwm6_auto_point1_temp.dev_attr.attr, |
| 2355 | &sensor_dev_attr_pwm6_auto_point1_temp_hyst.dev_attr.attr, |
| 2356 | &sensor_dev_attr_pwm6_auto_point2_temp.dev_attr.attr, |
| 2357 | &sensor_dev_attr_pwm6_auto_point3_temp.dev_attr.attr, |
| 2358 | &sensor_dev_attr_pwm6_auto_start.dev_attr.attr, |
| 2359 | &sensor_dev_attr_pwm6_auto_slope.dev_attr.attr, |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2360 | |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 2361 | NULL, |
| 2362 | }; |
| 2363 | |
| 2364 | static const struct attribute_group it87_group_auto_pwm = { |
| 2365 | .attrs = it87_attributes_auto_pwm, |
| 2366 | .is_visible = it87_auto_pwm_is_visible, |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 2367 | }; |
| 2368 | |
Jean Delvare | 2d8672c | 2005-07-19 23:56:35 +0200 | [diff] [blame] | 2369 | /* SuperIO detection - will change isa_address if a chip is found */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2370 | static int __init it87_find(int sioaddr, unsigned short *address, |
| 2371 | struct it87_sio_data *sio_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | { |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 2373 | int err; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2374 | u16 chip_type; |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 2375 | const char *board_vendor, *board_name; |
Guenter Roeck | f83a9cb | 2015-03-31 09:31:34 -0700 | [diff] [blame] | 2376 | const struct it87_devices *config; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2378 | err = superio_enter(sioaddr); |
Nat Gurumoorthy | 5b0380c | 2011-05-25 20:43:33 +0200 | [diff] [blame] | 2379 | if (err) |
| 2380 | return err; |
| 2381 | |
| 2382 | err = -ENODEV; |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2383 | chip_type = force_id ? force_id : superio_inw(sioaddr, DEVID); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2384 | |
| 2385 | switch (chip_type) { |
| 2386 | case IT8705F_DEVID: |
| 2387 | sio_data->type = it87; |
| 2388 | break; |
| 2389 | case IT8712F_DEVID: |
| 2390 | sio_data->type = it8712; |
| 2391 | break; |
| 2392 | case IT8716F_DEVID: |
| 2393 | case IT8726F_DEVID: |
| 2394 | sio_data->type = it8716; |
| 2395 | break; |
| 2396 | case IT8718F_DEVID: |
| 2397 | sio_data->type = it8718; |
| 2398 | break; |
Jean-Marc Spaggiari | b4da93e | 2009-01-07 16:37:32 +0100 | [diff] [blame] | 2399 | case IT8720F_DEVID: |
| 2400 | sio_data->type = it8720; |
| 2401 | break; |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2402 | case IT8721F_DEVID: |
| 2403 | sio_data->type = it8721; |
| 2404 | break; |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 2405 | case IT8728F_DEVID: |
| 2406 | sio_data->type = it8728; |
| 2407 | break; |
Justin Maggard | ead8080 | 2015-08-05 12:53:08 -0700 | [diff] [blame] | 2408 | case IT8732F_DEVID: |
| 2409 | sio_data->type = it8732; |
| 2410 | break; |
Guenter Roeck | b063670 | 2012-09-07 17:34:41 -0600 | [diff] [blame] | 2411 | case IT8771E_DEVID: |
| 2412 | sio_data->type = it8771; |
| 2413 | break; |
| 2414 | case IT8772E_DEVID: |
| 2415 | sio_data->type = it8772; |
| 2416 | break; |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 2417 | case IT8781F_DEVID: |
| 2418 | sio_data->type = it8781; |
| 2419 | break; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2420 | case IT8782F_DEVID: |
| 2421 | sio_data->type = it8782; |
| 2422 | break; |
| 2423 | case IT8783E_DEVID: |
| 2424 | sio_data->type = it8783; |
| 2425 | break; |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 2426 | case IT8786E_DEVID: |
| 2427 | sio_data->type = it8786; |
| 2428 | break; |
Guenter Roeck | 4ee0715 | 2015-03-25 23:26:28 -0700 | [diff] [blame] | 2429 | case IT8790E_DEVID: |
| 2430 | sio_data->type = it8790; |
| 2431 | break; |
Rudolf Marek | 7183ae8 | 2014-04-04 18:01:35 +0200 | [diff] [blame] | 2432 | case IT8603E_DEVID: |
Rudolf Marek | 574e9bd | 2014-04-04 18:01:35 +0200 | [diff] [blame] | 2433 | case IT8623E_DEVID: |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2434 | sio_data->type = it8603; |
| 2435 | break; |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2436 | case IT8620E_DEVID: |
| 2437 | sio_data->type = it8620; |
| 2438 | break; |
Guenter Roeck | 8af1aba | 2017-02-08 13:52:57 -0800 | [diff] [blame] | 2439 | case IT8622E_DEVID: |
| 2440 | sio_data->type = it8622; |
| 2441 | break; |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 2442 | case IT8628E_DEVID: |
| 2443 | sio_data->type = it8628; |
| 2444 | break; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2445 | case 0xffff: /* No device at all */ |
| 2446 | goto exit; |
| 2447 | default: |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2448 | pr_debug("Unsupported chip (DEVID=0x%x)\n", chip_type); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2449 | goto exit; |
| 2450 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2452 | superio_select(sioaddr, PME); |
| 2453 | if (!(superio_inb(sioaddr, IT87_ACT_REG) & 0x01)) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2454 | pr_info("Device not activated, skipping\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | goto exit; |
| 2456 | } |
| 2457 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2458 | *address = superio_inw(sioaddr, IT87_BASE_REG) & ~(IT87_EXTENT - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | if (*address == 0) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2460 | pr_info("Base address not set, skipping\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2461 | goto exit; |
| 2462 | } |
| 2463 | |
| 2464 | err = 0; |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2465 | sio_data->revision = superio_inb(sioaddr, DEVREV) & 0x0f; |
Guenter Roeck | faf392f | 2015-03-26 08:36:18 -0700 | [diff] [blame] | 2466 | pr_info("Found IT%04x%s chip at 0x%x, revision %d\n", chip_type, |
| 2467 | it87_devices[sio_data->type].suffix, |
Thomas Lorblanches | a0c1424 | 2015-02-13 13:19:06 +0100 | [diff] [blame] | 2468 | *address, sio_data->revision); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2469 | |
Guenter Roeck | f83a9cb | 2015-03-31 09:31:34 -0700 | [diff] [blame] | 2470 | config = &it87_devices[sio_data->type]; |
| 2471 | |
Guenter Roeck | 7f5726c | 2015-03-26 08:49:18 -0700 | [diff] [blame] | 2472 | /* in7 (VSB or VCCH5V) is always internal on some chips */ |
Guenter Roeck | f83a9cb | 2015-03-31 09:31:34 -0700 | [diff] [blame] | 2473 | if (has_in7_internal(config)) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2474 | sio_data->internal |= BIT(1); |
Guenter Roeck | 7f5726c | 2015-03-26 08:49:18 -0700 | [diff] [blame] | 2475 | |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 2476 | /* in8 (Vbat) is always internal */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2477 | sio_data->internal |= BIT(2); |
Guenter Roeck | 7f5726c | 2015-03-26 08:49:18 -0700 | [diff] [blame] | 2478 | |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 2479 | /* in9 (AVCC3), always internal if supported */ |
| 2480 | if (has_avcc3(config)) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2481 | sio_data->internal |= BIT(3); /* in9 is AVCC */ |
Guenter Roeck | 7305540 | 2015-03-26 09:16:32 -0700 | [diff] [blame] | 2482 | else |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2483 | sio_data->skip_in |= BIT(9); |
Jean Delvare | 738e5e0 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 2484 | |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 2485 | if (!has_five_pwm(config)) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2486 | sio_data->skip_pwm |= BIT(3) | BIT(4) | BIT(5); |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 2487 | else if (!has_six_pwm(config)) |
| 2488 | sio_data->skip_pwm |= BIT(5); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2489 | |
Guenter Roeck | f83a9cb | 2015-03-31 09:31:34 -0700 | [diff] [blame] | 2490 | if (!has_vid(config)) |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 2491 | sio_data->skip_vid = 1; |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2492 | |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 2493 | /* Read GPIO config and VID value from LDN 7 (GPIO) */ |
| 2494 | if (sio_data->type == it87) { |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2495 | /* The IT8705F has a different LD number for GPIO */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2496 | superio_select(sioaddr, 5); |
| 2497 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2498 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2499 | } else if (sio_data->type == it8783) { |
Guenter Roeck | 088ce2a | 2013-03-13 16:40:39 -0700 | [diff] [blame] | 2500 | int reg25, reg27, reg2a, reg2c, regef; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2501 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2502 | superio_select(sioaddr, GPIO); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2503 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2504 | reg25 = superio_inb(sioaddr, IT87_SIO_GPIO1_REG); |
| 2505 | reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG); |
| 2506 | reg2a = superio_inb(sioaddr, IT87_SIO_PINX1_REG); |
| 2507 | reg2c = superio_inb(sioaddr, IT87_SIO_PINX2_REG); |
| 2508 | regef = superio_inb(sioaddr, IT87_SIO_SPI_REG); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2509 | |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2510 | /* Check if fan3 is there or not */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2511 | if ((reg27 & BIT(0)) || !(reg2c & BIT(2))) |
| 2512 | sio_data->skip_fan |= BIT(2); |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 2513 | if ((reg25 & BIT(4)) || |
| 2514 | (!(reg2a & BIT(1)) && (regef & BIT(0)))) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2515 | sio_data->skip_pwm |= BIT(2); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2516 | |
| 2517 | /* Check if fan2 is there or not */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2518 | if (reg27 & BIT(7)) |
| 2519 | sio_data->skip_fan |= BIT(1); |
| 2520 | if (reg27 & BIT(3)) |
| 2521 | sio_data->skip_pwm |= BIT(1); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2522 | |
| 2523 | /* VIN5 */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2524 | if ((reg27 & BIT(0)) || (reg2c & BIT(2))) |
| 2525 | sio_data->skip_in |= BIT(5); /* No VIN5 */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2526 | |
| 2527 | /* VIN6 */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2528 | if (reg27 & BIT(1)) |
| 2529 | sio_data->skip_in |= BIT(6); /* No VIN6 */ |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2530 | |
| 2531 | /* |
| 2532 | * VIN7 |
| 2533 | * Does not depend on bit 2 of Reg2C, contrary to datasheet. |
| 2534 | */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2535 | if (reg27 & BIT(2)) { |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2536 | /* |
| 2537 | * The data sheet is a bit unclear regarding the |
| 2538 | * internal voltage divider for VCCH5V. It says |
| 2539 | * "This bit enables and switches VIN7 (pin 91) to the |
| 2540 | * internal voltage divider for VCCH5V". |
| 2541 | * This is different to other chips, where the internal |
| 2542 | * voltage divider would connect VIN7 to an internal |
| 2543 | * voltage source. Maybe that is the case here as well. |
| 2544 | * |
| 2545 | * Since we don't know for sure, re-route it if that is |
| 2546 | * not the case, and ask the user to report if the |
| 2547 | * resulting voltage is sane. |
| 2548 | */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2549 | if (!(reg2c & BIT(1))) { |
| 2550 | reg2c |= BIT(1); |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2551 | superio_outb(sioaddr, IT87_SIO_PINX2_REG, |
| 2552 | reg2c); |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2553 | pr_notice("Routing internal VCCH5V to in7.\n"); |
| 2554 | } |
| 2555 | pr_notice("in7 routed to internal voltage divider, with external pin disabled.\n"); |
| 2556 | pr_notice("Please report if it displays a reasonable voltage.\n"); |
| 2557 | } |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2558 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2559 | if (reg2c & BIT(0)) |
| 2560 | sio_data->internal |= BIT(0); |
| 2561 | if (reg2c & BIT(1)) |
| 2562 | sio_data->internal |= BIT(1); |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2563 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2564 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2565 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2566 | } else if (sio_data->type == it8603) { |
| 2567 | int reg27, reg29; |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2568 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2569 | superio_select(sioaddr, GPIO); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2570 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2571 | reg27 = superio_inb(sioaddr, IT87_SIO_GPIO3_REG); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2572 | |
| 2573 | /* Check if fan3 is there or not */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2574 | if (reg27 & BIT(6)) |
| 2575 | sio_data->skip_pwm |= BIT(2); |
| 2576 | if (reg27 & BIT(7)) |
| 2577 | sio_data->skip_fan |= BIT(2); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2578 | |
| 2579 | /* Check if fan2 is there or not */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2580 | reg29 = superio_inb(sioaddr, IT87_SIO_GPIO5_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2581 | if (reg29 & BIT(1)) |
| 2582 | sio_data->skip_pwm |= BIT(1); |
| 2583 | if (reg29 & BIT(2)) |
| 2584 | sio_data->skip_fan |= BIT(1); |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2585 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2586 | sio_data->skip_in |= BIT(5); /* No VIN5 */ |
| 2587 | sio_data->skip_in |= BIT(6); /* No VIN6 */ |
Rudolf Marek | c145d5c | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 2588 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2589 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2590 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Guenter Roeck | 71a9c23 | 2016-01-18 00:35:58 -0800 | [diff] [blame] | 2591 | } else if (sio_data->type == it8620 || sio_data->type == it8628) { |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2592 | int reg; |
| 2593 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2594 | superio_select(sioaddr, GPIO); |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2595 | |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2596 | /* Check for pwm5 */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2597 | reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2598 | if (reg & BIT(6)) |
| 2599 | sio_data->skip_pwm |= BIT(4); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2600 | |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2601 | /* Check for fan4, fan5 */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2602 | reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2603 | if (!(reg & BIT(5))) |
| 2604 | sio_data->skip_fan |= BIT(3); |
| 2605 | if (!(reg & BIT(4))) |
| 2606 | sio_data->skip_fan |= BIT(4); |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2607 | |
| 2608 | /* Check for pwm3, fan3 */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2609 | reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2610 | if (reg & BIT(6)) |
| 2611 | sio_data->skip_pwm |= BIT(2); |
| 2612 | if (reg & BIT(7)) |
| 2613 | sio_data->skip_fan |= BIT(2); |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2614 | |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2615 | /* Check for pwm4 */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2616 | reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG); |
Guenter Roeck | d66777c | 2017-02-08 14:05:56 -0800 | [diff] [blame^] | 2617 | if (reg & BIT(2)) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2618 | sio_data->skip_pwm |= BIT(3); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2619 | |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2620 | /* Check for pwm2, fan2 */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2621 | reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2622 | if (reg & BIT(1)) |
| 2623 | sio_data->skip_pwm |= BIT(1); |
| 2624 | if (reg & BIT(2)) |
| 2625 | sio_data->skip_fan |= BIT(1); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2626 | /* Check for pwm6, fan6 */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2627 | if (!(reg & BIT(7))) { |
| 2628 | sio_data->skip_pwm |= BIT(5); |
| 2629 | sio_data->skip_fan |= BIT(5); |
Guenter Roeck | 36c4d98 | 2015-03-26 18:18:19 -0700 | [diff] [blame] | 2630 | } |
Guenter Roeck | 3ba9d97 | 2015-02-13 20:13:20 -0800 | [diff] [blame] | 2631 | |
Guenter Roeck | 638c1c0 | 2017-02-08 14:00:21 -0800 | [diff] [blame] | 2632 | /* Check if AVCC is on VIN3 */ |
| 2633 | reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG); |
| 2634 | if (reg & BIT(0)) |
| 2635 | sio_data->internal |= BIT(0); |
| 2636 | else |
| 2637 | sio_data->skip_in |= BIT(9); |
| 2638 | |
| 2639 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2640 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
| 2641 | } else if (sio_data->type == it8622) { |
| 2642 | int reg; |
| 2643 | |
| 2644 | superio_select(sioaddr, GPIO); |
| 2645 | |
| 2646 | /* Check for pwm4, fan4 */ |
| 2647 | reg = superio_inb(sioaddr, IT87_SIO_GPIO1_REG); |
| 2648 | if (reg & BIT(6)) |
| 2649 | sio_data->skip_fan |= BIT(3); |
| 2650 | if (reg & BIT(5)) |
| 2651 | sio_data->skip_pwm |= BIT(3); |
| 2652 | |
| 2653 | /* Check for pwm3, fan3, pwm5, fan5 */ |
| 2654 | reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG); |
| 2655 | if (reg & BIT(6)) |
| 2656 | sio_data->skip_pwm |= BIT(2); |
| 2657 | if (reg & BIT(7)) |
| 2658 | sio_data->skip_fan |= BIT(2); |
| 2659 | if (reg & BIT(3)) |
| 2660 | sio_data->skip_pwm |= BIT(4); |
| 2661 | if (reg & BIT(1)) |
| 2662 | sio_data->skip_fan |= BIT(4); |
| 2663 | |
| 2664 | /* Check for pwm2, fan2 */ |
| 2665 | reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG); |
| 2666 | if (reg & BIT(1)) |
| 2667 | sio_data->skip_pwm |= BIT(1); |
| 2668 | if (reg & BIT(2)) |
| 2669 | sio_data->skip_fan |= BIT(1); |
| 2670 | |
| 2671 | /* Check for AVCC */ |
| 2672 | reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG); |
| 2673 | if (!(reg & BIT(0))) |
| 2674 | sio_data->skip_in |= BIT(9); |
| 2675 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2676 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2677 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 2678 | } else { |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2679 | int reg; |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2680 | bool uart6; |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2681 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2682 | superio_select(sioaddr, GPIO); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2683 | |
Guenter Roeck | a0df926 | 2015-04-05 16:51:36 -0700 | [diff] [blame] | 2684 | /* Check for fan4, fan5 */ |
| 2685 | if (has_five_fans(config)) { |
| 2686 | reg = superio_inb(sioaddr, IT87_SIO_GPIO2_REG); |
| 2687 | switch (sio_data->type) { |
| 2688 | case it8718: |
| 2689 | if (reg & BIT(5)) |
| 2690 | sio_data->skip_fan |= BIT(3); |
| 2691 | if (reg & BIT(4)) |
| 2692 | sio_data->skip_fan |= BIT(4); |
| 2693 | break; |
| 2694 | case it8720: |
| 2695 | case it8721: |
| 2696 | case it8728: |
| 2697 | if (!(reg & BIT(5))) |
| 2698 | sio_data->skip_fan |= BIT(3); |
| 2699 | if (!(reg & BIT(4))) |
| 2700 | sio_data->skip_fan |= BIT(4); |
| 2701 | break; |
| 2702 | default: |
| 2703 | break; |
| 2704 | } |
| 2705 | } |
| 2706 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2707 | reg = superio_inb(sioaddr, IT87_SIO_GPIO3_REG); |
Guenter Roeck | 32dd7c40 | 2015-02-12 07:40:23 -0800 | [diff] [blame] | 2708 | if (!sio_data->skip_vid) { |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2709 | /* We need at least 4 VID pins */ |
| 2710 | if (reg & 0x0f) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2711 | pr_info("VID is disabled (pins used for GPIO)\n"); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 2712 | sio_data->skip_vid = 1; |
| 2713 | } |
Jean Delvare | 895ff26 | 2009-12-09 20:35:47 +0100 | [diff] [blame] | 2714 | } |
| 2715 | |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2716 | /* Check if fan3 is there or not */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2717 | if (reg & BIT(6)) |
| 2718 | sio_data->skip_pwm |= BIT(2); |
| 2719 | if (reg & BIT(7)) |
| 2720 | sio_data->skip_fan |= BIT(2); |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2721 | |
| 2722 | /* Check if fan2 is there or not */ |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2723 | reg = superio_inb(sioaddr, IT87_SIO_GPIO5_REG); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2724 | if (reg & BIT(1)) |
| 2725 | sio_data->skip_pwm |= BIT(1); |
| 2726 | if (reg & BIT(2)) |
| 2727 | sio_data->skip_fan |= BIT(1); |
Jean Delvare | 591ec65 | 2009-12-09 20:35:48 +0100 | [diff] [blame] | 2728 | |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 2729 | if ((sio_data->type == it8718 || sio_data->type == it8720) && |
| 2730 | !(sio_data->skip_vid)) |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2731 | sio_data->vid_value = superio_inb(sioaddr, |
| 2732 | IT87_SIO_VID_REG); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2733 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2734 | reg = superio_inb(sioaddr, IT87_SIO_PINX2_REG); |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2735 | |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2736 | uart6 = sio_data->type == it8782 && (reg & BIT(2)); |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2737 | |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 2738 | /* |
| 2739 | * The IT8720F has no VIN7 pin, so VCCH should always be |
| 2740 | * routed internally to VIN7 with an internal divider. |
| 2741 | * Curiously, there still is a configuration bit to control |
| 2742 | * this, which means it can be set incorrectly. And even |
| 2743 | * more curiously, many boards out there are improperly |
| 2744 | * configured, even though the IT8720F datasheet claims |
| 2745 | * that the internal routing of VCCH to VIN7 is the default |
| 2746 | * setting. So we force the internal routing in this case. |
Guenter Roeck | 0531d98 | 2012-03-02 11:46:44 -0800 | [diff] [blame] | 2747 | * |
| 2748 | * On IT8782F, VIN7 is multiplexed with one of the UART6 pins. |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2749 | * If UART6 is enabled, re-route VIN7 to the internal divider |
| 2750 | * if that is not already the case. |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 2751 | */ |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2752 | if ((sio_data->type == it8720 || uart6) && !(reg & BIT(1))) { |
| 2753 | reg |= BIT(1); |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2754 | superio_outb(sioaddr, IT87_SIO_PINX2_REG, reg); |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2755 | pr_notice("Routing internal VCCH to in7\n"); |
Jean Delvare | 436cad2 | 2010-07-09 16:22:48 +0200 | [diff] [blame] | 2756 | } |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2757 | if (reg & BIT(0)) |
| 2758 | sio_data->internal |= BIT(0); |
| 2759 | if (reg & BIT(1)) |
| 2760 | sio_data->internal |= BIT(1); |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2761 | |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2762 | /* |
| 2763 | * On IT8782F, UART6 pins overlap with VIN5, VIN6, and VIN7. |
| 2764 | * While VIN7 can be routed to the internal voltage divider, |
| 2765 | * VIN5 and VIN6 are not available if UART6 is enabled. |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2766 | * |
| 2767 | * Also, temp3 is not available if UART6 is enabled and TEMPIN3 |
| 2768 | * is the temperature source. Since we can not read the |
| 2769 | * temperature source here, skip_temp is preliminary. |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2770 | */ |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2771 | if (uart6) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2772 | sio_data->skip_in |= BIT(5) | BIT(6); |
| 2773 | sio_data->skip_temp |= BIT(2); |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 2774 | } |
Guenter Roeck | 9172b5d | 2012-03-24 21:49:54 -0700 | [diff] [blame] | 2775 | |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2776 | sio_data->beep_pin = superio_inb(sioaddr, |
| 2777 | IT87_SIO_BEEP_PIN_REG) & 0x3f; |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2778 | } |
Jean Delvare | d9b327c | 2010-03-05 22:17:17 +0100 | [diff] [blame] | 2779 | if (sio_data->beep_pin) |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2780 | pr_info("Beeping is supported\n"); |
Jean Delvare | 87673dd | 2006-08-28 14:37:19 +0200 | [diff] [blame] | 2781 | |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 2782 | /* Disable specific features based on DMI strings */ |
| 2783 | board_vendor = dmi_get_system_info(DMI_BOARD_VENDOR); |
| 2784 | board_name = dmi_get_system_info(DMI_BOARD_NAME); |
| 2785 | if (board_vendor && board_name) { |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 2786 | if (strcmp(board_vendor, "nVIDIA") == 0 && |
| 2787 | strcmp(board_name, "FN68PT") == 0) { |
Guenter Roeck | 4a0d71c | 2012-01-19 11:02:18 -0800 | [diff] [blame] | 2788 | /* |
| 2789 | * On the Shuttle SN68PT, FAN_CTL2 is apparently not |
| 2790 | * connected to a fan, but to something else. One user |
| 2791 | * has reported instant system power-off when changing |
| 2792 | * the PWM2 duty cycle, so we disable it. |
| 2793 | * I use the board name string as the trigger in case |
| 2794 | * the same board is ever used in other systems. |
| 2795 | */ |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 2796 | pr_info("Disabling pwm2 due to hardware constraints\n"); |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2797 | sio_data->skip_pwm = BIT(1); |
Jean Delvare | 98dd22c | 2008-10-09 15:33:58 +0200 | [diff] [blame] | 2798 | } |
| 2799 | } |
| 2800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2801 | exit: |
Guenter Roeck | 3c2e351 | 2015-03-28 08:03:10 -0700 | [diff] [blame] | 2802 | superio_exit(sioaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2803 | return err; |
| 2804 | } |
| 2805 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2806 | /* Called when we have found a new IT87. */ |
| 2807 | static void it87_init_device(struct platform_device *pdev) |
| 2808 | { |
| 2809 | struct it87_sio_data *sio_data = dev_get_platdata(&pdev->dev); |
| 2810 | struct it87_data *data = platform_get_drvdata(pdev); |
| 2811 | int tmp, i; |
| 2812 | u8 mask; |
| 2813 | |
| 2814 | /* |
| 2815 | * For each PWM channel: |
| 2816 | * - If it is in automatic mode, setting to manual mode should set |
| 2817 | * the fan to full speed by default. |
| 2818 | * - If it is in manual mode, we need a mapping to temperature |
| 2819 | * channels to use when later setting to automatic mode later. |
| 2820 | * Use a 1:1 mapping by default (we are clueless.) |
| 2821 | * In both cases, the value can (and should) be changed by the user |
| 2822 | * prior to switching to a different mode. |
| 2823 | * Note that this is no longer needed for the IT8721F and later, as |
| 2824 | * these have separate registers for the temperature mapping and the |
| 2825 | * manual duty cycle. |
| 2826 | */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 2827 | for (i = 0; i < NUM_AUTO_PWM; i++) { |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2828 | data->pwm_temp_map[i] = i; |
| 2829 | data->pwm_duty[i] = 0x7f; /* Full speed */ |
| 2830 | data->auto_pwm[i][3] = 0x7f; /* Full speed, hard-coded */ |
| 2831 | } |
| 2832 | |
| 2833 | /* |
| 2834 | * Some chips seem to have default value 0xff for all limit |
| 2835 | * registers. For low voltage limits it makes no sense and triggers |
| 2836 | * alarms, so change to 0 instead. For high temperature limits, it |
| 2837 | * means -1 degree C, which surprisingly doesn't trigger an alarm, |
| 2838 | * but is still confusing, so change to 127 degrees C. |
| 2839 | */ |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 2840 | for (i = 0; i < NUM_VIN_LIMIT; i++) { |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2841 | tmp = it87_read_value(data, IT87_REG_VIN_MIN(i)); |
| 2842 | if (tmp == 0xff) |
| 2843 | it87_write_value(data, IT87_REG_VIN_MIN(i), 0); |
| 2844 | } |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 2845 | for (i = 0; i < NUM_TEMP_LIMIT; i++) { |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2846 | tmp = it87_read_value(data, IT87_REG_TEMP_HIGH(i)); |
| 2847 | if (tmp == 0xff) |
| 2848 | it87_write_value(data, IT87_REG_TEMP_HIGH(i), 127); |
| 2849 | } |
| 2850 | |
| 2851 | /* |
| 2852 | * Temperature channels are not forcibly enabled, as they can be |
| 2853 | * set to two different sensor types and we can't guess which one |
| 2854 | * is correct for a given system. These channels can be enabled at |
| 2855 | * run-time through the temp{1-3}_type sysfs accessors if needed. |
| 2856 | */ |
| 2857 | |
| 2858 | /* Check if voltage monitors are reset manually or by some reason */ |
| 2859 | tmp = it87_read_value(data, IT87_REG_VIN_ENABLE); |
| 2860 | if ((tmp & 0xff) == 0) { |
| 2861 | /* Enable all voltage monitors */ |
| 2862 | it87_write_value(data, IT87_REG_VIN_ENABLE, 0xff); |
| 2863 | } |
| 2864 | |
| 2865 | /* Check if tachometers are reset manually or by some reason */ |
| 2866 | mask = 0x70 & ~(sio_data->skip_fan << 4); |
| 2867 | data->fan_main_ctrl = it87_read_value(data, IT87_REG_FAN_MAIN_CTRL); |
| 2868 | if ((data->fan_main_ctrl & mask) == 0) { |
| 2869 | /* Enable all fan tachometers */ |
| 2870 | data->fan_main_ctrl |= mask; |
| 2871 | it87_write_value(data, IT87_REG_FAN_MAIN_CTRL, |
| 2872 | data->fan_main_ctrl); |
| 2873 | } |
| 2874 | data->has_fan = (data->fan_main_ctrl >> 4) & 0x07; |
| 2875 | |
| 2876 | tmp = it87_read_value(data, IT87_REG_FAN_16BIT); |
| 2877 | |
| 2878 | /* Set tachometers to 16-bit mode if needed */ |
| 2879 | if (has_fan16_config(data)) { |
| 2880 | if (~tmp & 0x07 & data->has_fan) { |
| 2881 | dev_dbg(&pdev->dev, |
| 2882 | "Setting fan1-3 to 16-bit mode\n"); |
| 2883 | it87_write_value(data, IT87_REG_FAN_16BIT, |
| 2884 | tmp | 0x07); |
| 2885 | } |
| 2886 | } |
| 2887 | |
| 2888 | /* Check for additional fans */ |
| 2889 | if (has_five_fans(data)) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2890 | if (tmp & BIT(4)) |
| 2891 | data->has_fan |= BIT(3); /* fan4 enabled */ |
| 2892 | if (tmp & BIT(5)) |
| 2893 | data->has_fan |= BIT(4); /* fan5 enabled */ |
| 2894 | if (has_six_fans(data) && (tmp & BIT(2))) |
| 2895 | data->has_fan |= BIT(5); /* fan6 enabled */ |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2896 | } |
| 2897 | |
| 2898 | /* Fan input pins may be used for alternative functions */ |
| 2899 | data->has_fan &= ~sio_data->skip_fan; |
| 2900 | |
| 2901 | /* Check if pwm5, pwm6 are enabled */ |
| 2902 | if (has_six_pwm(data)) { |
| 2903 | /* The following code may be IT8620E specific */ |
| 2904 | tmp = it87_read_value(data, IT87_REG_FAN_DIV); |
| 2905 | if ((tmp & 0xc0) == 0xc0) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 2906 | sio_data->skip_pwm |= BIT(4); |
| 2907 | if (!(tmp & BIT(3))) |
| 2908 | sio_data->skip_pwm |= BIT(5); |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2909 | } |
| 2910 | |
| 2911 | /* Start monitoring */ |
| 2912 | it87_write_value(data, IT87_REG_CONFIG, |
| 2913 | (it87_read_value(data, IT87_REG_CONFIG) & 0x3e) |
| 2914 | | (update_vbat ? 0x41 : 0x01)); |
| 2915 | } |
| 2916 | |
| 2917 | /* Return 1 if and only if the PWM interface is safe to use */ |
| 2918 | static int it87_check_pwm(struct device *dev) |
| 2919 | { |
| 2920 | struct it87_data *data = dev_get_drvdata(dev); |
| 2921 | /* |
| 2922 | * Some BIOSes fail to correctly configure the IT87 fans. All fans off |
| 2923 | * and polarity set to active low is sign that this is the case so we |
| 2924 | * disable pwm control to protect the user. |
| 2925 | */ |
| 2926 | int tmp = it87_read_value(data, IT87_REG_FAN_CTL); |
| 2927 | |
| 2928 | if ((tmp & 0x87) == 0) { |
| 2929 | if (fix_pwm_polarity) { |
| 2930 | /* |
| 2931 | * The user asks us to attempt a chip reconfiguration. |
| 2932 | * This means switching to active high polarity and |
| 2933 | * inverting all fan speed values. |
| 2934 | */ |
| 2935 | int i; |
| 2936 | u8 pwm[3]; |
| 2937 | |
Guenter Roeck | 2310048 | 2015-04-02 08:23:45 -0700 | [diff] [blame] | 2938 | for (i = 0; i < ARRAY_SIZE(pwm); i++) |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 2939 | pwm[i] = it87_read_value(data, |
| 2940 | IT87_REG_PWM[i]); |
| 2941 | |
| 2942 | /* |
| 2943 | * If any fan is in automatic pwm mode, the polarity |
| 2944 | * might be correct, as suspicious as it seems, so we |
| 2945 | * better don't change anything (but still disable the |
| 2946 | * PWM interface). |
| 2947 | */ |
| 2948 | if (!((pwm[0] | pwm[1] | pwm[2]) & 0x80)) { |
| 2949 | dev_info(dev, |
| 2950 | "Reconfiguring PWM to active high polarity\n"); |
| 2951 | it87_write_value(data, IT87_REG_FAN_CTL, |
| 2952 | tmp | 0x87); |
| 2953 | for (i = 0; i < 3; i++) |
| 2954 | it87_write_value(data, |
| 2955 | IT87_REG_PWM[i], |
| 2956 | 0x7f & ~pwm[i]); |
| 2957 | return 1; |
| 2958 | } |
| 2959 | |
| 2960 | dev_info(dev, |
| 2961 | "PWM configuration is too broken to be fixed\n"); |
| 2962 | } |
| 2963 | |
| 2964 | dev_info(dev, |
| 2965 | "Detected broken BIOS defaults, disabling PWM interface\n"); |
| 2966 | return 0; |
| 2967 | } else if (fix_pwm_polarity) { |
| 2968 | dev_info(dev, |
| 2969 | "PWM configuration looks sane, won't touch\n"); |
| 2970 | } |
| 2971 | |
| 2972 | return 1; |
| 2973 | } |
| 2974 | |
Bill Pemberton | 6c931ae | 2012-11-19 13:22:35 -0500 | [diff] [blame] | 2975 | static int it87_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | struct it87_data *data; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2978 | struct resource *res; |
| 2979 | struct device *dev = &pdev->dev; |
Jingoo Han | a8b3a3a | 2013-07-30 17:13:06 +0900 | [diff] [blame] | 2980 | struct it87_sio_data *sio_data = dev_get_platdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | int enable_pwm_interface; |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 2982 | struct device *hwmon_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2984 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2985 | if (!devm_request_region(&pdev->dev, res->start, IT87_EC_EXTENT, |
| 2986 | DRVNAME)) { |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2987 | dev_err(dev, "Failed to request region 0x%lx-0x%lx\n", |
| 2988 | (unsigned long)res->start, |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 2989 | (unsigned long)(res->start + IT87_EC_EXTENT - 1)); |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2990 | return -EBUSY; |
Jean Delvare | 8e9afcb | 2006-12-12 18:18:28 +0100 | [diff] [blame] | 2991 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 2993 | data = devm_kzalloc(&pdev->dev, sizeof(struct it87_data), GFP_KERNEL); |
| 2994 | if (!data) |
| 2995 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 2997 | data->addr = res->start; |
| 2998 | data->type = sio_data->type; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 2999 | data->features = it87_devices[sio_data->type].features; |
Guenter Roeck | 5d8d2f2 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 3000 | data->peci_mask = it87_devices[sio_data->type].peci_mask; |
Guenter Roeck | 1952978 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 3001 | data->old_peci_mask = it87_devices[sio_data->type].old_peci_mask; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 3002 | /* |
| 3003 | * IT8705F Datasheet 0.4.1, 3h == Version G. |
| 3004 | * IT8712F Datasheet 0.9.1, section 8.3.5 indicates 8h == Version J. |
| 3005 | * These are the first revisions with 16-bit tachometer support. |
| 3006 | */ |
| 3007 | switch (data->type) { |
| 3008 | case it87: |
| 3009 | if (sio_data->revision >= 0x03) { |
| 3010 | data->features &= ~FEAT_OLD_AUTOPWM; |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 3011 | data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 3012 | } |
| 3013 | break; |
| 3014 | case it8712: |
| 3015 | if (sio_data->revision >= 0x08) { |
| 3016 | data->features &= ~FEAT_OLD_AUTOPWM; |
Guenter Roeck | 9faf28c | 2015-02-12 07:11:38 -0800 | [diff] [blame] | 3017 | data->features |= FEAT_FAN16_CONFIG | FEAT_16BIT_FANS | |
| 3018 | FEAT_FIVE_FANS; |
Guenter Roeck | 483db43 | 2012-12-19 22:17:02 +0100 | [diff] [blame] | 3019 | } |
| 3020 | break; |
| 3021 | default: |
| 3022 | break; |
| 3023 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | |
| 3025 | /* Now, we do the remaining detection. */ |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 3026 | if ((it87_read_value(data, IT87_REG_CONFIG) & 0x80) || |
| 3027 | it87_read_value(data, IT87_REG_CHIPID) != 0x90) |
Guenter Roeck | 62a1d05 | 2012-03-24 21:54:41 -0700 | [diff] [blame] | 3028 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3030 | platform_set_drvdata(pdev, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 3032 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | /* Check PWM configuration */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3035 | enable_pwm_interface = it87_check_pwm(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 3037 | /* Starting with IT8721F, we handle scaling of internal voltages */ |
Jean Delvare | 16b5dda | 2012-01-16 22:51:48 +0100 | [diff] [blame] | 3038 | if (has_12mv_adc(data)) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3039 | if (sio_data->internal & BIT(0)) |
| 3040 | data->in_scaled |= BIT(3); /* in3 is AVCC */ |
| 3041 | if (sio_data->internal & BIT(1)) |
| 3042 | data->in_scaled |= BIT(7); /* in7 is VSB */ |
| 3043 | if (sio_data->internal & BIT(2)) |
| 3044 | data->in_scaled |= BIT(8); /* in8 is Vbat */ |
| 3045 | if (sio_data->internal & BIT(3)) |
| 3046 | data->in_scaled |= BIT(9); /* in9 is AVCC */ |
Guenter Roeck | 7bc32d2 | 2015-01-17 14:10:24 -0800 | [diff] [blame] | 3047 | } else if (sio_data->type == it8781 || sio_data->type == it8782 || |
| 3048 | sio_data->type == it8783) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3049 | if (sio_data->internal & BIT(0)) |
| 3050 | data->in_scaled |= BIT(3); /* in3 is VCC5V */ |
| 3051 | if (sio_data->internal & BIT(1)) |
| 3052 | data->in_scaled |= BIT(7); /* in7 is VCCH5V */ |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 3053 | } |
| 3054 | |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 3055 | data->has_temp = 0x07; |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3056 | if (sio_data->skip_temp & BIT(2)) { |
Guenter Roeck | c962024 | 2015-04-04 09:05:57 -0700 | [diff] [blame] | 3057 | if (sio_data->type == it8782 && |
| 3058 | !(it87_read_value(data, IT87_REG_TEMP_EXTRA) & 0x80)) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3059 | data->has_temp &= ~BIT(2); |
Guenter Roeck | 4573acb | 2012-03-26 16:17:41 -0700 | [diff] [blame] | 3060 | } |
| 3061 | |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 3062 | data->in_internal = sio_data->internal; |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 3063 | data->has_in = 0x3ff & ~sio_data->skip_in; |
| 3064 | |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 3065 | if (has_six_temp(data)) { |
| 3066 | u8 reg = it87_read_value(data, IT87_REG_TEMP456_ENABLE); |
| 3067 | |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 3068 | /* Check for additional temperature sensors */ |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 3069 | if ((reg & 0x03) >= 0x02) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3070 | data->has_temp |= BIT(3); |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 3071 | if (((reg >> 2) & 0x03) >= 0x02) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3072 | data->has_temp |= BIT(4); |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 3073 | if (((reg >> 4) & 0x03) >= 0x02) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3074 | data->has_temp |= BIT(5); |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 3075 | |
| 3076 | /* Check for additional voltage sensors */ |
| 3077 | if ((reg & 0x03) == 0x01) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3078 | data->has_in |= BIT(10); |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 3079 | if (((reg >> 2) & 0x03) == 0x01) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3080 | data->has_in |= BIT(11); |
Guenter Roeck | f838aa2 | 2015-04-01 20:09:36 -0700 | [diff] [blame] | 3081 | if (((reg >> 4) & 0x03) == 0x01) |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3082 | data->has_in |= BIT(12); |
Guenter Roeck | cc18da7 | 2015-04-01 10:03:01 -0700 | [diff] [blame] | 3083 | } |
| 3084 | |
Guenter Roeck | 5292971 | 2013-03-30 14:00:08 -0700 | [diff] [blame] | 3085 | data->has_beep = !!sio_data->beep_pin; |
| 3086 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3087 | /* Initialize the IT87 chip */ |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3088 | it87_init_device(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | |
Guenter Roeck | d376684 | 2013-03-30 15:47:21 -0700 | [diff] [blame] | 3090 | if (!sio_data->skip_vid) { |
| 3091 | data->has_vid = true; |
| 3092 | data->vrm = vid_which_vrm(); |
| 3093 | /* VID reading from Super-I/O config space if available */ |
| 3094 | data->vid = sio_data->vid_value; |
| 3095 | } |
| 3096 | |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 3097 | /* Prepare for sysfs hooks */ |
| 3098 | data->groups[0] = &it87_group; |
| 3099 | data->groups[1] = &it87_group_in; |
| 3100 | data->groups[2] = &it87_group_temp; |
| 3101 | data->groups[3] = &it87_group_fan; |
Jean Delvare | 17d648b | 2006-08-28 14:23:46 +0200 | [diff] [blame] | 3102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3103 | if (enable_pwm_interface) { |
Guenter Roeck | 48b2ae7 | 2015-04-02 08:06:12 -0700 | [diff] [blame] | 3104 | data->has_pwm = BIT(ARRAY_SIZE(IT87_REG_PWM)) - 1; |
Guenter Roeck | 5c39126 | 2013-03-30 15:02:12 -0700 | [diff] [blame] | 3105 | data->has_pwm &= ~sio_data->skip_pwm; |
Jean Delvare | 4f3f51b | 2010-03-05 22:17:21 +0100 | [diff] [blame] | 3106 | |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 3107 | data->groups[4] = &it87_group_pwm; |
Guenter Roeck | 2cbb9c3 | 2015-04-05 11:53:29 -0700 | [diff] [blame] | 3108 | if (has_old_autopwm(data) || has_newer_autopwm(data)) |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 3109 | data->groups[5] = &it87_group_auto_pwm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | } |
| 3111 | |
Guenter Roeck | 8638d0a | 2015-03-30 11:13:49 -0700 | [diff] [blame] | 3112 | hwmon_dev = devm_hwmon_device_register_with_groups(dev, |
| 3113 | it87_devices[sio_data->type].name, |
| 3114 | data, data->groups); |
| 3115 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | } |
| 3117 | |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 3118 | static struct platform_driver it87_driver = { |
| 3119 | .driver = { |
| 3120 | .name = DRVNAME, |
| 3121 | }, |
| 3122 | .probe = it87_probe, |
Guenter Roeck | c1e7a4c | 2015-03-28 09:27:27 -0700 | [diff] [blame] | 3123 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3125 | static int __init it87_device_add(int index, unsigned short address, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3126 | const struct it87_sio_data *sio_data) |
| 3127 | { |
Guenter Roeck | 8e50e3c | 2015-03-28 07:49:14 -0700 | [diff] [blame] | 3128 | struct platform_device *pdev; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3129 | struct resource res = { |
Bjorn Helgaas | 87b4b66 | 2008-01-22 07:21:03 -0500 | [diff] [blame] | 3130 | .start = address + IT87_EC_OFFSET, |
| 3131 | .end = address + IT87_EC_OFFSET + IT87_EC_EXTENT - 1, |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3132 | .name = DRVNAME, |
| 3133 | .flags = IORESOURCE_IO, |
| 3134 | }; |
| 3135 | int err; |
| 3136 | |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 3137 | err = acpi_check_resource_conflict(&res); |
| 3138 | if (err) |
Guenter Roeck | 5cae84a | 2015-03-28 07:44:59 -0700 | [diff] [blame] | 3139 | return err; |
Jean Delvare | b9acb64 | 2009-01-07 16:37:35 +0100 | [diff] [blame] | 3140 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3141 | pdev = platform_device_alloc(DRVNAME, address); |
Guenter Roeck | 5cae84a | 2015-03-28 07:44:59 -0700 | [diff] [blame] | 3142 | if (!pdev) |
| 3143 | return -ENOMEM; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3144 | |
| 3145 | err = platform_device_add_resources(pdev, &res, 1); |
| 3146 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 3147 | pr_err("Device resource addition failed (%d)\n", err); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3148 | goto exit_device_put; |
| 3149 | } |
| 3150 | |
| 3151 | err = platform_device_add_data(pdev, sio_data, |
| 3152 | sizeof(struct it87_sio_data)); |
| 3153 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 3154 | pr_err("Platform data allocation failed\n"); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3155 | goto exit_device_put; |
| 3156 | } |
| 3157 | |
| 3158 | err = platform_device_add(pdev); |
| 3159 | if (err) { |
Joe Perches | a8ca103 | 2011-01-12 21:55:10 +0100 | [diff] [blame] | 3160 | pr_err("Device addition failed (%d)\n", err); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3161 | goto exit_device_put; |
| 3162 | } |
| 3163 | |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3164 | it87_pdev[index] = pdev; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3165 | return 0; |
| 3166 | |
| 3167 | exit_device_put: |
| 3168 | platform_device_put(pdev); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3169 | return err; |
| 3170 | } |
| 3171 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | static int __init sm_it87_init(void) |
| 3173 | { |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3174 | int sioaddr[2] = { REG_2E, REG_4E }; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3175 | struct it87_sio_data sio_data; |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3176 | unsigned short isa_address; |
| 3177 | bool found = false; |
| 3178 | int i, err; |
Jean Delvare | fde0950 | 2005-07-19 23:51:07 +0200 | [diff] [blame] | 3179 | |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3180 | err = platform_driver_register(&it87_driver); |
| 3181 | if (err) |
| 3182 | return err; |
| 3183 | |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3184 | for (i = 0; i < ARRAY_SIZE(sioaddr); i++) { |
| 3185 | memset(&sio_data, 0, sizeof(struct it87_sio_data)); |
| 3186 | isa_address = 0; |
| 3187 | err = it87_find(sioaddr[i], &isa_address, &sio_data); |
| 3188 | if (err || isa_address == 0) |
| 3189 | continue; |
| 3190 | |
| 3191 | err = it87_device_add(i, isa_address, &sio_data); |
| 3192 | if (err) |
| 3193 | goto exit_dev_unregister; |
| 3194 | found = true; |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3195 | } |
| 3196 | |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3197 | if (!found) { |
| 3198 | err = -ENODEV; |
| 3199 | goto exit_unregister; |
| 3200 | } |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3201 | return 0; |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3202 | |
| 3203 | exit_dev_unregister: |
| 3204 | /* NULL check handled by platform_device_unregister */ |
| 3205 | platform_device_unregister(it87_pdev[0]); |
| 3206 | exit_unregister: |
| 3207 | platform_driver_unregister(&it87_driver); |
| 3208 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3209 | } |
| 3210 | |
| 3211 | static void __exit sm_it87_exit(void) |
| 3212 | { |
Guenter Roeck | e84bd95 | 2015-03-28 08:24:29 -0700 | [diff] [blame] | 3213 | /* NULL check handled by platform_device_unregister */ |
| 3214 | platform_device_unregister(it87_pdev[1]); |
| 3215 | platform_device_unregister(it87_pdev[0]); |
corentin.labbe | b74f3fd | 2007-06-13 20:27:36 +0200 | [diff] [blame] | 3216 | platform_driver_unregister(&it87_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | } |
| 3218 | |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 3219 | MODULE_AUTHOR("Chris Gauthron, Jean Delvare <jdelvare@suse.de>"); |
Jean Delvare | 44c1bcd | 2010-10-28 20:31:51 +0200 | [diff] [blame] | 3220 | MODULE_DESCRIPTION("IT8705F/IT871xF/IT872xF hardware monitoring driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3221 | module_param(update_vbat, bool, 0); |
| 3222 | MODULE_PARM_DESC(update_vbat, "Update vbat if set else return powerup value"); |
| 3223 | module_param(fix_pwm_polarity, bool, 0); |
Jean Delvare | 5f2dc79 | 2010-03-05 22:17:18 +0100 | [diff] [blame] | 3224 | MODULE_PARM_DESC(fix_pwm_polarity, |
| 3225 | "Force PWM polarity to active high (DANGEROUS)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | MODULE_LICENSE("GPL"); |
| 3227 | |
| 3228 | module_init(sm_it87_init); |
| 3229 | module_exit(sm_it87_exit); |