1
2
3
4
5
6
7
8
9
10
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56struct 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
64
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
75
76
77 struct i2c_client *client[];
78};
79
80
81
82
83
84
85
86
87
88
89static unsigned io_limit = 128;
90module_param(io_limit, uint, 0);
91MODULE_PARM_DESC(io_limit, "Maximum bytes per I/O (default 128)");
92
93
94
95
96
97static unsigned write_timeout = 25;
98module_param(write_timeout, uint, 0);
99MODULE_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
107#define AT24_DEVICE_MAGIC(_len, _flags) \
108 ((1 << AT24_SIZE_FLAGS | (_flags)) \
109 << AT24_SIZE_BYTELEN | ilog2(_len))
110
111static const struct i2c_device_id at24_ids[] = {
112
113 { "24c00", AT24_DEVICE_MAGIC(128 / 8, AT24_FLAG_TAKE8ADDR) },
114
115 { "24c01", AT24_DEVICE_MAGIC(1024 / 8, 0) },
116 { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) },
117
118 { "spd", AT24_DEVICE_MAGIC(2048 / 8,
119 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) },
120 { "24c04", AT24_DEVICE_MAGIC(4096 / 8, 0) },
121
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 { }
132};
133MODULE_DEVICE_TABLE(i2c, at24_ids);
134
135static const struct acpi_device_id at24_acpi_ids[] = {
136 { "INT3499", AT24_DEVICE_MAGIC(8192 / 8, 0) },
137 { }
138};
139MODULE_DEVICE_TABLE(acpi, at24_acpi_ids);
140
141
142
143
144
145
146
147
148static 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
164static 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
177
178
179
180
181
182
183
184
185
186
187
188
189
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
198 if (count > I2C_SMBUS_BLOCK_MAX)
199 count = I2C_SMBUS_BLOCK_MAX;
200 } else {
201
202
203
204
205
206
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
225
226
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
246 msleep(1);
247 } while (time_before(read_time, timeout));
248
249 return -ETIMEDOUT;
250}
251
252static 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
261
262
263
264 mutex_lock(&at24->lock);
265
266 while (count) {
267 ssize_t status;
268
269 status = at24_eeprom_read(at24, buf, off, count);
270 if (status <= 0) {
271 if (retval == 0)
272 retval = status;
273 break;
274 }
275 buf += status;
276 off += status;
277 count -= status;
278 retval += status;
279 }
280
281 mutex_unlock(&at24->lock);
282
283 return retval;
284}
285
286static ssize_t at24_bin_read(struct file *filp, struct kobject *kobj,
287 struct bin_attribute *attr,
288 char *buf, loff_t off, size_t count)
289{
290 struct at24_data *at24;
291
292 at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
293 return at24_read(at24, buf, off, count);
294}
295
296
297
298
299
300
301
302
303
304
305static ssize_t at24_eeprom_write(struct at24_data *at24, const char *buf,
306 unsigned offset, size_t count)
307{
308 struct i2c_client *client;
309 struct i2c_msg msg;
310 ssize_t status = 0;
311 unsigned long timeout, write_time;
312 unsigned next_page;
313
314
315 client = at24_translate_offset(at24, &offset);
316
317
318 if (count > at24->write_max)
319 count = at24->write_max;
320
321
322 next_page = roundup(offset + 1, at24->chip.page_size);
323 if (offset + count > next_page)
324 count = next_page - offset;
325
326
327 if (!at24->use_smbus) {
328 int i = 0;
329
330 msg.addr = client->addr;
331 msg.flags = 0;
332
333
334 msg.buf = at24->writebuf;
335 if (at24->chip.flags & AT24_FLAG_ADDR16)
336 msg.buf[i++] = offset >> 8;
337
338 msg.buf[i++] = offset;
339 memcpy(&msg.buf[i], buf, count);
340 msg.len = i + count;
341 }
342
343
344
345
346
347
348 timeout = jiffies + msecs_to_jiffies(write_timeout);
349 do {
350 write_time = jiffies;
351 if (at24->use_smbus_write) {
352 switch (at24->use_smbus_write) {
353 case I2C_SMBUS_I2C_BLOCK_DATA:
354 status = i2c_smbus_write_i2c_block_data(client,
355 offset, count, buf);
356 break;
357 case I2C_SMBUS_BYTE_DATA:
358 status = i2c_smbus_write_byte_data(client,
359 offset, buf[0]);
360 break;
361 }
362
363 if (status == 0)
364 status = count;
365 } else {
366 status = i2c_transfer(client->adapter, &msg, 1);
367 if (status == 1)
368 status = count;
369 }
370 dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n",
371 count, offset, status, jiffies);
372
373 if (status == count)
374 return count;
375
376
377 msleep(1);
378 } while (time_before(write_time, timeout));
379
380 return -ETIMEDOUT;
381}
382
383static ssize_t at24_write(struct at24_data *at24, const char *buf, loff_t off,
384 size_t count)
385{
386 ssize_t retval = 0;
387
388 if (unlikely(!count))
389 return count;
390
391
392
393
394
395 mutex_lock(&at24->lock);
396
397 while (count) {
398 ssize_t status;
399
400 status = at24_eeprom_write(at24, buf, off, count);
401 if (status <= 0) {
402 if (retval == 0)
403 retval = status;
404 break;
405 }
406 buf += status;
407 off += status;
408 count -= status;
409 retval += status;
410 }
411
412 mutex_unlock(&at24->lock);
413
414 return retval;
415}
416
417static ssize_t at24_bin_write(struct file *filp, struct kobject *kobj,
418 struct bin_attribute *attr,
419 char *buf, loff_t off, size_t count)
420{
421 struct at24_data *at24;
422
423 at24 = dev_get_drvdata(container_of(kobj, struct device, kobj));
424 return at24_write(at24, buf, off, count);
425}
426
427
428
429
430
431
432
433
434
435static ssize_t at24_macc_read(struct memory_accessor *macc, char *buf,
436 off_t offset, size_t count)
437{
438 struct at24_data *at24 = container_of(macc, struct at24_data, macc);
439
440 return at24_read(at24, buf, offset, count);
441}
442
443static ssize_t at24_macc_write(struct memory_accessor *macc, const char *buf,
444 off_t offset, size_t count)
445{
446 struct at24_data *at24 = container_of(macc, struct at24_data, macc);
447
448 return at24_write(at24, buf, offset, count);
449}
450
451
452
453#ifdef CONFIG_OF
454static void at24_get_ofdata(struct i2c_client *client,
455 struct at24_platform_data *chip)
456{
457 const __be32 *val;
458 struct device_node *node = client->dev.of_node;
459
460 if (node) {
461 if (of_get_property(node, "read-only", NULL))
462 chip->flags |= AT24_FLAG_READONLY;
463 val = of_get_property(node, "pagesize", NULL);
464 if (val)
465 chip->page_size = be32_to_cpup(val);
466 }
467}
468#else
469static void at24_get_ofdata(struct i2c_client *client,
470 struct at24_platform_data *chip)
471{ }
472#endif
473
474static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
475{
476 struct at24_platform_data chip;
477 kernel_ulong_t magic = 0;
478 bool writable;
479 int use_smbus = 0;
480 int use_smbus_write = 0;
481 struct at24_data *at24;
482 int err;
483 unsigned i, num_addresses;
484
485 if (client->dev.platform_data) {
486 chip = *(struct at24_platform_data *)client->dev.platform_data;
487 } else {
488 if (id) {
489 magic = id->driver_data;
490 } else {
491 const struct acpi_device_id *aid;
492
493 aid = acpi_match_device(at24_acpi_ids, &client->dev);
494 if (aid)
495 magic = aid->driver_data;
496 }
497 if (!magic)
498 return -ENODEV;
499
500 chip.byte_len = BIT(magic & AT24_BITMASK(AT24_SIZE_BYTELEN));
501 magic >>= AT24_SIZE_BYTELEN;
502 chip.flags = magic & AT24_BITMASK(AT24_SIZE_FLAGS);
503
504
505
506
507
508 chip.page_size = 1;
509
510
511 at24_get_ofdata(client, &chip);
512
513 chip.setup = NULL;
514 chip.context = NULL;
515 }
516
517 if (!is_power_of_2(chip.byte_len))
518 dev_warn(&client->dev,
519 "byte_len looks suspicious (no power of 2)!\n");
520 if (!chip.page_size) {
521 dev_err(&client->dev, "page_size must not be 0!\n");
522 return -EINVAL;
523 }
524 if (!is_power_of_2(chip.page_size))
525 dev_warn(&client->dev,
526 "page_size looks suspicious (no power of 2)!\n");
527
528
529 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
530 if (chip.flags & AT24_FLAG_ADDR16)
531 return -EPFNOSUPPORT;
532
533 if (i2c_check_functionality(client->adapter,
534 I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
535 use_smbus = I2C_SMBUS_I2C_BLOCK_DATA;
536 } else if (i2c_check_functionality(client->adapter,
537 I2C_FUNC_SMBUS_READ_WORD_DATA)) {
538 use_smbus = I2C_SMBUS_WORD_DATA;
539 } else if (i2c_check_functionality(client->adapter,
540 I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
541 use_smbus = I2C_SMBUS_BYTE_DATA;
542 } else {
543 return -EPFNOSUPPORT;
544 }
545 }
546
547
548 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
549 if (i2c_check_functionality(client->adapter,
550 I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)) {
551 use_smbus_write = I2C_SMBUS_I2C_BLOCK_DATA;
552 } else if (i2c_check_functionality(client->adapter,
553 I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) {
554 use_smbus_write = I2C_SMBUS_BYTE_DATA;
555 chip.page_size = 1;
556 }
557 }
558
559 if (chip.flags & AT24_FLAG_TAKE8ADDR)
560 num_addresses = 8;
561 else
562 num_addresses = DIV_ROUND_UP(chip.byte_len,
563 (chip.flags & AT24_FLAG_ADDR16) ? 65536 : 256);
564
565 at24 = devm_kzalloc(&client->dev, sizeof(struct at24_data) +
566 num_addresses * sizeof(struct i2c_client *), GFP_KERNEL);
567 if (!at24)
568 return -ENOMEM;
569
570 mutex_init(&at24->lock);
571 at24->use_smbus = use_smbus;
572 at24->use_smbus_write = use_smbus_write;
573 at24->chip = chip;
574 at24->num_addresses = num_addresses;
575
576
577
578
579
580 sysfs_bin_attr_init(&at24->bin);
581 at24->bin.attr.name = "eeprom";
582 at24->bin.attr.mode = chip.flags & AT24_FLAG_IRUGO ? S_IRUGO : S_IRUSR;
583 at24->bin.read = at24_bin_read;
584 at24->bin.size = chip.byte_len;
585
586 at24->macc.read = at24_macc_read;
587
588 writable = !(chip.flags & AT24_FLAG_READONLY);
589 if (writable) {
590 if (!use_smbus || use_smbus_write) {
591
592 unsigned write_max = chip.page_size;
593
594 at24->macc.write = at24_macc_write;
595
596 at24->bin.write = at24_bin_write;
597 at24->bin.attr.mode |= S_IWUSR;
598
599 if (write_max > io_limit)
600 write_max = io_limit;
601 if (use_smbus && write_max > I2C_SMBUS_BLOCK_MAX)
602 write_max = I2C_SMBUS_BLOCK_MAX;
603 at24->write_max = write_max;
604
605
606 at24->writebuf = devm_kzalloc(&client->dev,
607 write_max + 2, GFP_KERNEL);
608 if (!at24->writebuf)
609 return -ENOMEM;
610 } else {
611 dev_warn(&client->dev,
612 "cannot write due to controller restrictions.");
613 }
614 }
615
616 at24->client[0] = client;
617
618
619 for (i = 1; i < num_addresses; i++) {
620 at24->client[i] = i2c_new_dummy(client->adapter,
621 client->addr + i);
622 if (!at24->client[i]) {
623 dev_err(&client->dev, "address 0x%02x unavailable\n",
624 client->addr + i);
625 err = -EADDRINUSE;
626 goto err_clients;
627 }
628 }
629
630 err = sysfs_create_bin_file(&client->dev.kobj, &at24->bin);
631 if (err)
632 goto err_clients;
633
634 i2c_set_clientdata(client, at24);
635
636 dev_info(&client->dev, "%zu byte %s EEPROM, %s, %u bytes/write\n",
637 at24->bin.size, client->name,
638 writable ? "writable" : "read-only", at24->write_max);
639 if (use_smbus == I2C_SMBUS_WORD_DATA ||
640 use_smbus == I2C_SMBUS_BYTE_DATA) {
641 dev_notice(&client->dev, "Falling back to %s reads, "
642 "performance will suffer\n", use_smbus ==
643 I2C_SMBUS_WORD_DATA ? "word" : "byte");
644 }
645
646
647 if (chip.setup)
648 chip.setup(&at24->macc, chip.context);
649
650 return 0;
651
652err_clients:
653 for (i = 1; i < num_addresses; i++)
654 if (at24->client[i])
655 i2c_unregister_device(at24->client[i]);
656
657 return err;
658}
659
660static int at24_remove(struct i2c_client *client)
661{
662 struct at24_data *at24;
663 int i;
664
665 at24 = i2c_get_clientdata(client);
666 sysfs_remove_bin_file(&client->dev.kobj, &at24->bin);
667
668 for (i = 1; i < at24->num_addresses; i++)
669 i2c_unregister_device(at24->client[i]);
670
671 return 0;
672}
673
674
675
676static struct i2c_driver at24_driver = {
677 .driver = {
678 .name = "at24",
679 .acpi_match_table = ACPI_PTR(at24_acpi_ids),
680 },
681 .probe = at24_probe,
682 .remove = at24_remove,
683 .id_table = at24_ids,
684};
685
686static int __init at24_init(void)
687{
688 if (!io_limit) {
689 pr_err("at24: io_limit must not be 0!\n");
690 return -EINVAL;
691 }
692
693 io_limit = rounddown_pow_of_two(io_limit);
694 return i2c_add_driver(&at24_driver);
695}
696module_init(at24_init);
697
698static void __exit at24_exit(void)
699{
700 i2c_del_driver(&at24_driver);
701}
702module_exit(at24_exit);
703
704MODULE_DESCRIPTION("Driver for most I2C EEPROMs");
705MODULE_AUTHOR("David Brownell and Wolfram Sang");
706MODULE_LICENSE("GPL");
707