x393
1.0
FPGAcodeforElphelNC393camera
action_decoder.v
Go to the documentation of this file.
1
9
10
`timescale 1ns/1ps
11
12
module
action_decoder
(
13
input
clk
,
14
input
enable
,
15
input
[
10
:
0
]
data
,
16
output
reg
PXSERR_DIAG_X
,
17
output
reg
SIRQ_DHR
,
18
output
reg
SIRQ_DP
,
19
output
reg
SIRQ_DS
,
20
output
reg
SIRQ_IF
,
21
output
reg
SIRQ_INF
,
22
output
reg
SIRQ_PS
,
23
output
reg
SIRQ_SDB
,
24
output
reg
SIRQ_TFE
,
25
output
reg
SIRQ_UF
,
26
output
reg
PFSM_STARTED
,
27
output
reg
PCMD_CR_CLEAR
,
28
output
reg
PCMD_CR_SET
,
29
output
reg
PXCI0_CLEAR
,
30
output
reg
PXSSTS_DET_1
,
31
output
reg
SSTS_DET_OFFLINE
,
32
output
reg
SCTL_DET_CLEAR
,
33
output
reg
HBA_RST_DONE
,
34
output
reg
SET_UPDATE_SIG
,
35
output
reg
UPDATE_SIG
,
36
output
reg
UPDATE_ERR_STS
,
37
output
reg
UPDATE_PIO
,
38
output
reg
UPDATE_PRDBC
,
39
output
reg
CLEAR_BSY_DRQ
,
40
output
reg
CLEAR_BSY_SET_DRQ
,
41
output
reg
SET_BSY
,
42
output
reg
SET_STS_7F
,
43
output
reg
SET_STS_80
,
44
output
reg
XFER_CNTR_CLEAR
,
45
output
reg
DECR_DWCR
,
46
output
reg
DECR_DWCW
,
47
output
reg
FIS_FIRST_FLUSH
,
48
output
reg
CLEAR_CMD_TO_ISSUE
,
49
output
reg
DMA_ABORT
,
50
output
reg
DMA_PRD_IRQ_CLEAR
,
51
output
reg
XMIT_COMRESET
,
52
output
reg
SEND_SYNC_ESC
,
53
output
reg
SET_OFFLINE
,
54
output
reg
R_OK
,
55
output
reg
R_ERR
,
56
output
reg
EN_COMINIT
,
57
output
reg
FETCH_CMD
,
58
output
reg
ATAPI_XMIT
,
59
output
reg
CFIS_XMIT
,
60
output
reg
DX_XMIT
,
61
output
reg
GET_DATA_FIS
,
62
output
reg
GET_DSFIS
,
63
output
reg
GET_IGNORE
,
64
output
reg
GET_PSFIS
,
65
output
reg
GET_RFIS
,
66
output
reg
GET_SDBFIS
,
67
output
reg
GET_UFIS
);
68
69
always
@(
posedge
clk
)
begin
70
PXSERR_DIAG_X
<=
enable
&&
data
[
1
] &&
data
[
0
];
71
SIRQ_DHR
<=
enable
&&
data
[
2
] &&
data
[
0
];
72
SIRQ_DP
<=
enable
&&
data
[
3
] &&
data
[
0
];
73
SIRQ_DS
<=
enable
&&
data
[
4
] &&
data
[
0
];
74
SIRQ_IF
<=
enable
&&
data
[
5
] &&
data
[
0
];
75
SIRQ_INF
<=
enable
&&
data
[
6
] &&
data
[
0
];
76
SIRQ_PS
<=
enable
&&
data
[
7
] &&
data
[
0
];
77
SIRQ_SDB
<=
enable
&&
data
[
8
] &&
data
[
0
];
78
SIRQ_TFE
<=
enable
&&
data
[
9
] &&
data
[
0
];
79
SIRQ_UF
<=
enable
&&
data
[
10
] &&
data
[
0
];
80
PFSM_STARTED
<=
enable
&&
data
[
2
] &&
data
[
1
];
81
PCMD_CR_CLEAR
<=
enable
&&
data
[
3
] &&
data
[
1
];
82
PCMD_CR_SET
<=
enable
&&
data
[
4
] &&
data
[
1
];
83
PXCI0_CLEAR
<=
enable
&&
data
[
5
] &&
data
[
1
];
84
PXSSTS_DET_1
<=
enable
&&
data
[
6
] &&
data
[
1
];
85
SSTS_DET_OFFLINE
<=
enable
&&
data
[
7
] &&
data
[
1
];
86
SCTL_DET_CLEAR
<=
enable
&&
data
[
8
] &&
data
[
1
];
87
HBA_RST_DONE
<=
enable
&&
data
[
9
] &&
data
[
1
];
88
SET_UPDATE_SIG
<=
enable
&&
data
[
10
] &&
data
[
1
];
89
UPDATE_SIG
<=
enable
&&
data
[
3
] &&
data
[
2
];
90
UPDATE_ERR_STS
<=
enable
&&
data
[
4
] &&
data
[
2
];
91
UPDATE_PIO
<=
enable
&&
data
[
5
] &&
data
[
2
];
92
UPDATE_PRDBC
<=
enable
&&
data
[
6
] &&
data
[
2
];
93
CLEAR_BSY_DRQ
<=
enable
&&
data
[
7
] &&
data
[
2
];
94
CLEAR_BSY_SET_DRQ
<=
enable
&&
data
[
8
] &&
data
[
2
];
95
SET_BSY
<=
enable
&&
data
[
9
] &&
data
[
2
];
96
SET_STS_7F
<=
enable
&&
data
[
10
] &&
data
[
2
];
97
SET_STS_80
<=
enable
&&
data
[
4
] &&
data
[
3
];
98
XFER_CNTR_CLEAR
<=
enable
&&
data
[
5
] &&
data
[
3
];
99
DECR_DWCR
<=
enable
&&
data
[
6
] &&
data
[
3
];
100
DECR_DWCW
<=
enable
&&
data
[
7
] &&
data
[
3
];
101
FIS_FIRST_FLUSH
<=
enable
&&
data
[
8
] &&
data
[
3
];
102
CLEAR_CMD_TO_ISSUE
<=
enable
&&
data
[
9
] &&
data
[
3
];
103
DMA_ABORT
<=
enable
&&
data
[
10
] &&
data
[
3
];
104
DMA_PRD_IRQ_CLEAR
<=
enable
&&
data
[
5
] &&
data
[
4
];
105
XMIT_COMRESET
<=
enable
&&
data
[
6
] &&
data
[
4
];
106
SEND_SYNC_ESC
<=
enable
&&
data
[
7
] &&
data
[
4
];
107
SET_OFFLINE
<=
enable
&&
data
[
8
] &&
data
[
4
];
108
R_OK
<=
enable
&&
data
[
9
] &&
data
[
4
];
109
R_ERR
<=
enable
&&
data
[
10
] &&
data
[
4
];
110
EN_COMINIT
<=
enable
&&
data
[
6
] &&
data
[
5
];
111
FETCH_CMD
<=
enable
&&
data
[
7
] &&
data
[
5
];
112
ATAPI_XMIT
<=
enable
&&
data
[
8
] &&
data
[
5
];
113
CFIS_XMIT
<=
enable
&&
data
[
9
] &&
data
[
5
];
114
DX_XMIT
<=
enable
&&
data
[
10
] &&
data
[
5
];
115
GET_DATA_FIS
<=
enable
&&
data
[
7
] &&
data
[
6
];
116
GET_DSFIS
<=
enable
&&
data
[
8
] &&
data
[
6
];
117
GET_IGNORE
<=
enable
&&
data
[
9
] &&
data
[
6
];
118
GET_PSFIS
<=
enable
&&
data
[
10
] &&
data
[
6
];
119
GET_RFIS
<=
enable
&&
data
[
8
] &&
data
[
7
];
120
GET_SDBFIS
<=
enable
&&
data
[
9
] &&
data
[
7
];
121
GET_UFIS
<=
enable
&&
data
[
10
] &&
data
[
7
];
122
end
123
endmodule
action_decoder.14519SIRQ_UF
reg 14519SIRQ_UF
Definition:
action_decoder.v:25
action_decoder.14539DECR_DWCR
reg 14539DECR_DWCR
Definition:
action_decoder.v:45
action_decoder.14510PXSERR_DIAG_X
reg 14510PXSERR_DIAG_X
Definition:
action_decoder.v:16
action_decoder.14508enable
14508enable
Definition:
action_decoder.v:14
action_decoder.14546SEND_SYNC_ESC
reg 14546SEND_SYNC_ESC
Definition:
action_decoder.v:52
action_decoder.14517SIRQ_SDB
reg 14517SIRQ_SDB
Definition:
action_decoder.v:23
action_decoder.14534CLEAR_BSY_SET_DRQ
reg 14534CLEAR_BSY_SET_DRQ
Definition:
action_decoder.v:40
action_decoder.14560GET_SDBFIS
reg 14560GET_SDBFIS
Definition:
action_decoder.v:66
action_decoder.14549R_ERR
reg 14549R_ERR
Definition:
action_decoder.v:55
action_decoder.14541FIS_FIRST_FLUSH
reg 14541FIS_FIRST_FLUSH
Definition:
action_decoder.v:47
action_decoder.14514SIRQ_IF
reg 14514SIRQ_IF
Definition:
action_decoder.v:20
action_decoder.14513SIRQ_DS
reg 14513SIRQ_DS
Definition:
action_decoder.v:19
action_decoder.14520PFSM_STARTED
reg 14520PFSM_STARTED
Definition:
action_decoder.v:26
action_decoder.14515SIRQ_INF
reg 14515SIRQ_INF
Definition:
action_decoder.v:21
action_decoder.14540DECR_DWCW
reg 14540DECR_DWCW
Definition:
action_decoder.v:46
action_decoder.14511SIRQ_DHR
reg 14511SIRQ_DHR
Definition:
action_decoder.v:17
action_decoder.14518SIRQ_TFE
reg 14518SIRQ_TFE
Definition:
action_decoder.v:24
action_decoder.14557GET_IGNORE
reg 14557GET_IGNORE
Definition:
action_decoder.v:63
action_decoder.14556GET_DSFIS
reg 14556GET_DSFIS
Definition:
action_decoder.v:62
action_decoder.14516SIRQ_PS
reg 14516SIRQ_PS
Definition:
action_decoder.v:22
action_decoder.14535SET_BSY
reg 14535SET_BSY
Definition:
action_decoder.v:41
action_decoder.14527HBA_RST_DONE
reg 14527HBA_RST_DONE
Definition:
action_decoder.v:33
action_decoder.14558GET_PSFIS
reg 14558GET_PSFIS
Definition:
action_decoder.v:64
action_decoder.14533CLEAR_BSY_DRQ
reg 14533CLEAR_BSY_DRQ
Definition:
action_decoder.v:39
action_decoder.14555GET_DATA_FIS
reg 14555GET_DATA_FIS
Definition:
action_decoder.v:61
action_decoder.14551FETCH_CMD
reg 14551FETCH_CMD
Definition:
action_decoder.v:57
action_decoder.14538XFER_CNTR_CLEAR
reg 14538XFER_CNTR_CLEAR
Definition:
action_decoder.v:44
action_decoder.14542CLEAR_CMD_TO_ISSUE
reg 14542CLEAR_CMD_TO_ISSUE
Definition:
action_decoder.v:48
action_decoder.14526SCTL_DET_CLEAR
reg 14526SCTL_DET_CLEAR
Definition:
action_decoder.v:32
action_decoder.14536SET_STS_7F
reg 14536SET_STS_7F
Definition:
action_decoder.v:42
action_decoder.14507clk
14507clk
Definition:
action_decoder.v:13
action_decoder.14543DMA_ABORT
reg 14543DMA_ABORT
Definition:
action_decoder.v:49
action_decoder.14509data
[10:0] 14509data
Definition:
action_decoder.v:15
action_decoder.14529UPDATE_SIG
reg 14529UPDATE_SIG
Definition:
action_decoder.v:35
action_decoder.14532UPDATE_PRDBC
reg 14532UPDATE_PRDBC
Definition:
action_decoder.v:38
action_decoder.14545XMIT_COMRESET
reg 14545XMIT_COMRESET
Definition:
action_decoder.v:51
action_decoder.14524PXSSTS_DET_1
reg 14524PXSSTS_DET_1
Definition:
action_decoder.v:30
action_decoder.14522PCMD_CR_SET
reg 14522PCMD_CR_SET
Definition:
action_decoder.v:28
action_decoder.14561GET_UFIS
reg 14561GET_UFIS
Definition:
action_decoder.v:67
action_decoder.14553CFIS_XMIT
reg 14553CFIS_XMIT
Definition:
action_decoder.v:59
action_decoder.14544DMA_PRD_IRQ_CLEAR
reg 14544DMA_PRD_IRQ_CLEAR
Definition:
action_decoder.v:50
action_decoder.14530UPDATE_ERR_STS
reg 14530UPDATE_ERR_STS
Definition:
action_decoder.v:36
action_decoder.14525SSTS_DET_OFFLINE
reg 14525SSTS_DET_OFFLINE
Definition:
action_decoder.v:31
action_decoder.14554DX_XMIT
reg 14554DX_XMIT
Definition:
action_decoder.v:60
action_decoder
Definition:
action_decoder.v:12
action_decoder.14531UPDATE_PIO
reg 14531UPDATE_PIO
Definition:
action_decoder.v:37
action_decoder.14528SET_UPDATE_SIG
reg 14528SET_UPDATE_SIG
Definition:
action_decoder.v:34
action_decoder.14548R_OK
reg 14548R_OK
Definition:
action_decoder.v:54
action_decoder.14521PCMD_CR_CLEAR
reg 14521PCMD_CR_CLEAR
Definition:
action_decoder.v:27
action_decoder.14547SET_OFFLINE
reg 14547SET_OFFLINE
Definition:
action_decoder.v:53
action_decoder.14550EN_COMINIT
reg 14550EN_COMINIT
Definition:
action_decoder.v:56
action_decoder.14552ATAPI_XMIT
reg 14552ATAPI_XMIT
Definition:
action_decoder.v:58
action_decoder.14537SET_STS_80
reg 14537SET_STS_80
Definition:
action_decoder.v:43
action_decoder.14512SIRQ_DP
reg 14512SIRQ_DP
Definition:
action_decoder.v:18
action_decoder.14559GET_RFIS
reg 14559GET_RFIS
Definition:
action_decoder.v:65
action_decoder.14523PXCI0_CLEAR
reg 14523PXCI0_CLEAR
Definition:
action_decoder.v:29
x393_sata
generated
action_decoder.v
Generated by
1.8.12