2008-05-19 06:35:41 +00:00
|
|
|
Index: linux-2.6.22.19/drivers/serial/atmel_serial.c
|
|
|
|
===================================================================
|
|
|
|
--- linux-2.6.22.19.orig/drivers/serial/atmel_serial.c
|
|
|
|
+++ linux-2.6.22.19/drivers/serial/atmel_serial.c
|
|
|
|
@@ -174,7 +174,35 @@ static void atmel_set_mctrl(struct uart_
|
2007-05-09 08:29:08 +00:00
|
|
|
at91_set_gpio_value(AT91_PIN_PA21, 0);
|
|
|
|
else
|
|
|
|
at91_set_gpio_value(AT91_PIN_PA21, 1);
|
|
|
|
+
|
2007-05-28 14:47:05 +00:00
|
|
|
+ /*
|
|
|
|
+ * FDL VersaLink adds GPIOS to provide full modem control on
|
|
|
|
+ * USART 0 - Drive DTR and RI pins manually
|
|
|
|
+ */
|
|
|
|
+ if (mctrl & TIOCM_DTR)
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB6, 0);
|
|
|
|
+ else
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB6, 1);
|
|
|
|
+ if (mctrl & TIOCM_RI)
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB7, 0);
|
|
|
|
+ else
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB7, 1);
|
2007-05-09 08:29:08 +00:00
|
|
|
}
|
2007-05-28 14:47:05 +00:00
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * FDL VersaLink adds GPIOS to provide full modem control on
|
|
|
|
+ * USART 3 - Drive DTR and RI pins manually
|
|
|
|
+ */
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3) {
|
|
|
|
+ if (mctrl & TIOCM_DTR)
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB29, 0);
|
|
|
|
+ else
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB29, 1);
|
|
|
|
+ if (mctrl & TIOCM_RI)
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB2, 0);
|
|
|
|
+ else
|
|
|
|
+ at91_set_gpio_value(AT91_PIN_PB2, 1);
|
|
|
|
+ }
|
2007-05-09 08:29:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
2007-05-28 14:47:05 +00:00
|
|
|
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -211,8 +239,10 @@ static u_int atmel_get_mctrl(struct uart
|
2007-05-09 08:29:08 +00:00
|
|
|
/*
|
|
|
|
* The control signals are active low.
|
|
|
|
*/
|
|
|
|
- if (!(status & ATMEL_US_DCD))
|
|
|
|
- ret |= TIOCM_CD;
|
|
|
|
+
|
2007-05-28 14:47:05 +00:00
|
|
|
+ if (!(port->mapbase == AT91RM9200_BASE_US0 || port->mapbase == AT91RM9200_BASE_US3))
|
2007-05-09 08:29:08 +00:00
|
|
|
+ if (!(status & ATMEL_US_DCD))
|
|
|
|
+ ret |= TIOCM_CD;
|
|
|
|
if (!(status & ATMEL_US_CTS))
|
|
|
|
ret |= TIOCM_CTS;
|
|
|
|
if (!(status & ATMEL_US_DSR))
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -220,6 +250,16 @@ static u_int atmel_get_mctrl(struct uart
|
2007-05-09 08:29:08 +00:00
|
|
|
if (!(status & ATMEL_US_RI))
|
|
|
|
ret |= TIOCM_RI;
|
|
|
|
|
2007-05-28 14:47:05 +00:00
|
|
|
+ /*
|
|
|
|
+ * Read the GPIO's for the FDL VersaLink special case
|
|
|
|
+ */
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US0)
|
|
|
|
+ if (!(at91_get_gpio_value(AT91_PIN_PA19)))
|
|
|
|
+ ret |= TIOCM_CD;
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3)
|
|
|
|
+ if (!(at91_get_gpio_value(AT91_PIN_PA24)))
|
|
|
|
+ ret |= TIOCM_CD;
|
2007-05-09 08:29:08 +00:00
|
|
|
+
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -511,6 +551,34 @@ static void atmel_tx_chars(struct uart_p
|
2007-05-09 15:19:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
+ * USART0 DCD Interrupt handler
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+static irqreturn_t atmel_u0_DCD_interrupt(int irq, void *dev_id)
|
|
|
|
+{
|
2007-05-28 14:47:05 +00:00
|
|
|
+ struct uart_port *port = dev_id;
|
|
|
|
+ int status = at91_get_gpio_value(irq);
|
|
|
|
+
|
|
|
|
+ uart_handle_dcd_change(port, !(status));
|
2007-05-09 15:19:49 +00:00
|
|
|
+
|
2007-05-28 14:47:05 +00:00
|
|
|
+ return IRQ_HANDLED;
|
2007-05-09 15:19:49 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * USART3 DCD Interrupt handler
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+static irqreturn_t atmel_u3_DCD_interrupt(int irq, void *dev_id)
|
|
|
|
+{
|
2007-05-28 14:47:05 +00:00
|
|
|
+ struct uart_port *port = dev_id;
|
|
|
|
+ int status = at91_get_gpio_value(irq);
|
|
|
|
+
|
|
|
|
+ uart_handle_dcd_change(port, !(status));
|
2007-05-09 15:19:49 +00:00
|
|
|
+
|
2007-05-28 14:47:05 +00:00
|
|
|
+ return IRQ_HANDLED;
|
2007-05-09 15:19:49 +00:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
* Interrupt handler
|
|
|
|
*/
|
|
|
|
static irqreturn_t atmel_interrupt(int irq, void *dev_id)
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -587,6 +655,23 @@ static int atmel_startup(struct uart_por
|
2007-05-09 15:19:49 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US0) {
|
|
|
|
+ retval = request_irq(AT91_PIN_PA19, atmel_u0_DCD_interrupt, 0, "atmel_serial", port);
|
|
|
|
+ if (retval) {
|
|
|
|
+ printk("atmel_serial: atmel_startup - Can't get u0DCD irq\n");
|
|
|
|
+ free_irq(port->irq, port);
|
|
|
|
+ return retval;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3) {
|
|
|
|
+ retval = request_irq(AT91_PIN_PA24, atmel_u3_DCD_interrupt, 0, "atmel_serial", port);
|
|
|
|
+ if (retval) {
|
|
|
|
+ printk("atmel_serial: atmel_startup - Can't get u3DCD irq\n");
|
|
|
|
+ free_irq(port->irq, port);
|
|
|
|
+ return retval;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
2007-05-28 14:47:05 +00:00
|
|
|
/*
|
2007-05-09 15:19:49 +00:00
|
|
|
* Initialize DMA (if necessary)
|
|
|
|
*/
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -603,6 +688,10 @@ static int atmel_startup(struct uart_por
|
2007-05-09 15:19:49 +00:00
|
|
|
kfree(atmel_port->pdc_rx[0].buf);
|
|
|
|
}
|
|
|
|
free_irq(port->irq, port);
|
2007-05-28 14:47:05 +00:00
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US0)
|
|
|
|
+ free_irq(AT91_PIN_PA19, port);
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3)
|
|
|
|
+ free_irq(AT91_PIN_PA24, port);
|
2007-05-09 15:19:49 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
pdc->dma_addr = dma_map_single(port->dev, pdc->buf, PDC_BUFFER_SIZE, DMA_FROM_DEVICE);
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -636,6 +725,10 @@ static int atmel_startup(struct uart_por
|
2007-05-09 15:19:49 +00:00
|
|
|
retval = atmel_open_hook(port);
|
|
|
|
if (retval) {
|
|
|
|
free_irq(port->irq, port);
|
2007-05-28 14:47:05 +00:00
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US0)
|
|
|
|
+ free_irq(AT91_PIN_PA19, port);
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3)
|
|
|
|
+ free_irq(AT91_PIN_PA24, port);
|
2007-05-09 15:19:49 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
2008-05-19 06:35:41 +00:00
|
|
|
@@ -701,6 +794,10 @@ static void atmel_shutdown(struct uart_p
|
2007-05-09 15:19:49 +00:00
|
|
|
* Free the interrupt
|
|
|
|
*/
|
|
|
|
free_irq(port->irq, port);
|
2007-05-28 14:47:05 +00:00
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US0)
|
|
|
|
+ free_irq(AT91_PIN_PA19, port);
|
|
|
|
+ if (port->mapbase == AT91RM9200_BASE_US3)
|
|
|
|
+ free_irq(AT91_PIN_PA24, port);
|
2007-05-09 15:19:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If there is a specific "close" function (to unregister
|