]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc8xx/serial.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc8xx / serial.c
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <commproc.h>
10 #include <command.h>
11 #include <serial.h>
12 #include <watchdog.h>
13 #include <linux/compiler.h>
14
15 DECLARE_GLOBAL_DATA_PTR;
16
17 #if !defined(CONFIG_8xx_CONS_NONE)      /* No Console at all */
18
19 #if defined(CONFIG_8xx_CONS_SMC1)       /* Console on SMC1 */
20 #define SMC_INDEX       0
21 #define PROFF_SMC       PROFF_SMC1
22 #define CPM_CR_CH_SMC   CPM_CR_CH_SMC1
23
24 #elif defined(CONFIG_8xx_CONS_SMC2)     /* Console on SMC2 */
25 #define SMC_INDEX       1
26 #define PROFF_SMC       PROFF_SMC2
27 #define CPM_CR_CH_SMC   CPM_CR_CH_SMC2
28
29 #endif /* CONFIG_8xx_CONS_SMCx */
30
31 #if defined(CONFIG_8xx_CONS_SCC1)       /* Console on SCC1 */
32 #define SCC_INDEX       0
33 #define PROFF_SCC       PROFF_SCC1
34 #define CPM_CR_CH_SCC   CPM_CR_CH_SCC1
35
36 #elif defined(CONFIG_8xx_CONS_SCC2)     /* Console on SCC2 */
37 #define SCC_INDEX       1
38 #define PROFF_SCC       PROFF_SCC2
39 #define CPM_CR_CH_SCC   CPM_CR_CH_SCC2
40
41 #elif defined(CONFIG_8xx_CONS_SCC3)     /* Console on SCC3 */
42 #define SCC_INDEX       2
43 #define PROFF_SCC       PROFF_SCC3
44 #define CPM_CR_CH_SCC   CPM_CR_CH_SCC3
45
46 #elif defined(CONFIG_8xx_CONS_SCC4)     /* Console on SCC4 */
47 #define SCC_INDEX       3
48 #define PROFF_SCC       PROFF_SCC4
49 #define CPM_CR_CH_SCC   CPM_CR_CH_SCC4
50
51 #endif /* CONFIG_8xx_CONS_SCCx */
52
53 #if !defined(CONFIG_SYS_SMC_RXBUFLEN)
54 #define CONFIG_SYS_SMC_RXBUFLEN 1
55 #define CONFIG_SYS_MAXIDLE      0
56 #else
57 #if !defined(CONFIG_SYS_MAXIDLE)
58 #error "you must define CONFIG_SYS_MAXIDLE"
59 #endif
60 #endif
61
62 typedef volatile struct serialbuffer {
63         cbd_t   rxbd;           /* Rx BD */
64         cbd_t   txbd;           /* Tx BD */
65         uint    rxindex;        /* index for next character to read */
66         volatile uchar  rxbuf[CONFIG_SYS_SMC_RXBUFLEN];/* rx buffers */
67         volatile uchar  txbuf;  /* tx buffers */
68 } serialbuffer_t;
69
70 static void serial_setdivisor(volatile cpm8xx_t *cp)
71 {
72         int divisor=(gd->cpu_clk + 8*gd->baudrate)/16/gd->baudrate;
73
74         if(divisor/16>0x1000) {
75                 /* bad divisor, assume 50MHz clock and 9600 baud */
76                 divisor=(50*1000*1000 + 8*9600)/16/9600;
77         }
78
79 #ifdef CONFIG_SYS_BRGCLK_PRESCALE
80         divisor /= CONFIG_SYS_BRGCLK_PRESCALE;
81 #endif
82
83         if(divisor<=0x1000) {
84                 cp->cp_brgc1=((divisor-1)<<1) | CPM_BRG_EN;
85         } else {
86                 cp->cp_brgc1=((divisor/16-1)<<1) | CPM_BRG_EN | CPM_BRG_DIV16;
87         }
88 }
89
90 #if (defined (CONFIG_8xx_CONS_SMC1) || defined (CONFIG_8xx_CONS_SMC2))
91
92 /*
93  * Minimal serial functions needed to use one of the SMC ports
94  * as serial console interface.
95  */
96
97 static void smc_setbrg (void)
98 {
99         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
100         volatile cpm8xx_t *cp = &(im->im_cpm);
101
102         /* Set up the baud rate generator.
103          * See 8xx_io/commproc.c for details.
104          *
105          * Wire BRG1 to SMCx
106          */
107
108         cp->cp_simode = 0x00000000;
109
110         serial_setdivisor(cp);
111 }
112
113 static int smc_init (void)
114 {
115         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
116         volatile smc_t *sp;
117         volatile smc_uart_t *up;
118         volatile cpm8xx_t *cp = &(im->im_cpm);
119 #if (!defined(CONFIG_8xx_CONS_SMC1)) && (defined(CONFIG_MPC823) || defined(CONFIG_MPC850))
120         volatile iop8xx_t *ip = (iop8xx_t *)&(im->im_ioport);
121 #endif
122         uint    dpaddr;
123         volatile serialbuffer_t *rtx;
124
125         /* initialize pointers to SMC */
126
127         sp = (smc_t *) &(cp->cp_smc[SMC_INDEX]);
128         up = (smc_uart_t *) &cp->cp_dparam[PROFF_SMC];
129 #ifdef CONFIG_SYS_SMC_UCODE_PATCH
130         up = (smc_uart_t *) &cp->cp_dpmem[up->smc_rpbase];
131 #else
132         /* Disable relocation */
133         up->smc_rpbase = 0;
134 #endif
135
136         /* Disable transmitter/receiver. */
137         sp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN);
138
139         /* Enable SDMA. */
140         im->im_siu_conf.sc_sdcr = 1;
141
142         /* clear error conditions */
143 #ifdef  CONFIG_SYS_SDSR
144         im->im_sdma.sdma_sdsr = CONFIG_SYS_SDSR;
145 #else
146         im->im_sdma.sdma_sdsr = 0x83;
147 #endif
148
149         /* clear SDMA interrupt mask */
150 #ifdef  CONFIG_SYS_SDMR
151         im->im_sdma.sdma_sdmr = CONFIG_SYS_SDMR;
152 #else
153         im->im_sdma.sdma_sdmr = 0x00;
154 #endif
155
156 #if defined(CONFIG_8xx_CONS_SMC1)
157         /* Use Port B for SMC1 instead of other functions. */
158         cp->cp_pbpar |=  0x000000c0;
159         cp->cp_pbdir &= ~0x000000c0;
160         cp->cp_pbodr &= ~0x000000c0;
161 #else   /* CONFIG_8xx_CONS_SMC2 */
162 # if defined(CONFIG_MPC823) || defined(CONFIG_MPC850)
163         /* Use Port A for SMC2 instead of other functions. */
164         ip->iop_papar |=  0x00c0;
165         ip->iop_padir &= ~0x00c0;
166         ip->iop_paodr &= ~0x00c0;
167 # else  /* must be a 860 then */
168         /* Use Port B for SMC2 instead of other functions.
169          */
170         cp->cp_pbpar |=  0x00000c00;
171         cp->cp_pbdir &= ~0x00000c00;
172         cp->cp_pbodr &= ~0x00000c00;
173 # endif
174 #endif
175
176 #if defined(CONFIG_FADS)
177         /* Enable RS232 */
178 #if defined(CONFIG_8xx_CONS_SMC1)
179         *((uint *) BCSR1) &= ~BCSR1_RS232EN_1;
180 #else
181         *((uint *) BCSR1) &= ~BCSR1_RS232EN_2;
182 #endif
183 #endif  /* CONFIG_FADS */
184
185 #if defined(CONFIG_RPXLITE)
186         /* Enable Monitor Port Transceiver */
187         *((uchar *) BCSR0) |= BCSR0_ENMONXCVR ;
188 #endif /* CONFIG_RPXLITE */
189
190         /* Set the physical address of the host memory buffers in
191          * the buffer descriptors.
192          */
193
194 #ifdef CONFIG_SYS_ALLOC_DPRAM
195         /* allocate
196          * size of struct serialbuffer with bd rx/tx, buffer rx/tx and rx index
197          */
198         dpaddr = dpram_alloc_align((sizeof(serialbuffer_t)), 8);
199 #else
200         dpaddr = CPM_SERIAL_BASE ;
201 #endif
202
203         rtx = (serialbuffer_t *)&cp->cp_dpmem[dpaddr];
204         /* Allocate space for two buffer descriptors in the DP ram.
205          * For now, this address seems OK, but it may have to
206          * change with newer versions of the firmware.
207          * damm: allocating space after the two buffers for rx/tx data
208          */
209
210         rtx->rxbd.cbd_bufaddr = (uint) &rtx->rxbuf;
211         rtx->rxbd.cbd_sc      = 0;
212
213         rtx->txbd.cbd_bufaddr = (uint) &rtx->txbuf;
214         rtx->txbd.cbd_sc      = 0;
215
216         /* Set up the uart parameters in the parameter ram. */
217         up->smc_rbase = dpaddr;
218         up->smc_tbase = dpaddr+sizeof(cbd_t);
219         up->smc_rfcr = SMC_EB;
220         up->smc_tfcr = SMC_EB;
221 #if defined (CONFIG_SYS_SMC_UCODE_PATCH)
222         up->smc_rbptr = up->smc_rbase;
223         up->smc_tbptr = up->smc_tbase;
224         up->smc_rstate = 0;
225         up->smc_tstate = 0;
226 #endif
227
228         /* Set UART mode, 8 bit, no parity, one stop.
229          * Enable receive and transmit.
230          */
231         sp->smc_smcmr = smcr_mk_clen(9) |  SMCMR_SM_UART;
232
233         /* Mask all interrupts and remove anything pending.
234         */
235         sp->smc_smcm = 0;
236         sp->smc_smce = 0xff;
237
238 #ifdef CONFIG_SYS_SPC1920_SMC1_CLK4
239         /* clock source is PLD */
240
241         /* set freq to 19200 Baud */
242         *((volatile uchar *) CONFIG_SYS_SPC1920_PLD_BASE+6) = 0x3;
243         /* configure clk4 as input */
244         im->im_ioport.iop_pdpar |= 0x800;
245         im->im_ioport.iop_pddir &= ~0x800;
246
247         cp->cp_simode = ((cp->cp_simode & ~0xf000) | 0x7000);
248 #else
249         /* Set up the baud rate generator */
250         smc_setbrg ();
251 #endif
252
253         /* Make the first buffer the only buffer. */
254         rtx->txbd.cbd_sc |= BD_SC_WRAP;
255         rtx->rxbd.cbd_sc |= BD_SC_EMPTY | BD_SC_WRAP;
256
257         /* single/multi character receive. */
258         up->smc_mrblr = CONFIG_SYS_SMC_RXBUFLEN;
259         up->smc_maxidl = CONFIG_SYS_MAXIDLE;
260         rtx->rxindex = 0;
261
262         /* Initialize Tx/Rx parameters. */
263         while (cp->cp_cpcr & CPM_CR_FLG)  /* wait if cp is busy */
264           ;
265
266         cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_SMC, CPM_CR_INIT_TRX) | CPM_CR_FLG;
267
268         while (cp->cp_cpcr & CPM_CR_FLG)  /* wait if cp is busy */
269           ;
270
271         /* Enable transmitter/receiver. */
272         sp->smc_smcmr |= SMCMR_REN | SMCMR_TEN;
273
274         return (0);
275 }
276
277 static void
278 smc_putc(const char c)
279 {
280         volatile smc_uart_t     *up;
281         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
282         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
283         volatile serialbuffer_t *rtx;
284
285 #ifdef CONFIG_MODEM_SUPPORT
286         if (gd->be_quiet)
287                 return;
288 #endif
289
290         if (c == '\n')
291                 smc_putc ('\r');
292
293         up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
294 #ifdef CONFIG_SYS_SMC_UCODE_PATCH
295         up = (smc_uart_t *) &cpmp->cp_dpmem[up->smc_rpbase];
296 #endif
297
298         rtx = (serialbuffer_t *)&cpmp->cp_dpmem[up->smc_rbase];
299
300         /* Wait for last character to go. */
301         rtx->txbuf = c;
302         rtx->txbd.cbd_datlen = 1;
303         rtx->txbd.cbd_sc |= BD_SC_READY;
304         __asm__("eieio");
305
306         while (rtx->txbd.cbd_sc & BD_SC_READY) {
307                 WATCHDOG_RESET ();
308                 __asm__("eieio");
309         }
310 }
311
312 static void
313 smc_puts (const char *s)
314 {
315         while (*s) {
316                 smc_putc (*s++);
317         }
318 }
319
320 static int
321 smc_getc(void)
322 {
323         volatile smc_uart_t     *up;
324         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
325         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
326         volatile serialbuffer_t *rtx;
327         unsigned char  c;
328
329         up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
330 #ifdef CONFIG_SYS_SMC_UCODE_PATCH
331         up = (smc_uart_t *) &cpmp->cp_dpmem[up->smc_rpbase];
332 #endif
333         rtx = (serialbuffer_t *)&cpmp->cp_dpmem[up->smc_rbase];
334
335         /* Wait for character to show up. */
336         while (rtx->rxbd.cbd_sc & BD_SC_EMPTY)
337                 WATCHDOG_RESET ();
338
339         /* the characters are read one by one,
340          * use the rxindex to know the next char to deliver
341          */
342         c = *(unsigned char *) (rtx->rxbd.cbd_bufaddr+rtx->rxindex);
343         rtx->rxindex++;
344
345         /* check if all char are readout, then make prepare for next receive */
346         if (rtx->rxindex >= rtx->rxbd.cbd_datlen) {
347                 rtx->rxindex = 0;
348                 rtx->rxbd.cbd_sc |= BD_SC_EMPTY;
349         }
350         return(c);
351 }
352
353 static int
354 smc_tstc(void)
355 {
356         volatile smc_uart_t     *up;
357         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
358         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
359         volatile serialbuffer_t *rtx;
360
361         up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
362 #ifdef CONFIG_SYS_SMC_UCODE_PATCH
363         up = (smc_uart_t *) &cpmp->cp_dpmem[up->smc_rpbase];
364 #endif
365
366         rtx = (serialbuffer_t *)&cpmp->cp_dpmem[up->smc_rbase];
367
368         return !(rtx->rxbd.cbd_sc & BD_SC_EMPTY);
369 }
370
371 struct serial_device serial_smc_device =
372 {
373         .name   = "serial_smc",
374         .start  = smc_init,
375         .stop   = NULL,
376         .setbrg = smc_setbrg,
377         .getc   = smc_getc,
378         .tstc   = smc_tstc,
379         .putc   = smc_putc,
380         .puts   = smc_puts,
381 };
382
383 #endif /* CONFIG_8xx_CONS_SMC1 || CONFIG_8xx_CONS_SMC2 */
384
385 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
386     defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
387
388 static void
389 scc_setbrg (void)
390 {
391         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
392         volatile cpm8xx_t *cp = &(im->im_cpm);
393
394         /* Set up the baud rate generator.
395          * See 8xx_io/commproc.c for details.
396          *
397          * Wire BRG1 to SCCx
398          */
399
400         cp->cp_sicr &= ~(0x000000FF << (8 * SCC_INDEX));
401
402         serial_setdivisor(cp);
403 }
404
405 static int scc_init (void)
406 {
407         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
408         volatile scc_t *sp;
409         volatile scc_uart_t *up;
410         volatile cbd_t *tbdf, *rbdf;
411         volatile cpm8xx_t *cp = &(im->im_cpm);
412         uint     dpaddr;
413 #if (SCC_INDEX != 2) || !defined(CONFIG_MPC850)
414         volatile iop8xx_t *ip = (iop8xx_t *)&(im->im_ioport);
415 #endif
416
417         /* initialize pointers to SCC */
418
419         sp = (scc_t *) &(cp->cp_scc[SCC_INDEX]);
420         up = (scc_uart_t *) &cp->cp_dparam[PROFF_SCC];
421
422 #if defined(CONFIG_LWMON) && defined(CONFIG_8xx_CONS_SCC2)
423     {   /* Disable Ethernet, enable Serial */
424         uchar c;
425
426         c = pic_read  (0x61);
427         c &= ~0x40;     /* enable COM3 */
428         c |=  0x80;     /* disable Ethernet */
429         pic_write (0x61, c);
430
431         /* enable RTS2 */
432         cp->cp_pbpar |=  0x2000;
433         cp->cp_pbdat |=  0x2000;
434         cp->cp_pbdir |=  0x2000;
435     }
436 #endif  /* CONFIG_LWMON */
437
438         /* Disable transmitter/receiver. */
439         sp->scc_gsmrl &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
440
441 #if (SCC_INDEX == 2) && defined(CONFIG_MPC850)
442         /*
443          * The MPC850 has SCC3 on Port B
444          */
445         cp->cp_pbpar |=  0x06;
446         cp->cp_pbdir &= ~0x06;
447         cp->cp_pbodr &= ~0x06;
448
449 #elif (SCC_INDEX < 2) || !defined(CONFIG_IP860)
450         /*
451          * Standard configuration for SCC's is on Part A
452          */
453         ip->iop_papar |=  ((3 << (2 * SCC_INDEX)));
454         ip->iop_padir &= ~((3 << (2 * SCC_INDEX)));
455         ip->iop_paodr &= ~((3 << (2 * SCC_INDEX)));
456 #else
457         /*
458          * The IP860 has SCC3 and SCC4 on Port D
459          */
460         ip->iop_pdpar |=  ((3 << (2 * SCC_INDEX)));
461 #endif
462
463         /* Allocate space for two buffer descriptors in the DP ram. */
464
465 #ifdef CONFIG_SYS_ALLOC_DPRAM
466         dpaddr = dpram_alloc_align (sizeof(cbd_t)*2 + 2, 8) ;
467 #else
468         dpaddr = CPM_SERIAL2_BASE ;
469 #endif
470
471         /* Enable SDMA. */
472         im->im_siu_conf.sc_sdcr = 0x0001;
473
474         /* Set the physical address of the host memory buffers in
475          * the buffer descriptors.
476          */
477
478         rbdf = (cbd_t *)&cp->cp_dpmem[dpaddr];
479         rbdf->cbd_bufaddr = (uint) (rbdf+2);
480         rbdf->cbd_sc = 0;
481         tbdf = rbdf + 1;
482         tbdf->cbd_bufaddr = ((uint) (rbdf+2)) + 1;
483         tbdf->cbd_sc = 0;
484
485         /* Set up the baud rate generator. */
486         scc_setbrg ();
487
488         /* Set up the uart parameters in the parameter ram. */
489         up->scc_genscc.scc_rbase = dpaddr;
490         up->scc_genscc.scc_tbase = dpaddr+sizeof(cbd_t);
491
492         /* Initialize Tx/Rx parameters. */
493         while (cp->cp_cpcr & CPM_CR_FLG)  /* wait if cp is busy */
494                 ;
495         cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_SCC, CPM_CR_INIT_TRX) | CPM_CR_FLG;
496
497         while (cp->cp_cpcr & CPM_CR_FLG)  /* wait if cp is busy */
498                 ;
499
500         up->scc_genscc.scc_rfcr  = SCC_EB | 0x05;
501         up->scc_genscc.scc_tfcr  = SCC_EB | 0x05;
502
503         up->scc_genscc.scc_mrblr = 1;   /* Single character receive */
504         up->scc_maxidl = 0;             /* disable max idle */
505         up->scc_brkcr  = 1;             /* send one break character on stop TX */
506         up->scc_parec  = 0;
507         up->scc_frmec  = 0;
508         up->scc_nosec  = 0;
509         up->scc_brkec  = 0;
510         up->scc_uaddr1 = 0;
511         up->scc_uaddr2 = 0;
512         up->scc_toseq  = 0;
513         up->scc_char1  = 0x8000;
514         up->scc_char2  = 0x8000;
515         up->scc_char3  = 0x8000;
516         up->scc_char4  = 0x8000;
517         up->scc_char5  = 0x8000;
518         up->scc_char6  = 0x8000;
519         up->scc_char7  = 0x8000;
520         up->scc_char8  = 0x8000;
521         up->scc_rccm   = 0xc0ff;
522
523         /* Set low latency / small fifo. */
524         sp->scc_gsmrh = SCC_GSMRH_RFW;
525
526         /* Set SCC(x) clock mode to 16x
527          * See 8xx_io/commproc.c for details.
528          *
529          * Wire BRG1 to SCCn
530          */
531
532         /* Set UART mode, clock divider 16 on Tx and Rx */
533         sp->scc_gsmrl &= ~0xF;
534         sp->scc_gsmrl |=
535                 (SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
536
537         sp->scc_psmr  = 0;
538         sp->scc_psmr  |= SCU_PSMR_CL;
539
540         /* Mask all interrupts and remove anything pending. */
541         sp->scc_sccm = 0;
542         sp->scc_scce = 0xffff;
543         sp->scc_dsr  = 0x7e7e;
544         sp->scc_psmr = 0x3000;
545
546         /* Make the first buffer the only buffer. */
547         tbdf->cbd_sc |= BD_SC_WRAP;
548         rbdf->cbd_sc |= BD_SC_EMPTY | BD_SC_WRAP;
549
550         /* Enable transmitter/receiver. */
551         sp->scc_gsmrl |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
552
553         return (0);
554 }
555
556 static void
557 scc_putc(const char c)
558 {
559         volatile cbd_t          *tbdf;
560         volatile char           *buf;
561         volatile scc_uart_t     *up;
562         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
563         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
564
565 #ifdef CONFIG_MODEM_SUPPORT
566         if (gd->be_quiet)
567                 return;
568 #endif
569
570         if (c == '\n')
571                 scc_putc ('\r');
572
573         up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
574
575         tbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_tbase];
576
577         /* Wait for last character to go. */
578
579         buf = (char *)tbdf->cbd_bufaddr;
580
581         *buf = c;
582         tbdf->cbd_datlen = 1;
583         tbdf->cbd_sc |= BD_SC_READY;
584         __asm__("eieio");
585
586         while (tbdf->cbd_sc & BD_SC_READY) {
587                 __asm__("eieio");
588                 WATCHDOG_RESET ();
589         }
590 }
591
592 static void
593 scc_puts (const char *s)
594 {
595         while (*s) {
596                 scc_putc (*s++);
597         }
598 }
599
600 static int
601 scc_getc(void)
602 {
603         volatile cbd_t          *rbdf;
604         volatile unsigned char  *buf;
605         volatile scc_uart_t     *up;
606         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
607         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
608         unsigned char           c;
609
610         up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
611
612         rbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_rbase];
613
614         /* Wait for character to show up. */
615         buf = (unsigned char *)rbdf->cbd_bufaddr;
616
617         while (rbdf->cbd_sc & BD_SC_EMPTY)
618                 WATCHDOG_RESET ();
619
620         c = *buf;
621         rbdf->cbd_sc |= BD_SC_EMPTY;
622
623         return(c);
624 }
625
626 static int
627 scc_tstc(void)
628 {
629         volatile cbd_t          *rbdf;
630         volatile scc_uart_t     *up;
631         volatile immap_t        *im = (immap_t *)CONFIG_SYS_IMMR;
632         volatile cpm8xx_t       *cpmp = &(im->im_cpm);
633
634         up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
635
636         rbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_rbase];
637
638         return(!(rbdf->cbd_sc & BD_SC_EMPTY));
639 }
640
641 struct serial_device serial_scc_device =
642 {
643         .name   = "serial_scc",
644         .start  = scc_init,
645         .stop   = NULL,
646         .setbrg = scc_setbrg,
647         .getc   = scc_getc,
648         .tstc   = scc_tstc,
649         .putc   = scc_putc,
650         .puts   = scc_puts,
651 };
652
653 #endif  /* CONFIG_8xx_CONS_SCCx */
654
655 __weak struct serial_device *default_serial_console(void)
656 {
657 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
658         return &serial_smc_device;
659 #else
660         return &serial_scc_device;
661 #endif
662 }
663
664 void mpc8xx_serial_initialize(void)
665 {
666 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2)
667         serial_register(&serial_smc_device);
668 #endif
669 #if     defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
670         defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
671         serial_register(&serial_scc_device);
672 #endif
673 }
674
675 #ifdef CONFIG_MODEM_SUPPORT
676 void disable_putc(void)
677 {
678         gd->be_quiet = 1;
679 }
680
681 void enable_putc(void)
682 {
683         gd->be_quiet = 0;
684 }
685 #endif
686
687 #if defined(CONFIG_CMD_KGDB)
688
689 void
690 kgdb_serial_init(void)
691 {
692         int i = -1;
693
694         if (strcmp(default_serial_console()->name, "serial_smc") == 0)
695         {
696 #if defined(CONFIG_8xx_CONS_SMC1)
697                 i = 1;
698 #elif defined(CONFIG_8xx_CONS_SMC2)
699                 i = 2;
700 #endif
701         }
702         else if (strcmp(default_serial_console()->name, "serial_scc") == 0)
703         {
704 #if defined(CONFIG_8xx_CONS_SCC1)
705                 i = 1;
706 #elif defined(CONFIG_8xx_CONS_SCC2)
707                 i = 2;
708 #elif defined(CONFIG_8xx_CONS_SCC3)
709                 i = 3;
710 #elif defined(CONFIG_8xx_CONS_SCC4)
711                 i = 4;
712 #endif
713         }
714
715         if (i >= 0)
716         {
717                 serial_printf("[on %s%d] ", default_serial_console()->name, i);
718         }
719 }
720
721 void
722 putDebugChar (int c)
723 {
724         serial_putc (c);
725 }
726
727 void
728 putDebugStr (const char *str)
729 {
730         serial_puts (str);
731 }
732
733 int
734 getDebugChar (void)
735 {
736         return serial_getc();
737 }
738
739 void
740 kgdb_interruptible (int yes)
741 {
742         return;
743 }
744 #endif
745
746 #endif  /* CONFIG_8xx_CONS_NONE */