]> git.sur5r.net Git - u-boot/blobdiff - drivers/serial/serial_s3c24x0.c
power: regulator: lp873x: Add regulator support
[u-boot] / drivers / serial / serial_s3c24x0.c
index c07f4c9b4737f5a64ea59e1a570e77c9850e0f7f..0f0878a0510de1ccff4132c9ded65b355b9a4386 100644 (file)
@@ -65,11 +65,7 @@ DECLARE_GLOBAL_DATA_PTR;
        .puts   = s3serial##port##_puts,                \
 }
 
-#ifdef CONFIG_HWFLOW
-static int hwflow;
-#endif
-
-void _serial_setbrg(const int dev_index)
+static void _serial_setbrg(const int dev_index)
 {
        struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
        unsigned int reg = 0;
@@ -95,10 +91,6 @@ static int serial_init_dev(const int dev_index)
 {
        struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
 
-#ifdef CONFIG_HWFLOW
-       hwflow = 0;     /* turned off by default */
-#endif
-
        /* FIFO enable, Tx/Rx FIFO clear */
        writel(0x07, &uart->ufcon);
        writel(0x0, &uart->umcon);
@@ -111,16 +103,6 @@ static int serial_init_dev(const int dev_index)
         */
        writel(0x245, &uart->ucon);
 
-#ifdef CONFIG_HWFLOW
-       writel(0x1, &uart->umcon);      /* rts up */
-#endif
-
-       /* FIXME: This is sooooooooooooooooooo ugly */
-#if defined(CONFIG_ARCH_GTA02_v1) || defined(CONFIG_ARCH_GTA02_v2)
-       /* we need auto hw flow control on the gsm and gps port */
-       if (dev_index == 0 || dev_index == 1)
-               writel(0x10, &uart->umcon);
-#endif
        _serial_setbrg(dev_index);
 
        return (0);
@@ -131,7 +113,7 @@ static int serial_init_dev(const int dev_index)
  * otherwise. When the function is succesfull, the character read is
  * written into its argument c.
  */
-int _serial_getc(const int dev_index)
+static int _serial_getc(const int dev_index)
 {
        struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
 
@@ -146,62 +128,21 @@ static inline int serial_getc_dev(unsigned int dev_index)
        return _serial_getc(dev_index);
 }
 
-#ifdef CONFIG_HWFLOW
-int hwflow_onoff(int on)
-{
-       switch (on) {
-       case 0:
-       default:
-               break;          /* return current */
-       case 1:
-               hwflow = 1;     /* turn on */
-               break;
-       case -1:
-               hwflow = 0;     /* turn off */
-               break;
-       }
-       return hwflow;
-}
-#endif
-
-#ifdef CONFIG_MODEM_SUPPORT
-static int be_quiet = 0;
-void disable_putc(void)
-{
-       be_quiet = 1;
-}
-
-void enable_putc(void)
-{
-       be_quiet = 0;
-}
-#endif
-
-
 /*
  * Output a single byte to the serial port.
  */
-void _serial_putc(const char c, const int dev_index)
+static void _serial_putc(const char c, const int dev_index)
 {
        struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
-#ifdef CONFIG_MODEM_SUPPORT
-       if (be_quiet)
-               return;
-#endif
+
+       /* If \n, also do \r */
+       if (c == '\n')
+               serial_putc('\r');
 
        while (!(readl(&uart->utrstat) & 0x2))
                /* wait for room in the tx FIFO */ ;
 
-#ifdef CONFIG_HWFLOW
-       while (hwflow && !(readl(&uart->umstat) & 0x1))
-               /* Wait for CTS up */ ;
-#endif
-
        writeb(c, &uart->utxh);
-
-       /* If \n, also do \r */
-       if (c == '\n')
-               serial_putc('\r');
 }
 
 static inline void serial_putc_dev(unsigned int dev_index, const char c)
@@ -212,7 +153,7 @@ static inline void serial_putc_dev(unsigned int dev_index, const char c)
 /*
  * Test whether a character is in the RX buffer
  */
-int _serial_tstc(const int dev_index)
+static int _serial_tstc(const int dev_index)
 {
        struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
 
@@ -224,7 +165,7 @@ static inline int serial_tstc_dev(unsigned int dev_index)
        return _serial_tstc(dev_index);
 }
 
-void _serial_puts(const char *s, const int dev_index)
+static void _serial_puts(const char *s, const int dev_index)
 {
        while (*s) {
                _serial_putc(*s++, dev_index);