From: Vitaly Kuznetsov <vkuznets@redhat.com>
To: "Michael Kelley (LINUX)" <mikelley@microsoft.com>,
"linux-hyperv@vger.kernel.org" <linux-hyperv@vger.kernel.org>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
Bjorn Helgaas <bhelgaas@google.com>, Wei Liu <wei.liu@kernel.org>,
Deepak Rawat <drawat.floss@gmail.com>,
KY Srinivasan <kys@microsoft.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Stephen Hemminger <sthemmin@microsoft.com>,
Dexuan Cui <decui@microsoft.com>
Subject: RE: [PATCH v2 2/3] Drivers: hv: Always reserve framebuffer region for Gen1 VMs
Date: Sat, 27 Aug 2022 14:44:39 +0200 [thread overview]
Message-ID: <87mtbpvoso.fsf@redhat.com> (raw)
In-Reply-To: <SN6PR2101MB1693BDB6EF855BCE594AE376D7729@SN6PR2101MB1693.namprd21.prod.outlook.com>
"Michael Kelley (LINUX)" <mikelley@microsoft.com> writes:
> From: Vitaly Kuznetsov <vkuznets@redhat.com> Sent: Thursday, August 25, 2022 2:00 AM
>>
>> vmbus_reserve_fb() tries reserving framebuffer region iff
>> 'screen_info.lfb_base' is set. Gen2 VMs seem to have it set by EFI fb
>
> Just so I'm clear, by "EFI fb" you mean the EFI layer code that sets
> up the frame buffer before the Linux kernel ever boots, right?
> You are not referring to the Linux kernel EFI framebuffer
> driver, which may or may not be configured in the kernel.
My very shallow understanding is that initially, screen_info comes from
boot_params and this depends on how Linux was booted. Kernel EFI
framebuffer (when enabled), however, gets it first and can modify it
(see efifb_setup()) before we get to analyze it in Vmbus.
>
>> (or, in some edge cases like kexec, the address where the buffer was
>> moved, see https://lore.kernel.org/all/20201014092429.1415040-1-kasong@redhat.com/
>> but on Gen1 VM it depends on bootloader behavior. With grub, it depends
>> on 'gfxpayload=' setting but in some cases it is observed to be zero.
>> Relying on 'screen_info.lfb_base' to reserve framebuffer region is
>> risky. Instead, it is possible to get the address from the dedicated
>> PCI device which is always present.
>>
>> Check for legacy PCI video device presence and reserve the whole
>> region for framebuffer on Gen1 VMs.
>>
>> Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
>> ---
>> drivers/hv/vmbus_drv.c | 46 +++++++++++++++++++++++++++++-------------
>> 1 file changed, 32 insertions(+), 14 deletions(-)
>>
>> diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
>> index 23c680d1a0f5..536f68e563c6 100644
>> --- a/drivers/hv/vmbus_drv.c
>> +++ b/drivers/hv/vmbus_drv.c
>> @@ -35,6 +35,7 @@
>> #include <linux/kernel.h>
>> #include <linux/syscore_ops.h>
>> #include <linux/dma-map-ops.h>
>> +#include <linux/pci.h>
>> #include <clocksource/hyperv_timer.h>
>> #include "hyperv_vmbus.h"
>>
>> @@ -2262,26 +2263,43 @@ static int vmbus_acpi_remove(struct acpi_device *device)
>>
>> static void vmbus_reserve_fb(void)
>> {
>> - int size;
>> + resource_size_t start = 0, size;
>> + struct pci_dev *pdev;
>> +
>> + if (efi_enabled(EFI_BOOT)) {
>> + /* Gen2 VM: get FB base from EFI framebuffer */
>> + start = screen_info.lfb_base;
>> + size = max_t(__u32, screen_info.lfb_size, 0x800000);
>> + } else {
>> + /* Gen1 VM: get FB base from PCI */
>> + pdev = pci_get_device(PCI_VENDOR_ID_MICROSOFT,
>> + PCI_DEVICE_ID_HYPERV_VIDEO, NULL);
>> + if (!pdev)
>> + return;
>> +
>> + if (pdev->resource[0].flags & IORESOURCE_MEM) {
>> + start = pci_resource_start(pdev, 0);
>> + size = pci_resource_len(pdev, 0);
>> + }
>> +
>> + /*
>> + * Release the PCI device so hyperv_drm or hyperv_fb driver can
>> + * grab it later.
>> + */
>> + pci_dev_put(pdev);
>> + }
>> +
>> + if (!start)
>> + return;
>> +
>> /*
>> * Make a claim for the frame buffer in the resource tree under the
>> * first node, which will be the one below 4GB. The length seems to
>> * be underreported, particularly in a Generation 1 VM. So start out
>> * reserving a larger area and make it smaller until it succeeds.
>> */
>> -
>> - if (screen_info.lfb_base) {
>> - if (efi_enabled(EFI_BOOT))
>> - size = max_t(__u32, screen_info.lfb_size, 0x800000);
>> - else
>> - size = max_t(__u32, screen_info.lfb_size, 0x4000000);
>> -
>> - for (; !fb_mmio && (size >= 0x100000); size >>= 1) {
>> - fb_mmio = __request_region(hyperv_mmio,
>> - screen_info.lfb_base, size,
>> - fb_mmio_name, 0);
>> - }
>> - }
>> + for (; !fb_mmio && (size >= 0x100000); size >>= 1)
>> + fb_mmio = __request_region(hyperv_mmio, start, size, fb_mmio_name, 0);
>> }
>>
>> /**
>> --
>> 2.37.1
>
> Reviewed-by: Michael Kelley <mikelley@microsoft.com>
>
Thanks!
--
Vitaly
next prev parent reply other threads:[~2022-08-27 12:47 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-25 9:00 [PATCH v2 0/3] Drivers: hv: Avoid allocating MMIO from framebuffer region for other passed through PCI devices Vitaly Kuznetsov
2022-08-25 9:00 ` [PATCH v2 1/3] PCI: Move PCI_VENDOR_ID_MICROSOFT/PCI_DEVICE_ID_HYPERV_VIDEO definitions to pci_ids.h Vitaly Kuznetsov
2022-08-25 14:36 ` Michael Kelley (LINUX)
2022-08-25 15:43 ` Bjorn Helgaas
2022-08-25 9:00 ` [PATCH v2 2/3] Drivers: hv: Always reserve framebuffer region for Gen1 VMs Vitaly Kuznetsov
2022-08-25 14:43 ` Michael Kelley (LINUX)
2022-08-27 12:44 ` Vitaly Kuznetsov [this message]
2022-08-25 9:00 ` [PATCH v2 3/3] Drivers: hv: Never allocate anything besides framebuffer from framebuffer memory region Vitaly Kuznetsov
2022-08-25 15:13 ` Michael Kelley (LINUX)
2022-08-27 12:46 ` Vitaly Kuznetsov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mtbpvoso.fsf@redhat.com \
--to=vkuznets@redhat.com \
--cc=bhelgaas@google.com \
--cc=decui@microsoft.com \
--cc=drawat.floss@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=haiyangz@microsoft.com \
--cc=kys@microsoft.com \
--cc=linux-hyperv@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=mikelley@microsoft.com \
--cc=sthemmin@microsoft.com \
--cc=wei.liu@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).