3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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,
30 DECLARE_GLOBAL_DATA_PTR;
32 #if !defined(CONFIG_8xx_CONS_NONE) /* No Console at all */
34 #if defined(CONFIG_8xx_CONS_SMC1) /* Console on SMC1 */
36 #define PROFF_SMC PROFF_SMC1
37 #define CPM_CR_CH_SMC CPM_CR_CH_SMC1
39 #elif defined(CONFIG_8xx_CONS_SMC2) /* Console on SMC2 */
41 #define PROFF_SMC PROFF_SMC2
42 #define CPM_CR_CH_SMC CPM_CR_CH_SMC2
44 #endif /* CONFIG_8xx_CONS_SMCx */
46 #if defined(CONFIG_8xx_CONS_SCC1) /* Console on SCC1 */
48 #define PROFF_SCC PROFF_SCC1
49 #define CPM_CR_CH_SCC CPM_CR_CH_SCC1
51 #elif defined(CONFIG_8xx_CONS_SCC2) /* Console on SCC2 */
53 #define PROFF_SCC PROFF_SCC2
54 #define CPM_CR_CH_SCC CPM_CR_CH_SCC2
56 #elif defined(CONFIG_8xx_CONS_SCC3) /* Console on SCC3 */
58 #define PROFF_SCC PROFF_SCC3
59 #define CPM_CR_CH_SCC CPM_CR_CH_SCC3
61 #elif defined(CONFIG_8xx_CONS_SCC4) /* Console on SCC4 */
63 #define PROFF_SCC PROFF_SCC4
64 #define CPM_CR_CH_SCC CPM_CR_CH_SCC4
66 #endif /* CONFIG_8xx_CONS_SCCx */
68 static void serial_setdivisor(volatile cpm8xx_t *cp)
70 int divisor=(gd->cpu_clk + 8*gd->baudrate)/16/gd->baudrate;
72 if(divisor/16>0x1000) {
73 /* bad divisor, assume 50Mhz clock and 9600 baud */
74 divisor=(50*1000*1000 + 8*9600)/16/9600;
77 #ifdef CFG_BRGCLK_PRESCALE
78 divisor /= CFG_BRGCLK_PRESCALE;
82 cp->cp_brgc1=((divisor-1)<<1) | CPM_BRG_EN;
84 cp->cp_brgc1=((divisor/16-1)<<1) | CPM_BRG_EN | CPM_BRG_DIV16;
88 #if (defined (CONFIG_8xx_CONS_SMC1) || defined (CONFIG_8xx_CONS_SMC2))
91 * Minimal serial functions needed to use one of the SMC ports
92 * as serial console interface.
95 static void smc_setbrg (void)
97 volatile immap_t *im = (immap_t *)CFG_IMMR;
98 volatile cpm8xx_t *cp = &(im->im_cpm);
100 /* Set up the baud rate generator.
101 * See 8xx_io/commproc.c for details.
106 cp->cp_simode = 0x00000000;
108 serial_setdivisor(cp);
111 static int smc_init (void)
113 volatile immap_t *im = (immap_t *)CFG_IMMR;
115 volatile smc_uart_t *up;
116 volatile cbd_t *tbdf, *rbdf;
117 volatile cpm8xx_t *cp = &(im->im_cpm);
118 #if (!defined(CONFIG_8xx_CONS_SMC1)) && (defined(CONFIG_MPC823) || defined(CONFIG_MPC850))
119 volatile iop8xx_t *ip = (iop8xx_t *)&(im->im_ioport);
123 /* initialize pointers to SMC */
125 sp = (smc_t *) &(cp->cp_smc[SMC_INDEX]);
126 up = (smc_uart_t *) &cp->cp_dparam[PROFF_SMC];
128 /* Disable transmitter/receiver.
130 sp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN);
134 im->im_siu_conf.sc_sdcr = 1;
136 /* clear error conditions */
138 im->im_sdma.sdma_sdsr = CFG_SDSR;
140 im->im_sdma.sdma_sdsr = 0x83;
143 /* clear SDMA interrupt mask */
145 im->im_sdma.sdma_sdmr = CFG_SDMR;
147 im->im_sdma.sdma_sdmr = 0x00;
150 #if defined(CONFIG_8xx_CONS_SMC1)
151 /* Use Port B for SMC1 instead of other functions.
153 cp->cp_pbpar |= 0x000000c0;
154 cp->cp_pbdir &= ~0x000000c0;
155 cp->cp_pbodr &= ~0x000000c0;
156 #else /* CONFIG_8xx_CONS_SMC2 */
157 # if defined(CONFIG_MPC823) || defined(CONFIG_MPC850)
158 /* Use Port A for SMC2 instead of other functions.
160 ip->iop_papar |= 0x00c0;
161 ip->iop_padir &= ~0x00c0;
162 ip->iop_paodr &= ~0x00c0;
163 # else /* must be a 860 then */
164 /* Use Port B for SMC2 instead of other functions.
166 cp->cp_pbpar |= 0x00000c00;
167 cp->cp_pbdir &= ~0x00000c00;
168 cp->cp_pbodr &= ~0x00000c00;
172 #if defined(CONFIG_FADS) || defined(CONFIG_ADS)
174 #if defined(CONFIG_8xx_CONS_SMC1)
175 *((uint *) BCSR1) &= ~BCSR1_RS232EN_1;
177 *((uint *) BCSR1) &= ~BCSR1_RS232EN_2;
179 #endif /* CONFIG_FADS */
181 #if defined(CONFIG_RPXLITE) || defined(CONFIG_RPXCLASSIC)
182 /* Enable Monitor Port Transceiver */
183 *((uchar *) BCSR0) |= BCSR0_ENMONXCVR ;
184 #endif /* CONFIG_RPXLITE */
186 /* Set the physical address of the host memory buffers in
187 * the buffer descriptors.
190 #ifdef CFG_ALLOC_DPRAM
191 dpaddr = dpram_alloc_align (sizeof(cbd_t)*2 + 2, 8) ;
193 dpaddr = CPM_SERIAL_BASE ;
196 /* Allocate space for two buffer descriptors in the DP ram.
197 * For now, this address seems OK, but it may have to
198 * change with newer versions of the firmware.
199 * damm: allocating space after the two buffers for rx/tx data
202 rbdf = (cbd_t *)&cp->cp_dpmem[dpaddr];
203 rbdf->cbd_bufaddr = (uint) (rbdf+2);
206 tbdf->cbd_bufaddr = ((uint) (rbdf+2)) + 1;
209 /* Set up the uart parameters in the parameter ram.
211 up->smc_rbase = dpaddr;
212 up->smc_tbase = dpaddr+sizeof(cbd_t);
213 up->smc_rfcr = SMC_EB;
214 up->smc_tfcr = SMC_EB;
216 #if defined(CONFIG_MBX)
218 #endif /* CONFIG_MBX */
220 /* Set UART mode, 8 bit, no parity, one stop.
221 * Enable receive and transmit.
223 sp->smc_smcmr = smcr_mk_clen(9) | SMCMR_SM_UART;
225 /* Mask all interrupts and remove anything pending.
230 #ifdef CFG_SPC1920_SMC1_CLK4
231 /* clock source is PLD */
233 /* set freq to 19200 Baud */
234 *((volatile uchar *) CFG_SPC1920_PLD_BASE+6) = 0x3;
235 /* configure clk4 as input */
236 im->im_ioport.iop_pdpar |= 0x800;
237 im->im_ioport.iop_pddir &= ~0x800;
239 cp->cp_simode = 0x0000;
240 cp->cp_simode |= 0x7000;
242 /* Set up the baud rate generator */
246 /* Make the first buffer the only buffer.
248 tbdf->cbd_sc |= BD_SC_WRAP;
249 rbdf->cbd_sc |= BD_SC_EMPTY | BD_SC_WRAP;
251 /* Single character receive.
256 /* Initialize Tx/Rx parameters.
259 while (cp->cp_cpcr & CPM_CR_FLG) /* wait if cp is busy */
262 cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_SMC, CPM_CR_INIT_TRX) | CPM_CR_FLG;
264 while (cp->cp_cpcr & CPM_CR_FLG) /* wait if cp is busy */
267 /* Enable transmitter/receiver.
269 sp->smc_smcmr |= SMCMR_REN | SMCMR_TEN;
275 smc_putc(const char c)
277 volatile cbd_t *tbdf;
279 volatile smc_uart_t *up;
280 volatile immap_t *im = (immap_t *)CFG_IMMR;
281 volatile cpm8xx_t *cpmp = &(im->im_cpm);
283 #ifdef CONFIG_MODEM_SUPPORT
291 up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
293 tbdf = (cbd_t *)&cpmp->cp_dpmem[up->smc_tbase];
295 /* Wait for last character to go.
298 buf = (char *)tbdf->cbd_bufaddr;
301 tbdf->cbd_datlen = 1;
302 tbdf->cbd_sc |= BD_SC_READY;
305 while (tbdf->cbd_sc & BD_SC_READY) {
312 smc_puts (const char *s)
322 volatile cbd_t *rbdf;
323 volatile unsigned char *buf;
324 volatile smc_uart_t *up;
325 volatile immap_t *im = (immap_t *)CFG_IMMR;
326 volatile cpm8xx_t *cpmp = &(im->im_cpm);
329 up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
331 rbdf = (cbd_t *)&cpmp->cp_dpmem[up->smc_rbase];
333 /* Wait for character to show up.
335 buf = (unsigned char *)rbdf->cbd_bufaddr;
337 while (rbdf->cbd_sc & BD_SC_EMPTY)
341 rbdf->cbd_sc |= BD_SC_EMPTY;
349 volatile cbd_t *rbdf;
350 volatile smc_uart_t *up;
351 volatile immap_t *im = (immap_t *)CFG_IMMR;
352 volatile cpm8xx_t *cpmp = &(im->im_cpm);
354 up = (smc_uart_t *)&cpmp->cp_dparam[PROFF_SMC];
356 rbdf = (cbd_t *)&cpmp->cp_dpmem[up->smc_rbase];
358 return(!(rbdf->cbd_sc & BD_SC_EMPTY));
361 struct serial_device serial_smc_device =
373 #endif /* CONFIG_8xx_CONS_SMC1 || CONFIG_8xx_CONS_SMC2 */
375 #if defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) || \
376 defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
381 volatile immap_t *im = (immap_t *)CFG_IMMR;
382 volatile cpm8xx_t *cp = &(im->im_cpm);
384 /* Set up the baud rate generator.
385 * See 8xx_io/commproc.c for details.
390 cp->cp_sicr &= ~(0x000000FF << (8 * SCC_INDEX));
392 serial_setdivisor(cp);
395 static int scc_init (void)
397 volatile immap_t *im = (immap_t *)CFG_IMMR;
399 volatile scc_uart_t *up;
400 volatile cbd_t *tbdf, *rbdf;
401 volatile cpm8xx_t *cp = &(im->im_cpm);
403 #if (SCC_INDEX != 2) || !defined(CONFIG_MPC850)
404 volatile iop8xx_t *ip = (iop8xx_t *)&(im->im_ioport);
407 /* initialize pointers to SCC */
409 sp = (scc_t *) &(cp->cp_scc[SCC_INDEX]);
410 up = (scc_uart_t *) &cp->cp_dparam[PROFF_SCC];
412 #if defined(CONFIG_LWMON) && defined(CONFIG_8xx_CONS_SCC2)
413 { /* Disable Ethernet, enable Serial */
417 c &= ~0x40; /* enable COM3 */
418 c |= 0x80; /* disable Ethernet */
422 cp->cp_pbpar |= 0x2000;
423 cp->cp_pbdat |= 0x2000;
424 cp->cp_pbdir |= 0x2000;
426 #endif /* CONFIG_LWMON */
428 /* Disable transmitter/receiver.
430 sp->scc_gsmrl &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
432 #if (SCC_INDEX == 2) && defined(CONFIG_MPC850)
434 * The MPC850 has SCC3 on Port B
436 cp->cp_pbpar |= 0x06;
437 cp->cp_pbdir &= ~0x06;
438 cp->cp_pbodr &= ~0x06;
440 #elif (SCC_INDEX < 2) || !defined(CONFIG_IP860)
442 * Standard configuration for SCC's is on Part A
444 ip->iop_papar |= ((3 << (2 * SCC_INDEX)));
445 ip->iop_padir &= ~((3 << (2 * SCC_INDEX)));
446 ip->iop_paodr &= ~((3 << (2 * SCC_INDEX)));
449 * The IP860 has SCC3 and SCC4 on Port D
451 ip->iop_pdpar |= ((3 << (2 * SCC_INDEX)));
454 /* Allocate space for two buffer descriptors in the DP ram.
457 #ifdef CFG_ALLOC_DPRAM
458 dpaddr = dpram_alloc_align (sizeof(cbd_t)*2 + 2, 8) ;
460 dpaddr = CPM_SERIAL2_BASE ;
465 im->im_siu_conf.sc_sdcr = 0x0001;
467 /* Set the physical address of the host memory buffers in
468 * the buffer descriptors.
471 rbdf = (cbd_t *)&cp->cp_dpmem[dpaddr];
472 rbdf->cbd_bufaddr = (uint) (rbdf+2);
475 tbdf->cbd_bufaddr = ((uint) (rbdf+2)) + 1;
478 /* Set up the baud rate generator.
482 /* Set up the uart parameters in the parameter ram.
484 up->scc_genscc.scc_rbase = dpaddr;
485 up->scc_genscc.scc_tbase = dpaddr+sizeof(cbd_t);
487 /* Initialize Tx/Rx parameters.
489 while (cp->cp_cpcr & CPM_CR_FLG) /* wait if cp is busy */
491 cp->cp_cpcr = mk_cr_cmd(CPM_CR_CH_SCC, CPM_CR_INIT_TRX) | CPM_CR_FLG;
493 while (cp->cp_cpcr & CPM_CR_FLG) /* wait if cp is busy */
496 up->scc_genscc.scc_rfcr = SCC_EB | 0x05;
497 up->scc_genscc.scc_tfcr = SCC_EB | 0x05;
499 up->scc_genscc.scc_mrblr = 1; /* Single character receive */
500 up->scc_maxidl = 0; /* disable max idle */
501 up->scc_brkcr = 1; /* send one break character on stop TX */
509 up->scc_char1 = 0x8000;
510 up->scc_char2 = 0x8000;
511 up->scc_char3 = 0x8000;
512 up->scc_char4 = 0x8000;
513 up->scc_char5 = 0x8000;
514 up->scc_char6 = 0x8000;
515 up->scc_char7 = 0x8000;
516 up->scc_char8 = 0x8000;
517 up->scc_rccm = 0xc0ff;
519 /* Set low latency / small fifo.
521 sp->scc_gsmrh = SCC_GSMRH_RFW;
523 /* Set SCC(x) clock mode to 16x
524 * See 8xx_io/commproc.c for details.
529 /* Set UART mode, clock divider 16 on Tx and Rx
531 sp->scc_gsmrl &= ~0xF;
533 (SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
536 sp->scc_psmr |= SCU_PSMR_CL;
538 /* Mask all interrupts and remove anything pending.
541 sp->scc_scce = 0xffff;
542 sp->scc_dsr = 0x7e7e;
543 sp->scc_psmr = 0x3000;
545 /* Make the first buffer the only buffer.
547 tbdf->cbd_sc |= BD_SC_WRAP;
548 rbdf->cbd_sc |= BD_SC_EMPTY | BD_SC_WRAP;
550 /* Enable transmitter/receiver.
552 sp->scc_gsmrl |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
558 scc_putc(const char c)
560 volatile cbd_t *tbdf;
562 volatile scc_uart_t *up;
563 volatile immap_t *im = (immap_t *)CFG_IMMR;
564 volatile cpm8xx_t *cpmp = &(im->im_cpm);
566 #ifdef CONFIG_MODEM_SUPPORT
574 up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
576 tbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_tbase];
578 /* Wait for last character to go.
581 buf = (char *)tbdf->cbd_bufaddr;
584 tbdf->cbd_datlen = 1;
585 tbdf->cbd_sc |= BD_SC_READY;
588 while (tbdf->cbd_sc & BD_SC_READY) {
595 scc_puts (const char *s)
605 volatile cbd_t *rbdf;
606 volatile unsigned char *buf;
607 volatile scc_uart_t *up;
608 volatile immap_t *im = (immap_t *)CFG_IMMR;
609 volatile cpm8xx_t *cpmp = &(im->im_cpm);
612 up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
614 rbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_rbase];
616 /* Wait for character to show up.
618 buf = (unsigned char *)rbdf->cbd_bufaddr;
620 while (rbdf->cbd_sc & BD_SC_EMPTY)
624 rbdf->cbd_sc |= BD_SC_EMPTY;
632 volatile cbd_t *rbdf;
633 volatile scc_uart_t *up;
634 volatile immap_t *im = (immap_t *)CFG_IMMR;
635 volatile cpm8xx_t *cpmp = &(im->im_cpm);
637 up = (scc_uart_t *)&cpmp->cp_dparam[PROFF_SCC];
639 rbdf = (cbd_t *)&cpmp->cp_dpmem[up->scc_genscc.scc_rbase];
641 return(!(rbdf->cbd_sc & BD_SC_EMPTY));
644 struct serial_device serial_scc_device =
656 #endif /* CONFIG_8xx_CONS_SCCx */
658 #ifdef CONFIG_MODEM_SUPPORT
659 void disable_putc(void)
664 void enable_putc(void)
670 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
673 kgdb_serial_init(void)
677 if (strcmp(default_serial_console()->ctlr, "SMC") == 0)
679 #if defined(CONFIG_8xx_CONS_SMC1)
681 #elif defined(CONFIG_8xx_CONS_SMC2)
685 else if (strcmp(default_serial_console()->ctlr, "SMC") == 0)
687 #if defined(CONFIG_8xx_CONS_SCC1)
689 #elif defined(CONFIG_8xx_CONS_SCC2)
691 #elif defined(CONFIG_8xx_CONS_SCC3)
693 #elif defined(CONFIG_8xx_CONS_SCC4)
700 serial_printf("[on %s%d] ", default_serial_console()->ctlr, i);
711 putDebugStr (const char *str)
719 return serial_getc();
723 kgdb_interruptible (int yes)
727 #endif /* CFG_CMD_KGDB */
729 #endif /* CONFIG_8xx_CONS_NONE */