X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/616491c0579525de71e7647dc36d7fccedf2bc2c..HEAD:/lincan/src/main.c diff --git a/lincan/src/main.c b/lincan/src/main.c index e114082..c2c8b1e 100644 --- a/lincan/src/main.c +++ b/lincan/src/main.c @@ -1,18 +1,41 @@ -/* main.c - * Linux CAN-bus device driver. - * Written by Arnaud Westenberg email:arnaud@wanadoo.nl - * Rewritten for new CAN queues by Pavel Pisa - OCERA team member - * email:pisa@cmp.felk.cvut.cz - * This software is released under the GPL-License. - * Version lincan-0.3 17 Jun 2004 - */ +/**************************************************************************/ +/* File: main.c - the CAN driver top level glue code (needs rewrite) */ +/* */ +/* LinCAN - (Not only) Linux CAN bus driver */ +/* Copyright (C) 2002-2009 DCE FEE CTU Prague */ +/* Copyright (C) 2002-2009 Pavel Pisa */ +/* Funded by OCERA and FRESCOR IST projects */ +/* Based on CAN driver code by Arnaud Westenberg */ +/* */ +/* LinCAN is free software; you can redistribute it and/or modify it */ +/* under terms of the GNU General Public License as published by the */ +/* Free Software Foundation; either version 2, or (at your option) any */ +/* later version. LinCAN is distributed in the hope that it will be */ +/* useful, but WITHOUT ANY WARRANTY; without even the implied warranty */ +/* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ +/* General Public License for more details. You should have received a */ +/* copy of the GNU General Public License along with LinCAN; see file */ +/* COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, */ +/* Cambridge, MA 02139, USA. */ +/* */ +/* To allow use of LinCAN in the compact embedded systems firmware */ +/* and RT-executives (RTEMS for example), main authors agree with next */ +/* special exception: */ +/* */ +/* Including LinCAN header files in a file, instantiating LinCAN generics */ +/* or templates, or linking other files with LinCAN objects to produce */ +/* an application image/executable, does not by itself cause the */ +/* resulting application image/executable to be covered by */ +/* the GNU General Public License. */ +/* This exception does not however invalidate any other reasons */ +/* why the executable file might be covered by the GNU Public License. */ +/* Publication of enhanced or derived LinCAN files is required although. */ +/**************************************************************************/ #ifndef EXPORT_SYMTAB #define EXPORT_SYMTAB #endif -#include - #include #include @@ -20,10 +43,10 @@ #include #include #include -#include #include #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,0)) + #include #include #else #include @@ -38,7 +61,7 @@ #endif #endif -#if !defined (__GENKSYMS__) +#if !defined (__GENKSYMS__) #if (defined (MODVERSIONS) && !defined(NOVER)) #include /*#include "../include/main.ver"*/ @@ -177,6 +200,13 @@ devfs_handle_t devfs_handles[MAX_TOT_MSGOBJS]; #endif #endif +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)) +static int can_oldapi_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg) +{ + return can_ioctl(file, cmd, arg); +} +#endif /* 2.6.36 */ + /* Pointers to dynamically allocated memory are maintained in a linked list * to ease memory deallocation. */ @@ -185,12 +215,16 @@ struct mem_addr *mem_head=NULL; struct file_operations can_fops= { #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,3,0)) - owner: THIS_MODULE, + owner: THIS_MODULE, #endif read: can_read, write: can_write, poll: can_poll, - ioctl: can_ioctl, + #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)) + ioctl: can_oldapi_ioctl, + #else /* Linux 3.x */ + unlocked_ioctl: can_ioctl, + #endif /* Linux 3.x */ open: can_open, release: can_close, #ifdef CAN_ENABLE_KERN_FASYNC @@ -216,7 +250,7 @@ struct rtl_file_operations can_fops_rtl = { /* 2.6 kernel attributes for sysfs - + static ssize_t show_xxx(struct class_device *cdev, char *buf) { return sprintf(buf, "xxxx\n"); @@ -271,14 +305,14 @@ int init_module(void) for (i=0; inr_boards; i++) { candev=hardware_p->candevice[i]; - if (candev->hwspecops->request_io(candev)) + if (candev->hwspecops->request_io(candev)) goto request_io_error; candev->flags|=CANDEV_IO_RESERVED; } for (i=0; inr_boards; i++) { candev=hardware_p->candevice[i]; - if (candev->hwspecops->reset(candev)) + if (candev->hwspecops->reset(candev)) goto reset_error; } @@ -297,7 +331,7 @@ int init_module(void) } chip->flags |= CHIP_ATTACHED; - + if(can_chip_setup_irq(chip)<0) { CANMSG("Error to setup chip IRQ\n"); goto interrupt_error; @@ -324,8 +358,10 @@ int init_module(void) { #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,0)) char dev_name[32]; - #else + #elif LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,25) /* >= 2.6.15 */ struct class_device *this_dev; + #else + struct device *this_dev; #endif int dev_minor; for(i=0;i= 2.6.15 */ + #elif LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,25) /* >= 2.6.15 */ this_dev=class_device_create(can_class, NULL, MKDEV(major, dev_minor), NULL, "can%d", dev_minor); - #endif /* >= 2.6.15 */ + #elif LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,27) + this_dev=device_create_drvdata(can_class, NULL, MKDEV(major, dev_minor), objects_p[i], "can%d", dev_minor); + #else /* >= 2.6.28 */ + this_dev=device_create(can_class, NULL, MKDEV(major, dev_minor), objects_p[i], "can%d", dev_minor); + #endif /* >= 2.6.28 */ if(IS_ERR(this_dev)){ CANMSG("problem to create device \"can%d\" in the class \"can\"\n", dev_minor); + #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,25) }else{ /*this_dev->class_data=objects_p[i];*/ class_set_devdata(this_dev,objects_p[i]); + #endif /* <= 2.6.25 */ } #ifdef CONFIG_DEVFS_FS devfs_mk_cdev(MKDEV(major, dev_minor), S_IFCHR | S_IRUGO | S_IWUGO, "can%d", dev_minor); @@ -361,7 +403,7 @@ int init_module(void) #ifdef CONFIG_PROC_FS proc_error: ; CANMSG("Error registering /proc entry.\n"); - goto memory_error; + goto memory_error; #endif interrupt_error: ; @@ -388,7 +430,7 @@ int init_module(void) CANMSG("No CAN devices or driver setup error.\n"); register_error: - if ( can_del_mem_list() ) + if ( can_del_mem_list() ) CANMSG("Error deallocating memory\n"); return -ENODEV; @@ -396,11 +438,13 @@ int init_module(void) void cleanup_module(void) { +#if defined(CONFIG_DEVFS_FS) || (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) int i=0; +#endif #ifdef CONFIG_PROC_FS if (can_delete_procdir()) - CANMSG("Error unregistering /proc/can entry.\n"); + CANMSG("Error unregistering /proc/can entry.\n"); #endif #if defined(CONFIG_DEVFS_FS) || (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) @@ -416,7 +460,11 @@ void cleanup_module(void) #ifdef CONFIG_DEVFS_FS devfs_remove("can%d", dev_minor); #endif + #if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,25) class_device_destroy(can_class, MKDEV(major, dev_minor)); + #else /* >= 2.6.26 */ + device_destroy(can_class, MKDEV(major, dev_minor)); + #endif /* >= 2.6.26 */ } #endif } @@ -433,7 +481,7 @@ void cleanup_module(void) canqueue_rtl_done(); #endif /*CAN_WITH_RTL*/ - if ( can_del_mem_list() ) + if ( can_del_mem_list() ) CANMSG("Error deallocating memory\n"); unregister_chrdev(major,DEVICE_NAME);