xref: /linux/drivers/i2c/busses/i2c-nforce2.c (revision 367b8112fe2ea5c39a7bb4d263dcdd9b612fae18)
1 /*
2     SMBus driver for nVidia nForce2 MCP
3 
4     Added nForce3 Pro 150  Thomas Leibold <thomas@plx.com>,
5 	Ported to 2.5 Patrick Dreker <patrick@dreker.de>,
6     Copyright (c) 2003  Hans-Frieder Vogt <hfvogt@arcor.de>,
7     Based on
8     SMBus 2.0 driver for AMD-8111 IO-Hub
9     Copyright (c) 2002 Vojtech Pavlik
10 
11     This program is free software; you can redistribute it and/or modify
12     it under the terms of the GNU General Public License as published by
13     the Free Software Foundation; either version 2 of the License, or
14     (at your option) any later version.
15 
16     This program is distributed in the hope that it will be useful,
17     but WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19     GNU General Public License for more details.
20 
21     You should have received a copy of the GNU General Public License
22     along with this program; if not, write to the Free Software
23     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25 
26 /*
27     SUPPORTED DEVICES		PCI ID
28     nForce2 MCP			0064
29     nForce2 Ultra 400 MCP	0084
30     nForce3 Pro150 MCP		00D4
31     nForce3 250Gb MCP		00E4
32     nForce4 MCP			0052
33     nForce4 MCP-04		0034
34     nForce4 MCP51		0264
35     nForce4 MCP55		0368
36     nForce MCP61		03EB
37     nForce MCP65		0446
38 
39     This driver supports the 2 SMBuses that are included in the MCP of the
40     nForce2/3/4/5xx chipsets.
41 */
42 
43 /* Note: we assume there can only be one nForce2, with two SMBus interfaces */
44 
45 #include <linux/module.h>
46 #include <linux/pci.h>
47 #include <linux/kernel.h>
48 #include <linux/stddef.h>
49 #include <linux/ioport.h>
50 #include <linux/init.h>
51 #include <linux/i2c.h>
52 #include <linux/delay.h>
53 #include <linux/dmi.h>
54 #include <linux/acpi.h>
55 #include <asm/io.h>
56 
57 MODULE_LICENSE("GPL");
58 MODULE_AUTHOR ("Hans-Frieder Vogt <hfvogt@gmx.net>");
59 MODULE_DESCRIPTION("nForce2/3/4/5xx SMBus driver");
60 
61 
62 struct nforce2_smbus {
63 	struct i2c_adapter adapter;
64 	int base;
65 	int size;
66 	int blockops;
67 	int can_abort;
68 };
69 
70 
71 /*
72  * nVidia nForce2 SMBus control register definitions
73  * (Newer incarnations use standard BARs 4 and 5 instead)
74  */
75 #define NFORCE_PCI_SMB1	0x50
76 #define NFORCE_PCI_SMB2	0x54
77 
78 
79 /*
80  * ACPI 2.0 chapter 13 SMBus 2.0 EC register model
81  */
82 #define NVIDIA_SMB_PRTCL	(smbus->base + 0x00)	/* protocol, PEC */
83 #define NVIDIA_SMB_STS		(smbus->base + 0x01)	/* status */
84 #define NVIDIA_SMB_ADDR		(smbus->base + 0x02)	/* address */
85 #define NVIDIA_SMB_CMD		(smbus->base + 0x03)	/* command */
86 #define NVIDIA_SMB_DATA		(smbus->base + 0x04)	/* 32 data registers */
87 #define NVIDIA_SMB_BCNT		(smbus->base + 0x24)	/* number of data
88 							   bytes */
89 #define NVIDIA_SMB_STATUS_ABRT	(smbus->base + 0x3c)	/* register used to
90 							   check the status of
91 							   the abort command */
92 #define NVIDIA_SMB_CTRL		(smbus->base + 0x3e)	/* control register */
93 
94 #define NVIDIA_SMB_STATUS_ABRT_STS	0x01		/* Bit to notify that
95 							   abort succeeded */
96 #define NVIDIA_SMB_CTRL_ABORT	0x20
97 #define NVIDIA_SMB_STS_DONE	0x80
98 #define NVIDIA_SMB_STS_ALRM	0x40
99 #define NVIDIA_SMB_STS_RES	0x20
100 #define NVIDIA_SMB_STS_STATUS	0x1f
101 
102 #define NVIDIA_SMB_PRTCL_WRITE			0x00
103 #define NVIDIA_SMB_PRTCL_READ			0x01
104 #define NVIDIA_SMB_PRTCL_QUICK			0x02
105 #define NVIDIA_SMB_PRTCL_BYTE			0x04
106 #define NVIDIA_SMB_PRTCL_BYTE_DATA		0x06
107 #define NVIDIA_SMB_PRTCL_WORD_DATA		0x08
108 #define NVIDIA_SMB_PRTCL_BLOCK_DATA		0x0a
109 #define NVIDIA_SMB_PRTCL_PEC			0x80
110 
111 /* Misc definitions */
112 #define MAX_TIMEOUT	100
113 
114 /* We disable the second SMBus channel on these boards */
115 static struct dmi_system_id __devinitdata nforce2_dmi_blacklist2[] = {
116 	{
117 		.ident = "DFI Lanparty NF4 Expert",
118 		.matches = {
119 			DMI_MATCH(DMI_BOARD_VENDOR, "DFI Corp,LTD"),
120 			DMI_MATCH(DMI_BOARD_NAME, "LP UT NF4 Expert"),
121 		},
122 	},
123 	{ }
124 };
125 
126 static struct pci_driver nforce2_driver;
127 
128 /* For multiplexing support, we need a global reference to the 1st
129    SMBus channel */
130 #if defined CONFIG_I2C_NFORCE2_S4985 || defined CONFIG_I2C_NFORCE2_S4985_MODULE
131 struct i2c_adapter *nforce2_smbus;
132 EXPORT_SYMBOL_GPL(nforce2_smbus);
133 
134 static void nforce2_set_reference(struct i2c_adapter *adap)
135 {
136 	nforce2_smbus = adap;
137 }
138 #else
139 static inline void nforce2_set_reference(struct i2c_adapter *adap) { }
140 #endif
141 
142 static void nforce2_abort(struct i2c_adapter *adap)
143 {
144 	struct nforce2_smbus *smbus = adap->algo_data;
145 	int timeout = 0;
146 	unsigned char temp;
147 
148 	dev_dbg(&adap->dev, "Aborting current transaction\n");
149 
150 	outb_p(NVIDIA_SMB_CTRL_ABORT, NVIDIA_SMB_CTRL);
151 	do {
152 		msleep(1);
153 		temp = inb_p(NVIDIA_SMB_STATUS_ABRT);
154 	} while (!(temp & NVIDIA_SMB_STATUS_ABRT_STS) &&
155 			(timeout++ < MAX_TIMEOUT));
156 	if (!(temp & NVIDIA_SMB_STATUS_ABRT_STS))
157 		dev_err(&adap->dev, "Can't reset the smbus\n");
158 	outb_p(NVIDIA_SMB_STATUS_ABRT_STS, NVIDIA_SMB_STATUS_ABRT);
159 }
160 
161 static int nforce2_check_status(struct i2c_adapter *adap)
162 {
163 	struct nforce2_smbus *smbus = adap->algo_data;
164 	int timeout = 0;
165 	unsigned char temp;
166 
167 	do {
168 		msleep(1);
169 		temp = inb_p(NVIDIA_SMB_STS);
170 	} while ((!temp) && (timeout++ < MAX_TIMEOUT));
171 
172 	if (timeout >= MAX_TIMEOUT) {
173 		dev_dbg(&adap->dev, "SMBus Timeout!\n");
174 		if (smbus->can_abort)
175 			nforce2_abort(adap);
176 		return -ETIMEDOUT;
177 	}
178 	if (!(temp & NVIDIA_SMB_STS_DONE) || (temp & NVIDIA_SMB_STS_STATUS)) {
179 		dev_dbg(&adap->dev, "Transaction failed (0x%02x)!\n", temp);
180 		return -EIO;
181 	}
182 	return 0;
183 }
184 
185 /* Return negative errno on error */
186 static s32 nforce2_access(struct i2c_adapter * adap, u16 addr,
187 		unsigned short flags, char read_write,
188 		u8 command, int size, union i2c_smbus_data * data)
189 {
190 	struct nforce2_smbus *smbus = adap->algo_data;
191 	unsigned char protocol, pec;
192 	u8 len;
193 	int i, status;
194 
195 	protocol = (read_write == I2C_SMBUS_READ) ? NVIDIA_SMB_PRTCL_READ :
196 		NVIDIA_SMB_PRTCL_WRITE;
197 	pec = (flags & I2C_CLIENT_PEC) ? NVIDIA_SMB_PRTCL_PEC : 0;
198 
199 	switch (size) {
200 
201 		case I2C_SMBUS_QUICK:
202 			protocol |= NVIDIA_SMB_PRTCL_QUICK;
203 			read_write = I2C_SMBUS_WRITE;
204 			break;
205 
206 		case I2C_SMBUS_BYTE:
207 			if (read_write == I2C_SMBUS_WRITE)
208 				outb_p(command, NVIDIA_SMB_CMD);
209 			protocol |= NVIDIA_SMB_PRTCL_BYTE;
210 			break;
211 
212 		case I2C_SMBUS_BYTE_DATA:
213 			outb_p(command, NVIDIA_SMB_CMD);
214 			if (read_write == I2C_SMBUS_WRITE)
215 				outb_p(data->byte, NVIDIA_SMB_DATA);
216 			protocol |= NVIDIA_SMB_PRTCL_BYTE_DATA;
217 			break;
218 
219 		case I2C_SMBUS_WORD_DATA:
220 			outb_p(command, NVIDIA_SMB_CMD);
221 			if (read_write == I2C_SMBUS_WRITE) {
222 				 outb_p(data->word, NVIDIA_SMB_DATA);
223 				 outb_p(data->word >> 8, NVIDIA_SMB_DATA+1);
224 			}
225 			protocol |= NVIDIA_SMB_PRTCL_WORD_DATA | pec;
226 			break;
227 
228 		case I2C_SMBUS_BLOCK_DATA:
229 			outb_p(command, NVIDIA_SMB_CMD);
230 			if (read_write == I2C_SMBUS_WRITE) {
231 				len = data->block[0];
232 				if ((len == 0) || (len > I2C_SMBUS_BLOCK_MAX)) {
233 					dev_err(&adap->dev,
234 						"Transaction failed "
235 						"(requested block size: %d)\n",
236 						len);
237 					return -EINVAL;
238 				}
239 				outb_p(len, NVIDIA_SMB_BCNT);
240 				for (i = 0; i < I2C_SMBUS_BLOCK_MAX; i++)
241 					outb_p(data->block[i + 1],
242 					       NVIDIA_SMB_DATA+i);
243 			}
244 			protocol |= NVIDIA_SMB_PRTCL_BLOCK_DATA | pec;
245 			break;
246 
247 		default:
248 			dev_err(&adap->dev, "Unsupported transaction %d\n", size);
249 			return -EOPNOTSUPP;
250 	}
251 
252 	outb_p((addr & 0x7f) << 1, NVIDIA_SMB_ADDR);
253 	outb_p(protocol, NVIDIA_SMB_PRTCL);
254 
255 	status = nforce2_check_status(adap);
256 	if (status)
257 		return status;
258 
259 	if (read_write == I2C_SMBUS_WRITE)
260 		return 0;
261 
262 	switch (size) {
263 
264 		case I2C_SMBUS_BYTE:
265 		case I2C_SMBUS_BYTE_DATA:
266 			data->byte = inb_p(NVIDIA_SMB_DATA);
267 			break;
268 
269 		case I2C_SMBUS_WORD_DATA:
270 			data->word = inb_p(NVIDIA_SMB_DATA) | (inb_p(NVIDIA_SMB_DATA+1) << 8);
271 			break;
272 
273 		case I2C_SMBUS_BLOCK_DATA:
274 			len = inb_p(NVIDIA_SMB_BCNT);
275 			if ((len <= 0) || (len > I2C_SMBUS_BLOCK_MAX)) {
276 				dev_err(&adap->dev, "Transaction failed "
277 					"(received block size: 0x%02x)\n",
278 					len);
279 				return -EPROTO;
280 			}
281 			for (i = 0; i < len; i++)
282 				data->block[i+1] = inb_p(NVIDIA_SMB_DATA + i);
283 			data->block[0] = len;
284 			break;
285 	}
286 
287 	return 0;
288 }
289 
290 
291 static u32 nforce2_func(struct i2c_adapter *adapter)
292 {
293 	/* other functionality might be possible, but is not tested */
294 	return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
295 	       I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
296 	       I2C_FUNC_SMBUS_PEC |
297 	       (((struct nforce2_smbus*)adapter->algo_data)->blockops ?
298 		I2C_FUNC_SMBUS_BLOCK_DATA : 0);
299 }
300 
301 static struct i2c_algorithm smbus_algorithm = {
302 	.smbus_xfer	= nforce2_access,
303 	.functionality	= nforce2_func,
304 };
305 
306 
307 static struct pci_device_id nforce2_ids[] = {
308 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2_SMBUS) },
309 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SMBUS) },
310 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3_SMBUS) },
311 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SMBUS) },
312 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE4_SMBUS) },
313 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SMBUS) },
314 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SMBUS) },
315 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SMBUS) },
316 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SMBUS) },
317 	{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP65_SMBUS) },
318 	{ 0 }
319 };
320 
321 MODULE_DEVICE_TABLE (pci, nforce2_ids);
322 
323 
324 static int __devinit nforce2_probe_smb (struct pci_dev *dev, int bar,
325 	int alt_reg, struct nforce2_smbus *smbus, const char *name)
326 {
327 	int error;
328 
329 	smbus->base = pci_resource_start(dev, bar);
330 	if (smbus->base) {
331 		smbus->size = pci_resource_len(dev, bar);
332 	} else {
333 		/* Older incarnations of the device used non-standard BARs */
334 		u16 iobase;
335 
336 		if (pci_read_config_word(dev, alt_reg, &iobase)
337 		    != PCIBIOS_SUCCESSFUL) {
338 			dev_err(&dev->dev, "Error reading PCI config for %s\n",
339 				name);
340 			return -EIO;
341 		}
342 
343 		smbus->base = iobase & PCI_BASE_ADDRESS_IO_MASK;
344 		smbus->size = 64;
345 	}
346 
347 	error = acpi_check_region(smbus->base, smbus->size,
348 				  nforce2_driver.name);
349 	if (error)
350 		return -1;
351 
352 	if (!request_region(smbus->base, smbus->size, nforce2_driver.name)) {
353 		dev_err(&smbus->adapter.dev, "Error requesting region %02x .. %02X for %s\n",
354 			smbus->base, smbus->base+smbus->size-1, name);
355 		return -EBUSY;
356 	}
357 	smbus->adapter.owner = THIS_MODULE;
358 	smbus->adapter.id = I2C_HW_SMBUS_NFORCE2;
359 	smbus->adapter.class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
360 	smbus->adapter.algo = &smbus_algorithm;
361 	smbus->adapter.algo_data = smbus;
362 	smbus->adapter.dev.parent = &dev->dev;
363 	snprintf(smbus->adapter.name, sizeof(smbus->adapter.name),
364 		"SMBus nForce2 adapter at %04x", smbus->base);
365 
366 	error = i2c_add_adapter(&smbus->adapter);
367 	if (error) {
368 		dev_err(&smbus->adapter.dev, "Failed to register adapter.\n");
369 		release_region(smbus->base, smbus->size);
370 		return error;
371 	}
372 	dev_info(&smbus->adapter.dev, "nForce2 SMBus adapter at %#x\n", smbus->base);
373 	return 0;
374 }
375 
376 
377 static int __devinit nforce2_probe(struct pci_dev *dev, const struct pci_device_id *id)
378 {
379 	struct nforce2_smbus *smbuses;
380 	int res1, res2;
381 
382 	/* we support 2 SMBus adapters */
383 	if (!(smbuses = kzalloc(2*sizeof(struct nforce2_smbus), GFP_KERNEL)))
384 		return -ENOMEM;
385 	pci_set_drvdata(dev, smbuses);
386 
387 	switch(dev->device) {
388 	case PCI_DEVICE_ID_NVIDIA_NFORCE2_SMBUS:
389 	case PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SMBUS:
390 	case PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SMBUS:
391 		smbuses[0].blockops = 1;
392 		smbuses[1].blockops = 1;
393 		smbuses[0].can_abort = 1;
394 		smbuses[1].can_abort = 1;
395 	}
396 
397 	/* SMBus adapter 1 */
398 	res1 = nforce2_probe_smb(dev, 4, NFORCE_PCI_SMB1, &smbuses[0], "SMB1");
399 	if (res1 < 0) {
400 		dev_err(&dev->dev, "Error probing SMB1.\n");
401 		smbuses[0].base = 0;	/* to have a check value */
402 	}
403 	/* SMBus adapter 2 */
404 	if (dmi_check_system(nforce2_dmi_blacklist2)) {
405 		dev_err(&dev->dev, "Disabling SMB2 for safety reasons.\n");
406 		res2 = -EPERM;
407 		smbuses[1].base = 0;
408 	} else {
409 		res2 = nforce2_probe_smb(dev, 5, NFORCE_PCI_SMB2, &smbuses[1],
410 					 "SMB2");
411 		if (res2 < 0) {
412 			dev_err(&dev->dev, "Error probing SMB2.\n");
413 			smbuses[1].base = 0;	/* to have a check value */
414 		}
415 	}
416 	if ((res1 < 0) && (res2 < 0)) {
417 		/* we did not find even one of the SMBuses, so we give up */
418 		kfree(smbuses);
419 		return -ENODEV;
420 	}
421 
422 	nforce2_set_reference(&smbuses[0].adapter);
423 	return 0;
424 }
425 
426 
427 static void __devexit nforce2_remove(struct pci_dev *dev)
428 {
429 	struct nforce2_smbus *smbuses = (void*) pci_get_drvdata(dev);
430 
431 	nforce2_set_reference(NULL);
432 	if (smbuses[0].base) {
433 		i2c_del_adapter(&smbuses[0].adapter);
434 		release_region(smbuses[0].base, smbuses[0].size);
435 	}
436 	if (smbuses[1].base) {
437 		i2c_del_adapter(&smbuses[1].adapter);
438 		release_region(smbuses[1].base, smbuses[1].size);
439 	}
440 	kfree(smbuses);
441 }
442 
443 static struct pci_driver nforce2_driver = {
444 	.name		= "nForce2_smbus",
445 	.id_table	= nforce2_ids,
446 	.probe		= nforce2_probe,
447 	.remove		= __devexit_p(nforce2_remove),
448 };
449 
450 static int __init nforce2_init(void)
451 {
452 	return pci_register_driver(&nforce2_driver);
453 }
454 
455 static void __exit nforce2_exit(void)
456 {
457 	pci_unregister_driver(&nforce2_driver);
458 }
459 
460 module_init(nforce2_init);
461 module_exit(nforce2_exit);
462 
463