wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 3 | * Rob Taylor, Flying Pig Systems. robt@flyingpig.com. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Mike Frysinger | 6c768ca | 2011-04-29 18:03:29 +0000 | [diff] [blame] | 9 | #include <linux/compiler.h> |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 10 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 11 | #include <ns16550.h> |
Jean-Christophe PLAGNIOL-VILLARD | 55d6d2d | 2008-08-13 01:40:40 +0200 | [diff] [blame] | 12 | #ifdef CONFIG_NS87308 |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 13 | #include <ns87308.h> |
| 14 | #endif |
| 15 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 16 | #include <serial.h> |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 17 | |
Scott Wood | 48cbc3a | 2012-10-16 15:43:15 -0500 | [diff] [blame] | 18 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
| 19 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 22 | #if !defined(CONFIG_CONS_INDEX) |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 23 | #elif (CONFIG_CONS_INDEX < 1) || (CONFIG_CONS_INDEX > 6) |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 24 | #error "Invalid console index value." |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 25 | #endif |
| 26 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 27 | #if CONFIG_CONS_INDEX == 1 && !defined(CONFIG_SYS_NS16550_COM1) |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 28 | #error "Console port 1 defined but not configured." |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | #elif CONFIG_CONS_INDEX == 2 && !defined(CONFIG_SYS_NS16550_COM2) |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 30 | #error "Console port 2 defined but not configured." |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 31 | #elif CONFIG_CONS_INDEX == 3 && !defined(CONFIG_SYS_NS16550_COM3) |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 32 | #error "Console port 3 defined but not configured." |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 33 | #elif CONFIG_CONS_INDEX == 4 && !defined(CONFIG_SYS_NS16550_COM4) |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 34 | #error "Console port 4 defined but not configured." |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 35 | #elif CONFIG_CONS_INDEX == 5 && !defined(CONFIG_SYS_NS16550_COM5) |
| 36 | #error "Console port 5 defined but not configured." |
| 37 | #elif CONFIG_CONS_INDEX == 6 && !defined(CONFIG_SYS_NS16550_COM6) |
| 38 | #error "Console port 6 defined but not configured." |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 39 | #endif |
| 40 | |
| 41 | /* Note: The port number specified in the functions is 1 based. |
| 42 | * the array is 0 based. |
| 43 | */ |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 44 | static NS16550_t serial_ports[6] = { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 45 | #ifdef CONFIG_SYS_NS16550_COM1 |
| 46 | (NS16550_t)CONFIG_SYS_NS16550_COM1, |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 47 | #else |
| 48 | NULL, |
| 49 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #ifdef CONFIG_SYS_NS16550_COM2 |
| 51 | (NS16550_t)CONFIG_SYS_NS16550_COM2, |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 52 | #else |
| 53 | NULL, |
| 54 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 55 | #ifdef CONFIG_SYS_NS16550_COM3 |
| 56 | (NS16550_t)CONFIG_SYS_NS16550_COM3, |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 57 | #else |
| 58 | NULL, |
| 59 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | #ifdef CONFIG_SYS_NS16550_COM4 |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 61 | (NS16550_t)CONFIG_SYS_NS16550_COM4, |
| 62 | #else |
| 63 | NULL, |
| 64 | #endif |
| 65 | #ifdef CONFIG_SYS_NS16550_COM5 |
| 66 | (NS16550_t)CONFIG_SYS_NS16550_COM5, |
| 67 | #else |
| 68 | NULL, |
| 69 | #endif |
| 70 | #ifdef CONFIG_SYS_NS16550_COM6 |
| 71 | (NS16550_t)CONFIG_SYS_NS16550_COM6 |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 72 | #else |
| 73 | NULL |
| 74 | #endif |
| 75 | }; |
| 76 | |
| 77 | #define PORT serial_ports[port-1] |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 78 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 79 | /* Multi serial device functions */ |
| 80 | #define DECLARE_ESERIAL_FUNCTIONS(port) \ |
Kim Phillips | ac63f2a | 2012-10-29 13:34:47 +0000 | [diff] [blame] | 81 | static int eserial##port##_init(void) \ |
| 82 | { \ |
| 83 | int clock_divisor; \ |
Simon Glass | fa54eb1 | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 84 | clock_divisor = ns16550_calc_divisor(serial_ports[port-1], \ |
| 85 | CONFIG_SYS_NS16550_CLK, gd->baudrate); \ |
Kim Phillips | ac63f2a | 2012-10-29 13:34:47 +0000 | [diff] [blame] | 86 | NS16550_init(serial_ports[port-1], clock_divisor); \ |
| 87 | return 0 ; \ |
| 88 | } \ |
| 89 | static void eserial##port##_setbrg(void) \ |
| 90 | { \ |
| 91 | serial_setbrg_dev(port); \ |
| 92 | } \ |
| 93 | static int eserial##port##_getc(void) \ |
| 94 | { \ |
| 95 | return serial_getc_dev(port); \ |
| 96 | } \ |
| 97 | static int eserial##port##_tstc(void) \ |
| 98 | { \ |
| 99 | return serial_tstc_dev(port); \ |
| 100 | } \ |
| 101 | static void eserial##port##_putc(const char c) \ |
| 102 | { \ |
| 103 | serial_putc_dev(port, c); \ |
| 104 | } \ |
| 105 | static void eserial##port##_puts(const char *s) \ |
| 106 | { \ |
| 107 | serial_puts_dev(port, s); \ |
| 108 | } |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 109 | |
| 110 | /* Serial device descriptor */ |
Marek Vasut | 90bad89 | 2012-09-09 18:48:28 +0200 | [diff] [blame] | 111 | #define INIT_ESERIAL_STRUCTURE(port, __name) { \ |
| 112 | .name = __name, \ |
| 113 | .start = eserial##port##_init, \ |
| 114 | .stop = NULL, \ |
| 115 | .setbrg = eserial##port##_setbrg, \ |
| 116 | .getc = eserial##port##_getc, \ |
| 117 | .tstc = eserial##port##_tstc, \ |
| 118 | .putc = eserial##port##_putc, \ |
| 119 | .puts = eserial##port##_puts, \ |
| 120 | } |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 121 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 122 | void |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 123 | _serial_putc(const char c,const int port) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 124 | { |
| 125 | if (c == '\n') |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 126 | NS16550_putc(PORT, '\r'); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 127 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 128 | NS16550_putc(PORT, c); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 132 | _serial_putc_raw(const char c,const int port) |
| 133 | { |
| 134 | NS16550_putc(PORT, c); |
| 135 | } |
| 136 | |
| 137 | void |
| 138 | _serial_puts (const char *s,const int port) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 139 | { |
| 140 | while (*s) { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 141 | _serial_putc (*s++,port); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 142 | } |
| 143 | } |
| 144 | |
| 145 | |
| 146 | int |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 147 | _serial_getc(const int port) |
| 148 | { |
| 149 | return NS16550_getc(PORT); |
| 150 | } |
| 151 | |
| 152 | int |
| 153 | _serial_tstc(const int port) |
| 154 | { |
| 155 | return NS16550_tstc(PORT); |
| 156 | } |
| 157 | |
| 158 | void |
| 159 | _serial_setbrg (const int port) |
| 160 | { |
| 161 | int clock_divisor; |
| 162 | |
Simon Glass | fa54eb1 | 2014-09-04 16:27:32 -0600 | [diff] [blame] | 163 | clock_divisor = ns16550_calc_divisor(PORT, CONFIG_SYS_NS16550_CLK, |
| 164 | gd->baudrate); |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 165 | NS16550_reinit(PORT, clock_divisor); |
| 166 | } |
| 167 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 168 | static inline void |
| 169 | serial_putc_dev(unsigned int dev_index,const char c) |
| 170 | { |
| 171 | _serial_putc(c,dev_index); |
| 172 | } |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 173 | |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 174 | static inline void |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 175 | serial_putc_raw_dev(unsigned int dev_index,const char c) |
| 176 | { |
| 177 | _serial_putc_raw(c,dev_index); |
| 178 | } |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 179 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 180 | static inline void |
| 181 | serial_puts_dev(unsigned int dev_index,const char *s) |
| 182 | { |
| 183 | _serial_puts(s,dev_index); |
| 184 | } |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 185 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 186 | static inline int |
| 187 | serial_getc_dev(unsigned int dev_index) |
| 188 | { |
| 189 | return _serial_getc(dev_index); |
| 190 | } |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 191 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 192 | static inline int |
| 193 | serial_tstc_dev(unsigned int dev_index) |
| 194 | { |
| 195 | return _serial_tstc(dev_index); |
| 196 | } |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 197 | |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 198 | static inline void |
| 199 | serial_setbrg_dev(unsigned int dev_index) |
| 200 | { |
| 201 | _serial_setbrg(dev_index); |
| 202 | } |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 203 | |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 204 | #if defined(CONFIG_SYS_NS16550_COM1) |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 205 | DECLARE_ESERIAL_FUNCTIONS(1); |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 206 | struct serial_device eserial1_device = |
Mike Frysinger | 1c9a560 | 2011-04-29 18:03:31 +0000 | [diff] [blame] | 207 | INIT_ESERIAL_STRUCTURE(1, "eserial0"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 208 | #endif |
| 209 | #if defined(CONFIG_SYS_NS16550_COM2) |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 210 | DECLARE_ESERIAL_FUNCTIONS(2); |
| 211 | struct serial_device eserial2_device = |
Mike Frysinger | 1c9a560 | 2011-04-29 18:03:31 +0000 | [diff] [blame] | 212 | INIT_ESERIAL_STRUCTURE(2, "eserial1"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 213 | #endif |
| 214 | #if defined(CONFIG_SYS_NS16550_COM3) |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 215 | DECLARE_ESERIAL_FUNCTIONS(3); |
| 216 | struct serial_device eserial3_device = |
Mike Frysinger | 1c9a560 | 2011-04-29 18:03:31 +0000 | [diff] [blame] | 217 | INIT_ESERIAL_STRUCTURE(3, "eserial2"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 218 | #endif |
| 219 | #if defined(CONFIG_SYS_NS16550_COM4) |
Wolfgang Denk | 0fd3025 | 2006-08-30 23:02:10 +0200 | [diff] [blame] | 220 | DECLARE_ESERIAL_FUNCTIONS(4); |
| 221 | struct serial_device eserial4_device = |
Mike Frysinger | 1c9a560 | 2011-04-29 18:03:31 +0000 | [diff] [blame] | 222 | INIT_ESERIAL_STRUCTURE(4, "eserial3"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 223 | #endif |
| 224 | #if defined(CONFIG_SYS_NS16550_COM5) |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 225 | DECLARE_ESERIAL_FUNCTIONS(5); |
| 226 | struct serial_device eserial5_device = |
| 227 | INIT_ESERIAL_STRUCTURE(5, "eserial4"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 228 | #endif |
| 229 | #if defined(CONFIG_SYS_NS16550_COM6) |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 230 | DECLARE_ESERIAL_FUNCTIONS(6); |
| 231 | struct serial_device eserial6_device = |
| 232 | INIT_ESERIAL_STRUCTURE(6, "eserial5"); |
Scott Wood | 55db9cc | 2013-01-18 15:42:16 +0000 | [diff] [blame] | 233 | #endif |
Mike Frysinger | 6c768ca | 2011-04-29 18:03:29 +0000 | [diff] [blame] | 234 | |
| 235 | __weak struct serial_device *default_serial_console(void) |
| 236 | { |
| 237 | #if CONFIG_CONS_INDEX == 1 |
| 238 | return &eserial1_device; |
| 239 | #elif CONFIG_CONS_INDEX == 2 |
| 240 | return &eserial2_device; |
| 241 | #elif CONFIG_CONS_INDEX == 3 |
| 242 | return &eserial3_device; |
| 243 | #elif CONFIG_CONS_INDEX == 4 |
| 244 | return &eserial4_device; |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 245 | #elif CONFIG_CONS_INDEX == 5 |
| 246 | return &eserial5_device; |
| 247 | #elif CONFIG_CONS_INDEX == 6 |
| 248 | return &eserial6_device; |
Mike Frysinger | 6c768ca | 2011-04-29 18:03:29 +0000 | [diff] [blame] | 249 | #else |
| 250 | #error "Bad CONFIG_CONS_INDEX." |
| 251 | #endif |
| 252 | } |
| 253 | |
Marek Vasut | abc0ed8 | 2012-09-12 20:02:05 +0200 | [diff] [blame] | 254 | void ns16550_serial_initialize(void) |
| 255 | { |
| 256 | #if defined(CONFIG_SYS_NS16550_COM1) |
| 257 | serial_register(&eserial1_device); |
| 258 | #endif |
| 259 | #if defined(CONFIG_SYS_NS16550_COM2) |
| 260 | serial_register(&eserial2_device); |
| 261 | #endif |
| 262 | #if defined(CONFIG_SYS_NS16550_COM3) |
| 263 | serial_register(&eserial3_device); |
| 264 | #endif |
| 265 | #if defined(CONFIG_SYS_NS16550_COM4) |
| 266 | serial_register(&eserial4_device); |
| 267 | #endif |
Andrew Bradford | 96708a0 | 2012-10-25 08:21:31 -0400 | [diff] [blame] | 268 | #if defined(CONFIG_SYS_NS16550_COM5) |
| 269 | serial_register(&eserial5_device); |
| 270 | #endif |
| 271 | #if defined(CONFIG_SYS_NS16550_COM6) |
| 272 | serial_register(&eserial6_device); |
| 273 | #endif |
Marek Vasut | abc0ed8 | 2012-09-12 20:02:05 +0200 | [diff] [blame] | 274 | } |
Scott Wood | 48cbc3a | 2012-10-16 15:43:15 -0500 | [diff] [blame] | 275 | |
| 276 | #endif /* !CONFIG_NS16550_MIN_FUNCTIONS */ |