OpenCores
URL https://opencores.org/ocsvn/wf3d/wf3d/trunk

Subversion Repositories wf3d

[/] [wf3d/] [trunk/] [rtl/] [core/] [fm_ras_mem.v] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 specular
//=======================================================================
2
// Project Monophony
3
//   Wire-Frame 3D Graphics Accelerator IP Core
4
//
5
// File:
6
//   fm_ras_mem.v
7
//
8
// Abstract:
9
//   Write a pixel to mein memory
10
//   generate linear address from x, y position
11
//
12
// Author:
13 9 specular
//   Kenji Ishimaru (info.info.wf3d@gmail.com)
14 2 specular
//
15
//======================================================================
16
//
17
// Copyright (c) 2015, Kenji Ishimaru
18
// All rights reserved.
19
//
20
// Redistribution and use in source and binary forms, with or without
21
// modification, are permitted provided that the following conditions are met:
22
//
23
//  -Redistributions of source code must retain the above copyright notice,
24
//   this list of conditions and the following disclaimer.
25
//  -Redistributions in binary form must reproduce the above copyright notice,
26
//   this list of conditions and the following disclaimer in the documentation
27
//   and/or other materials provided with the distribution.
28
//
29
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
31
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
33
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
34
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
35
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
36
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
37
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
38
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
39
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40
//
41
// Revision History
42
 
43
`include "fm_3d_define.v"
44
module fm_ras_mem (
45
  // system
46
  input         clk_core,
47
  input         rst_x,
48
  // Register Configuration
49
  input [15:0]  i_scr_w,
50
  input [15:0]  i_scr_h_m1,
51
  input [29:0]  i_pixel_top_address,
52
  input [7:0]   i_pixel_color,
53
  input         i_y_flip,
54
  // Pixel In
55
  input         i_en,
56
  output        o_ack,
57
  input  [`D3D_FTOI_WIDTH-1:0] i_x,
58
  input  [`D3D_FTOI_WIDTH-1:0] i_y,
59
  // Pixel Write Memory I/F (Write Only)
60
  output        o_req_m,
61
  output [31:0] o_adrs_m,
62
  input         i_ack_m,
63
  output [3:0]  o_be_m,
64
  output [31:0] o_dbw_m
65
);
66
localparam P_IDLE = 'd0;
67
localparam P_REQ = 'd1;
68
 
69
//////////////////////////////////
70
// reg
71
//////////////////////////////////
72
reg         r_state;
73
reg [1:0]   r_x;
74
reg [`D3D_FTOI_WIDTH+`D3D_FTOI_WIDTH-2:0] r_adrs_m;  // word address
75
//////////////////////////////////
76
// wire
77
//////////////////////////////////
78
wire        w_set_adrs;
79
wire [`D3D_FTOI_WIDTH+`D3D_FTOI_WIDTH-2:0] w_adrs;
80
wire [`D3D_FTOI_WIDTH-1:0]  w_y;
81
wire [29:0] w_top_adrs;
82
//////////////////////////////////
83
// assign
84
//////////////////////////////////
85
assign o_req_m = (r_state == P_REQ);
86
assign o_be_m = (r_x[1:0] == 2'b00) ? 4'h1 :
87
                (r_x[1:0] == 2'b01) ? 4'h2 :
88
                (r_x[1:0] == 2'b10) ? 4'h4 : 4'h8;
89
assign o_dbw_m = {4{i_pixel_color}};
90
// Byte address
91
//assign w_y = (i_y_flip) ? 'd479 - i_y : i_y;
92
assign w_y = (i_y_flip) ? i_scr_h_m1 - i_y : i_y;
93
 
94
// i_scr_w/4 : 1 pixel = 8bit
95
assign w_adrs = i_scr_w[15:2]*w_y + i_x[`D3D_FTOI_WIDTH-1:2];  // exp: 640x480 = 307200(4b000h)
96
assign w_set_adrs = (r_state == P_IDLE) |
97
                    ((r_state == P_REQ)&i_ack_m&i_en);
98
assign w_top_adrs = i_pixel_top_address + r_adrs_m;
99
assign o_adrs_m = {w_top_adrs,2'h0};
100
assign o_ack = (r_state == P_REQ) & i_ack_m;
101
 
102
//////////////////////////////////
103
// always
104
//////////////////////////////////
105
 
106
always @(posedge clk_core) begin
107
  if (w_set_adrs) begin
108
    r_x <= i_x[1:0];
109
    r_adrs_m <= w_adrs;
110
  end
111
end
112
 
113
`ifdef D3D_SYNC_RESET
114
always @(posedge clk_core) begin
115
`else
116
always @(posedge clk_core or negedge rst_x) begin
117
`endif
118
  if (rst_x == `D3D_RESET_POL) begin
119
    r_state <= P_IDLE;
120
  end else begin
121
    case (r_state)
122
      P_IDLE: begin
123
        if (i_en) r_state <= P_REQ;
124
      end
125
      P_REQ: begin
126
        if (i_ack_m) begin
127
           if (i_en) r_state <= P_REQ;
128
           else r_state <= P_IDLE;
129
        end
130
      end
131
    endcase
132
  end
133
end
134
 
135
`ifdef RTL_DEBUG
136
  always @(posedge clk_core) begin
137
     if (i_en & o_ack) $display("write pixel at x,y = %d %d, color = %h",i_x,i_y,i_pixel_color);
138
  end
139
 
140
`endif
141
 
142
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.