From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 20C46C43334 for ; Tue, 7 Jun 2022 13:22:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244570AbiFGNWM (ORCPT ); Tue, 7 Jun 2022 09:22:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35558 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243398AbiFGNWL (ORCPT ); Tue, 7 Jun 2022 09:22:11 -0400 Received: from netrider.rowland.org (netrider.rowland.org [192.131.102.5]) by lindbergh.monkeyblade.net (Postfix) with SMTP id 819E027C for ; Tue, 7 Jun 2022 06:22:09 -0700 (PDT) Received: (qmail 402115 invoked by uid 1000); 7 Jun 2022 09:22:08 -0400 Date: Tue, 7 Jun 2022 09:22:08 -0400 From: Alan Stern To: =?iso-8859-1?Q?Cl=E9ment_L=E9ger?= Cc: Greg Kroah-Hartman , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] usb: host: ohci-at91: add support to enter suspend using SMC Message-ID: References: <20220606141802.165252-1-clement.leger@bootlin.com> <20220607090759.3fc0b003@fixe.home> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220607090759.3fc0b003@fixe.home> Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Tue, Jun 07, 2022 at 09:07:59AM +0200, Clément Léger wrote: > Le Mon, 6 Jun 2022 14:12:52 -0400, > Alan Stern a écrit : > > > On Mon, Jun 06, 2022 at 04:18:02PM +0200, Clément Léger wrote: > > > When Linux is running under OP-TEE, the SFR is set as secured and thus > > > the AT91_OHCIICR_USB_SUSPEND register isn't accessible. Add a SMC to > > > do the appropriate call to suspend the controller. > > > The SMC id is fetched from the device-tree property > > > "microchip,suspend-smc-id". if present, then the syscon regmap is not > > > used to enter suspend and a SMC is issued. > > > > > > Signed-off-by: Clément Léger > > > --- > > > > Acked-by: Alan Stern > > > > However, this is a little weird... You've written > > usb_hcd_at91_probe() so that the SMC is detected in preference to the > > regmap, but then you wrote ohci_at91_port_suspend() so that the regmap > > is used in preference to the SMC. It's not wrong, but it is confusing > > to read. > > > > Do you want to rewrite the patch to make the two routines agree on which > > mechanism to use by default? > > > > Alan Stern > > Hi Alan, > > I'll rewrite that ! I did it in this specific order in the probe to > allow overloading the device-tree with a SMC ID without removing the > syscon property. This way, the regmap stays the default if no > "microchip,suspend-smc-id" property is provided. > > Does it sounds good to you ? Sure. Just make ohci_at91_port_suspend() try to use the SMC first, and then use the regmap only if the SMC ID hasn't been set. Alan Stern