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 89F03CCA47C for ; Sun, 24 Jul 2022 13:44:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232265AbiGXNoz (ORCPT ); Sun, 24 Jul 2022 09:44:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48404 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229702AbiGXNoy (ORCPT ); Sun, 24 Jul 2022 09:44:54 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D838FEE0D for ; Sun, 24 Jul 2022 06:44:53 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 94C7CB80D55 for ; Sun, 24 Jul 2022 13:44:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C4120C3411E; Sun, 24 Jul 2022 13:44:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1658670291; bh=O/cOxJ9L63ifoCe9+9dSUAXEslu7LZkosYany1YVKqk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=2AI7e3RI40QvP6QDjf3L9ESDBHQgX9rnJULejuUNTcp+Nryo6T1folQJhAWos8WXR IpPuvjNDCu6KQ8I+ldfeqCs8cZGPC1UIB+8jy7gKcum4GbRbGfnB9MMGL0hsFNJD/o iYRY2zub1YqcB3DBAKdiwKf7zIEImWklVSA7CujI= Date: Sun, 24 Jul 2022 15:44:47 +0200 From: Greg Kroah-Hartman To: Tomas Winkler Cc: David Airlie , Daniel Vetter , Jani Nikula , Joonas Lahtinen , Rodrigo Vivi , Tvrtko Ursulin , intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, Alexander Usyskin , Vitaly Lubart , Daniele Ceraolo Spurio Subject: Re: [PATCH v6 02/14] mei: add slow_fw flag to the mei auxiliary device Message-ID: References: <20220724082428.218628-1-tomas.winkler@intel.com> <20220724082428.218628-3-tomas.winkler@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220724082428.218628-3-tomas.winkler@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jul 24, 2022 at 11:24:16AM +0300, Tomas Winkler wrote: > From: Alexander Usyskin > > Add slow_fw flag to the mei auxiliary device info > to inform the mei driver about slow underlying firmware. > Such firmware will require to use larger operation timeouts. > > Signed-off-by: Alexander Usyskin > Signed-off-by: Tomas Winkler > Reviewed-by: Daniele Ceraolo Spurio > --- > include/linux/mei_aux.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/mei_aux.h b/include/linux/mei_aux.h > index 587f25128848..a29f4064b9c0 100644 > --- a/include/linux/mei_aux.h > +++ b/include/linux/mei_aux.h > @@ -11,6 +11,7 @@ struct mei_aux_device { > struct auxiliary_device aux_dev; > int irq; > struct resource bar; > + bool slow_fw; Please spell this out "slow_firmware", and also document it somewhere. thanks, greg k-h