Skip to content
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

Pre-buffered clock used to generate 'aux domain' reset in clocks_us*.vhd #128

Closed
tswilliams opened this issue Oct 3, 2019 · 1 comment
Closed
Labels
Milestone

Comments

@tswilliams
Copy link
Collaborator

In clocks_us_serdes.vhd and clocks_usp_serdes.vhd, the reset signal for the aux clock domain depends directly on the pre-buffer aux clock signal clk_aux_i rather than the post-buffer aux clock signal clk_aux_b that is used for the output port. E.g:

	process(clk_aux_i)
	begin
		if rising_edge(clk_aux_i) then
			rst_aux <= rst;
		end if;
	end process;

These process statements should be updated to use the post-buffer signal

(Spotted by @dmnewbold )

@tswilliams
Copy link
Collaborator Author

Note: This fix has been included in the v1.6 tag that was created earlier today.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant