-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance hard reset signal implementation #148
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -330,6 +330,7 @@ template hard_reset { | |
foreach obj in (this._each_hard_reset) | ||
obj.hard_reset(); | ||
} | ||
shared method hard_reset_deassert() default {} | ||
} | ||
|
||
template _init_val_hard_reset is (init_val, hard_reset) { | ||
|
@@ -342,11 +343,15 @@ template _init_val_hard_reset is (init_val, hard_reset) { | |
// Instantiate this on top level to support hard reset. | ||
template hreset is hard_reset { | ||
port HRESET { | ||
saved bool reset_asserted; | ||
implement signal { | ||
method signal_raise() default { | ||
reset_asserted = true; | ||
dev.hard_reset(); | ||
} | ||
method signal_lower() default { | ||
dev.hard_reset_deassert(); | ||
reset_asserted = false; | ||
} | ||
Comment on lines
344
to
355
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would make more sense to start with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Both templates are define default methods. Using spec violation is also doubtful. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think what Erik means is this:
Using spec_viol is not doubtful in my opinion. The API docs for signal_interface_t specifically states:
I tried adding this template in a PR some time ago. Perhaps we could try again with careful steps not to break SSM builds. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it possible to call default() from the default method? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would prefer to copy a logic from signal port template
|
||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is redundant in a sense; you can override signal_lower and call
default
instead.(One could argue that it would be better with a simulator-agnostic method to override, but that sort of functionality would rather belong to the
signal_port
template.)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be better to hide the implementation and expose only the high level methods as hard_reset()
is hreset;
port HRESET {
saved bool reset_asserted;
implement signal {
method signal_lower() {
hard_reset_deassert();
default();
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm with Erik on this. What's the added value of overriding
hard_reset_deassert
instead of overridingsignal_lower
?If we add a
hard_reset_deassert
method like this we'd need to consider some more questions:For example
hard_reset_deassert
be called after adev.hard_reset()
?reset_asserted
be true during a call todev.hard_reset()
?hard_reset_assert()
method?If we instead let the user override
signal_lower
in the HRESET port it's very clear what behavior is being overridden, and what can be expected.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agreed