aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/eeprom
diff options
context:
space:
mode:
authorBartosz Golaszewski <bgolaszewski@baylibre.com>2016-06-06 04:48:54 -0400
committerWolfram Sang <wsa@the-dreams.de>2016-07-17 13:58:00 -0400
commit0b813658c11532be90cbf5f579a8ba45a8cc9dbf (patch)
treeb4212c97c25ac933d73a29474cdf8add87ba9c89 /drivers/misc/eeprom
parent818d0220d857cc92cb37600758c5b47c3df3782b (diff)
eeprom: at24: add support for at24mac series
Add a new read function to the at24 driver allowing to retrieve the factory-programmed mac address embedded in chips from the at24mac family. These chips can be instantiated similarily to the at24cs family, except that there's no way of having access to both the serial number and the mac address at the same time - the user must instantiate either an at24cs or at24mac device as both special memory areas are accessible on the same slave address. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/misc/eeprom')
-rw-r--r--drivers/misc/eeprom/at24.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/drivers/misc/eeprom/at24.c b/drivers/misc/eeprom/at24.c
index 3b27ff14876c..04e91e331fc5 100644
--- a/drivers/misc/eeprom/at24.c
+++ b/drivers/misc/eeprom/at24.c
@@ -139,6 +139,10 @@ static const struct i2c_device_id at24_ids[] = {
139 { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) }, 139 { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) },
140 { "24cs02", AT24_DEVICE_MAGIC(16, 140 { "24cs02", AT24_DEVICE_MAGIC(16,
141 AT24_FLAG_SERIAL | AT24_FLAG_READONLY) }, 141 AT24_FLAG_SERIAL | AT24_FLAG_READONLY) },
142 { "24mac402", AT24_DEVICE_MAGIC(48 / 8,
143 AT24_FLAG_MAC | AT24_FLAG_READONLY) },
144 { "24mac602", AT24_DEVICE_MAGIC(64 / 8,
145 AT24_FLAG_MAC | AT24_FLAG_READONLY) },
142 /* spd is a 24c02 in memory DIMMs */ 146 /* spd is a 24c02 in memory DIMMs */
143 { "spd", AT24_DEVICE_MAGIC(2048 / 8, 147 { "spd", AT24_DEVICE_MAGIC(2048 / 8,
144 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) }, 148 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) },
@@ -347,6 +351,36 @@ static ssize_t at24_eeprom_read_serial(struct at24_data *at24, char *buf,
347 return -ETIMEDOUT; 351 return -ETIMEDOUT;
348} 352}
349 353
354static ssize_t at24_eeprom_read_mac(struct at24_data *at24, char *buf,
355 unsigned int offset, size_t count)
356{
357 unsigned long timeout, read_time;
358 struct i2c_client *client;
359 struct i2c_msg msg[2];
360 u8 addrbuf[2];
361 int status;
362
363 client = at24_translate_offset(at24, &offset);
364
365 memset(msg, 0, sizeof(msg));
366 msg[0].addr = client->addr;
367 msg[0].buf = addrbuf;
368 addrbuf[0] = 0x90 + offset;
369 msg[0].len = 1;
370 msg[1].addr = client->addr;
371 msg[1].flags = I2C_M_RD;
372 msg[1].buf = buf;
373 msg[1].len = count;
374
375 loop_until_timeout(timeout, read_time) {
376 status = i2c_transfer(client->adapter, msg, 2);
377 if (status == 2)
378 return count;
379 }
380
381 return -ETIMEDOUT;
382}
383
350/* 384/*
351 * Note that if the hardware write-protect pin is pulled high, the whole 385 * Note that if the hardware write-protect pin is pulled high, the whole
352 * chip is normally write protected. But there are plenty of product 386 * chip is normally write protected. But there are plenty of product
@@ -648,8 +682,16 @@ static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
648 at24->chip = chip; 682 at24->chip = chip;
649 at24->num_addresses = num_addresses; 683 at24->num_addresses = num_addresses;
650 684
685 if ((chip.flags & AT24_FLAG_SERIAL) && (chip.flags & AT24_FLAG_MAC)) {
686 dev_err(&client->dev,
687 "invalid device data - cannot have both AT24_FLAG_SERIAL & AT24_FLAG_MAC.");
688 return -EINVAL;
689 }
690
651 if (chip.flags & AT24_FLAG_SERIAL) { 691 if (chip.flags & AT24_FLAG_SERIAL) {
652 at24->read_func = at24_eeprom_read_serial; 692 at24->read_func = at24_eeprom_read_serial;
693 } else if (chip.flags & AT24_FLAG_MAC) {
694 at24->read_func = at24_eeprom_read_mac;
653 } else { 695 } else {
654 at24->read_func = at24->use_smbus ? at24_eeprom_read_smbus 696 at24->read_func = at24->use_smbus ? at24_eeprom_read_smbus
655 : at24_eeprom_read_i2c; 697 : at24_eeprom_read_i2c;