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 8E16FC6FA8E for ; Thu, 2 Mar 2023 15:37:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229852AbjCBPha (ORCPT ); Thu, 2 Mar 2023 10:37:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39320 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229504AbjCBPh2 (ORCPT ); Thu, 2 Mar 2023 10:37:28 -0500 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B0DCF4E5E1; Thu, 2 Mar 2023 07:37:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677771421; x=1709307421; h=message-id:date:mime-version:subject:to:cc:references: from:in-reply-to:content-transfer-encoding; bh=8w0enhCLX1f+XCXsd7ygezqUJO541MvWiVCDSNNqZJI=; b=i4ShmjirPkVWBiGIfv8NoF3sxKGJbX/9ds2kh1A7uftkPMLlb2MPcvek Br2b2/Nu7vlnsJSIrKFoEb2nKlgQO7MHGnxcoEeDlEBjDKL+gcDpXP/ka yvzeTHNFwxhoVu3bNaqx9OX5tEwBfYw41tm4w+C97Xcwg0awansbKc5d3 tQgU7BywlxjuMQ+1hyT6TXQsxpTRRxNVtLnulo1Cm/NU7QrOQ7I0gc/hS zV9CW23NSXsWvPFWGOlBcfN3p+J/BPeHtu/cvq7Zj9iikxkCebvYI2tpr 9cZwYG3iOqynMM+Jlxoc9Fv3fTklCoru5Qtcyd/mJmWePzRm0Ufz+1haE g==; X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="337065569" X-IronPort-AV: E=Sophos;i="5.98,228,1673942400"; d="scan'208";a="337065569" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2023 07:37:01 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="784874350" X-IronPort-AV: E=Sophos;i="5.98,228,1673942400"; d="scan'208";a="784874350" Received: from djiang5-mobl3.amr.corp.intel.com (HELO [10.212.30.53]) ([10.212.30.53]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2023 07:37:00 -0800 Message-ID: Date: Thu, 2 Mar 2023 08:36:59 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0 Thunderbird/102.6.0 Subject: Re: [PATCH] cxl/hdm: Fix hdm decoder init by adding COMMIT field check Content-Language: en-US To: Fan Ni Cc: "alison.schofield@intel.com" , "vishal.l.verma@intel.com" , "ira.weiny@intel.com" , "bwidawsk@kernel.org" , "dan.j.williams@intel.com" , "Jonathan.Cameron@huawei.com" , "linux-cxl@vger.kernel.org" , Adam Manzanares , "dave@stgolabs.net" , "linux-kernel@vger.kernel.org" References: <20230228224014.1402545-1-fan.ni@samsung.com> <346a8225-609e-0188-ec8a-4abe8d271a09@intel.com> <20230302062305.GA1444578@bgt-140510-bm03> From: Dave Jiang In-Reply-To: <20230302062305.GA1444578@bgt-140510-bm03> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/1/23 11:23 PM, Fan Ni wrote: > On Wed, Mar 01, 2023 at 11:54:08AM -0700, Dave Jiang wrote: >> > Hi Dave, > Thanks for looking into this. >> >> On 2/28/23 3:40 PM, Fan Ni wrote: >>> Add COMMIT field check aside with existing COMMITTED field check during >>> hdm decoder initialization to avoid a system crash during module removal >>> after destroying a region which leaves the COMMIT field being reset while >>> the COMMITTED field still being set. >> >> Hi Fan. Are you seeing this issue on qemu emulation or hardware? The > I run into the issue with qemu emulation. >> situation does not make sense to me. If we clear the COMMIT bit, then the >> COMMITTED bit should be cleared by the hardware shortly after right? > > From the spec, I cannot find any statement saying clearing the COMMIT bit > will automatically clear the COMMITTED. If I have not missed the statement in > the spec, I assume we should not make the assumption that it will be > cleared automatically for real hardware. But you may be right, leaving the > COMMITTED bit set can potentially cause some issue? Need to check more. I have not been able to find direct verbiage that indicates this either. However, logically it would make sense. Otherwise, the COMMITTED field never clears and prevents reprogramming of the HDM decoders. The current QEMU implementation is creating a situation where the HDM decoder is always active after COMMIT bit is set the first time, regardless whether COMMIT field has been cleared later on during a teardown. It does sound like a bug with QEMU emulation currently. DJ > > Fan > >> Otherwise, how would one reprogram the decoder if the decoder is indicating >> to be active? >> >> DJ >> >>> >>> In current kernel implementation, when destroying a region (cxl >>> destroy-region),the decoders associated to the region will be reset >>> as that in cxl_decoder_reset, where the COMMIT field will be reset. >>> However, resetting COMMIT field will not automatically reset the >>> COMMITTED field, causing a situation where COMMIT is reset (0) while >>> COMMITTED is set (1) after the region is destroyed. Later, when >>> init_hdm_decoder is called (during modprobe), current code only check >>> the COMMITTED to decide whether the decoder is enabled or not. Since >>> the COMMITTED will be 1 and the code treats the decoder as enabled, >>> which will cause unexpected behaviour. >>> >>> Before the fix, a system crash was observed when performing following >>> steps: >>> 1. modprobe -a cxl_acpi cxl_core cxl_pci cxl_port cxl_mem >>> 2. cxl create-region -m -d decoder0.0 -w 1 mem0 -s 256M >>> 3. cxl destroy-region region0 -f >>> 4. rmmod cxl_acpi cxl_pci cxl_port cxl_mem cxl_pmem cxl_core >>> 5. modprobe -a cxl_acpi cxl_core cxl_pci cxl_port cxl_mem (showing >>> "no CXL window for range 0x0:0xffffffffffffffff" error message) >>> 6. rmmod cxl_acpi cxl_pci cxl_port cxl_mem cxl_pmem cxl_core (kernel >>> crash at cxl_dpa_release due to dpa_res has been freed when destroying >>> the region). >>> >>> The patch fixed the above issue, and is tested based on follow patch series: >>> >>> [PATCH 00/18] CXL RAM and the 'Soft Reserved' => 'System RAM' default >>> Message-ID: 167601992097.1924368.18291887895351917895.stgit@dwillia2-xfh.jf.intel.com >>> >>> Signed-off-by: Fan Ni >>> --- >>> drivers/cxl/core/hdm.c | 8 +++++--- >>> 1 file changed, 5 insertions(+), 3 deletions(-) >>> >>> diff --git a/drivers/cxl/core/hdm.c b/drivers/cxl/core/hdm.c >>> index 80eccae6ba9e..6cf854c949f0 100644 >>> --- a/drivers/cxl/core/hdm.c >>> +++ b/drivers/cxl/core/hdm.c >>> @@ -695,6 +695,7 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld, >>> struct cxl_endpoint_decoder *cxled = NULL; >>> u64 size, base, skip, dpa_size; >>> bool committed; >>> + bool should_commit; >>> u32 remainder; >>> int i, rc; >>> u32 ctrl; >>> @@ -710,10 +711,11 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld, >>> base = ioread64_hi_lo(hdm + CXL_HDM_DECODER0_BASE_LOW_OFFSET(which)); >>> size = ioread64_hi_lo(hdm + CXL_HDM_DECODER0_SIZE_LOW_OFFSET(which)); >>> committed = !!(ctrl & CXL_HDM_DECODER0_CTRL_COMMITTED); >>> + should_commit = !!(ctrl & CXL_HDM_DECODER0_CTRL_COMMIT); >>> cxld->commit = cxl_decoder_commit; >>> cxld->reset = cxl_decoder_reset; >>> - if (!committed) >>> + if (!should_commit || !committed) >>> size = 0; >>> if (base == U64_MAX || size == U64_MAX) { >>> dev_warn(&port->dev, "decoder%d.%d: Invalid resource range\n", >>> @@ -727,7 +729,7 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld, >>> }; >>> /* decoders are enabled if committed */ >>> - if (committed) { >>> + if (should_commit && committed) { >>> cxld->flags |= CXL_DECODER_F_ENABLE; >>> if (ctrl & CXL_HDM_DECODER0_CTRL_LOCK) >>> cxld->flags |= CXL_DECODER_F_LOCK; >>> @@ -772,7 +774,7 @@ static int init_hdm_decoder(struct cxl_port *port, struct cxl_decoder *cxld, >>> return 0; >>> } >>> - if (!committed) >>> + if (!should_commit || !committed) >>> return 0; >>> dpa_size = div_u64_rem(size, cxld->interleave_ways, &remainder);