Forum Discussion
I design a board with max10,and do not design the reset input for max10, how can I generate a internal reset ?
Can I use the locked output of pll to generate a reset signal for my design? And what is the best reset mode for max10 ?using a input reset or generating a reset signal just in FPGA ?
For my board,there is no input signal, how can I generate a internal reset ,can you give me a example for that ,or where I can find the reference?
13 Replies
- ak6dn
Regular Contributor
Very simple to do. Init a register to '0' and have it drive the RESET~ signal (ie, an active low reset).
Then have a counter that starts at '0' and counts up for some number of bits (width depends on clock period and desired reset pulse width).
When the counter overflows (or hits some predetermined value) set the register driving RESET~ to a '1', which deasserts reset.
I have used this technique on various parts to, for example, generate a fixed 500ms reset pulse on FPGA powerup/configuration.
No external reset input signal required.
I used the onboard PLL to generate my system clock from the external 50MHz crystal oscillator input. I also used the 50MHz clock input to drive the reset generation logic (so it operates independent of the PLL).
- SreekumarR_G_Intel
Frequent Contributor
Can I use the locked output of pll to generate a reset signal for my design?
Yes , you can use it , but you have to be careful since when clock fails or skew or jitter or any issue related to the clock; PLL will lose it lock and it will reset your system.
what is the best reset mode for max10 ?
I am not following you , what you really menat by reset mode of max 10 ?
For my board,there is no input signal, how can I generate a internal reset ,can you give me a example for that ,or where I can find the reference?
Can you refer to your another post , I replied to that
https://forums.intel.com/s/question/0D50P00004YEdCR/i-do-not-have-the-input-reset-signal-from-the-outside-of-the-altera-fpgaand-want-to-generate-reset-internallycan-i-do-like-below-
Thank you,
Regards,
Sree