From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Jiqian Chen <Jiqian.Chen@amd.com>
Cc: xen-devel@lists.xenproject.org,
Andrew Cooper <andrew.cooper3@citrix.com>,
Jan Beulich <jbeulich@suse.com>, Julien Grall <julien@xen.org>,
Stefano Stabellini <sstabellini@kernel.org>,
Huang Rui <ray.huang@amd.com>
Subject: Re: [PATCH v2 1/1] vpci: Add resizable bar support
Date: Tue, 10 Dec 2024 12:30:16 +0100 [thread overview]
Message-ID: <Z1gmSPnkBz_Ob60b@macbook.local> (raw)
In-Reply-To: <20241202060956.1124162-1-Jiqian.Chen@amd.com>
On Mon, Dec 02, 2024 at 02:09:56PM +0800, Jiqian Chen wrote:
> Some devices, like discrete GPU of amd, support resizable bar
> capability, but vpci of Xen doesn't support this feature, so
> they fail to resize bars and then cause probing failure.
>
> According to PCIe spec, each bar that supports resizing has
> two registers, PCI_REBAR_CAP and PCI_REBAR_CTRL. So, add
> handlers for them to support resizing the size of BARs.
>
> Signed-off-by: Jiqian Chen <Jiqian.Chen@amd.com>
> ---
> Hi all,
>
> v2->v1 changes:
> *In rebar_ctrl_write, to check if memory decoding is enabled, and added
> some checks for the type of Bar.
> *Added vpci_hw_write32 to handle PCI_REBAR_CAP's write, since there is
> no write limitation of dom0.
> *And has many other minor modifications as well.
>
> Best regards,
> Jiqian Chen.
> ---
> xen/drivers/vpci/Makefile | 2 +-
> xen/drivers/vpci/rebar.c | 93 ++++++++++++++++++++++++++++++++++++++
> xen/drivers/vpci/vpci.c | 6 +++
> xen/include/xen/pci_regs.h | 11 +++++
> xen/include/xen/vpci.h | 2 +
> 5 files changed, 113 insertions(+), 1 deletion(-)
> create mode 100644 xen/drivers/vpci/rebar.c
>
> diff --git a/xen/drivers/vpci/Makefile b/xen/drivers/vpci/Makefile
> index 1a1413b93e76..a7c8a30a8956 100644
> --- a/xen/drivers/vpci/Makefile
> +++ b/xen/drivers/vpci/Makefile
> @@ -1,2 +1,2 @@
> -obj-y += vpci.o header.o
> +obj-y += vpci.o header.o rebar.o
> obj-$(CONFIG_HAS_PCI_MSI) += msi.o msix.o
> diff --git a/xen/drivers/vpci/rebar.c b/xen/drivers/vpci/rebar.c
> new file mode 100644
> index 000000000000..156e8d337426
> --- /dev/null
> +++ b/xen/drivers/vpci/rebar.c
> @@ -0,0 +1,93 @@
> +/* SPDX-License-Identifier: GPL-2.0-or-later */
> +/*
> + * Copyright (C) 2024 Advanced Micro Devices, Inc. All Rights Reserved.
> + *
> + * Author: Jiqian Chen <Jiqian.Chen@amd.com>
> + */
> +
> +#include <xen/hypercall.h>
> +#include <xen/vpci.h>
> +
> +static void cf_check rebar_ctrl_write(const struct pci_dev *pdev,
> + unsigned int reg,
> + uint32_t val,
> + void *data)
> +{
> + uint64_t size;
> + unsigned int index;
> + struct vpci_bar *bars = data;
> +
> + if ( pci_conf_read16(pdev->sbdf, PCI_COMMAND) & PCI_COMMAND_MEMORY )
> + return;
> +
> + index = pci_conf_read32(pdev->sbdf, reg) & PCI_REBAR_CTRL_BAR_IDX;
> + if ( index >= PCI_HEADER_NORMAL_NR_BARS )
> + return;
> +
> + if ( bars[index].type != VPCI_BAR_MEM64_LO &&
> + bars[index].type != VPCI_BAR_MEM32 )
> + return;
For those early returns that don't propagate the write to the
register, we need to log a message to notice the write has been
dropped, otherwise there's no way to identify such cases.
Thanks, Roger.
next prev parent reply other threads:[~2024-12-10 11:30 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-02 6:09 [PATCH v2 1/1] vpci: Add resizable bar support Jiqian Chen
2024-12-09 13:59 ` Jan Beulich
2024-12-10 7:07 ` Chen, Jiqian
2024-12-10 7:17 ` Jan Beulich
2024-12-10 7:57 ` Chen, Jiqian
2024-12-10 9:54 ` Jan Beulich
2024-12-10 11:25 ` Roger Pau Monné
2024-12-10 12:15 ` Jan Beulich
2024-12-10 12:54 ` Roger Pau Monné
2024-12-11 6:37 ` Chen, Jiqian
2024-12-11 8:16 ` Roger Pau Monné
2024-12-11 9:36 ` Chen, Jiqian
2024-12-11 9:45 ` Roger Pau Monné
2024-12-11 7:57 ` Chen, Jiqian
2024-12-11 8:25 ` Jan Beulich
2024-12-11 8:43 ` Roger Pau Monné
2024-12-11 8:53 ` Jan Beulich
2024-12-11 10:19 ` Chen, Jiqian
2024-12-11 10:25 ` Jan Beulich
2024-12-11 8:40 ` Roger Pau Monné
2024-12-11 9:44 ` Chen, Jiqian
2024-12-11 6:18 ` Chen, Jiqian
2024-12-10 11:00 ` Roger Pau Monné
2024-12-10 11:05 ` Jan Beulich
2024-12-11 6:20 ` Chen, Jiqian
2024-12-10 11:30 ` Roger Pau Monné [this message]
2024-12-11 6:42 ` Chen, Jiqian
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=Z1gmSPnkBz_Ob60b@macbook.local \
--to=roger.pau@citrix.com \
--cc=Jiqian.Chen@amd.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=ray.huang@amd.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.