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 B269FC05027 for ; Fri, 10 Feb 2023 17:19:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232732AbjBJRTX (ORCPT ); Fri, 10 Feb 2023 12:19:23 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34848 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232475AbjBJRTV (ORCPT ); Fri, 10 Feb 2023 12:19:21 -0500 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 274F06D61A; Fri, 10 Feb 2023 09:19:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1676049561; x=1707585561; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=bhWB/2Mmu8TJ/nGpIXnhfEdU4wvGkNBJPFyHsBDZ8TY=; b=fOmby3abv8uzLHp+9fB8dMuUy056EbcOu0oP7J5c+qiIVRnYufoKId1R 6HYP7FKIztx8oyNnplBt2rYqHFU3e2/ZvdDE5xN7DcqI2HUBZPCYGoLRm eRbUUZVe/2qcgqls4pDDFI+QTf+QRoLsVO70yBADf5WfL94IXraHHShmu 9XFcbONxUCxlwvxWC1fi+hnRQRGaNOhSMT9fBMqTi1k/oSCgYNst4HAU5 f57Dc7pIbvr+VV8lLou8Hd6H0GFuwwN/UXR0rM2Bq3MYnxnf4AgGJ2DWi ToMfAvDzmbJEmfIoTdQ6Qqx+xqINtlkl/ecbpbw0xqkIjdPO+GUe02rup Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10617"; a="328162852" X-IronPort-AV: E=Sophos;i="5.97,287,1669104000"; d="scan'208";a="328162852" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Feb 2023 09:19:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10617"; a="700540490" X-IronPort-AV: E=Sophos;i="5.97,287,1669104000"; d="scan'208";a="700540490" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga001.jf.intel.com with ESMTP; 10 Feb 2023 09:19:19 -0800 Received: by black.fi.intel.com (Postfix, from userid 1001) id 2EAAA1C5; Fri, 10 Feb 2023 19:19:58 +0200 (EET) Date: Fri, 10 Feb 2023 19:19:58 +0200 From: Mika Westerberg To: Mauro Lima Cc: broonie@kernel.org, michael@walle.cc, linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] spi: intel: Update help text of PCI and Platform drivers Message-ID: References: <20230210164158.211065-1-mauro.lima@eclypsium.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230210164158.211065-1-mauro.lima@eclypsium.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 10, 2023 at 01:41:58PM -0300, Mauro Lima wrote: > Modern intel hardware uses controllers that work in hardware > sequencing mode. In this mode, the controller exposes a subset > of operations, like read, write and erase, making it easier > and less error-prone for use. > On the other hand, most of the controllers handled by the > platform driver use software sequencing that exposes the > entire set of operations i.e. exposes the low level SPI-NOR > opcodes to the software for use. > Update PCI and Platform help text with this information. > > Signed-off-by: Mauro Lima Acked-by: Mika Westerberg