X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/a1a6972ab91d9315cc9a8ce2d728573d140d3628..16e7fc19118a4f24bda40b18eaf03273577c83da:/lincan/src/main.c diff --git a/lincan/src/main.c b/lincan/src/main.c index 3aa24fa..c5547af 100644 --- a/lincan/src/main.c +++ b/lincan/src/main.c @@ -36,8 +36,6 @@ #define EXPORT_SYMTAB #endif -#include - #include #include @@ -45,10 +43,10 @@ #include #include #include -#include #include #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,0)) + #include #include #else #include @@ -102,6 +100,9 @@ #if defined(CONFIG_OC_LINCAN_CARD_usbcan) #include "../include/usbcan.h" #endif +#if defined(CONFIG_OC_LINCAN_CARD_omap2_spican) + #include "../include/omap2_spican.h" +#endif can_spinlock_t canuser_manipulation_lock; @@ -398,9 +399,20 @@ int init_module(void) res = usbcan_init(); if (res){ CANMSG("usb_register for usbcan failed. Error number %d.\n", res); - return -ENODEV; + goto memory_error; } #endif +#if defined(CONFIG_OC_LINCAN_CARD_omap2_spican) + #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) + res = omap2_spican_init(); + if (res){ + CANMSG("omap2_spican_register for omap2_spican failed. Error number %d.\n", res); + goto memory_error; + } + #else + #error There's no support for OMAP2 SPI subsystem in kernel versions before 2.6.23 + #endif +#endif return 0; @@ -444,7 +456,7 @@ int init_module(void) -struct candevice_t* register_usbdev(const char *hwname,void *devdata,void (*chipdataregfnc)(struct canchip_t *ch,void *data)){ +struct candevice_t* register_hotplug_dev(const char *hwname,int (*chipdataregfnc)(struct canchip_t *ch,void *data),void *devdata){ int i=0, j, board=0; struct candevice_t *candev; struct canchip_t *chip; @@ -458,17 +470,19 @@ struct candevice_t* register_usbdev(const char *hwname,void *devdata,void (*chip } brp = boardtype_find(hwname); if(!brp) { - CANMSG("Sorry, hardware \"%s\" is currently not supported.\n",hw[board]); + CANMSG("Sorry, hardware \"%s\" is currently not supported.\n",hwname); return NULL; } if (board==MAX_HW_CARDS){ - CANMSG("Device \"%s\" could not be registered due to internal limits.\n",hw[board]); + CANMSG("Device \"%s\" could not be registered due to internal limits.\n",hwname); return NULL; } hw[board]=brp->boardtype; - if (init_new_hw_struct(board)) + if (init_new_hw_struct(board)){ + CANMSG("HW struct creation failed.\n"); return NULL; + } #ifdef CAN_DEBUG list_hw(); @@ -490,7 +504,10 @@ struct candevice_t* register_usbdev(const char *hwname,void *devdata,void (*chip if((chip=candev->chip[j])==NULL) continue; - chipdataregfnc(chip,devdata); + if (chipdataregfnc && devdata){ + if (chipdataregfnc(chip,devdata)) + goto interrupt_error; + } if(chip->chipspecops->attach_to_chip(chip)<0) { CANMSG("Initial attach to the chip HW failed\n"); @@ -510,7 +527,7 @@ struct candevice_t* register_usbdev(const char *hwname,void *devdata,void (*chip CANMSG("Error to program board interrupt\n"); goto interrupt_error; } - + CANMSG("Registering /proc entry\n"); #ifdef CONFIG_PROC_FS if (can_init_procentry(board)) goto proc_error; @@ -586,25 +603,20 @@ struct candevice_t* register_usbdev(const char *hwname,void *devdata,void (*chip #endif /*CAN_WITH_RTL*/ // register_error: - if ( can_del_mem_list() ) - CANMSG("Error deallocating memory\n"); +// if ( can_del_mem_list() ) +// CANMSG("Error deallocating memory\n"); return NULL; } - - - - - - -void cleanup_usbdev(struct candevice_t *dev) +void deregister_hotplug_dev(struct candevice_t *dev) { int i=0; int dev_minor; if (!dev) return; + DEBUGMSG("Deregistering hotplug device.\n"); #ifdef CONFIG_PROC_FS if (can_delete_procentry(dev)) @@ -634,6 +646,18 @@ void cleanup_usbdev(struct candevice_t *dev) } #endif +} + + +void cleanup_hotplug_dev(struct candevice_t *dev) +{ + int i=0; + int dev_minor; + + if (!dev) + return; + DEBUGMSG("Cleaning up hotplug device.\n"); + for(i=0;ihostdevice != dev) continue; @@ -658,9 +682,16 @@ void cleanup_module(void) #endif #if defined(CONFIG_OC_LINCAN_CARD_usbcan) + DEBUGMSG("Unregistering usbcan.\n"); usbcan_exit(); #endif - +#if defined(CONFIG_OC_LINCAN_CARD_omap2_spican) + #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) + DEBUGMSG("Unregistering omap2_spican.\n"); + omap2_spican_exit(); + #endif +#endif + DEBUGMSG("Continuing with coldplug cleanup.\n"); #ifdef CONFIG_PROC_FS if (can_delete_procdir()) CANMSG("Error unregistering /proc/can entry.\n"); @@ -700,6 +731,8 @@ void cleanup_module(void) canqueue_rtl_done(); #endif /*CAN_WITH_RTL*/ + DEBUGMSG("Can hardware cleanup done, freeing memory.\n"); + if ( can_del_mem_list() ) CANMSG("Error deallocating memory\n");