From: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
To: linux-serial@vger.kernel.org
Cc: rmk+serial@arm.linux.org.uk
Subject: [PATCH] add ignore_ports option
Date: Tue, 10 May 2005 09:11:51 -0300 [thread overview]
Message-ID: <20050510121151.GA4676@cathedrallabs.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 146 bytes --]
Hi,
this patch adds an option to 8250 driver to avoid probing for a
serial port in specified addresses.
Please consider applying
--
Aristeu
[-- Attachment #2: 8250-add_ignore_io_ports_option.patch --]
[-- Type: text/plain, Size: 1534 bytes --]
o Add ignore_ports option to avoid probing for a port in specified addresses
Signed-off-by: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
Index: 2.6/drivers/serial/8250.c
===================================================================
--- 2.6.orig/drivers/serial/8250.c 2005-05-09 13:14:33.000000000 -0300
+++ 2.6/drivers/serial/8250.c 2005-05-09 17:24:41.000000000 -0300
@@ -121,6 +121,9 @@
#define UART_NR (ARRAY_SIZE(old_serial_port) + CONFIG_SERIAL_8250_NR_UARTS)
+static unsigned long ignore_ports[UART_NR];
+static unsigned int ignore_ports_count;
+
#ifdef CONFIG_SERIAL_8250_RSA
#define PORT_RSA_MAX 4
@@ -2060,13 +2063,19 @@
static void __init
serial8250_register_ports(struct uart_driver *drv, struct device *dev)
{
- int i;
+ int i, j;
serial8250_isa_init_ports();
for (i = 0; i < UART_NR; i++) {
struct uart_8250_port *up = &serial8250_ports[i];
+ for (j = 0; j < ignore_ports_count; j++)
+ if (ignore_ports[j] == up->port.iobase)
+ break;
+ if (j < ignore_ports_count)
+ continue;
+
up->port.dev = dev;
uart_add_one_port(drv, &up->port);
}
@@ -2554,6 +2563,10 @@
MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"
" (unsafe)");
+module_param_array(ignore_ports, ulong, &ignore_ports_count, 0444);
+MODULE_PARM_DESC(ignore_ports, "I/O ports that should be ignored "
+ "on probe");
+
#ifdef CONFIG_SERIAL_8250_RSA
module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);
MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");
next reply other threads:[~2005-05-10 12:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-05-10 12:11 Aristeu Sergio Rozanski Filho [this message]
2005-05-10 12:50 ` [PATCH] add ignore_ports option Russell King
2005-05-10 13:01 ` Aristeu Sergio Rozanski Filho
2005-05-10 13:34 ` Russell King
2005-05-10 13:35 ` Aristeu Sergio Rozanski Filho
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=20050510121151.GA4676@cathedrallabs.org \
--to=aris@cathedrallabs.org \
--cc=linux-serial@vger.kernel.org \
--cc=rmk+serial@arm.linux.org.uk \
/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