Forum Discussion
5 Replies
- Altera_Forum
Honored Contributor
Global reset is an option, that acts similar to power-on-reset, if enabled. Most HDL designs have a user defined reset in the code, it can be triggered from any pin of your choice. Unused pins should have their weak-pullup resistor enabled to avoid increased device supplied current possibly caused by floating inputs. It's a global device option, that can be set for all unused pins.
- Altera_Forum
Honored Contributor
--- Quote Start --- Global reset is an option, that acts similar to power-on-reset, if enabled. Most HDL designs have a user defined reset in the code, it can be triggered from any pin of your choice. Unused pins should have their weak-pullup resistor enabled to avoid increased device supplied current possibly caused by floating inputs. It's a global device option, that can be set for all unused pins. --- Quote End --- i am sorry, maybe I did not give a precise description of the problem,these are two user defined reset pins in my design,which will reset all registers when they becomes low,and the global pin can give the smallest delay,so i want to use global pins to achieve my requirement,so may i use the global oe pin as the global reset pin? thanks very much! - Altera_Forum
Honored Contributor
Doesn't the global oe pin just tristate all the user I/O? Mainly used for ICT?
I would think it would be better to put this signal on one of the dedicated global inputs. - Altera_Forum
Honored Contributor
Unlike global reset, global OE isn't said to have dedicated routing resources. Thus a GCLK input would be the preferred source to minimize routing effort with your second reset input. I don't expect timing issues with a global reset, normally. If unrelated to the system clock, it should be synchronized for safe reset behaviour anyway (a feature, that can't be achieved with the dedicated global reset input, by the way).
- Altera_Forum
Honored Contributor
--- Quote Start --- Unlike global reset, global OE isn't said to have dedicated routing resources. Thus a GCLK input would be the preferred source to minimize routing effort with your second reset input. I don't expect timing issues with a global reset, normally. If unrelated to the system clock, it should be synchronized for safe reset behaviour anyway (a feature, that can't be achieved with the dedicated global reset input, by the way). --- Quote End --- nice job,thank you very much!