powerpc/8xx: Fix regression introduced by cache coherency rewrite
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / i2c-pnx.h
blobf13255e06406aa9eb7a8c60485599b960a976f8b
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 #include <linux/pm.h>
17 struct platform_device;
19 struct i2c_pnx_mif {
20 int ret; /* Return value */
21 int mode; /* Interface mode */
22 struct completion complete; /* I/O completion */
23 struct timer_list timer; /* Timeout */
24 char * buf; /* Data buffer */
25 int len; /* Length of data buffer */
28 struct i2c_pnx_algo_data {
29 u32 base;
30 u32 ioaddr;
31 int irq;
32 struct i2c_pnx_mif mif;
33 int last;
36 struct i2c_pnx_data {
37 int (*suspend) (struct platform_device *pdev, pm_message_t state);
38 int (*resume) (struct platform_device *pdev);
39 u32 (*calculate_input_freq) (struct platform_device *pdev);
40 int (*set_clock_run) (struct platform_device *pdev);
41 int (*set_clock_stop) (struct platform_device *pdev);
42 struct i2c_adapter *adapter;
45 #endif /* __I2C_PNX_H__ */