hi I'm looking for a way to get per-frame status from the subdev, in the context of a camera like, the camera has a status bit saying if it's correct or not and I'd like to report that to the controller I'm thinking that a control + a bottom half thread in the capture ISR to read that control from the subdev would do but maybe there's a better way? paulk-leonov: Many receivers provide start of frame event which you can subscribe in user space. Then you can read the control you're interested in. If the start of frame is what you need, that is. Other interrupts are end of frame or when the frame has been written to memory, but there's currently no event for this as it's commonly less needed and there's usually a related buffer available, too. sailus: I'm not sure what would be a good fit -- I also want to catch transmission errors in practice I'm doing mipi csi-2 capture as: CSI controller -- subdev --> MIPI CSI-2 controller -- subdev --> camera and basically the mipi csi-2 controller has an interrupt that can report transmission errors or corruption and I want to report that to "CSI controller" which sets the frame status paulk-leonov: Does your CSI-2 receiver driver manage the DMA, too? sailus: no, it's like an internal FIFO between the CSI-2 and the CSI controller (which does the dma) sailus: at this point I'm considering V4L2_DEVICE_NOTIFY_EVENT with a custom event giving the status to notify the controller of a rx error I think there are other drivers that could use this, too, so it'd be nice to generalise this somehow. In most cases the CSI-2 receiver and the DMA are in one and the same device, but that's indeed not always the case. sailus: do you think an event-based mechanism would work? I'm a bit worried about races between IRQs and whether an erroneous frame will trigger an IRQ on the controller that does DMA or not dafna2: ping