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

Subversion Repositories rtf65002

[/] [rtf65002/] [trunk/] [rtl/] [verilog/] [wb_task.v] - Blame information for rev 35

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 35 robfinch
// ============================================================================
2
//        __
3
//   \\__/ o\    (C) 2013  Robert Finch, Stratford
4
//    \  __ /    All rights reserved.
5
//     \/_//     robfinch<remove>@opencores.org
6
//       ||
7
//
8
// This source file is free software: you can redistribute it and/or modify 
9
// it under the terms of the GNU Lesser General Public License as published 
10
// by the Free Software Foundation, either version 3 of the License, or     
11
// (at your option) any later version.                                      
12
//                                                                          
13
// This source file is distributed in the hope that it will be useful,      
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of           
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            
16
// GNU General Public License for more details.                             
17
//                                                                          
18
// You should have received a copy of the GNU General Public License        
19
// along with this program.  If not, see <http://www.gnu.org/licenses/>.    
20
//                                                                          
21
// ============================================================================
22
//
23
task wb_burst;
24
input [5:0] len;
25
input [33:0] adr;
26
begin
27
        bte_o <= 2'b00;
28
        cti_o <= 3'b001;
29
        bl_o <= len;
30
        cyc_o <= 1'b1;
31
        stb_o <= 1'b1;
32
        sel_o <= 4'hF;
33
        adr_o <= adr;
34
end
35
endtask
36
 
37
task wb_read;
38
input [33:0] adr;
39
begin
40
        cyc_o <= 1'b1;
41
        stb_o <= 1'b1;
42
        sel_o <= 4'hF;
43
        adr_o <= adr;
44
end
45
endtask
46
 
47
task wb_write;
48
input byt;
49
input [31:0] dat;
50
begin
51
        cyc_o <= 1'b1;
52
        stb_o <= 1'b1;
53
        we_o <= 1'b1;
54
        if (byt) begin
55
                case(wadr2LSB)
56
                2'd0:   sel_o <= 4'b0001;
57
                2'd1:   sel_o <= 4'b0010;
58
                2'd2:   sel_o <= 4'b0100;
59
                2'd3:   sel_o <= 4'b1000;
60
                endcase
61
        end
62
        else
63
                sel_o <= 4'hf;
64
        adr_o <= {wadr,2'b00};
65
        dat_o <= dat;
66
end
67
endtask
68
 
69
task wb_nack;
70
begin
71
        cti_o <= 3'b000;
72
        bl_o <= 6'd0;
73
        cyc_o <= 1'b0;
74
        stb_o <= 1'b0;
75
        sel_o <= 4'h0;
76
        we_o <= 1'b0;
77
        adr_o <= 34'd0;
78
        dat_o <= 32'd0;
79
end
80
endtask

powered by: WebSVN 2.1.0

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