public inbox for linux-serial@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add ignore_ports option
@ 2005-05-10 12:11 Aristeu Sergio Rozanski Filho
  2005-05-10 12:50 ` Russell King
  0 siblings, 1 reply; 5+ messages in thread
From: Aristeu Sergio Rozanski Filho @ 2005-05-10 12:11 UTC (permalink / raw)
  To: linux-serial; +Cc: rmk+serial

[-- 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");

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-05-10 13:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-10 12:11 [PATCH] add ignore_ports option Aristeu Sergio Rozanski Filho
2005-05-10 12:50 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox