xref: /openbmc/u-boot/arch/nds32/cpu/n1213/ag101/lowlevel_init.S (revision 1a4596601fd395f3afb8f82f3f840c5e00bdd57a)
1/*
2 * Copyright (C) 2011 Andes Technology Corporation
3 * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
4 * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
5 *
6 * SPDX-License-Identifier:	GPL-2.0+
7 */
8
9.text
10
11#include <common.h>
12#include <config.h>
13
14#include <asm/macro.h>
15#include <generated/asm-offsets.h>
16
17/*
18 * parameters for the SDRAM controller
19 */
20#define SDMC_TP1_A		(CONFIG_FTSDMC021_BASE + FTSDMC021_TP1)
21#define SDMC_TP2_A		(CONFIG_FTSDMC021_BASE + FTSDMC021_TP2)
22#define SDMC_CR1_A		(CONFIG_FTSDMC021_BASE + FTSDMC021_CR1)
23#define SDMC_CR2_A		(CONFIG_FTSDMC021_BASE + FTSDMC021_CR2)
24#define SDMC_B0_BSR_A		(CONFIG_FTSDMC021_BASE + FTSDMC021_BANK0_BSR)
25
26#define SDMC_TP1_D		CONFIG_SYS_FTSDMC021_TP1
27#define SDMC_TP2_D		CONFIG_SYS_FTSDMC021_TP2
28#define SDMC_CR1_D		CONFIG_SYS_FTSDMC021_CR1
29#define SDMC_CR2_D		CONFIG_SYS_FTSDMC021_CR2
30
31#define SDMC_B0_BSR_D		CONFIG_SYS_FTSDMC021_BANK0_BSR
32
33/*
34 * parameters for the static memory controller
35 */
36#define SMC_BANK0_CR_A		(CONFIG_FTSMC020_BASE + FTSMC020_BANK0_CR)
37#define SMC_BANK0_TPR_A		(CONFIG_FTSMC020_BASE + FTSMC020_BANK0_TPR)
38
39#define SMC_BANK0_CR_D		FTSMC020_BANK0_LOWLV_CONFIG
40#define SMC_BANK0_TPR_D		FTSMC020_BANK0_LOWLV_TIMING
41
42/*
43 * parameters for the ahbc controller
44 */
45#define AHBC_CR_A		(CONFIG_FTAHBC020S_BASE + FTAHBC020S_CR)
46#define AHBC_BSR6_A	(CONFIG_FTAHBC020S_BASE + FTAHBC020S_SLAVE_BSR_6)
47
48#define AHBC_BSR6_D		CONFIG_SYS_FTAHBC020S_SLAVE_BSR_6
49
50/*
51 * parameters for the pmu controoler
52 */
53#define PMU_PDLLCR0_A		(CONFIG_FTPMU010_BASE + FTPMU010_PDLLCR0)
54
55/*
56 * numeric 7 segment display
57 */
58.macro	led, num
59	write32	CONFIG_DEBUG_LED, \num
60.endm
61
62/*
63 * Waiting for SDRAM to set up
64 */
65.macro	wait_sdram
66	li	$r0, CONFIG_FTSDMC021_BASE
671:
68	lwi	$r1, [$r0+FTSDMC021_CR2]
69	bnez	$r1, 1b
70.endm
71
72#ifndef CONFIG_SKIP_LOWLEVEL_INIT
73.globl	lowlevel_init
74lowlevel_init:
75	move	$r10, $lp
76
77	led	0x0
78	jal	mem_init
79
80	led	0x10
81	jal	remap
82
83	led	0x20
84	ret	$r10
85
86mem_init:
87	move	$r11, $lp
88
89	/*
90	 * mem_init:
91	 *	There are 2 bank connected to FTSMC020 on AG101
92	 *	BANK0: FLASH/ROM (SW5, J16), BANK1: OnBoard SDRAM.
93	 *	we need to set onboard SDRAM before remap and relocation.
94	 */
95	led	0x01
96	write32	SMC_BANK0_CR_A, SMC_BANK0_CR_D			! 0x10000052
97	write32	SMC_BANK0_TPR_A, SMC_BANK0_TPR_D		! 0x00151151
98
99	/*
100	 * config AHB Controller
101	 */
102	led	0x02
103	write32	AHBC_BSR6_A, AHBC_BSR6_D
104
105	/*
106	 * config PMU controller
107	 */
108	/* ftpmu010_dlldis_disable, must do it in lowleve_init */
109	led	0x03
110	setbf32	PMU_PDLLCR0_A, FTPMU010_PDLLCR0_DLLDIS		! 0x00010000
111
112	/*
113	 * config SDRAM controller
114	 */
115	led	0x04
116	write32	SDMC_TP1_A, SDMC_TP1_D				! 0x00011312
117	led	0x05
118	write32	SDMC_TP2_A, SDMC_TP2_D				! 0x00480180
119	led	0x06
120	write32	SDMC_CR1_A, SDMC_CR1_D				! 0x00002326
121
122	led	0x07
123	write32	SDMC_CR2_A, FTSDMC021_CR2_IPREC			! 0x00000010
124	wait_sdram
125
126	led	0x08
127	write32	SDMC_CR2_A, FTSDMC021_CR2_ISMR			! 0x00000004
128	wait_sdram
129
130	led	0x09
131	write32	SDMC_CR2_A, FTSDMC021_CR2_IREF			! 0x00000008
132	wait_sdram
133
134	led	0x0a
135	move	$lp, $r11
136	ret
137
138remap:
139	move	$r11, $lp
140#ifdef __NDS32_N1213_43U1H__	/* NDS32 V0 ISA - AG101 Only */
141	bal	2f
142relo_base:
143	move	$r0, $lp
144#else
145relo_base:
146	mfusr	$r0, $pc
147#endif /* __NDS32_N1213_43U1H__ */
148
149	/*
150	 * Remapping
151	 */
152	led	0x1a
153	write32	SDMC_B0_BSR_A, SDMC_B0_BSR_D		! 0x00001100
154
155	/* clear empty BSR registers */
156	led	0x1b
157	li	$r4, CONFIG_FTSDMC021_BASE
158	li	$r5, 0x0
159	swi	$r5, [$r4 + FTSDMC021_BANK1_BSR]
160	swi	$r5, [$r4 + FTSDMC021_BANK2_BSR]
161	swi	$r5, [$r4 + FTSDMC021_BANK3_BSR]
162
163#ifdef CONFIG_MEM_REMAP
164	/*
165	 * Copy ROM code to SDRAM base for memory remap layout.
166	 * This is not the real relocation, the real relocation is the function
167	 * relocate_code() is start.S which supports the systems is memory
168	 * remapped or not.
169	 */
170	/*
171	 * Doing memory remap is essential for preparing some non-OS or RTOS
172	 * applications.
173	 *
174	 * This is also a must on ADP-AG101 board.
175	 * The reason is because the ROM/FLASH circuit on PCB board.
176	 * AG101-A0 board has 2 jumpers MA17 and SW5 to configure which
177	 * ROM/FLASH is used to boot.
178	 *
179	 * When SW5 = "0101", MA17 = LO, the ROM is connected to BANK0,
180	 * and the FLASH is connected to BANK1.
181	 * When SW5 = "1010", MA17 = HI, the ROM is disabled (still at BANK0),
182	 * and the FLASH is connected to BANK0.
183	 * It will occur problem when doing flash probing if the flash is at
184	 * BANK0 (0x00000000) while memory remapping was skipped.
185	 *
186	 * Other board like ADP-AG101P may not enable this since there is only
187	 * a FLASH connected to bank0.
188	 */
189	led	0x11
190	li	$r4, PHYS_SDRAM_0_AT_INIT		/* 0x10000000 */
191	li	$r5, 0x0
192	la	$r1, relo_base				/* get $pc or $lp */
193	sub	$r2, $r0, $r1
194	sethi	$r6, hi20(_end)
195	ori	$r6, $r6, lo12(_end)
196	add	$r6, $r6, $r2
1971:
198	lwi.p	$r7, [$r5], #4
199	swi.p	$r7, [$r4], #4
200	blt	$r5, $r6, 1b
201
202	/* set remap bit */
203	/*
204	 * MEM remap bit is operational
205	 * - use it to map writeable memory at 0x00000000, in place of flash
206	 * - before remap: flash/rom 0x00000000, sdram: 0x10000000-0x4fffffff
207	 * - after  remap: flash/rom 0x80000000, sdram: 0x00000000
208	 */
209	led	0x1c
210	setbf15	AHBC_CR_A, FTAHBC020S_CR_REMAP		! 0x1
211
212#endif /* #ifdef CONFIG_MEM_REMAP */
213	move	$lp, $r11
2142:
215	ret
216
217.globl show_led
218show_led:
219    li      $r8, (CONFIG_DEBUG_LED)
220    swi     $r7, [$r8]
221    ret
222#endif /* #ifndef CONFIG_SKIP_LOWLEVEL_INIT */
223