Blame view

kernel/linux-rt-4.4.41/drivers/isdn/hardware/eicon/xdi_msg.h 3.13 KB
5113f6f70   김현기   kernel add
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  /* $Id: xdi_msg.h,v 1.1.2.2 2001/02/16 08:40:36 armin Exp $ */
  
  #ifndef __DIVA_XDI_UM_CFG_MESSAGE_H__
  #define __DIVA_XDI_UM_CFG_MESSAGE_H__
  
  /*
    Definition of messages used to communicate between
    XDI device driver and user mode configuration utility
  */
  
  /*
    As acknowledge one DWORD - card ordinal will be read from the card
  */
  #define DIVA_XDI_UM_CMD_GET_CARD_ORDINAL	0
  
  /*
    no acknowledge will be generated, memory block will be written in the
    memory at given offset
  */
  #define DIVA_XDI_UM_CMD_WRITE_SDRAM_BLOCK	1
  
  /*
    no acknowledge will be genatated, FPGA will be programmed
  */
  #define DIVA_XDI_UM_CMD_WRITE_FPGA				2
  
  /*
    As acknowledge block of SDRAM will be read in the user buffer
  */
  #define DIVA_XDI_UM_CMD_READ_SDRAM				3
  
  /*
    As acknowledge dword with serial number will be read in the user buffer
  */
  #define DIVA_XDI_UM_CMD_GET_SERIAL_NR			4
  
  /*
    As acknowledge struct consisting from 9 dwords with PCI info.
    dword[0...7] = 8 PCI BARS
    dword[9]		 = IRQ
  */
  #define DIVA_XDI_UM_CMD_GET_PCI_HW_CONFIG	5
  
  /*
    Reset of the board + activation of primary
    boot loader
  */
  #define DIVA_XDI_UM_CMD_RESET_ADAPTER			6
  
  /*
    Called after code download to start adapter
    at specified address
    Start does set new set of features due to fact that we not know
    if protocol features have changed
  */
  #define DIVA_XDI_UM_CMD_START_ADAPTER			7
  
  /*
    Stop adapter, called if user
    wishes to stop adapter without unload
    of the driver, to reload adapter with
    different protocol
  */
  #define DIVA_XDI_UM_CMD_STOP_ADAPTER			8
  
  /*
    Get state of current adapter
    Acknowledge is one dword with following values:
    0 - adapter ready for download
    1 - adapter running
    2 - adapter dead
    3 - out of service, driver should be restarted or hardware problem
  */
  #define DIVA_XDI_UM_CMD_GET_CARD_STATE		9
  
  /*
    Reads XLOG entry from the card
  */
  #define DIVA_XDI_UM_CMD_READ_XLOG_ENTRY		10
  
  /*
    Set untranslated protocol code features
  */
  #define DIVA_XDI_UM_CMD_SET_PROTOCOL_FEATURES	11
  
  typedef struct _diva_xdi_um_cfg_cmd_data_set_features {
  	dword features;
  } diva_xdi_um_cfg_cmd_data_set_features_t;
  
  typedef struct _diva_xdi_um_cfg_cmd_data_start {
  	dword offset;
  	dword features;
  } diva_xdi_um_cfg_cmd_data_start_t;
  
  typedef struct _diva_xdi_um_cfg_cmd_data_write_sdram {
  	dword ram_number;
  	dword offset;
  	dword length;
  } diva_xdi_um_cfg_cmd_data_write_sdram_t;
  
  typedef struct _diva_xdi_um_cfg_cmd_data_write_fpga {
  	dword fpga_number;
  	dword image_length;
  } diva_xdi_um_cfg_cmd_data_write_fpga_t;
  
  typedef struct _diva_xdi_um_cfg_cmd_data_read_sdram {
  	dword ram_number;
  	dword offset;
  	dword length;
  } diva_xdi_um_cfg_cmd_data_read_sdram_t;
  
  typedef union _diva_xdi_um_cfg_cmd_data {
  	diva_xdi_um_cfg_cmd_data_write_sdram_t write_sdram;
  	diva_xdi_um_cfg_cmd_data_write_fpga_t write_fpga;
  	diva_xdi_um_cfg_cmd_data_read_sdram_t read_sdram;
  	diva_xdi_um_cfg_cmd_data_start_t start;
  	diva_xdi_um_cfg_cmd_data_set_features_t features;
  } diva_xdi_um_cfg_cmd_data_t;
  
  typedef struct _diva_xdi_um_cfg_cmd {
  	dword adapter;		/* Adapter number 1...N */
  	dword command;
  	diva_xdi_um_cfg_cmd_data_t command_data;
  	dword data_length;	/* Plain binary data will follow */
  } diva_xdi_um_cfg_cmd_t;
  
  #endif