Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph...
[linux-2.6-block.git] / drivers / base / regmap / regmap-i2c.c
CommitLineData
9943fa30
MB
1/*
2 * Register map access API - I2C support
3 *
4 * Copyright 2011 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/regmap.h>
14#include <linux/i2c.h>
15#include <linux/module.h>
9943fa30 16
0135bbcc 17static int regmap_i2c_write(void *context, const void *data, size_t count)
9943fa30 18{
0135bbcc 19 struct device *dev = context;
9943fa30
MB
20 struct i2c_client *i2c = to_i2c_client(dev);
21 int ret;
22
23 ret = i2c_master_send(i2c, data, count);
24 if (ret == count)
25 return 0;
26 else if (ret < 0)
27 return ret;
28 else
29 return -EIO;
30}
31
0135bbcc 32static int regmap_i2c_gather_write(void *context,
9943fa30
MB
33 const void *reg, size_t reg_size,
34 const void *val, size_t val_size)
35{
0135bbcc 36 struct device *dev = context;
9943fa30
MB
37 struct i2c_client *i2c = to_i2c_client(dev);
38 struct i2c_msg xfer[2];
39 int ret;
40
41 /* If the I2C controller can't do a gather tell the core, it
42 * will substitute in a linear write for us.
43 */
14674e70 44 if (!i2c_check_functionality(i2c->adapter, I2C_FUNC_NOSTART))
9943fa30
MB
45 return -ENOTSUPP;
46
47 xfer[0].addr = i2c->addr;
48 xfer[0].flags = 0;
49 xfer[0].len = reg_size;
50 xfer[0].buf = (void *)reg;
51
52 xfer[1].addr = i2c->addr;
53 xfer[1].flags = I2C_M_NOSTART;
54 xfer[1].len = val_size;
55 xfer[1].buf = (void *)val;
56
57 ret = i2c_transfer(i2c->adapter, xfer, 2);
58 if (ret == 2)
59 return 0;
60 if (ret < 0)
61 return ret;
62 else
63 return -EIO;
64}
65
0135bbcc 66static int regmap_i2c_read(void *context,
9943fa30
MB
67 const void *reg, size_t reg_size,
68 void *val, size_t val_size)
69{
0135bbcc 70 struct device *dev = context;
9943fa30
MB
71 struct i2c_client *i2c = to_i2c_client(dev);
72 struct i2c_msg xfer[2];
73 int ret;
74
75 xfer[0].addr = i2c->addr;
76 xfer[0].flags = 0;
77 xfer[0].len = reg_size;
78 xfer[0].buf = (void *)reg;
79
80 xfer[1].addr = i2c->addr;
81 xfer[1].flags = I2C_M_RD;
82 xfer[1].len = val_size;
83 xfer[1].buf = val;
84
85 ret = i2c_transfer(i2c->adapter, xfer, 2);
86 if (ret == 2)
87 return 0;
88 else if (ret < 0)
89 return ret;
90 else
91 return -EIO;
92}
93
94static struct regmap_bus regmap_i2c = {
9943fa30
MB
95 .write = regmap_i2c_write,
96 .gather_write = regmap_i2c_gather_write,
97 .read = regmap_i2c_read,
9943fa30
MB
98};
99
100/**
101 * regmap_init_i2c(): Initialise register map
102 *
103 * @i2c: Device that will be interacted with
104 * @config: Configuration for register map
105 *
106 * The return value will be an ERR_PTR() on error or a valid pointer to
107 * a struct regmap.
108 */
109struct regmap *regmap_init_i2c(struct i2c_client *i2c,
110 const struct regmap_config *config)
111{
0135bbcc 112 return regmap_init(&i2c->dev, &regmap_i2c, &i2c->dev, config);
9943fa30
MB
113}
114EXPORT_SYMBOL_GPL(regmap_init_i2c);
115
c0eb4676
MB
116/**
117 * devm_regmap_init_i2c(): Initialise managed register map
118 *
119 * @i2c: Device that will be interacted with
120 * @config: Configuration for register map
121 *
122 * The return value will be an ERR_PTR() on error or a valid pointer
123 * to a struct regmap. The regmap will be automatically freed by the
124 * device management code.
125 */
126struct regmap *devm_regmap_init_i2c(struct i2c_client *i2c,
127 const struct regmap_config *config)
128{
0135bbcc 129 return devm_regmap_init(&i2c->dev, &regmap_i2c, &i2c->dev, config);
c0eb4676
MB
130}
131EXPORT_SYMBOL_GPL(devm_regmap_init_i2c);
132
b33f9cbd 133MODULE_LICENSE("GPL");