blob: f1cac9dc75b8150bfdad17e904450f7738428438 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*!*****************************************************************************
2*!
Matt LaPlante0779bf22006-11-30 05:24:39 +01003*! Implements an interface for i2c compatible eeproms to run under Linux.
4*! Supports 2k, 8k(?) and 16k. Uses adaptive timing adjustments by
Linus Torvalds1da177e2005-04-16 15:20:36 -07005*! Johan.Adolfsson@axis.com
6*!
7*! Probing results:
8*! 8k or not is detected (the assumes 2k or 16k)
9*! 2k or 16k detected using test reads and writes.
10*!
11*!------------------------------------------------------------------------
12*! HISTORY
13*!
14*! DATE NAME CHANGES
15*! ---- ---- -------
16*! Aug 28 1999 Edgar Iglesias Initial Version
17*! Aug 31 1999 Edgar Iglesias Allow simultaneous users.
18*! Sep 03 1999 Edgar Iglesias Updated probe.
19*! Sep 03 1999 Edgar Iglesias Added bail-out stuff if we get interrupted
20*! in the spin-lock.
21*!
Linus Torvalds1da177e2005-04-16 15:20:36 -070022*! (c) 1999 Axis Communications AB, Lund, Sweden
23*!*****************************************************************************/
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/sched.h>
27#include <linux/fs.h>
28#include <linux/init.h>
29#include <linux/delay.h>
30#include <linux/interrupt.h>
Mikael Starvik7e920422005-07-27 11:44:34 -070031#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
33#include "i2c.h"
34
Jesper Nilsson3d6c03f2008-01-17 14:44:00 +010035#define D(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/* If we should use adaptive timing or not: */
Jesper Nilsson3d6c03f2008-01-17 14:44:00 +010038/* #define EEPROM_ADAPTIVE_TIMING */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define EEPROM_MAJOR_NR 122 /* use a LOCAL/EXPERIMENTAL major for now */
41#define EEPROM_MINOR_NR 0
42
43/* Empirical sane initial value of the delay, the value will be adapted to
44 * what the chip needs when using EEPROM_ADAPTIVE_TIMING.
45 */
46#define INITIAL_WRITEDELAY_US 4000
47#define MAX_WRITEDELAY_US 10000 /* 10 ms according to spec for 2KB EEPROM */
48
49/* This one defines how many times to try when eeprom fails. */
50#define EEPROM_RETRIES 10
51
52#define EEPROM_2KB (2 * 1024)
53/*#define EEPROM_4KB (4 * 1024)*/ /* Exists but not used in Axis products */
54#define EEPROM_8KB (8 * 1024 - 1 ) /* Last byte has write protection bit */
55#define EEPROM_16KB (16 * 1024)
56
57#define i2c_delay(x) udelay(x)
58
59/*
60 * This structure describes the attached eeprom chip.
61 * The values are probed for.
62 */
63
64struct eeprom_type
65{
66 unsigned long size;
67 unsigned long sequential_write_pagesize;
68 unsigned char select_cmd;
69 unsigned long usec_delay_writecycles; /* Min time between write cycles
70 (up to 10ms for some models) */
71 unsigned long usec_delay_step; /* For adaptive algorithm */
72 int adapt_state; /* 1 = To high , 0 = Even, -1 = To low */
73
74 /* this one is to keep the read/write operations atomic */
75 wait_queue_head_t wait_q;
76 volatile int busy;
77 int retry_cnt_addr; /* Used to keep track of number of retries for
78 adaptive timing adjustments */
79 int retry_cnt_read;
80};
81
82static int eeprom_open(struct inode * inode, struct file * file);
83static loff_t eeprom_lseek(struct file * file, loff_t offset, int orig);
84static ssize_t eeprom_read(struct file * file, char * buf, size_t count,
85 loff_t *off);
86static ssize_t eeprom_write(struct file * file, const char * buf, size_t count,
87 loff_t *off);
88static int eeprom_close(struct inode * inode, struct file * file);
89
90static int eeprom_address(unsigned long addr);
91static int read_from_eeprom(char * buf, int count);
92static int eeprom_write_buf(loff_t addr, const char * buf, int count);
93static int eeprom_read_buf(loff_t addr, char * buf, int count);
94
95static void eeprom_disable_write_protect(void);
96
97
98static const char eeprom_name[] = "eeprom";
99
100/* chip description */
101static struct eeprom_type eeprom;
102
103/* This is the exported file-operations structure for this device. */
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -0800104const struct file_operations eeprom_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 .llseek = eeprom_lseek,
107 .read = eeprom_read,
108 .write = eeprom_write,
109 .open = eeprom_open,
110 .release = eeprom_close
111};
112
113/* eeprom init call. Probes for different eeprom models. */
114
115int __init eeprom_init(void)
116{
117 init_waitqueue_head(&eeprom.wait_q);
118 eeprom.busy = 0;
119
120#ifdef CONFIG_ETRAX_I2C_EEPROM_PROBE
121#define EETEXT "Found"
122#else
123#define EETEXT "Assuming"
124#endif
125 if (register_chrdev(EEPROM_MAJOR_NR, eeprom_name, &eeprom_fops))
126 {
127 printk(KERN_INFO "%s: unable to get major %d for eeprom device\n",
128 eeprom_name, EEPROM_MAJOR_NR);
129 return -1;
130 }
131
132 printk("EEPROM char device v0.3, (c) 2000 Axis Communications AB\n");
133
134 /*
135 * Note: Most of this probing method was taken from the printserver (5470e)
136 * codebase. It did not contain a way of finding the 16kB chips
137 * (M24128 or variants). The method used here might not work
138 * for all models. If you encounter problems the easiest way
139 * is probably to define your model within #ifdef's, and hard-
140 * code it.
141 */
142
143 eeprom.size = 0;
144 eeprom.usec_delay_writecycles = INITIAL_WRITEDELAY_US;
145 eeprom.usec_delay_step = 128;
146 eeprom.adapt_state = 0;
147
148#ifdef CONFIG_ETRAX_I2C_EEPROM_PROBE
149 i2c_start();
150 i2c_outbyte(0x80);
151 if(!i2c_getack())
152 {
153 /* It's not 8k.. */
154 int success = 0;
155 unsigned char buf_2k_start[16];
156
157 /* Im not sure this will work... :) */
158 /* assume 2kB, if failure go for 16kB */
159 /* Test with 16kB settings.. */
160 /* If it's a 2kB EEPROM and we address it outside it's range
161 * it will mirror the address space:
162 * 1. We read two locations (that are mirrored),
163 * if the content differs * it's a 16kB EEPROM.
164 * 2. if it doesn't differ - write different value to one of the locations,
165 * check the other - if content still is the same it's a 2k EEPROM,
166 * restore original data.
167 */
168#define LOC1 8
169#define LOC2 (0x1fb) /*1fb, 3ed, 5df, 7d1 */
170
171 /* 2k settings */
172 i2c_stop();
173 eeprom.size = EEPROM_2KB;
174 eeprom.select_cmd = 0xA0;
175 eeprom.sequential_write_pagesize = 16;
176 if( eeprom_read_buf( 0, buf_2k_start, 16 ) == 16 )
177 {
178 D(printk("2k start: '%16.16s'\n", buf_2k_start));
179 }
180 else
181 {
182 printk(KERN_INFO "%s: Failed to read in 2k mode!\n", eeprom_name);
183 }
184
185 /* 16k settings */
186 eeprom.size = EEPROM_16KB;
187 eeprom.select_cmd = 0xA0;
188 eeprom.sequential_write_pagesize = 64;
189
190 {
191 unsigned char loc1[4], loc2[4], tmp[4];
192 if( eeprom_read_buf(LOC2, loc2, 4) == 4)
193 {
194 if( eeprom_read_buf(LOC1, loc1, 4) == 4)
195 {
196 D(printk("0 loc1: (%i) '%4.4s' loc2 (%i) '%4.4s'\n",
197 LOC1, loc1, LOC2, loc2));
198#if 0
199 if (memcmp(loc1, loc2, 4) != 0 )
200 {
201 /* It's 16k */
202 printk(KERN_INFO "%s: 16k detected in step 1\n", eeprom_name);
203 eeprom.size = EEPROM_16KB;
204 success = 1;
205 }
206 else
207#endif
208 {
209 /* Do step 2 check */
210 /* Invert value */
211 loc1[0] = ~loc1[0];
212 if (eeprom_write_buf(LOC1, loc1, 1) == 1)
213 {
214 /* If 2k EEPROM this write will actually write 10 bytes
215 * from pos 0
216 */
217 D(printk("1 loc1: (%i) '%4.4s' loc2 (%i) '%4.4s'\n",
218 LOC1, loc1, LOC2, loc2));
219 if( eeprom_read_buf(LOC1, tmp, 4) == 4)
220 {
221 D(printk("2 loc1: (%i) '%4.4s' tmp '%4.4s'\n",
222 LOC1, loc1, tmp));
223 if (memcmp(loc1, tmp, 4) != 0 )
224 {
225 printk(KERN_INFO "%s: read and write differs! Not 16kB\n",
226 eeprom_name);
227 loc1[0] = ~loc1[0];
228
229 if (eeprom_write_buf(LOC1, loc1, 1) == 1)
230 {
231 success = 1;
232 }
233 else
234 {
235 printk(KERN_INFO "%s: Restore 2k failed during probe,"
236 " EEPROM might be corrupt!\n", eeprom_name);
237
238 }
239 i2c_stop();
240 /* Go to 2k mode and write original data */
241 eeprom.size = EEPROM_2KB;
242 eeprom.select_cmd = 0xA0;
243 eeprom.sequential_write_pagesize = 16;
244 if( eeprom_write_buf(0, buf_2k_start, 16) == 16)
245 {
246 }
247 else
248 {
249 printk(KERN_INFO "%s: Failed to write back 2k start!\n",
250 eeprom_name);
251 }
252
253 eeprom.size = EEPROM_2KB;
254 }
255 }
256
257 if(!success)
258 {
259 if( eeprom_read_buf(LOC2, loc2, 1) == 1)
260 {
261 D(printk("0 loc1: (%i) '%4.4s' loc2 (%i) '%4.4s'\n",
262 LOC1, loc1, LOC2, loc2));
263 if (memcmp(loc1, loc2, 4) == 0 )
264 {
265 /* Data the same, must be mirrored -> 2k */
266 /* Restore data */
267 printk(KERN_INFO "%s: 2k detected in step 2\n", eeprom_name);
268 loc1[0] = ~loc1[0];
269 if (eeprom_write_buf(LOC1, loc1, 1) == 1)
270 {
271 success = 1;
272 }
273 else
274 {
275 printk(KERN_INFO "%s: Restore 2k failed during probe,"
276 " EEPROM might be corrupt!\n", eeprom_name);
277
278 }
279
280 eeprom.size = EEPROM_2KB;
281 }
282 else
283 {
284 printk(KERN_INFO "%s: 16k detected in step 2\n",
285 eeprom_name);
286 loc1[0] = ~loc1[0];
287 /* Data differs, assume 16k */
288 /* Restore data */
289 if (eeprom_write_buf(LOC1, loc1, 1) == 1)
290 {
291 success = 1;
292 }
293 else
294 {
295 printk(KERN_INFO "%s: Restore 16k failed during probe,"
296 " EEPROM might be corrupt!\n", eeprom_name);
297 }
298
299 eeprom.size = EEPROM_16KB;
300 }
301 }
302 }
303 }
304 } /* read LOC1 */
305 } /* address LOC1 */
306 if (!success)
307 {
308 printk(KERN_INFO "%s: Probing failed!, using 2KB!\n", eeprom_name);
309 eeprom.size = EEPROM_2KB;
310 }
311 } /* read */
312 }
313 }
314 else
315 {
316 i2c_outbyte(0x00);
317 if(!i2c_getack())
318 {
319 /* No 8k */
320 eeprom.size = EEPROM_2KB;
321 }
322 else
323 {
324 i2c_start();
325 i2c_outbyte(0x81);
326 if (!i2c_getack())
327 {
328 eeprom.size = EEPROM_2KB;
329 }
330 else
331 {
332 /* It's a 8kB */
333 i2c_inbyte();
334 eeprom.size = EEPROM_8KB;
335 }
336 }
337 }
338 i2c_stop();
339#elif defined(CONFIG_ETRAX_I2C_EEPROM_16KB)
340 eeprom.size = EEPROM_16KB;
341#elif defined(CONFIG_ETRAX_I2C_EEPROM_8KB)
342 eeprom.size = EEPROM_8KB;
343#elif defined(CONFIG_ETRAX_I2C_EEPROM_2KB)
344 eeprom.size = EEPROM_2KB;
345#endif
346
347 switch(eeprom.size)
348 {
349 case (EEPROM_2KB):
350 printk("%s: " EETEXT " i2c compatible 2kB eeprom.\n", eeprom_name);
351 eeprom.sequential_write_pagesize = 16;
352 eeprom.select_cmd = 0xA0;
353 break;
354 case (EEPROM_8KB):
355 printk("%s: " EETEXT " i2c compatible 8kB eeprom.\n", eeprom_name);
356 eeprom.sequential_write_pagesize = 16;
357 eeprom.select_cmd = 0x80;
358 break;
359 case (EEPROM_16KB):
360 printk("%s: " EETEXT " i2c compatible 16kB eeprom.\n", eeprom_name);
361 eeprom.sequential_write_pagesize = 64;
362 eeprom.select_cmd = 0xA0;
363 break;
364 default:
365 eeprom.size = 0;
366 printk("%s: Did not find a supported eeprom\n", eeprom_name);
367 break;
368 }
369
370
371
372 eeprom_disable_write_protect();
373
374 return 0;
375}
376
377/* Opens the device. */
378
379static int eeprom_open(struct inode * inode, struct file * file)
380{
381
Eric Sesterhenn32ea0862006-07-10 04:45:02 -0700382 if(iminor(inode) != EEPROM_MINOR_NR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -ENXIO;
Eric Sesterhenn32ea0862006-07-10 04:45:02 -0700384 if(imajor(inode) != EEPROM_MAJOR_NR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return -ENXIO;
386
387 if( eeprom.size > 0 )
388 {
389 /* OK */
390 return 0;
391 }
392
393 /* No EEprom found */
394 return -EFAULT;
395}
396
397/* Changes the current file position. */
398
399static loff_t eeprom_lseek(struct file * file, loff_t offset, int orig)
400{
401/*
402 * orig 0: position from begning of eeprom
403 * orig 1: relative from current position
404 * orig 2: position from last eeprom address
405 */
406
407 switch (orig)
408 {
409 case 0:
410 file->f_pos = offset;
411 break;
412 case 1:
413 file->f_pos += offset;
414 break;
415 case 2:
416 file->f_pos = eeprom.size - offset;
417 break;
418 default:
419 return -EINVAL;
420 }
421
422 /* truncate position */
423 if (file->f_pos < 0)
424 {
425 file->f_pos = 0;
426 return(-EOVERFLOW);
427 }
428
429 if (file->f_pos >= eeprom.size)
430 {
431 file->f_pos = eeprom.size - 1;
432 return(-EOVERFLOW);
433 }
434
435 return ( file->f_pos );
436}
437
438/* Reads data from eeprom. */
439
440static int eeprom_read_buf(loff_t addr, char * buf, int count)
441{
442 struct file f;
443
444 f.f_pos = addr;
445 return eeprom_read(&f, buf, count, &addr);
446}
447
448
449
450/* Reads data from eeprom. */
451
452static ssize_t eeprom_read(struct file * file, char * buf, size_t count, loff_t *off)
453{
454 int read=0;
455 unsigned long p = file->f_pos;
456
457 unsigned char page;
458
459 if(p >= eeprom.size) /* Address i 0 - (size-1) */
460 {
461 return -EFAULT;
462 }
463
Mikael Starvik7e920422005-07-27 11:44:34 -0700464 wait_event_interruptible(eeprom.wait_q, !eeprom.busy);
465 if (signal_pending(current))
466 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 eeprom.busy++;
469
470 page = (unsigned char) (p >> 8);
471
472 if(!eeprom_address(p))
473 {
474 printk(KERN_INFO "%s: Read failed to address the eeprom: "
475 "0x%08X (%i) page: %i\n", eeprom_name, (int)p, (int)p, page);
476 i2c_stop();
477
478 /* don't forget to wake them up */
479 eeprom.busy--;
480 wake_up_interruptible(&eeprom.wait_q);
481 return -EFAULT;
482 }
483
484 if( (p + count) > eeprom.size)
485 {
486 /* truncate count */
487 count = eeprom.size - p;
488 }
489
490 /* stop dummy write op and initiate the read op */
491 i2c_start();
492
493 /* special case for small eeproms */
494 if(eeprom.size < EEPROM_16KB)
495 {
496 i2c_outbyte( eeprom.select_cmd | 1 | (page << 1) );
497 }
498
499 /* go on with the actual read */
500 read = read_from_eeprom( buf, count);
501
502 if(read > 0)
503 {
504 file->f_pos += read;
505 }
506
507 eeprom.busy--;
508 wake_up_interruptible(&eeprom.wait_q);
509 return read;
510}
511
512/* Writes data to eeprom. */
513
514static int eeprom_write_buf(loff_t addr, const char * buf, int count)
515{
516 struct file f;
517
518 f.f_pos = addr;
519
520 return eeprom_write(&f, buf, count, &addr);
521}
522
523
524/* Writes data to eeprom. */
525
526static ssize_t eeprom_write(struct file * file, const char * buf, size_t count,
527 loff_t *off)
528{
529 int i, written, restart=1;
530 unsigned long p;
531
532 if (!access_ok(VERIFY_READ, buf, count))
533 {
534 return -EFAULT;
535 }
536
Mikael Starvik7e920422005-07-27 11:44:34 -0700537 wait_event_interruptible(eeprom.wait_q, !eeprom.busy);
538 /* bail out if we get interrupted */
539 if (signal_pending(current))
540 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 eeprom.busy++;
542 for(i = 0; (i < EEPROM_RETRIES) && (restart > 0); i++)
543 {
544 restart = 0;
545 written = 0;
546 p = file->f_pos;
547
548
549 while( (written < count) && (p < eeprom.size))
550 {
551 /* address the eeprom */
552 if(!eeprom_address(p))
553 {
554 printk(KERN_INFO "%s: Write failed to address the eeprom: "
555 "0x%08X (%i) \n", eeprom_name, (int)p, (int)p);
556 i2c_stop();
557
558 /* don't forget to wake them up */
559 eeprom.busy--;
560 wake_up_interruptible(&eeprom.wait_q);
561 return -EFAULT;
562 }
563#ifdef EEPROM_ADAPTIVE_TIMING
564 /* Adaptive algorithm to adjust timing */
565 if (eeprom.retry_cnt_addr > 0)
566 {
567 /* To Low now */
568 D(printk(">D=%i d=%i\n",
569 eeprom.usec_delay_writecycles, eeprom.usec_delay_step));
570
571 if (eeprom.usec_delay_step < 4)
572 {
573 eeprom.usec_delay_step++;
574 eeprom.usec_delay_writecycles += eeprom.usec_delay_step;
575 }
576 else
577 {
578
579 if (eeprom.adapt_state > 0)
580 {
581 /* To Low before */
582 eeprom.usec_delay_step *= 2;
583 if (eeprom.usec_delay_step > 2)
584 {
585 eeprom.usec_delay_step--;
586 }
587 eeprom.usec_delay_writecycles += eeprom.usec_delay_step;
588 }
589 else if (eeprom.adapt_state < 0)
590 {
591 /* To High before (toggle dir) */
592 eeprom.usec_delay_writecycles += eeprom.usec_delay_step;
593 if (eeprom.usec_delay_step > 1)
594 {
595 eeprom.usec_delay_step /= 2;
596 eeprom.usec_delay_step--;
597 }
598 }
599 }
600
601 eeprom.adapt_state = 1;
602 }
603 else
604 {
605 /* To High (or good) now */
606 D(printk("<D=%i d=%i\n",
607 eeprom.usec_delay_writecycles, eeprom.usec_delay_step));
608
609 if (eeprom.adapt_state < 0)
610 {
611 /* To High before */
612 if (eeprom.usec_delay_step > 1)
613 {
614 eeprom.usec_delay_step *= 2;
615 eeprom.usec_delay_step--;
616
617 if (eeprom.usec_delay_writecycles > eeprom.usec_delay_step)
618 {
619 eeprom.usec_delay_writecycles -= eeprom.usec_delay_step;
620 }
621 }
622 }
623 else if (eeprom.adapt_state > 0)
624 {
625 /* To Low before (toggle dir) */
626 if (eeprom.usec_delay_writecycles > eeprom.usec_delay_step)
627 {
628 eeprom.usec_delay_writecycles -= eeprom.usec_delay_step;
629 }
630 if (eeprom.usec_delay_step > 1)
631 {
632 eeprom.usec_delay_step /= 2;
633 eeprom.usec_delay_step--;
634 }
635
636 eeprom.adapt_state = -1;
637 }
638
639 if (eeprom.adapt_state > -100)
640 {
641 eeprom.adapt_state--;
642 }
643 else
644 {
645 /* Restart adaption */
646 D(printk("#Restart\n"));
647 eeprom.usec_delay_step++;
648 }
649 }
650#endif /* EEPROM_ADAPTIVE_TIMING */
651 /* write until we hit a page boundary or count */
652 do
653 {
654 i2c_outbyte(buf[written]);
655 if(!i2c_getack())
656 {
657 restart=1;
658 printk(KERN_INFO "%s: write error, retrying. %d\n", eeprom_name, i);
659 i2c_stop();
660 break;
661 }
662 written++;
663 p++;
664 } while( written < count && ( p % eeprom.sequential_write_pagesize ));
665
666 /* end write cycle */
667 i2c_stop();
668 i2c_delay(eeprom.usec_delay_writecycles);
669 } /* while */
670 } /* for */
671
672 eeprom.busy--;
673 wake_up_interruptible(&eeprom.wait_q);
674 if (written == 0 && file->f_pos >= eeprom.size){
675 return -ENOSPC;
676 }
677 file->f_pos += written;
678 return written;
679}
680
681/* Closes the device. */
682
683static int eeprom_close(struct inode * inode, struct file * file)
684{
685 /* do nothing for now */
686 return 0;
687}
688
689/* Sets the current address of the eeprom. */
690
691static int eeprom_address(unsigned long addr)
692{
693 int i;
694 unsigned char page, offset;
695
696 page = (unsigned char) (addr >> 8);
697 offset = (unsigned char) addr;
698
699 for(i = 0; i < EEPROM_RETRIES; i++)
700 {
701 /* start a dummy write for addressing */
702 i2c_start();
703
704 if(eeprom.size == EEPROM_16KB)
705 {
706 i2c_outbyte( eeprom.select_cmd );
707 i2c_getack();
708 i2c_outbyte(page);
709 }
710 else
711 {
712 i2c_outbyte( eeprom.select_cmd | (page << 1) );
713 }
714 if(!i2c_getack())
715 {
716 /* retry */
717 i2c_stop();
718 /* Must have a delay here.. 500 works, >50, 100->works 5th time*/
719 i2c_delay(MAX_WRITEDELAY_US / EEPROM_RETRIES * i);
720 /* The chip needs up to 10 ms from write stop to next start */
721
722 }
723 else
724 {
725 i2c_outbyte(offset);
726
727 if(!i2c_getack())
728 {
729 /* retry */
730 i2c_stop();
731 }
732 else
733 break;
734 }
735 }
736
737
738 eeprom.retry_cnt_addr = i;
739 D(printk("%i\n", eeprom.retry_cnt_addr));
740 if(eeprom.retry_cnt_addr == EEPROM_RETRIES)
741 {
742 /* failed */
743 return 0;
744 }
745 return 1;
746}
747
748/* Reads from current address. */
749
750static int read_from_eeprom(char * buf, int count)
751{
752 int i, read=0;
753
754 for(i = 0; i < EEPROM_RETRIES; i++)
755 {
756 if(eeprom.size == EEPROM_16KB)
757 {
758 i2c_outbyte( eeprom.select_cmd | 1 );
759 }
760
761 if(i2c_getack())
762 {
763 break;
764 }
765 }
766
767 if(i == EEPROM_RETRIES)
768 {
769 printk(KERN_INFO "%s: failed to read from eeprom\n", eeprom_name);
770 i2c_stop();
771
772 return -EFAULT;
773 }
774
775 while( (read < count))
776 {
777 if (put_user(i2c_inbyte(), &buf[read++]))
778 {
779 i2c_stop();
780
781 return -EFAULT;
782 }
783
784 /*
785 * make sure we don't ack last byte or you will get very strange
786 * results!
787 */
788 if(read < count)
789 {
790 i2c_sendack();
791 }
792 }
793
794 /* stop the operation */
795 i2c_stop();
796
797 return read;
798}
799
800/* Disables write protection if applicable. */
801
802#define DBP_SAVE(x)
803#define ax_printf printk
804static void eeprom_disable_write_protect(void)
805{
806 /* Disable write protect */
807 if (eeprom.size == EEPROM_8KB)
808 {
809 /* Step 1 Set WEL = 1 (write 00000010 to address 1FFFh */
810 i2c_start();
811 i2c_outbyte(0xbe);
812 if(!i2c_getack())
813 {
814 DBP_SAVE(ax_printf("Get ack returns false\n"));
815 }
816 i2c_outbyte(0xFF);
817 if(!i2c_getack())
818 {
819 DBP_SAVE(ax_printf("Get ack returns false 2\n"));
820 }
821 i2c_outbyte(0x02);
822 if(!i2c_getack())
823 {
824 DBP_SAVE(ax_printf("Get ack returns false 3\n"));
825 }
826 i2c_stop();
827
828 i2c_delay(1000);
829
830 /* Step 2 Set RWEL = 1 (write 00000110 to address 1FFFh */
831 i2c_start();
832 i2c_outbyte(0xbe);
833 if(!i2c_getack())
834 {
835 DBP_SAVE(ax_printf("Get ack returns false 55\n"));
836 }
837 i2c_outbyte(0xFF);
838 if(!i2c_getack())
839 {
840 DBP_SAVE(ax_printf("Get ack returns false 52\n"));
841 }
842 i2c_outbyte(0x06);
843 if(!i2c_getack())
844 {
845 DBP_SAVE(ax_printf("Get ack returns false 53\n"));
846 }
847 i2c_stop();
848
849 /* Step 3 Set BP1, BP0, and/or WPEN bits (write 00000110 to address 1FFFh */
850 i2c_start();
851 i2c_outbyte(0xbe);
852 if(!i2c_getack())
853 {
854 DBP_SAVE(ax_printf("Get ack returns false 56\n"));
855 }
856 i2c_outbyte(0xFF);
857 if(!i2c_getack())
858 {
859 DBP_SAVE(ax_printf("Get ack returns false 57\n"));
860 }
861 i2c_outbyte(0x06);
862 if(!i2c_getack())
863 {
864 DBP_SAVE(ax_printf("Get ack returns false 58\n"));
865 }
866 i2c_stop();
867
868 /* Write protect disabled */
869 }
870}
871
872module_init(eeprom_init);