Skip to content

Latest commit

 

History

History
229 lines (161 loc) · 8.32 KB

README.rst

File metadata and controls

229 lines (161 loc) · 8.32 KB

Sming RP2040 Architecture

Support building Sming for the Raspberry Pi RP2040 SOC.

Testing so far has been limited to the Rasperry Pi Pico, but there are lots of other boards available. Configure this using the :envvar:`PICO_BOARD` setting. The default is pico. You can find the full list here.

Special mention to the arduino-pico project https://github.com/earlephilhower/arduino-pico. Lots of helpful stuff in there!

Note

This architecture should be considered experimental at present.

Tested and working:

In progress:

Networking
A skeleton WiFi/lwip2 support framework is provided sufficient to build samples with Networking enabled, but it is currently non-functional. The goal is to allow use of networking adapters such as Ethernet over SPI, similar to how ESP32. USB offers the possibility of CDMA networking for mobile applications.

Yet to be implemented:

USB
Best to write a separate Sming-USB library (based on TinyUSB) to support the RP2040, ESP32-S2 & ESP32-S3 variants. Needs some thought about good integration into the framework. Arduino-Pico overrides HardwareSerial to support serial devices, we can do something similar.
HardwareSPI
To support DMA, etc.
Analogue I/O
Has 4 channels + temperature.
PWM
Hardware can drive up to 16 outputs and measure input frequency/duty cycle.
I2C
Has hardware support
RTC
Can wake from deep sleep but requires an external clock (e.g. 32kHz crystal) and appropriate API. (Setting and reading the time is implemented.)
Low-power modes
Deep sleep / suspend / power-saving
Dual-core support
RP2040 is a dual-core processor!
PIO (Programmable I/O)
A killer feature for the RP2040. Uses range from simple glue logic to I2S, etc.
Crash/exception handling & serial debugging
RP2040 supports JTAG debugging but requires extra hardware. Serial debugging is often enough and easier to set up. Requires GDB stub plus implementing crash handler callbacks, etc.
Multi-boot / OTA updates.
If you run make map you'll see there is no bootloader! It's part of the firmware image at present. Adding RP2040 support to rBoot would probably be simplest.

Requirements

These requirements are in addition to the standard Sming setup.

The easiest way to get started is with the Sming installer - see :doc:`/getting-started/index`.

Note: Windows is not currently included in the chocolatey repository. The following instructions should help.

Compiler/linker

The RP2040 contains two ARM Cortex-M0+ cores. Tools for all platforms can be downloaded from the ARM developer website.

Unzip the archive to a suitable location (e.g. /opt/rp2040 or c:\tools\rp2040) and set :envvar:`PICO_TOOLCHAIN_PATH` accordingly.

Note

At time of writing the Ubuntu repositories contain an older version of this toolchain. It also does not contain GDB, but can be installed separately:

sudo apt install gcc-arm-none-eabi gdb-multiarch

To use gdb-multiarch you'll need to do this:

make gdb GDB=gdb-multiarch
Ninja

This is used to build the RP2040 SDK code:

sudo apt install ninja-build

It is available for other platforms at https://ninja-build.org/ and consists of a single executable file. The application should either be in the system path, or set :envvar:`NINJA` to the full path of the executable file.

If you have Sming working with the ESP32 then you'll already have it installed.

Setup and programming

Serial support requires a 3.3v USB adapter connected to the appropriate pins:

  • UART0: TX = 0, RX = 1
  • UART1: TX = 4, RX = 5

To program your device, unplug the USB cable (i.e. remove power from the device) then hold down the BOOTSEL button whilst plugging it back in again.

You can then run:

make flash

as usual and the device will be programmed.

Once Sming is running on the device, reprogramming is simpler and only requires pressing the BOOTSEL button (no power cycle).

If the firmware has crashed or stalled the watchdog timer should reboot the system after 8 seconds, at which point BOOTSEL should be detected. So just hold the button down until this happens.

If all else fails, go through the initial power-cycle process.

This behaviour can be disabled using the :envvar:`ENABLE_BOOTSEL` setting.

Boot process

Unlike the Espressif parts, the RP2040 is not programmed via the serial port, but written to the device when configured as a Mass Storage device (removable flash drive).

Data to be flashed must be in UF2 format and sent as a single file. See :component-rp2040:`uf2`.

Once the file has finished sending the RP2040 reboots itself into normal operating mode (assuming BOOTSEL has been released).

The RP2040 can also be programmed via JTAG debugging but this requires additional hardware and setup.

Note

The RP2040 bootloader does not include support for reading flash memory via mass storage, so commands such as make verifyflash won't work at present.

Source code

The RP2040 is a very capable SOC, albeit without WiFi. A massive advantage is that the platform is fully open-source. Even the bootrom is published!

Here's a summary of the various Github repositories the Raspberry Pi Foundation have made available:

https://github.com/raspberrypi/pico-sdk
The core SDK for the RP2040 SOC. Sming includes this as a submodule.
https://github.com/raspberrypi/picotool

This is a tool for inspecting RP2040 binaries, and interacting with RP2040 devices when they are in BOOTSEL mode. It does this by talking to a custom USB device implemented in the RP2040 bootrom.

Getting this to build is a bit fiddly. So far I've managed without it, but there is a picotool component in the framework which can be used to try building it.

https://github.com/raspberrypi/pico-bootrom
Contents of the RP2040 boot rom. Very handy to be able to see this.
https://github.com/raspberrypi/pico-examples
Examples using the pico SDK directly.
https://github.com/raspberrypi/picoprobe
An RP2040 board can be used as a low-cost JTAG adapter using this firmware. Takes some setting up to use though. See [Getting Started PDF](https://datasheets.raspberrypi.org/pico/getting-started-with-pico.pdf) for details.
https://github.com/raspberrypi/pico-extras
Some additional libraries which may or may not end up in the SDK.
https://github.com/raspberrypi/pico-playground
Further examples using the pico-extras libraries.

Build variables

.. envvar:: PICO_TOOLCHAIN_PATH

   This contains the base directory for the toolchain used to build the framework.
   Pre-compiled toolchains can be downloaded from the
   `ARM Developer website <https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads>`__.

Components

.. toctree::
   :glob:
   :maxdepth: 1
   :titlesonly:

   Components/sming-arch/index
   Components/*/index