forked from enjoy-digital/litex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fin Maaß <[email protected]>
- Loading branch information
1 parent
29bdf68
commit 2148ea9
Showing
4 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# | ||
# This file is part of LiteX. | ||
# | ||
# Copyright (c) 2024 Fin Maaß <[email protected]> | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
from migen import * | ||
|
||
from litex.gen import * | ||
from litex.gen.genlib.misc import WaitTimer | ||
|
||
from litex.soc.interconnect.csr import * | ||
from litex.soc.interconnect.csr_eventmanager import * | ||
|
||
# Watchdog -------------------------------------------------------------------------------------------- | ||
|
||
class Watchdog(LiteXModule): | ||
"""Watchdog | ||
Provides a generic Watchdog core. | ||
""" | ||
|
||
def __init__(self, width=32, crg_rst=None, reset_delay=0, halted=None): | ||
self.enable = Signal() | ||
self.reset_mode = Signal() | ||
self.feed = Signal() | ||
self.halted = Signal() | ||
|
||
self.execute = Signal() | ||
|
||
self._control = CSRStorage(description="Watchdog Control.", fields=[ | ||
CSRField("feed", size=1, offset=0, pulse=True, description="Watchdog feed (Write ``1`` to feed)."), | ||
CSRField("enable", size=1, offset=8, description="Watchdog enable."), | ||
CSRField("reset", size=1, offset=16, description="Reset SoC when watchdog times out."), | ||
CSRField("pause_halted", size=1, offset=24, description="Pause watchdog when CPU is halted.") | ||
]) | ||
|
||
self.comb += [ | ||
self.enable.eq(self._control.fields.enable & ~self.halted), | ||
self.feed.eq(self._control.fields.feed), | ||
self.reset_mode.eq(self._control.fields.reset), | ||
] | ||
|
||
if isinstance(halted, Signal): | ||
self.comb += self.halted.eq(halted & self._control.fields.pause_halted) | ||
|
||
self._cycles = cycles = CSRStorage(description="Watchdog cycles until timeout.", size=width) | ||
self._remaining = remaining = CSRStatus(description="Watchdog cycles remaining until timeout.", size=width) | ||
|
||
self.ev = EventManager() | ||
self.ev.wdt = EventSourceProcess(edge="rising") | ||
self.ev.finalize() | ||
|
||
self.sync += [ | ||
If(self.feed, | ||
remaining.status.eq(cycles.storage) | ||
).Elif(self.enable, | ||
If(remaining.status != 0, | ||
remaining.status.eq(remaining.status - 1) | ||
), | ||
self.execute.eq(remaining.status == 0), | ||
) | ||
] | ||
|
||
self.comb += If(self.enable, self.ev.wdt.trigger.eq(self.execute)) | ||
|
||
if isinstance(crg_rst, Signal): | ||
self.reset_timer = WaitTimer(reset_delay) | ||
self.comb += self.reset_timer.wait.eq(self.enable & self.execute & self.reset_mode) | ||
self.comb += If(self.reset_timer.done, crg_rst.eq(1)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters