1 |
12 |
dinesha |
//////////////////////////////////////////////////////////////////////
|
2 |
|
|
//// ////
|
3 |
|
|
//// Tubo 8051 cores MAC Interface Module ////
|
4 |
|
|
//// ////
|
5 |
|
|
//// This file is part of the Turbo 8051 cores project ////
|
6 |
|
|
//// http://www.opencores.org/cores/turbo8051/ ////
|
7 |
|
|
//// ////
|
8 |
|
|
//// Description ////
|
9 |
|
|
//// Turbo 8051 definitions. ////
|
10 |
|
|
//// ////
|
11 |
|
|
//// To Do: ////
|
12 |
|
|
//// nothing ////
|
13 |
|
|
//// ////
|
14 |
|
|
//// Author(s): ////
|
15 |
|
|
//// - Dinesh Annayya, dinesha@opencores.org ////
|
16 |
|
|
//// ////
|
17 |
76 |
dinesha |
//// Revision : Mar 2, 2011 ////
|
18 |
|
|
//// ////
|
19 |
12 |
dinesha |
//////////////////////////////////////////////////////////////////////
|
20 |
|
|
//// ////
|
21 |
|
|
//// Copyright (C) 2000 Authors and OPENCORES.ORG ////
|
22 |
|
|
//// ////
|
23 |
|
|
//// This source file may be used and distributed without ////
|
24 |
|
|
//// restriction provided that this copyright statement is not ////
|
25 |
|
|
//// removed from the file and that any derivative work contains ////
|
26 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
27 |
|
|
//// ////
|
28 |
|
|
//// This source file is free software; you can redistribute it ////
|
29 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
30 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
31 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
32 |
|
|
//// later version. ////
|
33 |
|
|
//// ////
|
34 |
|
|
//// This source is distributed in the hope that it will be ////
|
35 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
36 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
37 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
38 |
|
|
//// details. ////
|
39 |
|
|
//// ////
|
40 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
41 |
|
|
//// Public License along with this source; if not, download it ////
|
42 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
43 |
|
|
//// ////
|
44 |
|
|
//////////////////////////////////////////////////////////////////////
|
45 |
|
|
/***************************************************************
|
46 |
|
|
Description:
|
47 |
|
|
Synchronizes the pulse from one clock to another
|
48 |
|
|
* clock domain
|
49 |
|
|
***********************************************************************/
|
50 |
|
|
module s2f_sync (
|
51 |
|
|
//outputs
|
52 |
|
|
sync_out_pulse,
|
53 |
|
|
//inputs
|
54 |
|
|
in_pulse,
|
55 |
|
|
dest_clk,
|
56 |
|
|
reset_n);
|
57 |
|
|
|
58 |
|
|
output sync_out_pulse; //output synchronised to slow clock
|
59 |
|
|
input in_pulse; //input based on fast clock, pulse
|
60 |
|
|
input dest_clk; //slow clock
|
61 |
|
|
input reset_n;
|
62 |
|
|
|
63 |
|
|
reg sync1_out, sync2_out, sync3_out;
|
64 |
|
|
|
65 |
|
|
always @(posedge dest_clk or negedge reset_n)
|
66 |
|
|
begin
|
67 |
|
|
if (!reset_n)
|
68 |
|
|
begin
|
69 |
|
|
sync1_out <= 0;
|
70 |
|
|
sync2_out <= 0;
|
71 |
|
|
sync3_out <= 0;
|
72 |
|
|
end // if (!reset_n)
|
73 |
|
|
else
|
74 |
|
|
begin
|
75 |
|
|
sync1_out <= in_pulse;
|
76 |
|
|
sync2_out <= sync1_out;
|
77 |
|
|
sync3_out <= sync2_out;
|
78 |
|
|
end // else: !if(reset_n)
|
79 |
|
|
end // always @ (posedge dest_clk or negedge reset_n)
|
80 |
|
|
|
81 |
|
|
assign sync_out_pulse = sync2_out && !sync3_out;
|
82 |
|
|
endmodule // s2f_sync
|
83 |
|
|
|
84 |
|
|
|
85 |
|
|
|
86 |
|
|
|
87 |
|
|
|