-
Notifications
You must be signed in to change notification settings - Fork 7
/
ClockDomain.py
94 lines (70 loc) · 2.66 KB
/
ClockDomain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import cocotb
from cocotb.triggers import Timer, RisingEdge, Event
###############################################################################
# The different kind of reset active level
#
class RESET_ACTIVE_LEVEL:
HIGH = 1
LOW = 0
###############################################################################
# Clock
#
# Usage :
#
# # Create a clock with a reset active high
# clockDomain = ClockDomain(dut.clk, 400, dut.reset, RESET_ACTIVE_LEVEL.HIGH)
# cocobt.fork( clockDomain.start() )
#
class ClockDomain:
##########################################################################
# Constructor
#
# @param clk : Clock generated
# @param halfPeriod : Half period time
# @param reset : Reset generated
# @param resetactiveLevel : Reset active low or high
def __init__(self, clk, halfPeriod, reset=None, resetActiveLevel=RESET_ACTIVE_LEVEL.LOW):
self.halfPeriod = halfPeriod
self.clk = clk
self.reset = reset
self.typeReset = resetActiveLevel
self.event_endReset = Event()
##########################################################################
# Generate the clock signals
@cocotb.coroutine
def start(self):
self.fork_gen = cocotb.fork(self._clkGen())
if self.reset != None :
cocotb.fork(self._waitEndReset())
if self.reset:
self.reset <= self.typeReset
yield Timer(self.halfPeriod * 5)
if self.reset:
self.reset <= int(1 if self.typeReset == RESET_ACTIVE_LEVEL.LOW else 0)
##########################################################################
# Stop all processes
def stop(self):
self.fork_gen.kill()
##########################################################################
# Generate the clk
@cocotb.coroutine
def _clkGen(self):
while True:
self.clk <= 0
yield Timer(self.halfPeriod)
self.clk <= 1
yield Timer(self.halfPeriod)
##########################################################################
# Wait the end of the reset
@cocotb.coroutine
def _waitEndReset(self):
while True:
yield RisingEdge(self.clk)
valueReset = int(1 if self.typeReset == RESET_ACTIVE_LEVEL.LOW else 0)
if int(self.reset) == valueReset:
self.event_endReset.set()
break;
##########################################################################
# Display the frequency of the clock domain
def __str__(self):
return self.__class__.__name__ + "(%3.1fMHz)" % self.frequency