GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / cfe / cfe / arch / mips / board / ptswarm / src / cpu1test.S
blobfb62dd442638b6d5838c50448be67147dfeafb66
1 /*  *********************************************************************
2     *  BCM12500 Board Support Package
3     *  
4     *  CPU1 test routines                       File: CPU1TEST.S
5     *
6     *  This file gives CPU1 something to do.
7     *  
8     *  Author:  Mitch Lichtenberg (mpl@broadcom.com)
9     *  
10     *********************************************************************  
11     *
12     *  Copyright 2000,2001,2002,2003
13     *  Broadcom Corporation. All rights reserved.
14     *  
15     *  This software is furnished under license and may be used and 
16     *  copied only in accordance with the following terms and 
17     *  conditions.  Subject to these conditions, you may download, 
18     *  copy, install, use, modify and distribute modified or unmodified 
19     *  copies of this software in source and/or binary form.  No title 
20     *  or ownership is transferred hereby.
21     *  
22     *  1) Any source code used, modified or distributed must reproduce 
23     *     and retain this copyright notice and list of conditions 
24     *     as they appear in the source file.
25     *  
26     *  2) No right is granted to use any trade name, trademark, or 
27     *     logo of Broadcom Corporation.  The "Broadcom Corporation" 
28     *     name may not be used to endorse or promote products derived 
29     *     from this software without the prior written permission of 
30     *     Broadcom Corporation.
31     *  
32     *  3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR
33     *     IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED
34     *     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR 
35     *     PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT 
36     *     SHALL BROADCOM BE LIABLE FOR ANY DAMAGES WHATSOEVER, AND IN 
37     *     PARTICULAR, BROADCOM SHALL NOT BE LIABLE FOR DIRECT, INDIRECT,
38     *     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
39     *     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
40     *     GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
41     *     BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 
42     *     OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 
43     *     TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF 
44     *     THE POSSIBILITY OF SUCH DAMAGE.
45     ********************************************************************* */
47 #include "sbmips.h"
48 #include "bsp_config.h"
49 #include "ptswarm.h"
51                 .text
55 #define SETLEDS(a,b,c,d)                     \
56        li     a0,(((a)<<24)|((b)<<16)|((c)<<8)|(d)) ;    \
57        bal    cpu1_setleds
60                 .text
63 /*  *********************************************************************
64     *  BOARD_SETLEDS(x)
65     *  
66     *  Set LEDs for boot-time progress indication.  Not used if
67     *  the board does not have progress LEDs.  This routine
68     *  must not call any other routines, since it may be invoked
69     *  either from KSEG0 or KSEG1 and it may be invoked 
70     *  whether or not the icache is operational.
71     *  
72     *  Input parameters: 
73     *      a0 - LED value (8 bits per character, 4 characters)
74     *      
75     *  Return value:
76     *      nothing
77     *  
78     *  Registers used:
79     *      t0,t1,t2,t3
80     ********************************************************************* */
83 #define LED_CHAR0       (32+8*3)
84 #define LED_CHAR1       (32+8*2)
85 #define LED_CHAR2       (32+8*1)
86 #define LED_CHAR3       (32+8*0)
88 LEAF(cpu1_setleds)
90                 li      t0,PHYS_TO_K1(LEDS_PHYS)
92                 rol     a0,a0,8
93                 and     t1,a0,0xFF
94                 sb      t1,LED_CHAR0(t0)
96                 rol     a0,a0,8
97                 and     t1,a0,0xFF
98                 sb      t1,LED_CHAR1(t0)
100                 rol     a0,a0,8
101                 and     t1,a0,0xFF
102                 sb      t1,LED_CHAR2(t0)
104                 rol     a0,a0,8
105                 and     t1,a0,0xFF
106                 sb      t1,LED_CHAR3(t0)
108                 j       ra
110 END(cpu1_setleds)
113 /*  *********************************************************************
114     *  CPU1PROC()
115     *  
116     *  This routine is started on the secondary processor.  It just
117     *  makes some noise on the LEDs.
118     *  
119     *  Input parameters: 
120     *      nothing
121     *      
122     *  Return value:
123     *      does not return
124     ********************************************************************* */
126 #define WAITCOUNT 100000000
128 LEAF(cpu1proc)
130                 li      s0,0x80001000
131                 li      s1,0
132                 sd      s1,0(s0)
134 loop:
136                 SETLEDS('H','i',' ',' ')
138                 ld      t0,0(s0)
139                 bne     t0,s1,fail
140                 add     t0,1
141                 add     s1,1
142                 sd      t0,0(s0)
144                 mtc0    zero,C0_COUNT
145 1:              li      t0,WAITCOUNT
146                 mfc0    t1,C0_COUNT
147                 blt     t1,t0,1b
149                 SETLEDS('M','o','m','!')
151                 ld      t0,0(s0)
152                 bne     t0,s1,fail
153                 add     t0,1
154                 add     s1,1
155                 sd      t0,0(s0)
158                 mtc0    zero,C0_COUNT
159 1:              li      t0,WAITCOUNT
160                 mfc0    t1,C0_COUNT
161                 blt     t1,t0,1b
163                 b       loop
165 fail:
166                 SETLEDS('F','a','i','l')
167 1:              b       1b
170 END(cpu1proc)