blob: de550a605f7dcb590903f9cd57ac23060bd4ee3b [file] [log] [blame]
Wolfram Sang2b7a5052008-07-14 22:38:35 +02001/*
2 * at24.c - handle most I2C EEPROMs
3 *
4 * Copyright (C) 2005-2007 David Brownell
5 * Copyright (C) 2008 Wolfram Sang, Pengutronix
6 *
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#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/slab.h>
16#include <linux/delay.h>
17#include <linux/mutex.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020018#include <linux/mod_devicetable.h>
19#include <linux/log2.h>
20#include <linux/bitops.h>
21#include <linux/jiffies.h>
Wolfram Sang9ed030d2010-11-17 13:00:48 +010022#include <linux/of.h>
Andy Shevchenko40d8edc2015-10-23 12:16:44 +030023#include <linux/acpi.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020024#include <linux/i2c.h>
Andrew Lunn57d15552016-02-26 20:59:20 +010025#include <linux/nvmem-provider.h>
Vivien Didelot25f73ed2013-09-27 15:06:28 -040026#include <linux/platform_data/at24.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020027
28/*
29 * I2C EEPROMs from most vendors are inexpensive and mostly interchangeable.
30 * Differences between different vendor product lines (like Atmel AT24C or
31 * MicroChip 24LC, etc) won't much matter for typical read/write access.
32 * There are also I2C RAM chips, likewise interchangeable. One example
33 * would be the PCF8570, which acts like a 24c02 EEPROM (256 bytes).
34 *
35 * However, misconfiguration can lose data. "Set 16-bit memory address"
36 * to a part with 8-bit addressing will overwrite data. Writing with too
37 * big a page size also loses data. And it's not safe to assume that the
38 * conventional addresses 0x50..0x57 only hold eeproms; a PCF8563 RTC
39 * uses 0x51, for just one example.
40 *
41 * Accordingly, explicit board-specific configuration data should be used
42 * in almost all cases. (One partial exception is an SMBus used to access
43 * "SPD" data for DRAM sticks. Those only use 24c02 EEPROMs.)
44 *
45 * So this driver uses "new style" I2C driver binding, expecting to be
46 * told what devices exist. That may be in arch/X/mach-Y/board-Z.c or
47 * similar kernel-resident tables; or, configuration data coming from
48 * a bootloader.
49 *
50 * Other than binding model, current differences from "eeprom" driver are
51 * that this one handles write access and isn't restricted to 24c02 devices.
52 * It also handles larger devices (32 kbit and up) with two-byte addresses,
53 * which won't work on pure SMBus systems.
54 */
55
56struct at24_data {
57 struct at24_platform_data chip;
Jean Delvare7aeb9662010-05-21 18:40:57 +020058 int use_smbus;
Christian Gmeinera839ce62014-10-09 11:07:58 +020059 int use_smbus_write;
Wolfram Sang2b7a5052008-07-14 22:38:35 +020060
61 /*
62 * Lock protects against activities from other Linux tasks,
63 * but not from changes by other I2C masters.
64 */
65 struct mutex lock;
Wolfram Sang2b7a5052008-07-14 22:38:35 +020066
67 u8 *writebuf;
68 unsigned write_max;
69 unsigned num_addresses;
70
Andrew Lunn57d15552016-02-26 20:59:20 +010071 struct nvmem_config nvmem_config;
72 struct nvmem_device *nvmem;
73
Wolfram Sang2b7a5052008-07-14 22:38:35 +020074 /*
75 * Some chips tie up multiple I2C addresses; dummy devices reserve
76 * them for us, and we'll use them with SMBus calls.
77 */
78 struct i2c_client *client[];
79};
80
81/*
82 * This parameter is to help this driver avoid blocking other drivers out
83 * of I2C for potentially troublesome amounts of time. With a 100 kHz I2C
84 * clock, one 256 byte read takes about 1/43 second which is excessive;
85 * but the 1/170 second it takes at 400 kHz may be quite reasonable; and
86 * at 1 MHz (Fm+) a 1/430 second delay could easily be invisible.
87 *
88 * This value is forced to be a power of two so that writes align on pages.
89 */
90static unsigned io_limit = 128;
91module_param(io_limit, uint, 0);
92MODULE_PARM_DESC(io_limit, "Maximum bytes per I/O (default 128)");
93
94/*
95 * Specs often allow 5 msec for a page write, sometimes 20 msec;
96 * it's important to recover from write timeouts.
97 */
98static unsigned write_timeout = 25;
99module_param(write_timeout, uint, 0);
100MODULE_PARM_DESC(write_timeout, "Time (in ms) to try writes (default 25)");
101
102#define AT24_SIZE_BYTELEN 5
103#define AT24_SIZE_FLAGS 8
104
105#define AT24_BITMASK(x) (BIT(x) - 1)
106
107/* create non-zero magic value for given eeprom parameters */
108#define AT24_DEVICE_MAGIC(_len, _flags) \
109 ((1 << AT24_SIZE_FLAGS | (_flags)) \
110 << AT24_SIZE_BYTELEN | ilog2(_len))
111
112static const struct i2c_device_id at24_ids[] = {
113 /* needs 8 addresses as A0-A2 are ignored */
114 { "24c00", AT24_DEVICE_MAGIC(128 / 8, AT24_FLAG_TAKE8ADDR) },
115 /* old variants can't be handled with this generic entry! */
116 { "24c01", AT24_DEVICE_MAGIC(1024 / 8, 0) },
117 { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) },
118 /* spd is a 24c02 in memory DIMMs */
119 { "spd", AT24_DEVICE_MAGIC(2048 / 8,
120 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) },
121 { "24c04", AT24_DEVICE_MAGIC(4096 / 8, 0) },
122 /* 24rf08 quirk is handled at i2c-core */
123 { "24c08", AT24_DEVICE_MAGIC(8192 / 8, 0) },
124 { "24c16", AT24_DEVICE_MAGIC(16384 / 8, 0) },
125 { "24c32", AT24_DEVICE_MAGIC(32768 / 8, AT24_FLAG_ADDR16) },
126 { "24c64", AT24_DEVICE_MAGIC(65536 / 8, AT24_FLAG_ADDR16) },
127 { "24c128", AT24_DEVICE_MAGIC(131072 / 8, AT24_FLAG_ADDR16) },
128 { "24c256", AT24_DEVICE_MAGIC(262144 / 8, AT24_FLAG_ADDR16) },
129 { "24c512", AT24_DEVICE_MAGIC(524288 / 8, AT24_FLAG_ADDR16) },
130 { "24c1024", AT24_DEVICE_MAGIC(1048576 / 8, AT24_FLAG_ADDR16) },
131 { "at24", 0 },
132 { /* END OF LIST */ }
133};
134MODULE_DEVICE_TABLE(i2c, at24_ids);
135
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300136static const struct acpi_device_id at24_acpi_ids[] = {
137 { "INT3499", AT24_DEVICE_MAGIC(8192 / 8, 0) },
138 { }
139};
140MODULE_DEVICE_TABLE(acpi, at24_acpi_ids);
141
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200142/*-------------------------------------------------------------------------*/
143
144/*
145 * This routine supports chips which consume multiple I2C addresses. It
146 * computes the addressing information to be used for a given r/w request.
147 * Assumes that sanity checks for offset happened at sysfs-layer.
148 */
149static struct i2c_client *at24_translate_offset(struct at24_data *at24,
150 unsigned *offset)
151{
152 unsigned i;
153
154 if (at24->chip.flags & AT24_FLAG_ADDR16) {
155 i = *offset >> 16;
156 *offset &= 0xffff;
157 } else {
158 i = *offset >> 8;
159 *offset &= 0xff;
160 }
161
162 return at24->client[i];
163}
164
165static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf,
166 unsigned offset, size_t count)
167{
168 struct i2c_msg msg[2];
169 u8 msgbuf[2];
170 struct i2c_client *client;
Wolfram Sang4d291962009-11-26 09:22:33 +0100171 unsigned long timeout, read_time;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200172 int status, i;
173
174 memset(msg, 0, sizeof(msg));
175
176 /*
177 * REVISIT some multi-address chips don't rollover page reads to
178 * the next slave address, so we may need to truncate the count.
179 * Those chips might need another quirk flag.
180 *
181 * If the real hardware used four adjacent 24c02 chips and that
182 * were misconfigured as one 24c08, that would be a similar effect:
183 * one "eeprom" file not four, but larger reads would fail when
184 * they crossed certain pages.
185 */
186
187 /*
188 * Slave address and byte offset derive from the offset. Always
189 * set the byte address; on a multi-master board, another master
190 * may have changed the chip's "current" address pointer.
191 */
192 client = at24_translate_offset(at24, &offset);
193
194 if (count > io_limit)
195 count = io_limit;
196
Irina Tirdea2cd9fbd2015-08-12 17:31:34 +0300197 if (at24->use_smbus) {
Wolfram Sang4d291962009-11-26 09:22:33 +0100198 /* Smaller eeproms can work given some SMBus extension calls */
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200199 if (count > I2C_SMBUS_BLOCK_MAX)
200 count = I2C_SMBUS_BLOCK_MAX;
Irina Tirdea2cd9fbd2015-08-12 17:31:34 +0300201 } else {
Wolfram Sang4d291962009-11-26 09:22:33 +0100202 /*
203 * When we have a better choice than SMBus calls, use a
204 * combined I2C message. Write address; then read up to
205 * io_limit data bytes. Note that read page rollover helps us
206 * here (unlike writes). msgbuf is u8 and will cast to our
207 * needs.
208 */
209 i = 0;
210 if (at24->chip.flags & AT24_FLAG_ADDR16)
211 msgbuf[i++] = offset >> 8;
212 msgbuf[i++] = offset;
213
214 msg[0].addr = client->addr;
215 msg[0].buf = msgbuf;
216 msg[0].len = i;
217
218 msg[1].addr = client->addr;
219 msg[1].flags = I2C_M_RD;
220 msg[1].buf = buf;
221 msg[1].len = count;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200222 }
223
224 /*
Wolfram Sang4d291962009-11-26 09:22:33 +0100225 * Reads fail if the previous write didn't complete yet. We may
226 * loop a few times until this one succeeds, waiting at least
227 * long enough for one entire page write to work.
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200228 */
Wolfram Sang4d291962009-11-26 09:22:33 +0100229 timeout = jiffies + msecs_to_jiffies(write_timeout);
230 do {
231 read_time = jiffies;
Irina Tirdea2cd9fbd2015-08-12 17:31:34 +0300232 if (at24->use_smbus) {
233 status = i2c_smbus_read_i2c_block_data_or_emulated(client, offset,
234 count, buf);
235 } else {
Wolfram Sang4d291962009-11-26 09:22:33 +0100236 status = i2c_transfer(client->adapter, msg, 2);
237 if (status == 2)
238 status = count;
239 }
240 dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n",
241 count, offset, status, jiffies);
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200242
Wolfram Sang4d291962009-11-26 09:22:33 +0100243 if (status == count)
244 return count;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200245
Wolfram Sang4d291962009-11-26 09:22:33 +0100246 /* REVISIT: at HZ=100, this is sloooow */
247 msleep(1);
248 } while (time_before(read_time, timeout));
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200249
Wolfram Sang4d291962009-11-26 09:22:33 +0100250 return -ETIMEDOUT;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200251}
252
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100253static int at24_read(void *priv, unsigned int off, void *val, size_t count)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200254{
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100255 struct at24_data *at24 = priv;
256 char *buf = val;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200257
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200258 if (unlikely(!count))
259 return count;
260
261 /*
262 * Read data from chip, protecting against concurrent updates
263 * from this host, but not from other I2C masters.
264 */
265 mutex_lock(&at24->lock);
266
267 while (count) {
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100268 int status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200269
270 status = at24_eeprom_read(at24, buf, off, count);
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100271 if (status < 0) {
272 mutex_unlock(&at24->lock);
273 return status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200274 }
275 buf += status;
276 off += status;
277 count -= status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200278 }
279
280 mutex_unlock(&at24->lock);
281
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100282 return 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200283}
284
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200285/*
286 * Note that if the hardware write-protect pin is pulled high, the whole
287 * chip is normally write protected. But there are plenty of product
288 * variants here, including OTP fuses and partial chip protect.
289 *
290 * We only use page mode writes; the alternative is sloooow. This routine
291 * writes at most one page.
292 */
Geert Uytterhoeven280ca292009-04-13 14:40:06 -0700293static ssize_t at24_eeprom_write(struct at24_data *at24, const char *buf,
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200294 unsigned offset, size_t count)
295{
296 struct i2c_client *client;
297 struct i2c_msg msg;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200298 ssize_t status = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200299 unsigned long timeout, write_time;
300 unsigned next_page;
301
302 /* Get corresponding I2C address and adjust offset */
303 client = at24_translate_offset(at24, &offset);
304
305 /* write_max is at most a page */
306 if (count > at24->write_max)
307 count = at24->write_max;
308
309 /* Never roll over backwards, to the start of this page */
310 next_page = roundup(offset + 1, at24->chip.page_size);
311 if (offset + count > next_page)
312 count = next_page - offset;
313
314 /* If we'll use I2C calls for I/O, set up the message */
315 if (!at24->use_smbus) {
316 int i = 0;
317
318 msg.addr = client->addr;
319 msg.flags = 0;
320
321 /* msg.buf is u8 and casts will mask the values */
322 msg.buf = at24->writebuf;
323 if (at24->chip.flags & AT24_FLAG_ADDR16)
324 msg.buf[i++] = offset >> 8;
325
326 msg.buf[i++] = offset;
327 memcpy(&msg.buf[i], buf, count);
328 msg.len = i + count;
329 }
330
331 /*
332 * Writes fail if the previous one didn't complete yet. We may
333 * loop a few times until this one succeeds, waiting at least
334 * long enough for one entire page write to work.
335 */
336 timeout = jiffies + msecs_to_jiffies(write_timeout);
337 do {
338 write_time = jiffies;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200339 if (at24->use_smbus_write) {
340 switch (at24->use_smbus_write) {
341 case I2C_SMBUS_I2C_BLOCK_DATA:
342 status = i2c_smbus_write_i2c_block_data(client,
343 offset, count, buf);
344 break;
345 case I2C_SMBUS_BYTE_DATA:
346 status = i2c_smbus_write_byte_data(client,
347 offset, buf[0]);
348 break;
349 }
350
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200351 if (status == 0)
352 status = count;
353 } else {
354 status = i2c_transfer(client->adapter, &msg, 1);
355 if (status == 1)
356 status = count;
357 }
David Brownell2ce5b342008-08-10 22:56:16 +0200358 dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n",
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200359 count, offset, status, jiffies);
360
361 if (status == count)
362 return count;
363
364 /* REVISIT: at HZ=100, this is sloooow */
365 msleep(1);
366 } while (time_before(write_time, timeout));
367
368 return -ETIMEDOUT;
369}
370
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100371static int at24_write(void *priv, unsigned int off, void *val, size_t count)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200372{
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100373 struct at24_data *at24 = priv;
374 char *buf = val;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200375
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200376 if (unlikely(!count))
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100377 return -EINVAL;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200378
379 /*
380 * Write data to chip, protecting against concurrent updates
381 * from this host, but not from other I2C masters.
382 */
383 mutex_lock(&at24->lock);
384
385 while (count) {
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100386 int status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200387
388 status = at24_eeprom_write(at24, buf, off, count);
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100389 if (status < 0) {
390 mutex_unlock(&at24->lock);
391 return status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200392 }
393 buf += status;
394 off += status;
395 count -= status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200396 }
397
398 mutex_unlock(&at24->lock);
399
Andrew Lunn57d15552016-02-26 20:59:20 +0100400 return 0;
401}
402
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100403#ifdef CONFIG_OF
404static void at24_get_ofdata(struct i2c_client *client,
405 struct at24_platform_data *chip)
406{
407 const __be32 *val;
408 struct device_node *node = client->dev.of_node;
409
410 if (node) {
411 if (of_get_property(node, "read-only", NULL))
412 chip->flags |= AT24_FLAG_READONLY;
413 val = of_get_property(node, "pagesize", NULL);
414 if (val)
415 chip->page_size = be32_to_cpup(val);
416 }
417}
418#else
419static void at24_get_ofdata(struct i2c_client *client,
420 struct at24_platform_data *chip)
421{ }
422#endif /* CONFIG_OF */
423
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200424static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
425{
426 struct at24_platform_data chip;
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300427 kernel_ulong_t magic = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200428 bool writable;
Jean Delvare7aeb9662010-05-21 18:40:57 +0200429 int use_smbus = 0;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200430 int use_smbus_write = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200431 struct at24_data *at24;
432 int err;
433 unsigned i, num_addresses;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200434
435 if (client->dev.platform_data) {
436 chip = *(struct at24_platform_data *)client->dev.platform_data;
437 } else {
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300438 if (id) {
439 magic = id->driver_data;
440 } else {
441 const struct acpi_device_id *aid;
442
443 aid = acpi_match_device(at24_acpi_ids, &client->dev);
444 if (aid)
445 magic = aid->driver_data;
446 }
447 if (!magic)
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700448 return -ENODEV;
449
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200450 chip.byte_len = BIT(magic & AT24_BITMASK(AT24_SIZE_BYTELEN));
451 magic >>= AT24_SIZE_BYTELEN;
452 chip.flags = magic & AT24_BITMASK(AT24_SIZE_FLAGS);
453 /*
454 * This is slow, but we can't know all eeproms, so we better
455 * play safe. Specifying custom eeprom-types via platform_data
456 * is recommended anyhow.
457 */
458 chip.page_size = 1;
Kevin Hilman7274ec82009-04-02 16:56:57 -0700459
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100460 /* update chipdata if OF is present */
461 at24_get_ofdata(client, &chip);
462
Kevin Hilman7274ec82009-04-02 16:56:57 -0700463 chip.setup = NULL;
464 chip.context = NULL;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200465 }
466
467 if (!is_power_of_2(chip.byte_len))
468 dev_warn(&client->dev,
469 "byte_len looks suspicious (no power of 2)!\n");
Wolfram Sang45efe842010-11-17 13:00:49 +0100470 if (!chip.page_size) {
471 dev_err(&client->dev, "page_size must not be 0!\n");
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700472 return -EINVAL;
Wolfram Sang45efe842010-11-17 13:00:49 +0100473 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200474 if (!is_power_of_2(chip.page_size))
475 dev_warn(&client->dev,
476 "page_size looks suspicious (no power of 2)!\n");
477
478 /* Use I2C operations unless we're stuck with SMBus extensions. */
479 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700480 if (chip.flags & AT24_FLAG_ADDR16)
481 return -EPFNOSUPPORT;
482
Jean Delvare7aeb9662010-05-21 18:40:57 +0200483 if (i2c_check_functionality(client->adapter,
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200484 I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
Jean Delvare7aeb9662010-05-21 18:40:57 +0200485 use_smbus = I2C_SMBUS_I2C_BLOCK_DATA;
486 } else if (i2c_check_functionality(client->adapter,
487 I2C_FUNC_SMBUS_READ_WORD_DATA)) {
488 use_smbus = I2C_SMBUS_WORD_DATA;
489 } else if (i2c_check_functionality(client->adapter,
490 I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
491 use_smbus = I2C_SMBUS_BYTE_DATA;
492 } else {
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700493 return -EPFNOSUPPORT;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200494 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200495 }
496
Christian Gmeinera839ce62014-10-09 11:07:58 +0200497 /* Use I2C operations unless we're stuck with SMBus extensions. */
498 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
499 if (i2c_check_functionality(client->adapter,
500 I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)) {
501 use_smbus_write = I2C_SMBUS_I2C_BLOCK_DATA;
502 } else if (i2c_check_functionality(client->adapter,
503 I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) {
504 use_smbus_write = I2C_SMBUS_BYTE_DATA;
505 chip.page_size = 1;
506 }
507 }
508
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200509 if (chip.flags & AT24_FLAG_TAKE8ADDR)
510 num_addresses = 8;
511 else
512 num_addresses = DIV_ROUND_UP(chip.byte_len,
513 (chip.flags & AT24_FLAG_ADDR16) ? 65536 : 256);
514
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700515 at24 = devm_kzalloc(&client->dev, sizeof(struct at24_data) +
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200516 num_addresses * sizeof(struct i2c_client *), GFP_KERNEL);
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700517 if (!at24)
518 return -ENOMEM;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200519
520 mutex_init(&at24->lock);
521 at24->use_smbus = use_smbus;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200522 at24->use_smbus_write = use_smbus_write;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200523 at24->chip = chip;
524 at24->num_addresses = num_addresses;
525
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200526 writable = !(chip.flags & AT24_FLAG_READONLY);
527 if (writable) {
Christian Gmeinera839ce62014-10-09 11:07:58 +0200528 if (!use_smbus || use_smbus_write) {
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200529
530 unsigned write_max = chip.page_size;
531
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200532 if (write_max > io_limit)
533 write_max = io_limit;
534 if (use_smbus && write_max > I2C_SMBUS_BLOCK_MAX)
535 write_max = I2C_SMBUS_BLOCK_MAX;
536 at24->write_max = write_max;
537
538 /* buffer (data + address at the beginning) */
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700539 at24->writebuf = devm_kzalloc(&client->dev,
540 write_max + 2, GFP_KERNEL);
541 if (!at24->writebuf)
542 return -ENOMEM;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200543 } else {
544 dev_warn(&client->dev,
545 "cannot write due to controller restrictions.");
546 }
547 }
548
549 at24->client[0] = client;
550
551 /* use dummy devices for multiple-address chips */
552 for (i = 1; i < num_addresses; i++) {
553 at24->client[i] = i2c_new_dummy(client->adapter,
554 client->addr + i);
555 if (!at24->client[i]) {
556 dev_err(&client->dev, "address 0x%02x unavailable\n",
557 client->addr + i);
558 err = -EADDRINUSE;
559 goto err_clients;
560 }
561 }
562
Andrew Lunn57d15552016-02-26 20:59:20 +0100563 at24->nvmem_config.name = dev_name(&client->dev);
564 at24->nvmem_config.dev = &client->dev;
565 at24->nvmem_config.read_only = !writable;
566 at24->nvmem_config.root_only = true;
567 at24->nvmem_config.owner = THIS_MODULE;
568 at24->nvmem_config.compat = true;
569 at24->nvmem_config.base_dev = &client->dev;
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100570 at24->nvmem_config.reg_read = at24_read;
571 at24->nvmem_config.reg_write = at24_write;
572 at24->nvmem_config.priv = at24;
573 at24->nvmem_config.stride = 4;
574 at24->nvmem_config.word_size = 1;
575 at24->nvmem_config.size = chip.byte_len;
Andrew Lunn57d15552016-02-26 20:59:20 +0100576
577 at24->nvmem = nvmem_register(&at24->nvmem_config);
578
579 if (IS_ERR(at24->nvmem)) {
580 err = PTR_ERR(at24->nvmem);
581 goto err_clients;
582 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200583
584 i2c_set_clientdata(client, at24);
585
Andrew Lunn57d15552016-02-26 20:59:20 +0100586 dev_info(&client->dev, "%u byte %s EEPROM, %s, %u bytes/write\n",
587 chip.byte_len, client->name,
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100588 writable ? "writable" : "read-only", at24->write_max);
Jean Delvare7aeb9662010-05-21 18:40:57 +0200589 if (use_smbus == I2C_SMBUS_WORD_DATA ||
590 use_smbus == I2C_SMBUS_BYTE_DATA) {
591 dev_notice(&client->dev, "Falling back to %s reads, "
592 "performance will suffer\n", use_smbus ==
593 I2C_SMBUS_WORD_DATA ? "word" : "byte");
594 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200595
Kevin Hilman7274ec82009-04-02 16:56:57 -0700596 /* export data to kernel code */
597 if (chip.setup)
Andrew Lunnbec3c112016-02-26 20:59:24 +0100598 chip.setup(at24->nvmem, chip.context);
Kevin Hilman7274ec82009-04-02 16:56:57 -0700599
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200600 return 0;
601
602err_clients:
603 for (i = 1; i < num_addresses; i++)
604 if (at24->client[i])
605 i2c_unregister_device(at24->client[i]);
606
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200607 return err;
608}
609
Bill Pemberton486a5c22012-11-19 13:26:02 -0500610static int at24_remove(struct i2c_client *client)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200611{
612 struct at24_data *at24;
613 int i;
614
615 at24 = i2c_get_clientdata(client);
Andrew Lunn57d15552016-02-26 20:59:20 +0100616
617 nvmem_unregister(at24->nvmem);
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200618
619 for (i = 1; i < at24->num_addresses; i++)
620 i2c_unregister_device(at24->client[i]);
621
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200622 return 0;
623}
624
625/*-------------------------------------------------------------------------*/
626
627static struct i2c_driver at24_driver = {
628 .driver = {
629 .name = "at24",
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300630 .acpi_match_table = ACPI_PTR(at24_acpi_ids),
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200631 },
632 .probe = at24_probe,
Bill Pemberton2d6bed92012-11-19 13:21:23 -0500633 .remove = at24_remove,
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200634 .id_table = at24_ids,
635};
636
637static int __init at24_init(void)
638{
Wolfram Sang45efe842010-11-17 13:00:49 +0100639 if (!io_limit) {
640 pr_err("at24: io_limit must not be 0!\n");
641 return -EINVAL;
642 }
643
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200644 io_limit = rounddown_pow_of_two(io_limit);
645 return i2c_add_driver(&at24_driver);
646}
647module_init(at24_init);
648
649static void __exit at24_exit(void)
650{
651 i2c_del_driver(&at24_driver);
652}
653module_exit(at24_exit);
654
655MODULE_DESCRIPTION("Driver for most I2C EEPROMs");
656MODULE_AUTHOR("David Brownell and Wolfram Sang");
657MODULE_LICENSE("GPL");