Loading...
1/*
2 * Silicon Labs C2 port core Linux support
3 *
4 * Copyright (c) 2007 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2007 Eurotech S.p.A. <info@eurotech.it>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/device.h>
15#include <linux/errno.h>
16#include <linux/err.h>
17#include <linux/kernel.h>
18#include <linux/kmemcheck.h>
19#include <linux/ctype.h>
20#include <linux/delay.h>
21#include <linux/idr.h>
22#include <linux/sched.h>
23#include <linux/slab.h>
24
25#include <linux/c2port.h>
26
27#define DRIVER_NAME "c2port"
28#define DRIVER_VERSION "0.51.0"
29
30static DEFINE_SPINLOCK(c2port_idr_lock);
31static DEFINE_IDR(c2port_idr);
32
33/*
34 * Local variables
35 */
36
37static struct class *c2port_class;
38
39/*
40 * C2 registers & commands defines
41 */
42
43/* C2 registers */
44#define C2PORT_DEVICEID 0x00
45#define C2PORT_REVID 0x01
46#define C2PORT_FPCTL 0x02
47#define C2PORT_FPDAT 0xB4
48
49/* C2 interface commands */
50#define C2PORT_GET_VERSION 0x01
51#define C2PORT_DEVICE_ERASE 0x03
52#define C2PORT_BLOCK_READ 0x06
53#define C2PORT_BLOCK_WRITE 0x07
54#define C2PORT_PAGE_ERASE 0x08
55
56/* C2 status return codes */
57#define C2PORT_INVALID_COMMAND 0x00
58#define C2PORT_COMMAND_FAILED 0x02
59#define C2PORT_COMMAND_OK 0x0d
60
61/*
62 * C2 port low level signal managements
63 */
64
65static void c2port_reset(struct c2port_device *dev)
66{
67 struct c2port_ops *ops = dev->ops;
68
69 /* To reset the device we have to keep clock line low for at least
70 * 20us.
71 */
72 local_irq_disable();
73 ops->c2ck_set(dev, 0);
74 udelay(25);
75 ops->c2ck_set(dev, 1);
76 local_irq_enable();
77
78 udelay(1);
79}
80
81static void c2port_strobe_ck(struct c2port_device *dev)
82{
83 struct c2port_ops *ops = dev->ops;
84
85 /* During hi-low-hi transition we disable local IRQs to avoid
86 * interructions since C2 port specification says that it must be
87 * shorter than 5us, otherwise the microcontroller may consider
88 * it as a reset signal!
89 */
90 local_irq_disable();
91 ops->c2ck_set(dev, 0);
92 udelay(1);
93 ops->c2ck_set(dev, 1);
94 local_irq_enable();
95
96 udelay(1);
97}
98
99/*
100 * C2 port basic functions
101 */
102
103static void c2port_write_ar(struct c2port_device *dev, u8 addr)
104{
105 struct c2port_ops *ops = dev->ops;
106 int i;
107
108 /* START field */
109 c2port_strobe_ck(dev);
110
111 /* INS field (11b, LSB first) */
112 ops->c2d_dir(dev, 0);
113 ops->c2d_set(dev, 1);
114 c2port_strobe_ck(dev);
115 ops->c2d_set(dev, 1);
116 c2port_strobe_ck(dev);
117
118 /* ADDRESS field */
119 for (i = 0; i < 8; i++) {
120 ops->c2d_set(dev, addr & 0x01);
121 c2port_strobe_ck(dev);
122
123 addr >>= 1;
124 }
125
126 /* STOP field */
127 ops->c2d_dir(dev, 1);
128 c2port_strobe_ck(dev);
129}
130
131static int c2port_read_ar(struct c2port_device *dev, u8 *addr)
132{
133 struct c2port_ops *ops = dev->ops;
134 int i;
135
136 /* START field */
137 c2port_strobe_ck(dev);
138
139 /* INS field (10b, LSB first) */
140 ops->c2d_dir(dev, 0);
141 ops->c2d_set(dev, 0);
142 c2port_strobe_ck(dev);
143 ops->c2d_set(dev, 1);
144 c2port_strobe_ck(dev);
145
146 /* ADDRESS field */
147 ops->c2d_dir(dev, 1);
148 *addr = 0;
149 for (i = 0; i < 8; i++) {
150 *addr >>= 1; /* shift in 8-bit ADDRESS field LSB first */
151
152 c2port_strobe_ck(dev);
153 if (ops->c2d_get(dev))
154 *addr |= 0x80;
155 }
156
157 /* STOP field */
158 c2port_strobe_ck(dev);
159
160 return 0;
161}
162
163static int c2port_write_dr(struct c2port_device *dev, u8 data)
164{
165 struct c2port_ops *ops = dev->ops;
166 int timeout, i;
167
168 /* START field */
169 c2port_strobe_ck(dev);
170
171 /* INS field (01b, LSB first) */
172 ops->c2d_dir(dev, 0);
173 ops->c2d_set(dev, 1);
174 c2port_strobe_ck(dev);
175 ops->c2d_set(dev, 0);
176 c2port_strobe_ck(dev);
177
178 /* LENGTH field (00b, LSB first -> 1 byte) */
179 ops->c2d_set(dev, 0);
180 c2port_strobe_ck(dev);
181 ops->c2d_set(dev, 0);
182 c2port_strobe_ck(dev);
183
184 /* DATA field */
185 for (i = 0; i < 8; i++) {
186 ops->c2d_set(dev, data & 0x01);
187 c2port_strobe_ck(dev);
188
189 data >>= 1;
190 }
191
192 /* WAIT field */
193 ops->c2d_dir(dev, 1);
194 timeout = 20;
195 do {
196 c2port_strobe_ck(dev);
197 if (ops->c2d_get(dev))
198 break;
199
200 udelay(1);
201 } while (--timeout > 0);
202 if (timeout == 0)
203 return -EIO;
204
205 /* STOP field */
206 c2port_strobe_ck(dev);
207
208 return 0;
209}
210
211static int c2port_read_dr(struct c2port_device *dev, u8 *data)
212{
213 struct c2port_ops *ops = dev->ops;
214 int timeout, i;
215
216 /* START field */
217 c2port_strobe_ck(dev);
218
219 /* INS field (00b, LSB first) */
220 ops->c2d_dir(dev, 0);
221 ops->c2d_set(dev, 0);
222 c2port_strobe_ck(dev);
223 ops->c2d_set(dev, 0);
224 c2port_strobe_ck(dev);
225
226 /* LENGTH field (00b, LSB first -> 1 byte) */
227 ops->c2d_set(dev, 0);
228 c2port_strobe_ck(dev);
229 ops->c2d_set(dev, 0);
230 c2port_strobe_ck(dev);
231
232 /* WAIT field */
233 ops->c2d_dir(dev, 1);
234 timeout = 20;
235 do {
236 c2port_strobe_ck(dev);
237 if (ops->c2d_get(dev))
238 break;
239
240 udelay(1);
241 } while (--timeout > 0);
242 if (timeout == 0)
243 return -EIO;
244
245 /* DATA field */
246 *data = 0;
247 for (i = 0; i < 8; i++) {
248 *data >>= 1; /* shift in 8-bit DATA field LSB first */
249
250 c2port_strobe_ck(dev);
251 if (ops->c2d_get(dev))
252 *data |= 0x80;
253 }
254
255 /* STOP field */
256 c2port_strobe_ck(dev);
257
258 return 0;
259}
260
261static int c2port_poll_in_busy(struct c2port_device *dev)
262{
263 u8 addr;
264 int ret, timeout = 20;
265
266 do {
267 ret = (c2port_read_ar(dev, &addr));
268 if (ret < 0)
269 return -EIO;
270
271 if (!(addr & 0x02))
272 break;
273
274 udelay(1);
275 } while (--timeout > 0);
276 if (timeout == 0)
277 return -EIO;
278
279 return 0;
280}
281
282static int c2port_poll_out_ready(struct c2port_device *dev)
283{
284 u8 addr;
285 int ret, timeout = 10000; /* erase flash needs long time... */
286
287 do {
288 ret = (c2port_read_ar(dev, &addr));
289 if (ret < 0)
290 return -EIO;
291
292 if (addr & 0x01)
293 break;
294
295 udelay(1);
296 } while (--timeout > 0);
297 if (timeout == 0)
298 return -EIO;
299
300 return 0;
301}
302
303/*
304 * sysfs methods
305 */
306
307static ssize_t c2port_show_name(struct device *dev,
308 struct device_attribute *attr, char *buf)
309{
310 struct c2port_device *c2dev = dev_get_drvdata(dev);
311
312 return sprintf(buf, "%s\n", c2dev->name);
313}
314static DEVICE_ATTR(name, 0444, c2port_show_name, NULL);
315
316static ssize_t c2port_show_flash_blocks_num(struct device *dev,
317 struct device_attribute *attr, char *buf)
318{
319 struct c2port_device *c2dev = dev_get_drvdata(dev);
320 struct c2port_ops *ops = c2dev->ops;
321
322 return sprintf(buf, "%d\n", ops->blocks_num);
323}
324static DEVICE_ATTR(flash_blocks_num, 0444, c2port_show_flash_blocks_num, NULL);
325
326static ssize_t c2port_show_flash_block_size(struct device *dev,
327 struct device_attribute *attr, char *buf)
328{
329 struct c2port_device *c2dev = dev_get_drvdata(dev);
330 struct c2port_ops *ops = c2dev->ops;
331
332 return sprintf(buf, "%d\n", ops->block_size);
333}
334static DEVICE_ATTR(flash_block_size, 0444, c2port_show_flash_block_size, NULL);
335
336static ssize_t c2port_show_flash_size(struct device *dev,
337 struct device_attribute *attr, char *buf)
338{
339 struct c2port_device *c2dev = dev_get_drvdata(dev);
340 struct c2port_ops *ops = c2dev->ops;
341
342 return sprintf(buf, "%d\n", ops->blocks_num * ops->block_size);
343}
344static DEVICE_ATTR(flash_size, 0444, c2port_show_flash_size, NULL);
345
346static ssize_t access_show(struct device *dev, struct device_attribute *attr,
347 char *buf)
348{
349 struct c2port_device *c2dev = dev_get_drvdata(dev);
350
351 return sprintf(buf, "%d\n", c2dev->access);
352}
353
354static ssize_t access_store(struct device *dev, struct device_attribute *attr,
355 const char *buf, size_t count)
356{
357 struct c2port_device *c2dev = dev_get_drvdata(dev);
358 struct c2port_ops *ops = c2dev->ops;
359 int status, ret;
360
361 ret = sscanf(buf, "%d", &status);
362 if (ret != 1)
363 return -EINVAL;
364
365 mutex_lock(&c2dev->mutex);
366
367 c2dev->access = !!status;
368
369 /* If access is "on" clock should be HIGH _before_ setting the line
370 * as output and data line should be set as INPUT anyway */
371 if (c2dev->access)
372 ops->c2ck_set(c2dev, 1);
373 ops->access(c2dev, c2dev->access);
374 if (c2dev->access)
375 ops->c2d_dir(c2dev, 1);
376
377 mutex_unlock(&c2dev->mutex);
378
379 return count;
380}
381static DEVICE_ATTR_RW(access);
382
383static ssize_t c2port_store_reset(struct device *dev,
384 struct device_attribute *attr,
385 const char *buf, size_t count)
386{
387 struct c2port_device *c2dev = dev_get_drvdata(dev);
388
389 /* Check the device access status */
390 if (!c2dev->access)
391 return -EBUSY;
392
393 mutex_lock(&c2dev->mutex);
394
395 c2port_reset(c2dev);
396 c2dev->flash_access = 0;
397
398 mutex_unlock(&c2dev->mutex);
399
400 return count;
401}
402static DEVICE_ATTR(reset, 0200, NULL, c2port_store_reset);
403
404static ssize_t __c2port_show_dev_id(struct c2port_device *dev, char *buf)
405{
406 u8 data;
407 int ret;
408
409 /* Select DEVICEID register for C2 data register accesses */
410 c2port_write_ar(dev, C2PORT_DEVICEID);
411
412 /* Read and return the device ID register */
413 ret = c2port_read_dr(dev, &data);
414 if (ret < 0)
415 return ret;
416
417 return sprintf(buf, "%d\n", data);
418}
419
420static ssize_t c2port_show_dev_id(struct device *dev,
421 struct device_attribute *attr, char *buf)
422{
423 struct c2port_device *c2dev = dev_get_drvdata(dev);
424 ssize_t ret;
425
426 /* Check the device access status */
427 if (!c2dev->access)
428 return -EBUSY;
429
430 mutex_lock(&c2dev->mutex);
431 ret = __c2port_show_dev_id(c2dev, buf);
432 mutex_unlock(&c2dev->mutex);
433
434 if (ret < 0)
435 dev_err(dev, "cannot read from %s\n", c2dev->name);
436
437 return ret;
438}
439static DEVICE_ATTR(dev_id, 0444, c2port_show_dev_id, NULL);
440
441static ssize_t __c2port_show_rev_id(struct c2port_device *dev, char *buf)
442{
443 u8 data;
444 int ret;
445
446 /* Select REVID register for C2 data register accesses */
447 c2port_write_ar(dev, C2PORT_REVID);
448
449 /* Read and return the revision ID register */
450 ret = c2port_read_dr(dev, &data);
451 if (ret < 0)
452 return ret;
453
454 return sprintf(buf, "%d\n", data);
455}
456
457static ssize_t c2port_show_rev_id(struct device *dev,
458 struct device_attribute *attr, char *buf)
459{
460 struct c2port_device *c2dev = dev_get_drvdata(dev);
461 ssize_t ret;
462
463 /* Check the device access status */
464 if (!c2dev->access)
465 return -EBUSY;
466
467 mutex_lock(&c2dev->mutex);
468 ret = __c2port_show_rev_id(c2dev, buf);
469 mutex_unlock(&c2dev->mutex);
470
471 if (ret < 0)
472 dev_err(c2dev->dev, "cannot read from %s\n", c2dev->name);
473
474 return ret;
475}
476static DEVICE_ATTR(rev_id, 0444, c2port_show_rev_id, NULL);
477
478static ssize_t c2port_show_flash_access(struct device *dev,
479 struct device_attribute *attr, char *buf)
480{
481 struct c2port_device *c2dev = dev_get_drvdata(dev);
482
483 return sprintf(buf, "%d\n", c2dev->flash_access);
484}
485
486static ssize_t __c2port_store_flash_access(struct c2port_device *dev,
487 int status)
488{
489 int ret;
490
491 /* Check the device access status */
492 if (!dev->access)
493 return -EBUSY;
494
495 dev->flash_access = !!status;
496
497 /* If flash_access is off we have nothing to do... */
498 if (dev->flash_access == 0)
499 return 0;
500
501 /* Target the C2 flash programming control register for C2 data
502 * register access */
503 c2port_write_ar(dev, C2PORT_FPCTL);
504
505 /* Write the first keycode to enable C2 Flash programming */
506 ret = c2port_write_dr(dev, 0x02);
507 if (ret < 0)
508 return ret;
509
510 /* Write the second keycode to enable C2 Flash programming */
511 ret = c2port_write_dr(dev, 0x01);
512 if (ret < 0)
513 return ret;
514
515 /* Delay for at least 20ms to ensure the target is ready for
516 * C2 flash programming */
517 mdelay(25);
518
519 return 0;
520}
521
522static ssize_t c2port_store_flash_access(struct device *dev,
523 struct device_attribute *attr,
524 const char *buf, size_t count)
525{
526 struct c2port_device *c2dev = dev_get_drvdata(dev);
527 int status;
528 ssize_t ret;
529
530 ret = sscanf(buf, "%d", &status);
531 if (ret != 1)
532 return -EINVAL;
533
534 mutex_lock(&c2dev->mutex);
535 ret = __c2port_store_flash_access(c2dev, status);
536 mutex_unlock(&c2dev->mutex);
537
538 if (ret < 0) {
539 dev_err(c2dev->dev, "cannot enable %s flash programming\n",
540 c2dev->name);
541 return ret;
542 }
543
544 return count;
545}
546static DEVICE_ATTR(flash_access, 0644, c2port_show_flash_access,
547 c2port_store_flash_access);
548
549static ssize_t __c2port_write_flash_erase(struct c2port_device *dev)
550{
551 u8 status;
552 int ret;
553
554 /* Target the C2 flash programming data register for C2 data register
555 * access.
556 */
557 c2port_write_ar(dev, C2PORT_FPDAT);
558
559 /* Send device erase command */
560 c2port_write_dr(dev, C2PORT_DEVICE_ERASE);
561
562 /* Wait for input acknowledge */
563 ret = c2port_poll_in_busy(dev);
564 if (ret < 0)
565 return ret;
566
567 /* Should check status before starting FLASH access sequence */
568
569 /* Wait for status information */
570 ret = c2port_poll_out_ready(dev);
571 if (ret < 0)
572 return ret;
573
574 /* Read flash programming interface status */
575 ret = c2port_read_dr(dev, &status);
576 if (ret < 0)
577 return ret;
578 if (status != C2PORT_COMMAND_OK)
579 return -EBUSY;
580
581 /* Send a three-byte arming sequence to enable the device erase.
582 * If the sequence is not received correctly, the command will be
583 * ignored.
584 * Sequence is: 0xde, 0xad, 0xa5.
585 */
586 c2port_write_dr(dev, 0xde);
587 ret = c2port_poll_in_busy(dev);
588 if (ret < 0)
589 return ret;
590 c2port_write_dr(dev, 0xad);
591 ret = c2port_poll_in_busy(dev);
592 if (ret < 0)
593 return ret;
594 c2port_write_dr(dev, 0xa5);
595 ret = c2port_poll_in_busy(dev);
596 if (ret < 0)
597 return ret;
598
599 ret = c2port_poll_out_ready(dev);
600 if (ret < 0)
601 return ret;
602
603 return 0;
604}
605
606static ssize_t c2port_store_flash_erase(struct device *dev,
607 struct device_attribute *attr,
608 const char *buf, size_t count)
609{
610 struct c2port_device *c2dev = dev_get_drvdata(dev);
611 int ret;
612
613 /* Check the device and flash access status */
614 if (!c2dev->access || !c2dev->flash_access)
615 return -EBUSY;
616
617 mutex_lock(&c2dev->mutex);
618 ret = __c2port_write_flash_erase(c2dev);
619 mutex_unlock(&c2dev->mutex);
620
621 if (ret < 0) {
622 dev_err(c2dev->dev, "cannot erase %s flash\n", c2dev->name);
623 return ret;
624 }
625
626 return count;
627}
628static DEVICE_ATTR(flash_erase, 0200, NULL, c2port_store_flash_erase);
629
630static ssize_t __c2port_read_flash_data(struct c2port_device *dev,
631 char *buffer, loff_t offset, size_t count)
632{
633 struct c2port_ops *ops = dev->ops;
634 u8 status, nread = 128;
635 int i, ret;
636
637 /* Check for flash end */
638 if (offset >= ops->block_size * ops->blocks_num)
639 return 0;
640
641 if (ops->block_size * ops->blocks_num - offset < nread)
642 nread = ops->block_size * ops->blocks_num - offset;
643 if (count < nread)
644 nread = count;
645 if (nread == 0)
646 return nread;
647
648 /* Target the C2 flash programming data register for C2 data register
649 * access */
650 c2port_write_ar(dev, C2PORT_FPDAT);
651
652 /* Send flash block read command */
653 c2port_write_dr(dev, C2PORT_BLOCK_READ);
654
655 /* Wait for input acknowledge */
656 ret = c2port_poll_in_busy(dev);
657 if (ret < 0)
658 return ret;
659
660 /* Should check status before starting FLASH access sequence */
661
662 /* Wait for status information */
663 ret = c2port_poll_out_ready(dev);
664 if (ret < 0)
665 return ret;
666
667 /* Read flash programming interface status */
668 ret = c2port_read_dr(dev, &status);
669 if (ret < 0)
670 return ret;
671 if (status != C2PORT_COMMAND_OK)
672 return -EBUSY;
673
674 /* Send address high byte */
675 c2port_write_dr(dev, offset >> 8);
676 ret = c2port_poll_in_busy(dev);
677 if (ret < 0)
678 return ret;
679
680 /* Send address low byte */
681 c2port_write_dr(dev, offset & 0x00ff);
682 ret = c2port_poll_in_busy(dev);
683 if (ret < 0)
684 return ret;
685
686 /* Send address block size */
687 c2port_write_dr(dev, nread);
688 ret = c2port_poll_in_busy(dev);
689 if (ret < 0)
690 return ret;
691
692 /* Should check status before reading FLASH block */
693
694 /* Wait for status information */
695 ret = c2port_poll_out_ready(dev);
696 if (ret < 0)
697 return ret;
698
699 /* Read flash programming interface status */
700 ret = c2port_read_dr(dev, &status);
701 if (ret < 0)
702 return ret;
703 if (status != C2PORT_COMMAND_OK)
704 return -EBUSY;
705
706 /* Read flash block */
707 for (i = 0; i < nread; i++) {
708 ret = c2port_poll_out_ready(dev);
709 if (ret < 0)
710 return ret;
711
712 ret = c2port_read_dr(dev, buffer+i);
713 if (ret < 0)
714 return ret;
715 }
716
717 return nread;
718}
719
720static ssize_t c2port_read_flash_data(struct file *filp, struct kobject *kobj,
721 struct bin_attribute *attr,
722 char *buffer, loff_t offset, size_t count)
723{
724 struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
725 ssize_t ret;
726
727 /* Check the device and flash access status */
728 if (!c2dev->access || !c2dev->flash_access)
729 return -EBUSY;
730
731 mutex_lock(&c2dev->mutex);
732 ret = __c2port_read_flash_data(c2dev, buffer, offset, count);
733 mutex_unlock(&c2dev->mutex);
734
735 if (ret < 0)
736 dev_err(c2dev->dev, "cannot read %s flash\n", c2dev->name);
737
738 return ret;
739}
740
741static ssize_t __c2port_write_flash_data(struct c2port_device *dev,
742 char *buffer, loff_t offset, size_t count)
743{
744 struct c2port_ops *ops = dev->ops;
745 u8 status, nwrite = 128;
746 int i, ret;
747
748 if (nwrite > count)
749 nwrite = count;
750 if (ops->block_size * ops->blocks_num - offset < nwrite)
751 nwrite = ops->block_size * ops->blocks_num - offset;
752
753 /* Check for flash end */
754 if (offset >= ops->block_size * ops->blocks_num)
755 return -EINVAL;
756
757 /* Target the C2 flash programming data register for C2 data register
758 * access */
759 c2port_write_ar(dev, C2PORT_FPDAT);
760
761 /* Send flash block write command */
762 c2port_write_dr(dev, C2PORT_BLOCK_WRITE);
763
764 /* Wait for input acknowledge */
765 ret = c2port_poll_in_busy(dev);
766 if (ret < 0)
767 return ret;
768
769 /* Should check status before starting FLASH access sequence */
770
771 /* Wait for status information */
772 ret = c2port_poll_out_ready(dev);
773 if (ret < 0)
774 return ret;
775
776 /* Read flash programming interface status */
777 ret = c2port_read_dr(dev, &status);
778 if (ret < 0)
779 return ret;
780 if (status != C2PORT_COMMAND_OK)
781 return -EBUSY;
782
783 /* Send address high byte */
784 c2port_write_dr(dev, offset >> 8);
785 ret = c2port_poll_in_busy(dev);
786 if (ret < 0)
787 return ret;
788
789 /* Send address low byte */
790 c2port_write_dr(dev, offset & 0x00ff);
791 ret = c2port_poll_in_busy(dev);
792 if (ret < 0)
793 return ret;
794
795 /* Send address block size */
796 c2port_write_dr(dev, nwrite);
797 ret = c2port_poll_in_busy(dev);
798 if (ret < 0)
799 return ret;
800
801 /* Should check status before writing FLASH block */
802
803 /* Wait for status information */
804 ret = c2port_poll_out_ready(dev);
805 if (ret < 0)
806 return ret;
807
808 /* Read flash programming interface status */
809 ret = c2port_read_dr(dev, &status);
810 if (ret < 0)
811 return ret;
812 if (status != C2PORT_COMMAND_OK)
813 return -EBUSY;
814
815 /* Write flash block */
816 for (i = 0; i < nwrite; i++) {
817 ret = c2port_write_dr(dev, *(buffer+i));
818 if (ret < 0)
819 return ret;
820
821 ret = c2port_poll_in_busy(dev);
822 if (ret < 0)
823 return ret;
824
825 }
826
827 /* Wait for last flash write to complete */
828 ret = c2port_poll_out_ready(dev);
829 if (ret < 0)
830 return ret;
831
832 return nwrite;
833}
834
835static ssize_t c2port_write_flash_data(struct file *filp, struct kobject *kobj,
836 struct bin_attribute *attr,
837 char *buffer, loff_t offset, size_t count)
838{
839 struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
840 int ret;
841
842 /* Check the device access status */
843 if (!c2dev->access || !c2dev->flash_access)
844 return -EBUSY;
845
846 mutex_lock(&c2dev->mutex);
847 ret = __c2port_write_flash_data(c2dev, buffer, offset, count);
848 mutex_unlock(&c2dev->mutex);
849
850 if (ret < 0)
851 dev_err(c2dev->dev, "cannot write %s flash\n", c2dev->name);
852
853 return ret;
854}
855/* size is computed at run-time */
856static BIN_ATTR(flash_data, 0644, c2port_read_flash_data,
857 c2port_write_flash_data, 0);
858
859/*
860 * Class attributes
861 */
862static struct attribute *c2port_attrs[] = {
863 &dev_attr_name.attr,
864 &dev_attr_flash_blocks_num.attr,
865 &dev_attr_flash_block_size.attr,
866 &dev_attr_flash_size.attr,
867 &dev_attr_access.attr,
868 &dev_attr_reset.attr,
869 &dev_attr_dev_id.attr,
870 &dev_attr_rev_id.attr,
871 &dev_attr_flash_access.attr,
872 &dev_attr_flash_erase.attr,
873 NULL,
874};
875
876static struct bin_attribute *c2port_bin_attrs[] = {
877 &bin_attr_flash_data,
878 NULL,
879};
880
881static const struct attribute_group c2port_group = {
882 .attrs = c2port_attrs,
883 .bin_attrs = c2port_bin_attrs,
884};
885
886static const struct attribute_group *c2port_groups[] = {
887 &c2port_group,
888 NULL,
889};
890
891/*
892 * Exported functions
893 */
894
895struct c2port_device *c2port_device_register(char *name,
896 struct c2port_ops *ops, void *devdata)
897{
898 struct c2port_device *c2dev;
899 int ret;
900
901 if (unlikely(!ops) || unlikely(!ops->access) || \
902 unlikely(!ops->c2d_dir) || unlikely(!ops->c2ck_set) || \
903 unlikely(!ops->c2d_get) || unlikely(!ops->c2d_set))
904 return ERR_PTR(-EINVAL);
905
906 c2dev = kmalloc(sizeof(struct c2port_device), GFP_KERNEL);
907 kmemcheck_annotate_bitfield(c2dev, flags);
908 if (unlikely(!c2dev))
909 return ERR_PTR(-ENOMEM);
910
911 idr_preload(GFP_KERNEL);
912 spin_lock_irq(&c2port_idr_lock);
913 ret = idr_alloc(&c2port_idr, c2dev, 0, 0, GFP_NOWAIT);
914 spin_unlock_irq(&c2port_idr_lock);
915 idr_preload_end();
916
917 if (ret < 0)
918 goto error_idr_alloc;
919 c2dev->id = ret;
920
921 bin_attr_flash_data.size = ops->blocks_num * ops->block_size;
922
923 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev,
924 "c2port%d", c2dev->id);
925 if (IS_ERR(c2dev->dev)) {
926 ret = PTR_ERR(c2dev->dev);
927 goto error_device_create;
928 }
929 dev_set_drvdata(c2dev->dev, c2dev);
930
931 strncpy(c2dev->name, name, C2PORT_NAME_LEN);
932 c2dev->ops = ops;
933 mutex_init(&c2dev->mutex);
934
935 /* By default C2 port access is off */
936 c2dev->access = c2dev->flash_access = 0;
937 ops->access(c2dev, 0);
938
939 dev_info(c2dev->dev, "C2 port %s added\n", name);
940 dev_info(c2dev->dev, "%s flash has %d blocks x %d bytes "
941 "(%d bytes total)\n",
942 name, ops->blocks_num, ops->block_size,
943 ops->blocks_num * ops->block_size);
944
945 return c2dev;
946
947error_device_create:
948 spin_lock_irq(&c2port_idr_lock);
949 idr_remove(&c2port_idr, c2dev->id);
950 spin_unlock_irq(&c2port_idr_lock);
951
952error_idr_alloc:
953 kfree(c2dev);
954
955 return ERR_PTR(ret);
956}
957EXPORT_SYMBOL(c2port_device_register);
958
959void c2port_device_unregister(struct c2port_device *c2dev)
960{
961 if (!c2dev)
962 return;
963
964 dev_info(c2dev->dev, "C2 port %s removed\n", c2dev->name);
965
966 spin_lock_irq(&c2port_idr_lock);
967 idr_remove(&c2port_idr, c2dev->id);
968 spin_unlock_irq(&c2port_idr_lock);
969
970 device_destroy(c2port_class, c2dev->id);
971
972 kfree(c2dev);
973}
974EXPORT_SYMBOL(c2port_device_unregister);
975
976/*
977 * Module stuff
978 */
979
980static int __init c2port_init(void)
981{
982 printk(KERN_INFO "Silicon Labs C2 port support v. " DRIVER_VERSION
983 " - (C) 2007 Rodolfo Giometti\n");
984
985 c2port_class = class_create(THIS_MODULE, "c2port");
986 if (IS_ERR(c2port_class)) {
987 printk(KERN_ERR "c2port: failed to allocate class\n");
988 return PTR_ERR(c2port_class);
989 }
990 c2port_class->dev_groups = c2port_groups;
991
992 return 0;
993}
994
995static void __exit c2port_exit(void)
996{
997 class_destroy(c2port_class);
998}
999
1000module_init(c2port_init);
1001module_exit(c2port_exit);
1002
1003MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
1004MODULE_DESCRIPTION("Silicon Labs C2 port support v. " DRIVER_VERSION);
1005MODULE_LICENSE("GPL");
1/*
2 * Silicon Labs C2 port core Linux support
3 *
4 * Copyright (c) 2007 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (c) 2007 Eurotech S.p.A. <info@eurotech.it>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/device.h>
15#include <linux/errno.h>
16#include <linux/err.h>
17#include <linux/kernel.h>
18#include <linux/ctype.h>
19#include <linux/delay.h>
20#include <linux/idr.h>
21#include <linux/sched.h>
22#include <linux/slab.h>
23
24#include <linux/c2port.h>
25
26#define DRIVER_NAME "c2port"
27#define DRIVER_VERSION "0.51.0"
28
29static DEFINE_SPINLOCK(c2port_idr_lock);
30static DEFINE_IDR(c2port_idr);
31
32/*
33 * Local variables
34 */
35
36static struct class *c2port_class;
37
38/*
39 * C2 registers & commands defines
40 */
41
42/* C2 registers */
43#define C2PORT_DEVICEID 0x00
44#define C2PORT_REVID 0x01
45#define C2PORT_FPCTL 0x02
46#define C2PORT_FPDAT 0xB4
47
48/* C2 interface commands */
49#define C2PORT_GET_VERSION 0x01
50#define C2PORT_DEVICE_ERASE 0x03
51#define C2PORT_BLOCK_READ 0x06
52#define C2PORT_BLOCK_WRITE 0x07
53#define C2PORT_PAGE_ERASE 0x08
54
55/* C2 status return codes */
56#define C2PORT_INVALID_COMMAND 0x00
57#define C2PORT_COMMAND_FAILED 0x02
58#define C2PORT_COMMAND_OK 0x0d
59
60/*
61 * C2 port low level signal managements
62 */
63
64static void c2port_reset(struct c2port_device *dev)
65{
66 struct c2port_ops *ops = dev->ops;
67
68 /* To reset the device we have to keep clock line low for at least
69 * 20us.
70 */
71 local_irq_disable();
72 ops->c2ck_set(dev, 0);
73 udelay(25);
74 ops->c2ck_set(dev, 1);
75 local_irq_enable();
76
77 udelay(1);
78}
79
80static void c2port_strobe_ck(struct c2port_device *dev)
81{
82 struct c2port_ops *ops = dev->ops;
83
84 /* During hi-low-hi transition we disable local IRQs to avoid
85 * interructions since C2 port specification says that it must be
86 * shorter than 5us, otherwise the microcontroller may consider
87 * it as a reset signal!
88 */
89 local_irq_disable();
90 ops->c2ck_set(dev, 0);
91 udelay(1);
92 ops->c2ck_set(dev, 1);
93 local_irq_enable();
94
95 udelay(1);
96}
97
98/*
99 * C2 port basic functions
100 */
101
102static void c2port_write_ar(struct c2port_device *dev, u8 addr)
103{
104 struct c2port_ops *ops = dev->ops;
105 int i;
106
107 /* START field */
108 c2port_strobe_ck(dev);
109
110 /* INS field (11b, LSB first) */
111 ops->c2d_dir(dev, 0);
112 ops->c2d_set(dev, 1);
113 c2port_strobe_ck(dev);
114 ops->c2d_set(dev, 1);
115 c2port_strobe_ck(dev);
116
117 /* ADDRESS field */
118 for (i = 0; i < 8; i++) {
119 ops->c2d_set(dev, addr & 0x01);
120 c2port_strobe_ck(dev);
121
122 addr >>= 1;
123 }
124
125 /* STOP field */
126 ops->c2d_dir(dev, 1);
127 c2port_strobe_ck(dev);
128}
129
130static int c2port_read_ar(struct c2port_device *dev, u8 *addr)
131{
132 struct c2port_ops *ops = dev->ops;
133 int i;
134
135 /* START field */
136 c2port_strobe_ck(dev);
137
138 /* INS field (10b, LSB first) */
139 ops->c2d_dir(dev, 0);
140 ops->c2d_set(dev, 0);
141 c2port_strobe_ck(dev);
142 ops->c2d_set(dev, 1);
143 c2port_strobe_ck(dev);
144
145 /* ADDRESS field */
146 ops->c2d_dir(dev, 1);
147 *addr = 0;
148 for (i = 0; i < 8; i++) {
149 *addr >>= 1; /* shift in 8-bit ADDRESS field LSB first */
150
151 c2port_strobe_ck(dev);
152 if (ops->c2d_get(dev))
153 *addr |= 0x80;
154 }
155
156 /* STOP field */
157 c2port_strobe_ck(dev);
158
159 return 0;
160}
161
162static int c2port_write_dr(struct c2port_device *dev, u8 data)
163{
164 struct c2port_ops *ops = dev->ops;
165 int timeout, i;
166
167 /* START field */
168 c2port_strobe_ck(dev);
169
170 /* INS field (01b, LSB first) */
171 ops->c2d_dir(dev, 0);
172 ops->c2d_set(dev, 1);
173 c2port_strobe_ck(dev);
174 ops->c2d_set(dev, 0);
175 c2port_strobe_ck(dev);
176
177 /* LENGTH field (00b, LSB first -> 1 byte) */
178 ops->c2d_set(dev, 0);
179 c2port_strobe_ck(dev);
180 ops->c2d_set(dev, 0);
181 c2port_strobe_ck(dev);
182
183 /* DATA field */
184 for (i = 0; i < 8; i++) {
185 ops->c2d_set(dev, data & 0x01);
186 c2port_strobe_ck(dev);
187
188 data >>= 1;
189 }
190
191 /* WAIT field */
192 ops->c2d_dir(dev, 1);
193 timeout = 20;
194 do {
195 c2port_strobe_ck(dev);
196 if (ops->c2d_get(dev))
197 break;
198
199 udelay(1);
200 } while (--timeout > 0);
201 if (timeout == 0)
202 return -EIO;
203
204 /* STOP field */
205 c2port_strobe_ck(dev);
206
207 return 0;
208}
209
210static int c2port_read_dr(struct c2port_device *dev, u8 *data)
211{
212 struct c2port_ops *ops = dev->ops;
213 int timeout, i;
214
215 /* START field */
216 c2port_strobe_ck(dev);
217
218 /* INS field (00b, LSB first) */
219 ops->c2d_dir(dev, 0);
220 ops->c2d_set(dev, 0);
221 c2port_strobe_ck(dev);
222 ops->c2d_set(dev, 0);
223 c2port_strobe_ck(dev);
224
225 /* LENGTH field (00b, LSB first -> 1 byte) */
226 ops->c2d_set(dev, 0);
227 c2port_strobe_ck(dev);
228 ops->c2d_set(dev, 0);
229 c2port_strobe_ck(dev);
230
231 /* WAIT field */
232 ops->c2d_dir(dev, 1);
233 timeout = 20;
234 do {
235 c2port_strobe_ck(dev);
236 if (ops->c2d_get(dev))
237 break;
238
239 udelay(1);
240 } while (--timeout > 0);
241 if (timeout == 0)
242 return -EIO;
243
244 /* DATA field */
245 *data = 0;
246 for (i = 0; i < 8; i++) {
247 *data >>= 1; /* shift in 8-bit DATA field LSB first */
248
249 c2port_strobe_ck(dev);
250 if (ops->c2d_get(dev))
251 *data |= 0x80;
252 }
253
254 /* STOP field */
255 c2port_strobe_ck(dev);
256
257 return 0;
258}
259
260static int c2port_poll_in_busy(struct c2port_device *dev)
261{
262 u8 addr;
263 int ret, timeout = 20;
264
265 do {
266 ret = (c2port_read_ar(dev, &addr));
267 if (ret < 0)
268 return -EIO;
269
270 if (!(addr & 0x02))
271 break;
272
273 udelay(1);
274 } while (--timeout > 0);
275 if (timeout == 0)
276 return -EIO;
277
278 return 0;
279}
280
281static int c2port_poll_out_ready(struct c2port_device *dev)
282{
283 u8 addr;
284 int ret, timeout = 10000; /* erase flash needs long time... */
285
286 do {
287 ret = (c2port_read_ar(dev, &addr));
288 if (ret < 0)
289 return -EIO;
290
291 if (addr & 0x01)
292 break;
293
294 udelay(1);
295 } while (--timeout > 0);
296 if (timeout == 0)
297 return -EIO;
298
299 return 0;
300}
301
302/*
303 * sysfs methods
304 */
305
306static ssize_t c2port_show_name(struct device *dev,
307 struct device_attribute *attr, char *buf)
308{
309 struct c2port_device *c2dev = dev_get_drvdata(dev);
310
311 return sprintf(buf, "%s\n", c2dev->name);
312}
313static DEVICE_ATTR(name, 0444, c2port_show_name, NULL);
314
315static ssize_t c2port_show_flash_blocks_num(struct device *dev,
316 struct device_attribute *attr, char *buf)
317{
318 struct c2port_device *c2dev = dev_get_drvdata(dev);
319 struct c2port_ops *ops = c2dev->ops;
320
321 return sprintf(buf, "%d\n", ops->blocks_num);
322}
323static DEVICE_ATTR(flash_blocks_num, 0444, c2port_show_flash_blocks_num, NULL);
324
325static ssize_t c2port_show_flash_block_size(struct device *dev,
326 struct device_attribute *attr, char *buf)
327{
328 struct c2port_device *c2dev = dev_get_drvdata(dev);
329 struct c2port_ops *ops = c2dev->ops;
330
331 return sprintf(buf, "%d\n", ops->block_size);
332}
333static DEVICE_ATTR(flash_block_size, 0444, c2port_show_flash_block_size, NULL);
334
335static ssize_t c2port_show_flash_size(struct device *dev,
336 struct device_attribute *attr, char *buf)
337{
338 struct c2port_device *c2dev = dev_get_drvdata(dev);
339 struct c2port_ops *ops = c2dev->ops;
340
341 return sprintf(buf, "%d\n", ops->blocks_num * ops->block_size);
342}
343static DEVICE_ATTR(flash_size, 0444, c2port_show_flash_size, NULL);
344
345static ssize_t access_show(struct device *dev, struct device_attribute *attr,
346 char *buf)
347{
348 struct c2port_device *c2dev = dev_get_drvdata(dev);
349
350 return sprintf(buf, "%d\n", c2dev->access);
351}
352
353static ssize_t access_store(struct device *dev, struct device_attribute *attr,
354 const char *buf, size_t count)
355{
356 struct c2port_device *c2dev = dev_get_drvdata(dev);
357 struct c2port_ops *ops = c2dev->ops;
358 int status, ret;
359
360 ret = sscanf(buf, "%d", &status);
361 if (ret != 1)
362 return -EINVAL;
363
364 mutex_lock(&c2dev->mutex);
365
366 c2dev->access = !!status;
367
368 /* If access is "on" clock should be HIGH _before_ setting the line
369 * as output and data line should be set as INPUT anyway */
370 if (c2dev->access)
371 ops->c2ck_set(c2dev, 1);
372 ops->access(c2dev, c2dev->access);
373 if (c2dev->access)
374 ops->c2d_dir(c2dev, 1);
375
376 mutex_unlock(&c2dev->mutex);
377
378 return count;
379}
380static DEVICE_ATTR_RW(access);
381
382static ssize_t c2port_store_reset(struct device *dev,
383 struct device_attribute *attr,
384 const char *buf, size_t count)
385{
386 struct c2port_device *c2dev = dev_get_drvdata(dev);
387
388 /* Check the device access status */
389 if (!c2dev->access)
390 return -EBUSY;
391
392 mutex_lock(&c2dev->mutex);
393
394 c2port_reset(c2dev);
395 c2dev->flash_access = 0;
396
397 mutex_unlock(&c2dev->mutex);
398
399 return count;
400}
401static DEVICE_ATTR(reset, 0200, NULL, c2port_store_reset);
402
403static ssize_t __c2port_show_dev_id(struct c2port_device *dev, char *buf)
404{
405 u8 data;
406 int ret;
407
408 /* Select DEVICEID register for C2 data register accesses */
409 c2port_write_ar(dev, C2PORT_DEVICEID);
410
411 /* Read and return the device ID register */
412 ret = c2port_read_dr(dev, &data);
413 if (ret < 0)
414 return ret;
415
416 return sprintf(buf, "%d\n", data);
417}
418
419static ssize_t c2port_show_dev_id(struct device *dev,
420 struct device_attribute *attr, char *buf)
421{
422 struct c2port_device *c2dev = dev_get_drvdata(dev);
423 ssize_t ret;
424
425 /* Check the device access status */
426 if (!c2dev->access)
427 return -EBUSY;
428
429 mutex_lock(&c2dev->mutex);
430 ret = __c2port_show_dev_id(c2dev, buf);
431 mutex_unlock(&c2dev->mutex);
432
433 if (ret < 0)
434 dev_err(dev, "cannot read from %s\n", c2dev->name);
435
436 return ret;
437}
438static DEVICE_ATTR(dev_id, 0444, c2port_show_dev_id, NULL);
439
440static ssize_t __c2port_show_rev_id(struct c2port_device *dev, char *buf)
441{
442 u8 data;
443 int ret;
444
445 /* Select REVID register for C2 data register accesses */
446 c2port_write_ar(dev, C2PORT_REVID);
447
448 /* Read and return the revision ID register */
449 ret = c2port_read_dr(dev, &data);
450 if (ret < 0)
451 return ret;
452
453 return sprintf(buf, "%d\n", data);
454}
455
456static ssize_t c2port_show_rev_id(struct device *dev,
457 struct device_attribute *attr, char *buf)
458{
459 struct c2port_device *c2dev = dev_get_drvdata(dev);
460 ssize_t ret;
461
462 /* Check the device access status */
463 if (!c2dev->access)
464 return -EBUSY;
465
466 mutex_lock(&c2dev->mutex);
467 ret = __c2port_show_rev_id(c2dev, buf);
468 mutex_unlock(&c2dev->mutex);
469
470 if (ret < 0)
471 dev_err(c2dev->dev, "cannot read from %s\n", c2dev->name);
472
473 return ret;
474}
475static DEVICE_ATTR(rev_id, 0444, c2port_show_rev_id, NULL);
476
477static ssize_t c2port_show_flash_access(struct device *dev,
478 struct device_attribute *attr, char *buf)
479{
480 struct c2port_device *c2dev = dev_get_drvdata(dev);
481
482 return sprintf(buf, "%d\n", c2dev->flash_access);
483}
484
485static ssize_t __c2port_store_flash_access(struct c2port_device *dev,
486 int status)
487{
488 int ret;
489
490 /* Check the device access status */
491 if (!dev->access)
492 return -EBUSY;
493
494 dev->flash_access = !!status;
495
496 /* If flash_access is off we have nothing to do... */
497 if (dev->flash_access == 0)
498 return 0;
499
500 /* Target the C2 flash programming control register for C2 data
501 * register access */
502 c2port_write_ar(dev, C2PORT_FPCTL);
503
504 /* Write the first keycode to enable C2 Flash programming */
505 ret = c2port_write_dr(dev, 0x02);
506 if (ret < 0)
507 return ret;
508
509 /* Write the second keycode to enable C2 Flash programming */
510 ret = c2port_write_dr(dev, 0x01);
511 if (ret < 0)
512 return ret;
513
514 /* Delay for at least 20ms to ensure the target is ready for
515 * C2 flash programming */
516 mdelay(25);
517
518 return 0;
519}
520
521static ssize_t c2port_store_flash_access(struct device *dev,
522 struct device_attribute *attr,
523 const char *buf, size_t count)
524{
525 struct c2port_device *c2dev = dev_get_drvdata(dev);
526 int status;
527 ssize_t ret;
528
529 ret = sscanf(buf, "%d", &status);
530 if (ret != 1)
531 return -EINVAL;
532
533 mutex_lock(&c2dev->mutex);
534 ret = __c2port_store_flash_access(c2dev, status);
535 mutex_unlock(&c2dev->mutex);
536
537 if (ret < 0) {
538 dev_err(c2dev->dev, "cannot enable %s flash programming\n",
539 c2dev->name);
540 return ret;
541 }
542
543 return count;
544}
545static DEVICE_ATTR(flash_access, 0644, c2port_show_flash_access,
546 c2port_store_flash_access);
547
548static ssize_t __c2port_write_flash_erase(struct c2port_device *dev)
549{
550 u8 status;
551 int ret;
552
553 /* Target the C2 flash programming data register for C2 data register
554 * access.
555 */
556 c2port_write_ar(dev, C2PORT_FPDAT);
557
558 /* Send device erase command */
559 c2port_write_dr(dev, C2PORT_DEVICE_ERASE);
560
561 /* Wait for input acknowledge */
562 ret = c2port_poll_in_busy(dev);
563 if (ret < 0)
564 return ret;
565
566 /* Should check status before starting FLASH access sequence */
567
568 /* Wait for status information */
569 ret = c2port_poll_out_ready(dev);
570 if (ret < 0)
571 return ret;
572
573 /* Read flash programming interface status */
574 ret = c2port_read_dr(dev, &status);
575 if (ret < 0)
576 return ret;
577 if (status != C2PORT_COMMAND_OK)
578 return -EBUSY;
579
580 /* Send a three-byte arming sequence to enable the device erase.
581 * If the sequence is not received correctly, the command will be
582 * ignored.
583 * Sequence is: 0xde, 0xad, 0xa5.
584 */
585 c2port_write_dr(dev, 0xde);
586 ret = c2port_poll_in_busy(dev);
587 if (ret < 0)
588 return ret;
589 c2port_write_dr(dev, 0xad);
590 ret = c2port_poll_in_busy(dev);
591 if (ret < 0)
592 return ret;
593 c2port_write_dr(dev, 0xa5);
594 ret = c2port_poll_in_busy(dev);
595 if (ret < 0)
596 return ret;
597
598 ret = c2port_poll_out_ready(dev);
599 if (ret < 0)
600 return ret;
601
602 return 0;
603}
604
605static ssize_t c2port_store_flash_erase(struct device *dev,
606 struct device_attribute *attr,
607 const char *buf, size_t count)
608{
609 struct c2port_device *c2dev = dev_get_drvdata(dev);
610 int ret;
611
612 /* Check the device and flash access status */
613 if (!c2dev->access || !c2dev->flash_access)
614 return -EBUSY;
615
616 mutex_lock(&c2dev->mutex);
617 ret = __c2port_write_flash_erase(c2dev);
618 mutex_unlock(&c2dev->mutex);
619
620 if (ret < 0) {
621 dev_err(c2dev->dev, "cannot erase %s flash\n", c2dev->name);
622 return ret;
623 }
624
625 return count;
626}
627static DEVICE_ATTR(flash_erase, 0200, NULL, c2port_store_flash_erase);
628
629static ssize_t __c2port_read_flash_data(struct c2port_device *dev,
630 char *buffer, loff_t offset, size_t count)
631{
632 struct c2port_ops *ops = dev->ops;
633 u8 status, nread = 128;
634 int i, ret;
635
636 /* Check for flash end */
637 if (offset >= ops->block_size * ops->blocks_num)
638 return 0;
639
640 if (ops->block_size * ops->blocks_num - offset < nread)
641 nread = ops->block_size * ops->blocks_num - offset;
642 if (count < nread)
643 nread = count;
644 if (nread == 0)
645 return nread;
646
647 /* Target the C2 flash programming data register for C2 data register
648 * access */
649 c2port_write_ar(dev, C2PORT_FPDAT);
650
651 /* Send flash block read command */
652 c2port_write_dr(dev, C2PORT_BLOCK_READ);
653
654 /* Wait for input acknowledge */
655 ret = c2port_poll_in_busy(dev);
656 if (ret < 0)
657 return ret;
658
659 /* Should check status before starting FLASH access sequence */
660
661 /* Wait for status information */
662 ret = c2port_poll_out_ready(dev);
663 if (ret < 0)
664 return ret;
665
666 /* Read flash programming interface status */
667 ret = c2port_read_dr(dev, &status);
668 if (ret < 0)
669 return ret;
670 if (status != C2PORT_COMMAND_OK)
671 return -EBUSY;
672
673 /* Send address high byte */
674 c2port_write_dr(dev, offset >> 8);
675 ret = c2port_poll_in_busy(dev);
676 if (ret < 0)
677 return ret;
678
679 /* Send address low byte */
680 c2port_write_dr(dev, offset & 0x00ff);
681 ret = c2port_poll_in_busy(dev);
682 if (ret < 0)
683 return ret;
684
685 /* Send address block size */
686 c2port_write_dr(dev, nread);
687 ret = c2port_poll_in_busy(dev);
688 if (ret < 0)
689 return ret;
690
691 /* Should check status before reading FLASH block */
692
693 /* Wait for status information */
694 ret = c2port_poll_out_ready(dev);
695 if (ret < 0)
696 return ret;
697
698 /* Read flash programming interface status */
699 ret = c2port_read_dr(dev, &status);
700 if (ret < 0)
701 return ret;
702 if (status != C2PORT_COMMAND_OK)
703 return -EBUSY;
704
705 /* Read flash block */
706 for (i = 0; i < nread; i++) {
707 ret = c2port_poll_out_ready(dev);
708 if (ret < 0)
709 return ret;
710
711 ret = c2port_read_dr(dev, buffer+i);
712 if (ret < 0)
713 return ret;
714 }
715
716 return nread;
717}
718
719static ssize_t c2port_read_flash_data(struct file *filp, struct kobject *kobj,
720 struct bin_attribute *attr,
721 char *buffer, loff_t offset, size_t count)
722{
723 struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
724 ssize_t ret;
725
726 /* Check the device and flash access status */
727 if (!c2dev->access || !c2dev->flash_access)
728 return -EBUSY;
729
730 mutex_lock(&c2dev->mutex);
731 ret = __c2port_read_flash_data(c2dev, buffer, offset, count);
732 mutex_unlock(&c2dev->mutex);
733
734 if (ret < 0)
735 dev_err(c2dev->dev, "cannot read %s flash\n", c2dev->name);
736
737 return ret;
738}
739
740static ssize_t __c2port_write_flash_data(struct c2port_device *dev,
741 char *buffer, loff_t offset, size_t count)
742{
743 struct c2port_ops *ops = dev->ops;
744 u8 status, nwrite = 128;
745 int i, ret;
746
747 if (nwrite > count)
748 nwrite = count;
749 if (ops->block_size * ops->blocks_num - offset < nwrite)
750 nwrite = ops->block_size * ops->blocks_num - offset;
751
752 /* Check for flash end */
753 if (offset >= ops->block_size * ops->blocks_num)
754 return -EINVAL;
755
756 /* Target the C2 flash programming data register for C2 data register
757 * access */
758 c2port_write_ar(dev, C2PORT_FPDAT);
759
760 /* Send flash block write command */
761 c2port_write_dr(dev, C2PORT_BLOCK_WRITE);
762
763 /* Wait for input acknowledge */
764 ret = c2port_poll_in_busy(dev);
765 if (ret < 0)
766 return ret;
767
768 /* Should check status before starting FLASH access sequence */
769
770 /* Wait for status information */
771 ret = c2port_poll_out_ready(dev);
772 if (ret < 0)
773 return ret;
774
775 /* Read flash programming interface status */
776 ret = c2port_read_dr(dev, &status);
777 if (ret < 0)
778 return ret;
779 if (status != C2PORT_COMMAND_OK)
780 return -EBUSY;
781
782 /* Send address high byte */
783 c2port_write_dr(dev, offset >> 8);
784 ret = c2port_poll_in_busy(dev);
785 if (ret < 0)
786 return ret;
787
788 /* Send address low byte */
789 c2port_write_dr(dev, offset & 0x00ff);
790 ret = c2port_poll_in_busy(dev);
791 if (ret < 0)
792 return ret;
793
794 /* Send address block size */
795 c2port_write_dr(dev, nwrite);
796 ret = c2port_poll_in_busy(dev);
797 if (ret < 0)
798 return ret;
799
800 /* Should check status before writing FLASH block */
801
802 /* Wait for status information */
803 ret = c2port_poll_out_ready(dev);
804 if (ret < 0)
805 return ret;
806
807 /* Read flash programming interface status */
808 ret = c2port_read_dr(dev, &status);
809 if (ret < 0)
810 return ret;
811 if (status != C2PORT_COMMAND_OK)
812 return -EBUSY;
813
814 /* Write flash block */
815 for (i = 0; i < nwrite; i++) {
816 ret = c2port_write_dr(dev, *(buffer+i));
817 if (ret < 0)
818 return ret;
819
820 ret = c2port_poll_in_busy(dev);
821 if (ret < 0)
822 return ret;
823
824 }
825
826 /* Wait for last flash write to complete */
827 ret = c2port_poll_out_ready(dev);
828 if (ret < 0)
829 return ret;
830
831 return nwrite;
832}
833
834static ssize_t c2port_write_flash_data(struct file *filp, struct kobject *kobj,
835 struct bin_attribute *attr,
836 char *buffer, loff_t offset, size_t count)
837{
838 struct c2port_device *c2dev = dev_get_drvdata(kobj_to_dev(kobj));
839 int ret;
840
841 /* Check the device access status */
842 if (!c2dev->access || !c2dev->flash_access)
843 return -EBUSY;
844
845 mutex_lock(&c2dev->mutex);
846 ret = __c2port_write_flash_data(c2dev, buffer, offset, count);
847 mutex_unlock(&c2dev->mutex);
848
849 if (ret < 0)
850 dev_err(c2dev->dev, "cannot write %s flash\n", c2dev->name);
851
852 return ret;
853}
854/* size is computed at run-time */
855static BIN_ATTR(flash_data, 0644, c2port_read_flash_data,
856 c2port_write_flash_data, 0);
857
858/*
859 * Class attributes
860 */
861static struct attribute *c2port_attrs[] = {
862 &dev_attr_name.attr,
863 &dev_attr_flash_blocks_num.attr,
864 &dev_attr_flash_block_size.attr,
865 &dev_attr_flash_size.attr,
866 &dev_attr_access.attr,
867 &dev_attr_reset.attr,
868 &dev_attr_dev_id.attr,
869 &dev_attr_rev_id.attr,
870 &dev_attr_flash_access.attr,
871 &dev_attr_flash_erase.attr,
872 NULL,
873};
874
875static struct bin_attribute *c2port_bin_attrs[] = {
876 &bin_attr_flash_data,
877 NULL,
878};
879
880static const struct attribute_group c2port_group = {
881 .attrs = c2port_attrs,
882 .bin_attrs = c2port_bin_attrs,
883};
884
885static const struct attribute_group *c2port_groups[] = {
886 &c2port_group,
887 NULL,
888};
889
890/*
891 * Exported functions
892 */
893
894struct c2port_device *c2port_device_register(char *name,
895 struct c2port_ops *ops, void *devdata)
896{
897 struct c2port_device *c2dev;
898 int ret;
899
900 if (unlikely(!ops) || unlikely(!ops->access) || \
901 unlikely(!ops->c2d_dir) || unlikely(!ops->c2ck_set) || \
902 unlikely(!ops->c2d_get) || unlikely(!ops->c2d_set))
903 return ERR_PTR(-EINVAL);
904
905 c2dev = kmalloc(sizeof(struct c2port_device), GFP_KERNEL);
906 if (unlikely(!c2dev))
907 return ERR_PTR(-ENOMEM);
908
909 idr_preload(GFP_KERNEL);
910 spin_lock_irq(&c2port_idr_lock);
911 ret = idr_alloc(&c2port_idr, c2dev, 0, 0, GFP_NOWAIT);
912 spin_unlock_irq(&c2port_idr_lock);
913 idr_preload_end();
914
915 if (ret < 0)
916 goto error_idr_alloc;
917 c2dev->id = ret;
918
919 bin_attr_flash_data.size = ops->blocks_num * ops->block_size;
920
921 c2dev->dev = device_create(c2port_class, NULL, 0, c2dev,
922 "c2port%d", c2dev->id);
923 if (IS_ERR(c2dev->dev)) {
924 ret = PTR_ERR(c2dev->dev);
925 goto error_device_create;
926 }
927 dev_set_drvdata(c2dev->dev, c2dev);
928
929 strncpy(c2dev->name, name, C2PORT_NAME_LEN);
930 c2dev->ops = ops;
931 mutex_init(&c2dev->mutex);
932
933 /* By default C2 port access is off */
934 c2dev->access = c2dev->flash_access = 0;
935 ops->access(c2dev, 0);
936
937 dev_info(c2dev->dev, "C2 port %s added\n", name);
938 dev_info(c2dev->dev, "%s flash has %d blocks x %d bytes "
939 "(%d bytes total)\n",
940 name, ops->blocks_num, ops->block_size,
941 ops->blocks_num * ops->block_size);
942
943 return c2dev;
944
945error_device_create:
946 spin_lock_irq(&c2port_idr_lock);
947 idr_remove(&c2port_idr, c2dev->id);
948 spin_unlock_irq(&c2port_idr_lock);
949
950error_idr_alloc:
951 kfree(c2dev);
952
953 return ERR_PTR(ret);
954}
955EXPORT_SYMBOL(c2port_device_register);
956
957void c2port_device_unregister(struct c2port_device *c2dev)
958{
959 if (!c2dev)
960 return;
961
962 dev_info(c2dev->dev, "C2 port %s removed\n", c2dev->name);
963
964 spin_lock_irq(&c2port_idr_lock);
965 idr_remove(&c2port_idr, c2dev->id);
966 spin_unlock_irq(&c2port_idr_lock);
967
968 device_destroy(c2port_class, c2dev->id);
969
970 kfree(c2dev);
971}
972EXPORT_SYMBOL(c2port_device_unregister);
973
974/*
975 * Module stuff
976 */
977
978static int __init c2port_init(void)
979{
980 printk(KERN_INFO "Silicon Labs C2 port support v. " DRIVER_VERSION
981 " - (C) 2007 Rodolfo Giometti\n");
982
983 c2port_class = class_create(THIS_MODULE, "c2port");
984 if (IS_ERR(c2port_class)) {
985 printk(KERN_ERR "c2port: failed to allocate class\n");
986 return PTR_ERR(c2port_class);
987 }
988 c2port_class->dev_groups = c2port_groups;
989
990 return 0;
991}
992
993static void __exit c2port_exit(void)
994{
995 class_destroy(c2port_class);
996}
997
998module_init(c2port_init);
999module_exit(c2port_exit);
1000
1001MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
1002MODULE_DESCRIPTION("Silicon Labs C2 port support v. " DRIVER_VERSION);
1003MODULE_LICENSE("GPL");