URL
https://opencores.org/ocsvn/vga_lcd/vga_lcd/trunk
Subversion Repositories vga_lcd
[/] [vga_lcd/] [trunk/] [rtl/] [verilog/] [vga_wb_master.v] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
///////////////////////////////////////////////////////////////////// //// //// //// WISHBONE rev.B2 compliant enhanced VGA/LCD Core //// //// Wishbone master interface //// //// //// //// Author: Richard Herveille //// //// richard@asics.ws //// //// www.asics.ws //// //// //// //// Downloaded from: http://www.opencores.org/projects/vga_lcd //// //// //// ///////////////////////////////////////////////////////////////////// //// //// //// Copyright (C) 2001, 2002 Richard Herveille //// //// richard@asics.ws //// //// //// //// This source file may be used and distributed without //// //// restriction provided that this copyright statement is not //// //// removed from the file and that any derivative work contains //// //// the original copyright notice and the associated disclaimer.//// //// //// //// THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY //// //// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED //// //// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS //// //// FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR //// //// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, //// //// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES //// //// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE //// //// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR //// //// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF //// //// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT //// //// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT //// //// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE //// //// POSSIBILITY OF SUCH DAMAGE. //// //// //// ///////////////////////////////////////////////////////////////////// // CVS Log // // $Id: vga_wb_master.v,v 1.11 2002-04-20 10:02:39 rherveille Exp $ // // $Date: 2002-04-20 10:02:39 $ // $Revision: 1.11 $ // $Author: rherveille $ // $Locker: $ // $State: Exp $ // // Change History: // $Log: not supported by cvs2svn $ // Revision 1.10 2002/03/28 04:59:25 rherveille // Fixed two small bugs that only showed up when the hardware cursors were disabled // // Revision 1.9 2002/03/04 16:05:52 rherveille // Added hardware cursor support to wishbone master. // Added provision to turn-off 3D cursors. // Fixed some minor bugs. // // Revision 1.8 2002/03/04 11:01:59 rherveille // Added 64x64pixels 4bpp hardware cursor support. // // Revision 1.7 2002/02/16 10:40:00 rherveille // Some minor bug-fixes. // Changed vga_ssel into vga_curproc (cursor processor). // // Revision 1.6 2002/02/07 05:42:10 rherveille // Fixed some bugs discovered by modified testbench // Removed / Changed some strange logic constructions // Started work on hardware cursor support (not finished yet) // Changed top-level name to vga_enh_top.v // `include "timescale.v" `include "vga_defines.v" module vga_wb_master (clk_i, rst_i, nrst_i, cyc_o, stb_o, cab_o, we_o, adr_o, sel_o, ack_i, err_i, dat_i, sint, ctrl_ven, ctrl_cd, ctrl_pc, ctrl_vbl, ctrl_vbsw, ctrl_cbsw, cursor0_en, cursor0_res, cursor0_xy, cursor0_ba, cursor0_ld, cc0_adr_o, cc0_dat_i, cursor1_en, cursor1_res, cursor1_xy, cursor1_ba, cursor1_ld, cc1_adr_o, cc1_dat_i, VBAa, VBAb, Thgate, Tvgate, stat_avmp, stat_acmp, vmem_switch, clut_switch, line_fifo_wreq, line_fifo_d, line_fifo_full, clut_req, clut_ack, clut_adr, clut_q); // inputs & outputs // wishbone signals input clk_i; // master clock input input rst_i; // synchronous active high reset input nrst_i; // asynchronous low reset output cyc_o; // cycle output reg cyc_o; output stb_o; // strobe ouput reg stb_o; output cab_o; // consecutive address burst output reg cab_o; output we_o; // write enable output reg we_o; output [31:0] adr_o; // address output output [ 3:0] sel_o; // byte select outputs (only 32bits accesses are supported) reg [3:0] sel_o; input ack_i; // wishbone cycle acknowledge input err_i; // wishbone cycle error input [31:0] dat_i; // wishbone data in output sint; // non recoverable error, interrupt host // control register settings input ctrl_ven; // video enable bit input [1:0] ctrl_cd; // color depth input ctrl_pc; // 8bpp pseudo color/bw input [1:0] ctrl_vbl; // burst length input ctrl_vbsw; // enable video bank switching input ctrl_cbsw; // enable clut bank switching input cursor0_en; // enable hardware cursor0 input cursor0_res; // cursor0 resolution input [31: 0] cursor0_xy; // (x,y) address hardware cursor0 input [31:11] cursor0_ba; // cursor0 video memory base address input cursor0_ld; // reload cursor0 from video memory output [ 3: 0] cc0_adr_o; // cursor0 color registers address output input [15: 0] cc0_dat_i; // cursor0 color registers data input input cursor1_en; // enable hardware cursor1 input cursor1_res; // cursor1 resolution input [31: 0] cursor1_xy; // (x,y) address hardware cursor1 input [31:11] cursor1_ba; // cursor1 video memory base address input cursor1_ld; // reload cursor1 from video memory output [ 3: 0] cc1_adr_o; // cursor1 color registers address output input [15: 0] cc1_dat_i; // cursor1 color registers data input // video memory addresses input [31: 2] VBAa; // video memory base address A input [31: 2] VBAb; // video memory base address B input [15:0] Thgate; // horizontal visible area (in pixels) input [15:0] Tvgate; // vertical visible area (in horizontal lines) output stat_avmp; // active video memory page output stat_acmp; // active CLUT memory page reg stat_acmp; output vmem_switch; // video memory bank-switch request: memory page switched (when enabled) output clut_switch; // clut memory bank-switch request: clut page switched (when enabled) // to/from line-fifo output line_fifo_wreq; output [23:0] line_fifo_d; input line_fifo_full; // to/from color lookup-table output clut_req; // clut access request input clut_ack; // clut access acknowledge output [ 8:0] clut_adr; // clut access address input [23:0] clut_q; // clut access data in // // variable declarations // reg vmem_acc; // video memory access wire nvmem_req, vmem_ack; // NOT video memory access request // video memory access acknowledge wire ImDone; // Done reading image from video mem reg dImDone; // delayed ImDone wire ImDoneStrb; // image done (strobe signal) reg dImDoneStrb; // delayed ImDoneStrb wire data_fifo_rreq, data_fifo_empty, data_fifo_hfull; wire [31:0] data_fifo_q; wire [23:0] color_proc_q, ssel1_q, rgb_fifo_d; wire color_proc_wreq, ssel1_wreq, rgb_fifo_wreq; wire rgb_fifo_empty, rgb_fifo_full, rgb_fifo_rreq; wire ImDoneFifoQ; reg dImDoneFifoQ, ddImDoneFifoQ; reg sclr; // synchronous clear wire [7:0] clut_offs; // color lookup table offset // // hardware cursors reg [31:11] cursor_ba; // cursor pattern base address reg [ 8: 0] cursor_adr; // cursor pattern offset wire cursor0_we, cursor1_we; // cursor buffers write_request reg ld_cursor0, ld_cursor1; // reload cursor0, cursor1 reg cur_acc; // cursor processors request memory access reg cur_acc_sel; // which cursor to reload wire cur_ack; // cursor processor memory access acknowledge wire cur_done; // done reading cursor pattern // // module body // // generate synchronous clear always@(posedge clk_i) sclr <= #1 ~ctrl_ven; // // WISHBONE block // reg [ 2:0] burst_cnt; // video memory burst access counter wire burst_done; // completed burst access to video mem reg sel_VBA; // select video memory base address reg [31:2] vmemA; // video memory address // wishbone access controller, video memory access request has highest priority (try to keep fifo full) always@(posedge clk_i) if (sclr) vmem_acc <= #1 1'b0; // video memory access request else vmem_acc <= #1 (!nvmem_req | (vmem_acc & !(burst_done & vmem_ack) ) ) & !ImDone & !cur_acc; always@(posedge clk_i) if (sclr) cur_acc <= #1 1'b0; // cursor processor memory access request else cur_acc <= #1 (cur_acc | ImDone & (ld_cursor0 | ld_cursor1)) & !cur_done; assign vmem_ack = ack_i & vmem_acc; assign cur_ack = ack_i & cur_acc; assign sint = err_i; // Non recoverable error, interrupt host system // select active memory page assign vmem_switch = ImDoneStrb; always@(posedge clk_i) if (sclr) sel_VBA <= #1 1'b0; else if (ctrl_vbsw) sel_VBA <= #1 sel_VBA ^ vmem_switch; // select next video memory bank when finished reading current bank (and bank switch enabled) assign stat_avmp = sel_VBA; // assign output // selecting active clut page / cursor data // delay image done same amount as video-memory data vga_fifo #(4, 1) clut_sw_fifo ( .clk(clk_i), .aclr(1'b1), .sclr(sclr), .d(ImDone), .wreq(vmem_ack), .q(ImDoneFifoQ), .rreq(data_fifo_rreq), .empty(), .hfull(), .full() ); // // clut bank switch / cursor data delay2: Account for ColorProcessor DataBuffer delay always@(posedge clk_i) if (sclr) dImDoneFifoQ <= #1 1'b0; else if (data_fifo_rreq) dImDoneFifoQ <= #1 ImDoneFifoQ; always@(posedge clk_i) if (sclr) ddImDoneFifoQ <= #1 1'b0; else ddImDoneFifoQ <= #1 dImDoneFifoQ; assign clut_switch = ddImDoneFifoQ & !dImDoneFifoQ; always@(posedge clk_i) if (sclr) stat_acmp <= #1 1'b0; else if (ctrl_cbsw) stat_acmp <= #1 stat_acmp ^ clut_switch; // select next clut when finished reading clut for current video bank (and bank switch enabled) // // generate clut-address assign clut_adr = {stat_acmp, clut_offs}; // // generate burst counter wire [3:0] burst_cnt_val; assign burst_cnt_val = {1'b0, burst_cnt} -4'h1; assign burst_done = burst_cnt_val[3]; always@(posedge clk_i) if ( (burst_done & vmem_ack) | !vmem_acc) case (ctrl_vbl) // synopsis full_case parallel_case 2'b00: burst_cnt <= #1 3'b000; // burst length 1 2'b01: burst_cnt <= #1 3'b001; // burst length 2 2'b10: burst_cnt <= #1 3'b011; // burst length 4 2'b11: burst_cnt <= #1 3'b111; // burst length 8 endcase else if(vmem_ack) burst_cnt <= #1 burst_cnt_val[2:0]; // // generate image counters // // hgate counter reg [15:0] hgate_cnt; reg [16:0] hgate_cnt_val; reg [1:0] hgate_div_cnt; reg [2:0] hgate_div_val; wire hdone = hgate_cnt_val[16] & vmem_ack; // ???? always@(hgate_cnt or hgate_div_cnt or ctrl_cd) begin hgate_div_val = {1'b0, hgate_div_cnt} - 3'h1; if (ctrl_cd != 2'b10) hgate_cnt_val = {1'b0, hgate_cnt} - 17'h1; else if ( hgate_div_val[2] ) hgate_cnt_val = {1'b0, hgate_cnt} - 17'h1; else hgate_cnt_val = {1'b0, hgate_cnt}; end always@(posedge clk_i) if (sclr) begin case(ctrl_cd) // synopsys full_case parallel_case 2'b00: // 8bpp hgate_cnt <= #1 Thgate >> 2; // 4 pixels per cycle 2'b01: //16bpp hgate_cnt <= #1 Thgate >> 1; // 2 pixels per cycle 2'b10: //24bpp hgate_cnt <= #1 Thgate >> 2; // 4/3 pixels per cycle 2'b11: //32bpp hgate_cnt <= #1 Thgate; // 1 pixel per cycle endcase hgate_div_cnt <= 2'b10; end else if (vmem_ack) if (hdone) begin case(ctrl_cd) // synopsys full_case parallel_case 2'b00: // 8bpp hgate_cnt <= #1 Thgate >> 2; // 4 pixels per cycle 2'b01: //16bpp hgate_cnt <= #1 Thgate >> 1; // 2 pixels per cycle 2'b10: //24bpp hgate_cnt <= #1 Thgate >> 2; // 4/3 pixels per cycle 2'b11: //32bpp hgate_cnt <= #1 Thgate; // 1 pixel per cycle endcase hgate_div_cnt <= #1 2'b10; end else //if (vmem_ack) begin hgate_cnt <= #1 hgate_cnt_val[15:0]; if ( hgate_div_val[2] ) hgate_div_cnt <= #1 2'b10; else hgate_div_cnt <= #1 hgate_div_val[1:0]; end // vgate counter reg [15:0] vgate_cnt; wire vdone = ~|vgate_cnt[15:1] & vgate_cnt[0]; always@(posedge clk_i) if (sclr || ImDoneStrb) vgate_cnt <= #1 Tvgate; else if (hdone) vgate_cnt <= #1 vgate_cnt -16'h1; assign ImDone = hdone & vdone; assign ImDoneStrb = ImDone & !dImDone; always@(posedge clk_i) begin dImDone <= #1 ImDone; dImDoneStrb <= #1 ImDoneStrb; end // // generate addresses // // select video memory base address always@(posedge clk_i) if (dImDoneStrb | sclr) if (!sel_VBA) vmemA <= #1 VBAa; else vmemA <= #1 VBAb; else if (vmem_ack) vmemA <= #1 vmemA +30'h1; //////////////////////////////////// // hardware cursor signals section // always@(posedge clk_i) if (ImDone) cur_acc_sel <= #1 ld_cursor0; // cursor0 has highest priority always@(posedge clk_i) if (sclr) begin ld_cursor0 <= #1 1'b0; ld_cursor1 <= #1 1'b0; end else begin ld_cursor0 <= #1 cursor0_ld | (ld_cursor0 & !(cur_done & cur_acc_sel)); ld_cursor1 <= #1 cursor1_ld | (ld_cursor1 & !(cur_done & !cur_acc_sel)); end // select cursor base address always@(posedge clk_i) if (!cur_acc) cursor_ba <= #1 ld_cursor0 ? cursor0_ba : cursor1_ba; // generate pattern offset wire [9:0] next_cursor_adr = {1'b0, cursor_adr} + 10'h1; assign cur_done = next_cursor_adr[9]; always@(posedge clk_i) if (!cur_acc) cursor_adr <= #1 9'h0; else if (cur_ack) cursor_adr <= #1 next_cursor_adr; // generate cursor buffers write enable signals assign cursor1_we = cur_ack & !cur_acc_sel; assign cursor0_we = cur_ack & cur_acc_sel; ////////////////////////////// // generate wishbone signals // assign adr_o = cur_acc ? {cursor_ba, cursor_adr, 2'b00} : {vmemA, 2'b00}; wire wb_cycle = vmem_acc & !(burst_done & vmem_ack & nvmem_req) & !ImDone || cur_acc & !cur_done; always@(posedge clk_i or negedge nrst_i) if (!nrst_i) begin cyc_o <= #1 1'b0; stb_o <= #1 1'b0; sel_o <= #1 4'b1111; cab_o <= #1 1'b0; we_o <= #1 1'b0; end else if (rst_i) begin cyc_o <= #1 1'b0; stb_o <= #1 1'b0; sel_o <= #1 4'b1111; cab_o <= #1 1'b0; we_o <= #1 1'b0; end else begin cyc_o <= #1 wb_cycle; stb_o <= #1 wb_cycle; sel_o <= #1 4'b1111; // only 32bit accesses are supported cab_o <= #1 wb_cycle; we_o <= #1 1'b0; // read only end // // video-data buffer (temporary store data read from video memory) vga_fifo #(4, 32) data_fifo ( .clk(clk_i), .aclr(1'b1), .sclr(sclr), .d(dat_i), .wreq(vmem_ack), .q(data_fifo_q), .rreq(data_fifo_rreq), .empty(data_fifo_empty), .hfull(data_fifo_hfull), .full() ); assign nvmem_req = data_fifo_hfull; // // hookup color processor vga_colproc color_proc ( .clk(clk_i), .srst(sclr), .vdat_buffer_di(data_fifo_q), .ColorDepth(ctrl_cd), .PseudoColor(ctrl_pc), .vdat_buffer_empty(data_fifo_empty), .vdat_buffer_rreq(data_fifo_rreq), .rgb_fifo_full(rgb_fifo_full), .rgb_fifo_wreq(color_proc_wreq), .r(color_proc_q[23:16]), .g(color_proc_q[15:8]), .b(color_proc_q[7:0]), .clut_req(clut_req), .clut_ack(clut_ack), .clut_offs(clut_offs), .clut_q(clut_q) ); // // hookup data-source-selector && hardware cursor module `ifdef VGA_HWC1 // generate Hardware Cursor1 (if enabled) wire cursor1_ld_strb; reg scursor1_en; reg scursor1_res; reg [31:0] scursor1_xy; assign cursor1_ld_strb = ddImDoneFifoQ & !dImDoneFifoQ; always@(posedge clk_i) if (sclr) scursor1_en <= #1 1'b0; else if (cursor1_ld_strb) scursor1_en <= #1 cursor1_en; always@(posedge clk_i) if (cursor1_ld_strb) scursor1_xy <= #1 cursor1_xy; always@(posedge clk_i) if (cursor1_ld_strb) scursor1_res <= #1 cursor1_res; vga_curproc hw_cursor1 ( .clk(clk_i), .rst_i(sclr), .Thgate(Thgate), .Tvgate(Tvgate), .idat(color_proc_q), .idat_wreq(color_proc_wreq), .cursor_xy(scursor1_xy), .cursor_res(scursor1_res), .cursor_en(scursor1_en), .cursor_wadr(cursor_adr), .cursor_we(cursor1_we), .cursor_wdat(dat_i), .cc_adr_o(cc1_adr_o), .cc_dat_i(cc1_dat_i), .rgb_fifo_wreq(ssel1_wreq), .rgb(ssel1_q) ); `ifdef VGA_HWC0 // generate additional signals for Hardware Cursor0 (if enabled) reg sddImDoneFifoQ, sdImDoneFifoQ; always@(posedge clk_i) if (ssel1_wreq) begin sdImDoneFifoQ <= #1 dImDoneFifoQ; sddImDoneFifoQ <= #1 sdImDoneFifoQ; end `endif `else // Hardware Cursor1 disabled, generate pass-through signals assign ssel1_wreq = color_proc_wreq; assign ssel1_q = color_proc_q; assign cc1_adr_o = 4'h0; `ifdef VGA_HWC0 // generate additional signals for Hardware Cursor0 (if enabled) wire sddImDoneFifoQ, sdImDoneFifoQ; assign sdImDoneFifoQ = dImDoneFifoQ; assign sddImDoneFifoQ = ddImDoneFifoQ; `endif `endif `ifdef VGA_HWC0 // generate Hardware Cursor0 (if enabled) wire cursor0_ld_strb; reg scursor0_en; reg scursor0_res; reg [31:0] scursor0_xy; assign cursor0_ld_strb = sddImDoneFifoQ & !sdImDoneFifoQ; always@(posedge clk_i) if (sclr) scursor0_en <= #1 1'b0; else if (cursor0_ld_strb) scursor0_en <= #1 cursor0_en; always@(posedge clk_i) if (cursor0_ld_strb) scursor0_xy <= #1 cursor0_xy; always@(posedge clk_i) if (cursor0_ld_strb) scursor0_res <= #1 cursor0_res; vga_curproc hw_cursor0 ( .clk(clk_i), .rst_i(sclr), .Thgate(Thgate), .Tvgate(Tvgate), .idat(ssel1_q), .idat_wreq(ssel1_wreq), .cursor_xy(scursor0_xy), .cursor_en(scursor0_en), .cursor_res(scursor0_res), .cursor_wadr(cursor_adr), .cursor_we(cursor0_we), .cursor_wdat(dat_i), .cc_adr_o(cc0_adr_o), .cc_dat_i(cc0_dat_i), .rgb_fifo_wreq(rgb_fifo_wreq), .rgb(rgb_fifo_d) ); `else // Hardware Cursor0 disabled, generate pass-through signals assign rgb_fifo_wreq = ssel1_wreq; assign rgb_fifo_d = ssel1_q; assign cc0_adr_o = 4'h0; `endif // // hookup RGB buffer (temporary station between WISHBONE-clock-domain // and pixel-clock-domain) // The cursor_processor pipelines introduce a delay between the color // processor's rgb_fifo_wreq and the rgb_fifo_full signals. To compensate // for this we double the rgb_fifo. vga_fifo #(4, 24) rgb_fifo ( .clk(clk_i), .aclr(1'b1), .sclr(sclr), .d(rgb_fifo_d), .wreq(rgb_fifo_wreq), .q(line_fifo_d), .rreq(rgb_fifo_rreq), .empty(rgb_fifo_empty), .hfull(rgb_fifo_full), .full() ); assign rgb_fifo_rreq = !line_fifo_full && !rgb_fifo_empty; assign line_fifo_wreq = rgb_fifo_rreq; endmodule
Go to most recent revision | Compare with Previous | Blame | View Log