-
Notifications
You must be signed in to change notification settings - Fork 8.4k
boards: pico_spe: add support #81003
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e896319
boards: pico_spe: add vendor
KwsBaer a5d0f02
boards: pico_spe: add support
KwsBaer 834564d
Revert "boards: pico_spe: add support"
KwsBaer 5551bc0
Revert "boards: pico_spe: add vendor"
KwsBaer 216267f
boards: pico_spe: add vendor
KwsBaer 5028574
boards: pico_spe: add support
KwsBaer 0fa57c4
boards: pico_spe: add adc test support
KwsBaer 690b60d
remove of wrong file
KwsBaer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| .. _boards-kws: | ||
|
|
||
| KWS Computersysteme Gmbh | ||
| ######################## | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 1 | ||
| :glob: | ||
|
|
||
| **/* | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Copyright (c) 2024 KWS Computersysteme Gmbh | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| config BOARD_PICO_SPE | ||
| select RP2_FLASH_W25Q080 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # Copyright (c) 2024 KWS Computersysteme Gmbh | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| if BOARD_PICO_SPE | ||
|
|
||
| if I2C_DW | ||
|
|
||
| config I2C_DW_CLOCK_SPEED | ||
| default 125 | ||
|
|
||
| endif # I2C_DW | ||
|
|
||
| config USB_SELF_POWERED | ||
| default n | ||
|
|
||
| config PHY_INIT_PRIORITY | ||
| default 82 | ||
| depends on NET_L2_ETHERNET && ETH_DRIVER | ||
|
|
||
| if NETWORKING | ||
|
|
||
| config NET_L2_ETHERNET | ||
| default y | ||
|
|
||
| if ETH_LAN865X | ||
|
|
||
| config NET_IF_MAX_IPV4_COUNT | ||
| default 2 | ||
|
|
||
| endif # ETH_LAN865X | ||
|
|
||
| endif # NETWORKING | ||
|
|
||
| endif # BOARD_PICO_SPE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Copyright (c) 2024 KWS Computersysteme Gmbh | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| config BOARD_PICO_SPE | ||
| select SOC_RP2040 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # This configuration allows selecting what debug adapter debugging Pico-SPE | ||
| # by a command-line argument. | ||
| # It is mainly intended to support both the 'picoprobe' and 'raspberrypi-swd' | ||
| # adapter described in "Getting started with Raspberry Pi Pico". | ||
| # And any other SWD debug adapter might also be usable with this configuration. | ||
|
|
||
| # Set RPI_PICO_DEBUG_ADAPTER to select debug adapter by command-line arguments. | ||
| # e.g.) west build -b pico_spe -- -DRPI_PICO_DEBUG_ADAPTER=raspberrypi-swd | ||
| # The value is treated as a part of an interface file name that | ||
| # the debugger's configuration file. | ||
| # The value must be the 'stem' part of the name of one of the files | ||
| # in the openocd interface configuration file. | ||
| # The setting is store to CMakeCache.txt. | ||
| if("${RPI_PICO_DEBUG_ADAPTER}" STREQUAL "") | ||
| set(RPI_PICO_DEBUG_ADAPTER "cmsis-dap") | ||
| endif() | ||
|
|
||
| board_runner_args(openocd --cmd-pre-init "source [find interface/${RPI_PICO_DEBUG_ADAPTER}.cfg]") | ||
| board_runner_args(openocd --cmd-pre-init "transport select swd") | ||
| board_runner_args(openocd --cmd-pre-init "source [find target/rp2040.cfg]") | ||
|
|
||
| # The adapter speed is expected to be set by interface configuration. | ||
| # But if not so, set 2000 to adapter speed. | ||
| board_runner_args(openocd --cmd-pre-init "set_adapter_speed_if_not_set 2000") | ||
|
|
||
| board_runner_args(jlink "--device=RP2040_M0_0") | ||
| board_runner_args(uf2 "--board-id=RPI-RP2") | ||
| board_runner_args(pyocd "--target=rp2040") | ||
|
|
||
| include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake) | ||
| include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) | ||
| include(${ZEPHYR_BASE}/boards/common/uf2.board.cmake) | ||
| include(${ZEPHYR_BASE}/boards/common/blackmagicprobe.board.cmake) | ||
| include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| board: | ||
| name: pico_spe | ||
| full_name: Pico-SPE | ||
| vendor: kws | ||
| socs: | ||
| - name: rp2040 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,285 @@ | ||
| .. zephyr:board:: pico_spe | ||
|
|
||
| Overview | ||
| ******** | ||
|
|
||
| The Pico-SPE is a small, low-cost, versatile boards from | ||
| KWS Computersysteme Gmbh. They are equipped with an RP2040 SoC, an on-board LED, | ||
| a USB connector, an SWD interface. The Pico-SPE additionally contains an | ||
| Microchip LAN8651 10Base-T1S module. The USB bootloader allows the | ||
| ability to flash without any adapter, in a drag-and-drop manner. | ||
| It is also possible to flash and debug the boards with their SWD interface, | ||
| using an external adapter. | ||
|
|
||
| Hardware | ||
| ******** | ||
| - Dual core Arm Cortex-M0+ processor running up to 133MHz | ||
KwsBaer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - 264KB on-chip SRAM | ||
| - 16MB on-board QSPI flash with XIP capabilities | ||
| - 16 GPIO pins | ||
| - 3 Analog inputs | ||
| - 2 UART peripherals | ||
| - 2 I2C controllers | ||
| - 16 PWM channels | ||
| - USB 1.1 controller (host/device) | ||
| - 8 Programmable I/O (PIO) for custom peripherals | ||
| - On-board LED | ||
| - 1 Watchdog timer peripheral | ||
| - Microchip LAN8651 10Base-T1S | ||
|
|
||
| Supported Features | ||
| ================== | ||
|
|
||
| The ``pico_spe`` board target supports the following | ||
| hardware features: | ||
|
|
||
| .. list-table:: | ||
| :header-rows: 1 | ||
|
|
||
| * - Peripheral | ||
| - Kconfig option | ||
| - Devicetree compatible | ||
| * - NVIC | ||
| - N/A | ||
| - :dtcompatible:`arm,v6m-nvic` | ||
| * - UART | ||
| - :kconfig:option:`CONFIG_SERIAL` | ||
| - :dtcompatible:`raspberrypi,pico-uart` | ||
| * - GPIO | ||
| - :kconfig:option:`CONFIG_GPIO` | ||
| - :dtcompatible:`raspberrypi,pico-gpio` | ||
| * - ADC | ||
| - :kconfig:option:`CONFIG_ADC` | ||
| - :dtcompatible:`raspberrypi,pico-adc` | ||
| * - I2C | ||
| - :kconfig:option:`CONFIG_I2C` | ||
| - :dtcompatible:`snps,designware-i2c` | ||
| * - SPI | ||
| - :kconfig:option:`CONFIG_SPI` | ||
| - :dtcompatible:`raspberrypi,pico-spi` | ||
| * - USB Device | ||
| - :kconfig:option:`CONFIG_USB_DEVICE_STACK` | ||
| - :dtcompatible:`raspberrypi,pico-usbd` | ||
| * - HWINFO | ||
| - :kconfig:option:`CONFIG_HWINFO` | ||
| - N/A | ||
| * - Watchdog Timer (WDT) | ||
| - :kconfig:option:`CONFIG_WATCHDOG` | ||
| - :dtcompatible:`raspberrypi,pico-watchdog` | ||
| * - PWM | ||
| - :kconfig:option:`CONFIG_PWM` | ||
| - :dtcompatible:`raspberrypi,pico-pwm` | ||
| * - Flash | ||
| - :kconfig:option:`CONFIG_FLASH` | ||
| - :dtcompatible:`raspberrypi,pico-flash` | ||
| * - Clock controller | ||
| - :kconfig:option:`CONFIG_CLOCK_CONTROL` | ||
| - :dtcompatible:`raspberrypi,pico-clock-controller` | ||
| * - UART (PIO) | ||
| - :kconfig:option:`CONFIG_SERIAL` | ||
| - :dtcompatible:`raspberrypi,pico-uart-pio` | ||
| * - SPI (PIO) | ||
| - :kconfig:option:`CONFIG_SPI` | ||
| - :dtcompatible:`raspberrypi,pico-spi-pio` | ||
| * - LAN8651 Single Pair Ethernet | ||
| - :kconfig:option:`CONFIG_NETWORKING` | ||
| - :dtcompatible:`microchip,lan865x` | ||
|
|
||
| Pin Mapping | ||
| =========== | ||
|
|
||
| The peripherals of the RP2040 SoC can be routed to various pins on the board. | ||
| The configuration of these routes can be modified through DTS. Please refer to | ||
| the datasheet to see the possible routings for each peripheral. | ||
|
|
||
| External pin mapping on the Pico-SPE is identical to the Pico, but note that internal | ||
| RP2040 GPIO lines 10, 11, 12, 13, 20, 21 are routed to the Microchip LAN8651 on the | ||
| Pico-SPE. | ||
|
|
||
| Default Zephyr Peripheral Mapping: | ||
| ---------------------------------- | ||
|
|
||
| .. rst-class:: rst-columns | ||
|
|
||
| - UART0_TX : P0 | ||
| - UART0_RX : P1 | ||
| - I2C0_SDA : P4 | ||
| - I2C0_SCL : P5 | ||
| - I2C1_SDA : P6 | ||
| - I2C1_SCL : P7 | ||
| - ADC_CH0 : P26 | ||
| - ADC_CH1 : P27 | ||
| - ADC_CH2 : P28 | ||
|
|
||
| Programmable I/O (PIO) | ||
| ********************** | ||
| The RP2040 SoC comes with two PIO periherals. These are two simple | ||
| co-processors that are designed for I/O operations. The PIOs run | ||
| a custom instruction set, generated from a custom assembly language. | ||
| PIO programs are assembled using :command:`pioasm`, a tool provided by Raspberry Pi. | ||
|
|
||
| Zephyr does not (currently) assemble PIO programs. Rather, they should be | ||
| manually assembled and embedded in source code. An example of how this is done | ||
| can be found at :zephyr_file:`drivers/serial/uart_rpi_pico_pio.c`. | ||
|
|
||
| Sample: SPI via PIO | ||
| ==================== | ||
|
|
||
| The :zephyr:code-sample:`bme280` sample includes a | ||
| demonstration of using the PIO SPI driver to communicate with an | ||
| environmental sensor. The PIO SPI driver supports using any | ||
| combination of GPIO pins for an SPI bus, as well as allowing up to | ||
| four independent SPI buses on a single board (using the two SPI | ||
| devices as well as both PIO devices). | ||
|
|
||
| Programming and Debugging | ||
| ************************* | ||
|
|
||
| Flashing | ||
| ======== | ||
|
|
||
| Using SEGGER JLink | ||
| ------------------ | ||
|
|
||
| You can Flash the pico_spe with a SEGGER JLink debug probe as described in | ||
| :ref:`Building, Flashing and Debugging <west-flashing>`. | ||
|
|
||
| Here is an example of building and flashing the :zephyr:code-sample:`blinky` application. | ||
|
|
||
| .. zephyr-app-commands:: | ||
| :zephyr-app: samples/basic/blinky | ||
| :board: pico_spe | ||
| :goals: build | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| west flash --runner jlink | ||
|
|
||
| Using OpenOCD | ||
| ------------- | ||
|
|
||
| To use CMSIS-DAP, you must configure **udev**. | ||
|
|
||
| Create a file in /etc/udev.rules.d with any name, and write the line below. | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| ATTRS{idVendor}=="2e8a", ATTRS{idProduct}=="000c", MODE="660", GROUP="plugdev", TAG+="uaccess" | ||
|
|
||
| This example is valid for the case that the user joins to ``plugdev`` groups. | ||
|
|
||
| The Pico-SPE has an SWD interface that can be used to program | ||
| and debug the on board RP2040. This interface can be utilized by OpenOCD. | ||
| To use it with the RP2040, OpenOCD version 0.12.0 or later is needed. | ||
|
|
||
| If you are using a Debian based system (including RaspberryPi OS, Ubuntu. and more), | ||
| using the `pico_setup.sh`_ script is a convenient way to set up the forked version of OpenOCD. | ||
|
|
||
| Depending on the interface used (such as JLink), you might need to | ||
| checkout to a branch that supports this interface, before proceeding. | ||
| Build and install OpenOCD as described in the README. | ||
|
|
||
| Here is an example of building and flashing the :zephyr:code-sample:`blinky` application. | ||
|
|
||
| .. zephyr-app-commands:: | ||
| :zephyr-app: samples/basic/blinky | ||
| :board: pico_spe | ||
| :goals: build flash | ||
| :gen-args: -DOPENOCD=/usr/local/bin/openocd -DOPENOCD_DEFAULT_PATH=/usr/local/share/openocd/scripts -DRPI_PICO_DEBUG_ADAPTER=cmsis-dap | ||
|
|
||
| Set the environment variables **OPENOCD** to :file:`/usr/local/bin/openocd` | ||
| and **OPENOCD_DEFAULT_PATH** to :file:`/usr/local/share/openocd/scripts`. This should work | ||
| with the OpenOCD that was installed with the default configuration. | ||
| This configuration also works with an environment that is set up by the `pico_setup.sh`_ script. | ||
|
|
||
| **RPI_PICO_DEBUG_ADAPTER** specifies what debug adapter is used for debugging. | ||
|
|
||
| If **RPI_PICO_DEBUG_ADAPTER** was not assigned, ``cmsis-dap`` is used by default. | ||
| The other supported adapters are ``raspberrypi-swd``, ``jlink`` and ``blackmagicprobe``. | ||
| How to connect ``cmsis-dap`` and ``raspberrypi-swd`` is described in `Getting Started with Pico-SPE`_. | ||
| Any other SWD debug adapter maybe also work with this configuration. | ||
|
|
||
| The value of **RPI_PICO_DEBUG_ADAPTER** is cached, so it can be omitted from | ||
| ``west flash`` and ``west debug`` if it was previously set while running | ||
| ``west build``. | ||
|
|
||
| **RPI_PICO_DEBUG_ADAPTER** is used in an argument to OpenOCD as ``"source [find interface/${RPI_PICO_DEBUG_ADAPTER}.cfg]"``. | ||
| Thus, **RPI_PICO_DEBUG_ADAPTER** needs to be assigned the file name of the debug adapter. | ||
|
|
||
| You can also flash the board with the following | ||
| command that directly calls OpenOCD (assuming a SEGGER JLink adapter is used): | ||
|
|
||
| .. code-block:: console | ||
|
|
||
| $ openocd -f interface/jlink.cfg -c 'transport select swd' -f target/rp2040.cfg -c "adapter speed 2000" -c 'targets rp2040.core0' -c 'program path/to/zephyr.elf verify reset exit' | ||
|
|
||
| Using UF2 | ||
| --------- | ||
|
|
||
| If you don't have an SWD adapter, you can flash the Pico-SPE with | ||
| a UF2 file. By default, building an app for this board will generate a | ||
| :file:`build/zephyr/zephyr.uf2` file. If the Pico is powered on with the ``BOOTSEL`` | ||
| button pressed, it will appear on the host as a mass storage device. The | ||
| UF2 file should be drag-and-dropped to the device, which will flash the Pico. | ||
|
|
||
| Debugging | ||
| ========= | ||
|
|
||
| The SWD interface can also be used to debug the board. To achieve this, you can | ||
| either use SEGGER JLink or OpenOCD. | ||
|
|
||
| Using SEGGER JLink | ||
| ------------------ | ||
|
|
||
| Use a SEGGER JLink debug probe and follow the instruction in | ||
| :ref:`Building, Flashing and Debugging<west-debugging>`. | ||
|
|
||
|
|
||
| Using OpenOCD | ||
| ------------- | ||
|
|
||
| Install OpenOCD as described for flashing the board. | ||
|
|
||
| Here is an example for debugging the :zephyr:code-sample:`blinky` application. | ||
|
|
||
| .. zephyr-app-commands:: | ||
| :zephyr-app: samples/basic/blinky | ||
| :board: pico_spe | ||
| :maybe-skip-config: | ||
| :goals: debug | ||
| :gen-args: -DOPENOCD=/usr/local/bin/openocd -DOPENOCD_DEFAULT_PATH=/usr/local/share/openocd/scripts -DRPI_PICO_DEBUG_ADAPTER=raspberrypi-swd | ||
|
|
||
| As with flashing, you can specify the debug adapter by specifying **RPI_PICO_DEBUG_ADAPTER** | ||
| at ``west build`` time. No needs to specify it at ``west debug`` time. | ||
|
|
||
| You can also debug with OpenOCD and gdb launching from command-line. | ||
| Run the following command: | ||
|
|
||
| .. code-block:: console | ||
|
|
||
| $ openocd -f interface/jlink.cfg -c 'transport select swd' -f target/rp2040.cfg -c "adapter speed 2000" -c 'targets rp2040.core0' | ||
|
|
||
| On another terminal, run: | ||
|
|
||
| .. code-block:: console | ||
|
|
||
| $ gdb-multiarch | ||
|
|
||
| Inside gdb, run: | ||
|
|
||
| .. code-block:: console | ||
|
|
||
| (gdb) tar ext :3333 | ||
| (gdb) file path/to/zephyr.elf | ||
|
|
||
| You can then start debugging the board. | ||
|
|
||
| .. target-notes:: | ||
| .. _pico_setup.sh: | ||
| https://raw.githubusercontent.com/raspberrypi/pico-setup/master/pico_setup.sh | ||
|
|
||
| .. _Getting Started with Pico-SPE: | ||
| https://kws-computer.de/go/pico-spe-getting-started | ||
|
|
||
| .. _Pico-SPE Documentation: | ||
| https://kws-computer.de/go/pico-spe-datasheet | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can be merged into the other commit