aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@cam.ac.uk>2011-10-30 08:47:25 -0400
committerJean Delvare <khali@endymion.delvare>2011-10-30 08:47:25 -0400
commit06a67848c6681a73e621e47c056490d51a07289f (patch)
treedf6e3df869b7b1a1f40f09b9b3a6f8b8a2ad12d6
parent4403988afc0a92b8faf59b46f51d25fafaf0e63d (diff)
i2c: Functions for byte-swapped smbus_write/read_word_data
Reimplemented at least 17 times discounting error mangling cases where it could be used. Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Jean Delvare <khali@linux-fr.org>
-rw-r--r--Documentation/i2c/smbus-protocol8
-rw-r--r--include/linux/i2c.h17
2 files changed, 25 insertions, 0 deletions
diff --git a/Documentation/i2c/smbus-protocol b/Documentation/i2c/smbus-protocol
index 7c19d1a2bea0..49f5b680809d 100644
--- a/Documentation/i2c/smbus-protocol
+++ b/Documentation/i2c/smbus-protocol
@@ -88,6 +88,10 @@ byte. But this time, the data is a complete word (16 bits).
88 88
89S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P 89S Addr Wr [A] Comm [A] S Addr Rd [A] [DataLow] A [DataHigh] NA P
90 90
91Note the convenience function i2c_smbus_read_word_swapped is
92available for reads where the two data bytes are the other way
93around (not SMBus compliant, but very popular.)
94
91 95
92SMBus Write Byte: i2c_smbus_write_byte_data() 96SMBus Write Byte: i2c_smbus_write_byte_data()
93============================================== 97==============================================
@@ -108,6 +112,10 @@ specified through the Comm byte.
108 112
109S Addr Wr [A] Comm [A] DataLow [A] DataHigh [A] P 113S Addr Wr [A] Comm [A] DataLow [A] DataHigh [A] P
110 114
115Note the convenience function i2c_smbus_write_word_swapped is
116available for writes where the two data bytes are the other way
117around (not SMBus compliant, but very popular.)
118
111 119
112SMBus Process Call: i2c_smbus_process_call() 120SMBus Process Call: i2c_smbus_process_call()
113============================================= 121=============================================
diff --git a/include/linux/i2c.h b/include/linux/i2c.h
index a6c652ef516d..38a21c3edd2c 100644
--- a/include/linux/i2c.h
+++ b/include/linux/i2c.h
@@ -34,6 +34,7 @@
34#include <linux/sched.h> /* for completion */ 34#include <linux/sched.h> /* for completion */
35#include <linux/mutex.h> 35#include <linux/mutex.h>
36#include <linux/of.h> /* for struct device_node */ 36#include <linux/of.h> /* for struct device_node */
37#include <linux/swab.h> /* for swab16 */
37 38
38extern struct bus_type i2c_bus_type; 39extern struct bus_type i2c_bus_type;
39extern struct device_type i2c_adapter_type; 40extern struct device_type i2c_adapter_type;
@@ -88,6 +89,22 @@ extern s32 i2c_smbus_read_word_data(const struct i2c_client *client,
88 u8 command); 89 u8 command);
89extern s32 i2c_smbus_write_word_data(const struct i2c_client *client, 90extern s32 i2c_smbus_write_word_data(const struct i2c_client *client,
90 u8 command, u16 value); 91 u8 command, u16 value);
92
93static inline s32
94i2c_smbus_read_word_swapped(const struct i2c_client *client, u8 command)
95{
96 s32 value = i2c_smbus_read_word_data(client, command);
97
98 return (value < 0) ? value : swab16(value);
99}
100
101static inline s32
102i2c_smbus_write_word_swapped(const struct i2c_client *client,
103 u8 command, u16 value)
104{
105 return i2c_smbus_write_word_data(client, command, swab16(value));
106}
107
91/* Returns the number of read bytes */ 108/* Returns the number of read bytes */
92extern s32 i2c_smbus_read_block_data(const struct i2c_client *client, 109extern s32 i2c_smbus_read_block_data(const struct i2c_client *client,
93 u8 command, u8 *values); 110 u8 command, u8 *values);