MI Reconfigurator

The MI Reconfigurator can be used to modify the width of the MI interface. Both RX and TX data width has to be a power of 2 and at least 8 bits.

Architecture

The architecture has 3 different shapes depending on the configuration:

  1. RX width == TX width

    When the data width is not being changed at all, the component is reduced to direct signal connections.

  2. RX width < TX width

    The situation is explained in following example. The RX interface is a standard MI32 interface (4 bytes). On the TX interface, we want to address 8-byte registers (MI64).

    Every byte has its own address on the MI, however, we use addresses aligned to 4 bytes to access the MI32 registers (i.e., registers that contain data of 4 bytes). In other words, when using 4-byte data words, the lowest log2(4) bits of the addres have to be 0. If we increase the data width, the address alignment will change as well. So to access 8-byte registers on the TX interface, the addresses must be aligned to multiples of 8 (= the lowest log2(8) bits of the addres have to be 0). Hopefully, this description with the following diagram explains the situation well enough.


    When the data width is being increased, the following has to be done:

    The target address on the MI bus always has to be aligned to a whole MI data word. When converting to a wider bus, the valid data have to be shifted to the correct position in the TX DWR and the RX ADDR has to be rounded down. The data validity is then signaled by the TX BE (Byte Enable).

    The same has to be done for read requests as well, only the shifting is done the other way around for the TX DRD. (The unit has to remember the lowest bits of the original request to shift the DRD correctly.)

  3. RX width > TX width

    In this case, each RX request might require to produce multiple TX requests. This means that each request might take multiple cycles to process. To reduce the required time, the unit only propagates valid parts of the requests based on the RX BE value and does not generate any TX requests with TX BE == 0. The most complicated part here is the processing of read request DRD signals.

    In this mode, the component doesn’t support execution of multiple parallel requests.