GNU Linux-libre 4.4.290-gnu1
[releases.git] / drivers / misc / eeprom / at24.c
1 /*
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>
18 #include <linux/sysfs.h>
19 #include <linux/mod_devicetable.h>
20 #include <linux/log2.h>
21 #include <linux/bitops.h>
22 #include <linux/jiffies.h>
23 #include <linux/of.h>
24 #include <linux/acpi.h>
25 #include <linux/i2c.h>
26 #include <linux/platform_data/at24.h>
27
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
56 struct at24_data {
57         struct at24_platform_data chip;
58         struct memory_accessor macc;
59         int use_smbus;
60         int use_smbus_write;
61
62         /*
63          * Lock protects against activities from other Linux tasks,
64          * but not from changes by other I2C masters.
65          */
66         struct mutex lock;
67         struct bin_attribute bin;
68
69         u8 *writebuf;
70         unsigned write_max;
71         unsigned num_addresses;
72
73         /*
74          * Some chips tie up multiple I2C addresses; dummy devices reserve
75          * them for us, and we'll use them with SMBus calls.
76          */
77         struct i2c_client *client[];
78 };
79
80 /*
81  * This parameter is to help this driver avoid blocking other drivers out
82  * of I2C for potentially troublesome amounts of time. With a 100 kHz I2C
83  * clock, one 256 byte read takes about 1/43 second which is excessive;
84  * but the 1/170 second it takes at 400 kHz may be quite reasonable; and
85  * at 1 MHz (Fm+) a 1/430 second delay could easily be invisible.
86  *
87  * This value is forced to be a power of two so that writes align on pages.
88  */
89 static unsigned io_limit = 128;
90 module_param(io_limit, uint, 0);
91 MODULE_PARM_DESC(io_limit, "Maximum bytes per I/O (default 128)");
92
93 /*
94  * Specs often allow 5 msec for a page write, sometimes 20 msec;
95  * it's important to recover from write timeouts.
96  */
97 static unsigned write_timeout = 25;
98 module_param(write_timeout, uint, 0);
99 MODULE_PARM_DESC(write_timeout, "Time (in ms) to try writes (default 25)");
100
101 #define AT24_SIZE_BYTELEN 5
102 #define AT24_SIZE_FLAGS 8
103
104 #define AT24_BITMASK(x) (BIT(x) - 1)
105
106 /* create non-zero magic value for given eeprom parameters */
107 #define AT24_DEVICE_MAGIC(_len, _flags)                 \
108         ((1 << AT24_SIZE_FLAGS | (_flags))              \
109             << AT24_SIZE_BYTELEN | ilog2(_len))
110
111 static const struct i2c_device_id at24_ids[] = {
112         /* needs 8 addresses as A0-A2 are ignored */
113         { "24c00", AT24_DEVICE_MAGIC(128 / 8, AT24_FLAG_TAKE8ADDR) },
114         /* old variants can't be handled with this generic entry! */
115         { "24c01", AT24_DEVICE_MAGIC(1024 / 8, 0) },
116         { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) },
117         /* spd is a 24c02 in memory DIMMs */
118         { "spd", AT24_DEVICE_MAGIC(2048 / 8,
119                 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) },
120         { "24c04", AT24_DEVICE_MAGIC(4096 / 8, 0) },
121         /* 24rf08 quirk is handled at i2c-core */
122         { "24c08", AT24_DEVICE_MAGIC(8192 / 8, 0) },
123         { "24c16", AT24_DEVICE_MAGIC(16384 / 8, 0) },
124         { "24c32", AT24_DEVICE_MAGIC(32768 / 8, AT24_FLAG_ADDR16) },
125         { "24c64", AT24_DEVICE_MAGIC(65536 / 8, AT24_FLAG_ADDR16) },
126         { "24c128", AT24_DEVICE_MAGIC(131072 / 8, AT24_FLAG_ADDR16) },
127         { "24c256", AT24_DEVICE_MAGIC(262144 / 8, AT24_FLAG_ADDR16) },
128         { "24c512", AT24_DEVICE_MAGIC(524288 / 8, AT24_FLAG_ADDR16) },
129         { "24c1024", AT24_DEVICE_MAGIC(1048576 / 8, AT24_FLAG_ADDR16) },
130         { "at24", 0 },
131         { /* END OF LIST */ }
132 };
133 MODULE_DEVICE_TABLE(i2c, at24_ids);
134
135 static const struct acpi_device_id at24_acpi_ids[] = {
136         { "INT3499", AT24_DEVICE_MAGIC(8192 / 8, 0) },
137         { }
138 };
139 MODULE_DEVICE_TABLE(acpi, at24_acpi_ids);
140
141 /*-------------------------------------------------------------------------*/
142
143 /*
144  * This routine supports chips which consume multiple I2C addresses. It
145  * computes the addressing information to be used for a given r/w request.
146  * Assumes that sanity checks for offset happened at sysfs-layer.
147  */
148 static struct i2c_client *at24_translate_offset(struct at24_data *at24,
149                 unsigned *offset)
150 {
151         unsigned i;
152
153         if (at24->chip.flags & AT24_FLAG_ADDR16) {
154                 i = *offset >> 16;
155                 *offset &= 0xffff;
156         } else {
157                 i = *offset >> 8;
158                 *offset &= 0xff;
159         }
160
161         return at24->client[i];
162 }
163
164 static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf,
165                 unsigned offset, size_t count)
166 {
167         struct i2c_msg msg[2];
168         u8 msgbuf[2];
169         struct i2c_client *client;
170         unsigned long timeout, read_time;
171         int status, i;
172
173         memset(msg, 0, sizeof(msg));
174
175         /*
176          * REVISIT some multi-address chips don't rollover page reads to
177          * the next slave address, so we may need to truncate the count.
178          * Those chips might need another quirk flag.
179          *
180          * If the real hardware used four adjacent 24c02 chips and that
181          * were misconfigured as one 24c08, that would be a similar effect:
182          * one "eeprom" file not four, but larger reads would fail when
183          * they crossed certain pages.
184          */
185
186         /*
187          * Slave address and byte offset derive from the offset. Always
188          * set the byte address; on a multi-master board, another master
189          * may have changed the chip's "current" address pointer.
190          */
191         client = at24_translate_offset(at24, &offset);
192
193         if (count > io_limit)
194                 count = io_limit;
195
196         if (at24->use_smbus) {
197                 /* Smaller eeproms can work given some SMBus extension calls */
198                 if (count > I2C_SMBUS_BLOCK_MAX)
199                         count = I2C_SMBUS_BLOCK_MAX;
200         } else {
201                 /*
202                  * When we have a better choice than SMBus calls, use a
203                  * combined I2C message. Write address; then read up to
204                  * io_limit data bytes. Note that read page rollover helps us
205                  * here (unlike writes). msgbuf is u8 and will cast to our
206                  * needs.
207                  */
208                 i = 0;
209                 if (at24->chip.flags & AT24_FLAG_ADDR16)
210                         msgbuf[i++] = offset >> 8;
211                 msgbuf[i++] = offset;
212
213                 msg[0].addr = client->addr;
214                 msg[0].buf = msgbuf;
215                 msg[0].len = i;
216
217                 msg[1].addr = client->addr;
218                 msg[1].flags = I2C_M_RD;
219                 msg[1].buf = buf;
220                 msg[1].len = count;
221         }
222
223         /*
224          * Reads fail if the previous write didn't complete yet. We may
225          * loop a few times until this one succeeds, waiting at least
226          * long enough for one entire page write to work.
227          */
228         timeout = jiffies + msecs_to_jiffies(write_timeout);
229         do {
230                 read_time = jiffies;
231                 if (at24->use_smbus) {
232                         status = i2c_smbus_read_i2c_block_data_or_emulated(client, offset,
233                                                                            count, buf);
234                 } else {
235                         status = i2c_transfer(client->adapter, msg, 2);
236                         if (status == 2)
237                                 status = count;
238                 }
239                 dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n",
240                                 count, offset, status, jiffies);
241
242                 if (status == count)
243                         return count;
244
245                 /* REVISIT: at HZ=100, this is sloooow */
246                 msleep(1);
247         } while (time_before(read_time, timeout));
248
249         return -ETIMEDOUT;
250 }
251
252 static ssize_t at24_read(struct at24_data *at24,
253                 char *buf, loff_t off, size_t count)
254 {
255         ssize_t retval = 0;
256
257         if (unlikely(!count))
258                 return count;
259
260         if (off + count > at24->chip.byte_len)
261                 return -EINVAL;
262
263         /*
264          * Read data from chip, protecting against concurrent updates
265          * from this host, but not from other I2C masters.
266          */
267         mutex_lock(&at24->lock);
268
269         while (count) {
270                 ssize_t status;
271
272                 status = at24_eeprom_read(at24, buf, off, count);
273                 if (status <= 0) {
274                         if (retval == 0)
275                                 retval = status;
276                         break;
277                 }
278                 buf += status;
279                 off += status;
280                 count -= status;
281                 retval += status;
282         }
283
284         mutex_unlock(&at24->lock);
285
286         return retval;
287 }
288
289 static ssize_t at24_bin_read(struct file *filp, struct kobject *kobj,
290                 struct bin_attribute *attr,
291                 char *buf, loff_t off, size_t count)
292 {
293         struct at24_data *at24;
294
295         at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
296         return at24_read(at24, buf, off, count);
297 }
298
299
300 /*
301  * Note that if the hardware write-protect pin is pulled high, the whole
302  * chip is normally write protected. But there are plenty of product
303  * variants here, including OTP fuses and partial chip protect.
304  *
305  * We only use page mode writes; the alternative is sloooow. This routine
306  * writes at most one page.
307  */
308 static ssize_t at24_eeprom_write(struct at24_data *at24, const char *buf,
309                 unsigned offset, size_t count)
310 {
311         struct i2c_client *client;
312         struct i2c_msg msg;
313         ssize_t status = 0;
314         unsigned long timeout, write_time;
315         unsigned next_page;
316
317         if (offset + count > at24->chip.byte_len)
318                 return -EINVAL;
319
320         /* Get corresponding I2C address and adjust offset */
321         client = at24_translate_offset(at24, &offset);
322
323         /* write_max is at most a page */
324         if (count > at24->write_max)
325                 count = at24->write_max;
326
327         /* Never roll over backwards, to the start of this page */
328         next_page = roundup(offset + 1, at24->chip.page_size);
329         if (offset + count > next_page)
330                 count = next_page - offset;
331
332         /* If we'll use I2C calls for I/O, set up the message */
333         if (!at24->use_smbus) {
334                 int i = 0;
335
336                 msg.addr = client->addr;
337                 msg.flags = 0;
338
339                 /* msg.buf is u8 and casts will mask the values */
340                 msg.buf = at24->writebuf;
341                 if (at24->chip.flags & AT24_FLAG_ADDR16)
342                         msg.buf[i++] = offset >> 8;
343
344                 msg.buf[i++] = offset;
345                 memcpy(&msg.buf[i], buf, count);
346                 msg.len = i + count;
347         }
348
349         /*
350          * Writes fail if the previous one didn't complete yet. We may
351          * loop a few times until this one succeeds, waiting at least
352          * long enough for one entire page write to work.
353          */
354         timeout = jiffies + msecs_to_jiffies(write_timeout);
355         do {
356                 write_time = jiffies;
357                 if (at24->use_smbus_write) {
358                         switch (at24->use_smbus_write) {
359                         case I2C_SMBUS_I2C_BLOCK_DATA:
360                                 status = i2c_smbus_write_i2c_block_data(client,
361                                                 offset, count, buf);
362                                 break;
363                         case I2C_SMBUS_BYTE_DATA:
364                                 status = i2c_smbus_write_byte_data(client,
365                                                 offset, buf[0]);
366                                 break;
367                         }
368
369                         if (status == 0)
370                                 status = count;
371                 } else {
372                         status = i2c_transfer(client->adapter, &msg, 1);
373                         if (status == 1)
374                                 status = count;
375                 }
376                 dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n",
377                                 count, offset, status, jiffies);
378
379                 if (status == count)
380                         return count;
381
382                 /* REVISIT: at HZ=100, this is sloooow */
383                 msleep(1);
384         } while (time_before(write_time, timeout));
385
386         return -ETIMEDOUT;
387 }
388
389 static ssize_t at24_write(struct at24_data *at24, const char *buf, loff_t off,
390                           size_t count)
391 {
392         ssize_t retval = 0;
393
394         if (unlikely(!count))
395                 return count;
396
397         /*
398          * Write data to chip, protecting against concurrent updates
399          * from this host, but not from other I2C masters.
400          */
401         mutex_lock(&at24->lock);
402
403         while (count) {
404                 ssize_t status;
405
406                 status = at24_eeprom_write(at24, buf, off, count);
407                 if (status <= 0) {
408                         if (retval == 0)
409                                 retval = status;
410                         break;
411                 }
412                 buf += status;
413                 off += status;
414                 count -= status;
415                 retval += status;
416         }
417
418         mutex_unlock(&at24->lock);
419
420         return retval;
421 }
422
423 static ssize_t at24_bin_write(struct file *filp, struct kobject *kobj,
424                 struct bin_attribute *attr,
425                 char *buf, loff_t off, size_t count)
426 {
427         struct at24_data *at24;
428
429         at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
430         return at24_write(at24, buf, off, count);
431 }
432
433 /*-------------------------------------------------------------------------*/
434
435 /*
436  * This lets other kernel code access the eeprom data. For example, it
437  * might hold a board's Ethernet address, or board-specific calibration
438  * data generated on the manufacturing floor.
439  */
440
441 static ssize_t at24_macc_read(struct memory_accessor *macc, char *buf,
442                          off_t offset, size_t count)
443 {
444         struct at24_data *at24 = container_of(macc, struct at24_data, macc);
445
446         return at24_read(at24, buf, offset, count);
447 }
448
449 static ssize_t at24_macc_write(struct memory_accessor *macc, const char *buf,
450                           off_t offset, size_t count)
451 {
452         struct at24_data *at24 = container_of(macc, struct at24_data, macc);
453
454         return at24_write(at24, buf, offset, count);
455 }
456
457 /*-------------------------------------------------------------------------*/
458
459 #ifdef CONFIG_OF
460 static void at24_get_ofdata(struct i2c_client *client,
461                 struct at24_platform_data *chip)
462 {
463         const __be32 *val;
464         struct device_node *node = client->dev.of_node;
465
466         if (node) {
467                 if (of_get_property(node, "read-only", NULL))
468                         chip->flags |= AT24_FLAG_READONLY;
469                 val = of_get_property(node, "pagesize", NULL);
470                 if (val)
471                         chip->page_size = be32_to_cpup(val);
472         }
473 }
474 #else
475 static void at24_get_ofdata(struct i2c_client *client,
476                 struct at24_platform_data *chip)
477 { }
478 #endif /* CONFIG_OF */
479
480 static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
481 {
482         struct at24_platform_data chip;
483         kernel_ulong_t magic = 0;
484         bool writable;
485         int use_smbus = 0;
486         int use_smbus_write = 0;
487         struct at24_data *at24;
488         int err;
489         unsigned i, num_addresses;
490
491         if (client->dev.platform_data) {
492                 chip = *(struct at24_platform_data *)client->dev.platform_data;
493         } else {
494                 if (id) {
495                         magic = id->driver_data;
496                 } else {
497                         const struct acpi_device_id *aid;
498
499                         aid = acpi_match_device(at24_acpi_ids, &client->dev);
500                         if (aid)
501                                 magic = aid->driver_data;
502                 }
503                 if (!magic)
504                         return -ENODEV;
505
506                 chip.byte_len = BIT(magic & AT24_BITMASK(AT24_SIZE_BYTELEN));
507                 magic >>= AT24_SIZE_BYTELEN;
508                 chip.flags = magic & AT24_BITMASK(AT24_SIZE_FLAGS);
509                 /*
510                  * This is slow, but we can't know all eeproms, so we better
511                  * play safe. Specifying custom eeprom-types via platform_data
512                  * is recommended anyhow.
513                  */
514                 chip.page_size = 1;
515
516                 /* update chipdata if OF is present */
517                 at24_get_ofdata(client, &chip);
518
519                 chip.setup = NULL;
520                 chip.context = NULL;
521         }
522
523         if (!is_power_of_2(chip.byte_len))
524                 dev_warn(&client->dev,
525                         "byte_len looks suspicious (no power of 2)!\n");
526         if (!chip.page_size) {
527                 dev_err(&client->dev, "page_size must not be 0!\n");
528                 return -EINVAL;
529         }
530         if (!is_power_of_2(chip.page_size))
531                 dev_warn(&client->dev,
532                         "page_size looks suspicious (no power of 2)!\n");
533
534         /* Use I2C operations unless we're stuck with SMBus extensions. */
535         if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
536                 if (chip.flags & AT24_FLAG_ADDR16)
537                         return -EPFNOSUPPORT;
538
539                 if (i2c_check_functionality(client->adapter,
540                                 I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
541                         use_smbus = I2C_SMBUS_I2C_BLOCK_DATA;
542                 } else if (i2c_check_functionality(client->adapter,
543                                 I2C_FUNC_SMBUS_READ_WORD_DATA)) {
544                         use_smbus = I2C_SMBUS_WORD_DATA;
545                 } else if (i2c_check_functionality(client->adapter,
546                                 I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
547                         use_smbus = I2C_SMBUS_BYTE_DATA;
548                 } else {
549                         return -EPFNOSUPPORT;
550                 }
551         }
552
553         /* Use I2C operations unless we're stuck with SMBus extensions. */
554         if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
555                 if (i2c_check_functionality(client->adapter,
556                                 I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)) {
557                         use_smbus_write = I2C_SMBUS_I2C_BLOCK_DATA;
558                 } else if (i2c_check_functionality(client->adapter,
559                                 I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) {
560                         use_smbus_write = I2C_SMBUS_BYTE_DATA;
561                         chip.page_size = 1;
562                 }
563         }
564
565         if (chip.flags & AT24_FLAG_TAKE8ADDR)
566                 num_addresses = 8;
567         else
568                 num_addresses = DIV_ROUND_UP(chip.byte_len,
569                         (chip.flags & AT24_FLAG_ADDR16) ? 65536 : 256);
570
571         at24 = devm_kzalloc(&client->dev, sizeof(struct at24_data) +
572                 num_addresses * sizeof(struct i2c_client *), GFP_KERNEL);
573         if (!at24)
574                 return -ENOMEM;
575
576         mutex_init(&at24->lock);
577         at24->use_smbus = use_smbus;
578         at24->use_smbus_write = use_smbus_write;
579         at24->chip = chip;
580         at24->num_addresses = num_addresses;
581
582         /*
583          * Export the EEPROM bytes through sysfs, since that's convenient.
584          * By default, only root should see the data (maybe passwords etc)
585          */
586         sysfs_bin_attr_init(&at24->bin);
587         at24->bin.attr.name = "eeprom";
588         at24->bin.attr.mode = chip.flags & AT24_FLAG_IRUGO ? S_IRUGO : S_IRUSR;
589         at24->bin.read = at24_bin_read;
590         at24->bin.size = chip.byte_len;
591
592         at24->macc.read = at24_macc_read;
593
594         writable = !(chip.flags & AT24_FLAG_READONLY);
595         if (writable) {
596                 if (!use_smbus || use_smbus_write) {
597
598                         unsigned write_max = chip.page_size;
599
600                         at24->macc.write = at24_macc_write;
601
602                         at24->bin.write = at24_bin_write;
603                         at24->bin.attr.mode |= S_IWUSR;
604
605                         if (write_max > io_limit)
606                                 write_max = io_limit;
607                         if (use_smbus && write_max > I2C_SMBUS_BLOCK_MAX)
608                                 write_max = I2C_SMBUS_BLOCK_MAX;
609                         at24->write_max = write_max;
610
611                         /* buffer (data + address at the beginning) */
612                         at24->writebuf = devm_kzalloc(&client->dev,
613                                 write_max + 2, GFP_KERNEL);
614                         if (!at24->writebuf)
615                                 return -ENOMEM;
616                 } else {
617                         dev_warn(&client->dev,
618                                 "cannot write due to controller restrictions.");
619                 }
620         }
621
622         at24->client[0] = client;
623
624         /* use dummy devices for multiple-address chips */
625         for (i = 1; i < num_addresses; i++) {
626                 at24->client[i] = i2c_new_dummy(client->adapter,
627                                         client->addr + i);
628                 if (!at24->client[i]) {
629                         dev_err(&client->dev, "address 0x%02x unavailable\n",
630                                         client->addr + i);
631                         err = -EADDRINUSE;
632                         goto err_clients;
633                 }
634         }
635
636         err = sysfs_create_bin_file(&client->dev.kobj, &at24->bin);
637         if (err)
638                 goto err_clients;
639
640         i2c_set_clientdata(client, at24);
641
642         dev_info(&client->dev, "%zu byte %s EEPROM, %s, %u bytes/write\n",
643                 at24->bin.size, client->name,
644                 writable ? "writable" : "read-only", at24->write_max);
645         if (use_smbus == I2C_SMBUS_WORD_DATA ||
646             use_smbus == I2C_SMBUS_BYTE_DATA) {
647                 dev_notice(&client->dev, "Falling back to %s reads, "
648                            "performance will suffer\n", use_smbus ==
649                            I2C_SMBUS_WORD_DATA ? "word" : "byte");
650         }
651
652         /* export data to kernel code */
653         if (chip.setup)
654                 chip.setup(&at24->macc, chip.context);
655
656         return 0;
657
658 err_clients:
659         for (i = 1; i < num_addresses; i++)
660                 if (at24->client[i])
661                         i2c_unregister_device(at24->client[i]);
662
663         return err;
664 }
665
666 static int at24_remove(struct i2c_client *client)
667 {
668         struct at24_data *at24;
669         int i;
670
671         at24 = i2c_get_clientdata(client);
672         sysfs_remove_bin_file(&client->dev.kobj, &at24->bin);
673
674         for (i = 1; i < at24->num_addresses; i++)
675                 i2c_unregister_device(at24->client[i]);
676
677         return 0;
678 }
679
680 /*-------------------------------------------------------------------------*/
681
682 static struct i2c_driver at24_driver = {
683         .driver = {
684                 .name = "at24",
685                 .acpi_match_table = ACPI_PTR(at24_acpi_ids),
686         },
687         .probe = at24_probe,
688         .remove = at24_remove,
689         .id_table = at24_ids,
690 };
691
692 static int __init at24_init(void)
693 {
694         if (!io_limit) {
695                 pr_err("at24: io_limit must not be 0!\n");
696                 return -EINVAL;
697         }
698
699         io_limit = rounddown_pow_of_two(io_limit);
700         return i2c_add_driver(&at24_driver);
701 }
702 module_init(at24_init);
703
704 static void __exit at24_exit(void)
705 {
706         i2c_del_driver(&at24_driver);
707 }
708 module_exit(at24_exit);
709
710 MODULE_DESCRIPTION("Driver for most I2C EEPROMs");
711 MODULE_AUTHOR("David Brownell and Wolfram Sang");
712 MODULE_LICENSE("GPL");