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.

moving from 65nm to 40nm tech

Status
Not open for further replies.

rocking_vlsi

Member level 5
Joined
Jun 9, 2011
Messages
87
Helped
6
Reputation
12
Reaction score
6
Trophy points
1,288
Activity points
1,833
Hi

Moving from 65nm to 4onm or to 28nm. How it will effect in RTL design and synthesis?

What extra care need to be taken?
 

In general, geometry reduction allows faster devices and better power consumption (due to lower gate capacitance and shorter distances). This brings lower combinatorial delays.
For example:
A = B * C + D
This combinatorial function (when implemented with exactly the same logic) will take less time to complete with 40nm then with 65nm (and even lesser with 28nm).
 

Thanks shaiko:
Do you mean we will be able to synthesize same design for higher frequency at 28nm ?

Do we really care about how big combo (number logic levels) we are writing in RTL Design?
 

Do you mean we will be able to synthesize same design for higher frequency at 28nm ?
yes.
Do we really care about how big combo (number logic levels) we are writing in RTL Design
Of course. Each combinatorial level has a delay. Whithout resulting to pipelining, you can only do so much before you get into timing violations.
So, lowering the combinatorial delay (one of the benefits of geometry reduction) is always good.

Example:

Y = ( A * B ) + ( C * D )

When done single step (without pipelining) on a 65nm device - the result may be ready after 200ns.
When done single step (without pipelining) on a 28nm device - the result may be ready after 100ns.
 

pure RTL design shouldn't care about the process.
Of course that process change will introduce timing changes that will effect RTL design.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top