Re: [RFC PATCH] mailbox: omap-mailbox: Flush out pending msgs before entering suspend
From: Beleswar Prasad Padhi
Date: Fri Oct 24 2025 - 00:48:46 EST
Hi Hari,
On 23/10/25 22:48, Hari Nagalla wrote:
> On 10/22/25 23:38, Beleswar Prasad Padhi wrote:
>>> I'm still not convinced just throwing out messages is the correct thing
>>> to do here, but for now at very least let's print some warning here when
>>> messages get zapped.
>>
>> I am also considering:
>> 1. Mailbox queues for RTOS-RTOS communication could be
>> firewalled for safety/FFI usecases. In that case, the above flush
>> would result in an exception.
> Yes, flushing all mailbox messages during suspend is not a good solution, as there can be in flight RTOS-RTOS communications for non participating cores.
>> 2. This driver is common to OMAP SoCs which supported proper
>> suspend/resume, meaning those rprocs could consume pending
>> messages in resume. So clearing out messages from Linux
>> might not be the best thing to do here.
>>
>> What else can we do here? Should we just fallback to letting
>> Linux see only it's required queues for IPC? By setting
>> "ti,mbox-num-fifos = <4>"?
> This makes the assumption that the first 4 FIFOs of the mailbox are used? and why 4? are you assuming first 2 for Linux IPC and next 2 for RTOS-RTOS communications?
4 is just an example. The mailbox FIFO assignment is also
a firmware configuration. So the idea was to let Linux only
care about the FIFOs it uses for Linux<->RTOS
communication, ignoring the ones used for
RTOS<->RTOS communication.
>
> How about, let the mailbox driver simply save and restore the config registers and ignore the FIFO messages? i.e if they are lost with the main domain going into OFF, so be it.
Hmm, this was how it was until 2016 when commit
9f0cee984a25 ("mailbox/omap: check for any unread
messages during suspend") was added. Do you
suggest reverting 9f0cee984a25? Hope it doesn't
break any existing usecases for OMAP platforms.