vendor.xilinx_{spartan_3_6,7series}: reconsider default reset logic.
On Xilinx devices, flip-flops are reset to their initial state with an internal global reset network, but this network is deasserted asynchronously to user clocks. Use BUFGCE and STARTUP to hold default clock low until after GWE is deasserted.
This commit is contained in:
parent
3d7214cb70
commit
434b686d5e
3 changed files with 53 additions and 12 deletions
|
|
@ -74,6 +74,10 @@ class Platform(ResourceManager, metaclass=ABCMeta):
|
|||
|
||||
@abstractmethod
|
||||
def create_missing_domain(self, name):
|
||||
# Simple instantiation of a clock domain driven directly by the board clock and reset.
|
||||
# Because of device-specific considerations, this implementation generally does NOT provide
|
||||
# reliable power-on/post-configuration reset, and the logic should be replaced with family
|
||||
# specific logic based on vendor recommendations.
|
||||
if name == "sync" and self.default_clk is not None:
|
||||
clk_i = self.request(self.default_clk).i
|
||||
if self.default_rst is not None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue