Posted on 2 Comments

In Circuit Emulation for MIPS soft CPU

Many developers got used to this: Plug in a JTAG connector to your embedded target and debug the misbehaviour down to the hardware. No longer a luxury, isn’t it?
When you move on to a soft core from opencores.org for a simple SoC solution on FPGA, it may be. Most of them don’t have a TAP – a Test Access Port – like other off the shelf ARM cores.

We had pimped a ZPU soft core with in circuit emulation features a while ago (In Circuit Emulation for the ZPU). This enabled us to connect to a hardware ZPU core with the GNU debugger like we would attach to for example a Blackfin, msp430, you name it.

Coming across various MIPS compatible IP cores without debug facilities, the urge came up to create a standard test access port that would work on this architecture as well. There is an existing Debug standard called EJTAG, but it turned out way more complex to implement than simple In Circuit Emulation (ICE) using the above TAP from the ZPU.

So we would like to do the same as with the ZPU:

  • Compile programs with the <arch>-elf-gcc
  • Download programs into the FPGA hardware using GDB
  • set breakpoints, inspect and manipulate values and registers, etc.
  • Run a little “chip scope”

Would that work without killer efforts?

Yes, it would. But we’re not releasing the white rabbit yet. Stay tuned for embedded world 2013 in Nuremberg in February. We (Rene Doß from Dossmatik GmbH Germany and myself) are going to show some interesting stuff that will boost your SoC development big time by using known architectures and debug tools.

His MIPS compatible Mais CPU is on the way to become stable, and turns out to be a quick bastard while being stingy on resources.

For a sneak peek, here’s some candy from the synthesizer (including I/O for the LCD as shown below):

Selected Device : 3s250evq100-5

Number of Slices:                     1172  out of   2448    47%
Number of Slice Flip Flops:            904  out of   4896    18%
Number of 4 input LUTs:               2230  out of   4896    45%
Number of IOs:                          15
Number of bonded IOBs:                  15  out of     66    22%
Number of BRAMs:                         2  out of     12    16%
Number of GCLKs:                         3  out of     24    12%

And for the timing:

Minimum period: 13.498ns (Maximum Frequency: 74.084MHz)
Mais on Papilio with TFT wing

Update: Here’s a link to the presentation (as PDF) given on the embedded world 2013 in Nuremberg:

presentation-2013

2 thoughts on “In Circuit Emulation for MIPS soft CPU

  1. Hello,

    Why does it need so little block ram? do you have ROM code in fabric?

  2. Hi,
    there’s no ROM in there, it’s all block RAM. This config was just used for testing, in fact, the RAM usage is higher on the shown rainbow demo.
    This config also uses some DMA extensions, therefore a little higher logic count.

    Here’s the effective usage:

    Design Summary
    --------------
    Number of errors:      0
    Number of warnings:    0
    Logic Utilization:
      Number of Slice Flip Flops:         1,108 out of   4,896   22%
      Number of 4 input LUTs:             2,478 out of   4,896   50%
    Logic Distribution:
      Number of occupied Slices:          1,553 out of   2,448   63%
        Number of Slices containing only related logic:   1,553 out of   1,553 100%
        Number of Slices containing unrelated logic:          0 out of   1,553   0%
          *See NOTES below for an explanation of the effects of unrelated logic.
      Total Number of 4 input LUTs:       2,588 out of   4,896   52%
        Number used as logic:             2,478
        Number used as a route-thru:        110
    
      Number of bonded IOBs:                 15 out of      66   22%
      Number of RAMB16s:                      8 out of      12   66%
      Number of BUFGMUXs:                     5 out of      24   20%
      Number of DCMs:                         1 out of       4   25%
      Number of BSCANs:                       1 out of       1  100%
    
    
Leave a Reply to Anonymous Cancel reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.