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