mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Philipp Stanner <phasta@mailbox.org>
To: Guenter Roeck <linux@roeck-us.net>,
	Philipp Stanner <phasta@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jirislaby@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org
Subject: Re: [PATCH] tty: serial: Replace deprecated PCI API
Date: Thu, 11 Dec 2025 14:57:46 +0100	[thread overview]
Message-ID: <de540d7789d0e9f77efde05fab4705b8d97245d8.camel@mailbox.org> (raw)
In-Reply-To: <3f5370b7-c67c-409d-8422-83b5096d1233@roeck-us.net>

On Wed, 2025-11-26 at 09:02 -0800, Guenter Roeck wrote:
> On 11/26/25 01:10, Philipp Stanner wrote:
> > pcim_iomap_table() is deprecated. Moreover, its special usage in 8250,
> > causes a WARN_ON to fire (in pcim_add_mapping_to_legacy_table()).
> > 
> > 8250's function serial8250_pci_setup_port() effectively maps the same
> > BAR multiple times and adds an offset to the start address. While
> > mapping and adding offsets is not a bug, it can be achieved in a far
> > more straightforward way by using the specialized function
> > pcim_iomap_range().
> > 
> > pcim_iomap_range() does not add the mapping addresses to the deprecated
> > iomap table - that's not a problem, however, because non of the users of
> > serial8250_pci_setup_port() uses pcim_iomap_table().
> > 
> > Replace the deprecated PCI functions with pcim_iomap_range().
> > 
> > Cc: Guenter Roeck <linux@roeck-us.net>
> > Link: https://lore.kernel.org/dri-devel/16cd212f-6ea0-471d-bf32-34f55d7292fe@roeck-us.net/
> > Signed-off-by: Philipp Stanner <phasta@kernel.org>
> > ---
> > @Guenther: Can you please test this? I hope it fixes your issue.
> 
> Yes, it does. Thanks a lot for fixing this!
> 
> Tested-by: Guenter Roeck <linux@roeck-us.net>

@Greg:
Can you apply this?

P.


> 
> > ---
> >   drivers/tty/serial/8250/8250_pcilib.c | 9 +++++----
> >   1 file changed, 5 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/tty/serial/8250/8250_pcilib.c b/drivers/tty/serial/8250/8250_pcilib.c
> > index d8d0ae0d7238..f98eb2ab1005 100644
> > --- a/drivers/tty/serial/8250/8250_pcilib.c
> > +++ b/drivers/tty/serial/8250/8250_pcilib.c
> > @@ -28,13 +28,14 @@ int serial8250_pci_setup_port(struct pci_dev *dev, struct uart_8250_port *port,
> >   		return -EINVAL;
> >   
> >   	if (pci_resource_flags(dev, bar) & IORESOURCE_MEM) {
> > -		if (!pcim_iomap(dev, bar, 0) && !pcim_iomap_table(dev))
> > -			return -ENOMEM;
> > -
> >   		port->port.iotype = UPIO_MEM;
> >   		port->port.iobase = 0;
> >   		port->port.mapbase = pci_resource_start(dev, bar) + offset;
> > -		port->port.membase = pcim_iomap_table(dev)[bar] + offset;
> > +
> > +		port->port.membase = pcim_iomap_range(dev, bar, offset, 0);
> > +		if (IS_ERR(port->port.membase))
> > +			return PTR_ERR(port->port.membase);
> > +
> >   		port->port.regshift = regshift;
> >   	} else if (IS_ENABLED(CONFIG_HAS_IOPORT)) {
> >   		port->port.iotype = UPIO_PORT;
> 


  reply	other threads:[~2025-12-11 13:57 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-26  9:10 Philipp Stanner
2025-11-26 17:02 ` Guenter Roeck
2025-12-11 13:57   ` Philipp Stanner [this message]
2025-12-17 14:06     ` Greg Kroah-Hartman
2025-12-17 16:11       ` Guenter Roeck
2025-12-18  9:02         ` Philipp Stanner
2025-12-18  9:30           ` Philipp Stanner

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=de540d7789d0e9f77efde05fab4705b8d97245d8.camel@mailbox.org \
    --to=phasta@mailbox.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jirislaby@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=peterz@infradead.org \
    --cc=phasta@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

all inboxes | Powered by JetHome®