blob: 13c108269a6da9227f669b472b4b3e6e5ca9e4ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 eeprom.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and
5 Philip Edelbrock <phil@netroedge.com>
6 Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7 Copyright (C) 2003 IBM Corp.
8
9 2004-01-16 Jean Delvare <khali@linux-fr.org>
10 Divide the eeprom in 32-byte (arbitrary) slices. This significantly
11 speeds sensors up, as well as various scripts using the eeprom
12 module.
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 2 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27*/
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
30#include <linux/init.h>
31#include <linux/module.h>
32#include <linux/slab.h>
33#include <linux/sched.h>
34#include <linux/jiffies.h>
35#include <linux/i2c.h>
Ingo Molnar5c085d32006-01-18 23:16:04 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Addresses to scan */
39static unsigned short normal_i2c[] = { 0x50, 0x51, 0x52, 0x53, 0x54,
40 0x55, 0x56, 0x57, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020043I2C_CLIENT_INSMOD_1(eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45
46/* Size of EEPROM in bytes */
47#define EEPROM_SIZE 256
48
49/* possible types of eeprom devices */
50enum eeprom_nature {
51 UNKNOWN,
52 VAIO,
53};
54
55/* Each client has this additional data */
56struct eeprom_data {
57 struct i2c_client client;
Ingo Molnar5c085d32006-01-18 23:16:04 +010058 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 u8 valid; /* bitfield, bit!=0 if slice is valid */
60 unsigned long last_updated[8]; /* In jiffies, 8 slices */
61 u8 data[EEPROM_SIZE]; /* Register values */
62 enum eeprom_nature nature;
63};
64
65
66static int eeprom_attach_adapter(struct i2c_adapter *adapter);
67static int eeprom_detect(struct i2c_adapter *adapter, int address, int kind);
68static int eeprom_detach_client(struct i2c_client *client);
69
70/* This is the driver that will be inserted */
71static struct i2c_driver eeprom_driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +010072 .driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +010073 .name = "eeprom",
74 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .id = I2C_DRIVERID_EEPROM,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 .attach_adapter = eeprom_attach_adapter,
77 .detach_client = eeprom_detach_client,
78};
79
80static void eeprom_update_client(struct i2c_client *client, u8 slice)
81{
82 struct eeprom_data *data = i2c_get_clientdata(client);
83 int i, j;
84
Ingo Molnar5c085d32006-01-18 23:16:04 +010085 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 if (!(data->valid & (1 << slice)) ||
88 time_after(jiffies, data->last_updated[slice] + 300 * HZ)) {
89 dev_dbg(&client->dev, "Starting eeprom update, slice %u\n", slice);
90
91 if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
Jean Delvare30dac742005-10-08 00:15:59 +020092 for (i = slice << 5; i < (slice + 1) << 5; i += I2C_SMBUS_BLOCK_MAX)
93 if (i2c_smbus_read_i2c_block_data(client, i, data->data + i) != I2C_SMBUS_BLOCK_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto exit;
95 } else {
96 if (i2c_smbus_write_byte(client, slice << 5)) {
97 dev_dbg(&client->dev, "eeprom read start has failed!\n");
98 goto exit;
99 }
100 for (i = slice << 5; i < (slice + 1) << 5; i++) {
101 j = i2c_smbus_read_byte(client);
102 if (j < 0)
103 goto exit;
104 data->data[i] = (u8) j;
105 }
106 }
107 data->last_updated[slice] = jiffies;
108 data->valid |= (1 << slice);
109 }
110exit:
Ingo Molnar5c085d32006-01-18 23:16:04 +0100111 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static ssize_t eeprom_read(struct kobject *kobj, char *buf, loff_t off, size_t count)
115{
116 struct i2c_client *client = to_i2c_client(container_of(kobj, struct device, kobj));
117 struct eeprom_data *data = i2c_get_clientdata(client);
118 u8 slice;
119
120 if (off > EEPROM_SIZE)
121 return 0;
122 if (off + count > EEPROM_SIZE)
123 count = EEPROM_SIZE - off;
124
125 /* Only refresh slices which contain requested bytes */
126 for (slice = off >> 5; slice <= (off + count - 1) >> 5; slice++)
127 eeprom_update_client(client, slice);
128
129 /* Hide Vaio security settings to regular users (16 first bytes) */
130 if (data->nature == VAIO && off < 16 && !capable(CAP_SYS_ADMIN)) {
131 size_t in_row1 = 16 - off;
132 in_row1 = min(in_row1, count);
133 memset(buf, 0, in_row1);
134 if (count - in_row1 > 0)
135 memcpy(buf + in_row1, &data->data[16], count - in_row1);
136 } else {
137 memcpy(buf, &data->data[off], count);
138 }
139
140 return count;
141}
142
143static struct bin_attribute eeprom_attr = {
144 .attr = {
145 .name = "eeprom",
146 .mode = S_IRUGO,
147 .owner = THIS_MODULE,
148 },
149 .size = EEPROM_SIZE,
150 .read = eeprom_read,
151};
152
153static int eeprom_attach_adapter(struct i2c_adapter *adapter)
154{
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200155 return i2c_probe(adapter, &addr_data, eeprom_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200158/* This function is called by i2c_probe */
Ben Dooks6536c492005-10-26 21:04:12 +0200159static int eeprom_detect(struct i2c_adapter *adapter, int address, int kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct i2c_client *new_client;
162 struct eeprom_data *data;
163 int err = 0;
164
165 /* There are three ways we can read the EEPROM data:
166 (1) I2C block reads (faster, but unsupported by most adapters)
167 (2) Consecutive byte reads (100% overhead)
168 (3) Regular byte data reads (200% overhead)
169 The third method is not implemented by this driver because all
170 known adapters support at least the second. */
171 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA
172 | I2C_FUNC_SMBUS_BYTE))
173 goto exit;
174
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200175 if (!(data = kzalloc(sizeof(struct eeprom_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 err = -ENOMEM;
177 goto exit;
178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 new_client = &data->client;
181 memset(data->data, 0xff, EEPROM_SIZE);
182 i2c_set_clientdata(new_client, data);
183 new_client->addr = address;
184 new_client->adapter = adapter;
185 new_client->driver = &eeprom_driver;
186 new_client->flags = 0;
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /* Fill in the remaining client fields */
189 strlcpy(new_client->name, "eeprom", I2C_NAME_SIZE);
190 data->valid = 0;
Ingo Molnar5c085d32006-01-18 23:16:04 +0100191 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 data->nature = UNKNOWN;
193
194 /* Tell the I2C layer a new client has arrived */
195 if ((err = i2c_attach_client(new_client)))
196 goto exit_kfree;
197
198 /* Detect the Vaio nature of EEPROMs.
199 We use the "PCG-" prefix as the signature. */
200 if (address == 0x57) {
201 if (i2c_smbus_read_byte_data(new_client, 0x80) == 'P'
202 && i2c_smbus_read_byte(new_client) == 'C'
203 && i2c_smbus_read_byte(new_client) == 'G'
204 && i2c_smbus_read_byte(new_client) == '-') {
205 dev_info(&new_client->dev, "Vaio EEPROM detected, "
206 "enabling password protection\n");
207 data->nature = VAIO;
208 }
209 }
210
211 /* create the sysfs eeprom file */
212 sysfs_create_bin_file(&new_client->dev.kobj, &eeprom_attr);
213
214 return 0;
215
216exit_kfree:
217 kfree(data);
218exit:
219 return err;
220}
221
222static int eeprom_detach_client(struct i2c_client *client)
223{
224 int err;
225
226 err = i2c_detach_client(client);
Jean Delvare7bef5592005-07-27 22:14:49 +0200227 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 kfree(i2c_get_clientdata(client));
231
232 return 0;
233}
234
235static int __init eeprom_init(void)
236{
237 return i2c_add_driver(&eeprom_driver);
238}
239
240static void __exit eeprom_exit(void)
241{
242 i2c_del_driver(&eeprom_driver);
243}
244
245
246MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
247 "Philip Edelbrock <phil@netroedge.com> and "
248 "Greg Kroah-Hartman <greg@kroah.com>");
249MODULE_DESCRIPTION("I2C EEPROM driver");
250MODULE_LICENSE("GPL");
251
252module_init(eeprom_init);
253module_exit(eeprom_exit);