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

Subversion Repositories openarty

[/] [openarty/] [trunk/] [rtl/] [wbureadcw.v] - Diff between revs 3 and 30

Only display areas with differences | Details | Blame | View Log

Rev 3 Rev 30
///////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Filename:    wbureadcw.v
// Filename:    wbureadcw.v
//
//
// Project:     FPGA library
// Project:     FPGA library
//
//
// Purpose:     Read bytes from a serial port (i.e. the jtagser) and translate
// Purpose:     Read bytes from a serial port (i.e. the jtagser) and translate
//              those bytes into a 6-byte codeword.  This codeword may specify
//              those bytes into a 6-byte codeword.  This codeword may specify
//      a number of values to be read, the value to be written, or an address
//      a number of values to be read, the value to be written, or an address
//      to read/write from, or perhaps the end of a write sequence.
//      to read/write from, or perhaps the end of a write sequence.
//
//
//      See the encoding documentation file for more information.
//      See the encoding documentation file for more information.
//
//
//
//
// Creator:     Dan Gisselquist, Ph.D.
// Creator:     Dan Gisselquist, Ph.D.
//              Gisselquist Technology, LLC
//              Gisselquist Technology, LLC
//
//
///////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
// Copyright (C) 2015-2016, Gisselquist Technology, LLC
//
//
// This program is free software (firmware): you can redistribute it and/or
// 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
// 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
// by the Free Software Foundation, either version 3 of the License, or (at
// your option) any later version.
// your option) any later version.
//
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
// for more details.
//
//
// License:     GPL, v3, as defined and found on www.gnu.org,
// License:     GPL, v3, as defined and found on www.gnu.org,
//              http://www.gnu.org/licenses/gpl.html
//              http://www.gnu.org/licenses/gpl.html
//
//
//
//
///////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
//
//
// Goal: single clock pipeline, 50 slices or less
// Goal: single clock pipeline, 50 slices or less
//
//
module  wbureadcw(i_clk, i_stb, i_valid, i_hexbits,
module  wbureadcw(i_clk, i_stb, i_valid, i_hexbits,
                        o_stb, o_codword);
                        o_stb, o_codword);
        input                   i_clk, i_stb, i_valid;
        input                   i_clk, i_stb, i_valid;
        input           [5:0]    i_hexbits;
        input           [5:0]    i_hexbits;
        output  reg             o_stb;
        output  reg             o_stb;
        output  reg     [35:0]   o_codword;
        output  reg     [35:0]   o_codword;
 
 
 
 
        // Timing:
        // Timing:
        //      Clock 0:        i_stb is high, i_valid is low
        //      Clock 0:        i_stb is high, i_valid is low
        //      Clock 1:        shiftreg[5:0] is valid, cw_len is valid
        //      Clock 1:        shiftreg[5:0] is valid, cw_len is valid
        //                              r_len = 1
        //                              r_len = 1
        //      Clock 2:        o_stb = 1, for cw_len = 1;
        //      Clock 2:        o_stb = 1, for cw_len = 1;
        //                              o_codword is 1-byte valid
        //                              o_codword is 1-byte valid
        //                      i_stb may go high again on this clock as well.
        //                      i_stb may go high again on this clock as well.
        //      Clock 3:        o_stb = 0 (cw_len=1),
        //      Clock 3:        o_stb = 0 (cw_len=1),
        //                      cw_len = 0,
        //                      cw_len = 0,
        //                      r_len = 0 (unless i_stb)
        //                      r_len = 0 (unless i_stb)
        //                      Ready for next word
        //                      Ready for next word
 
 
        reg     [2:0]    r_len, cw_len;
        reg     [2:0]    r_len, cw_len;
        reg     [1:0]    lastcw;
        reg     [1:0]    lastcw;
 
 
        wire    w_stb;
        wire    w_stb;
        assign  w_stb = ((r_len == cw_len)&&(cw_len != 0))
        assign  w_stb = ((r_len == cw_len)&&(cw_len != 0))
                        ||((i_stb)&&(~i_valid)&&(lastcw == 2'b01));
                        ||((i_stb)&&(~i_valid)&&(lastcw == 2'b01));
 
 
        // r_len is the length of the codeword as it exists
        // r_len is the length of the codeword as it exists
        // in our register
        // in our register
        initial r_len = 3'h0;
        initial r_len = 3'h0;
        always @(posedge i_clk)
        always @(posedge i_clk)
                if ((i_stb)&&(~i_valid)) // Newline reset
                if ((i_stb)&&(~i_valid)) // Newline reset
                        r_len <= 0;
                        r_len <= 0;
                else if (w_stb) // reset/restart w/o newline
                else if (w_stb) // reset/restart w/o newline
                        r_len <= (i_stb)? 3'h1:3'h0;
                        r_len <= (i_stb)? 3'h1:3'h0;
                else if (i_stb) //in middle of word
                else if (i_stb) //in middle of word
                        r_len <= r_len + 3'h1;
                        r_len <= r_len + 3'h1;
 
 
        reg     [35:0]   shiftreg;
        reg     [35:0]   shiftreg;
        always @(posedge i_clk)
        always @(posedge i_clk)
                if (w_stb)
                if (w_stb)
                        shiftreg[35:30] <= i_hexbits;
                        shiftreg[35:30] <= i_hexbits;
                else if (i_stb) case(r_len)
                else if (i_stb) case(r_len)
                3'b000: shiftreg[35:30] <= i_hexbits;
                3'b000: shiftreg[35:30] <= i_hexbits;
                3'b001: shiftreg[29:24] <= i_hexbits;
                3'b001: shiftreg[29:24] <= i_hexbits;
                3'b010: shiftreg[23:18] <= i_hexbits;
                3'b010: shiftreg[23:18] <= i_hexbits;
                3'b011: shiftreg[17:12] <= i_hexbits;
                3'b011: shiftreg[17:12] <= i_hexbits;
                3'b100: shiftreg[11: 6] <= i_hexbits;
                3'b100: shiftreg[11: 6] <= i_hexbits;
                3'b101: shiftreg[ 5: 0] <= i_hexbits;
                3'b101: shiftreg[ 5: 0] <= i_hexbits;
                default: begin end
                default: begin end
                endcase
                endcase
 
 
        always @(posedge i_clk)
        always @(posedge i_clk)
                if (o_stb)
                if (o_stb)
                        lastcw <= o_codword[35:34];
                        lastcw <= o_codword[35:34];
        always @(posedge i_clk)
        always @(posedge i_clk)
                if ((i_stb)&&(~i_valid)&&(lastcw == 2'b01))
                if ((i_stb)&&(~i_valid)&&(lastcw == 2'b01))
                        o_codword[35:30] <= 6'h2e;
                        o_codword[35:30] <= 6'h2e;
                else
                else
                        o_codword <= shiftreg;
                        o_codword <= shiftreg;
 
 
        // How long do we expect this codeword to be?
        // How long do we expect this codeword to be?
        initial cw_len = 3'b000;
        initial cw_len = 3'b000;
        always @(posedge i_clk)
        always @(posedge i_clk)
                if ((i_stb)&&(~i_valid))
                if ((i_stb)&&(~i_valid))
                        cw_len <= 0;
                        cw_len <= 0;
                else if ((i_stb)&&((cw_len == 0)||(w_stb)))
                else if ((i_stb)&&((cw_len == 0)||(w_stb)))
                begin
                begin
                        if (i_hexbits[5:4] == 2'b11) // 2b vector read
                        if (i_hexbits[5:4] == 2'b11) // 2b vector read
                                cw_len <= 3'h2;
                                cw_len <= 3'h2;
                        else if (i_hexbits[5:4] == 2'b10) // 1b vector read
                        else if (i_hexbits[5:4] == 2'b10) // 1b vector read
                                cw_len <= 3'h1;
                                cw_len <= 3'h1;
                        else if (i_hexbits[5:3] == 3'b010) // 2b compressed wr
                        else if (i_hexbits[5:3] == 3'b010) // 2b compressed wr
                                cw_len <= 3'h2;
                                cw_len <= 3'h2;
                        else if (i_hexbits[5:3] == 3'b001) // 2b compressed addr
                        else if (i_hexbits[5:3] == 3'b001) // 2b compressed addr
                                cw_len <= 3'b010 + { 1'b0, i_hexbits[2:1] };
                                cw_len <= 3'b010 + { 1'b0, i_hexbits[2:1] };
                        else // long write or set address
                        else // long write or set address
                                cw_len <= 3'h6;
                                cw_len <= 3'h6;
                end else if (w_stb)
                end else if (w_stb)
                        cw_len <= 0;
                        cw_len <= 0;
 
 
        always @(posedge i_clk)
        always @(posedge i_clk)
                o_stb <= w_stb;
                o_stb <= w_stb;
 
 
endmodule
endmodule
 
 
 
 

powered by: WebSVN 2.1.0

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