eeprom.c 6.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
    Copyright (C) 1998, 1999  Frodo Looijaard <frodol@dds.nl> and
			       Philip Edelbrock <phil@netroedge.com>
    Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
    Copyright (C) 2003 IBM Corp.
6
    Copyright (C) 2004 Jean Delvare <khali@linux-fr.org>
L
Linus Torvalds 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/jiffies.h>
#include <linux/i2c.h>
29
#include <linux/mutex.h>
L
Linus Torvalds 已提交
30 31

/* Addresses to scan */
32
static const unsigned short normal_i2c[] = { 0x50, 0x51, 0x52, 0x53, 0x54,
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46
					0x55, 0x56, 0x57, I2C_CLIENT_END };


/* Size of EEPROM in bytes */
#define EEPROM_SIZE		256

/* possible types of eeprom devices */
enum eeprom_nature {
	UNKNOWN,
	VAIO,
};

/* Each client has this additional data */
struct eeprom_data {
47
	struct mutex update_lock;
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57
	u8 valid;			/* bitfield, bit!=0 if slice is valid */
	unsigned long last_updated[8];	/* In jiffies, 8 slices */
	u8 data[EEPROM_SIZE];		/* Register values */
	enum eeprom_nature nature;
};


static void eeprom_update_client(struct i2c_client *client, u8 slice)
{
	struct eeprom_data *data = i2c_get_clientdata(client);
58
	int i;
L
Linus Torvalds 已提交
59

60
	mutex_lock(&data->update_lock);
L
Linus Torvalds 已提交
61 62 63 64 65 66

	if (!(data->valid & (1 << slice)) ||
	    time_after(jiffies, data->last_updated[slice] + 300 * HZ)) {
		dev_dbg(&client->dev, "Starting eeprom update, slice %u\n", slice);

		if (i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
67 68 69 70
			for (i = slice << 5; i < (slice + 1) << 5; i += 32)
				if (i2c_smbus_read_i2c_block_data(client, i,
							32, data->data + i)
							!= 32)
L
Linus Torvalds 已提交
71 72
					goto exit;
		} else {
73 74 75
			for (i = slice << 5; i < (slice + 1) << 5; i += 2) {
				int word = i2c_smbus_read_word_data(client, i);
				if (word < 0)
L
Linus Torvalds 已提交
76
					goto exit;
77 78
				data->data[i] = word & 0xff;
				data->data[i + 1] = word >> 8;
L
Linus Torvalds 已提交
79 80 81 82 83 84
			}
		}
		data->last_updated[slice] = jiffies;
		data->valid |= (1 << slice);
	}
exit:
85
	mutex_unlock(&data->update_lock);
L
Linus Torvalds 已提交
86 87
}

88 89
static ssize_t eeprom_read(struct kobject *kobj, struct bin_attribute *bin_attr,
			   char *buf, loff_t off, size_t count)
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103
{
	struct i2c_client *client = to_i2c_client(container_of(kobj, struct device, kobj));
	struct eeprom_data *data = i2c_get_clientdata(client);
	u8 slice;

	if (off > EEPROM_SIZE)
		return 0;
	if (off + count > EEPROM_SIZE)
		count = EEPROM_SIZE - off;

	/* Only refresh slices which contain requested bytes */
	for (slice = off >> 5; slice <= (off + count - 1) >> 5; slice++)
		eeprom_update_client(client, slice);

104 105 106 107 108 109 110 111 112 113 114 115 116 117
	/* Hide Vaio private settings to regular users:
	   - BIOS passwords: bytes 0x00 to 0x0f
	   - UUID: bytes 0x10 to 0x1f
	   - Serial number: 0xc0 to 0xdf */
	if (data->nature == VAIO && !capable(CAP_SYS_ADMIN)) {
		int i;

		for (i = 0; i < count; i++) {
			if ((off + i <= 0x1f) ||
			    (off + i >= 0xc0 && off + i <= 0xdf))
				buf[i] = 0;
			else
				buf[i] = data->data[off + i];
		}
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
	} else {
		memcpy(buf, &data->data[off], count);
	}

	return count;
}

static struct bin_attribute eeprom_attr = {
	.attr = {
		.name = "eeprom",
		.mode = S_IRUGO,
	},
	.size = EEPROM_SIZE,
	.read = eeprom_read,
};

134
/* Return 0 if detection is successful, -ENODEV otherwise */
135
static int eeprom_detect(struct i2c_client *client, struct i2c_board_info *info)
L
Linus Torvalds 已提交
136
{
137
	struct i2c_adapter *adapter = client->adapter;
L
Linus Torvalds 已提交
138

139 140 141
	/* EDID EEPROMs are often 24C00 EEPROMs, which answer to all
	   addresses 0x50-0x57, but we only care about 0x50. So decline
	   attaching to addresses >= 0x51 on DDC buses */
142 143
	if (!(adapter->class & I2C_CLASS_SPD) && client->addr >= 0x51)
		return -ENODEV;
144

145
	/* There are four ways we can read the EEPROM data:
L
Linus Torvalds 已提交
146
	   (1) I2C block reads (faster, but unsupported by most adapters)
147 148 149 150 151 152 153
	   (2) Word reads (128% overhead)
	   (3) Consecutive byte reads (88% overhead, unsafe)
	   (4) Regular byte data reads (265% overhead)
	   The third and fourth methods are not implemented by this driver
	   because all known adapters support one of the first two. */
	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_WORD_DATA)
	 && !i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_I2C_BLOCK))
154 155 156 157 158 159 160 161 162 163 164 165 166
		return -ENODEV;

	strlcpy(info->type, "eeprom", I2C_NAME_SIZE);

	return 0;
}

static int eeprom_probe(struct i2c_client *client,
			const struct i2c_device_id *id)
{
	struct i2c_adapter *adapter = client->adapter;
	struct eeprom_data *data;
	int err;
L
Linus Torvalds 已提交
167

168
	if (!(data = kzalloc(sizeof(struct eeprom_data), GFP_KERNEL))) {
L
Linus Torvalds 已提交
169 170 171 172 173
		err = -ENOMEM;
		goto exit;
	}

	memset(data->data, 0xff, EEPROM_SIZE);
J
Jean Delvare 已提交
174
	i2c_set_clientdata(client, data);
175
	mutex_init(&data->update_lock);
L
Linus Torvalds 已提交
176 177 178
	data->nature = UNKNOWN;

	/* Detect the Vaio nature of EEPROMs.
179
	   We use the "PCG-" or "VGN-" prefix as the signature. */
180
	if (client->addr == 0x57
181
	 && i2c_check_functionality(adapter, I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
182 183
		char name[4];

J
Jean Delvare 已提交
184 185 186 187
		name[0] = i2c_smbus_read_byte_data(client, 0x80);
		name[1] = i2c_smbus_read_byte_data(client, 0x81);
		name[2] = i2c_smbus_read_byte_data(client, 0x82);
		name[3] = i2c_smbus_read_byte_data(client, 0x83);
188 189

		if (!memcmp(name, "PCG-", 4) || !memcmp(name, "VGN-", 4)) {
J
Jean Delvare 已提交
190
			dev_info(&client->dev, "Vaio EEPROM detected, "
191
				 "enabling privacy protection\n");
L
Linus Torvalds 已提交
192 193 194 195 196
			data->nature = VAIO;
		}
	}

	/* create the sysfs eeprom file */
J
Jean Delvare 已提交
197
	err = sysfs_create_bin_file(&client->dev.kobj, &eeprom_attr);
198
	if (err)
199
		goto exit_kfree;
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208

	return 0;

exit_kfree:
	kfree(data);
exit:
	return err;
}

209
static int eeprom_remove(struct i2c_client *client)
L
Linus Torvalds 已提交
210
{
211
	sysfs_remove_bin_file(&client->dev.kobj, &eeprom_attr);
L
Linus Torvalds 已提交
212 213 214 215 216
	kfree(i2c_get_clientdata(client));

	return 0;
}

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
static const struct i2c_device_id eeprom_id[] = {
	{ "eeprom", 0 },
	{ }
};

static struct i2c_driver eeprom_driver = {
	.driver = {
		.name	= "eeprom",
	},
	.probe		= eeprom_probe,
	.remove		= eeprom_remove,
	.id_table	= eeprom_id,

	.class		= I2C_CLASS_DDC | I2C_CLASS_SPD,
	.detect		= eeprom_detect,
232
	.address_list	= normal_i2c,
233 234
};

L
Linus Torvalds 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
static int __init eeprom_init(void)
{
	return i2c_add_driver(&eeprom_driver);
}

static void __exit eeprom_exit(void)
{
	i2c_del_driver(&eeprom_driver);
}


MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
		"Philip Edelbrock <phil@netroedge.com> and "
		"Greg Kroah-Hartman <greg@kroah.com>");
MODULE_DESCRIPTION("I2C EEPROM driver");
MODULE_LICENSE("GPL");

module_init(eeprom_init);
module_exit(eeprom_exit);