serial: 8250: introduce get_divisor() and set_divisor() hook
[linux-2.6-microblaze.git] / drivers / tty / serial / 8250 / 8250_port.c
index 709fe6b..ce0dc17 100644 (file)
@@ -2498,9 +2498,9 @@ static unsigned int npcm_get_divisor(struct uart_8250_port *up,
        return DIV_ROUND_CLOSEST(port->uartclk, 16 * baud + 2) - 2;
 }
 
-static unsigned int serial8250_get_divisor(struct uart_port *port,
-                                          unsigned int baud,
-                                          unsigned int *frac)
+static unsigned int serial8250_do_get_divisor(struct uart_port *port,
+                                             unsigned int baud,
+                                             unsigned int *frac)
 {
        struct uart_8250_port *up = up_to_u8250p(port);
        unsigned int quot;
@@ -2532,6 +2532,16 @@ static unsigned int serial8250_get_divisor(struct uart_port *port,
        return quot;
 }
 
+static unsigned int serial8250_get_divisor(struct uart_port *port,
+                                          unsigned int baud,
+                                          unsigned int *frac)
+{
+       if (port->get_divisor)
+               return port->get_divisor(port, baud, frac);
+
+       return serial8250_do_get_divisor(port, baud, frac);
+}
+
 static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
                                            tcflag_t c_cflag)
 {
@@ -2570,7 +2580,7 @@ static unsigned char serial8250_compute_lcr(struct uart_8250_port *up,
        return cval;
 }
 
-static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
+static void serial8250_do_set_divisor(struct uart_port *port, unsigned int baud,
                            unsigned int quot, unsigned int quot_frac)
 {
        struct uart_8250_port *up = up_to_u8250p(port);
@@ -2603,6 +2613,15 @@ static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
        }
 }
 
+static void serial8250_set_divisor(struct uart_port *port, unsigned int baud,
+                                  unsigned int quot, unsigned int quot_frac)
+{
+       if (port->set_divisor)
+               port->set_divisor(port, baud, quot, quot_frac);
+       else
+               serial8250_do_set_divisor(port, baud, quot, quot_frac);
+}
+
 static unsigned int serial8250_get_baud_rate(struct uart_port *port,
                                             struct ktermios *termios,
                                             struct ktermios *old)