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

Subversion Repositories ac97

[/] [ac97/] [trunk/] [bench/] [verilog/] [ac97_codec_sin.v] - Blame information for rev 21

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 7 rudi
/////////////////////////////////////////////////////////////////////
2
////                                                             ////
3
////  WISHBONE AC 97 Codec                                       ////
4
////  Serial Input Block                                         ////
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 15 rudi
//// Copyright (C) 2000-2002 Rudolf Usselmann                    ////
16
////                         www.asics.ws                        ////
17
////                         rudi@asics.ws                       ////
18 7 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 15 rudi
//  $Id: ac97_codec_sin.v,v 1.2 2002-09-19 06:36:19 rudi Exp $
43 7 rudi
//
44 15 rudi
//  $Date: 2002-09-19 06:36:19 $
45
//  $Revision: 1.2 $
46 7 rudi
//  $Author: rudi $
47
//  $Locker:  $
48
//  $State: Exp $
49
//
50
// Change History:
51
//               $Log: not supported by cvs2svn $
52 15 rudi
//               Revision 1.1  2002/02/13 08:22:32  rudi
53 7 rudi
//
54 15 rudi
//               Added test bench for public release
55 7 rudi
//
56
//
57 15 rudi
//
58
//
59 7 rudi
 
60
`include "ac97_defines.v"
61
 
62
module ac97_codec_sin(clk, rst,
63
 
64
        sync,
65
        slt0, slt1, slt2, slt3, slt4, slt5,
66
        slt6, slt7, slt8, slt9, slt10, slt11, slt12,
67
 
68
        sdata_in
69
        );
70
 
71
input           clk, rst;
72
 
73
// --------------------------------------
74
// Misc Signals
75
input           sync;
76
output  [15:0]   slt0;
77
output  [19:0]   slt1;
78
output  [19:0]   slt2;
79
output  [19:0]   slt3;
80
output  [19:0]   slt4;
81
output  [19:0]   slt5;
82
output  [19:0]   slt6;
83
output  [19:0]   slt7;
84
output  [19:0]   slt8;
85
output  [19:0]   slt9;
86
output  [19:0]   slt10;
87
output  [19:0]   slt11;
88
output  [19:0]   slt12;
89
 
90
// --------------------------------------
91
// AC97 Codec Interface
92
input           sdata_in;
93
 
94
////////////////////////////////////////////////////////////////////
95
//
96
// Local Wires
97
//
98
 
99
reg             sdata_in_r;
100
reg     [19:0]   sr;
101
 
102
reg     [15:0]   slt0;
103
reg     [19:0]   slt1;
104
reg     [19:0]   slt2;
105
reg     [19:0]   slt3;
106
reg     [19:0]   slt4;
107
reg     [19:0]   slt5;
108
reg     [19:0]   slt6;
109
reg     [19:0]   slt7;
110
reg     [19:0]   slt8;
111
reg     [19:0]   slt9;
112
reg     [19:0]   slt10;
113
reg     [19:0]   slt11;
114
reg     [19:0]   slt12;
115
 
116
wire    [12:0]   le;
117
 
118
////////////////////////////////////////////////////////////////////
119
//
120
// Latch Enable logic
121
//
122
 
123
// Sync Edge Detector
124
reg             sync_r;
125
wire            sync_e;
126
 
127
always @(posedge clk)
128
        sync_r <= #1 sync;
129
 
130
assign sync_e = sync & !sync_r;
131
 
132
// Frame Counter
133
reg     [7:0]    cnt;
134
 
135
always @(posedge clk)
136
        if(sync_e)      cnt <= #1 0;
137
        else            cnt <= #1 cnt + 1;
138
 
139
assign le[0] = (cnt == 16);
140
assign le[1] = (cnt == 36);
141
assign le[2] = (cnt == 56);
142
assign le[3] = (cnt == 76);
143
assign le[4] = (cnt == 96);
144
assign le[5] = (cnt == 116);
145
assign le[6] = (cnt == 136);
146
assign le[7] = (cnt == 156);
147
assign le[8] = (cnt == 176);
148
assign le[9] = (cnt == 196);
149
assign le[10] = (cnt == 216);
150
assign le[11] = (cnt == 236);
151
assign le[12] = (cnt == 0);
152
 
153
////////////////////////////////////////////////////////////////////
154
//
155
// Output registers
156
//
157
 
158
always @(posedge clk)
159
        if(le[0])        slt0 <= #1 sr[15:0];
160
 
161
always @(posedge clk)
162
        if(le[1])       slt1 <= #1 sr;
163
 
164
always @(posedge clk)
165
        if(le[2])       slt2 <= #1 sr;
166
 
167
always @(posedge clk)
168
        if(le[3])       slt3 <= #1 sr;
169
 
170
always @(posedge clk)
171
        if(le[4])       slt4 <= #1 sr;
172
 
173
always @(posedge clk)
174
        if(le[5])       slt5 <= #1 sr;
175
 
176
always @(posedge clk)
177
        if(le[6])       slt6 <= #1 sr;
178
 
179
always @(posedge clk)
180
        if(le[7])       slt7 <= #1 sr;
181
 
182
always @(posedge clk)
183
        if(le[8])       slt8 <= #1 sr;
184
 
185
always @(posedge clk)
186
        if(le[9])       slt9 <= #1 sr;
187
 
188
always @(posedge clk)
189
        if(le[10])      slt10 <= #1 sr;
190
 
191
always @(posedge clk)
192
        if(le[11])      slt11 <= #1 sr;
193
 
194
always @(posedge clk)
195
        if(le[12])      slt12 <= #1 sr;
196
 
197
////////////////////////////////////////////////////////////////////
198
//
199
// Serial Shift Register
200
//
201
 
202
always @(negedge clk)
203
        sdata_in_r <= #1 sdata_in;
204
 
205
always @(posedge clk)
206
        sr <= #1 {sr[18:0], sdata_in_r };
207
 
208
endmodule
209
 
210
 

powered by: WebSVN 2.1.0

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