JeffV
JeffV

Reputation: 54487

Best way to approach FPGA Device Requirements

When designing FPGA systems how can I estimate roughly the number of logic blocks a given task would require?

Anyone have a rough order of magnitude on what I should expect for these comon devices?:

I've seen www.opencores.org, however, they are not giving a number of gates magnitude for each project.

Upvotes: 3

Views: 617

Answers (4)

OutputLogic
OutputLogic

Reputation: 796

I'd recommend going to Opencores.org, finding a design similar to yours and synthesizing it. I'd say that's the most accurate way to estimate logic utilization.

Upvotes: 2

Martin Thompson
Martin Thompson

Reputation: 16812

I'd avoid gate counts with FPGAs, here's some 4-input look-up-table estimates (most of my experience is with Xilinx, but it'll be similar for Altera and others):

A raw UART is a few dozen LUT/FFs - if it has a bus interface to a micro, then it'll be more (likely <100 still) and if it has 16550-style FIFOs then even more (and maybe some ram blocks as well). 8-bit micro - in Xilinx, see Picoblaze (113 slices - each slice is two LUTs and two FFs, but not all of them are used in every slice)

Packet deframer - no idea - depends on the framer spec sorry :)

Upvotes: 1

Brian Carlton
Brian Carlton

Reputation: 7763

UART: 3200 gates. 8-bit uC: 10k gates. Check http://www.design-reuse.com/ for others.

Upvotes: 1

JeeBee
JeeBee

Reputation: 17546

An entire Amiga can fit in 400k gates, excluding CPU. See the Minimig project, it's opensource and should include some useful reference files. There's also an FPGA 68k core somewhere online that you can check, written by tobiflex. Also check out the commodore one machine and C64/CPC cores (Z80, 6845, SID, 6502, etc) to see how they compare.

Upvotes: 1

Related Questions