blob: eaf783adb45607260a96baf77d804dfaff31b9c4 [file] [log] [blame]
.. _icev_wireless:
ICE-V Wireless
##############
Overview
********
The ICE-V Wireless is a combined ESP32C3 and iCE40 FPGA board.
See the `ICE-V Wireless Github Project`_ for details.
.. figure:: img/icev_wireless.jpg
:width: 400px
:align: center
:alt: ICE-V Wireless
ICE-V Wireless
Hardware
********
This board combines an Espressif ESP32-C3-MINI-1 (which includes 4MB of flash in the module) with a
Lattice iCE40UP5k-SG48 FPGA to allow WiFi and Bluetooth control of the FPGA. ESP32 and FPGA I/O is
mostly uncommitted except for the pins used for SPI communication between ESP32 and FPGA. Several
of the ESP32C3 GPIO pins are available for additonal interfaces such as serial, ADC, I2C, etc.
For details on ESP32-C3 hardware please refer to the following resources:
* `ESP32-C3-MINI-1 Datasheet`_
* `ESP32-C3 Datasheet`_
* `ESP32-C3 Technical Reference Manual`_
For details on iCE40 hardware please refer to the following resources:
* `iCE40 UltraPlus Family Datasheet`_
Supported Features
==================
The ICE-V Wireless board configuration supports the following hardware
features:
+-----------+------------+------------------+
| Interface | Controller | Driver/Component |
+===========+============+==================+
| PMP | on-chip | arch/riscv |
+-----------+------------+------------------+
| INTMTRX | on-chip | intc_esp32c3 |
+-----------+------------+------------------+
| PINMUX | on-chip | pinctrl_esp32 |
+-----------+------------+------------------+
| USB UART | on-chip | serial_esp32_usb |
+-----------+------------+------------------+
| GPIO | on-chip | gpio_esp32 |
+-----------+------------+------------------+
| UART | on-chip | uart_esp32 |
+-----------+------------+------------------+
| I2C | on-chip | i2c_esp32 |
+-----------+------------+------------------+
| SPI | on-chip | spi_esp32_spim |
+-----------+------------+------------------+
| ADC | on-chip | |
+-----------+------------+------------------+
Other hardware features have not been enabled yet for this board.
Connections and IOs
===================
The ICE-V Wireless provides 1 row of reference, ESP32-C3, and iCE40 signals
brought out to J3, as well as 3 PMOD connectors for interfacing directly to
the iCE40 FPGA. Note that several of the iCE40 pins brought out to the PMOD
connectors are capable of operating as differential pairs.
.. figure:: img/icev_wireless_back.jpg
:width: 400px
:align: center
:alt: ICE-V Wireless (Back)
ICE-V Wireless (Back)
The J3 pins are 4V, 3.3V, NRST, GPIO2, GPIO3, GPIO8, GPIO9, GPIO10, GPIO20,
GPIO21, FPGA_P34, and GND. Note that GPIO2 and GPIO3 may be configured for
ADC operation.
For PMOD details, please refer to the `PMOD Specification`_ and the image
below.
.. figure:: img/icev_wireless_pinout.jpg
:width: 400px
:align: center
:alt: ICE-V Wireless Pinout
Programming and Debugging
*************************
Programming and debugging for the ICE-V Wireless ESP32-C3 target is
incredibly easy 🎉 following the steps below.
Building and Flashing
=====================
For the :code:`Hello, world!` application, follow the instructions below.
.. zephyr-app-commands::
:zephyr-app: samples/hello_world
:board: icev_wireless
:goals: build flash
Since the Zephyr console is by default on the `usb_serial` device, we use
the espressif monitor to view.
.. code-block:: console
$ west espressif monitor
Debugging
=========
As with much custom hardware, the ESP32C3 modules require patches to
OpenOCD that are not upstreamed. Espressif maintains their own fork of
the project. The custom OpenOCD can be obtained by running the following extension:
.. code-block:: console
west espressif install
.. note::
By default, the OpenOCD will be downloaded and installed under $HOME/.espressif/tools/zephyr directory
(%USERPROFILE%/.espressif/tools/zephyr on Windows).
The Zephyr SDK uses a bundled version of OpenOCD by default. You can overwrite that behavior by adding the
``-DOPENOCD=<path/to/bin/openocd> -DOPENOCD_DEFAULT_PATH=<path/to/openocd/share/openocd/scripts>``
parameter when building.
Here is an example for building the :ref:`hello_world` application.
.. zephyr-app-commands::
:zephyr-app: samples/hello_world
:board: icev_wireless
:goals: build flash
:gen-args: -DOPENOCD=<path/to/bin/openocd> -DOPENOCD_DEFAULT_PATH=<path/to/openocd/share/openocd/scripts>
You can debug an application in the usual way. Here is an example for the
:ref:`hello_world` application.
.. zephyr-app-commands::
:zephyr-app: samples/hello_world
:board: icev_wireless
:maybe-skip-config:
:goals: debug
References
**********
.. _ICE-V Wireless Github Project:
https://github.com/ICE-V-Wireless/ICE-V-Wireless
.. _ESP32-C3-MINI-1 Datasheet:
https://www.espressif.com/sites/default/files/documentation/esp32-c3-mini-1_datasheet_en.pdf
.. _ESP32-C3 Datasheet:
https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf
.. _ESP32-C3 Technical Reference Manual:
https://www.espressif.com/sites/default/files/documentation/esp32-c3_technical_reference_manual_en.pdf
.. _iCE40 UltraPlus Family Datasheet:
https://www.latticesemi.com/-/media/LatticeSemi/Documents/DataSheets/iCE/iCE40-UltraPlus-Family-Data-Sheet.ashx
.. _PMOD Specification:
https://digilent.com/reference/_media/reference/pmod/pmod-interface-specification-1_2_0.pdf