truck-code
can_man.h
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_JBUS_CAN_DEV_H_
13 #define INCLUDE_JBUS_CAN_DEV_H_
14 
15 #include "das_clt.h"
16 #include "sja1000.h"
17 #include <sys/iomsg.h>
18 #include <sys/iofunc.h>
19 #include "utils/common.h"
20 #include "utils/buffer.h"
21 
22 
24 #define MAX_MSG_BUF 1000
25 
26 
27 /* Macros used when processing can messages. */
28 #define PATH_CAN_ID(j) ((((j)->priority & 0x7) << 26) | \
29  (((j)->reserved & 0x1) << 25) | \
30  (((j)->data_page & 0x1) << 24) | \
31  (((j)->pdu_format & 0xff) << 16) | \
32  (((j)->pdu_specific & 0xff) << 8) | \
33  (((j)->src_address & 0xff)))
34 #define PATH_CAN_PRIORITY(j) (((j) >> 26) & 0x7)
35 #define PATH_CAN_PF(j) (((j) >> 16) & 0xff)
36 #define PATH_CAN_PS(j) (((j) >> 8) & 0xff)
37 #define PATH_CAN_SA(j) ((j) & 0xff)
40 /* most significant bit sets frame as extended */
41 #define IS_EXTENDED_FRAME(MSG) ((MSG).id & 0x80000000)
42 #define SET_EXTENDED_FRAME(MSG) ((MSG).id |= 0x80000000)
43 #define CAN_ID(MSG) ((MSG).id & ~0x80000000)
47 typedef struct {
48  unsigned long id;
49  BYTE size;
50  BYTE data[8];
51  int error;
53 
54 
56 typedef struct {
57  unsigned long id;
58  unsigned long mask;
59 } can_filter_t;
60 
61 
64 typedef struct {
65  int fd;
66  int channel_id;
67  int flags;
68  std::string filename;
70 
71 
73 typedef struct {
74  int port;
75  int irq;
76  int use_extended_frame;
77  int bit_speed;
78  int intr_id;
79  can_filter_t filter;
81 
82 
84 typedef struct {
85  unsigned int shadow_buffer_count;
86  unsigned int intr_in_handler_count;
87  unsigned int rx_interrupt_count;
88  unsigned int rx_message_lost_count;
89  unsigned int tx_interrupt_count;
91 
92 
98 typedef struct
99 {
100  iofunc_ocb_t io_ocb;
101  int rcvid;
102  sigevent clt_event;
104 
106 /* -------------------------------------------------------------------------- */
107 /* -------------------------------------------------------------------------- */
108 /* -------------------------------------------------------------------------- */
109 
110 
127 #define DEFAULT_CONFIG "realtime.ini"
128 
130 #define DEFAULT_DEVICE "/dev/can1"
131 
133 #define INI_IRQ_ENTRY "Irq"
134 
136 #define INI_PORT_ENTRY "Port"
137 
139 #define INI_EXT_ENTRY "Ext"
140 
142 #define DEFAULT_IRQ 0
143 
145 #define DEFAULT_PORT 0x210
146 
149 #define DEFAULT_QSIZE 150
151 
157 class CANDeviceManager
158 {
159 public:
163 
166  int tx_buffer_flush = 0;
169  int can_notify_client_err = 0;
170 
172  int mask_count_non_zero = 0;
173 
185  virtual void init(unsigned int base_address, unsigned int bit_speed,
186  BYTE extended_frame);
187 
201  virtual int interrupt(CircularBuffer *in_buff, CircularBuffer *out_buff,
202  can_filter_t filter);
203 
215  virtual void send(CircularBuffer *out_buff);
216 
226  virtual can_msg_t read(CircularBuffer *in_buff);
227 
248  virtual int write(CircularBuffer *out_buff, can_msg_t *pmsg);
249 
255  virtual can_err_count_t clear_errs();
256 
258  virtual can_err_count_t get_errs();
259 
265  virtual void tx_process_interrupt(CircularBuffer *out_buff);
266 
274  virtual void rx_process_interrupt(CircularBuffer *in_buff,
275  can_filter_t filter);
276 
278  virtual ~CANDeviceManager();
279 
280 private:
282  int _baud[MAX_CHANNELS] = { 0x0 };
284  unsigned int _acc_code[MAX_CHANNELS] = { 0x0 };
286  unsigned int _acc_mask[MAX_CHANNELS] = { 0x0 };
287 
289  time_t _last_time_can_sent;
290 
293  can_err_count_t _errs;
294 
297  canregs_t *_base_addr;
298 
306  virtual int _start_chip(int minor);
307 
315  int _stop_chip(int minor);
316 
317 
334  virtual int _reset_chip(int minor);
335 
347  virtual int _set_timing(int minor, int baud);
348 
360  virtual int _set_mask(int minor, unsigned int code, unsigned int mask);
361 
362  /* Set value of the output control register.
363  *
364  * @param minor
365  * index of the current device within the channels
366  * @param arg
367  * value to set the output control register to
368  * @return
369  * 0 for success, or -1 if an error occurs
370  */
371  int _set_omode(int minor, int arg);
372 
373  /* Set listen-only mode.
374  *
375  * In listen-only mode, the CAN module is able to receive messages without
376  * giving an acknowledgment. Since the module does not influence the CAN bus
377  * in this mode the host device is capable of functioning like a monitor or
378  * for automatic bit-rate detection.
379  *
380  * Must be done after CMD_START(CAN_StopChip) and before
381  * CMD_START(CAN_StartChip).
382  *
383  * @param minor
384  * index of the current device within the channels
385  * @param arg
386  * if 1 the canmode variable is set, otherwise it is reset
387  * @return
388  * 0 for success, or -1 if an error occurs
389  */
390  int _set_listen_only_mode(int minor, int arg);
391 };
392 
393 
394 /* -------------------------------------------------------------------------- */
395 /* -------------------------------------------------------------------------- */
396 /* -------------------------------------------------------------------------- */
397 
398 
400 typedef struct
401 {
402  CANDeviceManager *can_dev;
403  iofunc_attr_t io_attr;
404  char *devname;
405  can_info_t can_info;
406  CircularBuffer *in_buff;
407  CircularBuffer *out_buff;
408  can_ocb_t *notify_pocb;
409  bool verbose_flag;
410  sigevent hw_event;
414 /* Forward declarations needed so new IOFUNC_OCB_T and IOFUNC_ATTR_T defines
415  * can be used in sys/iofunc.h */
416 
417 #ifndef IOFUNC_OCB_T
418 #define IOFUNC_OCB_T can_ocb_t
419 #endif
420 
421 #undef IOFUNC_ATTR_T
422 #define IOFUNC_ATTR_T can_attr_t
423 
424 
425 /* -------------------------------------------------------------------------- */
426 /* ----------------------- Implemented in can_if.cpp ------------------------ */
427 /* -------------------------------------------------------------------------- */
428 
429 
445 extern int can_dev_arm(resmgr_context_t *ctp, iofunc_ocb_t *io_ocb,
446  sigevent event);
447 
448 
449 /* -------------------------------------------------------------------------- */
450 /* ---------------------- Implemented in can_init.cpp ----------------------- */
451 /* -------------------------------------------------------------------------- */
452 
453 
464 extern void pulse_init(dispatch_t *dpp, IOFUNC_ATTR_T *pattr);
465 
466 
467 /* -------------------------------------------------------------------------- */
468 /* ----------------------- Implemented in io_func.cpp ----------------------- */
469 /* -------------------------------------------------------------------------- */
470 
471 
494 extern int io_devctl(resmgr_context_t *ctp, io_devctl_t *msg,
495  RESMGR_OCB_T *io_ocb);
496 
497 
524 extern int io_open(resmgr_context_t *ctp, io_open_t *msg,
525  RESMGR_HANDLE_T *handle, void *extra);
526 
527 
528 #endif /* INCLUDE_JBUS_CAN_DEV_H_ */
int can_notify_client_err
Definition: can_man.h:174
Definition: can_man.h:78
Definition: can_man.h:405
void pulse_init(dispatch_t *dpp, IOFUNC_ATTR_T *pattr)
virtual void send(CircularBuffer *out_buff)
Definition: can_dev.cpp:371
virtual can_err_count_t clear_errs()
Definition: can_dev.cpp:143
Definition: can_man.h:61
virtual can_err_count_t get_errs()
Definition: can_dev.cpp:153
virtual can_msg_t read(CircularBuffer *in_buff)
Definition: can_dev.cpp:244
unsigned char BYTE
Definition: common.h:39
virtual void init(unsigned int base_address, unsigned int bit_speed, BYTE extended_frame)
Definition: can_dev.cpp:38
virtual int interrupt(CircularBuffer *in_buff, CircularBuffer *out_buff, can_filter_t filter)
Definition: can_dev.cpp:158
Definition: buffer.h:22
int tx_buffer_flush
Definition: can_man.h:171
Definition: can_man.h:52
int io_devctl(resmgr_context_t *ctp, io_devctl_t *msg, RESMGR_OCB_T *io_ocb)
int io_open(resmgr_context_t *ctp, io_open_t *msg, RESMGR_HANDLE_T *handle, void *extra)
Definition: io_func.cpp:95
Definition: can_man.h:162
int can_dev_arm(resmgr_context_t *ctp, iofunc_ocb_t *io_ocb, sigevent event)
Definition: can_if.cpp:16
virtual void rx_process_interrupt(CircularBuffer *in_buff, can_filter_t filter)
Definition: can_dev.cpp:269
Definition: can_man.h:69
int mask_count_non_zero
Definition: can_man.h:177
virtual void tx_process_interrupt(CircularBuffer *out_buff)
Definition: can_dev.cpp:319
virtual ~CANDeviceManager()
Definition: can_dev.cpp:133
Definition: can_man.h:89
Definition: can_man.h:103
int can_timeout_count
Definition: can_man.h:167
virtual int write(CircularBuffer *out_buff, can_msg_t *pmsg)
Definition: can_dev.cpp:328