Verilog vs Datapath

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
HuEl_264296
Level 5
Level 5
First like given 25 sign-ins First solution authored

Hi,

   

 

   

I am studying the datapath on the PSoC Sensei blog at the moment, and I was wondering:

   

In Verilog, there are functions such as shifting, adding, etc.  These are the same functions

   

that the datapath provides. What then is the advantage of using the datapath? Is it that the

   

datapath is not used by the Verilog synthesizer? I.E. A pure Verilog implementation makes

   

less efficient use of the UDB, because it does not use the datapath?

   

 

   

Hugo

0 Likes
9 Replies
Anonymous
Not applicable

Hi Hugo,

   

 

   

Writing just Verilog code will implement the combination or sequential logic using the PLDs available in UDB.

   

However, the Datapath available in UDB can be utilized by using the Datapath Tool. This is much more powerful way of using the UDBs as Datapath has an ALU of it's own which can do 8 arithmetic and logical operations. A datapath has FIFO, Accumulator and Data Register. Apart from this, there are also hardware comparators which will compare the value of the Accumulator with Data Regsiters. This works in parallel with the main core (8051 / ARM Cortex M3 of PSoC 3/5), thereby improving the utilization of the available digital resources.

0 Likes
HuEl_264296
Level 5
Level 5
First like given 25 sign-ins First solution authored

I can use the datapath to add two bytes together using the ALU.

   

But I can also add two bytes using Verilog, can't I ?

   

 

   

Is there a disadvantage to doing it in Verilog?

   

Is there an advantage to doing it in the datapath?

   

 

   

Hugo

0 Likes
Anonymous
Not applicable

The difference is size.  An implementation of a PMW in verilog would take up most of the available logic.  With a datapath it is only a single block.

   

The ALU conbined with a state machine makes a small little processor.

   

In PSoC1, it was decided to not have programmable logic other than the LUTs on the analog columns and digtal output rows.  That was because we could not afford the space programmable logic would require.  Remeber FPGAs sell for as much as 10 times the cost of a PSoC1.  We thought we had most microcontroller peripherials covered until about the second week PSoC went into production someone asked from a quad shaft decodered.  (damn!)

   

On PSoC3/5 it was decided that we could never cover all the perepherial that you guys wanted and that programmable logic was required. The designers didn;t want the overhead that FPGAs would require.  The data path is a good compromise.

   

You have to remember that the microprocessor was originally desgned to make logic design easiler.  Back in the early 70s, digital design was either SSI chips or a custom chip.  With the rapid increase of digital designs it became apparrent that there would not be enough digital engineer to to the work.  The solution was a programable sequencal logic device or a micro-processor.  If I remember correctly, Intel would give them away for free if yyou bought your ROM and RAm from them. 

   

I will admit that the dath paths are my favorite part of PSoC3/5 and I am consider an analog guy. 

   

Dave Van Ess

0 Likes
Anonymous
Not applicable

Also  the datapath configurations are held in SRAM tha is in the CPU memory space.  With the power of the CPU, DMA , and the wide bandwith of the memory space you now have a dynamicly configured system.  The results of this will not be fully explored for at least 5 more years.  Guys!  you are being given an oppertunity to do things no one else has done before.  Time allocatable hardware.  200%- 300% utilization of hardware.  Neuro type designs.  The ideas are linitless.  Remainds me when people asked why they should use PALs went 74HC chips cost 9 cents.

   

You are being offered to the chance to define how logic is designed in the future.  Hell, the tools to do this haven't even been written yet!

   

 

   

Dave Van Ess

0 Likes
HuEl_264296
Level 5
Level 5
First like given 25 sign-ins First solution authored

Thanks Dave,

   

 

   

That was a great answer! So you could do all of those ALU functions in Verilog, but it would use much more hardware that if you just used a datapath.

   

 

   

I guess that's doubly true (or octally true) because the datapath can cover 8 functions in a single block.

   

 

   

Hugo

0 Likes
MarkA_91
Employee
Employee
25 replies posted 10 replies posted 5 replies posted

I wrote an article on this a while ago, maybe this will help?

   

http://www.eetimes.com/design/embedded/4215555/Why-your-embedded-controller-may-not-need-a-CPU

0 Likes
HuEl_264296
Level 5
Level 5
First like given 25 sign-ins First solution authored

 Thanks. Great article.

   

 

   

So, in fact, you could probably turn them into special purpose CPUs if you wanted?

   

 

   

Hugo

0 Likes
MarkA_91
Employee
Employee
25 replies posted 10 replies posted 5 replies posted

Yes. The way I like to view it is to count the number of "processors" in PSoC:

   

CPU, DMAC, DFB, + 24 datapaths = 27.  But we're not done yet:

   

State machines in PLDs, number is limited only by available UDB resources.  But we're still not done:

   

Processing can also be done in the analog domain, e.g. using a SC/CT block in mixer mode to do analog multiplication.

   

So I usually state that we have 27+ "processors" in PSoC 3/5, and so don't just use the CPU like one would in traditional MCUs.

0 Likes
Anonymous
Not applicable

Back in the day we used to make analog computers with op amps.  With four stand alone and four CT-SC block opamps, that makes eight more.

   

PSoC Rocks my friends!

   

 

   

Dave

0 Likes