Nicholas Flintham | 1e3d311 | 2013-04-10 10:48:38 +0100 | [diff] [blame^] | 1 | /* |
| 2 | i2c-dev.h - i2c-bus driver, char device interface |
| 3 | |
| 4 | Copyright (C) 1995-97 Simon G. Vogl |
| 5 | Copyright (C) 1998-99 Frodo Looijaard <frodol@dds.nl> |
| 6 | |
| 7 | This program is free software; you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation; either version 2 of the License, or |
| 10 | (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program; if not, write to the Free Software |
| 19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 20 | MA 02110-1301 USA. |
| 21 | */ |
| 22 | |
| 23 | #ifndef _LINUX_I2C_DEV_H |
| 24 | #define _LINUX_I2C_DEV_H |
| 25 | |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/compiler.h> |
| 28 | |
| 29 | #define I2C_RETRIES 0x0701 |
| 30 | #define I2C_TIMEOUT 0x0702 |
| 31 | |
| 32 | #define I2C_SLAVE 0x0703 |
| 33 | #define I2C_SLAVE_FORCE 0x0706 |
| 34 | #define I2C_TENBIT 0x0704 |
| 35 | |
| 36 | #define I2C_FUNCS 0x0705 |
| 37 | |
| 38 | #define I2C_RDWR 0x0707 |
| 39 | |
| 40 | #define I2C_PEC 0x0708 |
| 41 | #define I2C_SMBUS 0x0720 |
| 42 | |
| 43 | |
| 44 | struct i2c_smbus_ioctl_data { |
| 45 | __u8 read_write; |
| 46 | __u8 command; |
| 47 | __u32 size; |
| 48 | union i2c_smbus_data __user *data; |
| 49 | }; |
| 50 | |
| 51 | struct i2c_rdwr_ioctl_data { |
| 52 | struct i2c_msg __user *msgs; |
| 53 | __u32 nmsgs; |
| 54 | }; |
| 55 | |
| 56 | #define I2C_RDRW_IOCTL_MAX_MSGS 42 |
| 57 | |
| 58 | #ifdef __KERNEL__ |
| 59 | #define I2C_MAJOR 89 |
| 60 | #endif |
| 61 | |
| 62 | #endif |