blob: d80db09d52019417f472bf06110a40c08b92408b [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 ****************************************************************************/
19#ifndef __HSI_CHAR_H
20#define __HSI_CHAR_H
Christopher Ferris6a9755d2017-01-13 14:09:31 -080021#include <linux/types.h>
Ben Cheng655a7c02013-10-16 16:09:24 -070022#define HSI_CHAR_MAGIC 'k'
Ben Cheng655a7c02013-10-16 16:09:24 -070023/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080024#define HSC_IOW(num,dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
Tao Baod7db5942015-01-28 10:07:51 -080025#define HSC_IOR(num,dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
26#define HSC_IOWR(num,dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
Ben Cheng655a7c02013-10-16 16:09:24 -070027#define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
Ben Cheng655a7c02013-10-16 16:09:24 -070028/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080029#define HSC_RESET HSC_IO(16)
Ben Cheng655a7c02013-10-16 16:09:24 -070030#define HSC_SET_PM HSC_IO(17)
31#define HSC_SEND_BREAK HSC_IO(18)
32#define HSC_SET_RX HSC_IOW(19, struct hsc_rx_config)
Ben Cheng655a7c02013-10-16 16:09:24 -070033/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080034#define HSC_GET_RX HSC_IOW(20, struct hsc_rx_config)
Ben Cheng655a7c02013-10-16 16:09:24 -070035#define HSC_SET_TX HSC_IOW(21, struct hsc_tx_config)
36#define HSC_GET_TX HSC_IOW(22, struct hsc_tx_config)
37#define HSC_PM_DISABLE 0
Ben Cheng655a7c02013-10-16 16:09:24 -070038/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080039#define HSC_PM_ENABLE 1
Ben Cheng655a7c02013-10-16 16:09:24 -070040#define HSC_MODE_STREAM 1
41#define HSC_MODE_FRAME 2
42#define HSC_FLOW_SYNC 0
Ben Cheng655a7c02013-10-16 16:09:24 -070043/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080044#define HSC_ARB_RR 0
Ben Cheng655a7c02013-10-16 16:09:24 -070045#define HSC_ARB_PRIO 1
46struct hsc_rx_config {
Christopher Ferris6a9755d2017-01-13 14:09:31 -080047 __u32 mode;
Ben Cheng655a7c02013-10-16 16:09:24 -070048/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080049 __u32 flow;
50 __u32 channels;
Ben Cheng655a7c02013-10-16 16:09:24 -070051};
52struct hsc_tx_config {
Ben Cheng655a7c02013-10-16 16:09:24 -070053/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Christopher Ferris6a9755d2017-01-13 14:09:31 -080054 __u32 mode;
55 __u32 channels;
56 __u32 speed;
57 __u32 arb_mode;
58/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
Ben Cheng655a7c02013-10-16 16:09:24 -070059};
Ben Cheng655a7c02013-10-16 16:09:24 -070060#endif