From: "Rafael J. Wysocki" <rafael@kernel.org> To: Joerg Roedel <joro@8bytes.org> Cc: Bjorn Helgaas <bhelgaas@google.com>, "Rafael J . Wysocki" <rjw@rjwysocki.net>, Len Brown <lenb@kernel.org>, Linux PCI <linux-pci@vger.kernel.org>, ACPI Devel Maling List <linux-acpi@vger.kernel.org>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org>, Joerg Roedel <jroedel@suse.de>, Bjorn Helgaas <helgass@kernel.org> Subject: Re: [PATCH v3 1/4] PCI/ACPI: Remove OSC_PCI_SUPPORT_MASKS and OSC_PCI_CONTROL_MASKS Date: Wed, 1 Sep 2021 20:53:26 +0200 [thread overview] Message-ID: <CAJZ5v0iVKbL-4LngH7MeSZ69qArLC0488UR+kSnsPTsBD8qZnQ@mail.gmail.com> (raw) In-Reply-To: <20210824122054.29481-2-joro@8bytes.org> On Tue, Aug 24, 2021 at 2:21 PM Joerg Roedel <joro@8bytes.org> wrote: > > From: Joerg Roedel <jroedel@suse.de> > > These masks are only used internally in the PCI Host Bridge _OSC > negotiation code, which already makes sure nothing outside of these > masks is set. Remove the masks and simplify the code. > > Suggested-by: Bjorn Helgaas <helgass@kernel.org> > Signed-off-by: Joerg Roedel <jroedel@suse.de> Reviewed-by: Rafael J. Wysocki <rafael@kernel.org> > --- > drivers/acpi/pci_root.c | 9 +++------ > include/linux/acpi.h | 2 -- > 2 files changed, 3 insertions(+), 8 deletions(-) > > diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c > index d7deedf3548e..0c3030a58219 100644 > --- a/drivers/acpi/pci_root.c > +++ b/drivers/acpi/pci_root.c > @@ -199,18 +199,15 @@ static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, > acpi_status status; > u32 result, capbuf[3]; > > - support &= OSC_PCI_SUPPORT_MASKS; > support |= root->osc_support_set; > > capbuf[OSC_QUERY_DWORD] = OSC_QUERY_ENABLE; > capbuf[OSC_SUPPORT_DWORD] = support; > - if (control) { > - *control &= OSC_PCI_CONTROL_MASKS; > + if (control) > capbuf[OSC_CONTROL_DWORD] = *control | root->osc_control_set; > - } else { > + else > /* Run _OSC query only with existing controls. */ > capbuf[OSC_CONTROL_DWORD] = root->osc_control_set; > - } > > status = acpi_pci_run_osc(root->device->handle, capbuf, &result); > if (ACPI_SUCCESS(status)) { > @@ -357,7 +354,7 @@ static acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 r > if (!mask) > return AE_BAD_PARAMETER; > > - ctrl = *mask & OSC_PCI_CONTROL_MASKS; > + ctrl = *mask; > if ((ctrl & req) != req) > return AE_TYPE; > > diff --git a/include/linux/acpi.h b/include/linux/acpi.h > index 72e4f7fd268c..c6dba5f21384 100644 > --- a/include/linux/acpi.h > +++ b/include/linux/acpi.h > @@ -577,7 +577,6 @@ extern u32 osc_sb_native_usb4_control; > #define OSC_PCI_MSI_SUPPORT 0x00000010 > #define OSC_PCI_EDR_SUPPORT 0x00000080 > #define OSC_PCI_HPX_TYPE_3_SUPPORT 0x00000100 > -#define OSC_PCI_SUPPORT_MASKS 0x0000019f > > /* PCI Host Bridge _OSC: Capabilities DWORD 3: Control Field */ > #define OSC_PCI_EXPRESS_NATIVE_HP_CONTROL 0x00000001 > @@ -587,7 +586,6 @@ extern u32 osc_sb_native_usb4_control; > #define OSC_PCI_EXPRESS_CAPABILITY_CONTROL 0x00000010 > #define OSC_PCI_EXPRESS_LTR_CONTROL 0x00000020 > #define OSC_PCI_EXPRESS_DPC_CONTROL 0x00000080 > -#define OSC_PCI_CONTROL_MASKS 0x000000bf > > #define ACPI_GSB_ACCESS_ATTRIB_QUICK 0x00000002 > #define ACPI_GSB_ACCESS_ATTRIB_SEND_RCV 0x00000004 > -- > 2.32.0 >
next prev parent reply other threads:[~2021-09-01 18:55 UTC|newest] Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-24 12:20 [PATCH v3 0/4] PCI/ACPI: Simplify PCIe _OSC feature negotiation Joerg Roedel 2021-08-24 12:20 ` [PATCH v3 1/4] PCI/ACPI: Remove OSC_PCI_SUPPORT_MASKS and OSC_PCI_CONTROL_MASKS Joerg Roedel 2021-09-01 18:53 ` Rafael J. Wysocki [this message] 2021-08-24 12:20 ` [PATCH v3 2/4] PCI/ACPI: Move supported and control calculations to separaten functions Joerg Roedel 2021-09-01 18:56 ` Rafael J. Wysocki 2021-08-24 12:20 ` [PATCH v3 3/4] PCI/ACPI: Move _OSC query checks to separate function Joerg Roedel 2021-09-01 18:57 ` Rafael J. Wysocki 2021-08-24 12:20 ` [PATCH v3 4/4] PCI/ACPI: Check for _OSC support in acpi_pci_osc_control_set() Joerg Roedel 2021-09-01 19:31 ` Rafael J. Wysocki 2021-09-01 19:33 ` [PATCH v3 0/4] PCI/ACPI: Simplify PCIe _OSC feature negotiation Rafael J. Wysocki 2021-09-13 16:14 ` Rafael J. Wysocki 2021-09-14 13:49 ` Joerg Roedel 2021-09-14 13:52 ` Bjorn Helgaas 2021-09-28 21:21 ` Bjorn Helgaas 2021-09-29 8:09 ` Joerg Roedel
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=CAJZ5v0iVKbL-4LngH7MeSZ69qArLC0488UR+kSnsPTsBD8qZnQ@mail.gmail.com \ --to=rafael@kernel.org \ --cc=bhelgaas@google.com \ --cc=helgass@kernel.org \ --cc=joro@8bytes.org \ --cc=jroedel@suse.de \ --cc=lenb@kernel.org \ --cc=linux-acpi@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-pci@vger.kernel.org \ --cc=rjw@rjwysocki.net \ --subject='Re: [PATCH v3 1/4] PCI/ACPI: Remove OSC_PCI_SUPPORT_MASKS and OSC_PCI_CONTROL_MASKS' \ /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
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).