FPGA development resources

OP Admin #1184200
Rate this post
useful
not useful
*CPLD or FPGA?*

The main difference is that CPLDs are smaller than FPGAs, i.e. you can 
fit a lot more logic inside a FPGA than inside a CPLD.

* CPLDs: address decoders, bus interfaces, simple memory controllers, 
(video) signal generators
* FPGAs: complex CPUs, high speed I/O, signal processing, encryption

*VHDL or Verilog?*

The difference is mainly in syntax, you can get the same synthesis 
result with both languages. VHDL is more verbose than Verilog (which can 
be an advantage or disadvantage, depending on how you look at it). In 
Europe VHDL is much more widely used than Verilog, in the US Verilog 
seems to be slightly more popular.

Basic rules for VHDL development

See "http://embdev.net/articles/VHDL":http://embdev.net/articles/VHDL.

Chip vendors

* "Xilinx":http://www.xilinx.com
* "Altera":http://www.altera.com
* "Lattice":http://www.latticesemi.com
* "Actel":http://www.actel.com

Boards
* also see the FPGA vendors' websites
* "Digilent":http://www.digilentinc.com

Tutorials
* TODO

IP Cores
* "Opencores":http://opencores.org - CPUs, USB, Ethernet, encryption, 
...

If you want to suggest any additions to this post, please reply below.
Guest #5286339
Rate this post
useful
not useful
i programmed fbga with xp2 lattice chip to switch lvds from ipu and gpu. 
The screen resolution of 1440x900 and 1600x900 is good. but 1920x1200 
results are bad. I think the data and clk channel n and p output from 
the chip is not good. You let me ask how I write code to ensure that clk 
and data out are good
(Company: Nazarbayev University) #6216410
Rate this post
useful
not useful
I am creating a Youtube playlist for those who are interested to 
start/learn/try hardware-software codesign with Xilinx Zynq APSoC 
platform. There are already 40 Videos and hoping to add about 100 Videos 
from basic to advanced level. Basic background in Verilog and C 
programming are assumed. All source code are made available through git 
repo.

https://lnkd.in/gnw7Au8
(Company: Home) #6302653
Rate this post
useful
not useful
CPLD or FPGA?

>The main difference is that CPLDs are smaller than FPGAs,
>i.e. you can fit a lot more logic inside a FPGA than inside a CPLD.

 Main different CPLD from FPGA that :

CPLD work immidiatly after power up

FPGA after power up need time for load from external or internal flash 
memory.

 It's present some application wich need work immidiatly after power up 
and can be released only by CPLD.

P.S.
 FPGA can lose it design and stop work after short time power down or 
power spike and need it reload.

 CPLD does not have this problem.

 Regards Alex.
(Company: Home) #6303966
Rate this post
useful
not useful
ktorkkelson wrote:
> @Alexander S. you really have no clue of these things!

 Perhaps Wikipedia have clue of these things :

 The most noticeable difference between a large CPLD and a small FPGA is 
the presence of on-chip non-volatile memory in the CPLD, which allows 
CPLDs to be used for "boot loader" functions, before handing over 
control to other devices not having their own permanent program storage. 
A good example is where a CPLD is used to load configuration data for an 
FPGA from non-volatile memory.

 https://en.wikipedia.org/wiki/Complex_programmable_logic_device

FPGA loads it from external memory (typically on every power-on)

https://en.wikipedia.org/wiki/Field-programmable_gate_array
(Company: Home) #6303977
Rate this post
useful
not useful
Vipin K. wrote:
> I am creating a Youtube playlist for those who are interested to
> start/learn/try hardware-software codesign with Xilinx Zynq APSoC
> platform. There are already 40 Videos and hoping to add about 100 Videos
> from basic to advanced level. Basic background in Verilog and C
> programming are assumed. All source code are made available through git
> repo.
>
> https://lnkd.in/gnw7Au8

 Usually I put real ModelSim project which you can start and check 
simulation of design and see that design really work.

You don't need to build ModelSim  project and design TestBench file .

ModelSim simulation tools you can download from Altera's site.

 Regards Alex.

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now