ISP/rtl/BayerProcess/Demosaic_Pipeline.sv

101 lines
3.4 KiB
Systemverilog
Raw Normal View History

2024-10-22 20:31:51 +08:00
module Demosaic_Pipeline #(
2024-11-03 20:38:29 +08:00
parameter WINDOW_LENGTH = 3,
parameter reg [ 1:0] RAW_TYPE = 3, // (0,0)位置算起RAW_TYPE的值
parameter reg [ 4:0] DATA_WIDTH = 16 // 输入/输出数据位宽
)(
2024-10-22 20:31:51 +08:00
input wire clk,
input wire reset,
input wire [DATA_WIDTH - 1:0] in_data [WINDOW_LENGTH*WINDOW_LENGTH], // 数据输入线.第一列数据在[0],[1],[2]中
2024-11-03 20:38:29 +08:00
input wire [7:0] in_user,
output reg [DATA_WIDTH - 1:0] out_data [3], // 数据输出线3、2、1分别表示r、g、b
output wire [7:0] out_user,
2024-10-22 20:31:51 +08:00
2024-11-03 20:38:29 +08:00
input wire in_valid,
2024-10-22 20:31:51 +08:00
output wire out_valid,
2024-11-03 20:38:29 +08:00
input wire in_ready,
output wire out_ready
2024-10-22 20:31:51 +08:00
);
2024-11-03 20:38:29 +08:00
localparam DATA_NUM = WINDOW_LENGTH*WINDOW_LENGTH;
localparam PIPILINE = 2;
2024-10-22 20:31:51 +08:00
reg [PIPILINE-1:0] pipeline_valid;
2024-11-03 20:38:29 +08:00
reg [7:0] pipeline_user[PIPILINE];
2024-10-22 20:31:51 +08:00
wire pipeline_running;
assign pipeline_running = in_ready | ~pipeline_valid[PIPILINE-1];
//out_ready :只要本模块可以接收数据就一直拉高
assign out_ready = pipeline_running;
//out_valid :只要本模块可以发出数据就一直拉高
assign out_valid = pipeline_valid[PIPILINE-1];
2024-11-03 20:38:29 +08:00
assign out_user = pipeline_user[PIPILINE-1];
2024-10-22 20:31:51 +08:00
2024-11-03 20:38:29 +08:00
reg pos_x, pos_y;
2024-10-22 20:31:51 +08:00
reg [DATA_WIDTH-1:0] red, blue, green;
2024-11-03 20:38:29 +08:00
reg [DATA_WIDTH-1:0] red_cache[4], blue_cache[4], green_cache[4];
2024-10-22 20:31:51 +08:00
reg [1:0] raw_type;
integer i;
always @(posedge clk) begin
2024-11-03 20:38:29 +08:00
if(reset) begin
for(i=0;i<4;i=i+1) red_cache[i] <= 0;
for(i=0;i<4;i=i+1) blue_cache[i] <= 0;
for(i=0;i<4;i=i+1) green_cache[i] <= 0;
2024-10-22 20:31:51 +08:00
pipeline_valid <= 0;
{red, green, blue} <= 0;
2024-11-03 20:38:29 +08:00
{out_data[2],out_data[1],out_data[0]} <= 0;
for(i=0;i<PIPILINE;i=i+1) pipeline_user[i] <= 0;
pos_x <= 0;
pos_y <= 0;
end else if(pipeline_running) begin
2024-10-22 20:31:51 +08:00
pipeline_valid <= {pipeline_valid[PIPILINE-2:0], in_valid};
2024-11-03 20:38:29 +08:00
if(in_valid) begin
pipeline_user[0] <= in_user;
pos_x <= (in_user[0])?(0):(~pos_x);
pos_y <= (in_user[0])?((in_user[1])?(0):(~pos_y)):(pos_y);
red_cache[0] <= (in_data[3] >> 1) + (in_data[5] >> 1);
red_cache[1] <= (in_data[0] >> 2) + (in_data[2] >> 2) + (in_data[6] >> 2) + (in_data[8] >> 2);
red_cache[2] <= in_data[4];
red_cache[3] <= (in_data[1] >> 1) + (in_data[7] >> 1);
green_cache[0] <= in_data[4];
green_cache[1] <= (in_data[1] >> 2) + (in_data[3] >> 2) + (in_data[5] >> 2) + (in_data[7] >> 2);
green_cache[2] <= (in_data[1] >> 2) + (in_data[3] >> 2) + (in_data[5] >> 2) + (in_data[7] >> 2);
green_cache[3] <= in_data[4];
blue_cache[0] <= (in_data[1] >> 1) + (in_data[7] >> 1);
blue_cache[1] <= in_data[4];
blue_cache[2] <= (in_data[0] >> 2) + (in_data[2] >> 2) + (in_data[6] >> 2) + (in_data[8] >> 2);
blue_cache[3] <= (in_data[3] >> 1) + (in_data[5] >> 1);
2024-10-22 20:31:51 +08:00
end
2024-11-03 20:38:29 +08:00
if(pipeline_valid[0]) begin
pipeline_user[1] <= pipeline_user[0];
out_data[2] <= red_cache[raw_type];
out_data[1] <= green_cache[raw_type];
out_data[0] <= blue_cache[raw_type];
2024-10-22 20:31:51 +08:00
end
end
end
// 0:grg 1:rgr 2:bgb 3:gbg 036 窗口右移0<->1 2<->3; 窗口下移0<->21<->3。
// bgb gbg grg rgr 147
// grg rgr bgb gbg 258
2024-11-03 20:38:29 +08:00
always @(*) begin
case (RAW_TYPE)
2'b00: raw_type = { pos_y, pos_x};
2'b01: raw_type = { pos_y, ~pos_x};
2'b10: raw_type = {~pos_y, pos_x};
2'b11: raw_type = {~pos_y, ~pos_x};
endcase
end
endmodule