X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/3a2bb63f0bb8de2aafb346b53b945c59b3f87a41..32cde89b361c7afb67125976c3816e12633b1d4a:/lincan/include/can_sysdep.h?ds=sidebyside diff --git a/lincan/include/can_sysdep.h b/lincan/include/can_sysdep.h index 50a87a2..5a3b86c 100644 --- a/lincan/include/can_sysdep.h +++ b/lincan/include/can_sysdep.h @@ -16,6 +16,7 @@ #include #include #include +#include #endif /*CAN_WITH_RTL*/ /*#define __NO_VERSION__*/ @@ -160,6 +161,12 @@ #define can_spin_unlock_irqrestore spin_unlock_irqrestore #define can_spin_lock_init spin_lock_init +#ifndef DEFINE_SPINLOCK +#define CAN_DEFINE_SPINLOCK(x) can_spinlock_t x = SPIN_LOCK_UNLOCKED +#else /*DEFINE_SPINLOCK*/ +#define CAN_DEFINE_SPINLOCK DEFINE_SPINLOCK +#endif /*DEFINE_SPINLOCK*/ + #if defined(CONFIG_PREEMPT) || (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)) #define can_preempt_disable preempt_disable #define can_preempt_enable preempt_enable @@ -173,6 +180,9 @@ #define can_printk printk +/* CAN message timestamp source, it is called from interrupt context */ +#define can_gettimeofday do_gettimeofday + #else /*CAN_WITH_RTL*/ #define can_spinlock_t rtl_spinlock_t @@ -183,6 +193,8 @@ #define can_spin_unlock_irqrestore rtl_spin_unlock_irqrestore #define can_spin_lock_init rtl_spin_lock_init +#define CAN_DEFINE_SPINLOCK(x) can_spinlock_t x = SPIN_LOCK_UNLOCKED + #define can_preempt_disable() do { } while (0) #define can_preempt_enable() do { } while (0) @@ -201,9 +213,14 @@ extern can_spinlock_t can_irq_manipulation_lock; -#endif /*CAN_WITH_RTL*/ - /* CAN message timestamp source, it is called from interrupt context */ -#define can_gettimeofday do_gettimeofday +#define can_gettimeofday(ptr) do {\ + struct timespec temp_timespec;\ + clock_gettime(CLOCK_REALTIME,&temp_timespec);\ + ptr->tv_usec=temp_timespec.tv_nsec/1000;\ + ptr->tv_sec=temp_timespec.tv_sec;\ + } while(0) + +#endif /*CAN_WITH_RTL*/ #endif /*_CAN_SYSDEP_H*/