Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl>, |
| 3 | Philip Edelbrock <phil@netroedge.com>, and Mark D. Studebaker |
| 4 | <mdsxyz123@yahoo.com> |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 5 | Copyright (C) 2007 - 2014 Jean Delvare <jdelvare@suse.de> |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 6 | Copyright (C) 2010 Intel Corporation, |
| 7 | David Woodhouse <dwmw2@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | This program is free software; you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation; either version 2 of the License, or |
| 12 | (at your option) any later version. |
| 13 | |
| 14 | This program is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | /* |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 21 | * Supports the following Intel I/O Controller Hubs (ICH): |
| 22 | * |
| 23 | * I/O Block I2C |
| 24 | * region SMBus Block proc. block |
| 25 | * Chip name PCI ID size PEC buffer call read |
| 26 | * --------------------------------------------------------------------------- |
| 27 | * 82801AA (ICH) 0x2413 16 no no no no |
| 28 | * 82801AB (ICH0) 0x2423 16 no no no no |
| 29 | * 82801BA (ICH2) 0x2443 16 no no no no |
| 30 | * 82801CA (ICH3) 0x2483 32 soft no no no |
| 31 | * 82801DB (ICH4) 0x24c3 32 hard yes no no |
| 32 | * 82801E (ICH5) 0x24d3 32 hard yes yes yes |
| 33 | * 6300ESB 0x25a4 32 hard yes yes yes |
| 34 | * 82801F (ICH6) 0x266a 32 hard yes yes yes |
| 35 | * 6310ESB/6320ESB 0x269b 32 hard yes yes yes |
| 36 | * 82801G (ICH7) 0x27da 32 hard yes yes yes |
| 37 | * 82801H (ICH8) 0x283e 32 hard yes yes yes |
| 38 | * 82801I (ICH9) 0x2930 32 hard yes yes yes |
| 39 | * EP80579 (Tolapai) 0x5032 32 hard yes yes yes |
| 40 | * ICH10 0x3a30 32 hard yes yes yes |
| 41 | * ICH10 0x3a60 32 hard yes yes yes |
| 42 | * 5/3400 Series (PCH) 0x3b30 32 hard yes yes yes |
| 43 | * 6 Series (PCH) 0x1c22 32 hard yes yes yes |
| 44 | * Patsburg (PCH) 0x1d22 32 hard yes yes yes |
| 45 | * Patsburg (PCH) IDF 0x1d70 32 hard yes yes yes |
| 46 | * Patsburg (PCH) IDF 0x1d71 32 hard yes yes yes |
| 47 | * Patsburg (PCH) IDF 0x1d72 32 hard yes yes yes |
| 48 | * DH89xxCC (PCH) 0x2330 32 hard yes yes yes |
| 49 | * Panther Point (PCH) 0x1e22 32 hard yes yes yes |
| 50 | * Lynx Point (PCH) 0x8c22 32 hard yes yes yes |
| 51 | * Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes |
| 52 | * Avoton (SOC) 0x1f3c 32 hard yes yes yes |
| 53 | * Wellsburg (PCH) 0x8d22 32 hard yes yes yes |
| 54 | * Wellsburg (PCH) MS 0x8d7d 32 hard yes yes yes |
| 55 | * Wellsburg (PCH) MS 0x8d7e 32 hard yes yes yes |
| 56 | * Wellsburg (PCH) MS 0x8d7f 32 hard yes yes yes |
| 57 | * Coleto Creek (PCH) 0x23b0 32 hard yes yes yes |
Jean Delvare | b299de8 | 2014-07-17 15:04:41 +0200 | [diff] [blame] | 58 | * Wildcat Point (PCH) 0x8ca2 32 hard yes yes yes |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 59 | * Wildcat Point-LP (PCH) 0x9ca2 32 hard yes yes yes |
| 60 | * BayTrail (SOC) 0x0f12 32 hard yes yes yes |
james.d.ralston@intel.com | 3e27a84 | 2014-10-13 15:20:24 -0700 | [diff] [blame] | 61 | * Sunrise Point-H (PCH) 0xa123 32 hard yes yes yes |
Devin Ryles | 3eee1799 | 2014-11-05 16:30:03 -0500 | [diff] [blame] | 62 | * Sunrise Point-LP (PCH) 0x9d23 32 hard yes yes yes |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 63 | * |
| 64 | * Features supported by this driver: |
| 65 | * Software PEC no |
| 66 | * Hardware PEC yes |
| 67 | * Block buffer yes |
| 68 | * Block process call transaction no |
| 69 | * I2C block read transaction yes (doesn't use the block buffer) |
| 70 | * Slave mode no |
| 71 | * Interrupt processing yes |
| 72 | * |
| 73 | * See the file Documentation/i2c/busses/i2c-i801 for details. |
| 74 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 76 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #include <linux/module.h> |
| 78 | #include <linux/pci.h> |
| 79 | #include <linux/kernel.h> |
| 80 | #include <linux/stddef.h> |
| 81 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #include <linux/ioport.h> |
| 83 | #include <linux/init.h> |
| 84 | #include <linux/i2c.h> |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 85 | #include <linux/acpi.h> |
Jean Delvare | 1561bfe | 2009-01-07 14:29:17 +0100 | [diff] [blame] | 86 | #include <linux/io.h> |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 87 | #include <linux/dmi.h> |
Ben Hutchings | 665a96b | 2011-01-10 22:11:22 +0100 | [diff] [blame] | 88 | #include <linux/slab.h> |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 89 | #include <linux/wait.h> |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 90 | #include <linux/err.h> |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 91 | #include <linux/platform_device.h> |
| 92 | #include <linux/platform_data/itco_wdt.h> |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 93 | |
Jean Delvare | 79e3e5b | 2012-10-28 21:37:01 +0100 | [diff] [blame] | 94 | #if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \ |
| 95 | defined CONFIG_DMI |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 96 | #include <linux/gpio.h> |
| 97 | #include <linux/i2c-mux-gpio.h> |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 98 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | /* I801 SMBus address offsets */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 101 | #define SMBHSTSTS(p) (0 + (p)->smba) |
| 102 | #define SMBHSTCNT(p) (2 + (p)->smba) |
| 103 | #define SMBHSTCMD(p) (3 + (p)->smba) |
| 104 | #define SMBHSTADD(p) (4 + (p)->smba) |
| 105 | #define SMBHSTDAT0(p) (5 + (p)->smba) |
| 106 | #define SMBHSTDAT1(p) (6 + (p)->smba) |
| 107 | #define SMBBLKDAT(p) (7 + (p)->smba) |
| 108 | #define SMBPEC(p) (8 + (p)->smba) /* ICH3 and later */ |
| 109 | #define SMBAUXSTS(p) (12 + (p)->smba) /* ICH4 and later */ |
| 110 | #define SMBAUXCTL(p) (13 + (p)->smba) /* ICH4 and later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | /* PCI Address Constants */ |
Jean Delvare | 6dcc19d | 2006-06-12 21:53:02 +0200 | [diff] [blame] | 113 | #define SMBBAR 4 |
Jean Delvare | aeb8a3d | 2014-11-12 10:25:37 +0100 | [diff] [blame] | 114 | #define SMBPCICTL 0x004 |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 115 | #define SMBPCISTS 0x006 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #define SMBHSTCFG 0x040 |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 117 | #define TCOBASE 0x050 |
| 118 | #define TCOCTL 0x054 |
| 119 | |
| 120 | #define ACPIBASE 0x040 |
| 121 | #define ACPIBASE_SMI_OFF 0x030 |
| 122 | #define ACPICTRL 0x044 |
| 123 | #define ACPICTRL_EN 0x080 |
| 124 | |
| 125 | #define SBREG_BAR 0x10 |
| 126 | #define SBREG_SMBCTRL 0xc6000c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 128 | /* Host status bits for SMBPCISTS */ |
| 129 | #define SMBPCISTS_INTS 0x08 |
| 130 | |
Jean Delvare | aeb8a3d | 2014-11-12 10:25:37 +0100 | [diff] [blame] | 131 | /* Control bits for SMBPCICTL */ |
| 132 | #define SMBPCICTL_INTDIS 0x0400 |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | /* Host configuration bits for SMBHSTCFG */ |
| 135 | #define SMBHSTCFG_HST_EN 1 |
| 136 | #define SMBHSTCFG_SMB_SMI_EN 2 |
| 137 | #define SMBHSTCFG_I2C_EN 4 |
| 138 | |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 139 | /* TCO configuration bits for TCOCTL */ |
| 140 | #define TCOCTL_EN 0x0100 |
| 141 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 142 | /* Auxiliary control register bits, ICH4+ only */ |
Oleg Ryjkov | ca8b9e3 | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 143 | #define SMBAUXCTL_CRC 1 |
| 144 | #define SMBAUXCTL_E32B 2 |
| 145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | /* Other settings */ |
Jean Delvare | 84c1af4 | 2012-03-26 21:47:19 +0200 | [diff] [blame] | 147 | #define MAX_RETRIES 400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | /* I801 command constants */ |
| 150 | #define I801_QUICK 0x00 |
| 151 | #define I801_BYTE 0x04 |
| 152 | #define I801_BYTE_DATA 0x08 |
| 153 | #define I801_WORD_DATA 0x0C |
Jean Delvare | ae7b049 | 2008-01-27 18:14:49 +0100 | [diff] [blame] | 154 | #define I801_PROC_CALL 0x10 /* unimplemented */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | #define I801_BLOCK_DATA 0x14 |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 156 | #define I801_I2C_BLOCK_DATA 0x18 /* ICH5 and later */ |
Daniel Kurtz | edbeea6 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 157 | |
| 158 | /* I801 Host Control register bits */ |
| 159 | #define SMBHSTCNT_INTREN 0x01 |
| 160 | #define SMBHSTCNT_KILL 0x02 |
| 161 | #define SMBHSTCNT_LAST_BYTE 0x20 |
| 162 | #define SMBHSTCNT_START 0x40 |
| 163 | #define SMBHSTCNT_PEC_EN 0x80 /* ICH3 and later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Oleg Ryjkov | ca8b9e3 | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 165 | /* I801 Hosts Status register bits */ |
| 166 | #define SMBHSTSTS_BYTE_DONE 0x80 |
| 167 | #define SMBHSTSTS_INUSE_STS 0x40 |
| 168 | #define SMBHSTSTS_SMBALERT_STS 0x20 |
| 169 | #define SMBHSTSTS_FAILED 0x10 |
| 170 | #define SMBHSTSTS_BUS_ERR 0x08 |
| 171 | #define SMBHSTSTS_DEV_ERR 0x04 |
| 172 | #define SMBHSTSTS_INTR 0x02 |
| 173 | #define SMBHSTSTS_HOST_BUSY 0x01 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Daniel Kurtz | 70a1cc1 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 175 | #define STATUS_ERROR_FLAGS (SMBHSTSTS_FAILED | SMBHSTSTS_BUS_ERR | \ |
| 176 | SMBHSTSTS_DEV_ERR) |
| 177 | |
| 178 | #define STATUS_FLAGS (SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \ |
| 179 | STATUS_ERROR_FLAGS) |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 180 | |
Jean Delvare | a6e5e2b | 2011-05-01 18:18:49 +0200 | [diff] [blame] | 181 | /* Older devices have their ID defined in <linux/pci_ids.h> */ |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 182 | #define PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS 0x0f12 |
Alan Cox | 39e8e30 | 2014-08-19 17:37:28 +0300 | [diff] [blame] | 183 | #define PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS 0x2292 |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 184 | #define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS 0x1c22 |
| 185 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22 |
David Woodhouse | 55fee8d | 2010-10-31 21:07:00 +0100 | [diff] [blame] | 186 | /* Patsburg also has three 'Integrated Device Function' SMBus controllers */ |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 187 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0 0x1d70 |
| 188 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1 0x1d71 |
| 189 | #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2 0x1d72 |
| 190 | #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22 |
| 191 | #define PCI_DEVICE_ID_INTEL_AVOTON_SMBUS 0x1f3c |
| 192 | #define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330 |
| 193 | #define PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS 0x23b0 |
| 194 | #define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30 |
| 195 | #define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22 |
Jean Delvare | b299de8 | 2014-07-17 15:04:41 +0200 | [diff] [blame] | 196 | #define PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS 0x8ca2 |
Jean Delvare | ce31611 | 2014-07-17 15:03:24 +0200 | [diff] [blame] | 197 | #define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS 0x8d22 |
| 198 | #define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0 0x8d7d |
| 199 | #define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1 0x8d7e |
| 200 | #define PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2 0x8d7f |
| 201 | #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22 |
James Ralston | afc6592 | 2013-11-04 09:29:48 -0800 | [diff] [blame] | 202 | #define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS 0x9ca2 |
james.d.ralston@intel.com | 3e27a84 | 2014-10-13 15:20:24 -0700 | [diff] [blame] | 203 | #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS 0xa123 |
Devin Ryles | 3eee1799 | 2014-11-05 16:30:03 -0500 | [diff] [blame] | 204 | #define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS 0x9d23 |
David Woodhouse | 55fee8d | 2010-10-31 21:07:00 +0100 | [diff] [blame] | 205 | |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 206 | struct i801_mux_config { |
| 207 | char *gpio_chip; |
| 208 | unsigned values[3]; |
| 209 | int n_values; |
| 210 | unsigned classes[3]; |
| 211 | unsigned gpios[2]; /* Relative to gpio_chip->base */ |
| 212 | int n_gpios; |
| 213 | }; |
| 214 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 215 | struct i801_priv { |
| 216 | struct i2c_adapter adapter; |
| 217 | unsigned long smba; |
| 218 | unsigned char original_hstcfg; |
| 219 | struct pci_dev *pci_dev; |
| 220 | unsigned int features; |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 221 | |
| 222 | /* isr processing */ |
| 223 | wait_queue_head_t waitq; |
| 224 | u8 status; |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 225 | |
| 226 | /* Command state used by isr for byte-by-byte block transactions */ |
| 227 | u8 cmd; |
| 228 | bool is_read; |
| 229 | int count; |
| 230 | int len; |
| 231 | u8 *data; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 232 | |
Jean Delvare | 79e3e5b | 2012-10-28 21:37:01 +0100 | [diff] [blame] | 233 | #if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \ |
| 234 | defined CONFIG_DMI |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 235 | const struct i801_mux_config *mux_drvdata; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 236 | struct platform_device *mux_pdev; |
| 237 | #endif |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 238 | struct platform_device *tco_pdev; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 239 | }; |
| 240 | |
Jean Delvare | 369f6f4 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 241 | #define FEATURE_SMBUS_PEC (1 << 0) |
| 242 | #define FEATURE_BLOCK_BUFFER (1 << 1) |
| 243 | #define FEATURE_BLOCK_PROC (1 << 2) |
| 244 | #define FEATURE_I2C_BLOCK_READ (1 << 3) |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 245 | #define FEATURE_IRQ (1 << 4) |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 246 | /* Not really a feature, but it's convenient to handle it as such */ |
| 247 | #define FEATURE_IDF (1 << 15) |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 248 | #define FEATURE_TCO (1 << 16) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 250 | static const char *i801_feature_names[] = { |
| 251 | "SMBus PEC", |
| 252 | "Block buffer", |
| 253 | "Block process call", |
| 254 | "I2C block read", |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 255 | "Interrupt", |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 256 | }; |
| 257 | |
| 258 | static unsigned int disable_features; |
| 259 | module_param(disable_features, uint, S_IRUGO | S_IWUSR); |
Jean Delvare | 5322934 | 2013-05-15 02:44:10 +0000 | [diff] [blame] | 260 | MODULE_PARM_DESC(disable_features, "Disable selected driver features:\n" |
| 261 | "\t\t 0x01 disable SMBus PEC\n" |
| 262 | "\t\t 0x02 disable the block buffer\n" |
| 263 | "\t\t 0x08 disable the I2C block read functionality\n" |
| 264 | "\t\t 0x10 don't use interrupts "); |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 265 | |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 266 | /* Make sure the SMBus host is ready to start transmitting. |
| 267 | Return 0 if it is, -EBUSY if it is not. */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 268 | static int i801_check_pre(struct i801_priv *priv) |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 269 | { |
| 270 | int status; |
| 271 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 272 | status = inb_p(SMBHSTSTS(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 273 | if (status & SMBHSTSTS_HOST_BUSY) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 274 | dev_err(&priv->pci_dev->dev, "SMBus is busy, can't use it!\n"); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 275 | return -EBUSY; |
| 276 | } |
| 277 | |
| 278 | status &= STATUS_FLAGS; |
| 279 | if (status) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 280 | dev_dbg(&priv->pci_dev->dev, "Clearing status flags (%02x)\n", |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 281 | status); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 282 | outb_p(status, SMBHSTSTS(priv)); |
| 283 | status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS; |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 284 | if (status) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 285 | dev_err(&priv->pci_dev->dev, |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 286 | "Failed clearing status flags (%02x)\n", |
| 287 | status); |
| 288 | return -EBUSY; |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 295 | /* |
| 296 | * Convert the status register to an error code, and clear it. |
| 297 | * Note that status only contains the bits we want to clear, not the |
| 298 | * actual register value. |
| 299 | */ |
| 300 | static int i801_check_post(struct i801_priv *priv, int status) |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 301 | { |
| 302 | int result = 0; |
| 303 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 304 | /* |
| 305 | * If the SMBus is still busy, we give up |
| 306 | * Note: This timeout condition only happens when using polling |
| 307 | * transactions. For interrupt operation, NAK/timeout is indicated by |
| 308 | * DEV_ERR. |
| 309 | */ |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 310 | if (unlikely(status < 0)) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 311 | dev_err(&priv->pci_dev->dev, "Transaction timeout\n"); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 312 | /* try to stop the current command */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 313 | dev_dbg(&priv->pci_dev->dev, "Terminating the current operation\n"); |
| 314 | outb_p(inb_p(SMBHSTCNT(priv)) | SMBHSTCNT_KILL, |
| 315 | SMBHSTCNT(priv)); |
Jean Delvare | 84c1af4 | 2012-03-26 21:47:19 +0200 | [diff] [blame] | 316 | usleep_range(1000, 2000); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 317 | outb_p(inb_p(SMBHSTCNT(priv)) & (~SMBHSTCNT_KILL), |
| 318 | SMBHSTCNT(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 319 | |
| 320 | /* Check if it worked */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 321 | status = inb_p(SMBHSTSTS(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 322 | if ((status & SMBHSTSTS_HOST_BUSY) || |
| 323 | !(status & SMBHSTSTS_FAILED)) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 324 | dev_err(&priv->pci_dev->dev, |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 325 | "Failed terminating the transaction\n"); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 326 | outb_p(STATUS_FLAGS, SMBHSTSTS(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 327 | return -ETIMEDOUT; |
| 328 | } |
| 329 | |
| 330 | if (status & SMBHSTSTS_FAILED) { |
| 331 | result = -EIO; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 332 | dev_err(&priv->pci_dev->dev, "Transaction failed\n"); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 333 | } |
| 334 | if (status & SMBHSTSTS_DEV_ERR) { |
| 335 | result = -ENXIO; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 336 | dev_dbg(&priv->pci_dev->dev, "No response\n"); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 337 | } |
| 338 | if (status & SMBHSTSTS_BUS_ERR) { |
| 339 | result = -EAGAIN; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 340 | dev_dbg(&priv->pci_dev->dev, "Lost arbitration\n"); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 341 | } |
| 342 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 343 | /* Clear status flags except BYTE_DONE, to be cleared by caller */ |
| 344 | outb_p(status, SMBHSTSTS(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 345 | |
| 346 | return result; |
| 347 | } |
| 348 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 349 | /* Wait for BUSY being cleared and either INTR or an error flag being set */ |
| 350 | static int i801_wait_intr(struct i801_priv *priv) |
| 351 | { |
| 352 | int timeout = 0; |
| 353 | int status; |
| 354 | |
| 355 | /* We will always wait for a fraction of a second! */ |
| 356 | do { |
| 357 | usleep_range(250, 500); |
| 358 | status = inb_p(SMBHSTSTS(priv)); |
| 359 | } while (((status & SMBHSTSTS_HOST_BUSY) || |
| 360 | !(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR))) && |
| 361 | (timeout++ < MAX_RETRIES)); |
| 362 | |
| 363 | if (timeout > MAX_RETRIES) { |
| 364 | dev_dbg(&priv->pci_dev->dev, "INTR Timeout!\n"); |
| 365 | return -ETIMEDOUT; |
| 366 | } |
| 367 | return status & (STATUS_ERROR_FLAGS | SMBHSTSTS_INTR); |
| 368 | } |
| 369 | |
| 370 | /* Wait for either BYTE_DONE or an error flag being set */ |
| 371 | static int i801_wait_byte_done(struct i801_priv *priv) |
| 372 | { |
| 373 | int timeout = 0; |
| 374 | int status; |
| 375 | |
| 376 | /* We will always wait for a fraction of a second! */ |
| 377 | do { |
| 378 | usleep_range(250, 500); |
| 379 | status = inb_p(SMBHSTSTS(priv)); |
| 380 | } while (!(status & (STATUS_ERROR_FLAGS | SMBHSTSTS_BYTE_DONE)) && |
| 381 | (timeout++ < MAX_RETRIES)); |
| 382 | |
| 383 | if (timeout > MAX_RETRIES) { |
| 384 | dev_dbg(&priv->pci_dev->dev, "BYTE_DONE Timeout!\n"); |
| 385 | return -ETIMEDOUT; |
| 386 | } |
| 387 | return status & STATUS_ERROR_FLAGS; |
| 388 | } |
| 389 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 390 | static int i801_transaction(struct i801_priv *priv, int xact) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
Jean Delvare | 2b73809 | 2008-07-14 22:38:32 +0200 | [diff] [blame] | 392 | int status; |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 393 | int result; |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 394 | const struct i2c_adapter *adap = &priv->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 396 | result = i801_check_pre(priv); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 397 | if (result < 0) |
| 398 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 400 | if (priv->features & FEATURE_IRQ) { |
| 401 | outb_p(xact | SMBHSTCNT_INTREN | SMBHSTCNT_START, |
| 402 | SMBHSTCNT(priv)); |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 403 | result = wait_event_timeout(priv->waitq, |
| 404 | (status = priv->status), |
| 405 | adap->timeout); |
| 406 | if (!result) { |
| 407 | status = -ETIMEDOUT; |
| 408 | dev_warn(&priv->pci_dev->dev, |
| 409 | "Timeout waiting for interrupt!\n"); |
| 410 | } |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 411 | priv->status = 0; |
| 412 | return i801_check_post(priv, status); |
| 413 | } |
| 414 | |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 415 | /* the current contents of SMBHSTCNT can be overwritten, since PEC, |
Daniel Kurtz | 37af871 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 416 | * SMBSCMD are passed in xact */ |
Daniel Kurtz | edbeea6 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 417 | outb_p(xact | SMBHSTCNT_START, SMBHSTCNT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 419 | status = i801_wait_intr(priv); |
| 420 | return i801_check_post(priv, status); |
Oleg Ryjkov | ca8b9e3 | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 421 | } |
| 422 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 423 | static int i801_block_transaction_by_block(struct i801_priv *priv, |
| 424 | union i2c_smbus_data *data, |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 425 | char read_write, int hwpec) |
| 426 | { |
| 427 | int i, len; |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 428 | int status; |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 429 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 430 | inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */ |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 431 | |
| 432 | /* Use 32-byte buffer to process this transaction */ |
| 433 | if (read_write == I2C_SMBUS_WRITE) { |
| 434 | len = data->block[0]; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 435 | outb_p(len, SMBHSTDAT0(priv)); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 436 | for (i = 0; i < len; i++) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 437 | outb_p(data->block[i+1], SMBBLKDAT(priv)); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 438 | } |
| 439 | |
Daniel Kurtz | 37af871 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 440 | status = i801_transaction(priv, I801_BLOCK_DATA | |
Daniel Kurtz | edbeea6 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 441 | (hwpec ? SMBHSTCNT_PEC_EN : 0)); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 442 | if (status) |
| 443 | return status; |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 444 | |
| 445 | if (read_write == I2C_SMBUS_READ) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 446 | len = inb_p(SMBHSTDAT0(priv)); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 447 | if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 448 | return -EPROTO; |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 449 | |
| 450 | data->block[0] = len; |
| 451 | for (i = 0; i < len; i++) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 452 | data->block[i + 1] = inb_p(SMBBLKDAT(priv)); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 453 | } |
| 454 | return 0; |
| 455 | } |
| 456 | |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 457 | static void i801_isr_byte_done(struct i801_priv *priv) |
| 458 | { |
| 459 | if (priv->is_read) { |
| 460 | /* For SMBus block reads, length is received with first byte */ |
| 461 | if (((priv->cmd & 0x1c) == I801_BLOCK_DATA) && |
| 462 | (priv->count == 0)) { |
| 463 | priv->len = inb_p(SMBHSTDAT0(priv)); |
| 464 | if (priv->len < 1 || priv->len > I2C_SMBUS_BLOCK_MAX) { |
| 465 | dev_err(&priv->pci_dev->dev, |
| 466 | "Illegal SMBus block read size %d\n", |
| 467 | priv->len); |
| 468 | /* FIXME: Recover */ |
| 469 | priv->len = I2C_SMBUS_BLOCK_MAX; |
| 470 | } else { |
| 471 | dev_dbg(&priv->pci_dev->dev, |
| 472 | "SMBus block read size is %d\n", |
| 473 | priv->len); |
| 474 | } |
| 475 | priv->data[-1] = priv->len; |
| 476 | } |
| 477 | |
| 478 | /* Read next byte */ |
| 479 | if (priv->count < priv->len) |
| 480 | priv->data[priv->count++] = inb(SMBBLKDAT(priv)); |
| 481 | else |
| 482 | dev_dbg(&priv->pci_dev->dev, |
| 483 | "Discarding extra byte on block read\n"); |
| 484 | |
| 485 | /* Set LAST_BYTE for last byte of read transaction */ |
| 486 | if (priv->count == priv->len - 1) |
| 487 | outb_p(priv->cmd | SMBHSTCNT_LAST_BYTE, |
| 488 | SMBHSTCNT(priv)); |
| 489 | } else if (priv->count < priv->len - 1) { |
| 490 | /* Write next byte, except for IRQ after last byte */ |
| 491 | outb_p(priv->data[++priv->count], SMBBLKDAT(priv)); |
| 492 | } |
| 493 | |
| 494 | /* Clear BYTE_DONE to continue with next byte */ |
| 495 | outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv)); |
| 496 | } |
| 497 | |
Daniel Kurtz | efa3cb1 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 498 | /* |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 499 | * There are two kinds of interrupts: |
| 500 | * |
| 501 | * 1) i801 signals transaction completion with one of these interrupts: |
| 502 | * INTR - Success |
| 503 | * DEV_ERR - Invalid command, NAK or communication timeout |
| 504 | * BUS_ERR - SMI# transaction collision |
| 505 | * FAILED - transaction was canceled due to a KILL request |
| 506 | * When any of these occur, update ->status and wake up the waitq. |
| 507 | * ->status must be cleared before kicking off the next transaction. |
| 508 | * |
| 509 | * 2) For byte-by-byte (I2C read/write) transactions, one BYTE_DONE interrupt |
| 510 | * occurs for each byte of a byte-by-byte to prepare the next byte. |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 511 | */ |
| 512 | static irqreturn_t i801_isr(int irq, void *dev_id) |
| 513 | { |
| 514 | struct i801_priv *priv = dev_id; |
| 515 | u16 pcists; |
| 516 | u8 status; |
| 517 | |
| 518 | /* Confirm this is our interrupt */ |
| 519 | pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists); |
| 520 | if (!(pcists & SMBPCISTS_INTS)) |
| 521 | return IRQ_NONE; |
| 522 | |
| 523 | status = inb_p(SMBHSTSTS(priv)); |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 524 | if (status & SMBHSTSTS_BYTE_DONE) |
| 525 | i801_isr_byte_done(priv); |
| 526 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 527 | /* |
| 528 | * Clear irq sources and report transaction result. |
| 529 | * ->status must be cleared before the next transaction is started. |
| 530 | */ |
| 531 | status &= SMBHSTSTS_INTR | STATUS_ERROR_FLAGS; |
| 532 | if (status) { |
| 533 | outb_p(status, SMBHSTSTS(priv)); |
| 534 | priv->status |= status; |
| 535 | wake_up(&priv->waitq); |
| 536 | } |
| 537 | |
| 538 | return IRQ_HANDLED; |
| 539 | } |
| 540 | |
| 541 | /* |
Daniel Kurtz | efa3cb1 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 542 | * For "byte-by-byte" block transactions: |
| 543 | * I2C write uses cmd=I801_BLOCK_DATA, I2C_EN=1 |
| 544 | * I2C read uses cmd=I801_I2C_BLOCK_DATA |
| 545 | */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 546 | static int i801_block_transaction_byte_by_byte(struct i801_priv *priv, |
| 547 | union i2c_smbus_data *data, |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 548 | char read_write, int command, |
| 549 | int hwpec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | { |
| 551 | int i, len; |
| 552 | int smbcmd; |
Jean Delvare | 2b73809 | 2008-07-14 22:38:32 +0200 | [diff] [blame] | 553 | int status; |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 554 | int result; |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 555 | const struct i2c_adapter *adap = &priv->adapter; |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 556 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 557 | result = i801_check_pre(priv); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 558 | if (result < 0) |
| 559 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 561 | len = data->block[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
| 563 | if (read_write == I2C_SMBUS_WRITE) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 564 | outb_p(len, SMBHSTDAT0(priv)); |
| 565 | outb_p(data->block[1], SMBBLKDAT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Daniel Kurtz | efa3cb1 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 568 | if (command == I2C_SMBUS_I2C_BLOCK_DATA && |
| 569 | read_write == I2C_SMBUS_READ) |
| 570 | smbcmd = I801_I2C_BLOCK_DATA; |
| 571 | else |
| 572 | smbcmd = I801_BLOCK_DATA; |
| 573 | |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 574 | if (priv->features & FEATURE_IRQ) { |
| 575 | priv->is_read = (read_write == I2C_SMBUS_READ); |
| 576 | if (len == 1 && priv->is_read) |
| 577 | smbcmd |= SMBHSTCNT_LAST_BYTE; |
| 578 | priv->cmd = smbcmd | SMBHSTCNT_INTREN; |
| 579 | priv->len = len; |
| 580 | priv->count = 0; |
| 581 | priv->data = &data->block[1]; |
| 582 | |
| 583 | outb_p(priv->cmd | SMBHSTCNT_START, SMBHSTCNT(priv)); |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 584 | result = wait_event_timeout(priv->waitq, |
| 585 | (status = priv->status), |
| 586 | adap->timeout); |
| 587 | if (!result) { |
| 588 | status = -ETIMEDOUT; |
| 589 | dev_warn(&priv->pci_dev->dev, |
| 590 | "Timeout waiting for interrupt!\n"); |
| 591 | } |
Daniel Kurtz | d3ff6ce | 2012-07-24 14:13:59 +0200 | [diff] [blame] | 592 | priv->status = 0; |
| 593 | return i801_check_post(priv, status); |
| 594 | } |
| 595 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | for (i = 1; i <= len; i++) { |
Daniel Kurtz | efa3cb1 | 2012-07-24 14:13:57 +0200 | [diff] [blame] | 597 | if (i == len && read_write == I2C_SMBUS_READ) |
Daniel Kurtz | edbeea6 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 598 | smbcmd |= SMBHSTCNT_LAST_BYTE; |
Daniel Kurtz | 37af871 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 599 | outb_p(smbcmd, SMBHSTCNT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | if (i == 1) |
Daniel Kurtz | edbeea6 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 602 | outb_p(inb(SMBHSTCNT(priv)) | SMBHSTCNT_START, |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 603 | SMBHSTCNT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 605 | status = i801_wait_byte_done(priv); |
| 606 | if (status) |
| 607 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 609 | if (i == 1 && read_write == I2C_SMBUS_READ |
| 610 | && command != I2C_SMBUS_I2C_BLOCK_DATA) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 611 | len = inb_p(SMBHSTDAT0(priv)); |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 612 | if (len < 1 || len > I2C_SMBUS_BLOCK_MAX) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 613 | dev_err(&priv->pci_dev->dev, |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 614 | "Illegal SMBus block read size %d\n", |
| 615 | len); |
| 616 | /* Recover */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 617 | while (inb_p(SMBHSTSTS(priv)) & |
| 618 | SMBHSTSTS_HOST_BUSY) |
| 619 | outb_p(SMBHSTSTS_BYTE_DONE, |
| 620 | SMBHSTSTS(priv)); |
| 621 | outb_p(SMBHSTSTS_INTR, SMBHSTSTS(priv)); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 622 | return -EPROTO; |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 623 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | data->block[0] = len; |
| 625 | } |
| 626 | |
| 627 | /* Retrieve/store value in SMBBLKDAT */ |
| 628 | if (read_write == I2C_SMBUS_READ) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 629 | data->block[i] = inb_p(SMBBLKDAT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | if (read_write == I2C_SMBUS_WRITE && i+1 <= len) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 631 | outb_p(data->block[i+1], SMBBLKDAT(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 633 | /* signals SMBBLKDAT ready */ |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 634 | outb_p(SMBHSTSTS_BYTE_DONE, SMBHSTSTS(priv)); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 635 | } |
Jean Delvare | cf898dc | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 636 | |
Jean Delvare | 6cad93c | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 637 | status = i801_wait_intr(priv); |
| 638 | exit: |
| 639 | return i801_check_post(priv, status); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 640 | } |
| 641 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 642 | static int i801_set_block_buffer_mode(struct i801_priv *priv) |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 643 | { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 644 | outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv)); |
| 645 | if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0) |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 646 | return -EIO; |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | /* Block transaction function */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 651 | static int i801_block_transaction(struct i801_priv *priv, |
| 652 | union i2c_smbus_data *data, char read_write, |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 653 | int command, int hwpec) |
| 654 | { |
| 655 | int result = 0; |
| 656 | unsigned char hostc; |
| 657 | |
| 658 | if (command == I2C_SMBUS_I2C_BLOCK_DATA) { |
| 659 | if (read_write == I2C_SMBUS_WRITE) { |
| 660 | /* set I2C_EN bit in configuration register */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 661 | pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &hostc); |
| 662 | pci_write_config_byte(priv->pci_dev, SMBHSTCFG, |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 663 | hostc | SMBHSTCFG_I2C_EN); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 664 | } else if (!(priv->features & FEATURE_I2C_BLOCK_READ)) { |
| 665 | dev_err(&priv->pci_dev->dev, |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 666 | "I2C block read is unsupported!\n"); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 667 | return -EOPNOTSUPP; |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 668 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } |
| 670 | |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 671 | if (read_write == I2C_SMBUS_WRITE |
| 672 | || command == I2C_SMBUS_I2C_BLOCK_DATA) { |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 673 | if (data->block[0] < 1) |
| 674 | data->block[0] = 1; |
| 675 | if (data->block[0] > I2C_SMBUS_BLOCK_MAX) |
| 676 | data->block[0] = I2C_SMBUS_BLOCK_MAX; |
| 677 | } else { |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 678 | data->block[0] = 32; /* max for SMBus block reads */ |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 679 | } |
| 680 | |
Jean Delvare | c074c39 | 2010-03-13 20:56:53 +0100 | [diff] [blame] | 681 | /* Experience has shown that the block buffer can only be used for |
| 682 | SMBus (not I2C) block transactions, even though the datasheet |
| 683 | doesn't mention this limitation. */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 684 | if ((priv->features & FEATURE_BLOCK_BUFFER) |
Jean Delvare | c074c39 | 2010-03-13 20:56:53 +0100 | [diff] [blame] | 685 | && command != I2C_SMBUS_I2C_BLOCK_DATA |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 686 | && i801_set_block_buffer_mode(priv) == 0) |
| 687 | result = i801_block_transaction_by_block(priv, data, |
| 688 | read_write, hwpec); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 689 | else |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 690 | result = i801_block_transaction_byte_by_byte(priv, data, |
| 691 | read_write, |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 692 | command, hwpec); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 693 | |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 694 | if (command == I2C_SMBUS_I2C_BLOCK_DATA |
| 695 | && read_write == I2C_SMBUS_WRITE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | /* restore saved configuration register value */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 697 | pci_write_config_byte(priv->pci_dev, SMBHSTCFG, hostc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | } |
| 699 | return result; |
| 700 | } |
| 701 | |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 702 | /* Return negative errno on error. */ |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 703 | static s32 i801_access(struct i2c_adapter *adap, u16 addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | unsigned short flags, char read_write, u8 command, |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 705 | int size, union i2c_smbus_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | { |
Jean Delvare | e8aac4a | 2005-10-26 21:34:42 +0200 | [diff] [blame] | 707 | int hwpec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | int block = 0; |
| 709 | int ret, xact = 0; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 710 | struct i801_priv *priv = i2c_get_adapdata(adap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 712 | hwpec = (priv->features & FEATURE_SMBUS_PEC) && (flags & I2C_CLIENT_PEC) |
Jean Delvare | e8aac4a | 2005-10-26 21:34:42 +0200 | [diff] [blame] | 713 | && size != I2C_SMBUS_QUICK |
| 714 | && size != I2C_SMBUS_I2C_BLOCK_DATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
| 716 | switch (size) { |
| 717 | case I2C_SMBUS_QUICK: |
| 718 | outb_p(((addr & 0x7f) << 1) | (read_write & 0x01), |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 719 | SMBHSTADD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | xact = I801_QUICK; |
| 721 | break; |
| 722 | case I2C_SMBUS_BYTE: |
| 723 | outb_p(((addr & 0x7f) << 1) | (read_write & 0x01), |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 724 | SMBHSTADD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | if (read_write == I2C_SMBUS_WRITE) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 726 | outb_p(command, SMBHSTCMD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | xact = I801_BYTE; |
| 728 | break; |
| 729 | case I2C_SMBUS_BYTE_DATA: |
| 730 | outb_p(((addr & 0x7f) << 1) | (read_write & 0x01), |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 731 | SMBHSTADD(priv)); |
| 732 | outb_p(command, SMBHSTCMD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | if (read_write == I2C_SMBUS_WRITE) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 734 | outb_p(data->byte, SMBHSTDAT0(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | xact = I801_BYTE_DATA; |
| 736 | break; |
| 737 | case I2C_SMBUS_WORD_DATA: |
| 738 | outb_p(((addr & 0x7f) << 1) | (read_write & 0x01), |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 739 | SMBHSTADD(priv)); |
| 740 | outb_p(command, SMBHSTCMD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | if (read_write == I2C_SMBUS_WRITE) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 742 | outb_p(data->word & 0xff, SMBHSTDAT0(priv)); |
| 743 | outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | } |
| 745 | xact = I801_WORD_DATA; |
| 746 | break; |
| 747 | case I2C_SMBUS_BLOCK_DATA: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | outb_p(((addr & 0x7f) << 1) | (read_write & 0x01), |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 749 | SMBHSTADD(priv)); |
| 750 | outb_p(command, SMBHSTCMD(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | block = 1; |
| 752 | break; |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 753 | case I2C_SMBUS_I2C_BLOCK_DATA: |
| 754 | /* NB: page 240 of ICH5 datasheet shows that the R/#W |
| 755 | * bit should be cleared here, even when reading */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 756 | outb_p((addr & 0x7f) << 1, SMBHSTADD(priv)); |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 757 | if (read_write == I2C_SMBUS_READ) { |
| 758 | /* NB: page 240 of ICH5 datasheet also shows |
| 759 | * that DATA1 is the cmd field when reading */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 760 | outb_p(command, SMBHSTDAT1(priv)); |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 761 | } else |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 762 | outb_p(command, SMBHSTCMD(priv)); |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 763 | block = 1; |
| 764 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | default: |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 766 | dev_err(&priv->pci_dev->dev, "Unsupported transaction %d\n", |
| 767 | size); |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 768 | return -EOPNOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | } |
| 770 | |
Oleg Ryjkov | ca8b9e3 | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 771 | if (hwpec) /* enable/disable hardware PEC */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 772 | outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_CRC, SMBAUXCTL(priv)); |
Oleg Ryjkov | ca8b9e3 | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 773 | else |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 774 | outb_p(inb_p(SMBAUXCTL(priv)) & (~SMBAUXCTL_CRC), |
| 775 | SMBAUXCTL(priv)); |
Jean Delvare | e8aac4a | 2005-10-26 21:34:42 +0200 | [diff] [blame] | 776 | |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 777 | if (block) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 778 | ret = i801_block_transaction(priv, data, read_write, size, |
| 779 | hwpec); |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 780 | else |
Daniel Kurtz | 37af871 | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 781 | ret = i801_transaction(priv, xact); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
Jean Delvare | c79cfba | 2006-04-20 02:43:18 -0700 | [diff] [blame] | 783 | /* Some BIOSes don't like it when PEC is enabled at reboot or resume |
Oleg Ryjkov | 7edcb9a | 2007-07-12 14:12:31 +0200 | [diff] [blame] | 784 | time, so we forcibly disable it after every transaction. Turn off |
| 785 | E32B for the same reason. */ |
Jean Delvare | a0921b6 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 786 | if (hwpec || block) |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 787 | outb_p(inb_p(SMBAUXCTL(priv)) & |
| 788 | ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv)); |
Jean Delvare | c79cfba | 2006-04-20 02:43:18 -0700 | [diff] [blame] | 789 | |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 790 | if (block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | return ret; |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 792 | if (ret) |
David Brownell | 9714034 | 2008-07-14 22:38:25 +0200 | [diff] [blame] | 793 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | if ((read_write == I2C_SMBUS_WRITE) || (xact == I801_QUICK)) |
| 795 | return 0; |
| 796 | |
| 797 | switch (xact & 0x7f) { |
| 798 | case I801_BYTE: /* Result put in SMBHSTDAT0 */ |
| 799 | case I801_BYTE_DATA: |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 800 | data->byte = inb_p(SMBHSTDAT0(priv)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | break; |
| 802 | case I801_WORD_DATA: |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 803 | data->word = inb_p(SMBHSTDAT0(priv)) + |
| 804 | (inb_p(SMBHSTDAT1(priv)) << 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | break; |
| 806 | } |
| 807 | return 0; |
| 808 | } |
| 809 | |
| 810 | |
| 811 | static u32 i801_func(struct i2c_adapter *adapter) |
| 812 | { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 813 | struct i801_priv *priv = i2c_get_adapdata(adapter); |
| 814 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | |
Jean Delvare | 369f6f4 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 816 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | |
| 817 | I2C_FUNC_SMBUS_BLOCK_DATA | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 818 | ((priv->features & FEATURE_SMBUS_PEC) ? I2C_FUNC_SMBUS_PEC : 0) | |
| 819 | ((priv->features & FEATURE_I2C_BLOCK_READ) ? |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 820 | I2C_FUNC_SMBUS_READ_I2C_BLOCK : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | } |
| 822 | |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 823 | static const struct i2c_algorithm smbus_algorithm = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | .smbus_xfer = i801_access, |
| 825 | .functionality = i801_func, |
| 826 | }; |
| 827 | |
Jingoo Han | 392debf | 2013-12-03 08:11:20 +0900 | [diff] [blame] | 828 | static const struct pci_device_id i801_ids[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) }, |
| 830 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) }, |
| 831 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) }, |
| 832 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_3) }, |
| 833 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_3) }, |
| 834 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_3) }, |
| 835 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB_4) }, |
| 836 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_16) }, |
| 837 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_17) }, |
Jason Gaston | b0a70b5 | 2005-04-16 15:24:45 -0700 | [diff] [blame] | 838 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ESB2_17) }, |
Jason Gaston | 8254fc4 | 2006-01-09 10:58:08 -0800 | [diff] [blame] | 839 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH8_5) }, |
Jason Gaston | adbc2a1 | 2006-11-22 15:19:12 -0800 | [diff] [blame] | 840 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH9_6) }, |
Seth Heasley | cb04e95 | 2010-10-04 13:27:14 -0700 | [diff] [blame] | 841 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_EP80579_1) }, |
Gaston, Jason D | d28dc71 | 2008-02-24 20:03:42 +0100 | [diff] [blame] | 842 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_4) }, |
| 843 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH10_5) }, |
Seth Heasley | cb04e95 | 2010-10-04 13:27:14 -0700 | [diff] [blame] | 844 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS) }, |
| 845 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS) }, |
Seth Heasley | e30d985 | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 846 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS) }, |
David Woodhouse | 55fee8d | 2010-10-31 21:07:00 +0100 | [diff] [blame] | 847 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0) }, |
| 848 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1) }, |
| 849 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) }, |
Seth Heasley | 662cda8 | 2011-03-20 14:50:53 +0100 | [diff] [blame] | 850 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) }, |
Seth Heasley | 6e2a851 | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 851 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) }, |
Seth Heasley | 062737f | 2012-03-26 21:47:19 +0200 | [diff] [blame] | 852 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) }, |
James Ralston | 4a8f1dd | 2012-09-10 10:14:02 +0200 | [diff] [blame] | 853 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) }, |
Seth Heasley | c2db409c | 2013-01-30 15:25:32 +0000 | [diff] [blame] | 854 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMBUS) }, |
James Ralston | a3fc0ff | 2013-02-14 09:15:33 +0000 | [diff] [blame] | 855 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS) }, |
| 856 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0) }, |
| 857 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1) }, |
| 858 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2) }, |
Seth Heasley | f39901c | 2013-06-19 16:59:57 -0700 | [diff] [blame] | 859 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COLETOCREEK_SMBUS) }, |
Jean Delvare | b299de8 | 2014-07-17 15:04:41 +0200 | [diff] [blame] | 860 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_SMBUS) }, |
James Ralston | afc6592 | 2013-11-04 09:29:48 -0800 | [diff] [blame] | 861 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP_SMBUS) }, |
Chew, Kean ho | 1b31e9b | 2014-03-01 00:03:56 +0800 | [diff] [blame] | 862 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS) }, |
Alan Cox | 39e8e30 | 2014-08-19 17:37:28 +0300 | [diff] [blame] | 863 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS) }, |
james.d.ralston@intel.com | 3e27a84 | 2014-10-13 15:20:24 -0700 | [diff] [blame] | 864 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS) }, |
Devin Ryles | 3eee1799 | 2014-11-05 16:30:03 -0500 | [diff] [blame] | 865 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS) }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { 0, } |
| 867 | }; |
| 868 | |
Ivo Manca | 3fb21c6 | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 869 | MODULE_DEVICE_TABLE(pci, i801_ids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Jean Delvare | 8eacfce | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 871 | #if defined CONFIG_X86 && defined CONFIG_DMI |
Jean Delvare | 1561bfe | 2009-01-07 14:29:17 +0100 | [diff] [blame] | 872 | static unsigned char apanel_addr; |
| 873 | |
| 874 | /* Scan the system ROM for the signature "FJKEYINF" */ |
| 875 | static __init const void __iomem *bios_signature(const void __iomem *bios) |
| 876 | { |
| 877 | ssize_t offset; |
| 878 | const unsigned char signature[] = "FJKEYINF"; |
| 879 | |
| 880 | for (offset = 0; offset < 0x10000; offset += 0x10) { |
| 881 | if (check_signature(bios + offset, signature, |
| 882 | sizeof(signature)-1)) |
| 883 | return bios + offset; |
| 884 | } |
| 885 | return NULL; |
| 886 | } |
| 887 | |
| 888 | static void __init input_apanel_init(void) |
| 889 | { |
| 890 | void __iomem *bios; |
| 891 | const void __iomem *p; |
| 892 | |
| 893 | bios = ioremap(0xF0000, 0x10000); /* Can't fail */ |
| 894 | p = bios_signature(bios); |
| 895 | if (p) { |
| 896 | /* just use the first address */ |
| 897 | apanel_addr = readb(p + 8 + 3) >> 1; |
| 898 | } |
| 899 | iounmap(bios); |
| 900 | } |
Jean Delvare | 1561bfe | 2009-01-07 14:29:17 +0100 | [diff] [blame] | 901 | |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 902 | struct dmi_onboard_device_info { |
| 903 | const char *name; |
| 904 | u8 type; |
| 905 | unsigned short i2c_addr; |
| 906 | const char *i2c_type; |
| 907 | }; |
| 908 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 909 | static const struct dmi_onboard_device_info dmi_devices[] = { |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 910 | { "Syleus", DMI_DEV_TYPE_OTHER, 0x73, "fscsyl" }, |
| 911 | { "Hermes", DMI_DEV_TYPE_OTHER, 0x73, "fscher" }, |
| 912 | { "Hades", DMI_DEV_TYPE_OTHER, 0x73, "fschds" }, |
| 913 | }; |
| 914 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 915 | static void dmi_check_onboard_device(u8 type, const char *name, |
| 916 | struct i2c_adapter *adap) |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 917 | { |
| 918 | int i; |
| 919 | struct i2c_board_info info; |
| 920 | |
| 921 | for (i = 0; i < ARRAY_SIZE(dmi_devices); i++) { |
| 922 | /* & ~0x80, ignore enabled/disabled bit */ |
| 923 | if ((type & ~0x80) != dmi_devices[i].type) |
| 924 | continue; |
Jean Delvare | faabd47 | 2010-07-09 16:22:51 +0200 | [diff] [blame] | 925 | if (strcasecmp(name, dmi_devices[i].name)) |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 926 | continue; |
| 927 | |
| 928 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 929 | info.addr = dmi_devices[i].i2c_addr; |
| 930 | strlcpy(info.type, dmi_devices[i].i2c_type, I2C_NAME_SIZE); |
| 931 | i2c_new_device(adap, &info); |
| 932 | break; |
| 933 | } |
| 934 | } |
| 935 | |
| 936 | /* We use our own function to check for onboard devices instead of |
| 937 | dmi_find_device() as some buggy BIOS's have the devices we are interested |
| 938 | in marked as disabled */ |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 939 | static void dmi_check_onboard_devices(const struct dmi_header *dm, void *adap) |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 940 | { |
| 941 | int i, count; |
| 942 | |
| 943 | if (dm->type != 10) |
| 944 | return; |
| 945 | |
| 946 | count = (dm->length - sizeof(struct dmi_header)) / 2; |
| 947 | for (i = 0; i < count; i++) { |
| 948 | const u8 *d = (char *)(dm + 1) + (i * 2); |
| 949 | const char *name = ((char *) dm) + dm->length; |
| 950 | u8 type = d[0]; |
| 951 | u8 s = d[1]; |
| 952 | |
| 953 | if (!s) |
| 954 | continue; |
| 955 | s--; |
| 956 | while (s > 0 && name[0]) { |
| 957 | name += strlen(name) + 1; |
| 958 | s--; |
| 959 | } |
| 960 | if (name[0] == 0) /* Bogus string reference */ |
| 961 | continue; |
| 962 | |
| 963 | dmi_check_onboard_device(type, name, adap); |
| 964 | } |
| 965 | } |
Hans de Goede | fa5bfab | 2009-03-30 21:46:44 +0200 | [diff] [blame] | 966 | |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 967 | /* Register optional slaves */ |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 968 | static void i801_probe_optional_slaves(struct i801_priv *priv) |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 969 | { |
| 970 | /* Only register slaves on main SMBus channel */ |
| 971 | if (priv->features & FEATURE_IDF) |
| 972 | return; |
| 973 | |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 974 | if (apanel_addr) { |
| 975 | struct i2c_board_info info; |
| 976 | |
| 977 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 978 | info.addr = apanel_addr; |
| 979 | strlcpy(info.type, "fujitsu_apanel", I2C_NAME_SIZE); |
| 980 | i2c_new_device(&priv->adapter, &info); |
| 981 | } |
Jean Delvare | 8eacfce | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 982 | |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 983 | if (dmi_name_in_vendors("FUJITSU")) |
| 984 | dmi_walk(dmi_check_onboard_devices, &priv->adapter); |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 985 | } |
Jean Delvare | 8eacfce | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 986 | #else |
| 987 | static void __init input_apanel_init(void) {} |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 988 | static void i801_probe_optional_slaves(struct i801_priv *priv) {} |
Jean Delvare | 8eacfce | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 989 | #endif /* CONFIG_X86 && CONFIG_DMI */ |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 990 | |
Jean Delvare | 79e3e5b | 2012-10-28 21:37:01 +0100 | [diff] [blame] | 991 | #if (defined CONFIG_I2C_MUX_GPIO || defined CONFIG_I2C_MUX_GPIO_MODULE) && \ |
| 992 | defined CONFIG_DMI |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 993 | static struct i801_mux_config i801_mux_config_asus_z8_d12 = { |
| 994 | .gpio_chip = "gpio_ich", |
| 995 | .values = { 0x02, 0x03 }, |
| 996 | .n_values = 2, |
| 997 | .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD }, |
| 998 | .gpios = { 52, 53 }, |
| 999 | .n_gpios = 2, |
| 1000 | }; |
| 1001 | |
| 1002 | static struct i801_mux_config i801_mux_config_asus_z8_d18 = { |
| 1003 | .gpio_chip = "gpio_ich", |
| 1004 | .values = { 0x02, 0x03, 0x01 }, |
| 1005 | .n_values = 3, |
| 1006 | .classes = { I2C_CLASS_SPD, I2C_CLASS_SPD, I2C_CLASS_SPD }, |
| 1007 | .gpios = { 52, 53 }, |
| 1008 | .n_gpios = 2, |
| 1009 | }; |
| 1010 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1011 | static const struct dmi_system_id mux_dmi_table[] = { |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1012 | { |
| 1013 | .matches = { |
| 1014 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1015 | DMI_MATCH(DMI_BOARD_NAME, "Z8NA-D6(C)"), |
| 1016 | }, |
| 1017 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1018 | }, |
| 1019 | { |
| 1020 | .matches = { |
| 1021 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1022 | DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)E-D12(X)"), |
| 1023 | }, |
| 1024 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1025 | }, |
| 1026 | { |
| 1027 | .matches = { |
| 1028 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1029 | DMI_MATCH(DMI_BOARD_NAME, "Z8NH-D12"), |
| 1030 | }, |
| 1031 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1032 | }, |
| 1033 | { |
| 1034 | .matches = { |
| 1035 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1036 | DMI_MATCH(DMI_BOARD_NAME, "Z8PH-D12/IFB"), |
| 1037 | }, |
| 1038 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1039 | }, |
| 1040 | { |
| 1041 | .matches = { |
| 1042 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1043 | DMI_MATCH(DMI_BOARD_NAME, "Z8NR-D12"), |
| 1044 | }, |
| 1045 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1046 | }, |
| 1047 | { |
| 1048 | .matches = { |
| 1049 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1050 | DMI_MATCH(DMI_BOARD_NAME, "Z8P(N)H-D12"), |
| 1051 | }, |
| 1052 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1053 | }, |
| 1054 | { |
| 1055 | .matches = { |
| 1056 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1057 | DMI_MATCH(DMI_BOARD_NAME, "Z8PG-D18"), |
| 1058 | }, |
| 1059 | .driver_data = &i801_mux_config_asus_z8_d18, |
| 1060 | }, |
| 1061 | { |
| 1062 | .matches = { |
| 1063 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1064 | DMI_MATCH(DMI_BOARD_NAME, "Z8PE-D18"), |
| 1065 | }, |
| 1066 | .driver_data = &i801_mux_config_asus_z8_d18, |
| 1067 | }, |
| 1068 | { |
| 1069 | .matches = { |
| 1070 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 1071 | DMI_MATCH(DMI_BOARD_NAME, "Z8PS-D12"), |
| 1072 | }, |
| 1073 | .driver_data = &i801_mux_config_asus_z8_d12, |
| 1074 | }, |
| 1075 | { } |
| 1076 | }; |
| 1077 | |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1078 | /* Setup multiplexing if needed */ |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1079 | static int i801_add_mux(struct i801_priv *priv) |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1080 | { |
| 1081 | struct device *dev = &priv->adapter.dev; |
| 1082 | const struct i801_mux_config *mux_config; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1083 | struct i2c_mux_gpio_platform_data gpio_data; |
Jean Delvare | f82b862 | 2012-10-05 22:23:54 +0200 | [diff] [blame] | 1084 | int err; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1085 | |
| 1086 | if (!priv->mux_drvdata) |
| 1087 | return 0; |
| 1088 | mux_config = priv->mux_drvdata; |
| 1089 | |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1090 | /* Prepare the platform data */ |
| 1091 | memset(&gpio_data, 0, sizeof(struct i2c_mux_gpio_platform_data)); |
| 1092 | gpio_data.parent = priv->adapter.nr; |
| 1093 | gpio_data.values = mux_config->values; |
| 1094 | gpio_data.n_values = mux_config->n_values; |
| 1095 | gpio_data.classes = mux_config->classes; |
Jean Delvare | f82b862 | 2012-10-05 22:23:54 +0200 | [diff] [blame] | 1096 | gpio_data.gpio_chip = mux_config->gpio_chip; |
| 1097 | gpio_data.gpios = mux_config->gpios; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1098 | gpio_data.n_gpios = mux_config->n_gpios; |
| 1099 | gpio_data.idle = I2C_MUX_GPIO_NO_IDLE; |
| 1100 | |
| 1101 | /* Register the mux device */ |
| 1102 | priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio", |
Jean Delvare | f82b862 | 2012-10-05 22:23:54 +0200 | [diff] [blame] | 1103 | PLATFORM_DEVID_AUTO, &gpio_data, |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1104 | sizeof(struct i2c_mux_gpio_platform_data)); |
| 1105 | if (IS_ERR(priv->mux_pdev)) { |
| 1106 | err = PTR_ERR(priv->mux_pdev); |
| 1107 | priv->mux_pdev = NULL; |
| 1108 | dev_err(dev, "Failed to register i2c-mux-gpio device\n"); |
| 1109 | return err; |
| 1110 | } |
| 1111 | |
| 1112 | return 0; |
| 1113 | } |
| 1114 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1115 | static void i801_del_mux(struct i801_priv *priv) |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1116 | { |
| 1117 | if (priv->mux_pdev) |
| 1118 | platform_device_unregister(priv->mux_pdev); |
| 1119 | } |
| 1120 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1121 | static unsigned int i801_get_adapter_class(struct i801_priv *priv) |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1122 | { |
| 1123 | const struct dmi_system_id *id; |
| 1124 | const struct i801_mux_config *mux_config; |
| 1125 | unsigned int class = I2C_CLASS_HWMON | I2C_CLASS_SPD; |
| 1126 | int i; |
| 1127 | |
| 1128 | id = dmi_first_match(mux_dmi_table); |
| 1129 | if (id) { |
Jean Delvare | 28901f5 | 2012-10-28 21:37:01 +0100 | [diff] [blame] | 1130 | /* Remove branch classes from trunk */ |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1131 | mux_config = id->driver_data; |
| 1132 | for (i = 0; i < mux_config->n_values; i++) |
| 1133 | class &= ~mux_config->classes[i]; |
| 1134 | |
| 1135 | /* Remember for later */ |
| 1136 | priv->mux_drvdata = mux_config; |
| 1137 | } |
| 1138 | |
| 1139 | return class; |
| 1140 | } |
| 1141 | #else |
| 1142 | static inline int i801_add_mux(struct i801_priv *priv) { return 0; } |
| 1143 | static inline void i801_del_mux(struct i801_priv *priv) { } |
| 1144 | |
| 1145 | static inline unsigned int i801_get_adapter_class(struct i801_priv *priv) |
| 1146 | { |
| 1147 | return I2C_CLASS_HWMON | I2C_CLASS_SPD; |
| 1148 | } |
| 1149 | #endif |
| 1150 | |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 1151 | static const struct itco_wdt_platform_data tco_platform_data = { |
| 1152 | .name = "Intel PCH", |
| 1153 | .version = 4, |
| 1154 | }; |
| 1155 | |
| 1156 | static DEFINE_SPINLOCK(p2sb_spinlock); |
| 1157 | |
| 1158 | static void i801_add_tco(struct i801_priv *priv) |
| 1159 | { |
| 1160 | struct pci_dev *pci_dev = priv->pci_dev; |
| 1161 | struct resource tco_res[3], *res; |
| 1162 | struct platform_device *pdev; |
| 1163 | unsigned int devfn; |
| 1164 | u32 tco_base, tco_ctl; |
| 1165 | u32 base_addr, ctrl_val; |
| 1166 | u64 base64_addr; |
| 1167 | |
| 1168 | if (!(priv->features & FEATURE_TCO)) |
| 1169 | return; |
| 1170 | |
| 1171 | pci_read_config_dword(pci_dev, TCOBASE, &tco_base); |
| 1172 | pci_read_config_dword(pci_dev, TCOCTL, &tco_ctl); |
| 1173 | if (!(tco_ctl & TCOCTL_EN)) |
| 1174 | return; |
| 1175 | |
| 1176 | memset(tco_res, 0, sizeof(tco_res)); |
| 1177 | |
| 1178 | res = &tco_res[ICH_RES_IO_TCO]; |
| 1179 | res->start = tco_base & ~1; |
| 1180 | res->end = res->start + 32 - 1; |
| 1181 | res->flags = IORESOURCE_IO; |
| 1182 | |
| 1183 | /* |
| 1184 | * Power Management registers. |
| 1185 | */ |
| 1186 | devfn = PCI_DEVFN(PCI_SLOT(pci_dev->devfn), 2); |
| 1187 | pci_bus_read_config_dword(pci_dev->bus, devfn, ACPIBASE, &base_addr); |
| 1188 | |
| 1189 | res = &tco_res[ICH_RES_IO_SMI]; |
| 1190 | res->start = (base_addr & ~1) + ACPIBASE_SMI_OFF; |
| 1191 | res->end = res->start + 3; |
| 1192 | res->flags = IORESOURCE_IO; |
| 1193 | |
| 1194 | /* |
| 1195 | * Enable the ACPI I/O space. |
| 1196 | */ |
| 1197 | pci_bus_read_config_dword(pci_dev->bus, devfn, ACPICTRL, &ctrl_val); |
| 1198 | ctrl_val |= ACPICTRL_EN; |
| 1199 | pci_bus_write_config_dword(pci_dev->bus, devfn, ACPICTRL, ctrl_val); |
| 1200 | |
| 1201 | /* |
| 1202 | * We must access the NO_REBOOT bit over the Primary to Sideband |
| 1203 | * bridge (P2SB). The BIOS prevents the P2SB device from being |
| 1204 | * enumerated by the PCI subsystem, so we need to unhide/hide it |
| 1205 | * to lookup the P2SB BAR. |
| 1206 | */ |
| 1207 | spin_lock(&p2sb_spinlock); |
| 1208 | |
| 1209 | devfn = PCI_DEVFN(PCI_SLOT(pci_dev->devfn), 1); |
| 1210 | |
| 1211 | /* Unhide the P2SB device */ |
| 1212 | pci_bus_write_config_byte(pci_dev->bus, devfn, 0xe1, 0x0); |
| 1213 | |
| 1214 | pci_bus_read_config_dword(pci_dev->bus, devfn, SBREG_BAR, &base_addr); |
| 1215 | base64_addr = base_addr & 0xfffffff0; |
| 1216 | |
| 1217 | pci_bus_read_config_dword(pci_dev->bus, devfn, SBREG_BAR + 0x4, &base_addr); |
| 1218 | base64_addr |= (u64)base_addr << 32; |
| 1219 | |
| 1220 | /* Hide the P2SB device */ |
| 1221 | pci_bus_write_config_byte(pci_dev->bus, devfn, 0xe1, 0x1); |
| 1222 | spin_unlock(&p2sb_spinlock); |
| 1223 | |
| 1224 | res = &tco_res[ICH_RES_MEM_OFF]; |
| 1225 | res->start = (resource_size_t)base64_addr + SBREG_SMBCTRL; |
| 1226 | res->end = res->start + 3; |
| 1227 | res->flags = IORESOURCE_MEM; |
| 1228 | |
| 1229 | pdev = platform_device_register_resndata(&pci_dev->dev, "iTCO_wdt", -1, |
| 1230 | tco_res, 3, &tco_platform_data, |
| 1231 | sizeof(tco_platform_data)); |
| 1232 | if (IS_ERR(pdev)) { |
| 1233 | dev_warn(&pci_dev->dev, "failed to create iTCO device\n"); |
| 1234 | return; |
| 1235 | } |
| 1236 | |
| 1237 | priv->tco_pdev = pdev; |
| 1238 | } |
| 1239 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1240 | static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | { |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1242 | unsigned char temp; |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 1243 | int err, i; |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1244 | struct i801_priv *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | |
Jarkko Nikula | 1621c59 | 2015-02-13 15:52:23 +0200 | [diff] [blame] | 1246 | priv = devm_kzalloc(&dev->dev, sizeof(*priv), GFP_KERNEL); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1247 | if (!priv) |
| 1248 | return -ENOMEM; |
| 1249 | |
| 1250 | i2c_set_adapdata(&priv->adapter, priv); |
| 1251 | priv->adapter.owner = THIS_MODULE; |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1252 | priv->adapter.class = i801_get_adapter_class(priv); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1253 | priv->adapter.algo = &smbus_algorithm; |
| 1254 | |
| 1255 | priv->pci_dev = dev; |
Jean Delvare | 250d1bd | 2006-12-10 21:21:33 +0100 | [diff] [blame] | 1256 | switch (dev->device) { |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 1257 | case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_SMBUS: |
| 1258 | case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_SMBUS: |
| 1259 | priv->features |= FEATURE_I2C_BLOCK_READ; |
| 1260 | priv->features |= FEATURE_IRQ; |
| 1261 | priv->features |= FEATURE_SMBUS_PEC; |
| 1262 | priv->features |= FEATURE_BLOCK_BUFFER; |
| 1263 | priv->features |= FEATURE_TCO; |
| 1264 | break; |
| 1265 | |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 1266 | case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF0: |
| 1267 | case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF1: |
| 1268 | case PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2: |
James Ralston | a3fc0ff | 2013-02-14 09:15:33 +0000 | [diff] [blame] | 1269 | case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS0: |
| 1270 | case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS1: |
| 1271 | case PCI_DEVICE_ID_INTEL_WELLSBURG_SMBUS_MS2: |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 1272 | priv->features |= FEATURE_IDF; |
| 1273 | /* fall through */ |
Jean Delvare | e0e8398c | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 1274 | default: |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1275 | priv->features |= FEATURE_I2C_BLOCK_READ; |
Jean Delvare | 6676a84 | 2012-12-16 21:11:55 +0100 | [diff] [blame] | 1276 | priv->features |= FEATURE_IRQ; |
Jean Delvare | 6342064 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1277 | /* fall through */ |
| 1278 | case PCI_DEVICE_ID_INTEL_82801DB_3: |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1279 | priv->features |= FEATURE_SMBUS_PEC; |
| 1280 | priv->features |= FEATURE_BLOCK_BUFFER; |
Jean Delvare | e0e8398c | 2010-05-21 18:40:55 +0200 | [diff] [blame] | 1281 | /* fall through */ |
| 1282 | case PCI_DEVICE_ID_INTEL_82801CA_3: |
| 1283 | case PCI_DEVICE_ID_INTEL_82801BA_2: |
| 1284 | case PCI_DEVICE_ID_INTEL_82801AB_3: |
| 1285 | case PCI_DEVICE_ID_INTEL_82801AA_3: |
Jean Delvare | 250d1bd | 2006-12-10 21:21:33 +0100 | [diff] [blame] | 1286 | break; |
Jean Delvare | 250d1bd | 2006-12-10 21:21:33 +0100 | [diff] [blame] | 1287 | } |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1288 | |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 1289 | /* Disable features on user request */ |
| 1290 | for (i = 0; i < ARRAY_SIZE(i801_feature_names); i++) { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1291 | if (priv->features & disable_features & (1 << i)) |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 1292 | dev_notice(&dev->dev, "%s disabled by user\n", |
| 1293 | i801_feature_names[i]); |
| 1294 | } |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1295 | priv->features &= ~disable_features; |
Jean Delvare | adff687 | 2010-05-21 18:40:54 +0200 | [diff] [blame] | 1296 | |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1297 | err = pcim_enable_device(dev); |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1298 | if (err) { |
| 1299 | dev_err(&dev->dev, "Failed to enable SMBus PCI device (%d)\n", |
| 1300 | err); |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1301 | return err; |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1302 | } |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1303 | pcim_pin_device(dev); |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1304 | |
| 1305 | /* Determine the address of the SMBus area */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1306 | priv->smba = pci_resource_start(dev, SMBBAR); |
| 1307 | if (!priv->smba) { |
Jarkko Nikula | 9cbbf3d | 2015-02-13 15:52:21 +0200 | [diff] [blame] | 1308 | dev_err(&dev->dev, |
| 1309 | "SMBus base address uninitialized, upgrade BIOS\n"); |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1310 | return -ENODEV; |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1311 | } |
| 1312 | |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 1313 | err = acpi_check_resource_conflict(&dev->resource[SMBBAR]); |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 1314 | if (err) { |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1315 | return -ENODEV; |
Jean Delvare | 18669ea | 2009-10-04 22:53:45 +0200 | [diff] [blame] | 1316 | } |
Jean Delvare | 54fb4a05 | 2008-07-14 22:38:33 +0200 | [diff] [blame] | 1317 | |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1318 | err = pcim_iomap_regions(dev, 1 << SMBBAR, |
| 1319 | dev_driver_string(&dev->dev)); |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1320 | if (err) { |
Jarkko Nikula | 9cbbf3d | 2015-02-13 15:52:21 +0200 | [diff] [blame] | 1321 | dev_err(&dev->dev, |
| 1322 | "Failed to request SMBus region 0x%lx-0x%Lx\n", |
| 1323 | priv->smba, |
Andrew Morton | 598736c | 2006-06-30 01:56:20 -0700 | [diff] [blame] | 1324 | (unsigned long long)pci_resource_end(dev, SMBBAR)); |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1325 | return err; |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1326 | } |
| 1327 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1328 | pci_read_config_byte(priv->pci_dev, SMBHSTCFG, &temp); |
| 1329 | priv->original_hstcfg = temp; |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1330 | temp &= ~SMBHSTCFG_I2C_EN; /* SMBus timing */ |
| 1331 | if (!(temp & SMBHSTCFG_HST_EN)) { |
| 1332 | dev_info(&dev->dev, "Enabling SMBus device\n"); |
| 1333 | temp |= SMBHSTCFG_HST_EN; |
| 1334 | } |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1335 | pci_write_config_byte(priv->pci_dev, SMBHSTCFG, temp); |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1336 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1337 | if (temp & SMBHSTCFG_SMB_SMI_EN) { |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1338 | dev_dbg(&dev->dev, "SMBus using interrupt SMI#\n"); |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1339 | /* Disable SMBus interrupt feature if SMBus using SMI# */ |
| 1340 | priv->features &= ~FEATURE_IRQ; |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1342 | |
Jean Delvare | a0921b6 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1343 | /* Clear special mode bits */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1344 | if (priv->features & (FEATURE_SMBUS_PEC | FEATURE_BLOCK_BUFFER)) |
| 1345 | outb_p(inb_p(SMBAUXCTL(priv)) & |
| 1346 | ~(SMBAUXCTL_CRC | SMBAUXCTL_E32B), SMBAUXCTL(priv)); |
Jean Delvare | a0921b6 | 2008-01-27 18:14:50 +0100 | [diff] [blame] | 1347 | |
Jean Delvare | b3b8df9 | 2014-11-12 10:20:40 +0100 | [diff] [blame] | 1348 | /* Default timeout in interrupt mode: 200 ms */ |
| 1349 | priv->adapter.timeout = HZ / 5; |
| 1350 | |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1351 | if (priv->features & FEATURE_IRQ) { |
Jean Delvare | aeb8a3d | 2014-11-12 10:25:37 +0100 | [diff] [blame] | 1352 | u16 pcictl, pcists; |
| 1353 | |
| 1354 | /* Complain if an interrupt is already pending */ |
| 1355 | pci_read_config_word(priv->pci_dev, SMBPCISTS, &pcists); |
| 1356 | if (pcists & SMBPCISTS_INTS) |
| 1357 | dev_warn(&dev->dev, "An interrupt is pending!\n"); |
| 1358 | |
| 1359 | /* Check if interrupts have been disabled */ |
| 1360 | pci_read_config_word(priv->pci_dev, SMBPCICTL, &pcictl); |
| 1361 | if (pcictl & SMBPCICTL_INTDIS) { |
| 1362 | dev_info(&dev->dev, "Interrupts are disabled\n"); |
| 1363 | priv->features &= ~FEATURE_IRQ; |
| 1364 | } |
| 1365 | } |
| 1366 | |
| 1367 | if (priv->features & FEATURE_IRQ) { |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1368 | init_waitqueue_head(&priv->waitq); |
| 1369 | |
Jarkko Nikula | 1621c59 | 2015-02-13 15:52:23 +0200 | [diff] [blame] | 1370 | err = devm_request_irq(&dev->dev, dev->irq, i801_isr, |
| 1371 | IRQF_SHARED, |
| 1372 | dev_driver_string(&dev->dev), priv); |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1373 | if (err) { |
| 1374 | dev_err(&dev->dev, "Failed to allocate irq %d: %d\n", |
| 1375 | dev->irq, err); |
Jean Delvare | ae94471 | 2014-11-12 10:24:07 +0100 | [diff] [blame] | 1376 | priv->features &= ~FEATURE_IRQ; |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1377 | } |
| 1378 | } |
Jean Delvare | ae94471 | 2014-11-12 10:24:07 +0100 | [diff] [blame] | 1379 | dev_info(&dev->dev, "SMBus using %s\n", |
| 1380 | priv->features & FEATURE_IRQ ? "PCI interrupt" : "polling"); |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1381 | |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 1382 | i801_add_tco(priv); |
| 1383 | |
Robert P. J. Day | 405ae7d | 2007-02-17 19:13:42 +0100 | [diff] [blame] | 1384 | /* set up the sysfs linkage to our parent device */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1385 | priv->adapter.dev.parent = &dev->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | |
Jean Delvare | 7e2193a8f | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 1387 | /* Retry up to 3 times on lost arbitration */ |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1388 | priv->adapter.retries = 3; |
Jean Delvare | 7e2193a8f | 2009-12-06 17:06:27 +0100 | [diff] [blame] | 1389 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1390 | snprintf(priv->adapter.name, sizeof(priv->adapter.name), |
| 1391 | "SMBus I801 adapter at %04lx", priv->smba); |
| 1392 | err = i2c_add_adapter(&priv->adapter); |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1393 | if (err) { |
| 1394 | dev_err(&dev->dev, "Failed to add SMBus adapter\n"); |
Jarkko Nikula | fef220d | 2015-02-13 15:52:25 +0200 | [diff] [blame] | 1395 | return err; |
Jean Delvare | 02dd7ae | 2006-06-12 21:53:41 +0200 | [diff] [blame] | 1396 | } |
Jean Delvare | 1561bfe | 2009-01-07 14:29:17 +0100 | [diff] [blame] | 1397 | |
Jean Delvare | e7198fb | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 1398 | i801_probe_optional_slaves(priv); |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1399 | /* We ignore errors - multiplexing is optional */ |
| 1400 | i801_add_mux(priv); |
Jean Delvare | 1561bfe | 2009-01-07 14:29:17 +0100 | [diff] [blame] | 1401 | |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1402 | pci_set_drvdata(dev, priv); |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1403 | |
Daniel Ritz | d6fcb3b | 2006-06-27 18:40:54 +0200 | [diff] [blame] | 1404 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | } |
| 1406 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1407 | static void i801_remove(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1409 | struct i801_priv *priv = pci_get_drvdata(dev); |
| 1410 | |
Jean Delvare | 3ad7ea1 | 2012-10-05 22:23:53 +0200 | [diff] [blame] | 1411 | i801_del_mux(priv); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1412 | i2c_del_adapter(&priv->adapter); |
| 1413 | pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg); |
Daniel Kurtz | 636752b | 2012-07-24 14:13:58 +0200 | [diff] [blame] | 1414 | |
Mika Westerberg | 9424693 | 2015-08-06 13:46:25 +0100 | [diff] [blame] | 1415 | platform_device_unregister(priv->tco_pdev); |
| 1416 | |
Daniel Ritz | d6fcb3b | 2006-06-27 18:40:54 +0200 | [diff] [blame] | 1417 | /* |
| 1418 | * do not call pci_disable_device(dev) since it can cause hard hangs on |
| 1419 | * some systems during power-off (eg. Fujitsu-Siemens Lifebook E8010) |
| 1420 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | } |
| 1422 | |
Jean Delvare | a5aaea3 | 2007-03-22 19:49:01 +0100 | [diff] [blame] | 1423 | #ifdef CONFIG_PM |
| 1424 | static int i801_suspend(struct pci_dev *dev, pm_message_t mesg) |
| 1425 | { |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1426 | struct i801_priv *priv = pci_get_drvdata(dev); |
| 1427 | |
Jean Delvare | a5aaea3 | 2007-03-22 19:49:01 +0100 | [diff] [blame] | 1428 | pci_save_state(dev); |
David Woodhouse | 0cd96eb | 2010-10-31 21:06:59 +0100 | [diff] [blame] | 1429 | pci_write_config_byte(dev, SMBHSTCFG, priv->original_hstcfg); |
Jean Delvare | a5aaea3 | 2007-03-22 19:49:01 +0100 | [diff] [blame] | 1430 | pci_set_power_state(dev, pci_choose_state(dev, mesg)); |
| 1431 | return 0; |
| 1432 | } |
| 1433 | |
| 1434 | static int i801_resume(struct pci_dev *dev) |
| 1435 | { |
| 1436 | pci_set_power_state(dev, PCI_D0); |
| 1437 | pci_restore_state(dev); |
Jarkko Nikula | f85da3f | 2015-02-13 15:52:24 +0200 | [diff] [blame] | 1438 | return 0; |
Jean Delvare | a5aaea3 | 2007-03-22 19:49:01 +0100 | [diff] [blame] | 1439 | } |
| 1440 | #else |
| 1441 | #define i801_suspend NULL |
| 1442 | #define i801_resume NULL |
| 1443 | #endif |
| 1444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | static struct pci_driver i801_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | .name = "i801_smbus", |
| 1447 | .id_table = i801_ids, |
| 1448 | .probe = i801_probe, |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 1449 | .remove = i801_remove, |
Jean Delvare | a5aaea3 | 2007-03-22 19:49:01 +0100 | [diff] [blame] | 1450 | .suspend = i801_suspend, |
| 1451 | .resume = i801_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | }; |
| 1453 | |
| 1454 | static int __init i2c_i801_init(void) |
| 1455 | { |
Jean Delvare | 6aa1464 | 2011-05-24 20:58:49 +0200 | [diff] [blame] | 1456 | if (dmi_name_in_vendors("FUJITSU")) |
| 1457 | input_apanel_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | return pci_register_driver(&i801_driver); |
| 1459 | } |
| 1460 | |
| 1461 | static void __exit i2c_i801_exit(void) |
| 1462 | { |
| 1463 | pci_unregister_driver(&i801_driver); |
| 1464 | } |
| 1465 | |
Jean Delvare | 7c81c60 | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 1466 | MODULE_AUTHOR("Mark D. Studebaker <mdsxyz123@yahoo.com>, Jean Delvare <jdelvare@suse.de>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | MODULE_DESCRIPTION("I801 SMBus driver"); |
| 1468 | MODULE_LICENSE("GPL"); |
| 1469 | |
| 1470 | module_init(i2c_i801_init); |
| 1471 | module_exit(i2c_i801_exit); |