Size: a a a

FPGA technical questions

2019 June 26

A

Aleksandr Kriukov in FPGA technical questions
Do you know something how to estimate complexity and approximate number of LUT's that will be used in one always/if/else construction?
(Number of used signals) / (Number of LUT's inputs)
Is that so?
источник

D

Doka in FPGA technical questions
Aleksandr Kriukov
Do you know something how to estimate complexity and approximate number of LUT's that will be used in one always/if/else construction?
(Number of used signals) / (Number of LUT's inputs)
Is that so?
No way to estimate logic utilization in LUT6/LUT8 era and closed src of HW/synth
источник

D

Doka in FPGA technical questions
Also we should keep in mind some shit like CARRY8, SLR, DSP48, BRAM, URAM, etc..
источник

A

Aleksandr Kriukov in FPGA technical questions
If it is about flex10ke?)
источник
2019 June 27

J

Jesus in FPGA technical questions
Jesus
One question. How would you generate clock jitter in a testbebch?
no one ?
источник

J

Jesus in FPGA technical questions
does anyone here use Spyglass ?
источник

Д

Даня in FPGA technical questions
Jesus
One question. How would you generate clock jitter in a testbebch?
What can be the reason to generate jitter in testbench?
источник

Е

Елисей in FPGA technical questions
Jesus
One question. How would you generate clock jitter in a testbebch?
It seems you need some kind of post-synthesis timing simulation to achieve jitter effects, don't you?
источник

J

Jesus in FPGA technical questions
Елисей
It seems you need some kind of post-synthesis timing simulation to achieve jitter effects, don't you?
No. I'm simulating my asic design with clock jitter at pre-synthesis
источник

DH

Diego H in FPGA technical questions
Елисей
It seems you need some kind of post-synthesis timing simulation to achieve jitter effects, don't you?
He's right. Is more useful to run these kind of test after synthesis and not too useful before synthesis. If you run post synthesis, you work with all physical events such as std cell timings, power analysis, etc. If you have a valid concern to simulate jitter before synthesis, then I believe you could play with inter and intra delays in your hdl model first.
источник
2019 June 28

N

NITHESH in FPGA technical questions
Hello
Has anyone working on AXI interface in Xilinx
источник

N

NITHESH in FPGA technical questions
Please try to share some documents on AXI
источник

A

Aleksandr Kriukov in FPGA technical questions
If I want to make delay must i use reset?
1) a_d <= a;
2) a_d <= rst ? 1'b0 : a;
источник

A

Aleksandr Kriukov in FPGA technical questions
What the best practice tells us?)
источник

R

Ruslan in FPGA technical questions
Aleksandr Kriukov
If I want to make delay must i use reset?
1) a_d <= a;
2) a_d <= rst ? 1'b0 : a;
Is your logic sync or async? What kind of a delay? Don't get your intention
источник

A

Aleksandr Kriukov in FPGA technical questions
Ruslan
Is your logic sync or async? What kind of a delay? Don't get your intention
Sync, delay of managing strobe.
источник

R

Ruslan in FPGA technical questions
Aleksandr Kriukov
Sync, delay of managing strobe.
In most cases simple flip-flop is enough (always @(posedge clk) a_d<= a;) to make a single cycle delay. Adding a reset is design dependant. Take care that reset deasserted synchronously for all parts, that use the same reset signal.
источник

A

Aleksandr Kriukov in FPGA technical questions
Ruslan
In most cases simple flip-flop is enough (always @(posedge clk) a_d<= a;) to make a single cycle delay. Adding a reset is design dependant. Take care that reset deasserted synchronously for all parts, that use the same reset signal.
Thanks.
источник
2019 June 29

J

Jesus in FPGA technical questions
Read Cummings PDF
источник
2019 July 02

J

Jesus in FPGA technical questions
Can anyone provide any documentation for understanding clock jitter? I want to understand how a clock (square wave) is altered by jitter (sine wave)
источник