Re: [PATCH 02/12 net-next] qca_spi: Improve SPI IRQ handling
From: Stefan Wahren <wahrenst@gmx.net>
Date: 2023-12-17 19:18:14
Also in:
lkml
From: Stefan Wahren <wahrenst@gmx.net>
Date: 2023-12-17 19:18:14
Also in:
lkml
Hi Andrew, Am 17.12.23 um 19:14 schrieb Andrew Lunn:
On Thu, Dec 14, 2023 at 04:09:34PM +0100, Stefan Wahren wrote:quoted
The functions qcaspi_netdev_open/close are responsible of request & free of the SPI interrupt, which wasn't the best choice because allocation problems are discovered not during probe. So let us split IRQ allocation & enabling, so we can take advantage of a device managed IRQ.Could you replace the kernel thread with a threaded interrupt handler?
the kernel thread is responsible for receiving, transmitting and reset handling (there is no GPIO reset in this driver) which must be synchronized along the same SPI interface. The interrupt just signalize a chip reset or a received packet is available. Could you please elaborate this request more in detail: What is the problem with the kernel thread? Why should i use the threaded interrupt as a replacement instead of e.g. workqueue? Please don't get me wrong, but i need to convince my employer for such a big rewrite. Regards
Andrew