bcm.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * linux/can/bcm.h
  3. *
  4. * Definitions for CAN Broadcast Manager (BCM)
  5. *
  6. * Author: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
  7. * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
  8. * All rights reserved.
  9. *
  10. * Send feedback to <socketcan-users@lists.berlios.de>
  11. *
  12. */
  13. #ifndef CAN_BCM_H
  14. #define CAN_BCM_H
  15. #include <linux/types.h>
  16. #include <linux/can.h>
  17. /**
  18. * struct bcm_msg_head - head of messages to/from the broadcast manager
  19. * @opcode: opcode, see enum below.
  20. * @flags: special flags, see below.
  21. * @count: number of frames to send before changing interval.
  22. * @ival1: interval for the first @count frames.
  23. * @ival2: interval for the following frames.
  24. * @can_id: CAN ID of frames to be sent or received.
  25. * @nframes: number of frames appended to the message head.
  26. * @frames: array of CAN frames.
  27. */
  28. struct bcm_msg_head {
  29. __u32 opcode;
  30. __u32 flags;
  31. __u32 count;
  32. struct timeval ival1, ival2;
  33. canid_t can_id;
  34. __u32 nframes;
  35. struct can_frame frames[0];
  36. };
  37. enum {
  38. TX_SETUP = 1, /* create (cyclic) transmission task */
  39. TX_DELETE, /* remove (cyclic) transmission task */
  40. TX_READ, /* read properties of (cyclic) transmission task */
  41. TX_SEND, /* send one CAN frame */
  42. RX_SETUP, /* create RX content filter subscription */
  43. RX_DELETE, /* remove RX content filter subscription */
  44. RX_READ, /* read properties of RX content filter subscription */
  45. TX_STATUS, /* reply to TX_READ request */
  46. TX_EXPIRED, /* notification on performed transmissions (count=0) */
  47. RX_STATUS, /* reply to RX_READ request */
  48. RX_TIMEOUT, /* cyclic message is absent */
  49. RX_CHANGED /* updated CAN frame (detected content change) */
  50. };
  51. #define SETTIMER 0x0001
  52. #define STARTTIMER 0x0002
  53. #define TX_COUNTEVT 0x0004
  54. #define TX_ANNOUNCE 0x0008
  55. #define TX_CP_CAN_ID 0x0010
  56. #define RX_FILTER_ID 0x0020
  57. #define RX_CHECK_DLC 0x0040
  58. #define RX_NO_AUTOTIMER 0x0080
  59. #define RX_ANNOUNCE_RESUME 0x0100
  60. #define TX_RESET_MULTI_IDX 0x0200
  61. #define RX_RTR_FRAME 0x0400
  62. #endif /* CAN_BCM_H */