x393
1.0
FPGAcodeforElphelNC393camera
cmd_encod_4mux.v
Go to the documentation of this file.
1
39
`timescale 1ns/1ps
40
41
module
cmd_encod_4mux
(
42
input
mrst
,
43
input
clk
,
44
45
input
start0
,
// this channel was started
46
input
[
31
:
0
]
enc_cmd0
,
// encoded command
47
input
enc_wr0
,
// write encoded command
48
input
enc_done0
,
// encoding finished
49
50
input
start1
,
// this channel was started
51
input
[
31
:
0
]
enc_cmd1
,
// encoded command
52
input
enc_wr1
,
// write encoded command
53
input
enc_done1
,
// encoding finished
54
55
input
start2
,
// this channel was started
56
input
[
31
:
0
]
enc_cmd2
,
// encoded command
57
input
enc_wr2
,
// write encoded command
58
input
enc_done2
,
// encoding finished
59
60
input
start3
,
// this channel was started
61
input
[
31
:
0
]
enc_cmd3
,
// encoded command
62
input
enc_wr3
,
// write encoded command
63
input
enc_done3
,
// encoding finished
64
65
output
reg
start
,
// combined output was started (1 clk from |start*)
66
output
reg
[
31
:
0
]
enc_cmd
,
// encoded command
67
output
reg
enc_wr
,
// write encoded command
68
output
reg
enc_done
// encoding finished
69
);
70
reg
[
3
:
0
]
select
;
71
wire
start_w
=
start0
|
start1
|
start2
|
start3
;
72
always
@ (
posedge
clk
)
begin
73
if
(
mrst
)
start
<=
0
;
74
else
start
<=
start_w
;
75
76
if
(
mrst
)
select
<=
0
;
77
else
if
(
start_w
)
select
<={
// normally should be no simultaneous starts, so priority is not needed
78
start3
& ~
start2
& ~
start1
& ~
start0
,
79
start2
& ~
start1
& ~
start0
,
80
start1
& ~
start0
,
81
start0
};
82
end
83
84
always
@(
posedge
clk
)
begin
85
enc_cmd
<= ({
32
{
select
[
0
]}} &
enc_cmd0
) |
86
({
32
{
select
[
1
]}} &
enc_cmd1
) |
87
({
32
{
select
[
2
]}} &
enc_cmd2
) |
88
({
32
{
select
[
3
]}} &
enc_cmd3
);
89
90
enc_wr
<= (
select
[
0
] &
enc_wr0
) |
91
(
select
[
1
] &
enc_wr1
) |
92
(
select
[
2
] &
enc_wr2
) |
93
(
select
[
3
] &
enc_wr3
);
94
95
enc_done
<= (
select
[
0
] &
enc_done0
) |
96
(
select
[
1
] &
enc_done1
) |
97
(
select
[
2
] &
enc_done2
) |
98
(
select
[
3
] &
enc_done3
);
99
end
100
101
endmodule
102
cmd_encod_4mux.3866start2
3866start2
Definition:
cmd_encod_4mux.v:55
cmd_encod_4mux.3878select
3878selectreg[3:0]
Definition:
cmd_encod_4mux.v:70
cmd_encod_4mux.3879start_w
3879start_wwire
Definition:
cmd_encod_4mux.v:71
cmd_encod_4mux.3871enc_cmd3
[31:0] 3871enc_cmd3
Definition:
cmd_encod_4mux.v:61
cmd_encod_4mux.3872enc_wr3
3872enc_wr3
Definition:
cmd_encod_4mux.v:62
cmd_encod_4mux.3877enc_done
reg 3877enc_done
Definition:
cmd_encod_4mux.v:68
cmd_encod_4mux.3873enc_done3
3873enc_done3
Definition:
cmd_encod_4mux.v:63
cmd_encod_4mux.3860enc_wr0
3860enc_wr0
Definition:
cmd_encod_4mux.v:47
cmd_encod_4mux.3856mrst
3856mrst
Definition:
cmd_encod_4mux.v:42
cmd_encod_4mux.3876enc_wr
reg 3876enc_wr
Definition:
cmd_encod_4mux.v:67
cmd_encod_4mux.3861enc_done0
3861enc_done0
Definition:
cmd_encod_4mux.v:48
cmd_encod_4mux.3864enc_wr1
3864enc_wr1
Definition:
cmd_encod_4mux.v:52
cmd_encod_4mux.3858start0
3858start0
Definition:
cmd_encod_4mux.v:45
cmd_encod_4mux.3874start
reg 3874start
Definition:
cmd_encod_4mux.v:65
cmd_encod_4mux.3859enc_cmd0
[31:0] 3859enc_cmd0
Definition:
cmd_encod_4mux.v:46
cmd_encod_4mux.3870start3
3870start3
Definition:
cmd_encod_4mux.v:60
cmd_encod_4mux.3869enc_done2
3869enc_done2
Definition:
cmd_encod_4mux.v:58
cmd_encod_4mux.3875enc_cmd
reg [31:0] 3875enc_cmd
Definition:
cmd_encod_4mux.v:66
cmd_encod_4mux.3857clk
3857clk
Definition:
cmd_encod_4mux.v:43
cmd_encod_4mux.3862start1
3862start1
Definition:
cmd_encod_4mux.v:50
cmd_encod_4mux.3867enc_cmd2
[31:0] 3867enc_cmd2
Definition:
cmd_encod_4mux.v:56
cmd_encod_4mux.3868enc_wr2
3868enc_wr2
Definition:
cmd_encod_4mux.v:57
cmd_encod_4mux.3863enc_cmd1
[31:0] 3863enc_cmd1
Definition:
cmd_encod_4mux.v:51
cmd_encod_4mux
Definition:
cmd_encod_4mux.v:41
cmd_encod_4mux.3865enc_done1
3865enc_done1
Definition:
cmd_encod_4mux.v:53
memctrl
cmd_encod_4mux.v
Generated by
1.8.12