yes, this is correct. if you don't need h/w video or DSP, then you
don't care. remoteproc is the linux kernel framework we use for
communication between the main core (A9) and the remote cores (DSP,
h/w accelerator), see
http://lwn.net/Articles/448562/ or
http://omappedia.org/wiki/Category:RPMsg.
when a 'remote core' is enabled / detected, the framework will attempt
to load the firmware file using the linux kernel firmware loading API
(then udev in user space).
if the firmware is missing from root FS you get this warning, but it's
not a problem if you don't care about the features the remote core
offers... if you have the firmware, remoteproc will attempt to load
it, the remote core will boot and 'export its services/channels'. then
remoteproc will attempt to bind each service/channel with the
corresponding rpmsg driver. rpmsg is the linux framework to exchange
messages with a remote proc ...
> Regards,
> Andre