This tutorial will introduce you to the register interface component and how it can be used to create easy and reliable interfaces to your designs.

Overview

The register interface component takes over a serial port (typically from the AVR interface component) and create an address based interface. You can then issue read and write requests over the Mojo's USB port to specific addresses. By default, these addresses have no meaning. They are simply a way for you to differentiate the requests. Both the data and address values are 32 bits wide.

Example

Let's create a quick example that will map the LEDs on the Mojo to address 0. That way we can read and write to address 0 to change the value of the LEDs.

Create a new project based on the AVR Interface example.

Now open up the components library and add the Register Interface component, which can be found under Interfaces.

We now need to hook it up to the serial port of the AVR Interface in mojo_top.luc.

1module mojo_top (
2 input clk, // 50MHz clock
3 input rst_n, // reset button (active low)
4 output led [8], // 8 user controllable LEDs
5 input cclk, // configuration clock, AVR ready when high
6 output spi_miso, // AVR SPI MISO
7 input spi_ss, // AVR SPI Slave Select
8 input spi_mosi, // AVR SPI MOSI
9 input spi_sck, // AVR SPI Clock
10 output spi_channel [4], // AVR general purpose pins (used by default to select ADC channel)
11 input avr_tx, // AVR TX (FPGA RX)
12 output avr_rx, // AVR RX (FPGA TX)
13 input avr_rx_busy // AVR RX buffer full
14 ) {
15
16 sig rst; // reset signal
17
18 .clk(clk) {
19 // The reset conditioner is used to synchronize the reset signal to the FPGA
20 // clock. This ensures the entire FPGA comes out of reset at the same time.
21 reset_conditioner reset_cond;
22
23 .rst(rst){
24 // the avr_interface module is used to talk to the AVR for access to the USB port and analog pins
25 avr_interface avr;
26 reg_interface register;
27 }
28 }
29
30 always {
31 reset_cond.in = ~rst_n; // input raw inverted reset signal
32 rst = reset_cond.out; // conditioned reset
33
34 // connect inputs of avr
35 avr.cclk = cclk;
36 avr.spi_ss = spi_ss;
37 avr.spi_mosi = spi_mosi;
38 avr.spi_sck = spi_sck;
39 avr.rx = avr_tx;
40 avr.channel = hf; // ADC is unused so disable
41 avr.tx_block = avr_rx_busy; // block TX when AVR is busy
42
43 // connect outputs of avr
44 spi_miso = avr.spi_miso;
45 spi_channel = avr.spi_channel;
46 avr_rx = avr.tx;
47
48 register.rx_data = avr.rx_data;
49 register.new_rx_data = avr.new_rx_data;
50 avr.tx_data = register.tx_data;
51 avr.new_tx_data = register.new_tx_data;
52 register.tx_busy = avr.tx_busy;
53
54 register.regIn.drdy = 0; // default to no data
55 register.regIn.data = 32bx; // don't care
56
57 led = 0; // turn LEDs off
58 }
59}

Now we only have to deal with the register interface and we can ignore the AVR interface.

Take a look at the reg_interface.luc file.

35global Register {
36 struct master { // master device outputs
37 new_cmd, // 1 = new command
38 write, // 1 = write, 0 = read
39 address[32], // address to read/write
40 data[32] // data to write (ignore on reads)
41 }
42 struct slave { // slave device outputs
43 data[32], // data read from requested address
44 drdy // read data valid (1 = valid)
45 }
46}
63// Register Interface
64output<Register.master> regOut, // register outputs
65input<Register.slave> regIn // register inputs

Here you can see the interface we will be dealing with. When the master (your PC) issues a command, regOut.new_cmd goes high. At this time, regOut.write will tell you if it is write or read request and regOut.address will tell you what address is being referenced. During a write, regOut.data is valid and is the data that should be written to the specified address. During a read, this value is invalid and should be ignored.

When a read request is sent, the value corresponding to regOut.address should be generated and presented on regIn.data. When it is ready, regIn.drdy should be set high.

We now need to add a dff to save the value of the LEDs.

23.rst(rst){
24 // the avr_interface module is used to talk to the AVR for access to the USB port and analog pins
25 avr_interface avr;
26 reg_interface register;
27
28 dff leds [8];
29}

Now we can add some logic to handle the read and write requests.

59if (register.regOut.new_cmd) { // new command
60 if (register.regOut.write) { // if write
61 if (register.regOut.address == 0) { // if address is 0
62 leds.d = register.regOut.data[7:0]; // write the LEDs
63 }
64 } else { // if read
65 if (register.regOut.address == 0) { // if address is 0
66 register.regIn.data = leds.q; // read the LEDs
67 register.regIn.drdy = 1; // signal data ready
68 }
69 }
70}
71
72led = leds.q; // connect the dff

When we detect a write request, we update the value of leds, but when detect a read request, we return the value of leds. Note that we are filtering only for address 0. All other address requests will be ignored.

Here is the fully modified module.

module mojo_top (
    input clk,              // 50MHz clock
    input rst_n,            // reset button (active low)
    output led [8],         // 8 user controllable LEDs
    input cclk,             // configuration clock, AVR ready when high
    output spi_miso,        // AVR SPI MISO
    input spi_ss,           // AVR SPI Slave Select
    input spi_mosi,         // AVR SPI MOSI
    input spi_sck,          // AVR SPI Clock
    output spi_channel [4], // AVR general purpose pins (used by default to select ADC channel)
    input avr_tx,           // AVR TX (FPGA RX)
    output avr_rx,          // AVR RX (FPGA TX)
    input avr_rx_busy       // AVR RX buffer full
  ) {
 
  sig rst;                  // reset signal
 
  .clk(clk) {
    // The reset conditioner is used to synchronize the reset signal to the FPGA
    // clock. This ensures the entire FPGA comes out of reset at the same time.
    reset_conditioner reset_cond;
 
    .rst(rst){
      // the avr_interface module is used to talk to the AVR for access to the USB port and analog pins
      avr_interface avr;
      reg_interface reg;
 
      dff leds [8];
    }
  }
 
  always {
    reset_cond.in = ~rst_n; // input raw inverted reset signal
    rst = reset_cond.out;   // conditioned reset
 
    // connect inputs of avr
    avr.cclk = cclk;
    avr.spi_ss = spi_ss;
    avr.spi_mosi = spi_mosi;
    avr.spi_sck = spi_sck;
    avr.rx = avr_tx;
    avr.channel = hf;           // ADC is unused so disable
    avr.tx_block = avr_rx_busy; // block TX when AVR is busy
 
    // connect outputs of avr
    spi_miso = avr.spi_miso;
    spi_channel = avr.spi_channel;
    avr_rx = avr.tx;
 
    // connect reg interface to avr interface
    reg.rx_data = avr.rx_data;
    reg.new_rx_data = avr.new_rx_data;
    avr.tx_data = reg.tx_data;
    avr.new_tx_data = reg.new_tx_data;
    reg.tx_busy = avr.tx_busy;
 
    reg.regIn.drdy = 0;                   // default to not ready
    reg.regIn.data = 32bx;                // don't care
 
    if (reg.regOut.new_cmd) {             // new command
      if (reg.regOut.write) {             // if write
        if (reg.regOut.address == 0) {    // if address is 0
          leds.d = reg.regOut.data[7:0];  // write the LEDs
        }
      } else {                            // if read
        if (reg.regOut.address == 0) {    // if address is 0
          reg.regIn.data = leds.q;        // read the LEDs
          reg.regIn.drdy = 1;             // signal data ready
        }
      }
    }
 
    led = leds.q;                         // connect the dff
  }
}

Build your project and load it onto your board.

In the Mojo IDE, go to Tools->Register Interface.... This tool allows you to send read and write requests to specific addresses when using the register interface component. Fill in 0 for Address and 1 for Value then click Write.

reginterface.png

If everything went well, the first LED on your Mojo should have lit up! Try writing different values. Also note that you can use the radio buttons to select if you want the address and value fields to be represented in decimal or hexadecimal.

If you try to read from an address other than 0, you'll get an error message saying the read failed. This is because if the address isn't 0, we never return any data (regIn.drdy stays 0 forever) so the read times out. You can write to other addresses, but the writes are simply ignored.

Try to modify the code so that address 0 still controls the LEDs, but address 1 now will read a bit-wise inverted version of what was last written to it. If you need help, hit up our forums.

The API

This built in register interface tool is helpful, but manually entering everything isn't always practical. Here we will go over how the protocol works for issuing read and write requests so that you can use this in your own applications.

Every request starts with 5 bytes being sent. The first byte is the command byte and the next four are the address (32 bits = 4 bytes) sent with the least significant byte first.

In many cases you will want to read or write to many consecutive addresses, or perhaps the same address many times. It would be inefficient to have to issue the entire command each time so the command byte contains info for consecutive or multiple read/write requests in one.

The MSB (bit 7) of the command byte specifies if the command is a read (0) or write (1). The next bit (bit 6), specifies if consecutive addresses should be read/written (1) or if the same address should be read/written multiple times (0). The 6 LSBs (bits 5-0) represent how many read/write requests should be generated. Note that the number of requests will alway be 1 more than the value of these bits. That means if you want to read or write a single address, they should be set to 0. Setting them to 1 will generate two read or write requests.

If you send a write request, after sending the command byte and address, you continue sending the data to be written. Data is always sent as four bytes per write request and the least significant byte should be sent first.

For reads, after sending the command byte and address, you simply wait for the data to be returned. Data is returned in least significant byte order. Note that you may not always receive all the data you ask for if there is an issue with the FPGA design (i.e. the requested data is never presented, like in our LED example).

Let's take a look at an example.

If you want to write to addresses 5, 6, and 7, you could issue the following request. 0xC2 (1100 0010), 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00. This would write 1 to address 5, 2 to address 6, and 3 to address 7. If you changed the command byte to 0x82 (1000 0010) you would write 1 to address 5, 2 to address 5, and then 3 to address 5 (in that order).

Issuing a read follows the exact same format except the data bytes are received instead of sent.

A single command can generate up to 64 read/write requests. If you need to read/write more, you need to issue separate commands.

Java Example

You can download a working Java example (Eclipse project) by clicking here. This example simply writes 0x12 to address 0, but there is a class to make it easy to perform reads and writes in bulk.