wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 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> |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 25 | #include <environment.h> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 26 | #include <serial.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 27 | #include <stdio_dev.h> |
Mike Frysinger | 7b826c2 | 2011-05-14 06:56:15 +0000 | [diff] [blame] | 28 | #include <post.h> |
| 29 | #include <linux/compiler.h> |
Marek Vasut | 6d93e25 | 2012-10-06 14:07:03 +0000 | [diff] [blame] | 30 | #include <errno.h> |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 31 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 34 | static struct serial_device *serial_devices; |
| 35 | static struct serial_device *serial_current; |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 36 | /* |
| 37 | * Table with supported baudrates (defined in config_xyz.h) |
| 38 | */ |
| 39 | static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 40 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 41 | /** |
| 42 | * serial_null() - Void registration routine of a serial driver |
| 43 | * |
| 44 | * This routine implements a void registration routine of a serial |
| 45 | * driver. The registration routine of a particular driver is aliased |
| 46 | * to this empty function in case the driver is not compiled into |
| 47 | * U-Boot. |
| 48 | */ |
Marek Vasut | 2a333ae | 2012-09-12 17:49:58 +0200 | [diff] [blame] | 49 | static void serial_null(void) |
| 50 | { |
| 51 | } |
| 52 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 53 | /** |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 54 | * on_baudrate() - Update the actual baudrate when the env var changes |
| 55 | * |
| 56 | * This will check for a valid baudrate and only apply it if valid. |
| 57 | */ |
| 58 | static int on_baudrate(const char *name, const char *value, enum env_op op, |
| 59 | int flags) |
| 60 | { |
| 61 | int i; |
| 62 | int baudrate; |
| 63 | |
| 64 | switch (op) { |
| 65 | case env_op_create: |
| 66 | case env_op_overwrite: |
| 67 | /* |
| 68 | * Switch to new baudrate if new baudrate is supported |
| 69 | */ |
| 70 | baudrate = simple_strtoul(value, NULL, 10); |
| 71 | |
| 72 | /* Not actually changing */ |
| 73 | if (gd->baudrate == baudrate) |
| 74 | return 0; |
| 75 | |
Axel Lin | 9935175 | 2013-06-23 00:46:41 +0800 | [diff] [blame^] | 76 | for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) { |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 77 | if (baudrate == baudrate_table[i]) |
| 78 | break; |
| 79 | } |
Axel Lin | 9935175 | 2013-06-23 00:46:41 +0800 | [diff] [blame^] | 80 | if (i == ARRAY_SIZE(baudrate_table)) { |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 81 | if ((flags & H_FORCE) == 0) |
| 82 | printf("## Baudrate %d bps not supported\n", |
| 83 | baudrate); |
| 84 | return 1; |
| 85 | } |
| 86 | if ((flags & H_INTERACTIVE) != 0) { |
| 87 | printf("## Switch baudrate to %d" |
| 88 | " bps and press ENTER ...\n", baudrate); |
| 89 | udelay(50000); |
| 90 | } |
| 91 | |
| 92 | gd->baudrate = baudrate; |
| 93 | #if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2) |
| 94 | gd->bd->bi_baudrate = baudrate; |
| 95 | #endif |
| 96 | |
| 97 | serial_setbrg(); |
| 98 | |
| 99 | udelay(50000); |
| 100 | |
| 101 | if ((flags & H_INTERACTIVE) != 0) |
| 102 | while (1) { |
| 103 | if (getc() == '\r') |
| 104 | break; |
| 105 | } |
| 106 | |
| 107 | return 0; |
| 108 | case env_op_delete: |
| 109 | printf("## Baudrate may not be deleted\n"); |
| 110 | return 1; |
| 111 | default: |
| 112 | return 0; |
| 113 | } |
| 114 | } |
| 115 | U_BOOT_ENV_CALLBACK(baudrate, on_baudrate); |
| 116 | |
| 117 | /** |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 118 | * serial_initfunc() - Forward declare of driver registration routine |
| 119 | * @name: Name of the real driver registration routine. |
| 120 | * |
| 121 | * This macro expands onto forward declaration of a driver registration |
| 122 | * routine, which is then used below in serial_initialize() function. |
| 123 | * The declaration is made weak and aliases to serial_null() so in case |
| 124 | * the driver is not compiled in, the function is still declared and can |
| 125 | * be used, but aliases to serial_null() and thus is optimized away. |
| 126 | */ |
Marek Vasut | 2a333ae | 2012-09-12 17:49:58 +0200 | [diff] [blame] | 127 | #define serial_initfunc(name) \ |
| 128 | void name(void) \ |
| 129 | __attribute__((weak, alias("serial_null"))); |
| 130 | |
Marek Vasut | f0eb1f6 | 2012-09-12 13:50:56 +0200 | [diff] [blame] | 131 | serial_initfunc(mpc8xx_serial_initialize); |
Marek Vasut | abc0ed8 | 2012-09-12 20:02:05 +0200 | [diff] [blame] | 132 | serial_initfunc(ns16550_serial_initialize); |
Marek Vasut | 1fe5c11 | 2012-09-12 13:57:58 +0200 | [diff] [blame] | 133 | serial_initfunc(pxa_serial_initialize); |
Marek Vasut | 28af638 | 2012-09-12 16:01:16 +0200 | [diff] [blame] | 134 | serial_initfunc(s3c24xx_serial_initialize); |
Marek Vasut | b498051 | 2012-09-12 19:39:57 +0200 | [diff] [blame] | 135 | serial_initfunc(s5p_serial_initialize); |
Tom Rini | 51d8102 | 2012-10-08 14:46:23 -0700 | [diff] [blame] | 136 | serial_initfunc(zynq_serial_initalize); |
Marek Vasut | 5ae1de0 | 2012-09-12 20:07:54 +0200 | [diff] [blame] | 137 | serial_initfunc(bfin_serial_initialize); |
Marek Vasut | 41651ca | 2012-09-13 00:02:54 +0200 | [diff] [blame] | 138 | serial_initfunc(bfin_jtag_initialize); |
Marek Vasut | 918327c | 2012-09-12 19:50:18 +0200 | [diff] [blame] | 139 | serial_initfunc(mpc512x_serial_initialize); |
Marek Vasut | 87d6922 | 2012-09-12 19:45:58 +0200 | [diff] [blame] | 140 | serial_initfunc(uartlite_serial_initialize); |
Marek Vasut | 7b953c5 | 2012-09-13 01:16:50 +0200 | [diff] [blame] | 141 | serial_initfunc(au1x00_serial_initialize); |
Marek Vasut | 0191142 | 2012-09-13 01:20:07 +0200 | [diff] [blame] | 142 | serial_initfunc(asc_serial_initialize); |
Marek Vasut | 6cb3273 | 2012-09-13 01:20:59 +0200 | [diff] [blame] | 143 | serial_initfunc(jz_serial_initialize); |
Marek Vasut | b57c652 | 2012-09-13 01:26:42 +0200 | [diff] [blame] | 144 | serial_initfunc(mpc5xx_serial_initialize); |
Marek Vasut | d68f4da | 2012-09-13 01:34:16 +0200 | [diff] [blame] | 145 | serial_initfunc(mpc8260_scc_serial_initialize); |
| 146 | serial_initfunc(mpc8260_smc_serial_initialize); |
Marek Vasut | 7a31154 | 2012-09-13 01:38:52 +0200 | [diff] [blame] | 147 | serial_initfunc(mpc85xx_serial_initialize); |
Marek Vasut | fcc2074 | 2012-09-13 01:40:33 +0200 | [diff] [blame] | 148 | serial_initfunc(iop480_serial_initialize); |
Marek Vasut | af7be3b | 2012-09-13 12:25:07 +0200 | [diff] [blame] | 149 | serial_initfunc(leon2_serial_initialize); |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 150 | serial_initfunc(leon3_serial_initialize); |
Marek Vasut | afe4c38 | 2012-09-13 12:26:39 +0200 | [diff] [blame] | 151 | serial_initfunc(marvell_serial_initialize); |
Marek Vasut | 5dee6f5 | 2012-09-13 12:27:37 +0200 | [diff] [blame] | 152 | serial_initfunc(amirix_serial_initialize); |
Marek Vasut | c45a14a | 2012-09-13 12:28:07 +0200 | [diff] [blame] | 153 | serial_initfunc(bmw_serial_initialize); |
Marek Vasut | d25c39d | 2012-09-13 12:29:31 +0200 | [diff] [blame] | 154 | serial_initfunc(cogent_serial_initialize); |
Marek Vasut | 619c90b | 2012-09-13 12:32:56 +0200 | [diff] [blame] | 155 | serial_initfunc(cpci750_serial_initialize); |
Marek Vasut | 829b3b2 | 2012-09-13 12:33:50 +0200 | [diff] [blame] | 156 | serial_initfunc(evb64260_serial_initialize); |
Marek Vasut | d126f28 | 2012-09-13 12:34:24 +0200 | [diff] [blame] | 157 | serial_initfunc(ml2_serial_initialize); |
Marek Vasut | 26d8eaa | 2012-09-13 12:34:49 +0200 | [diff] [blame] | 158 | serial_initfunc(sconsole_serial_initialize); |
Marek Vasut | 088a4f3 | 2012-09-13 12:35:54 +0200 | [diff] [blame] | 159 | serial_initfunc(p3mx_serial_initialize); |
Marek Vasut | 8c08575 | 2012-09-13 16:48:50 +0200 | [diff] [blame] | 160 | serial_initfunc(altera_jtag_serial_initialize); |
Marek Vasut | b207d64 | 2012-09-13 16:49:51 +0200 | [diff] [blame] | 161 | serial_initfunc(altera_serial_initialize); |
Marek Vasut | cfba457 | 2012-09-13 16:50:30 +0200 | [diff] [blame] | 162 | serial_initfunc(atmel_serial_initialize); |
Marek Vasut | e503f90 | 2012-09-13 16:51:02 +0200 | [diff] [blame] | 163 | serial_initfunc(lpc32xx_serial_initialize); |
Marek Vasut | abaef69 | 2012-09-13 16:51:38 +0200 | [diff] [blame] | 164 | serial_initfunc(mcf_serial_initialize); |
Marek Vasut | 69ea807 | 2012-09-13 16:52:38 +0200 | [diff] [blame] | 165 | serial_initfunc(oc_serial_initialize); |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 166 | serial_initfunc(sandbox_serial_initialize); |
Marek Vasut | 8b029db | 2012-09-14 22:34:22 +0200 | [diff] [blame] | 167 | serial_initfunc(clps7111_serial_initialize); |
Marek Vasut | 7882e7c | 2012-09-14 22:34:51 +0200 | [diff] [blame] | 168 | serial_initfunc(imx_serial_initialize); |
Marek Vasut | b6cd0fe | 2012-09-14 22:35:14 +0200 | [diff] [blame] | 169 | serial_initfunc(ixp_serial_initialize); |
Marek Vasut | a7ffb2f | 2012-09-14 22:35:43 +0200 | [diff] [blame] | 170 | serial_initfunc(ks8695_serial_initialize); |
Marek Vasut | 1f673b4 | 2012-09-14 22:36:27 +0200 | [diff] [blame] | 171 | serial_initfunc(lh7a40x_serial_initialize); |
Marek Vasut | 7cd851a | 2012-09-14 22:37:17 +0200 | [diff] [blame] | 172 | serial_initfunc(max3100_serial_initialize); |
Marek Vasut | a943472 | 2012-09-14 22:37:43 +0200 | [diff] [blame] | 173 | serial_initfunc(mxc_serial_initialize); |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 174 | serial_initfunc(pl01x_serial_initialize); |
Marek Vasut | eb50766 | 2012-09-14 22:39:19 +0200 | [diff] [blame] | 175 | serial_initfunc(s3c44b0_serial_initialize); |
Marek Vasut | a30a422 | 2012-09-14 22:39:44 +0200 | [diff] [blame] | 176 | serial_initfunc(sa1100_serial_initialize); |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 177 | serial_initfunc(sh_serial_initialize); |
Marek Vasut | f0eb1f6 | 2012-09-12 13:50:56 +0200 | [diff] [blame] | 178 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 179 | /** |
| 180 | * serial_register() - Register serial driver with serial driver core |
| 181 | * @dev: Pointer to the serial driver structure |
| 182 | * |
| 183 | * This function registers the serial driver supplied via @dev with |
| 184 | * serial driver core, thus making U-Boot aware of it and making it |
| 185 | * available for U-Boot to use. On platforms that still require manual |
| 186 | * relocation of constant variables, relocation of the supplied structure |
| 187 | * is performed. |
| 188 | */ |
Mike Frysinger | c52b4f7 | 2011-04-29 18:03:30 +0000 | [diff] [blame] | 189 | void serial_register(struct serial_device *dev) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 190 | { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 191 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Marek Vasut | f2760c4 | 2012-09-16 18:54:22 +0200 | [diff] [blame] | 192 | if (dev->start) |
| 193 | dev->start += gd->reloc_off; |
| 194 | if (dev->stop) |
| 195 | dev->stop += gd->reloc_off; |
| 196 | if (dev->setbrg) |
| 197 | dev->setbrg += gd->reloc_off; |
| 198 | if (dev->getc) |
| 199 | dev->getc += gd->reloc_off; |
| 200 | if (dev->tstc) |
| 201 | dev->tstc += gd->reloc_off; |
| 202 | if (dev->putc) |
| 203 | dev->putc += gd->reloc_off; |
| 204 | if (dev->puts) |
| 205 | dev->puts += gd->reloc_off; |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 206 | #endif |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 207 | |
| 208 | dev->next = serial_devices; |
| 209 | serial_devices = dev; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 212 | /** |
| 213 | * serial_initialize() - Register all compiled-in serial port drivers |
| 214 | * |
| 215 | * This function registers all serial port drivers that are compiled |
| 216 | * into the U-Boot binary with the serial core, thus making them |
| 217 | * available to U-Boot to use. Lastly, this function assigns a default |
| 218 | * serial port to the serial core. That serial port is then used as a |
| 219 | * default output. |
| 220 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 221 | void serial_initialize(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 222 | { |
Marek Vasut | f0eb1f6 | 2012-09-12 13:50:56 +0200 | [diff] [blame] | 223 | mpc8xx_serial_initialize(); |
Marek Vasut | abc0ed8 | 2012-09-12 20:02:05 +0200 | [diff] [blame] | 224 | ns16550_serial_initialize(); |
Marek Vasut | 1fe5c11 | 2012-09-12 13:57:58 +0200 | [diff] [blame] | 225 | pxa_serial_initialize(); |
Marek Vasut | 28af638 | 2012-09-12 16:01:16 +0200 | [diff] [blame] | 226 | s3c24xx_serial_initialize(); |
Marek Vasut | b498051 | 2012-09-12 19:39:57 +0200 | [diff] [blame] | 227 | s5p_serial_initialize(); |
Marek Vasut | 918327c | 2012-09-12 19:50:18 +0200 | [diff] [blame] | 228 | mpc512x_serial_initialize(); |
Marek Vasut | 5ae1de0 | 2012-09-12 20:07:54 +0200 | [diff] [blame] | 229 | bfin_serial_initialize(); |
Marek Vasut | 41651ca | 2012-09-13 00:02:54 +0200 | [diff] [blame] | 230 | bfin_jtag_initialize(); |
Marek Vasut | 87d6922 | 2012-09-12 19:45:58 +0200 | [diff] [blame] | 231 | uartlite_serial_initialize(); |
Tom Rini | 51d8102 | 2012-10-08 14:46:23 -0700 | [diff] [blame] | 232 | zynq_serial_initalize(); |
Marek Vasut | 7b953c5 | 2012-09-13 01:16:50 +0200 | [diff] [blame] | 233 | au1x00_serial_initialize(); |
Marek Vasut | 0191142 | 2012-09-13 01:20:07 +0200 | [diff] [blame] | 234 | asc_serial_initialize(); |
Marek Vasut | 6cb3273 | 2012-09-13 01:20:59 +0200 | [diff] [blame] | 235 | jz_serial_initialize(); |
Marek Vasut | b57c652 | 2012-09-13 01:26:42 +0200 | [diff] [blame] | 236 | mpc5xx_serial_initialize(); |
Marek Vasut | d68f4da | 2012-09-13 01:34:16 +0200 | [diff] [blame] | 237 | mpc8260_scc_serial_initialize(); |
| 238 | mpc8260_smc_serial_initialize(); |
Marek Vasut | 7a31154 | 2012-09-13 01:38:52 +0200 | [diff] [blame] | 239 | mpc85xx_serial_initialize(); |
Marek Vasut | fcc2074 | 2012-09-13 01:40:33 +0200 | [diff] [blame] | 240 | iop480_serial_initialize(); |
Marek Vasut | af7be3b | 2012-09-13 12:25:07 +0200 | [diff] [blame] | 241 | leon2_serial_initialize(); |
Marek Vasut | 29b5ff7 | 2012-09-13 12:25:48 +0200 | [diff] [blame] | 242 | leon3_serial_initialize(); |
Marek Vasut | afe4c38 | 2012-09-13 12:26:39 +0200 | [diff] [blame] | 243 | marvell_serial_initialize(); |
Marek Vasut | 5dee6f5 | 2012-09-13 12:27:37 +0200 | [diff] [blame] | 244 | amirix_serial_initialize(); |
Marek Vasut | c45a14a | 2012-09-13 12:28:07 +0200 | [diff] [blame] | 245 | bmw_serial_initialize(); |
Marek Vasut | d25c39d | 2012-09-13 12:29:31 +0200 | [diff] [blame] | 246 | cogent_serial_initialize(); |
Marek Vasut | 619c90b | 2012-09-13 12:32:56 +0200 | [diff] [blame] | 247 | cpci750_serial_initialize(); |
Marek Vasut | 829b3b2 | 2012-09-13 12:33:50 +0200 | [diff] [blame] | 248 | evb64260_serial_initialize(); |
Marek Vasut | d126f28 | 2012-09-13 12:34:24 +0200 | [diff] [blame] | 249 | ml2_serial_initialize(); |
Marek Vasut | 26d8eaa | 2012-09-13 12:34:49 +0200 | [diff] [blame] | 250 | sconsole_serial_initialize(); |
Marek Vasut | 088a4f3 | 2012-09-13 12:35:54 +0200 | [diff] [blame] | 251 | p3mx_serial_initialize(); |
Marek Vasut | 8c08575 | 2012-09-13 16:48:50 +0200 | [diff] [blame] | 252 | altera_jtag_serial_initialize(); |
Marek Vasut | b207d64 | 2012-09-13 16:49:51 +0200 | [diff] [blame] | 253 | altera_serial_initialize(); |
Marek Vasut | cfba457 | 2012-09-13 16:50:30 +0200 | [diff] [blame] | 254 | atmel_serial_initialize(); |
Marek Vasut | e503f90 | 2012-09-13 16:51:02 +0200 | [diff] [blame] | 255 | lpc32xx_serial_initialize(); |
Marek Vasut | abaef69 | 2012-09-13 16:51:38 +0200 | [diff] [blame] | 256 | mcf_serial_initialize(); |
Marek Vasut | 69ea807 | 2012-09-13 16:52:38 +0200 | [diff] [blame] | 257 | oc_serial_initialize(); |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 258 | sandbox_serial_initialize(); |
Marek Vasut | 8b029db | 2012-09-14 22:34:22 +0200 | [diff] [blame] | 259 | clps7111_serial_initialize(); |
Marek Vasut | 7882e7c | 2012-09-14 22:34:51 +0200 | [diff] [blame] | 260 | imx_serial_initialize(); |
Marek Vasut | b6cd0fe | 2012-09-14 22:35:14 +0200 | [diff] [blame] | 261 | ixp_serial_initialize(); |
Marek Vasut | a7ffb2f | 2012-09-14 22:35:43 +0200 | [diff] [blame] | 262 | ks8695_serial_initialize(); |
Marek Vasut | 1f673b4 | 2012-09-14 22:36:27 +0200 | [diff] [blame] | 263 | lh7a40x_serial_initialize(); |
Marek Vasut | 7cd851a | 2012-09-14 22:37:17 +0200 | [diff] [blame] | 264 | max3100_serial_initialize(); |
Marek Vasut | a943472 | 2012-09-14 22:37:43 +0200 | [diff] [blame] | 265 | mxc_serial_initialize(); |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 266 | pl01x_serial_initialize(); |
Marek Vasut | eb50766 | 2012-09-14 22:39:19 +0200 | [diff] [blame] | 267 | s3c44b0_serial_initialize(); |
Marek Vasut | a30a422 | 2012-09-14 22:39:44 +0200 | [diff] [blame] | 268 | sa1100_serial_initialize(); |
Marek Vasut | 8bdd7ef | 2012-09-14 22:40:08 +0200 | [diff] [blame] | 269 | sh_serial_initialize(); |
Marek Vasut | 7b953c5 | 2012-09-13 01:16:50 +0200 | [diff] [blame] | 270 | |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 271 | serial_assign(default_serial_console()->name); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 274 | /** |
| 275 | * serial_stdio_init() - Register serial ports with STDIO core |
| 276 | * |
| 277 | * This function generates a proxy driver for each serial port driver. |
| 278 | * These proxy drivers then register with the STDIO core, making the |
| 279 | * serial drivers available as STDIO devices. |
| 280 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 281 | void serial_stdio_init(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 282 | { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 283 | struct stdio_dev dev; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 284 | struct serial_device *s = serial_devices; |
| 285 | |
wdenk | 2ee6653 | 2004-10-11 22:43:02 +0000 | [diff] [blame] | 286 | while (s) { |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 287 | memset(&dev, 0, sizeof(dev)); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 288 | |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 289 | strcpy(dev.name, s->name); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 290 | dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT; |
| 291 | |
Marek Vasut | 89143fb | 2012-09-07 14:35:31 +0200 | [diff] [blame] | 292 | dev.start = s->start; |
| 293 | dev.stop = s->stop; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 294 | dev.putc = s->putc; |
| 295 | dev.puts = s->puts; |
| 296 | dev.getc = s->getc; |
| 297 | dev.tstc = s->tstc; |
| 298 | |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 299 | stdio_register(&dev); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 300 | |
| 301 | s = s->next; |
| 302 | } |
| 303 | } |
| 304 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 305 | /** |
| 306 | * serial_assign() - Select the serial output device by name |
| 307 | * @name: Name of the serial driver to be used as default output |
| 308 | * |
| 309 | * This function configures the serial output multiplexing by |
| 310 | * selecting which serial device will be used as default. In case |
| 311 | * the STDIO "serial" device is selected as stdin/stdout/stderr, |
| 312 | * the serial device previously configured by this function will be |
| 313 | * used for the particular operation. |
| 314 | * |
| 315 | * Returns 0 on success, negative on error. |
| 316 | */ |
Gerlando Falauto | 7813ca9 | 2011-11-18 06:49:12 +0000 | [diff] [blame] | 317 | int serial_assign(const char *name) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 318 | { |
| 319 | struct serial_device *s; |
| 320 | |
wdenk | 2ee6653 | 2004-10-11 22:43:02 +0000 | [diff] [blame] | 321 | for (s = serial_devices; s; s = s->next) { |
Marek Vasut | 6d93e25 | 2012-10-06 14:07:03 +0000 | [diff] [blame] | 322 | if (strcmp(s->name, name)) |
| 323 | continue; |
| 324 | serial_current = s; |
| 325 | return 0; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Marek Vasut | 6d93e25 | 2012-10-06 14:07:03 +0000 | [diff] [blame] | 328 | return -EINVAL; |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 329 | } |
| 330 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 331 | /** |
| 332 | * serial_reinit_all() - Reinitialize all compiled-in serial ports |
| 333 | * |
| 334 | * This function reinitializes all serial ports that are compiled |
| 335 | * into U-Boot by calling their serial_start() functions. |
| 336 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 337 | void serial_reinit_all(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 338 | { |
| 339 | struct serial_device *s; |
| 340 | |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 341 | for (s = serial_devices; s; s = s->next) |
Marek Vasut | 89143fb | 2012-09-07 14:35:31 +0200 | [diff] [blame] | 342 | s->start(); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 345 | /** |
| 346 | * get_current() - Return pointer to currently selected serial port |
| 347 | * |
| 348 | * This function returns a pointer to currently selected serial port. |
| 349 | * The currently selected serial port is altered by serial_assign() |
| 350 | * function. |
| 351 | * |
| 352 | * In case this function is called before relocation or before any serial |
| 353 | * port is configured, this function calls default_serial_console() to |
| 354 | * determine the serial port. Otherwise, the configured serial port is |
| 355 | * returned. |
| 356 | * |
| 357 | * Returns pointer to the currently selected serial port on success, |
| 358 | * NULL on error. |
| 359 | */ |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 360 | static struct serial_device *get_current(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 361 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 362 | struct serial_device *dev; |
| 363 | |
Marek Vasut | dee1941 | 2012-10-06 14:07:04 +0000 | [diff] [blame] | 364 | if (!(gd->flags & GD_FLG_RELOC)) |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 365 | dev = default_serial_console(); |
Marek Vasut | dee1941 | 2012-10-06 14:07:04 +0000 | [diff] [blame] | 366 | else if (!serial_current) |
| 367 | dev = default_serial_console(); |
| 368 | else |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 369 | dev = serial_current; |
Marek Vasut | dee1941 | 2012-10-06 14:07:04 +0000 | [diff] [blame] | 370 | |
| 371 | /* We must have a console device */ |
| 372 | if (!dev) { |
| 373 | #ifdef CONFIG_SPL_BUILD |
| 374 | puts("Cannot find console\n"); |
| 375 | hang(); |
| 376 | #else |
| 377 | panic("Cannot find console\n"); |
| 378 | #endif |
| 379 | } |
| 380 | |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 381 | return dev; |
| 382 | } |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 383 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 384 | /** |
| 385 | * serial_init() - Initialize currently selected serial port |
| 386 | * |
| 387 | * This function initializes the currently selected serial port. This |
| 388 | * usually involves setting up the registers of that particular port, |
| 389 | * enabling clock and such. This function uses the get_current() call |
| 390 | * to determine which port is selected. |
| 391 | * |
| 392 | * Returns 0 on success, negative on error. |
| 393 | */ |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 394 | int serial_init(void) |
| 395 | { |
Marek Vasut | 89143fb | 2012-09-07 14:35:31 +0200 | [diff] [blame] | 396 | return get_current()->start(); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 399 | /** |
| 400 | * serial_setbrg() - Configure baud-rate of currently selected serial port |
| 401 | * |
| 402 | * This function configures the baud-rate of the currently selected |
| 403 | * serial port. The baud-rate is retrieved from global data within |
| 404 | * the serial port driver. This function uses the get_current() call |
| 405 | * to determine which port is selected. |
| 406 | * |
| 407 | * Returns 0 on success, negative on error. |
| 408 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 409 | void serial_setbrg(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 410 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 411 | get_current()->setbrg(); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 414 | /** |
| 415 | * serial_getc() - Read character from currently selected serial port |
| 416 | * |
| 417 | * This function retrieves a character from currently selected serial |
| 418 | * port. In case there is no character waiting on the serial port, |
| 419 | * this function will block and wait for the character to appear. This |
| 420 | * function uses the get_current() call to determine which port is |
| 421 | * selected. |
| 422 | * |
| 423 | * Returns the character on success, negative on error. |
| 424 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 425 | int serial_getc(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 426 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 427 | return get_current()->getc(); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 430 | /** |
| 431 | * serial_tstc() - Test if data is available on currently selected serial port |
| 432 | * |
| 433 | * This function tests if one or more characters are available on |
| 434 | * currently selected serial port. This function never blocks. This |
| 435 | * function uses the get_current() call to determine which port is |
| 436 | * selected. |
| 437 | * |
| 438 | * Returns positive if character is available, zero otherwise. |
| 439 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 440 | int serial_tstc(void) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 441 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 442 | return get_current()->tstc(); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 443 | } |
| 444 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 445 | /** |
| 446 | * serial_putc() - Output character via currently selected serial port |
| 447 | * @c: Single character to be output from the serial port. |
| 448 | * |
| 449 | * This function outputs a character via currently selected serial |
| 450 | * port. This character is passed to the serial port driver responsible |
| 451 | * for controlling the hardware. The hardware may still be in process |
| 452 | * of transmitting another character, therefore this function may block |
| 453 | * for a short amount of time. This function uses the get_current() |
| 454 | * call to determine which port is selected. |
| 455 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 456 | void serial_putc(const char c) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 457 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 458 | get_current()->putc(c); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 461 | /** |
| 462 | * serial_puts() - Output string via currently selected serial port |
| 463 | * @s: Zero-terminated string to be output from the serial port. |
| 464 | * |
| 465 | * This function outputs a zero-terminated string via currently |
| 466 | * selected serial port. This function behaves as an accelerator |
| 467 | * in case the hardware can queue multiple characters for transfer. |
| 468 | * The whole string that is to be output is available to the function |
| 469 | * implementing the hardware manipulation. Transmitting the whole |
| 470 | * string may take some time, thus this function may block for some |
| 471 | * amount of time. This function uses the get_current() call to |
| 472 | * determine which port is selected. |
| 473 | */ |
Gerlando Falauto | a6e6f7f | 2011-11-18 06:49:11 +0000 | [diff] [blame] | 474 | void serial_puts(const char *s) |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 475 | { |
Simon Glass | 857c283 | 2011-08-19 11:09:43 +0000 | [diff] [blame] | 476 | get_current()->puts(s); |
wdenk | 281e00a | 2004-08-01 22:48:16 +0000 | [diff] [blame] | 477 | } |
Mike Frysinger | 7b826c2 | 2011-05-14 06:56:15 +0000 | [diff] [blame] | 478 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 479 | /** |
| 480 | * default_serial_puts() - Output string by calling serial_putc() in loop |
| 481 | * @s: Zero-terminated string to be output from the serial port. |
| 482 | * |
| 483 | * This function outputs a zero-terminated string by calling serial_putc() |
| 484 | * in a loop. Most drivers do not support queueing more than one byte for |
| 485 | * transfer, thus this function precisely implements their serial_puts(). |
| 486 | * |
| 487 | * To optimize the number of get_current() calls, this function only |
| 488 | * calls get_current() once and then directly accesses the putc() call |
| 489 | * of the &struct serial_device . |
| 490 | */ |
Marek Vasut | bfb7d7a | 2012-10-06 14:07:01 +0000 | [diff] [blame] | 491 | void default_serial_puts(const char *s) |
| 492 | { |
| 493 | struct serial_device *dev = get_current(); |
| 494 | while (*s) |
| 495 | dev->putc(*s++); |
| 496 | } |
| 497 | |
Mike Frysinger | 7b826c2 | 2011-05-14 06:56:15 +0000 | [diff] [blame] | 498 | #if CONFIG_POST & CONFIG_SYS_POST_UART |
| 499 | static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE; |
| 500 | |
Marek Vasut | 9cd2b9e | 2012-10-08 11:36:39 +0000 | [diff] [blame] | 501 | /** |
| 502 | * uart_post_test() - Test the currently selected serial port using POST |
| 503 | * @flags: POST framework flags |
| 504 | * |
| 505 | * Do a loopback test of the currently selected serial port. This |
| 506 | * function is only useful in the context of the POST testing framwork. |
| 507 | * The serial port is firstly configured into loopback mode and then |
| 508 | * characters are sent through it. |
| 509 | * |
| 510 | * Returns 0 on success, value otherwise. |
| 511 | */ |
Mike Frysinger | 7b826c2 | 2011-05-14 06:56:15 +0000 | [diff] [blame] | 512 | /* Mark weak until post/cpu/.../uart.c migrate over */ |
| 513 | __weak |
| 514 | int uart_post_test(int flags) |
| 515 | { |
| 516 | unsigned char c; |
| 517 | int ret, saved_baud, b; |
| 518 | struct serial_device *saved_dev, *s; |
| 519 | bd_t *bd = gd->bd; |
| 520 | |
| 521 | /* Save current serial state */ |
| 522 | ret = 0; |
| 523 | saved_dev = serial_current; |
| 524 | saved_baud = bd->bi_baudrate; |
| 525 | |
| 526 | for (s = serial_devices; s; s = s->next) { |
| 527 | /* If this driver doesn't support loop back, skip it */ |
| 528 | if (!s->loop) |
| 529 | continue; |
| 530 | |
| 531 | /* Test the next device */ |
| 532 | serial_current = s; |
| 533 | |
| 534 | ret = serial_init(); |
| 535 | if (ret) |
| 536 | goto done; |
| 537 | |
| 538 | /* Consume anything that happens to be queued */ |
| 539 | while (serial_tstc()) |
| 540 | serial_getc(); |
| 541 | |
| 542 | /* Enable loop back */ |
| 543 | s->loop(1); |
| 544 | |
| 545 | /* Test every available baud rate */ |
| 546 | for (b = 0; b < ARRAY_SIZE(bauds); ++b) { |
| 547 | bd->bi_baudrate = bauds[b]; |
| 548 | serial_setbrg(); |
| 549 | |
| 550 | /* |
| 551 | * Stick to printable chars to avoid issues: |
| 552 | * - terminal corruption |
| 553 | * - serial program reacting to sequences and sending |
| 554 | * back random extra data |
| 555 | * - most serial drivers add in extra chars (like \r\n) |
| 556 | */ |
| 557 | for (c = 0x20; c < 0x7f; ++c) { |
| 558 | /* Send it out */ |
| 559 | serial_putc(c); |
| 560 | |
| 561 | /* Make sure it's the same one */ |
| 562 | ret = (c != serial_getc()); |
| 563 | if (ret) { |
| 564 | s->loop(0); |
| 565 | goto done; |
| 566 | } |
| 567 | |
| 568 | /* Clean up the output in case it was sent */ |
| 569 | serial_putc('\b'); |
| 570 | ret = ('\b' != serial_getc()); |
| 571 | if (ret) { |
| 572 | s->loop(0); |
| 573 | goto done; |
| 574 | } |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | /* Disable loop back */ |
| 579 | s->loop(0); |
| 580 | |
Marek Vasut | 89143fb | 2012-09-07 14:35:31 +0200 | [diff] [blame] | 581 | /* XXX: There is no serial_stop() !? */ |
| 582 | if (s->stop) |
| 583 | s->stop(); |
Mike Frysinger | 7b826c2 | 2011-05-14 06:56:15 +0000 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | done: |
| 587 | /* Restore previous serial state */ |
| 588 | serial_current = saved_dev; |
| 589 | bd->bi_baudrate = saved_baud; |
| 590 | serial_reinit_all(); |
| 591 | serial_setbrg(); |
| 592 | |
| 593 | return ret; |
| 594 | } |
| 595 | #endif |