1 --- linux-2.6.21.1.orig/drivers/serial/atmel_serial.c 2007-05-28 12:22:29.000000000 +0200
2 +++ linux-2.6.21.1/drivers/serial/atmel_serial.c 2007-05-28 16:39:09.000000000 +0200
4 at91_set_gpio_value(AT91_PIN_PA21, 0);
6 at91_set_gpio_value(AT91_PIN_PA21, 1);
9 + * FDL VersaLink adds GPIOS to provide full modem control on
10 + * USART 0 - Drive DTR and RI pins manually
12 + if (mctrl & TIOCM_DTR)
13 + at91_set_gpio_value(AT91_PIN_PB6, 0);
15 + at91_set_gpio_value(AT91_PIN_PB6, 1);
16 + if (mctrl & TIOCM_RI)
17 + at91_set_gpio_value(AT91_PIN_PB7, 0);
19 + at91_set_gpio_value(AT91_PIN_PB7, 1);
23 + * FDL VersaLink adds GPIOS to provide full modem control on
24 + * USART 3 - Drive DTR and RI pins manually
26 + if (port->mapbase == AT91RM9200_BASE_US3) {
27 + if (mctrl & TIOCM_DTR)
28 + at91_set_gpio_value(AT91_PIN_PB29, 0);
30 + at91_set_gpio_value(AT91_PIN_PB29, 1);
31 + if (mctrl & TIOCM_RI)
32 + at91_set_gpio_value(AT91_PIN_PB2, 0);
34 + at91_set_gpio_value(AT91_PIN_PB2, 1);
41 * The control signals are active low.
43 - if (!(status & ATMEL_US_DCD))
46 + if (!(port->mapbase == AT91RM9200_BASE_US0 || port->mapbase == AT91RM9200_BASE_US3))
47 + if (!(status & ATMEL_US_DCD))
49 if (!(status & ATMEL_US_CTS))
51 if (!(status & ATMEL_US_DSR))
53 if (!(status & ATMEL_US_RI))
57 + * Read the GPIO's for the FDL VersaLink special case
59 + if (port->mapbase == AT91RM9200_BASE_US0)
60 + if (!(at91_get_gpio_value(AT91_PIN_PA19)))
62 + if (port->mapbase == AT91RM9200_BASE_US3)
63 + if (!(at91_get_gpio_value(AT91_PIN_PA24)))
73 + * USART0 DCD Interrupt handler
76 +static irqreturn_t atmel_u0_DCD_interrupt(int irq, void *dev_id)
78 + struct uart_port *port = dev_id;
79 + int status = at91_get_gpio_value(irq);
81 + uart_handle_dcd_change(port, !(status));
87 + * USART3 DCD Interrupt handler
90 +static irqreturn_t atmel_u3_DCD_interrupt(int irq, void *dev_id)
92 + struct uart_port *port = dev_id;
93 + int status = at91_get_gpio_value(irq);
95 + uart_handle_dcd_change(port, !(status));
103 static irqreturn_t atmel_interrupt(int irq, void *dev_id)
108 + if (port->mapbase == AT91RM9200_BASE_US0) {
109 + retval = request_irq(AT91_PIN_PA19, atmel_u0_DCD_interrupt, 0, "atmel_serial", port);
111 + printk("atmel_serial: atmel_startup - Can't get u0DCD irq\n");
112 + free_irq(port->irq, port);
116 + if (port->mapbase == AT91RM9200_BASE_US3) {
117 + retval = request_irq(AT91_PIN_PA24, atmel_u3_DCD_interrupt, 0, "atmel_serial", port);
119 + printk("atmel_serial: atmel_startup - Can't get u3DCD irq\n");
120 + free_irq(port->irq, port);
126 * Initialize DMA (if necessary)
129 kfree(atmel_port->pdc_rx[0].buf);
131 free_irq(port->irq, port);
132 + if (port->mapbase == AT91RM9200_BASE_US0)
133 + free_irq(AT91_PIN_PA19, port);
134 + if (port->mapbase == AT91RM9200_BASE_US3)
135 + free_irq(AT91_PIN_PA24, port);
138 pdc->dma_addr = dma_map_single(port->dev, pdc->buf, PDC_BUFFER_SIZE, DMA_FROM_DEVICE);
140 retval = atmel_open_hook(port);
142 free_irq(port->irq, port);
143 + if (port->mapbase == AT91RM9200_BASE_US0)
144 + free_irq(AT91_PIN_PA19, port);
145 + if (port->mapbase == AT91RM9200_BASE_US3)
146 + free_irq(AT91_PIN_PA24, port);
153 free_irq(port->irq, port);
154 + if (port->mapbase == AT91RM9200_BASE_US0)
155 + free_irq(AT91_PIN_PA19, port);
156 + if (port->mapbase == AT91RM9200_BASE_US3)
157 + free_irq(AT91_PIN_PA24, port);
160 * If there is a specific "close" function (to unregister