X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/97078fff5202521b758c9081d75580880417a123..11132ea490f9e860744ee4f851c67e7fb4444231:/lincan/src/main.c diff --git a/lincan/src/main.c b/lincan/src/main.c index f21e78f..d04c39c 100644 --- a/lincan/src/main.c +++ b/lincan/src/main.c @@ -1,32 +1,30 @@ /* 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 0.7 6 Aug 2001 + * Version lincan-0.2 9 Jul 2003 */ #define EXPORT_SYMTAB #include -#if defined (CONFIG_MODVERSIONS) && !defined (MODVERSIONS) -#define MODVERSIONS -#endif #include -#if defined (MODVERSIONS) -#include -#endif - #include #include -#include #include #include #include #include #include +#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,50)) +#include +#endif + #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,3,0)) #include #else @@ -40,12 +38,15 @@ #endif #endif +/*#undef CONFIG_DEVFS_FS*/ + #ifdef CONFIG_DEVFS_FS #include #endif #include "../include/main.h" #include "../include/modparms.h" +#include "../include/devcommon.h" #include "../include/setup.h" #include "../include/proc.h" #include "../include/open.h" @@ -97,7 +98,6 @@ MODULE_DESCRIPTION("Universal Linux CAN-bus device driver"); /* Global structures, used to describe the installed hardware. */ struct canhardware_t canhardware; struct canhardware_t *hardware_p=&canhardware; -struct candevice_t *candevices_p[MAX_HW_CARDS]; struct chip_t *chips_p[MAX_TOT_CHIPS]; struct msgobj_t *objects_p[MAX_TOT_MSGOBJS]; #ifdef CONFIG_DEVFS_FS @@ -142,6 +142,7 @@ EXPORT_SYMBOL(can_fops); int init_module(void) { int res=0,i=0; + struct candevice_t *candev; if (parse_mod_parms()) return -EINVAL; @@ -160,12 +161,14 @@ int init_module(void) } for (i=0; inr_boards; i++) { - if (candevices_p[i]->hwspecops->request_io(candevices_p[i]->io_addr)) - goto memory_error; + candev=hardware_p->candevice[i]; + if (candev->hwspecops->request_io(candev)) + goto memory_error; } for (i=0; inr_boards; i++) { - if (candevices_p[i]->hwspecops->reset(i)) + candev=hardware_p->candevice[i]; + if (candev->hwspecops->reset(candev)) goto reset_error; } @@ -174,16 +177,8 @@ int init_module(void) i=0; while ( (chips_p[i] != NULL) && (i < MAX_TOT_CHIPS) ) { - if (!strcmp(chips_p[i]->chip_type,"i82527")) { - if (request_irq(chips_p[i]->chip_irq,i82527_irq_handler,SA_SHIRQ,DEVICE_NAME,chips_p[i])) - goto interrupt_error; - else - DEBUGMSG("Registered interrupt %d\n",chips_p[i]->chip_irq); - } - if (!strcmp(chips_p[i]->chip_type,"sja1000p") || - !strcmp(chips_p[i]->chip_type,"sja1000")) { - if (request_irq(chips_p[i]->chip_irq, - chips_p[i]->chipspecops->irq_handler,SA_SHIRQ,DEVICE_NAME,chips_p[i])) + if (chips_p[i]->chipspecops->irq_handler) { + if (request_irq(chips_p[i]->chip_irq,chips_p[i]->chipspecops->irq_handler,SA_SHIRQ,DEVICE_NAME,chips_p[i])) goto interrupt_error; else DEBUGMSG("Registered interrupt %d\n",chips_p[i]->chip_irq); @@ -192,8 +187,9 @@ int init_module(void) } for (i=0; inr_boards; i++) { - if (candevices_p[i]->flags & PROGRAMMABLE_IRQ) - if (candevices_p[i]->hwspecops->program_irq(i)) + candev=hardware_p->candevice[i]; + if (candev->flags & PROGRAMMABLE_IRQ) + if (candev->hwspecops->program_irq(candev)) goto interrupt_error; } @@ -233,8 +229,10 @@ int init_module(void) goto memory_error; memory_error: ; - for (i=0; inr_boards; i++) - candevices_p[i]->hwspecops->release_io(candevices_p[i]->io_addr); + for (i=0; inr_boards; i++) { + candev=hardware_p->candevice[i]; + candev->hwspecops->release_io(candev); + } goto register_error; register_error: ; @@ -250,6 +248,7 @@ int init_module(void) void cleanup_module(void) { int res=0,i=0; + struct candevice_t *candev; #ifdef CONFIG_PROC_FS if (can_delete_procdir()) @@ -268,8 +267,10 @@ void cleanup_module(void) i++; } - for (i=0; inr_boards; i++) - candevices_p[i]->hwspecops->release_io(candevices_p[i]->io_addr); + for (i=0; inr_boards; i++){ + candev=hardware_p->candevice[i]; + candev->hwspecops->release_io(candev); + } if ( del_mem_list() ) CANMSG("Error deallocating memory\n");