Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

fpga makes trouble in my mind

Status
Not open for further replies.

reddishcore

Newbie level 1
Joined
Jul 4, 2011
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,291
hello,
I am new member and a young university student.So I really need your help in this hard,big and mixed field.I want to learn fpga and I have three questions which makes trouble in my mind.
1.Which companies use fpga,so I want to draw my way accordingly.
2.Can I program fpga with C/C++ or I have to use verilog,vhdl?
3.Most important:where will I start to learn? :oops:

if you help me,I will appreciate you.

Thank you so much
 


hello,
I am new member and a young university student.So I really need your help in this hard,big and mixed field.I want to learn fpga and I have three questions which makes trouble in my mind.
1.Which companies use fpga,so I want to draw my way accordingly.
2.Can I program fpga with C/C++ or I have to use verilog,vhdl?
3.Most important:where will I start to learn? :oops:

if you help me,I will appreciate you.

Thank you so much
1.) FPGA's are used in many industries for a variety of reasons. FPGAs tend to do well when a problem has a high degree of parallelism. Likewise, they do well when a problem requires a deterministic latency.
2.) For the above reasons, a large part of FPGA will require HDL of some sort. The goal is to describe the hardware. For example, in a normal microcontroller a SPI controller might be used to allow the uC to do more than just toggle IO lines. HDL could be used to describe an SPI controller that could be implemented in an FPGA. HDL could also be used to describe the microcontroller itself (a soft-core CPU). Following this same line of reasoning, other IO, memory, DSP, and other important things could be described by HDL to allow the system to do less work in software. At some point, a software-programmable aspect might end up doing nothing -- the dedicated hardware system might not need it for anything.
3.) I suggest Xilinx and Altera's documentation and whitepapers.

some examples of items from #2 might be:
1.) software defined radio. a system might take in 3,000,000,000 samples per second. at 3GHz, a CPU wouldn't have much time to do anything. However, a more general digital system could be formed as an array of multiplications/additions. These could be arranged in a specific order to perform some operations. eventually, the processed data might be at a low enough rate to allow processing by a CPU.
2.) high-bandwidth networking. performing operations on multiple 10GBe links. This is up to 1.25GB/s per link.
3.) image and video processing, for the same reason as #1.
4.) control. In this case, the FPGA's ability to have dedicated resource for a given problem allow for low, deterministic latency (assuming the HDL is written in such a manner).

keep in mind that not every task is well suited for an FPGA. one of the big mistakes is to try to avoid microcontrollers or microprocessors completely. Nearly every FPGA design i've done either has or would have benefited from a microcontroller. I also tend to favor external microcontrollers for designs where the microprocessor takes on a command/control/interfacing aspect.
 
  • Like
Reactions: zel, sanju_ and FvM

    FvM

    Points: 2
    Helpful Answer Positive Rating

    sanju_

    Points: 2
    Helpful Answer Positive Rating

    zel

    Points: 2
    Helpful Answer Positive Rating
Two supplements to permute's profound statement.
2. You absolutely need to learn Verilog or VHDL to understand how FPGAs work.
3. Besides reading books and papers. If you can afford it, get a cheap development kit, e.g. Altera DE0 nano from Terasic and start with the excercises or even better, an application of your own.
 
  • Like
Reactions: zel

    zel

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top