Which chip familly for 100Mhz counter?

J

John Mitchell

Guest
Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??

Thanks

John
 
"John Mitchell" <j.b.mitchell@qmul.ac.uk> wrote in message
news:da10fc$ni6$1@beta.qmul.ac.uk...
Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??

ECL ? it is only the first couples of FF there are critical...

You could maybe think of an CPLD to do some of the work...

Kasper
 
Repzak wrote:
"John Mitchell" <j.b.mitchell@qmul.ac.uk> wrote in message
news:da10fc$ni6$1@beta.qmul.ac.uk...

Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??



ECL ? it is only the first couples of FF there are critical...
nope (to the first stages) - synchroneous is the keyword.
It is the carry that makes problems. ECL definietly does
it. But there isn't much beyond an 8bit counter in a case.

You could maybe think of an CPLD to do some of the work...
While 100MHz synchroneous 32bit is not that difficult
to achieve with say an ACEX 1k , 200MHz becomes difficult.
Nowadays, I guess a cyclone will do it. A 20$ part.

Rene
--
Ing.Buero R.Tschaggelar - http://www.ibrtses.com
& commercial newsgroups - http://www.talkto.net
 
Hello John,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)
If you don't want to use programmable logic you could employ ordinary HC
logic but make the first FF a fast one. I believe the 74LVC2G74 is
spec'd around 140MHz clock rate at 5V supply and it doesn't even cost a
quarter. You can go higher than that but then you'd either have to use
lower voltage chips or build a discrete first section. TI offers lots of
fast LV logic in case you want to go that route.

Regards, Joerg

http://www.analogconsultants.com
 
On Thu, 30 Jun 2005 18:33:51 GMT, Joerg
<notthisjoergsch@removethispacbell.net> wrote:

Hello John,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

If you don't want to use programmable logic you could employ ordinary HC
logic but make the first FF a fast one. I believe the 74LVC2G74 is
spec'd around 140MHz clock rate at 5V supply and it doesn't even cost a
quarter. You can go higher than that but then you'd either have to use
lower voltage chips or build a discrete first section. TI offers lots of
fast LV logic in case you want to go that route.

Regards, Joerg

http://www.analogconsultants.com
I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.

...Jim Thompson
--
| James E.Thompson, P.E. | mens |
| Analog Innovations, Inc. | et |
| Analog/Mixed-Signal ASIC's and Discrete Systems | manus |
| Phoenix, Arizona Voice:(480)460-2350 | |
| E-mail Address at Website Fax:(480)460-2142 | Brass Rat |
| http://www.analog-innovations.com | 1962 |

I love to cook with wine. Sometimes I even put it in the food.
 
Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.
All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Regards, Joerg

http://www.analogconsultants.com
 
On Thu, 30 Jun 2005 20:17:20 GMT, Joerg
<notthisjoergsch@removethispacbell.net> wrote:

Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.

All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Regards, Joerg

http://www.analogconsultants.com
Not at 2.2GHz it's not ;-)

...Jim Thompson
--
| James E.Thompson, P.E. | mens |
| Analog Innovations, Inc. | et |
| Analog/Mixed-Signal ASIC's and Discrete Systems | manus |
| Phoenix, Arizona Voice:(480)460-2350 | |
| E-mail Address at Website Fax:(480)460-2142 | Brass Rat |
| http://www.analog-innovations.com | 1962 |

I love to cook with wine. Sometimes I even put it in the food.
 
Hello Jim,

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Not at 2.2GHz it's not ;-)
Ok, one for you ;-)

Regards, Joerg

http://www.analogconsultants.com
 
"John Mitchell" <j.b.mitchell@qmul.ac.uk> wrote in message
news:da10fc$ni6$1@beta.qmul.ac.uk...
Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??

Thanks

John

You will have to come up with some scheme for fast carry generation. You
can't let it propagate through, say, 8 four bit counters. I think there are
CPLDs that will go fast enough.

Tam
 
On Thu, 30 Jun 2005 18:28:00 +0200, Rene Tschaggelar wrote:

Repzak wrote:
"John Mitchell" <j.b.mitchell@qmul.ac.uk> wrote in message
news:da10fc$ni6$1@beta.qmul.ac.uk...

Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??



ECL ? it is only the first couples of FF there are critical...

nope (to the first stages) - synchroneous is the keyword.
It is the carry that makes problems. ECL definietly does
it. But there isn't much beyond an 8bit counter in a case.
Gang up the 8-bit counters with look-ahead carrys. A 32 bit 100MHz
counter should be trivial these days. It would be in an FPGA,
anyway.

You could maybe think of an CPLD to do some of the work...

While 100MHz synchroneous 32bit is not that difficult
to achieve with say an ACEX 1k , 200MHz becomes difficult.
Nowadays, I guess a cyclone will do it. A 20$ part.
Even 200MHz shouldn't be a big deal in an FPGA (never used CPLDs). I
believe Xilinx' app people are over 500MHz for such things.

--
Keith
 
On Thu, 30 Jun 2005 13:18:54 -0700, Jim Thompson wrote:

On Thu, 30 Jun 2005 20:17:20 GMT, Joerg
notthisjoergsch@removethispacbell.net> wrote:

Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.

All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Regards, Joerg

http://www.analogconsultants.com

Not at 2.2GHz it's not ;-)
Well, we're just shy of 3GHz (a few parts even above that ;) with CMOS.
Stuff a little more complicated than counters too. The NRE is a tad on
the expensive side though. ;-)

--
Keith
 
On Thu, 30 Jun 2005 15:43:56 +0100, "John Mitchell"
<j.b.mitchell@qmul.ac.uk> wrote:

Hi,

I would like, as part of a larger system, to implement a 32bit synchronous
binary counter. Clock frequency will exceed 100Mhz (200 would be nice)

Any hints as to which chip familly would suit??

Thanks

John
Spartan2E

John
 
On Fri, 01 Jul 2005 10:42:18 -0400, keith <krw@att.bizzzz> wrote:

On Thu, 30 Jun 2005 13:18:54 -0700, Jim Thompson wrote:

On Thu, 30 Jun 2005 20:17:20 GMT, Joerg
notthisjoergsch@removethispacbell.net> wrote:

Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.

All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Regards, Joerg

http://www.analogconsultants.com

Not at 2.2GHz it's not ;-)

Well, we're just shy of 3GHz (a few parts even above that ;) with CMOS.
Stuff a little more complicated than counters too. The NRE is a tad on
the expensive side though. ;-)
And the power-speed product is?

...Jim Thompson
--
| James E.Thompson, P.E. | mens |
| Analog Innovations, Inc. | et |
| Analog/Mixed-Signal ASIC's and Discrete Systems | manus |
| Phoenix, Arizona Voice:(480)460-2350 | |
| E-mail Address at Website Fax:(480)460-2142 | Brass Rat |
| http://www.analog-innovations.com | 1962 |

I love to cook with wine. Sometimes I even put it in the food.
 
Joerg wrote:
Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.


All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.
It advanced a bit too.
There is this 8bit synchroneous counter MC100EP016A,
doing 1400MHz, then the MC100E137, an 8 bit ripple
counter doing 2200MHz, just to name two.

Rene
--
Ing.Buero R.Tschaggelar - http://www.ibrtses.com
& commercial newsgroups - http://www.talkto.net
 
On Fri, 01 Jul 2005 08:09:39 -0700, Jim Thompson wrote:

On Fri, 01 Jul 2005 10:42:18 -0400, keith <krw@att.bizzzz> wrote:

On Thu, 30 Jun 2005 13:18:54 -0700, Jim Thompson wrote:

On Thu, 30 Jun 2005 20:17:20 GMT, Joerg
notthisjoergsch@removethispacbell.net> wrote:

Hello Jim,

I don't know quite where the frequency cross-over point is now with
"TinyLogic" parts, but CMOS may actually draw more power than (P)ECL
at high frequencies.

In my monolithic world, with no external loads, PECL beats CMOS above
about 300MHz.

All I could see in the LVC2G74 data sheet was the power dissipation
capacitance, 40pF at 5V. I had underestimated the chip since it can
clock a whopping 200MHz at 5V. Pretty cool for that small price.

In a counter the dissipation is often guided more by the quiescent
current. It only draws a lot while there is an input signal in the high
frequency range. Even then only the first few registers burn power while
the others stay cool.

ECL is nice but it seems that it is gradually being pushed aside by fast
LV logic.

Regards, Joerg

http://www.analogconsultants.com

Not at 2.2GHz it's not ;-)

Well, we're just shy of 3GHz (a few parts even above that ;) with CMOS.
Stuff a little more complicated than counters too. The NRE is a tad on
the expensive side though. ;-)

And the power-speed product is?
Dunno, actually. I should look it up, but I'm off until the 11th. ;-)
There's about 350M of the little buggars in there getting mighty hot and
bothered though. The real problem these days is leakage. :-(

--
Keith
 

Welcome to EDABoard.com

Sponsor

Back
Top