minor update
This commit is contained in:
136
hw/rtl/tex_unit/VX_tex_addr.v
Normal file
136
hw/rtl/tex_unit/VX_tex_addr.v
Normal file
@@ -0,0 +1,136 @@
|
||||
`include "VX_tex_define.vh"
|
||||
|
||||
module VX_tex_addr #(
|
||||
parameter CORE_ID = 0,
|
||||
parameter REQ_INFO_WIDTH = 1
|
||||
) (
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
|
||||
// handshake
|
||||
|
||||
input wire valid_in,
|
||||
output wire ready_in,
|
||||
|
||||
// inputs
|
||||
|
||||
input wire [`NW_BITS-1:0] req_wid,
|
||||
input wire [`NUM_THREADS-1:0] req_tmask,
|
||||
input wire [31:0] req_PC,
|
||||
input wire [REQ_INFO_WIDTH-1:0] req_info,
|
||||
|
||||
input wire [`TEX_FILTER_BITS-1:0] filter,
|
||||
input wire [`TEX_WRAP_BITS-1:0] wrap_u,
|
||||
input wire [`TEX_WRAP_BITS-1:0] wrap_v,
|
||||
|
||||
input wire [`TEX_ADDR_BITS-1:0] base_addr,
|
||||
input wire [`TEX_STRIDE_BITS-1:0] log_stride,
|
||||
input wire [`TEX_WIDTH_BITS-1:0] log_width,
|
||||
input wire [`TEX_HEIGHT_BITS-1:0] log_height,
|
||||
|
||||
input wire [`NUM_THREADS-1:0][31:0] coord_u,
|
||||
input wire [`NUM_THREADS-1:0][31:0] coord_v,
|
||||
input wire [`NUM_THREADS-1:0][31:0] lod,
|
||||
|
||||
// outputs
|
||||
|
||||
output wire mem_req_valid,
|
||||
output wire [`NW_BITS-1:0] mem_req_wid,
|
||||
output wire [`NUM_THREADS-1:0] mem_req_tmask,
|
||||
output wire [31:0] mem_req_PC,
|
||||
output wire [`TEX_FILTER_BITS-1:0] mem_req_filter,
|
||||
output wire [`TEX_STRIDE_BITS-1:0] mem_req_stride,
|
||||
output wire [`NUM_THREADS-1:0][`FIXED_FRAC-1:0] mem_req_u,
|
||||
output wire [`NUM_THREADS-1:0][`FIXED_FRAC-1:0] mem_req_v,
|
||||
output wire [REQ_INFO_WIDTH-1:0] mem_req_info,
|
||||
output wire [`NUM_THREADS-1:0][3:0][31:0] mem_req_addr,
|
||||
input wire mem_req_ready
|
||||
);
|
||||
|
||||
`UNUSED_PARAM (CORE_ID)
|
||||
`UNUSED_VAR (lod)
|
||||
|
||||
wire [1:0][`NUM_THREADS-1:0][`FIXED_FRAC-1:0] u;
|
||||
wire [1:0][`NUM_THREADS-1:0][`FIXED_FRAC-1:0] v;
|
||||
|
||||
// addressing mode
|
||||
|
||||
for (genvar i = 0; i < `NUM_THREADS; ++i) begin
|
||||
|
||||
wire [31:0] fu[1:0];
|
||||
wire [31:0] fv[1:0];
|
||||
|
||||
assign fu[0] = coord_u[i] - (filter ? (`FIXED_HALF >> log_width) : 0);
|
||||
assign fv[0] = coord_v[i] - (filter ? (`FIXED_HALF >> log_height) : 0);
|
||||
assign fu[1] = coord_u[i] + (filter ? (`FIXED_HALF >> log_width) : 0);
|
||||
assign fv[1] = coord_v[i] + (filter ? (`FIXED_HALF >> log_height) : 0);
|
||||
|
||||
VX_tex_wrap #(
|
||||
.CORE_ID (CORE_ID)
|
||||
) tex_wrap_u0 (
|
||||
.wrap_i (wrap_u),
|
||||
.coord_i (fu[0]),
|
||||
.coord_o (u[0][i])
|
||||
);
|
||||
|
||||
VX_tex_wrap #(
|
||||
.CORE_ID (CORE_ID)
|
||||
) tex_wrap_v0 (
|
||||
.wrap_i (wrap_v),
|
||||
.coord_i (fv[0]),
|
||||
.coord_o (v[0][i])
|
||||
);
|
||||
|
||||
VX_tex_wrap #(
|
||||
.CORE_ID (CORE_ID)
|
||||
) tex_wrap_u1 (
|
||||
.wrap_i (wrap_u),
|
||||
.coord_i (fu[1]),
|
||||
.coord_o (u[1][i])
|
||||
);
|
||||
|
||||
VX_tex_wrap #(
|
||||
.CORE_ID (CORE_ID)
|
||||
) tex_wrap_v1 (
|
||||
.wrap_i (wrap_v),
|
||||
.coord_i (fv[1]),
|
||||
.coord_o (v[1][i])
|
||||
);
|
||||
end
|
||||
|
||||
// addresses generation
|
||||
|
||||
wire [`NUM_THREADS-1:0][3:0][31:0] addr;
|
||||
|
||||
for (genvar i = 0; i < `NUM_THREADS; ++i) begin
|
||||
|
||||
wire [`FIXED_FRAC-1:0] x [1:0];
|
||||
wire [`FIXED_FRAC-1:0] y [1:0];
|
||||
|
||||
assign x[0] = u[0][i] >> ((`FIXED_FRAC) - log_width);
|
||||
assign x[1] = u[1][i] >> ((`FIXED_FRAC) - log_width);
|
||||
assign y[0] = v[0][i] >> ((`FIXED_FRAC) - log_height);
|
||||
assign y[1] = v[1][i] >> ((`FIXED_FRAC) - log_height);
|
||||
|
||||
assign addr[i][0] = base_addr + (32'(x[0]) + (32'(y[0]) << log_width)) << log_stride;
|
||||
assign addr[i][1] = base_addr + (32'(x[1]) + (32'(y[0]) << log_width)) << log_stride;
|
||||
assign addr[i][2] = base_addr + (32'(x[0]) + (32'(y[1]) << log_width)) << log_stride;
|
||||
assign addr[i][3] = base_addr + (32'(x[1]) + (32'(y[1]) << log_width)) << log_stride;
|
||||
end
|
||||
|
||||
wire stall_out = mem_req_valid && ~mem_req_ready;
|
||||
|
||||
VX_pipe_register #(
|
||||
.DATAW (1 + `NW_BITS + `NUM_THREADS + 32 + `TEX_FILTER_BITS + `TEX_STRIDE_BITS + REQ_INFO_WIDTH + (`NUM_THREADS * 4 * 32) + (2*`NUM_THREADS * `FIXED_FRAC)),
|
||||
.RESETW (1)
|
||||
) pipe_reg (
|
||||
.clk (clk),
|
||||
.reset (reset),
|
||||
.enable (~stall_out),
|
||||
.data_in ({valid_in, req_wid, req_tmask, req_PC, filter, log_stride, req_info, addr, u[0], v[0]}),
|
||||
.data_out ({mem_req_valid, mem_req_wid, mem_req_tmask, mem_req_PC, mem_req_filter, mem_req_stride, mem_req_info, mem_req_addr, mem_req_u, mem_req_v})
|
||||
);
|
||||
|
||||
assign ready_in = ~stall_out;
|
||||
|
||||
endmodule
|
||||
Reference in New Issue
Block a user