Ccing: Michael Riesch <michael.riesch@xxxxxxxxxxxxxx> Thinh Nguyen <Thinh.Nguyen@xxxxxxxxxxxx> On Mon, Apr 22, 2024 at 05:21:09PM -0700, Avichal Rakesh wrote:
On 4/21/24 16:25, Michael Grzeschik wrote:On Tue, Apr 09, 2024 at 11:24:56PM +0200, Michael Grzeschik wrote:This patch series is improving the size calculation and allocation of the uvc requests. Using the currenlty setup frame duration of the stream it is possible to calculate the number of requests based on the interval length.The basic concept here is right. But unfortunatly we found out that together with Patch [1] and the current zero length request pump mechanism [2] and [3] this is not working as expected. The conclusion that we can not queue more than one frame at once into the hw led to [1]. The current implementation of zero length reqeusts which will be queued while we are waiting for the frame to finish transferring will enlarge the frame duration. Since every zero-length request is still taking up at least one frame interval of 125 us.I haven't taken a super close look at your patches, so please feel free to correct me if I am misunderstanding something. It looks like the goal of the patches is to determine a better number and size of usb_requests from the given framerate such that we send exactly nreqs requests per frame where nreqs is determined to be the exact number of requests that can be sent in one frame interval?
It does not need to be the exact time, actually it may not be exact. Scattering the data over all requests would not leave any headroom for any latencies or overhead.
As the logic stands, we need some 0-length requests to be circulating to ensure that we don't miss ISOC deadlines. The current logic unconditionally sends half of all allocated requests to be circulated. With those two things in mind, this means than video_pump can at encode at most half a frame in one go, and then has to wait for complete callbacks to come in. In such cases, the theoretical worst case for encode time is 125us * (number of requests needed per frame / 2) + scheduling delays as after the first half of the frame has been encoded, the video_pump thread will have to wait 125us for each of the zero length requests to be returned. The underlying assumption behind the "queue 0-length requests" approach was that video_pump encodes the frames in as few requests as possible and that there are spare requests to maintain a pressure on the ISOC queue without hindering the video_pump thread, and unfortunately it seems like patch 3/3 is breaking both of them?
Right.
Assuming my understanding of your patches is correct, my question is: Why do we want to spread the frame uniformly over the requests instead of encoding it in as few requests as possible. Spreading the frame over more requests artificially increases the encode time required by video_pump, and AFAICT there is no real benefit to it?
Thinh gave me the advise that it is better to use the isoc stream constantly filled. Rather then streaming big amounts of data in the beginning of an frameinterval and having then a lot of spare time where the bandwidth is completely unsused. In our reallife scenario streaming big requests had the impact, that the dwc3 core could not keep up with reading the amount of data from the memory bus, as the bus is already under heavy load. When the HW was then not able to transfer the requested and actually available amount of data in the interval, the hw did give us the usual missed interrupt answer. Using smaller requests solved the problem here, as it really was unnecessary to stress the memory and usb bus in the beginning as we had enough headroom in the temporal domain. Which then led to the conclusion that the number of needed requests per image frame interval is calculatable since we know the usb interval length. @Thinh: Correct me if I am saying something wrong here.
Therefor to properly make those patches work, we will have to get rid of the zero length pump mechanism again and make sure that the whole business logic of what to be queued and when will only be done in the pump worker. It is possible to let the dwc3 udc run dry, as we are actively waiting for the frame to finish, the last request in the prepared and started list will stop the current dwc3 stream and for no underruns will occur with the next ep_queue.One thing to note here: The reason we moved to queuing 0-length requests from complete callback was because even with realtime priority, video_pump thread doesn't always meet the ISOC queueing cadence. I think stopping and starting the stream was briefly discussed in our initial discussion in https://lore.kernel.org/all/20230419001143.pdxflhzyecf4kvee@xxxxxxxxxxxx/ and Thinh mentioned that dwc3 controller does it if it detects an underrun, but I am not sure if starting and stopping an ISOC stream is good practice.
The realtime latency aspect is not an issue anymore if we ensure that we always keep only one frame in the hw ring buffer. When the pump worker ensure that it will always run through one full frame the scheduler has no chance to break our running dwc3 stream. Since the pump is running under a while(1) this should be possible. Also with the request amount precalculation we can always encode the whole frame into all available requests and don't have to wait for requests to be available again. Together with the latest knowladge about the underlying hw we even need to only keep one frame in the HW ring buffer. Since we have some interrupt latency, keeping more frames in the ring buffer, would mean that we are not able to tag the currently streamed frame properly as errornous if the dwc3 hw ring buffer is already telling the host some data about the next frame. And as we already need to wait for the end of the frame to finish, based on the assumption that only one frame is enqueued in the ring buffer the hw will stop the stream and the next requst will start a new stream. So there will no missed underruns be happening. So the main fact here is, that telling the host some status about a frame in the past is impossible! Therefor the first request of the next hw stream need to be the one that is telling the Host if the previous frame is ment to be drawn or not.
Someone better versed in USB protocol can probably confirm, but it seems somewhat hacky to stop the ISOC stream at the end of the frame and restart with the next frame.
All I know is that the HW mechanism that is reading from the trb ring buffer is started or stopped I don't know if really the ISOC stream is stopped and restarted here or what that means on the real wire. And if so, I am unsure if that is really a problem or not. Thinh? Regards, Michael -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
Attachment:
signature.asc
Description: PGP signature