Blame view

drivers/i2c/busses/i2c-piix4.c 15.6 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
      Copyright (c) 1998 - 2002 Frodo Looijaard <frodol@dds.nl> and
      Philip Edelbrock <phil@netroedge.com>
  
      This program is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation; either version 2 of the License, or
      (at your option) any later version.
  
      This program is distributed in the hope that it will be useful,
      but WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      GNU General Public License for more details.
  
      You should have received a copy of the GNU General Public License
      along with this program; if not, write to the Free Software
      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
  
  /*
     Supports:
  	Intel PIIX4, 440MX
506a8b6c2   Flavio Leitner   i2c-piix4: Add su...
23
  	Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100
60693e5a9   Shane Huang   i2c-piix4: Fix SB...
24
  	ATI IXP200, IXP300, IXP400, SB600, SB700, SB800
3806e94b0   Crane Cai   i2c-piix4: Modify...
25
  	AMD Hudson-2
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
  	SMSC Victory66
  
     Note: we assume there can only be one device, with one SMBus interface.
  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
31
32
33
34
35
  #include <linux/module.h>
  #include <linux/moduleparam.h>
  #include <linux/pci.h>
  #include <linux/kernel.h>
  #include <linux/delay.h>
  #include <linux/stddef.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
  #include <linux/ioport.h>
  #include <linux/i2c.h>
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
  #include <linux/dmi.h>
54fb4a05a   Jean Delvare   i2c: Check for AC...
40
  #include <linux/acpi.h>
217821802   H Hartley Sweeten   i2c: Use <linux/i...
41
  #include <linux/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  /* PIIX4 SMBus address offsets */
  #define SMBHSTSTS	(0 + piix4_smba)
  #define SMBHSLVSTS	(1 + piix4_smba)
  #define SMBHSTCNT	(2 + piix4_smba)
  #define SMBHSTCMD	(3 + piix4_smba)
  #define SMBHSTADD	(4 + piix4_smba)
  #define SMBHSTDAT0	(5 + piix4_smba)
  #define SMBHSTDAT1	(6 + piix4_smba)
  #define SMBBLKDAT	(7 + piix4_smba)
  #define SMBSLVCNT	(8 + piix4_smba)
  #define SMBSHDWCMD	(9 + piix4_smba)
  #define SMBSLVEVT	(0xA + piix4_smba)
  #define SMBSLVDAT	(0xC + piix4_smba)
  
  /* count for request_region */
  #define SMBIOSIZE	8
  
  /* PCI Address Constants */
  #define SMBBA		0x090
  #define SMBHSTCFG	0x0D2
  #define SMBSLVC		0x0D3
  #define SMBSHDW1	0x0D4
  #define SMBSHDW2	0x0D5
  #define SMBREV		0x0D6
  
  /* Other settings */
  #define MAX_TIMEOUT	500
  #define  ENABLE_INT9	0
  
  /* PIIX4 constants */
  #define PIIX4_QUICK		0x00
  #define PIIX4_BYTE		0x04
  #define PIIX4_BYTE_DATA		0x08
  #define PIIX4_WORD_DATA		0x0C
  #define PIIX4_BLOCK_DATA	0x14
  
  /* insmod parameters */
  
  /* If force is set to anything different from 0, we forcibly enable the
     PIIX4. DANGEROUS! */
605070952   Jean Delvare   [PATCH] i2c: Disc...
83
  static int force;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
84
85
86
87
88
  module_param (force, int, 0);
  MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!");
  
  /* If force_addr is set to anything different from 0, we forcibly enable
     the PIIX4 at the given address. VERY DANGEROUS! */
605070952   Jean Delvare   [PATCH] i2c: Disc...
89
  static int force_addr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
91
92
93
  module_param (force_addr, int, 0);
  MODULE_PARM_DESC(force_addr,
  		 "Forcibly enable the PIIX4 at the given address. "
  		 "EXTREMELY DANGEROUS!");
605070952   Jean Delvare   [PATCH] i2c: Disc...
94
  static unsigned short piix4_smba;
b1c1759cd   David Milburn   i2c-piix4: Increa...
95
  static int srvrworks_csb5_delay;
d6072f842   Jean Delvare   [PATCH] i2c: Reus...
96
  static struct pci_driver piix4_driver;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
  static struct i2c_adapter piix4_adapter;
c2fc54fcd   Jean Delvare   i2c-piix4: Blackl...
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  static struct dmi_system_id __devinitdata piix4_dmi_blacklist[] = {
  	{
  		.ident = "Sapphire AM2RD790",
  		.matches = {
  			DMI_MATCH(DMI_BOARD_VENDOR, "SAPPHIRE Inc."),
  			DMI_MATCH(DMI_BOARD_NAME, "PC-AM2RD790"),
  		},
  	},
  	{
  		.ident = "DFI Lanparty UT 790FX",
  		.matches = {
  			DMI_MATCH(DMI_BOARD_VENDOR, "DFI Inc."),
  			DMI_MATCH(DMI_BOARD_NAME, "LP UT 790FX"),
  		},
  	},
  	{ }
  };
  
  /* The IBM entry is in a separate table because we only check it
     on Intel-based systems */
  static struct dmi_system_id __devinitdata piix4_dmi_ibm[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
120
121
122
123
124
125
126
127
128
129
  	{
  		.ident = "IBM",
  		.matches = { DMI_MATCH(DMI_SYS_VENDOR, "IBM"), },
  	},
  	{ },
  };
  
  static int __devinit piix4_setup(struct pci_dev *PIIX4_dev,
  				const struct pci_device_id *id)
  {
  	unsigned char temp;
b1c1759cd   David Milburn   i2c-piix4: Increa...
130
131
132
  	if ((PIIX4_dev->vendor == PCI_VENDOR_ID_SERVERWORKS) &&
  	    (PIIX4_dev->device == PCI_DEVICE_ID_SERVERWORKS_CSB5))
  		srvrworks_csb5_delay = 1;
c2fc54fcd   Jean Delvare   i2c-piix4: Blackl...
133
134
135
136
137
138
139
140
  	/* On some motherboards, it was reported that accessing the SMBus
  	   caused severe hardware problems */
  	if (dmi_check_system(piix4_dmi_blacklist)) {
  		dev_err(&PIIX4_dev->dev,
  			"Accessing the SMBus on this system is unsafe!
  ");
  		return -EPERM;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
  	/* Don't access SMBus on IBM systems which get corrupted eeproms */
c2fc54fcd   Jean Delvare   i2c-piix4: Blackl...
142
  	if (dmi_check_system(piix4_dmi_ibm) &&
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143
  			PIIX4_dev->vendor == PCI_VENDOR_ID_INTEL) {
f9ba6c04e   Jean Delvare   [PATCH] I2C: i2c-...
144
  		dev_err(&PIIX4_dev->dev, "IBM system detected; this module "
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  			"may corrupt your serial eeprom! Refusing to load "
  			"module!
  ");
  		return -EPERM;
  	}
  
  	/* Determine the address of the SMBus areas */
  	if (force_addr) {
  		piix4_smba = force_addr & 0xfff0;
  		force = 0;
  	} else {
  		pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba);
  		piix4_smba &= 0xfff0;
  		if(piix4_smba == 0) {
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
159
  			dev_err(&PIIX4_dev->dev, "SMBus base address "
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
160
161
162
163
164
165
  				"uninitialized - upgrade BIOS or use "
  				"force_addr=0xaddr
  ");
  			return -ENODEV;
  		}
  	}
54fb4a05a   Jean Delvare   i2c: Check for AC...
166
  	if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
18669eabd   Jean Delvare   i2c: Hide probe e...
167
  		return -ENODEV;
54fb4a05a   Jean Delvare   i2c: Check for AC...
168

d6072f842   Jean Delvare   [PATCH] i2c: Reus...
169
  	if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
170
171
  		dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
172
  			piix4_smba);
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
173
  		return -EBUSY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
174
175
176
  	}
  
  	pci_read_config_byte(PIIX4_dev, SMBHSTCFG, &temp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
  	/* If force_addr is set, we program the new address here. Just to make
  	   sure, we disable the PIIX4 first. */
  	if (force_addr) {
  		pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp & 0xfe);
  		pci_write_config_word(PIIX4_dev, SMBBA, piix4_smba);
  		pci_write_config_byte(PIIX4_dev, SMBHSTCFG, temp | 0x01);
  		dev_info(&PIIX4_dev->dev, "WARNING: SMBus interface set to "
  			"new address %04x!
  ", piix4_smba);
  	} else if ((temp & 1) == 0) {
  		if (force) {
  			/* This should never need to be done, but has been
  			 * noted that many Dell machines have the SMBus
  			 * interface on the PIIX4 disabled!? NOTE: This assumes
  			 * I/O space and other allocations WERE done by the
  			 * Bios!  Don't complain if your hardware does weird
  			 * things after enabling this. :') Check for Bios
  			 * updates before resorting to this.
  			 */
  			pci_write_config_byte(PIIX4_dev, SMBHSTCFG,
  					      temp | 1);
  			dev_printk(KERN_NOTICE, &PIIX4_dev->dev,
  				"WARNING: SMBus interface has been "
  				"FORCEFULLY ENABLED!
  ");
  		} else {
  			dev_err(&PIIX4_dev->dev,
  				"Host SMBus controller not enabled!
  ");
  			release_region(piix4_smba, SMBIOSIZE);
  			piix4_smba = 0;
  			return -ENODEV;
  		}
  	}
54aaa1ca1   Rudolf Marek   [PATCH] I2C: i2c-...
211
  	if (((temp & 0x0E) == 8) || ((temp & 0x0E) == 2))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
213
214
215
216
217
218
219
220
221
222
  		dev_dbg(&PIIX4_dev->dev, "Using Interrupt 9 for SMBus.
  ");
  	else if ((temp & 0x0E) == 0)
  		dev_dbg(&PIIX4_dev->dev, "Using Interrupt SMI# for SMBus.
  ");
  	else
  		dev_err(&PIIX4_dev->dev, "Illegal Interrupt configuration "
  			"(or code out of date)!
  ");
  
  	pci_read_config_byte(PIIX4_dev, SMBREV, &temp);
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
223
224
225
226
  	dev_info(&PIIX4_dev->dev,
  		 "SMBus Host Controller at 0x%x, revision %d
  ",
  		 piix4_smba, temp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
228
229
  
  	return 0;
  }
87e1960e9   Shane Huang   i2c-piix4: Add su...
230
231
232
233
234
  static int __devinit piix4_setup_sb800(struct pci_dev *PIIX4_dev,
  				const struct pci_device_id *id)
  {
  	unsigned short smba_idx = 0xcd6;
  	u8 smba_en_lo, smba_en_hi, i2ccfg, i2ccfg_offset = 0x10, smb_en = 0x2c;
3806e94b0   Crane Cai   i2c-piix4: Modify...
235
  	/* SB800 and later SMBus does not support forcing address */
87e1960e9   Shane Huang   i2c-piix4: Add su...
236
  	if (force || force_addr) {
3806e94b0   Crane Cai   i2c-piix4: Modify...
237
  		dev_err(&PIIX4_dev->dev, "SMBus does not support "
87e1960e9   Shane Huang   i2c-piix4: Add su...
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  			"forcing address!
  ");
  		return -EINVAL;
  	}
  
  	/* Determine the address of the SMBus areas */
  	if (!request_region(smba_idx, 2, "smba_idx")) {
  		dev_err(&PIIX4_dev->dev, "SMBus base address index region "
  			"0x%x already in use!
  ", smba_idx);
  		return -EBUSY;
  	}
  	outb_p(smb_en, smba_idx);
  	smba_en_lo = inb_p(smba_idx + 1);
  	outb_p(smb_en + 1, smba_idx);
  	smba_en_hi = inb_p(smba_idx + 1);
  	release_region(smba_idx, 2);
  
  	if ((smba_en_lo & 1) == 0) {
  		dev_err(&PIIX4_dev->dev,
  			"Host SMBus controller not enabled!
  ");
  		return -ENODEV;
  	}
  
  	piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0;
  	if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
18669eabd   Jean Delvare   i2c: Hide probe e...
265
  		return -ENODEV;
87e1960e9   Shane Huang   i2c-piix4: Add su...
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
  
  	if (!request_region(piix4_smba, SMBIOSIZE, piix4_driver.name)) {
  		dev_err(&PIIX4_dev->dev, "SMBus region 0x%x already in use!
  ",
  			piix4_smba);
  		return -EBUSY;
  	}
  
  	/* Request the SMBus I2C bus config region */
  	if (!request_region(piix4_smba + i2ccfg_offset, 1, "i2ccfg")) {
  		dev_err(&PIIX4_dev->dev, "SMBus I2C bus config region "
  			"0x%x already in use!
  ", piix4_smba + i2ccfg_offset);
  		release_region(piix4_smba, SMBIOSIZE);
  		piix4_smba = 0;
  		return -EBUSY;
  	}
  	i2ccfg = inb_p(piix4_smba + i2ccfg_offset);
  	release_region(piix4_smba + i2ccfg_offset, 1);
  
  	if (i2ccfg & 1)
  		dev_dbg(&PIIX4_dev->dev, "Using IRQ for SMBus.
  ");
  	else
  		dev_dbg(&PIIX4_dev->dev, "Using SMI# for SMBus.
  ");
  
  	dev_info(&PIIX4_dev->dev,
  		 "SMBus Host Controller at 0x%x, revision %d
  ",
  		 piix4_smba, i2ccfg >> 4);
  
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
  static int piix4_transaction(void)
  {
  	int temp;
  	int result = 0;
  	int timeout = 0;
  
  	dev_dbg(&piix4_adapter.dev, "Transaction (pre): CNT=%02x, CMD=%02x, "
  		"ADD=%02x, DAT0=%02x, DAT1=%02x
  ", inb_p(SMBHSTCNT),
  		inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
  		inb_p(SMBHSTDAT1));
  
  	/* Make sure the SMBus host is ready to start transmitting */
  	if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
  		dev_dbg(&piix4_adapter.dev, "SMBus busy (%02x). "
541e6a027   Jean Delvare   [PATCH] I2C: Stri...
315
316
  			"Resetting...
  ", temp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
317
318
319
320
  		outb_p(temp, SMBHSTSTS);
  		if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
  			dev_err(&piix4_adapter.dev, "Failed! (%02x)
  ", temp);
97140342e   David Brownell   i2c: Bus drivers ...
321
  			return -EBUSY;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
322
  		} else {
c5d21b7fb   Jean Delvare   i2c: Spelling fix...
323
324
  			dev_dbg(&piix4_adapter.dev, "Successful!
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
325
326
327
328
329
330
331
  		}
  	}
  
  	/* start the transaction by setting bit 6 */
  	outb_p(inb(SMBHSTCNT) | 0x040, SMBHSTCNT);
  
  	/* We will always wait for a fraction of a second! (See PIIX4 docs errata) */
b1c1759cd   David Milburn   i2c-piix4: Increa...
332
333
334
335
  	if (srvrworks_csb5_delay) /* Extra delay for SERVERWORKS_CSB5 */
  		msleep(2);
  	else
  		msleep(1);
b6a319507   Roel Kluin   i2c: Test off by ...
336
  	while ((++timeout < MAX_TIMEOUT) &&
b1c1759cd   David Milburn   i2c-piix4: Increa...
337
  	       ((temp = inb_p(SMBHSTSTS)) & 0x01))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
338
  		msleep(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
339
340
  
  	/* If the SMBus is still busy, we give up */
b6a319507   Roel Kluin   i2c: Test off by ...
341
  	if (timeout == MAX_TIMEOUT) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
342
343
  		dev_err(&piix4_adapter.dev, "SMBus Timeout!
  ");
97140342e   David Brownell   i2c: Bus drivers ...
344
  		result = -ETIMEDOUT;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
346
347
  	}
  
  	if (temp & 0x10) {
97140342e   David Brownell   i2c: Bus drivers ...
348
  		result = -EIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
349
350
351
352
353
  		dev_err(&piix4_adapter.dev, "Error: Failed bus transaction
  ");
  	}
  
  	if (temp & 0x08) {
97140342e   David Brownell   i2c: Bus drivers ...
354
  		result = -EIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
355
356
357
358
359
360
361
  		dev_dbg(&piix4_adapter.dev, "Bus collision! SMBus may be "
  			"locked until next hard reset. (sorry!)
  ");
  		/* Clock stops and slave is stuck in mid-transmission */
  	}
  
  	if (temp & 0x04) {
97140342e   David Brownell   i2c: Bus drivers ...
362
  		result = -ENXIO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
  		dev_dbg(&piix4_adapter.dev, "Error: no response!
  ");
  	}
  
  	if (inb_p(SMBHSTSTS) != 0x00)
  		outb_p(inb(SMBHSTSTS), SMBHSTSTS);
  
  	if ((temp = inb_p(SMBHSTSTS)) != 0x00) {
  		dev_err(&piix4_adapter.dev, "Failed reset at end of "
  			"transaction (%02x)
  ", temp);
  	}
  	dev_dbg(&piix4_adapter.dev, "Transaction (post): CNT=%02x, CMD=%02x, "
  		"ADD=%02x, DAT0=%02x, DAT1=%02x
  ", inb_p(SMBHSTCNT),
  		inb_p(SMBHSTCMD), inb_p(SMBHSTADD), inb_p(SMBHSTDAT0),
  		inb_p(SMBHSTDAT1));
  	return result;
  }
97140342e   David Brownell   i2c: Bus drivers ...
382
  /* Return negative errno on error. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
383
384
385
386
387
  static s32 piix4_access(struct i2c_adapter * adap, u16 addr,
  		 unsigned short flags, char read_write,
  		 u8 command, int size, union i2c_smbus_data * data)
  {
  	int i, len;
97140342e   David Brownell   i2c: Bus drivers ...
388
  	int status;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
389
390
  
  	switch (size) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
391
  	case I2C_SMBUS_QUICK:
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
392
  		outb_p((addr << 1) | read_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
393
394
395
396
  		       SMBHSTADD);
  		size = PIIX4_QUICK;
  		break;
  	case I2C_SMBUS_BYTE:
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
397
  		outb_p((addr << 1) | read_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
398
399
400
401
402
403
  		       SMBHSTADD);
  		if (read_write == I2C_SMBUS_WRITE)
  			outb_p(command, SMBHSTCMD);
  		size = PIIX4_BYTE;
  		break;
  	case I2C_SMBUS_BYTE_DATA:
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
404
  		outb_p((addr << 1) | read_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
406
407
408
409
410
411
  		       SMBHSTADD);
  		outb_p(command, SMBHSTCMD);
  		if (read_write == I2C_SMBUS_WRITE)
  			outb_p(data->byte, SMBHSTDAT0);
  		size = PIIX4_BYTE_DATA;
  		break;
  	case I2C_SMBUS_WORD_DATA:
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
412
  		outb_p((addr << 1) | read_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
413
414
415
416
417
418
419
420
421
  		       SMBHSTADD);
  		outb_p(command, SMBHSTCMD);
  		if (read_write == I2C_SMBUS_WRITE) {
  			outb_p(data->word & 0xff, SMBHSTDAT0);
  			outb_p((data->word & 0xff00) >> 8, SMBHSTDAT1);
  		}
  		size = PIIX4_WORD_DATA;
  		break;
  	case I2C_SMBUS_BLOCK_DATA:
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
422
  		outb_p((addr << 1) | read_write,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
424
425
426
  		       SMBHSTADD);
  		outb_p(command, SMBHSTCMD);
  		if (read_write == I2C_SMBUS_WRITE) {
  			len = data->block[0];
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
427
428
  			if (len == 0 || len > I2C_SMBUS_BLOCK_MAX)
  				return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
429
430
431
432
433
434
435
  			outb_p(len, SMBHSTDAT0);
  			i = inb_p(SMBHSTCNT);	/* Reset SMBBLKDAT */
  			for (i = 1; i <= len; i++)
  				outb_p(data->block[i], SMBBLKDAT);
  		}
  		size = PIIX4_BLOCK_DATA;
  		break;
ac7fc4fb2   Jean Delvare   i2c: Consistently...
436
437
438
439
  	default:
  		dev_warn(&adap->dev, "Unsupported transaction %d
  ", size);
  		return -EOPNOTSUPP;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
440
441
442
  	}
  
  	outb_p((size & 0x1C) + (ENABLE_INT9 & 1), SMBHSTCNT);
97140342e   David Brownell   i2c: Bus drivers ...
443
444
445
  	status = piix4_transaction();
  	if (status)
  		return status;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
446
447
448
449
450
451
  
  	if ((read_write == I2C_SMBUS_WRITE) || (size == PIIX4_QUICK))
  		return 0;
  
  
  	switch (size) {
3578a0759   Jean Delvare   i2c-piix4: Minor ...
452
  	case PIIX4_BYTE:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
453
454
455
456
457
458
459
460
  	case PIIX4_BYTE_DATA:
  		data->byte = inb_p(SMBHSTDAT0);
  		break;
  	case PIIX4_WORD_DATA:
  		data->word = inb_p(SMBHSTDAT0) + (inb_p(SMBHSTDAT1) << 8);
  		break;
  	case PIIX4_BLOCK_DATA:
  		data->block[0] = inb_p(SMBHSTDAT0);
fa63cd56d   Jean Delvare   i2c-piix4: Variou...
461
462
  		if (data->block[0] == 0 || data->block[0] > I2C_SMBUS_BLOCK_MAX)
  			return -EPROTO;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
463
464
465
466
467
468
469
470
471
472
473
474
475
476
  		i = inb_p(SMBHSTCNT);	/* Reset SMBBLKDAT */
  		for (i = 1; i <= data->block[0]; i++)
  			data->block[i] = inb_p(SMBBLKDAT);
  		break;
  	}
  	return 0;
  }
  
  static u32 piix4_func(struct i2c_adapter *adapter)
  {
  	return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
  	    I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
  	    I2C_FUNC_SMBUS_BLOCK_DATA;
  }
8f9082c5c   Jean Delvare   i2c: Constify i2c...
477
  static const struct i2c_algorithm smbus_algorithm = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
479
480
481
482
483
  	.smbus_xfer	= piix4_access,
  	.functionality	= piix4_func,
  };
  
  static struct i2c_adapter piix4_adapter = {
  	.owner		= THIS_MODULE,
3401b2fff   Jean Delvare   i2c: Let bus driv...
484
  	.class		= I2C_CLASS_HWMON | I2C_CLASS_SPD,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
485
  	.algo		= &smbus_algorithm,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
486
  };
3527bd504   Axel Lin   i2c: Convert to D...
487
  static DEFINE_PCI_DEVICE_TABLE(piix4_ids) = {
9b7389c0e   Jean Delvare   i2c-piix4: Drop r...
488
489
490
491
492
493
494
  	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP200_SMBUS) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP300_SMBUS) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_IXP400_SMBUS) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS) },
3806e94b0   Crane Cai   i2c-piix4: Modify...
495
  	{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS) },
9b7389c0e   Jean Delvare   i2c-piix4: Drop r...
496
497
498
499
500
501
502
503
  	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
  		     PCI_DEVICE_ID_SERVERWORKS_OSB4) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
  		     PCI_DEVICE_ID_SERVERWORKS_CSB5) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
  		     PCI_DEVICE_ID_SERVERWORKS_CSB6) },
  	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
  		     PCI_DEVICE_ID_SERVERWORKS_HT1000SB) },
506a8b6c2   Flavio Leitner   i2c-piix4: Add su...
504
505
  	{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
  		     PCI_DEVICE_ID_SERVERWORKS_HT1100LD) },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
506
507
508
509
510
511
512
513
514
  	{ 0, }
  };
  
  MODULE_DEVICE_TABLE (pci, piix4_ids);
  
  static int __devinit piix4_probe(struct pci_dev *dev,
  				const struct pci_device_id *id)
  {
  	int retval;
76b3e28fa   Crane Cai   i2c-piix4: Add AM...
515
516
517
518
  	if ((dev->vendor == PCI_VENDOR_ID_ATI &&
  	     dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS &&
  	     dev->revision >= 0x40) ||
  	    dev->vendor == PCI_VENDOR_ID_AMD)
87e1960e9   Shane Huang   i2c-piix4: Add su...
519
520
521
522
  		/* base address location etc changed in SB800 */
  		retval = piix4_setup_sb800(dev, id);
  	else
  		retval = piix4_setup(dev, id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
523
524
  	if (retval)
  		return retval;
405ae7d38   Robert P. J. Day   Replace remaining...
525
  	/* set up the sysfs linkage to our parent device */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
526
  	piix4_adapter.dev.parent = &dev->dev;
2096b956d   David Brownell   i2c: Shrink struc...
527
  	snprintf(piix4_adapter.name, sizeof(piix4_adapter.name),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
  		"SMBus PIIX4 adapter at %04x", piix4_smba);
  
  	if ((retval = i2c_add_adapter(&piix4_adapter))) {
  		dev_err(&dev->dev, "Couldn't register adapter!
  ");
  		release_region(piix4_smba, SMBIOSIZE);
  		piix4_smba = 0;
  	}
  
  	return retval;
  }
  
  static void __devexit piix4_remove(struct pci_dev *dev)
  {
  	if (piix4_smba) {
  		i2c_del_adapter(&piix4_adapter);
  		release_region(piix4_smba, SMBIOSIZE);
  		piix4_smba = 0;
  	}
  }
  
  static struct pci_driver piix4_driver = {
  	.name		= "piix4_smbus",
  	.id_table	= piix4_ids,
  	.probe		= piix4_probe,
  	.remove		= __devexit_p(piix4_remove),
  };
  
  static int __init i2c_piix4_init(void)
  {
  	return pci_register_driver(&piix4_driver);
  }
  
  static void __exit i2c_piix4_exit(void)
  {
  	pci_unregister_driver(&piix4_driver);
  }
  
  MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
  		"Philip Edelbrock <phil@netroedge.com>");
  MODULE_DESCRIPTION("PIIX4 SMBus driver");
  MODULE_LICENSE("GPL");
  
  module_init(i2c_piix4_init);
  module_exit(i2c_piix4_exit);