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 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | |
| 26 | #ifdef CFG_NS16550_SERIAL |
| 27 | |
| 28 | #include <ns16550.h> |
| 29 | #ifdef CFG_NS87308 |
| 30 | #include <ns87308.h> |
| 31 | #endif |
| 32 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame^] | 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 35 | #if !defined(CONFIG_CONS_INDEX) |
| 36 | #error "No console index specified." |
| 37 | #elif (CONFIG_CONS_INDEX < 1) || (CONFIG_CONS_INDEX > 4) |
| 38 | #error "Invalid console index value." |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 39 | #endif |
| 40 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 41 | #if CONFIG_CONS_INDEX == 1 && !defined(CFG_NS16550_COM1) |
| 42 | #error "Console port 1 defined but not configured." |
| 43 | #elif CONFIG_CONS_INDEX == 2 && !defined(CFG_NS16550_COM2) |
| 44 | #error "Console port 2 defined but not configured." |
| 45 | #elif CONFIG_CONS_INDEX == 3 && !defined(CFG_NS16550_COM3) |
| 46 | #error "Console port 3 defined but not configured." |
| 47 | #elif CONFIG_CONS_INDEX == 4 && !defined(CFG_NS16550_COM4) |
| 48 | #error "Console port 4 defined but not configured." |
| 49 | #endif |
| 50 | |
| 51 | /* Note: The port number specified in the functions is 1 based. |
| 52 | * the array is 0 based. |
| 53 | */ |
| 54 | static NS16550_t serial_ports[4] = { |
| 55 | #ifdef CFG_NS16550_COM1 |
| 56 | (NS16550_t)CFG_NS16550_COM1, |
| 57 | #else |
| 58 | NULL, |
| 59 | #endif |
| 60 | #ifdef CFG_NS16550_COM2 |
| 61 | (NS16550_t)CFG_NS16550_COM2, |
| 62 | #else |
| 63 | NULL, |
| 64 | #endif |
| 65 | #ifdef CFG_NS16550_COM3 |
| 66 | (NS16550_t)CFG_NS16550_COM3, |
| 67 | #else |
| 68 | NULL, |
| 69 | #endif |
| 70 | #ifdef CFG_NS16550_COM4 |
| 71 | (NS16550_t)CFG_NS16550_COM4 |
| 72 | #else |
| 73 | NULL |
| 74 | #endif |
| 75 | }; |
| 76 | |
| 77 | #define PORT serial_ports[port-1] |
| 78 | #define CONSOLE (serial_ports[CONFIG_CONS_INDEX-1]) |
| 79 | |
| 80 | static int calc_divisor (NS16550_t port) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 81 | { |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 82 | #ifdef CONFIG_OMAP1510 |
| 83 | /* If can't cleanly clock 115200 set div to 1 */ |
| 84 | if ((CFG_NS16550_CLK == 12000000) && (gd->baudrate == 115200)) { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 85 | port->osc_12m_sel = OSC_12M_SEL; /* enable 6.5 * divisor */ |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 86 | return (1); /* return 1 for base divisor */ |
| 87 | } |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 88 | port->osc_12m_sel = 0; /* clear if previsouly set */ |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 89 | #endif |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 90 | #ifdef CONFIG_OMAP1610 |
| 91 | /* If can't cleanly clock 115200 set div to 1 */ |
| 92 | if ((CFG_NS16550_CLK == 48000000) && (gd->baudrate == 115200)) { |
| 93 | return (26); /* return 26 for base divisor */ |
| 94 | } |
| 95 | #endif |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 96 | |
| 97 | #ifdef CONFIG_APTIX |
| 98 | #define MODE_X_DIV 13 |
| 99 | #else |
| 100 | #define MODE_X_DIV 16 |
| 101 | #endif |
| 102 | return (CFG_NS16550_CLK / MODE_X_DIV / gd->baudrate); |
| 103 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 104 | } |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 105 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 106 | int serial_init (void) |
| 107 | { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 108 | int clock_divisor; |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 109 | |
| 110 | #ifdef CFG_NS87308 |
| 111 | initialise_ns87308(); |
| 112 | #endif |
| 113 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 114 | #ifdef CFG_NS16550_COM1 |
| 115 | clock_divisor = calc_divisor(serial_ports[0]); |
| 116 | NS16550_init(serial_ports[0], clock_divisor); |
| 117 | #endif |
| 118 | #ifdef CFG_NS16550_COM2 |
| 119 | clock_divisor = calc_divisor(serial_ports[1]); |
| 120 | NS16550_init(serial_ports[1], clock_divisor); |
| 121 | #endif |
| 122 | #ifdef CFG_NS16550_COM3 |
| 123 | clock_divisor = calc_divisor(serial_ports[2]); |
| 124 | NS16550_init(serial_ports[2], clock_divisor); |
| 125 | #endif |
| 126 | #ifdef CFG_NS16550_COM4 |
| 127 | clock_divisor = calc_divisor(serial_ports[3]); |
| 128 | NS16550_init(serial_ports[3], clock_divisor); |
| 129 | #endif |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 130 | |
| 131 | return (0); |
| 132 | } |
| 133 | |
| 134 | void |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 135 | _serial_putc(const char c,const int port) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 136 | { |
| 137 | if (c == '\n') |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 138 | NS16550_putc(PORT, '\r'); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 139 | |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 140 | NS16550_putc(PORT, c); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | void |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 144 | _serial_putc_raw(const char c,const int port) |
| 145 | { |
| 146 | NS16550_putc(PORT, c); |
| 147 | } |
| 148 | |
| 149 | void |
| 150 | _serial_puts (const char *s,const int port) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 151 | { |
| 152 | while (*s) { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 153 | _serial_putc (*s++,port); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 154 | } |
| 155 | } |
| 156 | |
| 157 | |
| 158 | int |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 159 | _serial_getc(const int port) |
| 160 | { |
| 161 | return NS16550_getc(PORT); |
| 162 | } |
| 163 | |
| 164 | int |
| 165 | _serial_tstc(const int port) |
| 166 | { |
| 167 | return NS16550_tstc(PORT); |
| 168 | } |
| 169 | |
| 170 | void |
| 171 | _serial_setbrg (const int port) |
| 172 | { |
| 173 | int clock_divisor; |
| 174 | |
| 175 | clock_divisor = calc_divisor(PORT); |
| 176 | NS16550_reinit(PORT, clock_divisor); |
| 177 | } |
| 178 | |
| 179 | void |
| 180 | serial_putc(const char c) |
| 181 | { |
| 182 | _serial_putc(c,CONFIG_CONS_INDEX); |
| 183 | } |
| 184 | |
| 185 | void |
| 186 | serial_putc_raw(const char c) |
| 187 | { |
| 188 | _serial_putc_raw(c,CONFIG_CONS_INDEX); |
| 189 | } |
| 190 | |
| 191 | void |
| 192 | serial_puts(const char *s) |
| 193 | { |
| 194 | _serial_puts(s,CONFIG_CONS_INDEX); |
| 195 | } |
| 196 | |
| 197 | int |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 198 | serial_getc(void) |
| 199 | { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 200 | return _serial_getc(CONFIG_CONS_INDEX); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | int |
| 204 | serial_tstc(void) |
| 205 | { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 206 | return _serial_tstc(CONFIG_CONS_INDEX); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | void |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 210 | serial_setbrg(void) |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 211 | { |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 212 | _serial_setbrg(CONFIG_CONS_INDEX); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | #endif |