GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / i2c / busses / i2c-amd8111.c
blob3ee182d2b78fa0471ad979414706b757af710cff
1 /*
2 * SMBus 2.0 driver for AMD-8111 IO-Hub.
4 * Copyright (c) 2002 Vojtech Pavlik
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation version 2.
9 */
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/kernel.h>
14 #include <linux/stddef.h>
15 #include <linux/ioport.h>
16 #include <linux/init.h>
17 #include <linux/i2c.h>
18 #include <linux/delay.h>
19 #include <linux/acpi.h>
20 #include <linux/slab.h>
21 #include <linux/io.h>
23 MODULE_LICENSE("GPL");
24 MODULE_AUTHOR ("Vojtech Pavlik <vojtech@suse.cz>");
25 MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver");
27 struct amd_smbus {
28 struct pci_dev *dev;
29 struct i2c_adapter adapter;
30 int base;
31 int size;
34 static struct pci_driver amd8111_driver;
37 * AMD PCI control registers definitions.
40 #define AMD_PCI_MISC 0x48
42 #define AMD_PCI_MISC_SCI 0x04 /* deliver SCI */
43 #define AMD_PCI_MISC_INT 0x02 /* deliver PCI IRQ */
44 #define AMD_PCI_MISC_SPEEDUP 0x01 /* 16x clock speedup */
47 * ACPI 2.0 chapter 13 PCI interface definitions.
50 #define AMD_EC_DATA 0x00 /* data register */
51 #define AMD_EC_SC 0x04 /* status of controller */
52 #define AMD_EC_CMD 0x04 /* command register */
53 #define AMD_EC_ICR 0x08 /* interrupt control register */
55 #define AMD_EC_SC_SMI 0x04 /* smi event pending */
56 #define AMD_EC_SC_SCI 0x02 /* sci event pending */
57 #define AMD_EC_SC_BURST 0x01 /* burst mode enabled */
58 #define AMD_EC_SC_CMD 0x08 /* byte in data reg is command */
59 #define AMD_EC_SC_IBF 0x02 /* data ready for embedded controller */
60 #define AMD_EC_SC_OBF 0x01 /* data ready for host */
62 #define AMD_EC_CMD_RD 0x80 /* read EC */
63 #define AMD_EC_CMD_WR 0x81 /* write EC */
64 #define AMD_EC_CMD_BE 0x82 /* enable burst mode */
65 #define AMD_EC_CMD_BD 0x83 /* disable burst mode */
66 #define AMD_EC_CMD_QR 0x84 /* query EC */
69 * ACPI 2.0 chapter 13 access of registers of the EC
72 static unsigned int amd_ec_wait_write(struct amd_smbus *smbus)
74 int timeout = 500;
76 while ((inb(smbus->base + AMD_EC_SC) & AMD_EC_SC_IBF) && --timeout)
77 udelay(1);
79 if (!timeout) {
80 dev_warn(&smbus->dev->dev,
81 "Timeout while waiting for IBF to clear\n");
82 return -ETIMEDOUT;
85 return 0;
88 static unsigned int amd_ec_wait_read(struct amd_smbus *smbus)
90 int timeout = 500;
92 while ((~inb(smbus->base + AMD_EC_SC) & AMD_EC_SC_OBF) && --timeout)
93 udelay(1);
95 if (!timeout) {
96 dev_warn(&smbus->dev->dev,
97 "Timeout while waiting for OBF to set\n");
98 return -ETIMEDOUT;
101 return 0;
104 static unsigned int amd_ec_read(struct amd_smbus *smbus, unsigned char address,
105 unsigned char *data)
107 int status;
109 status = amd_ec_wait_write(smbus);
110 if (status)
111 return status;
112 outb(AMD_EC_CMD_RD, smbus->base + AMD_EC_CMD);
114 status = amd_ec_wait_write(smbus);
115 if (status)
116 return status;
117 outb(address, smbus->base + AMD_EC_DATA);
119 status = amd_ec_wait_read(smbus);
120 if (status)
121 return status;
122 *data = inb(smbus->base + AMD_EC_DATA);
124 return 0;
127 static unsigned int amd_ec_write(struct amd_smbus *smbus, unsigned char address,
128 unsigned char data)
130 int status;
132 status = amd_ec_wait_write(smbus);
133 if (status)
134 return status;
135 outb(AMD_EC_CMD_WR, smbus->base + AMD_EC_CMD);
137 status = amd_ec_wait_write(smbus);
138 if (status)
139 return status;
140 outb(address, smbus->base + AMD_EC_DATA);
142 status = amd_ec_wait_write(smbus);
143 if (status)
144 return status;
145 outb(data, smbus->base + AMD_EC_DATA);
147 return 0;
151 * ACPI 2.0 chapter 13 SMBus 2.0 EC register model
154 #define AMD_SMB_PRTCL 0x00 /* protocol, PEC */
155 #define AMD_SMB_STS 0x01 /* status */
156 #define AMD_SMB_ADDR 0x02 /* address */
157 #define AMD_SMB_CMD 0x03 /* command */
158 #define AMD_SMB_DATA 0x04 /* 32 data registers */
159 #define AMD_SMB_BCNT 0x24 /* number of data bytes */
160 #define AMD_SMB_ALRM_A 0x25 /* alarm address */
161 #define AMD_SMB_ALRM_D 0x26 /* 2 bytes alarm data */
163 #define AMD_SMB_STS_DONE 0x80
164 #define AMD_SMB_STS_ALRM 0x40
165 #define AMD_SMB_STS_RES 0x20
166 #define AMD_SMB_STS_STATUS 0x1f
168 #define AMD_SMB_STATUS_OK 0x00
169 #define AMD_SMB_STATUS_FAIL 0x07
170 #define AMD_SMB_STATUS_DNAK 0x10
171 #define AMD_SMB_STATUS_DERR 0x11
172 #define AMD_SMB_STATUS_CMD_DENY 0x12
173 #define AMD_SMB_STATUS_UNKNOWN 0x13
174 #define AMD_SMB_STATUS_ACC_DENY 0x17
175 #define AMD_SMB_STATUS_TIMEOUT 0x18
176 #define AMD_SMB_STATUS_NOTSUP 0x19
177 #define AMD_SMB_STATUS_BUSY 0x1A
178 #define AMD_SMB_STATUS_PEC 0x1F
180 #define AMD_SMB_PRTCL_WRITE 0x00
181 #define AMD_SMB_PRTCL_READ 0x01
182 #define AMD_SMB_PRTCL_QUICK 0x02
183 #define AMD_SMB_PRTCL_BYTE 0x04
184 #define AMD_SMB_PRTCL_BYTE_DATA 0x06
185 #define AMD_SMB_PRTCL_WORD_DATA 0x08
186 #define AMD_SMB_PRTCL_BLOCK_DATA 0x0a
187 #define AMD_SMB_PRTCL_PROC_CALL 0x0c
188 #define AMD_SMB_PRTCL_BLOCK_PROC_CALL 0x0d
189 #define AMD_SMB_PRTCL_I2C_BLOCK_DATA 0x4a
190 #define AMD_SMB_PRTCL_PEC 0x80
193 static s32 amd8111_access(struct i2c_adapter * adap, u16 addr,
194 unsigned short flags, char read_write, u8 command, int size,
195 union i2c_smbus_data * data)
197 struct amd_smbus *smbus = adap->algo_data;
198 unsigned char protocol, len, pec, temp[2];
199 int i;
201 protocol = (read_write == I2C_SMBUS_READ) ? AMD_SMB_PRTCL_READ
202 : AMD_SMB_PRTCL_WRITE;
203 pec = (flags & I2C_CLIENT_PEC) ? AMD_SMB_PRTCL_PEC : 0;
205 switch (size) {
206 case I2C_SMBUS_QUICK:
207 protocol |= AMD_SMB_PRTCL_QUICK;
208 read_write = I2C_SMBUS_WRITE;
209 break;
211 case I2C_SMBUS_BYTE:
212 if (read_write == I2C_SMBUS_WRITE)
213 amd_ec_write(smbus, AMD_SMB_CMD, command);
214 protocol |= AMD_SMB_PRTCL_BYTE;
215 break;
217 case I2C_SMBUS_BYTE_DATA:
218 amd_ec_write(smbus, AMD_SMB_CMD, command);
219 if (read_write == I2C_SMBUS_WRITE)
220 amd_ec_write(smbus, AMD_SMB_DATA, data->byte);
221 protocol |= AMD_SMB_PRTCL_BYTE_DATA;
222 break;
224 case I2C_SMBUS_WORD_DATA:
225 amd_ec_write(smbus, AMD_SMB_CMD, command);
226 if (read_write == I2C_SMBUS_WRITE) {
227 amd_ec_write(smbus, AMD_SMB_DATA,
228 data->word & 0xff);
229 amd_ec_write(smbus, AMD_SMB_DATA + 1,
230 data->word >> 8);
232 protocol |= AMD_SMB_PRTCL_WORD_DATA | pec;
233 break;
235 case I2C_SMBUS_BLOCK_DATA:
236 amd_ec_write(smbus, AMD_SMB_CMD, command);
237 if (read_write == I2C_SMBUS_WRITE) {
238 len = min_t(u8, data->block[0],
239 I2C_SMBUS_BLOCK_MAX);
240 amd_ec_write(smbus, AMD_SMB_BCNT, len);
241 for (i = 0; i < len; i++)
242 amd_ec_write(smbus, AMD_SMB_DATA + i,
243 data->block[i + 1]);
245 protocol |= AMD_SMB_PRTCL_BLOCK_DATA | pec;
246 break;
248 case I2C_SMBUS_I2C_BLOCK_DATA:
249 len = min_t(u8, data->block[0],
250 I2C_SMBUS_BLOCK_MAX);
251 amd_ec_write(smbus, AMD_SMB_CMD, command);
252 amd_ec_write(smbus, AMD_SMB_BCNT, len);
253 if (read_write == I2C_SMBUS_WRITE)
254 for (i = 0; i < len; i++)
255 amd_ec_write(smbus, AMD_SMB_DATA + i,
256 data->block[i + 1]);
257 protocol |= AMD_SMB_PRTCL_I2C_BLOCK_DATA;
258 break;
260 case I2C_SMBUS_PROC_CALL:
261 amd_ec_write(smbus, AMD_SMB_CMD, command);
262 amd_ec_write(smbus, AMD_SMB_DATA, data->word & 0xff);
263 amd_ec_write(smbus, AMD_SMB_DATA + 1, data->word >> 8);
264 protocol = AMD_SMB_PRTCL_PROC_CALL | pec;
265 read_write = I2C_SMBUS_READ;
266 break;
268 case I2C_SMBUS_BLOCK_PROC_CALL:
269 len = min_t(u8, data->block[0],
270 I2C_SMBUS_BLOCK_MAX - 1);
271 amd_ec_write(smbus, AMD_SMB_CMD, command);
272 amd_ec_write(smbus, AMD_SMB_BCNT, len);
273 for (i = 0; i < len; i++)
274 amd_ec_write(smbus, AMD_SMB_DATA + i,
275 data->block[i + 1]);
276 protocol = AMD_SMB_PRTCL_BLOCK_PROC_CALL | pec;
277 read_write = I2C_SMBUS_READ;
278 break;
280 default:
281 dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
282 return -EOPNOTSUPP;
285 amd_ec_write(smbus, AMD_SMB_ADDR, addr << 1);
286 amd_ec_write(smbus, AMD_SMB_PRTCL, protocol);
288 amd_ec_read(smbus, AMD_SMB_STS, temp + 0);
290 if (~temp[0] & AMD_SMB_STS_DONE) {
291 udelay(500);
292 amd_ec_read(smbus, AMD_SMB_STS, temp + 0);
295 if (~temp[0] & AMD_SMB_STS_DONE) {
296 msleep(1);
297 amd_ec_read(smbus, AMD_SMB_STS, temp + 0);
300 if ((~temp[0] & AMD_SMB_STS_DONE) || (temp[0] & AMD_SMB_STS_STATUS))
301 return -EIO;
303 if (read_write == I2C_SMBUS_WRITE)
304 return 0;
306 switch (size) {
307 case I2C_SMBUS_BYTE:
308 case I2C_SMBUS_BYTE_DATA:
309 amd_ec_read(smbus, AMD_SMB_DATA, &data->byte);
310 break;
312 case I2C_SMBUS_WORD_DATA:
313 case I2C_SMBUS_PROC_CALL:
314 amd_ec_read(smbus, AMD_SMB_DATA, temp + 0);
315 amd_ec_read(smbus, AMD_SMB_DATA + 1, temp + 1);
316 data->word = (temp[1] << 8) | temp[0];
317 break;
319 case I2C_SMBUS_BLOCK_DATA:
320 case I2C_SMBUS_BLOCK_PROC_CALL:
321 amd_ec_read(smbus, AMD_SMB_BCNT, &len);
322 len = min_t(u8, len, I2C_SMBUS_BLOCK_MAX);
323 case I2C_SMBUS_I2C_BLOCK_DATA:
324 for (i = 0; i < len; i++)
325 amd_ec_read(smbus, AMD_SMB_DATA + i,
326 data->block + i + 1);
327 data->block[0] = len;
328 break;
331 return 0;
335 static u32 amd8111_func(struct i2c_adapter *adapter)
337 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
338 I2C_FUNC_SMBUS_BYTE_DATA |
339 I2C_FUNC_SMBUS_WORD_DATA | I2C_FUNC_SMBUS_BLOCK_DATA |
340 I2C_FUNC_SMBUS_PROC_CALL | I2C_FUNC_SMBUS_BLOCK_PROC_CALL |
341 I2C_FUNC_SMBUS_I2C_BLOCK | I2C_FUNC_SMBUS_PEC;
344 static const struct i2c_algorithm smbus_algorithm = {
345 .smbus_xfer = amd8111_access,
346 .functionality = amd8111_func,
350 static const struct pci_device_id amd8111_ids[] = {
351 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_SMBUS2) },
352 { 0, }
355 MODULE_DEVICE_TABLE (pci, amd8111_ids);
357 static int __devinit amd8111_probe(struct pci_dev *dev,
358 const struct pci_device_id *id)
360 struct amd_smbus *smbus;
361 int error;
363 if (!(pci_resource_flags(dev, 0) & IORESOURCE_IO))
364 return -ENODEV;
366 smbus = kzalloc(sizeof(struct amd_smbus), GFP_KERNEL);
367 if (!smbus)
368 return -ENOMEM;
370 smbus->dev = dev;
371 smbus->base = pci_resource_start(dev, 0);
372 smbus->size = pci_resource_len(dev, 0);
374 error = acpi_check_resource_conflict(&dev->resource[0]);
375 if (error) {
376 error = -ENODEV;
377 goto out_kfree;
380 if (!request_region(smbus->base, smbus->size, amd8111_driver.name)) {
381 error = -EBUSY;
382 goto out_kfree;
385 smbus->adapter.owner = THIS_MODULE;
386 snprintf(smbus->adapter.name, sizeof(smbus->adapter.name),
387 "SMBus2 AMD8111 adapter at %04x", smbus->base);
388 smbus->adapter.class = I2C_CLASS_HWMON | I2C_CLASS_SPD;
389 smbus->adapter.algo = &smbus_algorithm;
390 smbus->adapter.algo_data = smbus;
392 /* set up the sysfs linkage to our parent device */
393 smbus->adapter.dev.parent = &dev->dev;
395 pci_write_config_dword(smbus->dev, AMD_PCI_MISC, 0);
396 error = i2c_add_adapter(&smbus->adapter);
397 if (error)
398 goto out_release_region;
400 pci_set_drvdata(dev, smbus);
401 return 0;
403 out_release_region:
404 release_region(smbus->base, smbus->size);
405 out_kfree:
406 kfree(smbus);
407 return error;
410 static void __devexit amd8111_remove(struct pci_dev *dev)
412 struct amd_smbus *smbus = pci_get_drvdata(dev);
414 i2c_del_adapter(&smbus->adapter);
415 release_region(smbus->base, smbus->size);
416 kfree(smbus);
419 static struct pci_driver amd8111_driver = {
420 .name = "amd8111_smbus2",
421 .id_table = amd8111_ids,
422 .probe = amd8111_probe,
423 .remove = __devexit_p(amd8111_remove),
426 static int __init i2c_amd8111_init(void)
428 return pci_register_driver(&amd8111_driver);
431 static void __exit i2c_amd8111_exit(void)
433 pci_unregister_driver(&amd8111_driver);
436 module_init(i2c_amd8111_init);
437 module_exit(i2c_amd8111_exit);