From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 75B824A08; Fri, 23 Aug 2024 06:23:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.249.212.187 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724394186; cv=none; b=opFZZq6RLWiUlGAyv4i8egVeoxdX/5n/F335V7UQ1VDB5Idffbs7mgxdhylI7WdLiUM6z+W8yMLx7aycgs8E+Zegyj5AcHFVaX8JTkzlGg47IV5F9n9dpQied0A6irb0u/TvkV4f+5/CAdwkk19XM6HJUYLZEKoE6Gw+N/6m+38= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724394186; c=relaxed/simple; bh=0OqjkaZgAp+SRqHna8hMrEs/8r/Kx3RZTRTuanY1NoM=; h=Message-ID:Date:MIME-Version:Subject:To:CC:References:From: In-Reply-To:Content-Type; b=sjfOqFjApVo7avS+fcJp21sXO9Iti2VelbiqV26TlGXp/tXSoKCAbpQ5DJ24tJ7ImhreT6IFqrXvaulJ1aqeawARx2tYXSuiqazgLVvcFdmJMTXcXR0a3HBTlgdAxHURlzHrIZ0gWmhEge85TYXZEGen/ARN/DHHqqRQa8vEFOo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com; spf=pass smtp.mailfrom=huawei.com; arc=none smtp.client-ip=45.249.212.187 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=huawei.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=huawei.com Received: from mail.maildlp.com (unknown [172.19.88.194]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4Wqqjk4t4CzyQQ8; Fri, 23 Aug 2024 14:22:18 +0800 (CST) Received: from kwepemh500013.china.huawei.com (unknown [7.202.181.146]) by mail.maildlp.com (Postfix) with ESMTPS id 4EBDD140137; Fri, 23 Aug 2024 14:23:00 +0800 (CST) Received: from [10.67.109.254] (10.67.109.254) by kwepemh500013.china.huawei.com (7.202.181.146) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Fri, 23 Aug 2024 14:22:59 +0800 Message-ID: <765ccc96-a48c-8a7a-ebf4-344fec67d95f@huawei.com> Date: Fri, 23 Aug 2024 14:22:59 +0800 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.2.0 Subject: Re: [PATCH -next] spi: stm32-qspi: Simpify resource lookup Content-Language: en-US To: Mark Brown CC: , , , , , References: <20240820123707.1788370-1-ruanjinjie@huawei.com> From: Jinjie Ruan In-Reply-To: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemh500013.china.huawei.com (7.202.181.146) On 2024/8/22 22:58, Mark Brown wrote: > On Tue, Aug 20, 2024 at 08:37:07PM +0800, Jinjie Ruan wrote: >> Use the devm_platform_ioremap_resource_byname() helper instead of >> calling platform_get_resource_byname() and devm_ioremap_resource() >> separately. > > This breaks boot on the Avenger96 board, it causes a NULL pointer > dereference: > > [ 2.350480] Unable to handle kernel NULL pointer dereference at virtual address 00000000 when read > > ... > > [ 2.695787] Call trace: > [ 2.695807] stm32_qspi_probe from platform_probe+0x5c/0xb0 > [ 2.703914] platform_probe from really_probe+0xc8/0x2c8 > [ 2.709284] really_probe from __driver_probe_device+0x88/0x19c > [ 2.715145] __driver_probe_device from driver_probe_device+0x30/0x104 > > https://lava.sirena.org.uk/scheduler/job/650792 > >> - res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "qspi"); >> - qspi->io_base = devm_ioremap_resource(dev, res); >> + qspi->io_base = devm_platform_ioremap_resource_byname(pdev, "qspi"); >> if (IS_ERR(qspi->io_base)) >> return PTR_ERR(qspi->io_base); >> >> qspi->phys_base = res->start; >> >> - res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "qspi_mm"); >> - qspi->mm_base = devm_ioremap_resource(dev, res); >> + qspi->mm_base = devm_platform_ioremap_resource_byname(pdev, "qspi_mm"); >> if (IS_ERR(qspi->mm_base)) >> return PTR_ERR(qspi->mm_base); > > I can't identify any obvious error here, these look like a direct > subsitution - the implementation of devm_platform_ioremap_resource_byname() > looks to be the same as the replaced code and dev is set to &pdev->dev > but I'm seeing the above behaviour. Sorry, from lkp@intel.com,I identify that the "res" returned by platform_get_resource_byname() is used by "qspi->phys_base = res->start;" later,so the devm_platform_ioremap_resource_byname() is not inapplicable here.