blob: e96154de4039c3e15bcc3ab324c07f4d12af7025 [file] [log] [blame]
Oliver Hartkoppffd980f2007-11-16 15:53:52 -08001/*
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
14#ifndef CAN_BCM_H
15#define CAN_BCM_H
16
Jaswinder Singh Rajput9d6aa4c2009-01-30 19:50:25 +053017#include <linux/types.h>
Ben Hutchings767df1c2011-08-24 18:46:06 +000018#include <linux/can.h>
Jaswinder Singh Rajput9d6aa4c2009-01-30 19:50:25 +053019
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080020/**
21 * struct bcm_msg_head - head of messages to/from the broadcast manager
22 * @opcode: opcode, see enum below.
23 * @flags: special flags, see below.
24 * @count: number of frames to send before changing interval.
25 * @ival1: interval for the first @count frames.
26 * @ival2: interval for the following frames.
27 * @can_id: CAN ID of frames to be sent or received.
28 * @nframes: number of frames appended to the message head.
29 * @frames: array of CAN frames.
30 */
31struct bcm_msg_head {
Oliver Hartkopp4195e312007-12-27 16:50:06 -080032 __u32 opcode;
33 __u32 flags;
34 __u32 count;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080035 struct timeval ival1, ival2;
36 canid_t can_id;
Oliver Hartkopp4195e312007-12-27 16:50:06 -080037 __u32 nframes;
Oliver Hartkoppffd980f2007-11-16 15:53:52 -080038 struct can_frame frames[0];
39};
40
41enum {
42 TX_SETUP = 1, /* create (cyclic) transmission task */
43 TX_DELETE, /* remove (cyclic) transmission task */
44 TX_READ, /* read properties of (cyclic) transmission task */
45 TX_SEND, /* send one CAN frame */
46 RX_SETUP, /* create RX content filter subscription */
47 RX_DELETE, /* remove RX content filter subscription */
48 RX_READ, /* read properties of RX content filter subscription */
49 TX_STATUS, /* reply to TX_READ request */
50 TX_EXPIRED, /* notification on performed transmissions (count=0) */
51 RX_STATUS, /* reply to RX_READ request */
52 RX_TIMEOUT, /* cyclic message is absent */
53 RX_CHANGED /* updated CAN frame (detected content change) */
54};
55
56#define SETTIMER 0x0001
57#define STARTTIMER 0x0002
58#define TX_COUNTEVT 0x0004
59#define TX_ANNOUNCE 0x0008
60#define TX_CP_CAN_ID 0x0010
61#define RX_FILTER_ID 0x0020
62#define RX_CHECK_DLC 0x0040
63#define RX_NO_AUTOTIMER 0x0080
64#define RX_ANNOUNCE_RESUME 0x0100
65#define TX_RESET_MULTI_IDX 0x0200
66#define RX_RTR_FRAME 0x0400
67
68#endif /* CAN_BCM_H */