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

Subversion Repositories wf3d

[/] [wf3d/] [trunk/] [rtl/] [core/] [fm_geo_clip.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_geo_clip.v
7
//
8
// Abstract:
9
//   Clipping module. generate clipping code.
10
//
11
// Author:
12 9 specular
//   Kenji Ishimaru (info.info.wf3d@gmail.com)
13 2 specular
//
14
//======================================================================
15
//
16
// Copyright (c) 2015, Kenji Ishimaru
17
// All rights reserved.
18
//
19
// Redistribution and use in source and binary forms, with or without
20
// modification, are permitted provided that the following conditions are met:
21
//
22
//  -Redistributions of source code must retain the above copyright notice,
23
//   this list of conditions and the following disclaimer.
24
//  -Redistributions in binary form must reproduce the above copyright notice,
25
//   this list of conditions and the following disclaimer in the documentation
26
//   and/or other materials provided with the distribution.
27
//
28
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
30
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
32
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
33
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
34
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
35
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
36
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
37
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
38
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
//
40
// Revision History
41
 
42
`include "fm_3d_define.v"
43
module fm_geo_clip (
44
  input         clk_core,
45
  input         rst_x,
46
  output        o_state,
47
  // vertex input
48
  input         i_en,
49
  output o_ack,
50
  input  [21:0] i_vx,
51
  input  [21:0] i_vy,
52
  input  [21:0] i_vz,
53
  input  [21:0] i_vw,
54
  // vertex output
55
  output        o_en,
56
  input         i_ack,
57
  output [21:0] o_vx,
58
  output [21:0] o_vy,
59
  output [21:0] o_vw,
60
  output [5:0]  o_outcode
61
);
62
localparam P_IDLE    = 'd0;  // X_M1_PLANE
63
localparam P_X_P1_PLANE = 'd1;
64
localparam P_Y_M1_PLANE = 'd2;
65
localparam P_Y_P1_PLANE = 'd3;
66
localparam P_Z_M1_PLANE = 'd4;
67
localparam P_Z_P1_PLANE = 'd5;
68
localparam P_WADD0   = 'd6;
69
localparam P_WADD1   = 'd7;
70
localparam P_WADD2   = 'd8;
71
localparam P_DONE    = 'd9;
72
 
73
//////////////////////////////////
74
// regs 
75
//////////////////////////////////
76
reg [3:0]      r_state;
77
 
78
reg [21:0] r_vx;
79
reg [21:0] r_vy;
80
reg [21:0] r_vz;
81
reg [21:0] r_vw;
82
reg [5:0]  r_bc;
83
//////////////////////////////////
84
// wire
85
//////////////////////////////////
86
wire        w_set_vtx;
87
wire [21:0] w_add_in_a;
88
wire [21:0] w_add_in_b;
89
wire [21:0] w_add_out;
90
wire        w_adsb;
91
wire [5:0]  w_set_bc;
92
//////////////////////////////////
93
// assign
94
//////////////////////////////////
95
assign o_state = (r_state == P_IDLE);
96
assign w_set_vtx = (r_state == P_IDLE) & i_en;
97
assign o_en = (r_state == P_DONE);
98
assign o_ack = (r_state == P_IDLE);
99
 
100
assign o_vx = r_vx;
101
assign o_vy = r_vy;
102
assign o_vw = r_vw;
103
assign w_add_in_a = (r_state == P_IDLE) ? i_vw : r_vw;      // W
104
assign w_add_in_b = (r_state == P_X_P1_PLANE) ? r_vx :      // x,y,z
105
                    (r_state == P_Y_M1_PLANE) ? r_vy :
106
                    (r_state == P_Y_P1_PLANE) ? r_vy :
107
                    (r_state == P_Z_M1_PLANE) ? r_vz :
108
                    (r_state == P_Z_P1_PLANE) ? r_vz :
109
                                                i_vx;
110
assign w_adsb = (r_state == P_IDLE) |
111
                (r_state == P_Y_M1_PLANE) |
112
                (r_state == P_Z_M1_PLANE);
113
assign w_set_bc[0] =  (r_state == P_Y_P1_PLANE);
114
assign w_set_bc[1] =  (r_state == P_Z_M1_PLANE);
115
assign w_set_bc[2] =  (r_state == P_Z_P1_PLANE);
116
assign w_set_bc[3] =  (r_state == P_WADD0);
117
assign w_set_bc[4] =  (r_state == P_WADD1);
118
assign w_set_bc[5] =  (r_state == P_WADD2);
119
 
120
// BC < 0 : outside
121
// BC = 0 : on the plane
122
// BC > 0 : inside
123
assign o_outcode = r_bc;
124
 
125
// o_outcode[0] : -X plane
126
// o_outcode[1] : +X plane
127
// o_outcode[2] : -Y plane
128
// o_outcode[3] : +Y plane
129
// o_outcode[4] : -Z plane
130
// o_outcode[5] : +Z plane
131
 
132
//////////////////////////////////
133
// always
134
//////////////////////////////////
135
 
136
always @(posedge clk_core) begin
137
  if (w_set_vtx) begin
138
    r_vx <= i_vx;
139
    r_vy <= i_vy;
140
    r_vz <= i_vz;
141
    r_vw <= i_vw;
142
  end
143
end
144
 
145
`ifdef D3D_SYNC_RESET
146
always @(posedge clk_core) begin
147
`else
148
always @(posedge clk_core or negedge rst_x) begin
149
`endif
150
  if (rst_x == `D3D_RESET_POL) begin
151
    r_bc <= 6'b0;
152
  end else begin
153
    if (w_set_bc[0]) r_bc[0] <= w_add_out[21];
154
    if (w_set_bc[1]) r_bc[1] <= w_add_out[21];
155
    if (w_set_bc[2]) r_bc[2] <= w_add_out[21];
156
    if (w_set_bc[3]) r_bc[3] <= w_add_out[21];
157
    if (w_set_bc[4]) r_bc[4] <= w_add_out[21];
158
    if (w_set_bc[5]) r_bc[5] <= w_add_out[21];
159
  end
160
end
161
 
162
`ifdef D3D_SYNC_RESET
163
always @(posedge clk_core) begin
164
`else
165
always @(posedge clk_core or negedge rst_x) begin
166
`endif
167
  if (rst_x == `D3D_RESET_POL) begin
168
    r_state <= P_IDLE;
169
  end else begin
170
    case (r_state)
171
      P_IDLE: begin   // P_X_M1_PLANE
172
       if (i_en) r_state <= P_X_P1_PLANE;
173
      end
174
      P_X_P1_PLANE: r_state <= P_Y_M1_PLANE;
175
      P_Y_M1_PLANE: r_state <= P_Y_P1_PLANE;
176
      P_Y_P1_PLANE: r_state <= P_Z_M1_PLANE;
177
      P_Z_M1_PLANE: r_state <= P_Z_P1_PLANE;
178
      P_Z_P1_PLANE: r_state <= P_WADD0;
179
      P_WADD0: r_state <= P_WADD1;
180
      P_WADD1: r_state <= P_WADD2;
181
      P_WADD2: r_state <= P_DONE;
182
      P_DONE: begin
183
       if (i_ack) r_state <= P_IDLE;
184
      end
185
    endcase
186
  end
187
end
188
 
189
//////////////////////////////////
190
// module instance
191
//////////////////////////////////
192
fm_3d_fadd u_fadd (
193
  .clk_core(clk_core),
194
  .i_en(1'b1),
195
  .i_a(w_add_in_a),
196
  .i_b(w_add_in_b),
197
  .i_adsb(w_adsb),
198
  .o_c(w_add_out)
199
);
200
 
201
endmodule

powered by: WebSVN 2.1.0

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