This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

AHB frequency

Note: This was originally posted on 6th January 2009 at http://forums.arm.com

Hi Friends,

   My doubt is : what is the maximum AHB clock frequency ?

Regards,
P.Vignesh Prabhu
  • Note: This was originally posted on 6th January 2009 at http://forums.arm.com

    Are you using an existing chip? If so, the maximum frequency will be determined by the implementation. For example, I know that at least some of the LPC devices have an AHB bus which can clock at least as fast as the processor itself, so you don't need to divide the system clock for the bus. These devices clock at 60-70MHz. Others may be different.

    If you're trying to implement an AHB bus and don't have the relevant documentation, then I probably can't help you as I'm not that familiar with the workings of it. The AMBA specification doesn't seem to list approximate frequencies, though I must admit that I haven't looked very hard.
  • Note: This was originally posted on 7th January 2009 at http://forums.arm.com

    If you are designing an SoC then all of the usual issues with frequency and bus pipelines come into play here.

    You can clock almost any bus very fast, but may need to include more register slices (effectively pipeline stages) to allow a bus transaction to propagate over multiple cycles. The downside is that you have higher latency to access a particular location. There is a tradeoff between bus frequency and latency, as well as other design constraints such as power (slow bus clocks consume much less power).

    The bus width of most implementations is also scalable - so you can get a slow clocked bus which is 256-bits wide. Obviously this can carry more data than an 8-bit bus which is clocked 4 times faster. So clock speed isn't everything.

    The final aspect for a design which determines the clock speed is the physical process the SoC is manufactured on. A 180nm device on bulk CMOS won't clock as fast as a 45nm device on SOI, and so the achievable clock rate will be capped.

    As Sim said, it all depends on the implementation...
  • Note: This was originally posted on 6th January 2009 at http://forums.arm.com

    The AMBA AHB specification simply specifies a synchronous bus standard;
    the maximum frequency is entirely down to a particular implementation.

    hth
    s.