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,
29 * The Serial Management Controllers (SMC) and the Serial Communication
30 * Controllers (SCC) listed in ctlr_list array below are tested in
31 * the loopback UART mode.
32 * The controllers are configured accordingly and several characters
33 * are transmitted. The configurable test parameters are:
34 * MIN_PACKET_LENGTH - minimum size of packet to transmit
35 * MAX_PACKET_LENGTH - maximum size of packet to transmit
36 * TEST_NUM - number of tests
42 #if CONFIG_POST & CFG_POST_UART
43 #if defined(CONFIG_8xx)
45 #elif defined(CONFIG_MPC8260)
46 #include <asm/cpm_8260.h>
48 #error "Apparently a bad configuration, please fix."
53 DECLARE_GLOBAL_DATA_PTR
;
58 /* The list of controllers to test */
59 #if defined(CONFIG_MPC823)
60 static int ctlr_list
[][2] =
61 { {CTLR_SMC
, 0}, {CTLR_SMC
, 1}, {CTLR_SCC
, 1} };
63 static int ctlr_list
[][2] = { };
66 #define CTRL_LIST_SIZE (sizeof(ctlr_list) / sizeof(ctlr_list[0]))
69 void (*init
) (int index
);
70 void (*halt
) (int index
);
71 void (*putc
) (int index
, const char c
);
72 int (*getc
) (int index
);
75 static char *ctlr_name
[2] = { "SMC", "SCC" };
77 static int proff_smc
[] = { PROFF_SMC1
, PROFF_SMC2
};
78 static int proff_scc
[] =
79 { PROFF_SCC1
, PROFF_SCC2
, PROFF_SCC3
, PROFF_SCC4
};
85 static void smc_init (int smc_index
)
87 static int cpm_cr_ch
[] = { CPM_CR_CH_SMC1
, CPM_CR_CH_SMC2
};
89 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
91 volatile smc_uart_t
*up
;
92 volatile cbd_t
*tbdf
, *rbdf
;
93 volatile cpm8xx_t
*cp
= &(im
->im_cpm
);
96 /* initialize pointers to SMC */
98 sp
= (smc_t
*) & (cp
->cp_smc
[smc_index
]);
99 up
= (smc_uart_t
*) & cp
->cp_dparam
[proff_smc
[smc_index
]];
101 /* Disable transmitter/receiver.
103 sp
->smc_smcmr
&= ~(SMCMR_REN
| SMCMR_TEN
);
107 im
->im_siu_conf
.sc_sdcr
= 1;
109 /* clear error conditions */
111 im
->im_sdma
.sdma_sdsr
= CFG_SDSR
;
113 im
->im_sdma
.sdma_sdsr
= 0x83;
116 /* clear SDMA interrupt mask */
118 im
->im_sdma
.sdma_sdmr
= CFG_SDMR
;
120 im
->im_sdma
.sdma_sdmr
= 0x00;
123 #if defined(CONFIG_FADS)
126 ~(smc_index
== 1 ? BCSR1_RS232EN_1
: BCSR1_RS232EN_2
);
129 #if defined(CONFIG_RPXLITE) || defined(CONFIG_RPXCLASSIC)
130 /* Enable Monitor Port Transceiver */
131 *((uchar
*) BCSR0
) |= BCSR0_ENMONXCVR
;
134 /* Set the physical address of the host memory buffers in
135 * the buffer descriptors.
138 #ifdef CFG_ALLOC_DPRAM
139 dpaddr
= dpram_alloc_align (sizeof (cbd_t
) * 2 + 2, 8);
141 dpaddr
= CPM_POST_BASE
;
144 /* Allocate space for two buffer descriptors in the DP ram.
145 * For now, this address seems OK, but it may have to
146 * change with newer versions of the firmware.
147 * damm: allocating space after the two buffers for rx/tx data
150 rbdf
= (cbd_t
*) & cp
->cp_dpmem
[dpaddr
];
151 rbdf
->cbd_bufaddr
= (uint
) (rbdf
+ 2);
154 tbdf
->cbd_bufaddr
= ((uint
) (rbdf
+ 2)) + 1;
157 /* Set up the uart parameters in the parameter ram.
159 up
->smc_rbase
= dpaddr
;
160 up
->smc_tbase
= dpaddr
+ sizeof (cbd_t
);
161 up
->smc_rfcr
= SMC_EB
;
162 up
->smc_tfcr
= SMC_EB
;
164 #if defined(CONFIG_MBX)
165 board_serial_init ();
168 /* Set UART mode, 8 bit, no parity, one stop.
169 * Enable receive and transmit.
170 * Set local loopback mode.
172 sp
->smc_smcmr
= smcr_mk_clen (9) | SMCMR_SM_UART
| (ushort
) 0x0004;
174 /* Mask all interrupts and remove anything pending.
179 /* Set up the baud rate generator.
181 cp
->cp_simode
= 0x00000000;
184 (((gd
->cpu_clk
/ 16 / gd
->baudrate
) -
185 1) << 1) | CPM_BRG_EN
;
187 /* Make the first buffer the only buffer.
189 tbdf
->cbd_sc
|= BD_SC_WRAP
;
190 rbdf
->cbd_sc
|= BD_SC_EMPTY
| BD_SC_WRAP
;
192 /* Single character receive.
197 /* Initialize Tx/Rx parameters.
200 while (cp
->cp_cpcr
& CPM_CR_FLG
) /* wait if cp is busy */
204 mk_cr_cmd (cpm_cr_ch
[smc_index
], CPM_CR_INIT_TRX
) | CPM_CR_FLG
;
206 while (cp
->cp_cpcr
& CPM_CR_FLG
) /* wait if cp is busy */
209 /* Enable transmitter/receiver.
211 sp
->smc_smcmr
|= SMCMR_REN
| SMCMR_TEN
;
214 static void smc_halt(int smc_index
)
218 static void smc_putc (int smc_index
, const char c
)
220 volatile cbd_t
*tbdf
;
222 volatile smc_uart_t
*up
;
223 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
224 volatile cpm8xx_t
*cpmp
= &(im
->im_cpm
);
226 up
= (smc_uart_t
*) & cpmp
->cp_dparam
[proff_smc
[smc_index
]];
228 tbdf
= (cbd_t
*) & cpmp
->cp_dpmem
[up
->smc_tbase
];
230 /* Wait for last character to go.
233 buf
= (char *) tbdf
->cbd_bufaddr
;
236 while (tbdf
->cbd_sc
& BD_SC_READY
)
241 tbdf
->cbd_datlen
= 1;
242 tbdf
->cbd_sc
|= BD_SC_READY
;
245 while (tbdf
->cbd_sc
& BD_SC_READY
)
250 static int smc_getc (int smc_index
)
252 volatile cbd_t
*rbdf
;
253 volatile unsigned char *buf
;
254 volatile smc_uart_t
*up
;
255 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
256 volatile cpm8xx_t
*cpmp
= &(im
->im_cpm
);
260 up
= (smc_uart_t
*) & cpmp
->cp_dparam
[proff_smc
[smc_index
]];
262 rbdf
= (cbd_t
*) & cpmp
->cp_dpmem
[up
->smc_rbase
];
264 /* Wait for character to show up.
266 buf
= (unsigned char *) rbdf
->cbd_bufaddr
;
268 while (rbdf
->cbd_sc
& BD_SC_EMPTY
);
270 for (i
= 100; i
> 0; i
--) {
271 if (!(rbdf
->cbd_sc
& BD_SC_EMPTY
))
280 rbdf
->cbd_sc
|= BD_SC_EMPTY
;
289 static void scc_init (int scc_index
)
291 static int cpm_cr_ch
[] = {
298 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
300 volatile scc_uart_t
*up
;
301 volatile cbd_t
*tbdf
, *rbdf
;
302 volatile cpm8xx_t
*cp
= &(im
->im_cpm
);
305 /* initialize pointers to SCC */
307 sp
= (scc_t
*) & (cp
->cp_scc
[scc_index
]);
308 up
= (scc_uart_t
*) & cp
->cp_dparam
[proff_scc
[scc_index
]];
310 /* Disable transmitter/receiver.
312 sp
->scc_gsmrl
&= ~(SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
315 /* Allocate space for two buffer descriptors in the DP ram.
318 #ifdef CFG_ALLOC_DPRAM
319 dpaddr
= dpram_alloc_align (sizeof (cbd_t
) * 2 + 2, 8);
321 dpaddr
= CPM_POST_BASE
;
326 im
->im_siu_conf
.sc_sdcr
= 0x0001;
328 /* Set the physical address of the host memory buffers in
329 * the buffer descriptors.
332 rbdf
= (cbd_t
*) & cp
->cp_dpmem
[dpaddr
];
333 rbdf
->cbd_bufaddr
= (uint
) (rbdf
+ 2);
336 tbdf
->cbd_bufaddr
= ((uint
) (rbdf
+ 2)) + 1;
339 /* Set up the baud rate generator.
341 cp
->cp_sicr
&= ~(0x000000FF << (8 * scc_index
));
342 /* no |= needed, since BRG1 is 000 */
345 (((gd
->cpu_clk
/ 16 / gd
->baudrate
) -
346 1) << 1) | CPM_BRG_EN
;
348 /* Set up the uart parameters in the parameter ram.
350 up
->scc_genscc
.scc_rbase
= dpaddr
;
351 up
->scc_genscc
.scc_tbase
= dpaddr
+ sizeof (cbd_t
);
353 /* Initialize Tx/Rx parameters.
355 while (cp
->cp_cpcr
& CPM_CR_FLG
) /* wait if cp is busy */
358 mk_cr_cmd (cpm_cr_ch
[scc_index
], CPM_CR_INIT_TRX
) | CPM_CR_FLG
;
360 while (cp
->cp_cpcr
& CPM_CR_FLG
) /* wait if cp is busy */
363 up
->scc_genscc
.scc_rfcr
= SCC_EB
| 0x05;
364 up
->scc_genscc
.scc_tfcr
= SCC_EB
| 0x05;
366 up
->scc_genscc
.scc_mrblr
= 1; /* Single character receive */
367 up
->scc_maxidl
= 0; /* disable max idle */
368 up
->scc_brkcr
= 1; /* send one break character on stop TX */
376 up
->scc_char1
= 0x8000;
377 up
->scc_char2
= 0x8000;
378 up
->scc_char3
= 0x8000;
379 up
->scc_char4
= 0x8000;
380 up
->scc_char5
= 0x8000;
381 up
->scc_char6
= 0x8000;
382 up
->scc_char7
= 0x8000;
383 up
->scc_char8
= 0x8000;
384 up
->scc_rccm
= 0xc0ff;
386 /* Set low latency / small fifo.
388 sp
->scc_gsmrh
= SCC_GSMRH_RFW
;
392 sp
->scc_gsmrl
&= ~0xF;
393 sp
->scc_gsmrl
|= SCC_GSMRL_MODE_UART
;
395 /* Set local loopback mode.
397 sp
->scc_gsmrl
&= ~SCC_GSMRL_DIAG_LE
;
398 sp
->scc_gsmrl
|= SCC_GSMRL_DIAG_LOOP
;
400 /* Set clock divider 16 on Tx and Rx
402 sp
->scc_gsmrl
|= (SCC_GSMRL_TDCR_16
| SCC_GSMRL_RDCR_16
);
404 sp
->scc_psmr
|= SCU_PSMR_CL
;
406 /* Mask all interrupts and remove anything pending.
409 sp
->scc_scce
= 0xffff;
410 sp
->scc_dsr
= 0x7e7e;
411 sp
->scc_psmr
= 0x3000;
413 /* Make the first buffer the only buffer.
415 tbdf
->cbd_sc
|= BD_SC_WRAP
;
416 rbdf
->cbd_sc
|= BD_SC_EMPTY
| BD_SC_WRAP
;
418 /* Enable transmitter/receiver.
420 sp
->scc_gsmrl
|= (SCC_GSMRL_ENR
| SCC_GSMRL_ENT
);
423 static void scc_halt(int scc_index
)
425 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
426 volatile cpm8xx_t
*cp
= &(im
->im_cpm
);
427 volatile scc_t
*sp
= (scc_t
*) & (cp
->cp_scc
[scc_index
]);
429 sp
->scc_gsmrl
&= ~(SCC_GSMRL_ENR
| SCC_GSMRL_ENT
| SCC_GSMRL_DIAG_LE
);
432 static void scc_putc (int scc_index
, const char c
)
434 volatile cbd_t
*tbdf
;
436 volatile scc_uart_t
*up
;
437 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
438 volatile cpm8xx_t
*cpmp
= &(im
->im_cpm
);
440 up
= (scc_uart_t
*) & cpmp
->cp_dparam
[proff_scc
[scc_index
]];
442 tbdf
= (cbd_t
*) & cpmp
->cp_dpmem
[up
->scc_genscc
.scc_tbase
];
444 /* Wait for last character to go.
447 buf
= (char *) tbdf
->cbd_bufaddr
;
450 while (tbdf
->cbd_sc
& BD_SC_READY
)
455 tbdf
->cbd_datlen
= 1;
456 tbdf
->cbd_sc
|= BD_SC_READY
;
459 while (tbdf
->cbd_sc
& BD_SC_READY
)
464 static int scc_getc (int scc_index
)
466 volatile cbd_t
*rbdf
;
467 volatile unsigned char *buf
;
468 volatile scc_uart_t
*up
;
469 volatile immap_t
*im
= (immap_t
*) CFG_IMMR
;
470 volatile cpm8xx_t
*cpmp
= &(im
->im_cpm
);
474 up
= (scc_uart_t
*) & cpmp
->cp_dparam
[proff_scc
[scc_index
]];
476 rbdf
= (cbd_t
*) & cpmp
->cp_dpmem
[up
->scc_genscc
.scc_rbase
];
478 /* Wait for character to show up.
480 buf
= (unsigned char *) rbdf
->cbd_bufaddr
;
482 while (rbdf
->cbd_sc
& BD_SC_EMPTY
);
484 for (i
= 100; i
> 0; i
--) {
485 if (!(rbdf
->cbd_sc
& BD_SC_EMPTY
))
494 rbdf
->cbd_sc
|= BD_SC_EMPTY
;
503 static int test_ctlr (int ctlr
, int index
)
506 char test_str
[] = "*** UART Test String ***\r\n";
509 ctlr_proc
[ctlr
].init (index
);
511 for (i
= 0; i
< sizeof (test_str
) - 1; i
++) {
512 ctlr_proc
[ctlr
].putc (index
, test_str
[i
]);
513 if (ctlr_proc
[ctlr
].getc (index
) != test_str
[i
])
520 ctlr_proc
[ctlr
].halt (index
);
523 post_log ("uart %s%d test failed\n",
524 ctlr_name
[ctlr
], index
+ 1);
530 int uart_post_test (int flags
)
535 ctlr_proc
[CTLR_SMC
].init
= smc_init
;
536 ctlr_proc
[CTLR_SMC
].halt
= smc_halt
;
537 ctlr_proc
[CTLR_SMC
].putc
= smc_putc
;
538 ctlr_proc
[CTLR_SMC
].getc
= smc_getc
;
540 ctlr_proc
[CTLR_SCC
].init
= scc_init
;
541 ctlr_proc
[CTLR_SCC
].halt
= scc_halt
;
542 ctlr_proc
[CTLR_SCC
].putc
= scc_putc
;
543 ctlr_proc
[CTLR_SCC
].getc
= scc_getc
;
545 for (i
= 0; i
< CTRL_LIST_SIZE
; i
++) {
546 if (test_ctlr (ctlr_list
[i
][0], ctlr_list
[i
][1]) != 0) {
551 #if !defined(CONFIG_8xx_CONS_NONE)
552 serial_reinit_all ();
558 #endif /* CONFIG_POST & CFG_POST_UART */
560 #endif /* CONFIG_POST */