blob: 0daf25a189f9f06403c3a433cac2605eac9ea506 [file] [log] [blame]
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +09001/*
2 * Copyright (C) 2008 Renesas Solutions Corp.
3 * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
4 *
5 * board/ap325rxa/lowlevel_init.S
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <config.h>
24#include <version.h>
25#include <asm/processor.h>
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010026#include <asm/macro.h>
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090027
28/*
29 * Board specific low level init code, called _very_ early in the
30 * startup sequence. Relocation to SDRAM has not happened yet, no
31 * stack is available, bss section has not been initialised, etc.
32 *
33 * (Note: As no stack is available, no subroutines can be called...).
34 */
35
36 .global lowlevel_init
37
38 .text
39 .align 2
40
41lowlevel_init:
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010042 write16 DRVCRA_A, DRVCRA_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090043
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010044 write16 DRVCRB_A, DRVCRB_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090045
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010046 write16 RWTCSR_A, RWTCSR_D1
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090047
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010048 write16 RWTCNT_A, RWTCNT_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090049
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010050 write16 RWTCSR_A, RWTCSR_D2
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090051
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010052 write32 FRQCR_A, FRQCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090053
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010054 write32 CMNCR_A, CMNCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090055
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010056 write32 CS0BCR_A, CS0BCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090057
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010058 write32 CS4BCR_A, CS4BCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090059
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010060 write32 CS5ABCR_A, CS5ABCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090061
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010062 write32 CS5BBCR_A, CS5BBCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090063
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010064 write32 CS6ABCR_A, CS6ABCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090065
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010066 write32 CS6BBCR_A, CS6BBCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090067
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010068 write32 CS0WCR_A, CS0WCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090069
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010070 write32 CS4WCR_A, CS4WCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090071
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010072 write32 CS5AWCR_A, CS5AWCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090073
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010074 write32 CS5BWCR_A, CS5BWCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090075
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010076 write32 CS6AWCR_A, CS6AWCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090077
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010078 write32 CS6BWCR_A, CS6BWCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090079
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010080 write32 SBSC_SDCR_A, SBSC_SDCR_D1
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090081
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010082 write32 SBSC_SDWCR_A, SBSC_SDWCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090083
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010084 write32 SBSC_SDPCR_A, SBSC_SDPCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090085
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010086 write32 SBSC_RTCSR_A, SBSC_RTCSR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090087
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010088 write32 SBSC_RTCNT_A, SBSC_RTCNT_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090089
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010090 write32 SBSC_RTCOR_A, SBSC_RTCOR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090091
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010092 write8 SBSC_SDMR3_A1, SBSC_SDMR3_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090093
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +010094 write8 SBSC_SDMR3_A2, SBSC_SDMR3_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090095
96 mov.l SLEEP_CNT, r1
972: tst r1, r1
98 nop
99 bf/s 2b
100 dt r1
101
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +0100102 write8 SBSC_SDMR3_A3, SBSC_SDMR3_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900103
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +0100104 write32 SBSC_SDCR_A, SBSC_SDCR_D2
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900105
Jean-Christophe PLAGNIOL-VILLARDf7e78f32008-12-20 19:29:49 +0100106 write32 CCR_A, CCR_D
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900107
Jean-Christophe PLAGNIOL-VILLARDe4430772008-12-20 19:29:48 +0100108 ! BL bit off (init = ON) (?!?)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900109
110 stc sr, r0 ! BL bit off(init=ON)
111 mov.l SR_MASK_D, r1
112 and r1, r0
113 ldc r0, sr
114
115 rts
116 mov #0, r0
117
118 .align 2
119
120DRVCRA_A: .long DRVCRA
121DRVCRB_A: .long DRVCRB
122DRVCRA_D: .long 0x4555
123DRVCRB_D: .long 0x0005
124
125RWTCSR_A: .long RWTCSR
126RWTCNT_A: .long RWTCNT
127FRQCR_A: .long FRQCR
128RWTCSR_D1: .long 0xa507
129RWTCSR_D2: .long 0xa504
130RWTCNT_D: .long 0x5a00
131FRQCR_D: .long 0x0b04474a
132
133SBSC_SDCR_A: .long SBSC_SDCR
134SBSC_SDWCR_A: .long SBSC_SDWCR
135SBSC_SDPCR_A: .long SBSC_SDPCR
136SBSC_RTCSR_A: .long SBSC_RTCSR
137SBSC_RTCNT_A: .long SBSC_RTCNT
138SBSC_RTCOR_A: .long SBSC_RTCOR
139SBSC_SDMR3_A1: .long 0xfe510000
140SBSC_SDMR3_A2: .long 0xfe500242
141SBSC_SDMR3_A3: .long 0xfe5c0042
142
143SBSC_SDCR_D1: .long 0x92810112
144SBSC_SDCR_D2: .long 0x92810912
145SBSC_SDWCR_D: .long 0x05162482
146SBSC_SDPCR_D: .long 0x00300087
147SBSC_RTCSR_D: .long 0xa55a0212
148SBSC_RTCNT_D: .long 0xa55a0000
149SBSC_RTCOR_D: .long 0xa55a0040
150SBSC_SDMR3_D: .long 0x00
151
152CMNCR_A: .long CMNCR
153CS0BCR_A: .long CS0BCR
154CS4BCR_A: .long CS4BCR
Jean-Christophe PLAGNIOL-VILLARDe4430772008-12-20 19:29:48 +0100155CS5ABCR_A: .long CS5ABCR
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900156CS5BBCR_A: .long CS5BBCR
157CS6ABCR_A: .long CS6ABCR
158CS6BBCR_A: .long CS6BBCR
159CS0WCR_A: .long CS0WCR
160CS4WCR_A: .long CS4WCR
161CS5AWCR_A: .long CS5AWCR
162CS5BWCR_A: .long CS5BWCR
163CS6AWCR_A: .long CS6AWCR
164CS6BWCR_A: .long CS6BWCR
165
166CMNCR_D: .long 0x00000013
167CS0BCR_D: .long 0x24920400
168CS4BCR_D: .long 0x24920400
169CS5ABCR_D: .long 0x24920400
170CS5BBCR_D: .long 0x7fff0600
171CS6ABCR_D: .long 0x24920400
172CS6BBCR_D: .long 0x24920600
173CS0WCR_D: .long 0x00000480
174CS4WCR_D: .long 0x00000480
175CS5AWCR_D: .long 0x00000380
Yusuke.Goda94a35362009-03-13 16:08:18 +0900176CS5BWCR_D: .long 0x00000080
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900177CS6AWCR_D: .long 0x00000300
178CS6BWCR_D: .long 0x00000540
179
180CCR_A: .long 0xff00001c
181CCR_D: .long 0x0000090d
182
183SLEEP_CNT: .long 0x00000800
184SR_MASK_D: .long 0xEFFFFF0F