1 // SPDX-License-Identifier: GPL-2.0-only
3 * Silicon Labs C2 port core Linux support
5 * Copyright (c) 2007 Rodolfo Giometti <giometti@linux.it>
6 * Copyright (c) 2007 Eurotech S.p.A. <info@eurotech.it>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/device.h>
12 #include <linux/errno.h>
13 #include <linux/err.h>
14 #include <linux/kernel.h>
15 #include <linux/ctype.h>
16 #include <linux/delay.h>
17 #include <linux/idr.h>
18 #include <linux/sched.h>
19 #include <linux/slab.h>
21 #include <linux/c2port.h>
23 #define DRIVER_NAME "c2port"
24 #define DRIVER_VERSION "0.51.0"
26 static DEFINE_SPINLOCK(c2port_idr_lock
);
27 static DEFINE_IDR(c2port_idr
);
33 static struct class *c2port_class
;
36 * C2 registers & commands defines
40 #define C2PORT_DEVICEID 0x00
41 #define C2PORT_REVID 0x01
42 #define C2PORT_FPCTL 0x02
43 #define C2PORT_FPDAT 0xB4
45 /* C2 interface commands */
46 #define C2PORT_GET_VERSION 0x01
47 #define C2PORT_DEVICE_ERASE 0x03
48 #define C2PORT_BLOCK_READ 0x06
49 #define C2PORT_BLOCK_WRITE 0x07
50 #define C2PORT_PAGE_ERASE 0x08
52 /* C2 status return codes */
53 #define C2PORT_INVALID_COMMAND 0x00
54 #define C2PORT_COMMAND_FAILED 0x02
55 #define C2PORT_COMMAND_OK 0x0d
58 * C2 port low level signal managements
61 static void c2port_reset(struct c2port_device
*dev
)
63 struct c2port_ops
*ops
= dev
->ops
;
65 /* To reset the device we have to keep clock line low for at least
69 ops
->c2ck_set(dev
, 0);
71 ops
->c2ck_set(dev
, 1);
77 static void c2port_strobe_ck(struct c2port_device
*dev
)
79 struct c2port_ops
*ops
= dev
->ops
;
81 /* During hi-low-hi transition we disable local IRQs to avoid
82 * interructions since C2 port specification says that it must be
83 * shorter than 5us, otherwise the microcontroller may consider
84 * it as a reset signal!
87 ops
->c2ck_set(dev
, 0);
89 ops
->c2ck_set(dev
, 1);
96 * C2 port basic functions
99 static void c2port_write_ar(struct c2port_device
*dev
, u8 addr
)
101 struct c2port_ops
*ops
= dev
->ops
;
105 c2port_strobe_ck(dev
);
107 /* INS field (11b, LSB first) */
108 ops
->c2d_dir(dev
, 0);
109 ops
->c2d_set(dev
, 1);
110 c2port_strobe_ck(dev
);
111 ops
->c2d_set(dev
, 1);
112 c2port_strobe_ck(dev
);
115 for (i
= 0; i
< 8; i
++) {
116 ops
->c2d_set(dev
, addr
& 0x01);
117 c2port_strobe_ck(dev
);
123 ops
->c2d_dir(dev
, 1);
124 c2port_strobe_ck(dev
);
127 static int c2port_read_ar(struct c2port_device
*dev
, u8
*addr
)
129 struct c2port_ops
*ops
= dev
->ops
;
133 c2port_strobe_ck(dev
);
135 /* INS field (10b, LSB first) */
136 ops
->c2d_dir(dev
, 0);
137 ops
->c2d_set(dev
, 0);
138 c2port_strobe_ck(dev
);
139 ops
->c2d_set(dev
, 1);
140 c2port_strobe_ck(dev
);
143 ops
->c2d_dir(dev
, 1);
145 for (i
= 0; i
< 8; i
++) {
146 *addr
>>= 1; /* shift in 8-bit ADDRESS field LSB first */
148 c2port_strobe_ck(dev
);
149 if (ops
->c2d_get(dev
))
154 c2port_strobe_ck(dev
);
159 static int c2port_write_dr(struct c2port_device
*dev
, u8 data
)
161 struct c2port_ops
*ops
= dev
->ops
;
165 c2port_strobe_ck(dev
);
167 /* INS field (01b, LSB first) */
168 ops
->c2d_dir(dev
, 0);
169 ops
->c2d_set(dev
, 1);
170 c2port_strobe_ck(dev
);
171 ops
->c2d_set(dev
, 0);
172 c2port_strobe_ck(dev
);
174 /* LENGTH field (00b, LSB first -> 1 byte) */
175 ops
->c2d_set(dev
, 0);
176 c2port_strobe_ck(dev
);
177 ops
->c2d_set(dev
, 0);
178 c2port_strobe_ck(dev
);
181 for (i
= 0; i
< 8; i
++) {
182 ops
->c2d_set(dev
, data
& 0x01);
183 c2port_strobe_ck(dev
);
189 ops
->c2d_dir(dev
, 1);
192 c2port_strobe_ck(dev
);
193 if (ops
->c2d_get(dev
))
197 } while (--timeout
> 0);
202 c2port_strobe_ck(dev
);
207 static int c2port_read_dr(struct c2port_device
*dev
, u8
*data
)
209 struct c2port_ops
*ops
= dev
->ops
;
213 c2port_strobe_ck(dev
);
215 /* INS field (00b, LSB first) */
216 ops
->c2d_dir(dev
, 0);
217 ops
->c2d_set(dev
, 0);
218 c2port_strobe_ck(dev
);
219 ops
->c2d_set(dev
, 0);
220 c2port_strobe_ck(dev
);
222 /* LENGTH field (00b, LSB first -> 1 byte) */
223 ops
->c2d_set(dev
, 0);
224 c2port_strobe_ck(dev
);
225 ops
->c2d_set(dev
, 0);
226 c2port_strobe_ck(dev
);
229 ops
->c2d_dir(dev
, 1);
232 c2port_strobe_ck(dev
);
233 if (ops
->c2d_get(dev
))
237 } while (--timeout
> 0);
243 for (i
= 0; i
< 8; i
++) {
244 *data
>>= 1; /* shift in 8-bit DATA field LSB first */
246 c2port_strobe_ck(dev
);
247 if (ops
->c2d_get(dev
))
252 c2port_strobe_ck(dev
);
257 static int c2port_poll_in_busy(struct c2port_device
*dev
)
260 int ret
, timeout
= 20;
263 ret
= (c2port_read_ar(dev
, &addr
));
271 } while (--timeout
> 0);
278 static int c2port_poll_out_ready(struct c2port_device
*dev
)
281 int ret
, timeout
= 10000; /* erase flash needs long time... */
284 ret
= (c2port_read_ar(dev
, &addr
));
292 } while (--timeout
> 0);
303 static ssize_t
c2port_show_name(struct device
*dev
,
304 struct device_attribute
*attr
, char *buf
)
306 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
308 return sprintf(buf
, "%s\n", c2dev
->name
);
310 static DEVICE_ATTR(name
, 0444, c2port_show_name
, NULL
);
312 static ssize_t
c2port_show_flash_blocks_num(struct device
*dev
,
313 struct device_attribute
*attr
, char *buf
)
315 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
316 struct c2port_ops
*ops
= c2dev
->ops
;
318 return sprintf(buf
, "%d\n", ops
->blocks_num
);
320 static DEVICE_ATTR(flash_blocks_num
, 0444, c2port_show_flash_blocks_num
, NULL
);
322 static ssize_t
c2port_show_flash_block_size(struct device
*dev
,
323 struct device_attribute
*attr
, char *buf
)
325 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
326 struct c2port_ops
*ops
= c2dev
->ops
;
328 return sprintf(buf
, "%d\n", ops
->block_size
);
330 static DEVICE_ATTR(flash_block_size
, 0444, c2port_show_flash_block_size
, NULL
);
332 static ssize_t
c2port_show_flash_size(struct device
*dev
,
333 struct device_attribute
*attr
, char *buf
)
335 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
336 struct c2port_ops
*ops
= c2dev
->ops
;
338 return sprintf(buf
, "%d\n", ops
->blocks_num
* ops
->block_size
);
340 static DEVICE_ATTR(flash_size
, 0444, c2port_show_flash_size
, NULL
);
342 static ssize_t
access_show(struct device
*dev
, struct device_attribute
*attr
,
345 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
347 return sprintf(buf
, "%d\n", c2dev
->access
);
350 static ssize_t
access_store(struct device
*dev
, struct device_attribute
*attr
,
351 const char *buf
, size_t count
)
353 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
354 struct c2port_ops
*ops
= c2dev
->ops
;
357 ret
= sscanf(buf
, "%d", &status
);
361 mutex_lock(&c2dev
->mutex
);
363 c2dev
->access
= !!status
;
365 /* If access is "on" clock should be HIGH _before_ setting the line
366 * as output and data line should be set as INPUT anyway */
368 ops
->c2ck_set(c2dev
, 1);
369 ops
->access(c2dev
, c2dev
->access
);
371 ops
->c2d_dir(c2dev
, 1);
373 mutex_unlock(&c2dev
->mutex
);
377 static DEVICE_ATTR_RW(access
);
379 static ssize_t
c2port_store_reset(struct device
*dev
,
380 struct device_attribute
*attr
,
381 const char *buf
, size_t count
)
383 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
385 /* Check the device access status */
389 mutex_lock(&c2dev
->mutex
);
392 c2dev
->flash_access
= 0;
394 mutex_unlock(&c2dev
->mutex
);
398 static DEVICE_ATTR(reset
, 0200, NULL
, c2port_store_reset
);
400 static ssize_t
__c2port_show_dev_id(struct c2port_device
*dev
, char *buf
)
405 /* Select DEVICEID register for C2 data register accesses */
406 c2port_write_ar(dev
, C2PORT_DEVICEID
);
408 /* Read and return the device ID register */
409 ret
= c2port_read_dr(dev
, &data
);
413 return sprintf(buf
, "%d\n", data
);
416 static ssize_t
c2port_show_dev_id(struct device
*dev
,
417 struct device_attribute
*attr
, char *buf
)
419 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
422 /* Check the device access status */
426 mutex_lock(&c2dev
->mutex
);
427 ret
= __c2port_show_dev_id(c2dev
, buf
);
428 mutex_unlock(&c2dev
->mutex
);
431 dev_err(dev
, "cannot read from %s\n", c2dev
->name
);
435 static DEVICE_ATTR(dev_id
, 0444, c2port_show_dev_id
, NULL
);
437 static ssize_t
__c2port_show_rev_id(struct c2port_device
*dev
, char *buf
)
442 /* Select REVID register for C2 data register accesses */
443 c2port_write_ar(dev
, C2PORT_REVID
);
445 /* Read and return the revision ID register */
446 ret
= c2port_read_dr(dev
, &data
);
450 return sprintf(buf
, "%d\n", data
);
453 static ssize_t
c2port_show_rev_id(struct device
*dev
,
454 struct device_attribute
*attr
, char *buf
)
456 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
459 /* Check the device access status */
463 mutex_lock(&c2dev
->mutex
);
464 ret
= __c2port_show_rev_id(c2dev
, buf
);
465 mutex_unlock(&c2dev
->mutex
);
468 dev_err(c2dev
->dev
, "cannot read from %s\n", c2dev
->name
);
472 static DEVICE_ATTR(rev_id
, 0444, c2port_show_rev_id
, NULL
);
474 static ssize_t
c2port_show_flash_access(struct device
*dev
,
475 struct device_attribute
*attr
, char *buf
)
477 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
479 return sprintf(buf
, "%d\n", c2dev
->flash_access
);
482 static ssize_t
__c2port_store_flash_access(struct c2port_device
*dev
,
487 /* Check the device access status */
491 dev
->flash_access
= !!status
;
493 /* If flash_access is off we have nothing to do... */
494 if (dev
->flash_access
== 0)
497 /* Target the C2 flash programming control register for C2 data
499 c2port_write_ar(dev
, C2PORT_FPCTL
);
501 /* Write the first keycode to enable C2 Flash programming */
502 ret
= c2port_write_dr(dev
, 0x02);
506 /* Write the second keycode to enable C2 Flash programming */
507 ret
= c2port_write_dr(dev
, 0x01);
511 /* Delay for at least 20ms to ensure the target is ready for
512 * C2 flash programming */
518 static ssize_t
c2port_store_flash_access(struct device
*dev
,
519 struct device_attribute
*attr
,
520 const char *buf
, size_t count
)
522 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
526 ret
= sscanf(buf
, "%d", &status
);
530 mutex_lock(&c2dev
->mutex
);
531 ret
= __c2port_store_flash_access(c2dev
, status
);
532 mutex_unlock(&c2dev
->mutex
);
535 dev_err(c2dev
->dev
, "cannot enable %s flash programming\n",
542 static DEVICE_ATTR(flash_access
, 0644, c2port_show_flash_access
,
543 c2port_store_flash_access
);
545 static ssize_t
__c2port_write_flash_erase(struct c2port_device
*dev
)
550 /* Target the C2 flash programming data register for C2 data register
553 c2port_write_ar(dev
, C2PORT_FPDAT
);
555 /* Send device erase command */
556 c2port_write_dr(dev
, C2PORT_DEVICE_ERASE
);
558 /* Wait for input acknowledge */
559 ret
= c2port_poll_in_busy(dev
);
563 /* Should check status before starting FLASH access sequence */
565 /* Wait for status information */
566 ret
= c2port_poll_out_ready(dev
);
570 /* Read flash programming interface status */
571 ret
= c2port_read_dr(dev
, &status
);
574 if (status
!= C2PORT_COMMAND_OK
)
577 /* Send a three-byte arming sequence to enable the device erase.
578 * If the sequence is not received correctly, the command will be
580 * Sequence is: 0xde, 0xad, 0xa5.
582 c2port_write_dr(dev
, 0xde);
583 ret
= c2port_poll_in_busy(dev
);
586 c2port_write_dr(dev
, 0xad);
587 ret
= c2port_poll_in_busy(dev
);
590 c2port_write_dr(dev
, 0xa5);
591 ret
= c2port_poll_in_busy(dev
);
595 ret
= c2port_poll_out_ready(dev
);
602 static ssize_t
c2port_store_flash_erase(struct device
*dev
,
603 struct device_attribute
*attr
,
604 const char *buf
, size_t count
)
606 struct c2port_device
*c2dev
= dev_get_drvdata(dev
);
609 /* Check the device and flash access status */
610 if (!c2dev
->access
|| !c2dev
->flash_access
)
613 mutex_lock(&c2dev
->mutex
);
614 ret
= __c2port_write_flash_erase(c2dev
);
615 mutex_unlock(&c2dev
->mutex
);
618 dev_err(c2dev
->dev
, "cannot erase %s flash\n", c2dev
->name
);
624 static DEVICE_ATTR(flash_erase
, 0200, NULL
, c2port_store_flash_erase
);
626 static ssize_t
__c2port_read_flash_data(struct c2port_device
*dev
,
627 char *buffer
, loff_t offset
, size_t count
)
629 struct c2port_ops
*ops
= dev
->ops
;
630 u8 status
, nread
= 128;
633 /* Check for flash end */
634 if (offset
>= ops
->block_size
* ops
->blocks_num
)
637 if (ops
->block_size
* ops
->blocks_num
- offset
< nread
)
638 nread
= ops
->block_size
* ops
->blocks_num
- offset
;
644 /* Target the C2 flash programming data register for C2 data register
646 c2port_write_ar(dev
, C2PORT_FPDAT
);
648 /* Send flash block read command */
649 c2port_write_dr(dev
, C2PORT_BLOCK_READ
);
651 /* Wait for input acknowledge */
652 ret
= c2port_poll_in_busy(dev
);
656 /* Should check status before starting FLASH access sequence */
658 /* Wait for status information */
659 ret
= c2port_poll_out_ready(dev
);
663 /* Read flash programming interface status */
664 ret
= c2port_read_dr(dev
, &status
);
667 if (status
!= C2PORT_COMMAND_OK
)
670 /* Send address high byte */
671 c2port_write_dr(dev
, offset
>> 8);
672 ret
= c2port_poll_in_busy(dev
);
676 /* Send address low byte */
677 c2port_write_dr(dev
, offset
& 0x00ff);
678 ret
= c2port_poll_in_busy(dev
);
682 /* Send address block size */
683 c2port_write_dr(dev
, nread
);
684 ret
= c2port_poll_in_busy(dev
);
688 /* Should check status before reading FLASH block */
690 /* Wait for status information */
691 ret
= c2port_poll_out_ready(dev
);
695 /* Read flash programming interface status */
696 ret
= c2port_read_dr(dev
, &status
);
699 if (status
!= C2PORT_COMMAND_OK
)
702 /* Read flash block */
703 for (i
= 0; i
< nread
; i
++) {
704 ret
= c2port_poll_out_ready(dev
);
708 ret
= c2port_read_dr(dev
, buffer
+i
);
716 static ssize_t
c2port_read_flash_data(struct file
*filp
, struct kobject
*kobj
,
717 struct bin_attribute
*attr
,
718 char *buffer
, loff_t offset
, size_t count
)
720 struct c2port_device
*c2dev
= dev_get_drvdata(kobj_to_dev(kobj
));
723 /* Check the device and flash access status */
724 if (!c2dev
->access
|| !c2dev
->flash_access
)
727 mutex_lock(&c2dev
->mutex
);
728 ret
= __c2port_read_flash_data(c2dev
, buffer
, offset
, count
);
729 mutex_unlock(&c2dev
->mutex
);
732 dev_err(c2dev
->dev
, "cannot read %s flash\n", c2dev
->name
);
737 static ssize_t
__c2port_write_flash_data(struct c2port_device
*dev
,
738 char *buffer
, loff_t offset
, size_t count
)
740 struct c2port_ops
*ops
= dev
->ops
;
741 u8 status
, nwrite
= 128;
746 if (ops
->block_size
* ops
->blocks_num
- offset
< nwrite
)
747 nwrite
= ops
->block_size
* ops
->blocks_num
- offset
;
749 /* Check for flash end */
750 if (offset
>= ops
->block_size
* ops
->blocks_num
)
753 /* Target the C2 flash programming data register for C2 data register
755 c2port_write_ar(dev
, C2PORT_FPDAT
);
757 /* Send flash block write command */
758 c2port_write_dr(dev
, C2PORT_BLOCK_WRITE
);
760 /* Wait for input acknowledge */
761 ret
= c2port_poll_in_busy(dev
);
765 /* Should check status before starting FLASH access sequence */
767 /* Wait for status information */
768 ret
= c2port_poll_out_ready(dev
);
772 /* Read flash programming interface status */
773 ret
= c2port_read_dr(dev
, &status
);
776 if (status
!= C2PORT_COMMAND_OK
)
779 /* Send address high byte */
780 c2port_write_dr(dev
, offset
>> 8);
781 ret
= c2port_poll_in_busy(dev
);
785 /* Send address low byte */
786 c2port_write_dr(dev
, offset
& 0x00ff);
787 ret
= c2port_poll_in_busy(dev
);
791 /* Send address block size */
792 c2port_write_dr(dev
, nwrite
);
793 ret
= c2port_poll_in_busy(dev
);
797 /* Should check status before writing FLASH block */
799 /* Wait for status information */
800 ret
= c2port_poll_out_ready(dev
);
804 /* Read flash programming interface status */
805 ret
= c2port_read_dr(dev
, &status
);
808 if (status
!= C2PORT_COMMAND_OK
)
811 /* Write flash block */
812 for (i
= 0; i
< nwrite
; i
++) {
813 ret
= c2port_write_dr(dev
, *(buffer
+i
));
817 ret
= c2port_poll_in_busy(dev
);
823 /* Wait for last flash write to complete */
824 ret
= c2port_poll_out_ready(dev
);
831 static ssize_t
c2port_write_flash_data(struct file
*filp
, struct kobject
*kobj
,
832 struct bin_attribute
*attr
,
833 char *buffer
, loff_t offset
, size_t count
)
835 struct c2port_device
*c2dev
= dev_get_drvdata(kobj_to_dev(kobj
));
838 /* Check the device access status */
839 if (!c2dev
->access
|| !c2dev
->flash_access
)
842 mutex_lock(&c2dev
->mutex
);
843 ret
= __c2port_write_flash_data(c2dev
, buffer
, offset
, count
);
844 mutex_unlock(&c2dev
->mutex
);
847 dev_err(c2dev
->dev
, "cannot write %s flash\n", c2dev
->name
);
851 /* size is computed at run-time */
852 static BIN_ATTR(flash_data
, 0644, c2port_read_flash_data
,
853 c2port_write_flash_data
, 0);
858 static struct attribute
*c2port_attrs
[] = {
860 &dev_attr_flash_blocks_num
.attr
,
861 &dev_attr_flash_block_size
.attr
,
862 &dev_attr_flash_size
.attr
,
863 &dev_attr_access
.attr
,
864 &dev_attr_reset
.attr
,
865 &dev_attr_dev_id
.attr
,
866 &dev_attr_rev_id
.attr
,
867 &dev_attr_flash_access
.attr
,
868 &dev_attr_flash_erase
.attr
,
872 static struct bin_attribute
*c2port_bin_attrs
[] = {
873 &bin_attr_flash_data
,
877 static const struct attribute_group c2port_group
= {
878 .attrs
= c2port_attrs
,
879 .bin_attrs
= c2port_bin_attrs
,
882 static const struct attribute_group
*c2port_groups
[] = {
891 struct c2port_device
*c2port_device_register(char *name
,
892 struct c2port_ops
*ops
, void *devdata
)
894 struct c2port_device
*c2dev
;
897 if (unlikely(!ops
) || unlikely(!ops
->access
) || \
898 unlikely(!ops
->c2d_dir
) || unlikely(!ops
->c2ck_set
) || \
899 unlikely(!ops
->c2d_get
) || unlikely(!ops
->c2d_set
))
900 return ERR_PTR(-EINVAL
);
902 c2dev
= kzalloc(sizeof(struct c2port_device
), GFP_KERNEL
);
903 if (unlikely(!c2dev
))
904 return ERR_PTR(-ENOMEM
);
906 idr_preload(GFP_KERNEL
);
907 spin_lock_irq(&c2port_idr_lock
);
908 ret
= idr_alloc(&c2port_idr
, c2dev
, 0, 0, GFP_NOWAIT
);
909 spin_unlock_irq(&c2port_idr_lock
);
913 goto error_idr_alloc
;
916 bin_attr_flash_data
.size
= ops
->blocks_num
* ops
->block_size
;
918 c2dev
->dev
= device_create(c2port_class
, NULL
, 0, c2dev
,
919 "c2port%d", c2dev
->id
);
920 if (IS_ERR(c2dev
->dev
)) {
921 ret
= PTR_ERR(c2dev
->dev
);
922 goto error_device_create
;
924 dev_set_drvdata(c2dev
->dev
, c2dev
);
926 strncpy(c2dev
->name
, name
, C2PORT_NAME_LEN
- 1);
928 mutex_init(&c2dev
->mutex
);
930 /* By default C2 port access is off */
931 c2dev
->access
= c2dev
->flash_access
= 0;
932 ops
->access(c2dev
, 0);
934 dev_info(c2dev
->dev
, "C2 port %s added\n", name
);
935 dev_info(c2dev
->dev
, "%s flash has %d blocks x %d bytes "
936 "(%d bytes total)\n",
937 name
, ops
->blocks_num
, ops
->block_size
,
938 ops
->blocks_num
* ops
->block_size
);
943 spin_lock_irq(&c2port_idr_lock
);
944 idr_remove(&c2port_idr
, c2dev
->id
);
945 spin_unlock_irq(&c2port_idr_lock
);
952 EXPORT_SYMBOL(c2port_device_register
);
954 void c2port_device_unregister(struct c2port_device
*c2dev
)
959 dev_info(c2dev
->dev
, "C2 port %s removed\n", c2dev
->name
);
961 spin_lock_irq(&c2port_idr_lock
);
962 idr_remove(&c2port_idr
, c2dev
->id
);
963 spin_unlock_irq(&c2port_idr_lock
);
965 device_destroy(c2port_class
, c2dev
->id
);
969 EXPORT_SYMBOL(c2port_device_unregister
);
975 static int __init
c2port_init(void)
977 printk(KERN_INFO
"Silicon Labs C2 port support v. " DRIVER_VERSION
978 " - (C) 2007 Rodolfo Giometti\n");
980 c2port_class
= class_create(THIS_MODULE
, "c2port");
981 if (IS_ERR(c2port_class
)) {
982 printk(KERN_ERR
"c2port: failed to allocate class\n");
983 return PTR_ERR(c2port_class
);
985 c2port_class
->dev_groups
= c2port_groups
;
990 static void __exit
c2port_exit(void)
992 class_destroy(c2port_class
);
995 module_init(c2port_init
);
996 module_exit(c2port_exit
);
998 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
999 MODULE_DESCRIPTION("Silicon Labs C2 port support v. " DRIVER_VERSION
);
1000 MODULE_LICENSE("GPL");