Linux remoteproc framework overview

Applicable for STM32MP15x lines

This article gives information about the Linux® remoteproc framework.

1 Framework purpose[edit]

The remote processor (RPROC) framework allows the different platforms/architectures to control (power on, load firmware, power off) remote processors while abstracting the hardware differences. In addition it offers services to monitor and debug the remote coprocessor.

2 System overview[edit]

Remoteproc overview.png

2.1 Component description[edit]

remoteproc: this is the remote processor framework generic part. Its role is to:

  • Load the ELF firmware in the remote processor memory.
  • Parse the firmware resource table to set associated resources (such as IPC, memory carveout and traces).
  • Control the remote processor execution (start, stop...).
  • Provide a service to monitor and debug the remote firmware.

stm32_rproc: this is the remote processor platform driver. Its role is to:

  • Register the vendor specific functions (callback) to the RPROC framework.
  • Handle the platform resources associated to the remote processor (such as registers, watchdogs, reset, clock and memories).
  • Forward notifications (kicks) to the remote processor through the mailbox framework.

2.2 API description[edit]

The API usage and remote processor binary firmware structure (resource table, ...) are described in the Linux kernel remoteproc documentation [1].

3 Configuration[edit]

Warning white.png Warning
The remoteproc framework needs the mailbox framework to be configured. Refer to mailbox kernel configuration for details.

3.1 Kernel configuration[edit]

Activate the remoteproc driver and framework in the kernel configuration using the Linux Menuconfig tool: Menuconfig or how to configure kernel.

Device drivers  --->
   Remoteproc drivers  --->
     <*> Support for Remote Processor subsystem
     <*> STM32 remoteproc support

3.2 Device tree configuration[edit]

The STM32 remoteproc bindings[2] documentation deals with all required or optional STM32 remoteproc DT properties.

It also introduces memory regions properties that define the RETRAM and MCUSRAM base addresses and sizes in RETRAM and MCUSRAM, from the Arm® Cortex®-A point of view..
Simplified example:

/* Memory region declaration, containing vring and rpmsg buffers */
reserved-memory {
	/* RETRAM memory region reserved for firmware code and data */
        retram: retram@0x38000000 {
		reg = <0x38000000 0x10000>;
	};
	/* MCUSRAM memory region reserved for firmware code and data */
	mcusram: mcusram@0x10000000 {
		reg = <0x10000000 0x40000>;
	};
	/* MCUSRAM aliased memory region reserved for firmware code and data */
	mcusram2: mcusram2@0x30000000 {
		reg = <0x30000000 0x40000>;
	};
 /* stm32 M4 remoteproc device */
 m4_rproc: m4@0 {
	...
	memory-region = <&retram>, <&mcusram>, <&mcusram2>, <&vdev0vring0>,
			<&vdev0vring1>, <&vdev0buffer>;
	...
};
Info white.png Information
The firmware memory mapping must be set according to these values in the STM32Cube firmware linker script.

For additional details, please refer to STM32MP15 Memory mapping.

4 How to use the framework[edit]

4.1 Remote processor boot[edit]

There are three possibilities to load and start the remote processor firmware:

  • Start the firmware through the SysFS interface.
  • Automatically start the firmware on remoteproc driver probing (not recommended by STMicroelectronics).
  • Early boot the firmware during boot time (before Linux boot).

4.1.1 Remote processor boot through sysfs[edit]

  • The firmware components are stored in the file system, by default in the /lib/firmware/ folder. Optionally another location can be set. In this case the remoteproc framework parses this new path in priority.

Below the command for adding a new path for firmware parsing:

Board $> echo -n <firmware_path> > /sys/module/firmware_class/parameters/path
Warning white.png Warning
This path is common for all firmwares loaded by Linux (Bluetooth, Wifi...)
  • If the firmware elf filename differs from the default one (rproc-%s-fw), set the name with the following command: ( replace X with remoteproc instance number: 0 by default)
Board $> echo -n <firmware_name.elf> > /sys/class/remoteproc/remoteprocX/firmware
  • To start the firmware, use the following command:
Board $> echo start >/sys/class/remoteproc/remoteprocX/state
Info white.png Information
Based on the above commands, a userland service can be implemented to automatically load the firmware during the userland initialization phase.

4.1.2 Remote processor 'auto' boot (not recommended by STMicroelectronics)[edit]

The remote processor can be automatically booted during platform boot. To do this, the following conditions must be fulfilled:

  • The firmware must be present in /lib/firmware before the remoteproc driver is probed.
  • The filesystem on Linux (Cortex-A) must be available before the remoteproc driver is probed. However, in normal conditions, the remoteproc driver is probed before the filesystem is mounted, and the firmware is consequently not available during the Linux driver probing phase. Possible solutions could be:
  • to use an initramfs[3]
  • or compile remoteproc as a module and not as kernel built-in driver.
  • The firmware must be named rproc-%s-fw, where %s corresponds to the name of the remoteproc node in the device tree. For example, for rproc-m4-fw, the remoteproc device tree must be defined as follows:
m4 {
	compatible = "st,stm32mp1-rproc";
[...]
	status = "okay";
};
  • The "st,auto_boot" property has to be defined in the remoteproc node device tree:
m4 {
	compatible = "st,stm32mp1-rproc";
[...]
        st,auto-boot =  <1>;
        status = "okay";
};

4.1.3 Remote processor 'early' boot[edit]

The coprocessor can be started by the second stage bootloader (eg U-Boot). This mode allows to start the coprocessor firmware before the Linux one. For instance, it can be used to execute first actions for projects that have hard constraints on boot time.
In such case the remoteproc framework can attach itself to the firmware by parsing the resource table, based on the information added by the bootloader in the backup registers (Cortex-M4 state and resource table address).

4.1.3.1 Automatic attach on Linux boot[edit]

On Linux boot, the remoteproc framework can automatically attach itself to the coprocessor firmware if the "st,auto_boot" property is defined in the remoteproc node device tree:

m4 {
	compatible = "st,stm32mp1-rproc";
[...]
        st,auto-boot =  <1>;
        status = "okay";
};

This mode is recommended to start the resource manager framework during the Linux boot. It prevents a system resource, used by the Cortex-M4 only, from being disabled by Linux at the end of its boot phase.

4.1.3.2 Manual attach by Linux application[edit]

After the Linux boot, the remoteproc framework can attach to the coprocessor firmware using the following command:

Board $> echo start >/sys/class/remoteproc/remoteprocX/state

Refer to How to start the coprocessor from the bootloader for details on this mode.

4.2 Remote processor stop[edit]

It is possible to stop the remote processor firmware through the SysFS interface. On stop request, the stm32_rproc driver:

  • informs the remote firmware relying on the "shutdown" channel of the the IPCC mailbox. This mechanism allows the remote processor firmware to shut down properly.
  • resets the coprocessor, on "shutdown" message acknowledgement or after a timeout of 500 ms.
Info white.png Information
The use of the IPCC "shutdown" channel is optional. If the mailbox channel is not declared in the device trree, the remote processor is immediately reset, without informing firmware of the remote processor.

To stop the firmware, use the following command:

Board $> echo stop >/sys/class/remoteproc/remoteprocX/state

5 How to trace and debug the framework[edit]

5.1 How to monitor[edit]

  • The remoteproc firmware state can be monitored using following command:
Board $> cat /sys/class/remoteproc/remoteprocX/state

5.2 How to trace[edit]

  • remoteproc framework and driver debug traces can be added in the kernel logs thanks to the dynamic debug mechanism:
Board $> echo -n 'file stm32_rproc.c +p' > /sys/kernel/debug/dynamic_debug/control
Board $> echo -n 'file remoteproc*.c +p' > /sys/kernel/debug/dynamic_debug/control
  • A log buffer can de defined in the remoteproc firmware and declared in the resource table. If the feature is activated on the remote firmware, log traces can be dumped from the trace buffer using the following command:
Board $>cat /sys/kernel/debug/remoteproc/remoteprocX/trace0

6 References[edit]