On Tue, May 17, 2022 at 05:16:26PM +0200, David Jander wrote: > Mark Brown wrote: > > I think the worst case would be mixing latency sensitive and throughput > > sensitive devices, or possibly tasks on a device. As you say there's an > > element of system design here. > Sure. I have combined NOR-flash chips on the same SPI bus with an MCP2515 CAN > controller in the past. But I knew that the NOR-flash chip would only ever be > accessed during a firmware update or from the bootloader. Never together with > CAN communication. If I did, I would have lost CAN messages guaranteed. So > you can have compromises. I (as HW designer) in this case would never expect > the kernel to try to make this work concurrently, and IMHO we (as > kernel developers) shouldn't try in such extreme cases either. Part of the worry here is if we manage to do something that plays badly with tools like real time scheduling that allows people to manage this stuff, causing problems for something that otherwise works fine. > > OK, no - I'm proposing actually putting the message onto the hardware > > from interrupt context. > Nice! I like that idea. Do you want to somehow extend spi_async() to do this > transparently? So we just need to introduce a second function > ("spi_async_await()" ?) which would wait for completion and collect the RX > buffer? We shouldn't need a new API to wait for the async operation to complete, hopefully the existing one is fine. > To sum up all possible patches you would accept if I understood correctly: > 1. Make the stats/accounting code be NOP with a sysfs or similar toggle. Or otherwise make it unobtrusive (eg, with similar techniques to those used by the networking API). > 2. Enable the re-use of messages with once in lifetime prepare/map/validate. > > 3. Introduce spi_async_await() (or similar), to wait for completion of an > async message. > > 4. Enable SPI drivers to tell the core (spi.c) under which conditions it can > fire a message asynchronously without the need for the worker queue and > implement support for those cases. Conditions involve max. transfer size, CS > non-sleep access, etc... but it should probably be up to the SPI driver to > decide I guess (ctlr->can_send_uninterruptible(msg)). > > Do I miss something? That's roughly it, plus a general push to optimise the hot path. > Minor concern about 4. above: Hopefully the decision can be made very quickly > (i.e. without trying and failing). Maybe this decision result can be cached in > the struct spi_message, so it can be re-used (see point 2)? Maybe as part of > prepare or validate? Yes, we need to do this at validation time to play with the reuse I think. > I feel confident that these 4 modifications will have enough of a performance > impact if fully exploited by the MCP2518FD driver, that overhead will no > longer be a concern. Just the small matter of implementing them then :/