6b13f685e
김민수
BSP 최초 추가
|
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#ifndef __LINUX_COPSLTALK_H
#define __LINUX_COPSLTALK_H
#ifdef __KERNEL__
#define MAX_LLAP_SIZE 603
#define TANG_CARD_STATUS 1
#define TANG_CLEAR_INT 1
#define TANG_RESET 3
#define TANG_TX_READY 1
#define TANG_RX_READY 2
#define DAYNA_CMD_DATA 0
#define DAYNA_CLEAR_INT 1
#define DAYNA_CARD_STATUS 2
#define DAYNA_INT_CARD 3
#define DAYNA_RESET 4
#define DAYNA_RX_READY 0
#define DAYNA_TX_READY 1
#define DAYNA_RX_REQUEST 3
#define COPS_CLEAR_INT 1
#define LAP_INIT 1 /* Init cmd */
#define LAP_INIT_RSP 2 /* Init response */
#define LAP_WRITE 3 /* Write cmd */
#define DATA_READ 4 /* Data read */
#define LAP_RESPONSE 4 /* Received ALAP frame response */
#define LAP_GETSTAT 5 /* Get LAP and HW status */
#define LAP_RSPSTAT 6 /* Status response */
#endif
struct ltfirmware
{
unsigned int length;
const unsigned char *data;
};
#define DAYNA 1
#define TANGENT 2
#endif
|