GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / toolchains / hndtools-arm-linux-2.6.36-uclibc-4.5.3 / arm-brcm-linux-uclibcgnueabi / sysroot / usr / include / linux / can / netlink.h
blob3250de935e1a95522c48c4f48e9f753dc37fc72e
1 /*
2 * linux/can/netlink.h
4 * Definitions for the CAN netlink interface
6 * Copyright (c) 2009 Wolfgang Grandegger <wg@grandegger.com>
8 * Send feedback to <socketcan-users@lists.berlios.de>
12 #ifndef CAN_NETLINK_H
13 #define CAN_NETLINK_H
15 #include <linux/types.h>
18 * CAN bit-timing parameters
20 * For futher information, please read chapter "8 BIT TIMING
21 * REQUIREMENTS" of the "Bosch CAN Specification version 2.0"
22 * at http://www.semiconductors.bosch.de/pdf/can2spec.pdf.
24 struct can_bittiming {
25 __u32 bitrate; /* Bit-rate in bits/second */
26 __u32 sample_point; /* Sample point in one-tenth of a percent */
27 __u32 tq; /* Time quanta (TQ) in nanoseconds */
28 __u32 prop_seg; /* Propagation segment in TQs */
29 __u32 phase_seg1; /* Phase buffer segment 1 in TQs */
30 __u32 phase_seg2; /* Phase buffer segment 2 in TQs */
31 __u32 sjw; /* Synchronisation jump width in TQs */
32 __u32 brp; /* Bit-rate prescaler */
36 * CAN harware-dependent bit-timing constant
38 * Used for calculating and checking bit-timing parameters
40 struct can_bittiming_const {
41 char name[16]; /* Name of the CAN controller hardware */
42 __u32 tseg1_min; /* Time segement 1 = prop_seg + phase_seg1 */
43 __u32 tseg1_max;
44 __u32 tseg2_min; /* Time segement 2 = phase_seg2 */
45 __u32 tseg2_max;
46 __u32 sjw_max; /* Synchronisation jump width */
47 __u32 brp_min; /* Bit-rate prescaler */
48 __u32 brp_max;
49 __u32 brp_inc;
53 * CAN clock parameters
55 struct can_clock {
56 __u32 freq; /* CAN system clock frequency in Hz */
60 * CAN operational and error states
62 enum can_state {
63 CAN_STATE_ERROR_ACTIVE = 0, /* RX/TX error count < 96 */
64 CAN_STATE_ERROR_WARNING, /* RX/TX error count < 128 */
65 CAN_STATE_ERROR_PASSIVE, /* RX/TX error count < 256 */
66 CAN_STATE_BUS_OFF, /* RX/TX error count >= 256 */
67 CAN_STATE_STOPPED, /* Device is stopped */
68 CAN_STATE_SLEEPING, /* Device is sleeping */
69 CAN_STATE_MAX
73 * CAN bus error counters
75 struct can_berr_counter {
76 __u16 txerr;
77 __u16 rxerr;
81 * CAN controller mode
83 struct can_ctrlmode {
84 __u32 mask;
85 __u32 flags;
88 #define CAN_CTRLMODE_LOOPBACK 0x01 /* Loopback mode */
89 #define CAN_CTRLMODE_LISTENONLY 0x02 /* Listen-only mode */
90 #define CAN_CTRLMODE_3_SAMPLES 0x04 /* Triple sampling mode */
91 #define CAN_CTRLMODE_ONE_SHOT 0x08 /* One-Shot mode */
92 #define CAN_CTRLMODE_BERR_REPORTING 0x10 /* Bus-error reporting */
95 * CAN device statistics
97 struct can_device_stats {
98 __u32 bus_error; /* Bus errors */
99 __u32 error_warning; /* Changes to error warning state */
100 __u32 error_passive; /* Changes to error passive state */
101 __u32 bus_off; /* Changes to bus off state */
102 __u32 arbitration_lost; /* Arbitration lost errors */
103 __u32 restarts; /* CAN controller re-starts */
107 * CAN netlink interface
109 enum {
110 IFLA_CAN_UNSPEC,
111 IFLA_CAN_BITTIMING,
112 IFLA_CAN_BITTIMING_CONST,
113 IFLA_CAN_CLOCK,
114 IFLA_CAN_STATE,
115 IFLA_CAN_CTRLMODE,
116 IFLA_CAN_RESTART_MS,
117 IFLA_CAN_RESTART,
118 IFLA_CAN_BERR_COUNTER,
119 __IFLA_CAN_MAX
122 #define IFLA_CAN_MAX (__IFLA_CAN_MAX - 1)
124 #endif /* CAN_NETLINK_H */