5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
23 /*------------------------------------------------------------------------------+ */
25 * This source code has been made available to you by IBM on an AS-IS
26 * basis. Anyone receiving this source is licensed under IBM
27 * copyrights to use it in any way he or she deems fit, including
28 * copying it, modifying it, compiling it, and redistributing it either
29 * with or without modifications. No license under IBM patents or
30 * patent applications is to be implied by the copyright license.
32 * Any user of this software should understand that IBM cannot provide
33 * technical support for this software and will not be responsible for
34 * any consequences resulting from the use of this software.
36 * Any person who transfers this source code or any derivative work
37 * must include the IBM copyright notice, this paragraph, and the
38 * preceding two paragraphs in the transferred software.
40 * COPYRIGHT I B M CORPORATION 1995
41 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
43 /*------------------------------------------------------------------------------- */
45 * Travis Sawyer 15 September 2004
46 * Added CONFIG_SERIAL_MULTI support
50 #include <asm/processor.h>
54 #ifdef CONFIG_SERIAL_MULTI
58 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
62 /*****************************************************************************/
65 #define SPU_BASE 0x40000000
67 #define spu_LineStat_rc 0x00 /* Line Status Register (Read/Clear) */
68 #define spu_LineStat_w 0x04 /* Line Status Register (Set) */
69 #define spu_Handshk_rc 0x08 /* Handshake Status Register (Read/Clear) */
70 #define spu_Handshk_w 0x0c /* Handshake Status Register (Set) */
71 #define spu_BRateDivh 0x10 /* Baud rate divisor high */
72 #define spu_BRateDivl 0x14 /* Baud rate divisor low */
73 #define spu_CtlReg 0x18 /* Control Register */
74 #define spu_RxCmd 0x1c /* Rx Command Register */
75 #define spu_TxCmd 0x20 /* Tx Command Register */
76 #define spu_RxBuff 0x24 /* Rx data buffer */
77 #define spu_TxBuff 0x24 /* Tx data buffer */
79 /*-----------------------------------------------------------------------------+
80 | Line Status Register.
81 +-----------------------------------------------------------------------------*/
82 #define asyncLSRport1 0x40000000
83 #define asyncLSRport1set 0x40000004
84 #define asyncLSRDataReady 0x80
85 #define asyncLSRFramingError 0x40
86 #define asyncLSROverrunError 0x20
87 #define asyncLSRParityError 0x10
88 #define asyncLSRBreakInterrupt 0x08
89 #define asyncLSRTxHoldEmpty 0x04
90 #define asyncLSRTxShiftEmpty 0x02
92 /*-----------------------------------------------------------------------------+
93 | Handshake Status Register.
94 +-----------------------------------------------------------------------------*/
95 #define asyncHSRport1 0x40000008
96 #define asyncHSRport1set 0x4000000c
97 #define asyncHSRDsr 0x80
98 #define asyncLSRCts 0x40
100 /*-----------------------------------------------------------------------------+
102 +-----------------------------------------------------------------------------*/
103 #define asyncCRport1 0x40000018
104 #define asyncCRNormal 0x00
105 #define asyncCRLoopback 0x40
106 #define asyncCRAutoEcho 0x80
107 #define asyncCRDtr 0x20
108 #define asyncCRRts 0x10
109 #define asyncCRWordLength7 0x00
110 #define asyncCRWordLength8 0x08
111 #define asyncCRParityDisable 0x00
112 #define asyncCRParityEnable 0x04
113 #define asyncCREvenParity 0x00
114 #define asyncCROddParity 0x02
115 #define asyncCRStopBitsOne 0x00
116 #define asyncCRStopBitsTwo 0x01
117 #define asyncCRDisableDtrRts 0x00
119 /*-----------------------------------------------------------------------------+
120 | Receiver Command Register.
121 +-----------------------------------------------------------------------------*/
122 #define asyncRCRport1 0x4000001c
123 #define asyncRCRDisable 0x00
124 #define asyncRCREnable 0x80
125 #define asyncRCRIntDisable 0x00
126 #define asyncRCRIntEnabled 0x20
127 #define asyncRCRDMACh2 0x40
128 #define asyncRCRDMACh3 0x60
129 #define asyncRCRErrorInt 0x10
130 #define asyncRCRPauseEnable 0x08
132 /*-----------------------------------------------------------------------------+
133 | Transmitter Command Register.
134 +-----------------------------------------------------------------------------*/
135 #define asyncTCRport1 0x40000020
136 #define asyncTCRDisable 0x00
137 #define asyncTCREnable 0x80
138 #define asyncTCRIntDisable 0x00
139 #define asyncTCRIntEnabled 0x20
140 #define asyncTCRDMACh2 0x40
141 #define asyncTCRDMACh3 0x60
142 #define asyncTCRTxEmpty 0x10
143 #define asyncTCRErrorInt 0x08
144 #define asyncTCRStopPause 0x04
145 #define asyncTCRBreakGen 0x02
147 /*-----------------------------------------------------------------------------+
148 | Miscellanies defines.
149 +-----------------------------------------------------------------------------*/
150 #define asyncTxBufferport1 0x40000024
151 #define asyncRxBufferport1 0x40000024
152 #define asyncDLABLsbport1 0x40000014
153 #define asyncDLABMsbport1 0x40000010
154 #define asyncXOFFchar 0x13
155 #define asyncXONchar 0x11
158 * Minimal serial functions needed to use one of the SMC ports
159 * as serial console interface.
162 int serial_init (void)
164 DECLARE_GLOBAL_DATA_PTR;
167 unsigned short br_reg;
169 br_reg = ((((CONFIG_CPUCLOCK * 1000000) / 16) / gd->baudrate) - 1);
174 out8 (SPU_BASE + spu_LineStat_rc, 0x78); /* Clear all bits in Line Status Reg */
175 out8 (SPU_BASE + spu_BRateDivl, (br_reg & 0x00ff)); /* Set baud rate divisor... */
176 out8 (SPU_BASE + spu_BRateDivh, ((br_reg & 0xff00) >> 8)); /* ... */
177 out8 (SPU_BASE + spu_CtlReg, 0x08); /* Set 8 bits, no parity and 1 stop bit */
178 out8 (SPU_BASE + spu_RxCmd, 0xb0); /* Enable Rx */
179 out8 (SPU_BASE + spu_TxCmd, 0x9c); /* Enable Tx */
180 out8 (SPU_BASE + spu_Handshk_rc, 0xff); /* Clear Handshake */
181 val = in8 (SPU_BASE + spu_RxBuff); /* Dummy read, to clear receiver */
186 void serial_setbrg (void)
188 DECLARE_GLOBAL_DATA_PTR;
190 unsigned short br_reg;
192 br_reg = ((((CONFIG_CPUCLOCK * 1000000) / 16) / gd->baudrate) - 1);
194 out8 (SPU_BASE + spu_BRateDivl, (br_reg & 0x00ff)); /* Set baud rate divisor... */
195 out8 (SPU_BASE + spu_BRateDivh, ((br_reg & 0xff00) >> 8)); /* ... */
198 void serial_putc (const char c)
203 /* load status from handshake register */
204 if (in8 (SPU_BASE + spu_Handshk_rc) != 00)
205 out8 (SPU_BASE + spu_Handshk_rc, 0xff); /* Clear Handshake */
207 out8 (SPU_BASE + spu_TxBuff, c); /* Put char */
209 while ((in8 (SPU_BASE + spu_LineStat_rc) & 04) != 04) {
210 if (in8 (SPU_BASE + spu_Handshk_rc) != 00)
211 out8 (SPU_BASE + spu_Handshk_rc, 0xff); /* Clear Handshake */
215 void serial_puts (const char *s)
224 unsigned char status = 0;
227 status = in8 (asyncLSRport1);
228 if ((status & asyncLSRDataReady) != 0x0) {
231 if ((status & ( asyncLSRFramingError |
232 asyncLSROverrunError |
233 asyncLSRParityError |
234 asyncLSRBreakInterrupt )) != 0) {
235 (void) out8 (asyncLSRport1,
236 asyncLSRFramingError |
237 asyncLSROverrunError |
238 asyncLSRParityError |
239 asyncLSRBreakInterrupt );
242 return (0x000000ff & (int) in8 (asyncRxBufferport1));
247 unsigned char status;
249 status = in8 (asyncLSRport1);
250 if ((status & asyncLSRDataReady) != 0x0) {
253 if ((status & ( asyncLSRFramingError |
254 asyncLSROverrunError |
255 asyncLSRParityError |
256 asyncLSRBreakInterrupt )) != 0) {
257 (void) out8 (asyncLSRport1,
258 asyncLSRFramingError |
259 asyncLSROverrunError |
260 asyncLSRParityError |
261 asyncLSRBreakInterrupt);
266 #endif /* CONFIG_IOP480 */
268 /*****************************************************************************/
269 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) || defined(CONFIG_405EP)
271 #if defined(CONFIG_440)
272 #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
273 #define UART0_BASE CFG_PERIPHERAL_BASE + 0x00000300
274 #define UART1_BASE CFG_PERIPHERAL_BASE + 0x00000400
276 #define UART0_BASE CFG_PERIPHERAL_BASE + 0x00000200
277 #define UART1_BASE CFG_PERIPHERAL_BASE + 0x00000300
280 #if defined(CONFIG_440SP)
281 #define UART2_BASE CFG_PERIPHERAL_BASE + 0x00000600
284 #if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SP)
285 #define CR0_MASK 0xdfffffff
286 #define CR0_EXTCLK_ENA 0x00800000
287 #define CR0_UDIV_POS 0
289 #define CR0_MASK 0x3fff0000
290 #define CR0_EXTCLK_ENA 0x00600000
291 #define CR0_UDIV_POS 16
292 #endif /* CONFIG_440GX */
293 #elif defined(CONFIG_405EP)
294 #define UART0_BASE 0xef600300
295 #define UART1_BASE 0xef600400
296 #define UCR0_MASK 0x0000007f
297 #define UCR1_MASK 0x00007f00
298 #define UCR0_UDIV_POS 0
299 #define UCR1_UDIV_POS 8
301 #else /* CONFIG_405GP || CONFIG_405CR */
302 #define UART0_BASE 0xef600300
303 #define UART1_BASE 0xef600400
304 #define CR0_MASK 0x00001fff
305 #define CR0_EXTCLK_ENA 0x000000c0
306 #define CR0_UDIV_POS 1
310 /* using serial port 0 or 1 as U-Boot console ? */
311 #if defined(CONFIG_UART1_CONSOLE)
312 #define ACTING_UART0_BASE UART1_BASE
313 #define ACTING_UART1_BASE UART0_BASE
314 #if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SP)
315 #define UART0_SDR sdr_uart1
316 #define UART1_SDR sdr_uart0
317 #endif /* CONFIG_440GX */
319 #define ACTING_UART0_BASE UART0_BASE
320 #define ACTING_UART1_BASE UART1_BASE
321 #if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SP)
322 #define UART0_SDR sdr_uart0
323 #define UART1_SDR sdr_uart1
324 #endif /* CONFIG_440GX */
327 #if defined(CONFIG_405EP) && defined(CFG_EXT_SERIAL_CLOCK)
328 #error "External serial clock not supported on AMCC PPC405EP!"
331 #define UART_RBR 0x00
332 #define UART_THR 0x00
333 #define UART_IER 0x01
334 #define UART_IIR 0x02
335 #define UART_FCR 0x02
336 #define UART_LCR 0x03
337 #define UART_MCR 0x04
338 #define UART_LSR 0x05
339 #define UART_MSR 0x06
340 #define UART_SCR 0x07
341 #define UART_DLL 0x00
342 #define UART_DLM 0x01
344 /*-----------------------------------------------------------------------------+
345 | Line Status Register.
346 +-----------------------------------------------------------------------------*/
347 /*#define asyncLSRport1 ACTING_UART0_BASE+0x05 */
348 #define asyncLSRDataReady1 0x01
349 #define asyncLSROverrunError1 0x02
350 #define asyncLSRParityError1 0x04
351 #define asyncLSRFramingError1 0x08
352 #define asyncLSRBreakInterrupt1 0x10
353 #define asyncLSRTxHoldEmpty1 0x20
354 #define asyncLSRTxShiftEmpty1 0x40
355 #define asyncLSRRxFifoError1 0x80
357 /*-----------------------------------------------------------------------------+
358 | Miscellanies defines.
359 +-----------------------------------------------------------------------------*/
360 /*#define asyncTxBufferport1 ACTING_UART0_BASE+0x00 */
361 /*#define asyncRxBufferport1 ACTING_UART0_BASE+0x00 */
363 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
364 /*-----------------------------------------------------------------------------+
366 +-----------------------------------------------------------------------------*/
373 volatile static serial_buffer_t buf_info;
376 #if defined(CONFIG_440) && !defined(CFG_EXT_SERIAL_CLOCK)
377 static void serial_divs (int baudrate, unsigned long *pudiv,
378 unsigned short *pbdiv )
381 unsigned long div; /* total divisor udiv * bdiv */
382 unsigned long umin; /* minimum udiv */
383 unsigned short diff; /* smallest diff */
384 unsigned long udiv; /* best udiv */
386 unsigned short idiff; /* current diff */
387 unsigned short ibdiv; /* current bdiv */
389 unsigned long est; /* current estimate */
391 get_sys_info( &sysinfo );
393 udiv = 32; /* Assume lowest possible serial clk */
394 div = sysinfo.freqPLB/(16*baudrate); /* total divisor */
395 umin = sysinfo.pllOpbDiv<<1; /* 2 x OPB divisor */
396 diff = 32; /* highest possible */
398 /* i is the test udiv value -- start with the largest
399 * possible (32) to minimize serial clock and constrain
402 for( i = 32; i > umin; i-- ){
405 idiff = (est > div) ? (est-div) : (div-est);
408 break; /* can't do better */
410 else if( idiff < diff ){
411 udiv = i; /* best so far */
412 diff = idiff; /* update lowest diff*/
420 #endif /* defined(CONFIG_440) && !defined(CFG_EXT_SERIAL_CLK */
423 * Minimal serial functions needed to use one of the SMC ports
424 * as serial console interface.
427 #if defined(CONFIG_440)
428 #if defined(CONFIG_SERIAL_MULTI)
429 int serial_init_dev (unsigned long dev_base)
431 int serial_init(void)
434 DECLARE_GLOBAL_DATA_PTR;
440 #ifdef CFG_EXT_SERIAL_CLOCK
444 #if defined(CONFIG_440GX) || defined(CONFIG_440SP)
445 #if defined(CONFIG_SERIAL_MULTI)
446 if (UART0_BASE == dev_base) {
447 mfsdr(UART0_SDR,reg);
450 mfsdr(UART1_SDR,reg);
454 mfsdr(UART0_SDR,reg);
458 reg = mfdcr(cntrl0) & ~CR0_MASK;
459 #endif /* CONFIG_440GX */
460 #ifdef CFG_EXT_SERIAL_CLOCK
461 reg |= CR0_EXTCLK_ENA;
463 tmp = gd->baudrate * 16;
464 bdiv = (CFG_EXT_SERIAL_CLOCK + tmp / 2) / tmp;
466 /* For 440, the cpu clock is on divider chain A, UART on divider
467 * chain B ... so cpu clock is irrelevant. Get the "optimized"
468 * values that are subject to the 1/2 opb clock constraint
470 serial_divs (gd->baudrate, &udiv, &bdiv);
473 #if defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SP)
474 reg |= udiv << CR0_UDIV_POS; /* set the UART divisor */
475 #if defined(CONFIG_SERIAL_MULTI)
476 if (UART0_BASE == dev_base) {
477 mtsdr (UART0_SDR,reg);
479 mtsdr (UART1_SDR,reg);
482 mtsdr (UART0_SDR,reg);
485 reg |= (udiv - 1) << CR0_UDIV_POS; /* set the UART divisor */
489 #if defined(CONFIG_SERIAL_MULTI)
490 out8 (dev_base + UART_LCR, 0x80); /* set DLAB bit */
491 out8 (dev_base + UART_DLL, bdiv); /* set baudrate divisor */
492 out8 (dev_base + UART_DLM, bdiv >> 8);/* set baudrate divisor */
493 out8 (dev_base + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
494 out8 (dev_base + UART_FCR, 0x00); /* disable FIFO */
495 out8 (dev_base + UART_MCR, 0x00); /* no modem control DTR RTS */
496 val = in8 (dev_base + UART_LSR); /* clear line status */
497 val = in8 (dev_base + UART_RBR); /* read receive buffer */
498 out8 (dev_base + UART_SCR, 0x00); /* set scratchpad */
499 out8 (dev_base + UART_IER, 0x00); /* set interrupt enable reg */
501 out8 (ACTING_UART0_BASE + UART_LCR, 0x80); /* set DLAB bit */
502 out8 (ACTING_UART0_BASE + UART_DLL, bdiv); /* set baudrate divisor */
503 out8 (ACTING_UART0_BASE + UART_DLM, bdiv >> 8);/* set baudrate divisor */
504 out8 (ACTING_UART0_BASE + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
505 out8 (ACTING_UART0_BASE + UART_FCR, 0x00); /* disable FIFO */
506 out8 (ACTING_UART0_BASE + UART_MCR, 0x00); /* no modem control DTR RTS */
507 val = in8 (ACTING_UART0_BASE + UART_LSR); /* clear line status */
508 val = in8 (ACTING_UART0_BASE + UART_RBR); /* read receive buffer */
509 out8 (ACTING_UART0_BASE + UART_SCR, 0x00); /* set scratchpad */
510 out8 (ACTING_UART0_BASE + UART_IER, 0x00); /* set interrupt enable reg */
515 #else /* !defined(CONFIG_440) */
517 #if defined(CONFIG_SERIAL_MULTI)
518 int serial_init_dev (unsigned long dev_base)
520 int serial_init (void)
523 DECLARE_GLOBAL_DATA_PTR;
533 reg = mfdcr(cpc0_ucr) & ~(UCR0_MASK | UCR1_MASK);
535 tmp = CFG_BASE_BAUD * 16;
536 udiv = (clk + tmp / 2) / tmp;
537 if (udiv > UDIV_MAX) /* max. n bits for udiv */
539 reg |= (udiv) << UCR0_UDIV_POS; /* set the UART divisor */
540 reg |= (udiv) << UCR1_UDIV_POS; /* set the UART divisor */
541 mtdcr (cpc0_ucr, reg);
542 #else /* CONFIG_405EP */
543 reg = mfdcr(cntrl0) & ~CR0_MASK;
544 #ifdef CFG_EXT_SERIAL_CLOCK
545 clk = CFG_EXT_SERIAL_CLOCK;
547 reg |= CR0_EXTCLK_ENA;
550 #ifdef CFG_405_UART_ERRATA_59
551 udiv = 31; /* Errata 59: stuck at 31 */
553 tmp = CFG_BASE_BAUD * 16;
554 udiv = (clk + tmp / 2) / tmp;
555 if (udiv > UDIV_MAX) /* max. n bits for udiv */
559 reg |= (udiv - 1) << CR0_UDIV_POS; /* set the UART divisor */
561 #endif /* CONFIG_405EP */
563 tmp = gd->baudrate * udiv * 16;
564 bdiv = (clk + tmp / 2) / tmp;
566 #if defined(CONFIG_SERIAL_MULTI)
567 out8 (dev_base + UART_LCR, 0x80); /* set DLAB bit */
568 out8 (dev_base + UART_DLL, bdiv); /* set baudrate divisor */
569 out8 (dev_base + UART_DLM, bdiv >> 8);/* set baudrate divisor */
570 out8 (dev_base + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
571 out8 (dev_base + UART_FCR, 0x00); /* disable FIFO */
572 out8 (dev_base + UART_MCR, 0x00); /* no modem control DTR RTS */
573 val = in8 (dev_base + UART_LSR); /* clear line status */
574 val = in8 (dev_base + UART_RBR); /* read receive buffer */
575 out8 (dev_base + UART_SCR, 0x00); /* set scratchpad */
576 out8 (dev_base + UART_IER, 0x00); /* set interrupt enable reg */
578 out8 (ACTING_UART0_BASE + UART_LCR, 0x80); /* set DLAB bit */
579 out8 (ACTING_UART0_BASE + UART_DLL, bdiv); /* set baudrate divisor */
580 out8 (ACTING_UART0_BASE + UART_DLM, bdiv >> 8);/* set baudrate divisor */
581 out8 (ACTING_UART0_BASE + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
582 out8 (ACTING_UART0_BASE + UART_FCR, 0x00); /* disable FIFO */
583 out8 (ACTING_UART0_BASE + UART_MCR, 0x00); /* no modem control DTR RTS */
584 val = in8 (ACTING_UART0_BASE + UART_LSR); /* clear line status */
585 val = in8 (ACTING_UART0_BASE + UART_RBR); /* read receive buffer */
586 out8 (ACTING_UART0_BASE + UART_SCR, 0x00); /* set scratchpad */
587 out8 (ACTING_UART0_BASE + UART_IER, 0x00); /* set interrupt enable reg */
592 #endif /* if defined(CONFIG_440) */
594 #if defined(CONFIG_SERIAL_MULTI)
595 void serial_setbrg_dev (unsigned long dev_base)
597 void serial_setbrg (void)
600 DECLARE_GLOBAL_DATA_PTR;
607 #ifdef CFG_EXT_SERIAL_CLOCK
608 clk = CFG_EXT_SERIAL_CLOCK;
614 udiv = ((mfdcr (cpc0_ucr) & UCR0_MASK) >> UCR0_UDIV_POS);
616 udiv = ((mfdcr (cntrl0) & 0x3e) >> 1) + 1;
617 #endif /* CONFIG_405EP */
618 tmp = gd->baudrate * udiv * 16;
619 bdiv = (clk + tmp / 2) / tmp;
621 #if defined(CONFIG_SERIAL_MULTI)
622 out8 (dev_base + UART_LCR, 0x80); /* set DLAB bit */
623 out8 (dev_base + UART_DLL, bdiv); /* set baudrate divisor */
624 out8 (dev_base + UART_DLM, bdiv >> 8);/* set baudrate divisor */
625 out8 (dev_base + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
627 out8 (ACTING_UART0_BASE + UART_LCR, 0x80); /* set DLAB bit */
628 out8 (ACTING_UART0_BASE + UART_DLL, bdiv); /* set baudrate divisor */
629 out8 (ACTING_UART0_BASE + UART_DLM, bdiv >> 8);/* set baudrate divisor */
630 out8 (ACTING_UART0_BASE + UART_LCR, 0x03); /* clear DLAB; set 8 bits, no parity */
634 #if defined(CONFIG_SERIAL_MULTI)
635 void serial_putc_dev (unsigned long dev_base, const char c)
637 void serial_putc (const char c)
643 #if defined(CONFIG_SERIAL_MULTI)
644 serial_putc_dev (dev_base, '\r');
649 /* check THRE bit, wait for transmiter available */
650 for (i = 1; i < 3500; i++) {
651 #if defined(CONFIG_SERIAL_MULTI)
652 if ((in8 (dev_base + UART_LSR) & 0x20) == 0x20)
654 if ((in8 (ACTING_UART0_BASE + UART_LSR) & 0x20) == 0x20)
659 #if defined(CONFIG_SERIAL_MULTI)
660 out8 (dev_base + UART_THR, c); /* put character out */
662 out8 (ACTING_UART0_BASE + UART_THR, c); /* put character out */
666 #if defined(CONFIG_SERIAL_MULTI)
667 void serial_puts_dev (unsigned long dev_base, const char *s)
669 void serial_puts (const char *s)
673 #if defined(CONFIG_SERIAL_MULTI)
674 serial_putc_dev (dev_base, *s++);
681 #if defined(CONFIG_SERIAL_MULTI)
682 int serial_getc_dev (unsigned long dev_base)
684 int serial_getc (void)
687 unsigned char status = 0;
690 #if defined(CONFIG_HW_WATCHDOG)
691 WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
692 #endif /* CONFIG_HW_WATCHDOG */
693 #if defined(CONFIG_SERIAL_MULTI)
694 status = in8 (dev_base + UART_LSR);
696 status = in8 (ACTING_UART0_BASE + UART_LSR);
698 if ((status & asyncLSRDataReady1) != 0x0) {
701 if ((status & ( asyncLSRFramingError1 |
702 asyncLSROverrunError1 |
703 asyncLSRParityError1 |
704 asyncLSRBreakInterrupt1 )) != 0) {
705 #if defined(CONFIG_SERIAL_MULTI)
706 out8 (dev_base + UART_LSR,
708 out8 (ACTING_UART0_BASE + UART_LSR,
710 asyncLSRFramingError1 |
711 asyncLSROverrunError1 |
712 asyncLSRParityError1 |
713 asyncLSRBreakInterrupt1);
716 #if defined(CONFIG_SERIAL_MULTI)
717 return (0x000000ff & (int) in8 (dev_base));
719 return (0x000000ff & (int) in8 (ACTING_UART0_BASE));
723 #if defined(CONFIG_SERIAL_MULTI)
724 int serial_tstc_dev (unsigned long dev_base)
726 int serial_tstc (void)
729 unsigned char status;
731 #if defined(CONFIG_SERIAL_MULTI)
732 status = in8 (dev_base + UART_LSR);
734 status = in8 (ACTING_UART0_BASE + UART_LSR);
736 if ((status & asyncLSRDataReady1) != 0x0) {
739 if ((status & ( asyncLSRFramingError1 |
740 asyncLSROverrunError1 |
741 asyncLSRParityError1 |
742 asyncLSRBreakInterrupt1 )) != 0) {
743 #if defined(CONFIG_SERIAL_MULTI)
744 out8 (dev_base + UART_LSR,
746 out8 (ACTING_UART0_BASE + UART_LSR,
748 asyncLSRFramingError1 |
749 asyncLSROverrunError1 |
750 asyncLSRParityError1 |
751 asyncLSRBreakInterrupt1);
756 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
758 void serial_isr (void *arg)
762 const int rx_get = buf_info.rx_get;
763 int rx_put = buf_info.rx_put;
765 if (rx_get <= rx_put) {
766 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - rx_get);
768 space = rx_get - rx_put;
770 while (serial_tstc_dev (ACTING_UART0_BASE)) {
771 c = serial_getc_dev (ACTING_UART0_BASE);
773 buf_info.rx_buffer[rx_put++] = c;
776 if (rx_put == CONFIG_SERIAL_SOFTWARE_FIFO)
778 if (space < CONFIG_SERIAL_SOFTWARE_FIFO / 4) {
779 /* Stop flow by setting RTS inactive */
780 out8 (ACTING_UART0_BASE + UART_MCR,
781 in8 (ACTING_UART0_BASE + UART_MCR) & (0xFF ^ 0x02));
784 buf_info.rx_put = rx_put;
787 void serial_buffered_init (void)
789 serial_puts ("Switching to interrupt driven serial input mode.\n");
790 buf_info.rx_buffer = malloc (CONFIG_SERIAL_SOFTWARE_FIFO);
794 if (in8 (ACTING_UART0_BASE + UART_MSR) & 0x10) {
795 serial_puts ("Check CTS signal present on serial port: OK.\n");
797 serial_puts ("WARNING: CTS signal not present on serial port.\n");
800 irq_install_handler ( VECNUM_U0 /*UART0 */ /*int vec */ ,
801 serial_isr /*interrupt_handler_t *handler */ ,
802 (void *) &buf_info /*void *arg */ );
804 /* Enable "RX Data Available" Interrupt on UART */
805 /* out8(ACTING_UART0_BASE + UART_IER, in8(ACTING_UART0_BASE + UART_IER) |0x01); */
806 out8 (ACTING_UART0_BASE + UART_IER, 0x01);
808 out8 (ACTING_UART0_BASE + UART_MCR, in8 (ACTING_UART0_BASE + UART_MCR) | 0x01);
809 /* Start flow by setting RTS active */
810 out8 (ACTING_UART0_BASE + UART_MCR, in8 (ACTING_UART0_BASE + UART_MCR) | 0x02);
811 /* Setup UART FIFO: RX trigger level: 4 byte, Enable FIFO */
812 out8 (ACTING_UART0_BASE + UART_FCR, (1 << 6) | 1);
815 void serial_buffered_putc (const char c)
818 #if defined(CONFIG_HW_WATCHDOG)
819 while (!(in8 (ACTING_UART0_BASE + UART_MSR) & 0x10))
822 while (!(in8 (ACTING_UART0_BASE + UART_MSR) & 0x10));
827 void serial_buffered_puts (const char *s)
832 int serial_buffered_getc (void)
836 int rx_get = buf_info.rx_get;
839 #if defined(CONFIG_HW_WATCHDOG)
840 while (rx_get == buf_info.rx_put)
843 while (rx_get == buf_info.rx_put);
845 c = buf_info.rx_buffer[rx_get++];
846 if (rx_get == CONFIG_SERIAL_SOFTWARE_FIFO)
848 buf_info.rx_get = rx_get;
850 rx_put = buf_info.rx_put;
851 if (rx_get <= rx_put) {
852 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - rx_get);
854 space = rx_get - rx_put;
856 if (space > CONFIG_SERIAL_SOFTWARE_FIFO / 2) {
857 /* Start flow by setting RTS active */
858 out8 (ACTING_UART0_BASE + UART_MCR, in8 (ACTING_UART0_BASE + UART_MCR) | 0x02);
864 int serial_buffered_tstc (void)
866 return (buf_info.rx_get != buf_info.rx_put) ? 1 : 0;
869 #endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
871 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
873 AS HARNOIS : according to CONFIG_KGDB_SER_INDEX kgdb uses serial port
875 - if CONFIG_KGDB_SER_INDEX = 1 => serial port number 0 :
876 configuration has been already done
877 - if CONFIG_KGDB_SER_INDEX = 2 => serial port number 1 :
878 configure port 1 for serial I/O with rate = CONFIG_KGDB_BAUDRATE
880 #if (CONFIG_KGDB_SER_INDEX & 2)
881 void kgdb_serial_init (void)
883 DECLARE_GLOBAL_DATA_PTR;
886 unsigned short br_reg;
889 br_reg = (((((gd->cpu_clk / 16) / 18) * 10) / CONFIG_KGDB_BAUDRATE) +
892 * Init onboard 16550 UART
894 out8 (ACTING_UART1_BASE + UART_LCR, 0x80); /* set DLAB bit */
895 out8 (ACTING_UART1_BASE + UART_DLL, (br_reg & 0x00ff)); /* set divisor for 9600 baud */
896 out8 (ACTING_UART1_BASE + UART_DLM, ((br_reg & 0xff00) >> 8)); /* set divisor for 9600 baud */
897 out8 (ACTING_UART1_BASE + UART_LCR, 0x03); /* line control 8 bits no parity */
898 out8 (ACTING_UART1_BASE + UART_FCR, 0x00); /* disable FIFO */
899 out8 (ACTING_UART1_BASE + UART_MCR, 0x00); /* no modem control DTR RTS */
900 val = in8 (ACTING_UART1_BASE + UART_LSR); /* clear line status */
901 val = in8 (ACTING_UART1_BASE + UART_RBR); /* read receive buffer */
902 out8 (ACTING_UART1_BASE + UART_SCR, 0x00); /* set scratchpad */
903 out8 (ACTING_UART1_BASE + UART_IER, 0x00); /* set interrupt enable reg */
906 void putDebugChar (const char c)
911 out8 (ACTING_UART1_BASE + UART_THR, c); /* put character out */
913 /* check THRE bit, wait for transfer done */
914 while ((in8 (ACTING_UART1_BASE + UART_LSR) & 0x20) != 0x20);
917 void putDebugStr (const char *s)
924 int getDebugChar (void)
926 unsigned char status = 0;
929 status = in8 (ACTING_UART1_BASE + UART_LSR);
930 if ((status & asyncLSRDataReady1) != 0x0) {
933 if ((status & ( asyncLSRFramingError1 |
934 asyncLSROverrunError1 |
935 asyncLSRParityError1 |
936 asyncLSRBreakInterrupt1 )) != 0) {
937 out8 (ACTING_UART1_BASE + UART_LSR,
938 asyncLSRFramingError1 |
939 asyncLSROverrunError1 |
940 asyncLSRParityError1 |
941 asyncLSRBreakInterrupt1);
944 return (0x000000ff & (int) in8 (ACTING_UART1_BASE));
947 void kgdb_interruptible (int yes)
952 #else /* ! (CONFIG_KGDB_SER_INDEX & 2) */
954 void kgdb_serial_init (void)
956 serial_printf ("[on serial] ");
959 void putDebugChar (int c)
964 void putDebugStr (const char *str)
969 int getDebugChar (void)
971 return serial_getc ();
974 void kgdb_interruptible (int yes)
978 #endif /* (CONFIG_KGDB_SER_INDEX & 2) */
979 #endif /* CFG_CMD_KGDB */
982 #if defined(CONFIG_SERIAL_MULTI)
983 int serial0_init(void)
985 return (serial_init_dev(UART0_BASE));
988 int serial1_init(void)
990 return (serial_init_dev(UART1_BASE));
992 void serial0_setbrg (void)
994 serial_setbrg_dev(UART0_BASE);
996 void serial1_setbrg (void)
998 serial_setbrg_dev(UART1_BASE);
1001 void serial0_putc(const char c)
1003 serial_putc_dev(UART0_BASE,c);
1006 void serial1_putc(const char c)
1008 serial_putc_dev(UART1_BASE, c);
1010 void serial0_puts(const char *s)
1012 serial_puts_dev(UART0_BASE, s);
1015 void serial1_puts(const char *s)
1017 serial_puts_dev(UART1_BASE, s);
1020 int serial0_getc(void)
1022 return(serial_getc_dev(UART0_BASE));
1025 int serial1_getc(void)
1027 return(serial_getc_dev(UART1_BASE));
1029 int serial0_tstc(void)
1031 return (serial_tstc_dev(UART0_BASE));
1034 int serial1_tstc(void)
1036 return (serial_tstc_dev(UART1_BASE));
1039 struct serial_device serial0_device =
1051 struct serial_device serial1_device =
1062 #endif /* CONFIG_SERIAL_MULTI */
1064 #endif /* CONFIG_405GP || CONFIG_405CR */