05-18-2020 05:46 AM
We often use mailboxes between microblaze and zynq or between microblaze and microblaze when using freertos or baremetal.
Now we need to use the mailbox on linux, but we did not find the mailbox device in the /dev. How do I use it?
Is it necessary to use rpmsg and other openamp functions in Linux?
05-21-2020 01:26 AM
No linux driver for MB?
05-22-2020 06:13 AM
Looking at the Linux source tree, it does not appear so. Even if there was, I don't think it would show up in /dev like a char device. I believe mailbox controller drivers are intended to be manipulated by other client drivers within the kernel:
https://www.kernel.org/doc/Documentation/mailbox.txt
Looking at the datasheet, the device seems simple enough that you can probably memory map the register space via UIO or similar and write a simple userspace driver application to interface to it.
05-25-2020 06:28 AM
I have used the UIO in the past for this
11-27-2020 12:46 PM - edited 11-28-2020 03:08 AM
Hi @stephenm
Could you go deeper into that approach? or provide a reference? In my mind openAMP should be the choice (because it's the only one I can picture), so I am quite interested on yours.
Thanks,
Jose.