blob: 122d5456ebaed183f53a007b7daa4a0289a359f9 [file] [log] [blame]
Ben Cheng655a7c02013-10-16 16:09:24 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
Christopher Ferrisba8d4f42014-09-03 19:56:49 -070019#ifndef _UAPI_CAN_H
20#define _UAPI_CAN_H
Ben Cheng655a7c02013-10-16 16:09:24 -070021#include <linux/types.h>
22#include <linux/socket.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070023#define CAN_EFF_FLAG 0x80000000U
24#define CAN_RTR_FLAG 0x40000000U
25#define CAN_ERR_FLAG 0x20000000U
26#define CAN_SFF_MASK 0x000007FFU
Ben Cheng655a7c02013-10-16 16:09:24 -070027#define CAN_EFF_MASK 0x1FFFFFFFU
28#define CAN_ERR_MASK 0x1FFFFFFFU
29typedef __u32 canid_t;
30#define CAN_SFF_ID_BITS 11
Ben Cheng655a7c02013-10-16 16:09:24 -070031#define CAN_EFF_ID_BITS 29
32typedef __u32 can_err_mask_t;
33#define CAN_MAX_DLC 8
34#define CAN_MAX_DLEN 8
Ben Cheng655a7c02013-10-16 16:09:24 -070035#define CANFD_MAX_DLC 15
36#define CANFD_MAX_DLEN 64
37struct can_frame {
Tao Baod7db5942015-01-28 10:07:51 -080038 canid_t can_id;
Tao Baod7db5942015-01-28 10:07:51 -080039 __u8 can_dlc;
Christopher Ferris05d08e92016-02-04 13:16:38 -080040 __u8 __pad;
41 __u8 __res0;
42 __u8 __res1;
Tao Baod7db5942015-01-28 10:07:51 -080043 __u8 data[CAN_MAX_DLEN] __attribute__((aligned(8)));
Ben Cheng655a7c02013-10-16 16:09:24 -070044};
45#define CANFD_BRS 0x01
Ben Cheng655a7c02013-10-16 16:09:24 -070046#define CANFD_ESI 0x02
47struct canfd_frame {
Tao Baod7db5942015-01-28 10:07:51 -080048 canid_t can_id;
49 __u8 len;
Tao Baod7db5942015-01-28 10:07:51 -080050 __u8 flags;
51 __u8 __res0;
52 __u8 __res1;
53 __u8 data[CANFD_MAX_DLEN] __attribute__((aligned(8)));
Ben Cheng655a7c02013-10-16 16:09:24 -070054};
55#define CAN_MTU (sizeof(struct can_frame))
56#define CANFD_MTU (sizeof(struct canfd_frame))
57#define CAN_RAW 1
Ben Cheng655a7c02013-10-16 16:09:24 -070058#define CAN_BCM 2
59#define CAN_TP16 3
60#define CAN_TP20 4
61#define CAN_MCNET 5
Ben Cheng655a7c02013-10-16 16:09:24 -070062#define CAN_ISOTP 6
63#define CAN_NPROTO 7
64#define SOL_CAN_BASE 100
65struct sockaddr_can {
Tao Baod7db5942015-01-28 10:07:51 -080066 __kernel_sa_family_t can_family;
67 int can_ifindex;
68 union {
69 struct {
Tao Baod7db5942015-01-28 10:07:51 -080070 canid_t rx_id, tx_id;
71 } tp;
72 } can_addr;
Ben Cheng655a7c02013-10-16 16:09:24 -070073};
74struct can_filter {
Tao Baod7db5942015-01-28 10:07:51 -080075 canid_t can_id;
76 canid_t can_mask;
Ben Cheng655a7c02013-10-16 16:09:24 -070077};
78#define CAN_INV_FILTER 0x20000000U
Christopher Ferris6a9755d2017-01-13 14:09:31 -080079#define CAN_RAW_FILTER_MAX 512
Ben Cheng655a7c02013-10-16 16:09:24 -070080#endif