forked from nazgul77/tn40xx-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tn40_ioctl.h
45 lines (40 loc) · 954 Bytes
/
tn40_ioctl.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*******************************************************************************
*
* tn40xx_ Driver
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*******************************************************************************/
#ifndef _TN40XX_IOCTL_H
#define _TN40XX_IOCTL_H
/* ioctl ops */
enum {
OP_INFO,
OP_READ_REG,
OP_WRITE_REG,
OP_MDIO_READ,
OP_MDIO_WRITE,
op_TRACE_ON,
op_TRACE_OFF,
op_TRACE_ONCE,
op_TRACE_PRINT,
OP_DBG,
OP_MEMLOG_DMESG,
OP_MEMLOG_PRINT,
};
enum {
DBG_STOP_DBG = 0,
DBG_START_DBG = 1,
DBG_SUSPEND = 2,
DBG_RESUME = 3,
DBG_PRINT_PAGE_TABLE = 4,
};
#define IOCTL_DATA_SIZE (3)
typedef struct _tn40_ioctl_ {
uint data[IOCTL_DATA_SIZE];
char *buf;
} tn40_ioctl_t;
#endif /* _TN40XX_IOCTL_H */