commit | 37eedfa885d290ea013d9482cf23bd48bdea75d8 | [log] [tgz] |
---|---|---|
author | Git bot <bot@noreply.github.com> | Sat Dec 18 00:19:59 2021 +0000 |
committer | Git bot <bot@noreply.github.com> | Sat Dec 18 00:19:59 2021 +0000 |
tree | c4358ba227426771f8f7980fb315b2f6f3304883 | |
parent | 19593d10e79839bed37cdbc8ebb753b03fbb6d9e [diff] |
Auto updated submodule references
This repo contains a sample user project that utilizes the caravel <https://github.com/efabless/caravel.git>
chip user space. The user project contains a simple GPIO-Control module to read and write the first 32 bit from the caraval GPIO module in the user space. Furthermore it implements a FSM to automatically read and write 1024 bits of bit stream from and to any of the first 32 GPIO ports.
The user space contains 3 blocks:
The wishbone slave introduces a 32-bit data interface to the user block connected to the caravel's system bus. It is the communication interface to the main RISC-V cpu.
The gpio module offers direct access to the caravel's GPIO lines 0 to 31. The registers “GPIO-Input”, “GPIO-Output” and “GPIO-OutEnable” as listes in the chapter “Address Mapping” can be used for simple GPIO bit controlling to the corressponding GPIO port.
The Control Register is composed of the follwoing control signals:
Bits | Parameter | Description |
---|---|---|
0 | aSHIFT_IN_EN | Enable the GPIO input stream automatic |
5:1 | aINPUT_SEL | Select the GPIO input port for automatic streaming (0..31) |
6 | aSHIFT_OUT_EN | Enable the GPIO output stream automatic |
11:7 | aOUTPUT_SEL | Select the GPIO output port for automatic streaming (0..31) |
12 | aOUTPUT_LOOP | Enable the GPIO output stream to be repeated until aOUTPUT_LOOP=0 |
22:13 | aOUTPUT_LEN | Configure the GPIO output stream bitlength (0..1023) |
23 | aOUTPUT_LIMIT | Enable the GPIO output stream bitlength limit to aOUTPUT_LEN |
For GPIO input stream, the corresponding configuration needs to be written to the Control Register and the data can be read from RAM when it is finished. The parameter “aSHIFT_IN_EN” is reset automatically.
For GPIO output stream, the data needs to be written to the RAM before the corresponding configuration is written to the Control Register.
The RAM-IF is connected to the wishbone bus and the gpio control block. The gpio control block uses the RAM-IF to read and write GPIO stream data in dependens of the current configuration. The direct access via the wishbone slave is only allowed, when the gpio control has finished automatic data processing.
The RAM-IF is prepared to be used with OpenRAM.