thinkpad-acpi: handle some new HKEY 0x60xx events
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / i2c-pnx.h
bloba87124d4d5338d2704875c71ba5f6d87c8d41a72
1 /*
2 * Header file for I2C support on PNX010x/4008.
4 * Author: Dennis Kovalev <dkovalev@ru.mvista.com>
6 * 2004-2006 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
12 #ifndef __I2C_PNX_H__
13 #define __I2C_PNX_H__
15 struct platform_device;
16 struct clk;
18 struct i2c_pnx_mif {
19 int ret; /* Return value */
20 int mode; /* Interface mode */
21 struct completion complete; /* I/O completion */
22 struct timer_list timer; /* Timeout */
23 u8 * buf; /* Data buffer */
24 int len; /* Length of data buffer */
27 struct i2c_pnx_algo_data {
28 void __iomem *ioaddr;
29 struct i2c_pnx_mif mif;
30 int last;
31 struct clk *clk;
32 struct i2c_pnx_data *i2c_pnx;
33 struct i2c_adapter adapter;
36 struct i2c_pnx_data {
37 const char *name;
38 u32 base;
39 int irq;
42 #endif /* __I2C_PNX_H__ */