| Peter Korsgaard | 18f98b1 | 2006-06-04 20:01:08 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * i2c-ocores.h - definitions for the i2c-ocores interface | 
|  | 3 | * | 
|  | 4 | * Peter Korsgaard <jacmet@sunsite.dk> | 
|  | 5 | * | 
|  | 6 | * This file is licensed under the terms of the GNU General Public License | 
|  | 7 | * version 2.  This program is licensed "as is" without any warranty of any | 
|  | 8 | * kind, whether express or implied. | 
|  | 9 | */ | 
|  | 10 |  | 
|  | 11 | #ifndef _LINUX_I2C_OCORES_H | 
|  | 12 | #define _LINUX_I2C_OCORES_H | 
|  | 13 |  | 
|  | 14 | struct ocores_i2c_platform_data { | 
| Ganesan Ramalingam | 8bb986a | 2012-07-13 19:14:23 +0530 | [diff] [blame] | 15 | u32 reg_shift; /* register offset shift value */ | 
| Ganesan Ramalingam | 7326e38 | 2012-07-13 19:14:25 +0530 | [diff] [blame] | 16 | u32 reg_io_width; /* register io read/write width */ | 
| Peter Korsgaard | 18f98b1 | 2006-06-04 20:01:08 +0200 | [diff] [blame] | 17 | u32 clock_khz; /* input clock in kHz */ | 
| Max Filippov | b299167 | 2015-10-07 02:45:11 +0300 | [diff] [blame] | 18 | bool big_endian; /* registers are big endian */ | 
| Richard Röjfors | dd14be4 | 2009-06-05 15:40:32 +0200 | [diff] [blame] | 19 | u8 num_devices; /* number of devices in the devices list */ | 
|  | 20 | struct i2c_board_info const *devices; /* devices connected to the bus */ | 
| Peter Korsgaard | 18f98b1 | 2006-06-04 20:01:08 +0200 | [diff] [blame] | 21 | }; | 
|  | 22 |  | 
|  | 23 | #endif /* _LINUX_I2C_OCORES_H */ |