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 B74AFC7EE37 for ; Fri, 9 Jun 2023 17:43:50 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2A0AD10E165; Fri, 9 Jun 2023 17:43:50 +0000 (UTC) Received: from 189.cn (ptr.189.cn [183.61.185.102]) by gabe.freedesktop.org (Postfix) with ESMTP id 5C05210E157; Fri, 9 Jun 2023 17:43:47 +0000 (UTC) HMM_SOURCE_IP: 10.64.8.43:47690.1937665454 HMM_ATTACHE_NUM: 0000 HMM_SOURCE_TYPE: SMTP Received: from clientip-114.242.206.180 (unknown [10.64.8.43]) by 189.cn (HERMES) with SMTP id AEDBE100212; Sat, 10 Jun 2023 01:43:39 +0800 (CST) Received: from ([114.242.206.180]) by gateway-151646-dep-75648544bd-7vx9t with ESMTP id 0877e90f4b584cbe94a878d807b39f22 for helgaas@kernel.org; Sat, 10 Jun 2023 01:43:43 CST X-Transaction-ID: 0877e90f4b584cbe94a878d807b39f22 X-Real-From: 15330273260@189.cn X-Receive-IP: 114.242.206.180 X-MEDUSA-Status: 0 Message-ID: <2cf50ad0-e4fa-17a3-3e22-7fd8d4a316ed@189.cn> Date: Sat, 10 Jun 2023 01:43:39 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 To: Bjorn Helgaas , Sui Jingfeng References: <20230609164850.GA1251187@bhelgaas> Content-Language: en-US From: Sui Jingfeng <15330273260@189.cn> In-Reply-To: <20230609164850.GA1251187@bhelgaas> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Intel-gfx] [PATCH v3 4/4] PCI/VGA: introduce is_boot_device function callback to vga_client_register 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: Pan Xinhui , kvm@vger.kernel.org, nouveau@lists.freedesktop.org, dri-devel@lists.freedesktop.org, YiPeng Chai , Mario Limonciello , David Airlie , Yi Liu , Karol Herbst , amd-gfx@lists.freedesktop.org, Jason Gunthorpe , Ben Skeggs , linux-pci@vger.kernel.org, Andrey Grodzovsky , Kevin Tian , Lijo Lazar , Thomas Zimmermann , Bokun Zhang , intel-gfx@lists.freedesktop.org, Maxime Ripard , loongson-kernel@lists.loongnix.cn, Abhishek Sahu , Rodrigo Vivi , Bjorn Helgaas , Yishai Hadas , Li Yi , Somalapuram Amaranath , linux-kernel@vger.kernel.org, Daniel Vetter , Cornelia Huck , Alex Deucher , Christian Konig , Hawking Zhang Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On 2023/6/10 00:48, Bjorn Helgaas wrote: > On Fri, Jun 09, 2023 at 10:27:39AM +0800, Sui Jingfeng wrote: >> On 2023/6/9 03:19, Bjorn Helgaas wrote: >>> On Thu, Jun 08, 2023 at 07:43:22PM +0800, Sui Jingfeng wrote: >>>> From: Sui Jingfeng >>>> >>>> The vga_is_firmware_default() function is arch-dependent, which doesn't >>>> sound right. At least, it also works on the Mips and LoongArch platforms. >>>> Tested with the drm/amdgpu and drm/radeon drivers. However, it's difficult >>>> to enumerate all arch-driver combinations. I'm wrong if there is only one >>>> exception. >>>> >>>> With the observation that device drivers typically have better knowledge >>>> about which PCI bar contains the firmware framebuffer, which could avoid >>>> the need to iterate all of the PCI BARs. >>>> >>>> But as a PCI function at pci/vgaarb.c, vga_is_firmware_default() is >>>> probably not suitable to make such an optimization for a specific device. >>>> >>>> There are PCI display controllers that don't have a dedicated VRAM bar, >>>> this function will lose its effectiveness in such a case. Luckily, the >>>> device driver can provide an accurate workaround. >>>> >>>> Therefore, this patch introduces a callback that allows the device driver >>>> to tell the VGAARB if the device is the default boot device. This patch >>>> only intends to introduce the mechanism, while the implementation is left >>>> to the device driver authors. Also honor the comment: "Clients have two >>>> callback mechanisms they can use" >>> s/bar/BAR/ (several) >>> >>> Nothing here uses the callback. I don't want to merge this until we >>> have a user. >> This is chicken and egg question. >> >> If you could help get this merge first, I will show you the first user. >> >>> I'm not sure why the device driver should know whether its device is >>> the default boot device. >> It's not that the device driver should know, >> >> but it's about that the device driver has the right to override. >> >> Device driver may have better approach to identify the default boot >> device. > The way we usually handle this is to include the new callback in the > same series as the first user of it. That has two benefits: > (1) everybody can review the whole picture and possibly suggest > different approaches, and (2) when we merge the infrastructure, > we also merge a user of it at the same time, so the whole thing can be > tested and we don't end up with unused code. OK, acceptable I will try to prepare the user code of this callback and respin the patch. I may resend it with another patch set in the future, this series already drop it, see v5[1] [1] https://patchwork.freedesktop.org/series/119134/ > Bjorn