Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A21BDC43381 for ; Wed, 20 Feb 2019 15:25:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7C56E20880 for ; Wed, 20 Feb 2019 15:25:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727469AbfBTPZP (ORCPT ); Wed, 20 Feb 2019 10:25:15 -0500 Received: from iolanthe.rowland.org ([192.131.102.54]:48590 "HELO iolanthe.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1726405AbfBTPZP (ORCPT ); Wed, 20 Feb 2019 10:25:15 -0500 Received: (qmail 3003 invoked by uid 2102); 20 Feb 2019 10:25:14 -0500 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 20 Feb 2019 10:25:14 -0500 Date: Wed, 20 Feb 2019 10:25:14 -0500 (EST) From: Alan Stern X-X-Sender: stern@iolanthe.rowland.org To: Stanislaw Gruszka cc: Stefan Wahren , Lorenzo Bianconi , Felix Fietkau , Doug Anderson , Minas Harutyunyan , USB list , linux-wireless Subject: Re: [BUG] mt76x0u: Probing issues on Raspberry Pi 3 B+ In-Reply-To: <20190220102050.GA7195@redhat.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Wed, 20 Feb 2019, Stanislaw Gruszka wrote: > On Tue, Feb 19, 2019 at 10:40:47AM -0500, Alan Stern wrote: > > On Tue, 19 Feb 2019, Stanislaw Gruszka wrote: > > > > > It would be interesting why urb->num_sgs = 0 & urb->sg cause > > > the troubles. This is how usb_sg_init() submit urbs for sg_tablesize = 0 > > > controllers. So either are there are some requirement on urb->sg > > > mapped via dma_map_page() (which mt76usb does not meet) not needed > > > for urb->transfer_buffer mapped via dma_map_single() or there > > > is something wrong in dwc2 with sg and this driver will not > > > work with urb_sg_init() as well. I don't have hardware to investigate > > > this and don't want to bother you with more patches. > > > > urb->sg != NULL and urb->num_sgs == 0 means that the transfer buffer > > must fit into a single page, which is pointed to by the first element > > of the scatterlist. > > I asked about that in other thread > https://lore.kernel.org/linux-wireless/2cc5674a-a3a0-d8fe-65f5-4357da9b85d3@arm.com/ > > the answer was it is weird but valid. However I think do dma_map_page() > on buffer not fit in the single page is asking for troubles. I just posted > patch that should fix this for mt76usb. > > > But now that I look at the code in usb_sg_init(), it seems odd that the > > !use_sg case doesn't increment sg during each loop iteration. I don't > > see how that could possibly work -- it looks like a bug! > > Looks for me that this is done via for_each_sg(sg, sg, io->entries, i) loop. Ah, of course. Thanks for straightening me out; it's surprising what blind spots one's brain can develop. Alan Stern