blob: d0a9c590c3cd4708937c924afe9f6759602948f0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jean Delvare569be442008-01-27 18:14:45 +01002 i2c-stub.c - I2C/SMBus chip emulator
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4 Copyright (c) 2004 Mark M. Hoffman <mhoffman@lightlink.com>
Jean Delvare31d178b2012-10-28 21:37:00 +01005 Copyright (C) 2007, 2012 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20*/
21
22#define DEBUG 1
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/module.h>
26#include <linux/kernel.h>
Jean Delvare9d90c1f2007-10-13 23:56:31 +020027#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/errno.h>
29#include <linux/i2c.h>
30
Jean Delvare9d90c1f2007-10-13 23:56:31 +020031#define MAX_CHIPS 10
Jean Delvarec5aa6922010-05-21 18:40:56 +020032#define STUB_FUNC (I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | \
33 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | \
34 I2C_FUNC_SMBUS_I2C_BLOCK)
Jean Delvare7a8d29c2006-08-13 23:46:44 +020035
Jean Delvare9d90c1f2007-10-13 23:56:31 +020036static unsigned short chip_addr[MAX_CHIPS];
37module_param_array(chip_addr, ushort, NULL, S_IRUGO);
38MODULE_PARM_DESC(chip_addr,
Jean Delvare85d69312008-04-29 23:11:37 +020039 "Chip addresses (up to 10, between 0x03 and 0x77)");
Jean Delvare9d90c1f2007-10-13 23:56:31 +020040
Jean Delvarec5aa6922010-05-21 18:40:56 +020041static unsigned long functionality = STUB_FUNC;
Jean Delvare38f41f22009-12-06 17:06:29 +010042module_param(functionality, ulong, S_IRUGO | S_IWUSR);
43MODULE_PARM_DESC(functionality, "Override functionality bitfield");
44
Jean Delvare9d90c1f2007-10-13 23:56:31 +020045struct stub_chip {
46 u8 pointer;
Jean Delvare569be442008-01-27 18:14:45 +010047 u16 words[256]; /* Byte operations use the LSB as per SMBus
48 specification */
Jean Delvare9d90c1f2007-10-13 23:56:31 +020049};
50
51static struct stub_chip *stub_chips;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
David Brownell97140342008-07-14 22:38:25 +020053/* Return negative errno on error. */
Jean Delvare31d178b2012-10-28 21:37:00 +010054static s32 stub_xfer(struct i2c_adapter *adap, u16 addr, unsigned short flags,
55 char read_write, u8 command, int size, union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 s32 ret;
Jean Delvare47103172009-12-06 17:06:28 +010058 int i, len;
Jean Delvare9d90c1f2007-10-13 23:56:31 +020059 struct stub_chip *chip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jean Delvare9d90c1f2007-10-13 23:56:31 +020061 /* Search for the right chip */
62 for (i = 0; i < MAX_CHIPS && chip_addr[i]; i++) {
63 if (addr == chip_addr[i]) {
64 chip = stub_chips + i;
65 break;
66 }
67 }
68 if (!chip)
Jean Delvare7a8d29c2006-08-13 23:46:44 +020069 return -ENODEV;
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 switch (size) {
72
73 case I2C_SMBUS_QUICK:
74 dev_dbg(&adap->dev, "smbus quick - addr 0x%02x\n", addr);
75 ret = 0;
76 break;
77
78 case I2C_SMBUS_BYTE:
79 if (read_write == I2C_SMBUS_WRITE) {
Jean Delvare9d90c1f2007-10-13 23:56:31 +020080 chip->pointer = command;
Jean Delvare31d178b2012-10-28 21:37:00 +010081 dev_dbg(&adap->dev,
82 "smbus byte - addr 0x%02x, wrote 0x%02x.\n",
83 addr, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 } else {
Jean Delvare569be442008-01-27 18:14:45 +010085 data->byte = chip->words[chip->pointer++] & 0xff;
Jean Delvare31d178b2012-10-28 21:37:00 +010086 dev_dbg(&adap->dev,
87 "smbus byte - addr 0x%02x, read 0x%02x.\n",
88 addr, data->byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
90
91 ret = 0;
92 break;
93
94 case I2C_SMBUS_BYTE_DATA:
95 if (read_write == I2C_SMBUS_WRITE) {
Jean Delvare569be442008-01-27 18:14:45 +010096 chip->words[command] &= 0xff00;
97 chip->words[command] |= data->byte;
Jean Delvare31d178b2012-10-28 21:37:00 +010098 dev_dbg(&adap->dev,
99 "smbus byte data - addr 0x%02x, wrote 0x%02x at 0x%02x.\n",
100 addr, data->byte, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 } else {
Jean Delvare569be442008-01-27 18:14:45 +0100102 data->byte = chip->words[command] & 0xff;
Jean Delvare31d178b2012-10-28 21:37:00 +0100103 dev_dbg(&adap->dev,
104 "smbus byte data - addr 0x%02x, read 0x%02x at 0x%02x.\n",
105 addr, data->byte, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200107 chip->pointer = command + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 ret = 0;
110 break;
111
112 case I2C_SMBUS_WORD_DATA:
113 if (read_write == I2C_SMBUS_WRITE) {
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200114 chip->words[command] = data->word;
Jean Delvare31d178b2012-10-28 21:37:00 +0100115 dev_dbg(&adap->dev,
116 "smbus word data - addr 0x%02x, wrote 0x%04x at 0x%02x.\n",
117 addr, data->word, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 } else {
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200119 data->word = chip->words[command];
Jean Delvare31d178b2012-10-28 21:37:00 +0100120 dev_dbg(&adap->dev,
121 "smbus word data - addr 0x%02x, read 0x%04x at 0x%02x.\n",
122 addr, data->word, command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 }
124
125 ret = 0;
126 break;
127
Jean Delvare47103172009-12-06 17:06:28 +0100128 case I2C_SMBUS_I2C_BLOCK_DATA:
129 len = data->block[0];
130 if (read_write == I2C_SMBUS_WRITE) {
131 for (i = 0; i < len; i++) {
132 chip->words[command + i] &= 0xff00;
133 chip->words[command + i] |= data->block[1 + i];
134 }
Jean Delvare31d178b2012-10-28 21:37:00 +0100135 dev_dbg(&adap->dev,
136 "i2c block data - addr 0x%02x, wrote %d bytes at 0x%02x.\n",
137 addr, len, command);
Jean Delvare47103172009-12-06 17:06:28 +0100138 } else {
139 for (i = 0; i < len; i++) {
140 data->block[1 + i] =
141 chip->words[command + i] & 0xff;
142 }
Jean Delvare31d178b2012-10-28 21:37:00 +0100143 dev_dbg(&adap->dev,
144 "i2c block data - addr 0x%02x, read %d bytes at 0x%02x.\n",
145 addr, len, command);
Jean Delvare47103172009-12-06 17:06:28 +0100146 }
147
148 ret = 0;
149 break;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 default:
152 dev_dbg(&adap->dev, "Unsupported I2C/SMBus command\n");
David Brownell97140342008-07-14 22:38:25 +0200153 ret = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155 } /* switch (size) */
156
157 return ret;
158}
159
160static u32 stub_func(struct i2c_adapter *adapter)
161{
Jean Delvarec5aa6922010-05-21 18:40:56 +0200162 return STUB_FUNC & functionality;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Jean Delvare8f9082c2006-09-03 22:39:46 +0200165static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 .functionality = stub_func,
167 .smbus_xfer = stub_xfer,
168};
169
170static struct i2c_adapter stub_adapter = {
171 .owner = THIS_MODULE,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200172 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .algo = &smbus_algorithm,
174 .name = "SMBus stub driver",
175};
176
177static int __init i2c_stub_init(void)
178{
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200179 int i, ret;
180
181 if (!chip_addr[0]) {
Jean Delvare31d178b2012-10-28 21:37:00 +0100182 pr_err("i2c-stub: Please specify a chip address\n");
Jean Delvare7a8d29c2006-08-13 23:46:44 +0200183 return -ENODEV;
184 }
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200185
186 for (i = 0; i < MAX_CHIPS && chip_addr[i]; i++) {
187 if (chip_addr[i] < 0x03 || chip_addr[i] > 0x77) {
Jean Delvare31d178b2012-10-28 21:37:00 +0100188 pr_err("i2c-stub: Invalid chip address 0x%02x\n",
189 chip_addr[i]);
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200190 return -EINVAL;
191 }
192
Jean Delvare31d178b2012-10-28 21:37:00 +0100193 pr_info("i2c-stub: Virtual chip at 0x%02x\n", chip_addr[i]);
Jean Delvare7a8d29c2006-08-13 23:46:44 +0200194 }
195
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200196 /* Allocate memory for all chips at once */
197 stub_chips = kzalloc(i * sizeof(struct stub_chip), GFP_KERNEL);
198 if (!stub_chips) {
Jean Delvare31d178b2012-10-28 21:37:00 +0100199 pr_err("i2c-stub: Out of memory\n");
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200200 return -ENOMEM;
201 }
202
203 ret = i2c_add_adapter(&stub_adapter);
204 if (ret)
205 kfree(stub_chips);
206 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209static void __exit i2c_stub_exit(void)
210{
211 i2c_del_adapter(&stub_adapter);
Jean Delvare9d90c1f2007-10-13 23:56:31 +0200212 kfree(stub_chips);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215MODULE_AUTHOR("Mark M. Hoffman <mhoffman@lightlink.com>");
216MODULE_DESCRIPTION("I2C stub driver");
217MODULE_LICENSE("GPL");
218
219module_init(i2c_stub_init);
220module_exit(i2c_stub_exit);