You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm currently working with vexriscv on the tul pynq-z2 board. Unlike other people, I need to turn down the clock frequency of the core to make side-channel power measurements more feasible. The standard clock frequency is the clock provided by the Ethernet port, which is 125Mhz, is there a way to turn it down to like, 25Mhz?
`class BaseSoC(SoCCore):
def init(self, platform):
sys_clk_freq = int(125e6)
I tried to change the parameter sys_clk_freq and clk_freq in this python class, but it seems that I can't get correct behavior from the uart. Is it correct to change the uart baudrate here? Or I need to configure other things?
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Changing only clk_freq parameter of SoCCore will not work since this is only an indication for SoCCore, the frequency change has to be done on the CRG.
If this is not working, please share some code to ease support.
Hi, I'm currently working with vexriscv on the tul pynq-z2 board. Unlike other people, I need to turn down the clock frequency of the core to make side-channel power measurements more feasible. The standard clock frequency is the clock provided by the Ethernet port, which is 125Mhz, is there a way to turn it down to like, 25Mhz?
`class BaseSoC(SoCCore):
def init(self, platform):
sys_clk_freq = int(125e6)
I tried to change the parameter
sys_clk_freq
andclk_freq
in this python class, but it seems that I can't get correct behavior from the uart. Is it correct to change the uart baudrate here? Or I need to configure other things?Thank you in advance!
The text was updated successfully, but these errors were encountered: