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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id E247BC32771 for ; Sat, 24 Sep 2022 12:17:30 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A4B7810E5F8; Sat, 24 Sep 2022 12:17:29 +0000 (UTC) Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id ABA5110EBE9; Sat, 24 Sep 2022 12:16:33 +0000 (UTC) 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 sin.source.kernel.org (Postfix) with ESMTPS id A32F7CE01D0; Sat, 24 Sep 2022 12:16:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 92FF2C433D6; Sat, 24 Sep 2022 12:16:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664021789; bh=QDgpnUzlrBQFC6/lBjr9EMlkiFqeYvtACzUmRWwdLQs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=CtUlpXG2GQzEyj8VZ6mSXaD9qccLjLLEQTUwy49cYmqe07wa+n9lBozBHKCj784yL S3CfDTEnyHMnueflu2rPtyxmtZDiTynQlLQqkp0vOMJLofpK353V6EXUhtfSXFaSKe m1OdThTaLYQAjUOeZiAvB+FDh4QU2bN+oPQOO6dg= Date: Sat, 24 Sep 2022 14:16:27 +0200 From: Greg Kroah-Hartman To: Daniele Ceraolo Spurio Message-ID: References: <20220913005739.798337-1-daniele.ceraolospurio@intel.com> <20220913005739.798337-6-daniele.ceraolospurio@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220913005739.798337-6-daniele.ceraolospurio@intel.com> Subject: Re: [Intel-gfx] [PATCH v5 05/15] mei: pxp: add command streamer API to the PXP driver X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: intel-gfx@lists.freedesktop.org, Tomas Winkler , Alan Previn , Vitaly Lubart , dri-devel@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Mon, Sep 12, 2022 at 05:57:29PM -0700, Daniele Ceraolo Spurio wrote: > From: Vitaly Lubart > > The discrete graphics card with GSC firmware > using command streamer API hence it requires to enhance > pxp module with the new gsc_command() handler. > > The handler is implemented via mei_pxp_gsc_command() which is > just a thin wrapper around mei_cldev_send_gsc_command() > > Signed-off-by: Vitaly Lubart > Signed-off-by: Tomas Winkler > Signed-off-by: Daniele Ceraolo Spurio > Cc: Greg Kroah-Hartman > Reviewed-by: Alan Previn > --- Reviewed-by: Greg Kroah-Hartman