wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Detlev Zundel | 792a09e | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 3 | * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
kevin.morfitt@fearnside-systems.co.uk | ac67804 | 2009-11-17 18:30:34 +0900 | [diff] [blame] | 22 | #include <asm/arch/s3c24x0_cpu.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 23 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 26 | #ifdef CONFIG_SERIAL1 |
| 27 | #define UART_NR S3C24X0_UART0 |
| 28 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 29 | #elif defined(CONFIG_SERIAL2) |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 30 | # if defined(CONFIG_TRAB) |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 31 | # error "TRAB supports only CONFIG_SERIAL1" |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 32 | # endif |
| 33 | #define UART_NR S3C24X0_UART1 |
| 34 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 35 | #elif defined(CONFIG_SERIAL3) |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 36 | # if defined(CONFIG_TRAB) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 37 | # error "TRAB supports only CONFIG_SERIAL1" |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 38 | # endif |
| 39 | #define UART_NR S3C24X0_UART2 |
| 40 | |
| 41 | #else |
| 42 | #error "Bad: you didn't configure serial ..." |
| 43 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 44 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 45 | #include <asm/io.h> |
| 46 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 47 | #if defined(CONFIG_SERIAL_MULTI) |
| 48 | #include <serial.h> |
| 49 | |
| 50 | /* Multi serial device functions */ |
| 51 | #define DECLARE_S3C_SERIAL_FUNCTIONS(port) \ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 52 | int s3serial##port##_init(void) \ |
| 53 | { \ |
| 54 | return serial_init_dev(port); \ |
| 55 | } \ |
| 56 | void s3serial##port##_setbrg(void) \ |
| 57 | { \ |
| 58 | serial_setbrg_dev(port); \ |
| 59 | } \ |
| 60 | int s3serial##port##_getc(void) \ |
| 61 | { \ |
| 62 | return serial_getc_dev(port); \ |
| 63 | } \ |
| 64 | int s3serial##port##_tstc(void) \ |
| 65 | { \ |
| 66 | return serial_tstc_dev(port); \ |
| 67 | } \ |
| 68 | void s3serial##port##_putc(const char c) \ |
| 69 | { \ |
| 70 | serial_putc_dev(port, c); \ |
| 71 | } \ |
| 72 | void s3serial##port##_puts(const char *s) \ |
| 73 | { \ |
| 74 | serial_puts_dev(port, s); \ |
| 75 | } |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 76 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 77 | #define INIT_S3C_SERIAL_STRUCTURE(port, name, bus) { \ |
| 78 | name, \ |
| 79 | bus, \ |
| 80 | s3serial##port##_init, \ |
Anatolij Gustschin | fbb0030 | 2010-04-24 19:27:04 +0200 | [diff] [blame^] | 81 | NULL,\ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 82 | s3serial##port##_setbrg, \ |
| 83 | s3serial##port##_getc, \ |
| 84 | s3serial##port##_tstc, \ |
| 85 | s3serial##port##_putc, \ |
| 86 | s3serial##port##_puts, \ |
| 87 | } |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 88 | |
| 89 | #endif /* CONFIG_SERIAL_MULTI */ |
| 90 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 91 | #ifdef CONFIG_HWFLOW |
| 92 | static int hwflow; |
| 93 | #endif |
| 94 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 95 | void _serial_setbrg(const int dev_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 96 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 97 | struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 98 | unsigned int reg = 0; |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 99 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 100 | |
| 101 | /* value is calculated so : (int)(PCLK/16./baudrate) -1 */ |
| 102 | reg = get_PCLK() / (16 * gd->baudrate) - 1; |
| 103 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 104 | writel(reg, &uart->UBRDIV); |
| 105 | for (i = 0; i < 100; i++) |
| 106 | /* Delay */ ; |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 107 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 108 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 109 | #if defined(CONFIG_SERIAL_MULTI) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 110 | static inline void serial_setbrg_dev(unsigned int dev_index) |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 111 | { |
| 112 | _serial_setbrg(dev_index); |
| 113 | } |
| 114 | #else |
| 115 | void serial_setbrg(void) |
| 116 | { |
| 117 | _serial_setbrg(UART_NR); |
| 118 | } |
| 119 | #endif |
| 120 | |
| 121 | |
| 122 | /* Initialise the serial port. The settings are always 8 data bits, no parity, |
| 123 | * 1 stop bit, no start bits. |
| 124 | */ |
| 125 | static int serial_init_dev(const int dev_index) |
| 126 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 127 | struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index); |
| 128 | |
| 129 | #ifdef CONFIG_HWFLOW |
| 130 | hwflow = 0; /* turned off by default */ |
| 131 | #endif |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 132 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 133 | /* FIFO enable, Tx/Rx FIFO clear */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 134 | writel(0x07, &uart->UFCON); |
| 135 | writel(0x0, &uart->UMCON); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 136 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 137 | /* Normal,No parity,1 stop,8 bit */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 138 | writel(0x3, &uart->ULCON); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 139 | /* |
| 140 | * tx=level,rx=edge,disable timeout int.,enable rx error int., |
| 141 | * normal,interrupt or polling |
| 142 | */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 143 | writel(0x245, &uart->UCON); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 144 | |
| 145 | #ifdef CONFIG_HWFLOW |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 146 | writel(0x1, &uart->UMCON); /* RTS up */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 147 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 148 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 149 | /* FIXME: This is sooooooooooooooooooo ugly */ |
| 150 | #if defined(CONFIG_ARCH_GTA02_v1) || defined(CONFIG_ARCH_GTA02_v2) |
| 151 | /* we need auto hw flow control on the gsm and gps port */ |
| 152 | if (dev_index == 0 || dev_index == 1) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 153 | writel(0x10, &uart->UMCON); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 154 | #endif |
| 155 | _serial_setbrg(dev_index); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 156 | |
| 157 | return (0); |
| 158 | } |
| 159 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 160 | #if !defined(CONFIG_SERIAL_MULTI) |
| 161 | /* Initialise the serial port. The settings are always 8 data bits, no parity, |
| 162 | * 1 stop bit, no start bits. |
| 163 | */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 164 | int serial_init(void) |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 165 | { |
| 166 | return serial_init_dev(UART_NR); |
| 167 | } |
| 168 | #endif |
| 169 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 170 | /* |
| 171 | * Read a single byte from the serial port. Returns 1 on success, 0 |
| 172 | * otherwise. When the function is succesfull, the character read is |
| 173 | * written into its argument c. |
| 174 | */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 175 | int _serial_getc(const int dev_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 176 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 177 | struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 178 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 179 | while (!(readl(&uart->UTRSTAT) & 0x1)) |
| 180 | /* wait for character to arrive */ ; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 181 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 182 | return readb(&uart->URXH) & 0xff; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 183 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 184 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 185 | #if defined(CONFIG_SERIAL_MULTI) |
| 186 | static inline int serial_getc_dev(unsigned int dev_index) |
| 187 | { |
| 188 | return _serial_getc(dev_index); |
| 189 | } |
| 190 | #else |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 191 | int serial_getc(void) |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 192 | { |
| 193 | return _serial_getc(UART_NR); |
| 194 | } |
| 195 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 196 | |
| 197 | #ifdef CONFIG_HWFLOW |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 198 | int hwflow_onoff(int on) |
| 199 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 200 | switch (on) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 201 | case 0: |
| 202 | default: |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 203 | break; /* return current */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 204 | case 1: |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 205 | hwflow = 1; /* turn on */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 206 | break; |
| 207 | case -1: |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 208 | hwflow = 0; /* turn off */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 209 | break; |
| 210 | } |
| 211 | return hwflow; |
| 212 | } |
| 213 | #endif |
| 214 | |
| 215 | #ifdef CONFIG_MODEM_SUPPORT |
| 216 | static int be_quiet = 0; |
| 217 | void disable_putc(void) |
| 218 | { |
| 219 | be_quiet = 1; |
| 220 | } |
| 221 | |
| 222 | void enable_putc(void) |
| 223 | { |
| 224 | be_quiet = 0; |
| 225 | } |
| 226 | #endif |
| 227 | |
| 228 | |
| 229 | /* |
| 230 | * Output a single byte to the serial port. |
| 231 | */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 232 | void _serial_putc(const char c, const int dev_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 233 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 234 | struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 235 | #ifdef CONFIG_MODEM_SUPPORT |
| 236 | if (be_quiet) |
| 237 | return; |
| 238 | #endif |
| 239 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 240 | while (!(readl(&uart->UTRSTAT) & 0x2)) |
| 241 | /* wait for room in the tx FIFO */ ; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 242 | |
| 243 | #ifdef CONFIG_HWFLOW |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 244 | while (hwflow && !(readl(&uart->UMSTAT) & 0x1)) |
| 245 | /* Wait for CTS up */ ; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 246 | #endif |
| 247 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 248 | writeb(c, &uart->UTXH); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 249 | |
| 250 | /* If \n, also do \r */ |
| 251 | if (c == '\n') |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 252 | serial_putc('\r'); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 253 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 254 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 255 | #if defined(CONFIG_SERIAL_MULTI) |
| 256 | static inline void serial_putc_dev(unsigned int dev_index, const char c) |
| 257 | { |
| 258 | _serial_putc(c, dev_index); |
| 259 | } |
| 260 | #else |
| 261 | void serial_putc(const char c) |
| 262 | { |
| 263 | _serial_putc(c, UART_NR); |
| 264 | } |
| 265 | #endif |
| 266 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 267 | |
| 268 | /* |
| 269 | * Test whether a character is in the RX buffer |
| 270 | */ |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 271 | int _serial_tstc(const int dev_index) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 272 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 273 | struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index); |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 274 | |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 275 | return readl(&uart->UTRSTAT) & 0x1; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 276 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 277 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 278 | #if defined(CONFIG_SERIAL_MULTI) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 279 | static inline int serial_tstc_dev(unsigned int dev_index) |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 280 | { |
| 281 | return _serial_tstc(dev_index); |
| 282 | } |
| 283 | #else |
| 284 | int serial_tstc(void) |
| 285 | { |
| 286 | return _serial_tstc(UART_NR); |
| 287 | } |
| 288 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 289 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 290 | void _serial_puts(const char *s, const int dev_index) |
| 291 | { |
| 292 | while (*s) { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 293 | _serial_putc(*s++, dev_index); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 294 | } |
| 295 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 296 | |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 297 | #if defined(CONFIG_SERIAL_MULTI) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 298 | static inline void serial_puts_dev(int dev_index, const char *s) |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 299 | { |
| 300 | _serial_puts(s, dev_index); |
| 301 | } |
| 302 | #else |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 303 | void serial_puts(const char *s) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 304 | { |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 305 | _serial_puts(s, UART_NR); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 306 | } |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 307 | #endif |
| 308 | |
| 309 | #if defined(CONFIG_SERIAL_MULTI) |
| 310 | DECLARE_S3C_SERIAL_FUNCTIONS(0); |
| 311 | struct serial_device s3c24xx_serial0_device = |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 312 | INIT_S3C_SERIAL_STRUCTURE(0, "s3ser0", "S3UART1"); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 313 | DECLARE_S3C_SERIAL_FUNCTIONS(1); |
| 314 | struct serial_device s3c24xx_serial1_device = |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 315 | INIT_S3C_SERIAL_STRUCTURE(1, "s3ser1", "S3UART2"); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 316 | DECLARE_S3C_SERIAL_FUNCTIONS(2); |
| 317 | struct serial_device s3c24xx_serial2_device = |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 318 | INIT_S3C_SERIAL_STRUCTURE(2, "s3ser2", "S3UART3"); |
Harald Welte | a7c185e | 2007-12-19 14:24:40 +0100 | [diff] [blame] | 319 | #endif /* CONFIG_SERIAL_MULTI */ |