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

Subversion Repositories ac97

[/] [ac97/] [trunk/] [rtl/] [verilog/] [ac97_dma_req.v] - Blame information for rev 20

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 4 rudi
/////////////////////////////////////////////////////////////////////
2
////                                                             ////
3
////  WISHBONE AC 97 Controller                                  ////
4
////  DMA Request Module                                         ////
5
////                                                             ////
6
////                                                             ////
7
////  Author: Rudolf Usselmann                                   ////
8
////          rudi@asics.ws                                      ////
9
////                                                             ////
10
////                                                             ////
11
////  Downloaded from: http://www.opencores.org/cores/ac97_ctrl/ ////
12
////                                                             ////
13
/////////////////////////////////////////////////////////////////////
14
////                                                             ////
15 14 rudi
//// Copyright (C) 2000-2002 Rudolf Usselmann                    ////
16
////                         www.asics.ws                        ////
17
////                         rudi@asics.ws                       ////
18 4 rudi
////                                                             ////
19
//// This source file may be used and distributed without        ////
20
//// restriction provided that this copyright statement is not   ////
21
//// removed from the file and that any derivative work contains ////
22
//// the original copyright notice and the associated disclaimer.////
23
////                                                             ////
24
////     THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY     ////
25
//// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED   ////
26
//// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS   ////
27
//// FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR      ////
28
//// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,         ////
29
//// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES    ////
30
//// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE   ////
31
//// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR        ////
32
//// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF  ////
33
//// LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT  ////
34
//// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT  ////
35
//// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE         ////
36
//// POSSIBILITY OF SUCH DAMAGE.                                 ////
37
////                                                             ////
38
/////////////////////////////////////////////////////////////////////
39
 
40
//  CVS Log
41
//
42 14 rudi
//  $Id: ac97_dma_req.v,v 1.3 2002-09-19 06:30:56 rudi Exp $
43 4 rudi
//
44 14 rudi
//  $Date: 2002-09-19 06:30:56 $
45
//  $Revision: 1.3 $
46 4 rudi
//  $Author: rudi $
47
//  $Locker:  $
48
//  $State: Exp $
49
//
50
// Change History:
51
//               $Log: not supported by cvs2svn $
52 14 rudi
//               Revision 1.2  2002/03/05 04:44:05  rudi
53
//
54
//               - Fixed the order of the thrash hold bits to match the spec.
55
//               - Many minor synthesis cleanup items ...
56
//
57 10 rudi
//               Revision 1.1  2001/08/03 06:54:49  rudi
58
//
59
//
60
//               - Changed to new directory structure
61
//
62 4 rudi
//               Revision 1.1.1.1  2001/05/19 02:29:16  rudi
63
//               Initial Checkin
64
//
65
//
66
//
67
//
68
 
69
`include "ac97_defines.v"
70
 
71
module ac97_dma_req(clk, rst, cfg, status, full_empty, dma_req, dma_ack);
72
input           clk, rst;
73
input   [7:0]    cfg;
74
input   [1:0]    status;
75
input           full_empty;
76
output          dma_req;
77
input           dma_ack;
78
 
79
////////////////////////////////////////////////////////////////////
80
//
81
// Local Wires
82
//
83
reg     dma_req_d;
84
reg     dma_req_r1;
85
reg     dma_req;
86
 
87
////////////////////////////////////////////////////////////////////
88
//
89
// Misc Logic
90
//
91
 
92
always @(cfg or status or full_empty)
93
        case(cfg[5:4])  // synopsys parallel_case full_case
94
                        // REQ = Ch_EN & DMA_EN & Status
95
                        // 1/4 full/empty
96 10 rudi
           2'h2: dma_req_d = cfg[0] & cfg[6] & (full_empty | (status == 2'h0));
97 4 rudi
                        // 1/2 full/empty
98 10 rudi
           2'h1: dma_req_d = cfg[0] & cfg[6] & (full_empty | (status[1] == 1'h0));
99 4 rudi
                        // 3/4 full/empty
100 10 rudi
           2'h0: dma_req_d = cfg[0] & cfg[6] & (full_empty | (status < 2'h3));
101
           2'h3: dma_req_d = cfg[0] & cfg[6] & full_empty;
102 4 rudi
        endcase
103
 
104
always @(posedge clk)
105
        dma_req_r1 <= #1 dma_req_d & !dma_ack;
106
 
107
always @(posedge clk or negedge rst)
108 10 rudi
        if(!rst)                                dma_req <= #1 1'b0;
109 4 rudi
        else
110 10 rudi
        if(dma_req_r1 & dma_req_d & !dma_ack)   dma_req <= #1 1'b1;
111 4 rudi
        else
112 10 rudi
        if(dma_ack)                             dma_req <= #1 1'b0;
113 4 rudi
 
114
endmodule
115
 

powered by: WebSVN 2.1.0

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