3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 /*------------------------------------------------------------------------------+ */
29 * This source code has been made available to you by IBM on an AS-IS
30 * basis. Anyone receiving this source is licensed under IBM
31 * copyrights to use it in any way he or she deems fit, including
32 * copying it, modifying it, compiling it, and redistributing it either
33 * with or without modifications. No license under IBM patents or
34 * patent applications is to be implied by the copyright license.
36 * Any user of this software should understand that IBM cannot provide
37 * technical support for this software and will not be responsible for
38 * any consequences resulting from the use of this software.
40 * Any person who transfers this source code or any derivative work
41 * must include the IBM copyright notice, this paragraph, and the
42 * preceding two paragraphs in the transferred software.
44 * COPYRIGHT I B M CORPORATION 1995
45 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
47 /*------------------------------------------------------------------------------- */
52 #include <asm/ibmpc.h>
54 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
58 DECLARE_GLOBAL_DATA_PTR;
73 /*-----------------------------------------------------------------------------+
74 | Line Status Register.
75 +-----------------------------------------------------------------------------*/
76 #define asyncLSRDataReady1 0x01
77 #define asyncLSROverrunError1 0x02
78 #define asyncLSRParityError1 0x04
79 #define asyncLSRFramingError1 0x08
80 #define asyncLSRBreakInterrupt1 0x10
81 #define asyncLSRTxHoldEmpty1 0x20
82 #define asyncLSRTxShiftEmpty1 0x40
83 #define asyncLSRRxFifoError1 0x80
86 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
87 /*-----------------------------------------------------------------------------+
89 +-----------------------------------------------------------------------------*/
97 volatile serial_buffer_t buf_info;
98 static int serial_buffer_active=0;
102 static int serial_div(int baudrate)
125 * Minimal serial functions needed to use one of the SMC ports
126 * as serial console interface.
129 int serial_init(void)
132 int bdiv = serial_div(gd->baudrate);
134 outb(0x80, UART0_BASE + UART_LCR); /* set DLAB bit */
135 outb(bdiv, UART0_BASE + UART_DLL); /* set baudrate divisor */
136 outb(bdiv >> 8, UART0_BASE + UART_DLM);/* set baudrate divisor */
137 outb(0x03, UART0_BASE + UART_LCR); /* clear DLAB; set 8 bits, no parity */
138 outb(0x01, UART0_BASE + UART_FCR); /* enable FIFO */
139 outb(0x0b, UART0_BASE + UART_MCR); /* Set DTR and RTS active */
140 val = inb(UART0_BASE + UART_LSR); /* clear line status */
141 val = inb(UART0_BASE + UART_RBR); /* read receive buffer */
142 outb(0x00, UART0_BASE + UART_SCR); /* set scratchpad */
143 outb(0x00, UART0_BASE + UART_IER); /* set interrupt enable reg */
149 void serial_setbrg(void)
153 bdiv = serial_div(gd->baudrate);
155 outb(0x80, UART0_BASE + UART_LCR); /* set DLAB bit */
156 outb(bdiv&0xff, UART0_BASE + UART_DLL); /* set baudrate divisor */
157 outb(bdiv >> 8, UART0_BASE + UART_DLM);/* set baudrate divisor */
158 outb(0x03, UART0_BASE + UART_LCR); /* clear DLAB; set 8 bits, no parity */
162 void serial_putc(const char c)
169 /* check THRE bit, wait for transmiter available */
170 for (i = 1; i < 3500; i++) {
171 if ((inb (UART0_BASE + UART_LSR) & 0x20) == 0x20) {
176 outb(c, UART0_BASE + UART_THR); /* put character out */
180 void serial_puts(const char *s)
188 int serial_getc(void)
190 unsigned char status = 0;
192 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
193 if (serial_buffer_active) {
194 return serial_buffered_getc();
199 #if defined(CONFIG_HW_WATCHDOG)
200 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
201 #endif /* CONFIG_HW_WATCHDOG */
202 status = inb(UART0_BASE + UART_LSR);
203 if ((status & asyncLSRDataReady1) != 0x0) {
206 if ((status & ( asyncLSRFramingError1 |
207 asyncLSROverrunError1 |
208 asyncLSRParityError1 |
209 asyncLSRBreakInterrupt1 )) != 0) {
210 outb(asyncLSRFramingError1 |
211 asyncLSROverrunError1 |
212 asyncLSRParityError1 |
213 asyncLSRBreakInterrupt1, UART0_BASE + UART_LSR);
216 return (0x000000ff & (int) inb (UART0_BASE));
220 int serial_tstc(void)
222 unsigned char status;
224 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
225 if (serial_buffer_active) {
226 return serial_buffered_tstc();
230 status = inb(UART0_BASE + UART_LSR);
231 if ((status & asyncLSRDataReady1) != 0x0) {
234 if ((status & ( asyncLSRFramingError1 |
235 asyncLSROverrunError1 |
236 asyncLSRParityError1 |
237 asyncLSRBreakInterrupt1 )) != 0) {
238 outb(asyncLSRFramingError1 |
239 asyncLSROverrunError1 |
240 asyncLSRParityError1 |
241 asyncLSRBreakInterrupt1, UART0_BASE + UART_LSR);
247 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
249 void serial_isr(void *arg)
253 int rx_put = buf_info.rx_put;
255 if (buf_info.rx_get <= rx_put) {
256 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - buf_info.rx_get);
258 space = buf_info.rx_get - rx_put;
261 while (inb(UART0_BASE + UART_LSR) & 1) {
264 buf_info.rx_buffer[rx_put++] = c;
267 if (rx_put == buf_info.rx_get) {
269 if (rx_put == CONFIG_SERIAL_SOFTWARE_FIFO) {
274 if (rx_put == CONFIG_SERIAL_SOFTWARE_FIFO) {
276 if (0 == buf_info.rx_get) {
283 if (space < CONFIG_SERIAL_SOFTWARE_FIFO / 4) {
284 /* Stop flow by setting RTS inactive */
285 outb(inb(UART0_BASE + UART_MCR) & (0xFF ^ 0x02),
286 UART0_BASE + UART_MCR);
289 buf_info.rx_put = rx_put;
292 void serial_buffered_init(void)
294 serial_puts ("Switching to interrupt driven serial input mode.\n");
295 buf_info.rx_buffer = malloc (CONFIG_SERIAL_SOFTWARE_FIFO);
299 if (inb (UART0_BASE + UART_MSR) & 0x10) {
300 serial_puts ("Check CTS signal present on serial port: OK.\n");
303 serial_puts ("WARNING: CTS signal not present on serial port.\n");
307 irq_install_handler ( VECNUM_U0 /*UART0 */ /*int vec */ ,
308 serial_isr /*interrupt_handler_t *handler */ ,
309 (void *) &buf_info /*void *arg */ );
311 /* Enable "RX Data Available" Interrupt on UART */
312 /* outb(inb(UART0_BASE + UART_IER) |0x01, UART0_BASE + UART_IER); */
313 outb(0x01, UART0_BASE + UART_IER);
315 /* Set DTR and RTS active, enable interrupts */
316 outb(inb (UART0_BASE + UART_MCR) | 0x0b, UART0_BASE + UART_MCR);
318 /* Setup UART FIFO: RX trigger level: 1 byte, Enable FIFO */
319 outb( /*(1 << 6) |*/ 1, UART0_BASE + UART_FCR);
321 serial_buffer_active = 1;
324 void serial_buffered_putc (const char c)
328 #if defined(CONFIG_HW_WATCHDOG)
329 while (!(inb (UART0_BASE + UART_MSR) & 0x10))
333 for (i=0;i<1000;i++) {
334 if ((inb (UART0_BASE + UART_MSR) & 0x10)) {
342 if ((inb (UART0_BASE + UART_MSR) & 0x10)) {
351 void serial_buffered_puts(const char *s)
356 int serial_buffered_getc(void)
360 int rx_get = buf_info.rx_get;
363 #if defined(CONFIG_HW_WATCHDOG)
364 while (rx_get == buf_info.rx_put)
367 while (rx_get == buf_info.rx_put);
369 c = buf_info.rx_buffer[rx_get++];
370 if (rx_get == CONFIG_SERIAL_SOFTWARE_FIFO) {
373 buf_info.rx_get = rx_get;
375 rx_put = buf_info.rx_put;
376 if (rx_get <= rx_put) {
377 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - rx_get);
379 space = rx_get - rx_put;
381 if (space > CONFIG_SERIAL_SOFTWARE_FIFO / 2) {
382 /* Start flow by setting RTS active */
383 outb(inb (UART0_BASE + UART_MCR) | 0x02, UART0_BASE + UART_MCR);
389 int serial_buffered_tstc(void)
391 return (buf_info.rx_get != buf_info.rx_put) ? 1 : 0;
394 #endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
397 #if defined(CONFIG_CMD_KGDB)
399 AS HARNOIS : according to CONFIG_KGDB_SER_INDEX kgdb uses serial port
401 - if CONFIG_KGDB_SER_INDEX = 1 => serial port number 0 :
402 configuration has been already done
403 - if CONFIG_KGDB_SER_INDEX = 2 => serial port number 1 :
404 configure port 1 for serial I/O with rate = CONFIG_KGDB_BAUDRATE
406 #if (CONFIG_KGDB_SER_INDEX & 2)
407 void kgdb_serial_init(void)
410 bdiv = serial_div (CONFIG_KGDB_BAUDRATE);
413 * Init onboard 16550 UART
415 outb(0x80, UART1_BASE + UART_LCR); /* set DLAB bit */
416 outb((bdiv & 0xff), UART1_BASE + UART_DLL); /* set divisor for 9600 baud */
417 outb((bdiv >> 8 ), UART1_BASE + UART_DLM); /* set divisor for 9600 baud */
418 outb(0x03, UART1_BASE + UART_LCR); /* line control 8 bits no parity */
419 outb(0x00, UART1_BASE + UART_FCR); /* disable FIFO */
420 outb(0x00, UART1_BASE + UART_MCR); /* no modem control DTR RTS */
421 val = inb(UART1_BASE + UART_LSR); /* clear line status */
422 val = inb(UART1_BASE + UART_RBR); /* read receive buffer */
423 outb(0x00, UART1_BASE + UART_SCR); /* set scratchpad */
424 outb(0x00, UART1_BASE + UART_IER); /* set interrupt enable reg */
428 void putDebugChar(const char c)
433 outb(c, UART1_BASE + UART_THR); /* put character out */
435 /* check THRE bit, wait for transfer done */
436 while ((inb(UART1_BASE + UART_LSR) & 0x20) != 0x20);
440 void putDebugStr(const char *s)
448 int getDebugChar(void)
450 unsigned char status = 0;
453 status = inb(UART1_BASE + UART_LSR);
454 if ((status & asyncLSRDataReady1) != 0x0) {
457 if ((status & ( asyncLSRFramingError1 |
458 asyncLSROverrunError1 |
459 asyncLSRParityError1 |
460 asyncLSRBreakInterrupt1 )) != 0) {
461 outb(asyncLSRFramingError1 |
462 asyncLSROverrunError1 |
463 asyncLSRParityError1 |
464 asyncLSRBreakInterrupt1, UART1_BASE + UART_LSR);
467 return (0x000000ff & (int) inb(UART1_BASE));
471 void kgdb_interruptible(int yes)
476 #else /* ! (CONFIG_KGDB_SER_INDEX & 2) */
478 void kgdb_serial_init(void)
480 serial_printf ("[on serial] ");
483 void putDebugChar(int c)
488 void putDebugStr(const char *str)
493 int getDebugChar(void)
495 return serial_getc ();
498 void kgdb_interruptible(int yes)
502 #endif /* (CONFIG_KGDB_SER_INDEX & 2) */