Hello. I need to connect any of n inputs to any of n outputs (crossbar switch). What design considerations should I care about, in choosing an fpga for a given n? Please consider that speed is in the tens of MHz, power consumption doesn't care and non-blocking switch is not required Just for example, on digikey I see a low cost lattice ice40HX1K with 96 i/o ports and 1280 logic units. How big my n could be in this case? regards, henry
I would say for a simple switching function the number of IO pins is the limiting factor. You'll need: N inputs N outputs X lines for control, reset, clock for very small FPGAs the number of logic units (LU) can also become a limiting factor. What a single LU actually can do depends strongly on the device type. But in worst case it is equivalent to a single one-bit 2 to 1 mux. So you would roughly need 0.5*N*N LUs to do the job. But many FPGAs have special muxing features that simplify your special task and reduce the number of LUs required. The only reliable way to find out if a design fits into a device is to actually try it by running a complete design process until the final binary file is created. This can be done without purchasing a device - "just" download the vendor's development toolchain, enter your design and run the compile and synthesis steps. As a result you will get a detailed report of how many resources in the device have been used. If only a small percentage of the device's resources is used a smaller device can be selected. If the design does not fit select a bigger device and restart the process.
Thanks, Andi, I'll follow your advice. Last time I used fpga was with the Altera tool chain, 4 years ago (perhaps more). This time I'm gonna try SystemC instead of Verilog henry
Please log in before posting. Registration is free and takes only a minute.
Existing account
Do you have a Google/GoogleMail account? No registration required!
Log in with Google account
Log in with Google account
No account? Register here.