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

Subversion Repositories pci

[/] [pci/] [tags/] [rel_6/] [rtl/] [verilog/] [pci_target32_clk_en.v] - Blame information for rev 112

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

Line No. Rev Author Line
1 2 mihad
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  File name: pci_target32_clk_en.v                            ////
4
////                                                              ////
5
////  This file is part of the "PCI bridge" project               ////
6
////  http://www.opencores.org/cores/pci/                         ////
7
////                                                              ////
8
////  Author(s):                                                  ////
9
////      - Tadej Markovic, tadej@opencores.org                   ////
10
////                                                              ////
11
////  All additional information is avaliable in the README.txt   ////
12
////  file.                                                       ////
13
////                                                              ////
14
////                                                              ////
15
//////////////////////////////////////////////////////////////////////
16
////                                                              ////
17
//// Copyright (C) 2000 Tadej Markovic, tadej@opencores.org       ////
18
////                                                              ////
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 source file is free software; you can redistribute it   ////
25
//// and/or modify it under the terms of the GNU Lesser General   ////
26
//// Public License as published by the Free Software Foundation; ////
27
//// either version 2.1 of the License, or (at your option) any   ////
28
//// later version.                                               ////
29
////                                                              ////
30
//// This source is distributed in the hope that it will be       ////
31
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
32
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
33
//// PURPOSE.  See the GNU Lesser General Public License for more ////
34
//// details.                                                     ////
35
////                                                              ////
36
//// You should have received a copy of the GNU Lesser General    ////
37
//// Public License along with this source; if not, download it   ////
38
//// from http://www.opencores.org/lgpl.shtml                     ////
39
////                                                              ////
40
//////////////////////////////////////////////////////////////////////
41
//
42
// CVS Revision History
43
//
44
// $Log: not supported by cvs2svn $
45 77 mihad
// Revision 1.3  2002/02/01 15:25:12  mihad
46
// Repaired a few bugs, updated specification, added test bench files and design document
47
//
48 21 mihad
// Revision 1.2  2001/10/05 08:14:30  mihad
49
// Updated all files with inclusion of timescale file for simulation purposes.
50
//
51 6 mihad
// Revision 1.1.1.1  2001/10/02 15:33:47  mihad
52
// New project directory structure
53 2 mihad
//
54 6 mihad
//
55 2 mihad
 
56
// module is used to separate logic which uses criticaly constrained inputs from slower logic.
57
// It is used to synthesize critical timing logic separately with faster cells or without optimization
58
 
59 21 mihad
// synopsys translate_off
60 6 mihad
`include "timescale.v"
61 21 mihad
// synopsys translate_on
62 2 mihad
 
63 77 mihad
module pci_target32_clk_en
64 2 mihad
(
65
    addr_phase,
66
    config_access,
67
    addr_claim_in,
68
    pci_frame_in,
69
    state_wait,
70
    state_transfere,
71
    state_default,
72
    clk_enable
73
);
74
 
75
input           addr_phase ;                    // indicates registered address phase on PCI bus
76
input           config_access ;                 // indicates configuration access
77
input           addr_claim_in ;                 // indicates claimed input PCI address
78
input           pci_frame_in ;                  // critical constrained input signal
79
input                   state_wait ;                    // indicates WAIT state of FSM
80
input                   state_transfere ;               // indicates TRANSFERE state of FSM
81
input                   state_default ;                 // indicates DEFAULT state of FSM
82
 
83
output                  clk_enable ;                    // FSM clock enable output
84
 
85
 
86
// clock enable signal when FSM is in IDLE state
87 21 mihad
wire s_idle_clk_en      =       ((addr_phase && config_access) ||
88 2 mihad
                                                (addr_phase && ~config_access && addr_claim_in)) ;
89
 
90 21 mihad
// clock enable signal when FSM is in WAIT state or in DEFAULT state
91 2 mihad
wire s_wait_clk_en      =       (state_wait || state_default) ;
92
 
93
// clock enable signal when FSM is in TRANSFERE state
94 21 mihad
wire s_tran_clk_en      =       (state_transfere && pci_frame_in) ;
95 2 mihad
 
96
 
97
// Clock enable signal for FSM with preserved hierarchy for minimum delay!
98 21 mihad
assign clk_enable       =       (s_idle_clk_en || s_wait_clk_en || s_tran_clk_en) ;
99 2 mihad
 
100
 
101 77 mihad
endmodule

powered by: WebSVN 2.1.0

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