-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathwbvgaframe.v
173 lines (163 loc) · 4.6 KB
/
wbvgaframe.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
////////////////////////////////////////////////////////////////////////////////
//
// Filename: rtl/wbvgaframe.v
// {{{
// Project: vgasim, a Verilator based VGA simulator demonstration
//
// Purpose:
//
// Creator: Dan Gisselquist, Ph.D.
// Gisselquist Technology, LLC
//
////////////////////////////////////////////////////////////////////////////////
// }}}
// Copyright (C) 2017-2024, Gisselquist Technology, LLC
// {{{
// This program is free software (firmware): you can redistribute it and/or
// modify it under the terms of the GNU General Public License as published
// by the Free Software Foundation, either version 3 of the License, or (at
// your option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program. (It's in the $(ROOT)/doc directory. Run make with no
// target there if the PDF file isn't present.) If not, see
// <http://www.gnu.org/licenses/> for a copy.
// }}}
// License: GPL, v3, as defined and found on www.gnu.org,
// {{{
// http://www.gnu.org/licenses/gpl.html
//
////////////////////////////////////////////////////////////////////////////////
//
`default_nettype none
// }}}
module wbvgaframe #(
// {{{
parameter [0:0] WB_SOURCE = 1'b1,
parameter ADDRESS_WIDTH=24,
BUS_DATA_WIDTH=32,
parameter BITS_PER_COLOR = 8,
parameter FW=13, LW=12,
//
localparam AW=ADDRESS_WIDTH,
localparam BPC = BITS_PER_COLOR,
DW=BUS_DATA_WIDTH,
LGF=FW
// }}}
) (
// {{{
input wire i_clk, i_pixclk,
// Command and control
input wire i_reset, i_en, i_test,
//
input wire [(AW-1):0] i_base_addr,
input wire [FW:0] i_line_words,
// Image sync info
// {{{
input wire [(FW-1):0] i_hm_width, i_hm_porch, i_hm_synch,
i_hm_raw,
input wire [(LW-1):0] i_vm_height, i_vm_porch, i_vm_synch,
i_vm_raw,
// }}}
// Wishbone interface
// {{{
output wire o_wb_cyc, o_wb_stb,
output wire [(AW-1):0] o_wb_addr,
input wire i_wb_stall,
input wire i_wb_ack,
input wire [(DW-1):0] i_wb_data,
input wire i_wb_err,
// }}}
// VGA output
// {{{
output wire o_vga_vsync, o_vga_hsync,
output wire [BPC-1:0] o_vga_red, o_vga_grn, o_vga_blu,
// }}}
// Offer frame interrupts to ... whoever's interested.
output wire o_interrupt
// }}}
);
// Local declarations
// {{{
wire vga_newline, vga_newframe, vga_rd;
wire [(3*BPC-1):0] pixel;
// }}}
generate if (WB_SOURCE)
begin : VIDEO_MEM
// Source the image from a frame buffer available over Wishbone
// {{{
wire [31:0] fifo_word;
wire fifo_err, fifo_valid;
imgfifo #(
// {{{
.ADDRESS_WIDTH(AW),
.BUSW(DW), .LGFLEN(LGF), .LW(LW)
// }}}
) readmem(
// {{{
i_clk, i_pixclk,
(i_reset)||(!i_en)||(i_test),(vga_newframe),
i_base_addr, i_line_words[LGF:0], i_vm_height[LW-1:0],
o_wb_cyc, o_wb_stb, o_wb_addr,
i_wb_stall, i_wb_ack, i_wb_data, i_wb_err,
vga_rd, fifo_valid, fifo_word, fifo_err
// }}}
);
assign pixel = fifo_word[(3*BPC-1):0];
// Keep Verilator happy
// {{{
// verilator lint_off UNUSED
wire unused_wbfifo;
assign unused_wbfifo = &{ 1'b0, fifo_word[(DW-1):(3*BPC)],
vga_newline, fifo_err, fifo_valid };
// verilator lint_on UNUSED
// }}}
// }}}
end else begin : NO_VIDEO_MEM // All pixels will be sourced as black
// {{{
assign pixel = 0;
assign o_wb_cyc = 1'b0;
assign o_wb_stb = 1'b0;
assign o_wb_addr = 0;
// Keep Verilator happy
// {{{
// Verilator lint_off UNUSED
wire wb_unused;
assign wb_unused = &{ 1'b0, i_clk, i_en,
i_wb_ack, i_wb_stall, i_wb_data,
i_base_addr, i_line_words,
vga_rd, vga_newline };
// Verilator lint_on UNUSED
// }}}
// }}}
end endgenerate
// Actually control the VGA hardware, produce the sync's, and output
// the color data given
llvga #(
// {{{
.BITS_PER_COLOR(BPC),.HW(FW),.VW(LW)
// }}}
) vgahw(
// {{{
i_pixclk, (i_reset), (!WB_SOURCE)||(i_test),
pixel[(3*BPC-1):0],
i_hm_width, i_hm_porch, i_hm_synch, i_hm_raw,
i_vm_height, i_vm_porch, i_vm_synch, i_vm_raw,
vga_rd, vga_newline, vga_newframe,
o_vga_vsync, o_vga_hsync,
o_vga_red, o_vga_grn, o_vga_blu
// }}}
);
transferstb newframe(i_pixclk, i_clk, vga_newframe, o_interrupt);
// assign o_interrupt = vga_newframe;
// Make verilator happy
// verilator lint_off UNUSED
// wire [33:0] unused;
// assign unused = { read_err, imdec_err, pal_val };
// verilator lint_on UNUSED
endmodule