2009-04-16 19:30:48 +00:00
|
|
|
/*
|
|
|
|
* Memory Setup stuff - taken from blob memsetup.S
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
|
|
|
|
* Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at)
|
|
|
|
* Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2009-04-16 19:30:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#include <asm/arch/at91_pmc.h>
|
|
|
|
#include <asm/arch/at91_wdt.h>
|
2010-02-03 21:46:58 +00:00
|
|
|
#include <asm/arch/at91_pio.h>
|
|
|
|
#include <asm/arch/at91_matrix.h>
|
2009-04-16 19:30:48 +00:00
|
|
|
#include <asm/arch/at91sam9_sdramc.h>
|
|
|
|
#include <asm/arch/at91sam9_smc.h>
|
2010-02-03 21:46:58 +00:00
|
|
|
#include <asm/arch/at91_rstc.h>
|
2011-06-10 21:31:25 +00:00
|
|
|
#ifdef CONFIG_ATMEL_LEGACY
|
2010-02-03 21:46:58 +00:00
|
|
|
#include <asm/arch/at91sam9_matrix.h>
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_SYS_MATRIX_EBICSA_VAL
|
|
|
|
#define CONFIG_SYS_MATRIX_EBICSA_VAL CONFIG_SYS_MATRIX_EBI0CSA_VAL
|
|
|
|
#endif
|
2009-04-16 19:30:48 +00:00
|
|
|
|
|
|
|
.globl lowlevel_init
|
|
|
|
.type lowlevel_init,function
|
|
|
|
lowlevel_init:
|
|
|
|
|
|
|
|
POS1:
|
2014-02-22 16:53:43 +00:00
|
|
|
adr r5, POS1 /* r5 = POS1 run time */
|
2009-04-16 19:30:48 +00:00
|
|
|
ldr r0, =POS1 /* r0 = POS1 compile */
|
2010-10-07 19:51:12 +00:00
|
|
|
sub r5, r5, r0 /* r0 = CONFIG_SYS_TEXT_BASE-1 */
|
2009-04-16 19:30:48 +00:00
|
|
|
|
|
|
|
/* memory control configuration 1 */
|
|
|
|
ldr r0, =SMRDATA
|
|
|
|
ldr r2, =SMRDATA1
|
|
|
|
add r0, r0, r5
|
|
|
|
add r2, r2, r5
|
|
|
|
0:
|
|
|
|
/* the address */
|
|
|
|
ldr r1, [r0], #4
|
|
|
|
/* the value */
|
|
|
|
ldr r3, [r0], #4
|
|
|
|
str r3, [r1]
|
|
|
|
cmp r2, r0
|
|
|
|
bne 0b
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* PMC Init Step 1.
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* - Check if the PLL is already initialized
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
2010-02-03 21:46:58 +00:00
|
|
|
ldr r1, =(AT91_ASM_PMC_MCKR)
|
2009-04-16 19:30:48 +00:00
|
|
|
ldr r0, [r1]
|
|
|
|
and r0, r0, #3
|
|
|
|
cmp r0, #0
|
|
|
|
bne PLL_setup_end
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
|
|
* - Enable the Main Oscillator
|
|
|
|
* ---------------------------------------------------------------------------
|
|
|
|
*/
|
2010-02-03 21:46:58 +00:00
|
|
|
ldr r1, =(AT91_ASM_PMC_MOR)
|
|
|
|
ldr r2, =(AT91_ASM_PMC_SR)
|
2009-06-13 10:50:04 +00:00
|
|
|
/* Main oscillator Enable register PMC_MOR: */
|
2009-06-12 19:20:38 +00:00
|
|
|
ldr r0, =CONFIG_SYS_MOR_VAL
|
2009-06-13 10:50:04 +00:00
|
|
|
str r0, [r1]
|
2009-04-16 19:30:48 +00:00
|
|
|
|
|
|
|
/* Reading the PMC Status to detect when the Main Oscillator is enabled */
|
2010-02-03 21:46:58 +00:00
|
|
|
mov r4, #AT91_PMC_IXR_MOSCS
|
2009-04-16 19:30:48 +00:00
|
|
|
MOSCS_Loop:
|
|
|
|
ldr r3, [r2]
|
|
|
|
and r3, r4, r3
|
2010-02-03 21:46:58 +00:00
|
|
|
cmp r3, #AT91_PMC_IXR_MOSCS
|
2009-04-16 19:30:48 +00:00
|
|
|
bne MOSCS_Loop
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* PMC Init Step 2.
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* Setup PLLA
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
2010-02-03 21:46:58 +00:00
|
|
|
ldr r1, =(AT91_ASM_PMC_PLLAR)
|
2009-04-16 19:30:48 +00:00
|
|
|
ldr r0, =CONFIG_SYS_PLLAR_VAL
|
|
|
|
str r0, [r1]
|
|
|
|
|
|
|
|
/* Reading the PMC Status register to detect when the PLLA is locked */
|
2010-02-03 21:46:58 +00:00
|
|
|
mov r4, #AT91_PMC_IXR_LOCKA
|
2009-04-16 19:30:48 +00:00
|
|
|
MOSCS_Loop1:
|
|
|
|
ldr r3, [r2]
|
|
|
|
and r3, r4, r3
|
2010-02-03 21:46:58 +00:00
|
|
|
cmp r3, #AT91_PMC_IXR_LOCKA
|
2009-04-16 19:30:48 +00:00
|
|
|
bne MOSCS_Loop1
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* PMC Init Step 3.
|
|
|
|
* ----------------------------------------------------------------------------
|
2009-06-13 10:50:04 +00:00
|
|
|
* - Switch on the Main Oscillator
|
2009-04-16 19:30:48 +00:00
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
2010-02-03 21:46:58 +00:00
|
|
|
ldr r1, =(AT91_ASM_PMC_MCKR)
|
2009-04-16 19:30:48 +00:00
|
|
|
|
|
|
|
/* -Master Clock Controller register PMC_MCKR */
|
|
|
|
ldr r0, =CONFIG_SYS_MCKR1_VAL
|
|
|
|
str r0, [r1]
|
|
|
|
|
|
|
|
/* Reading the PMC Status to detect when the Master clock is ready */
|
2010-02-03 21:46:58 +00:00
|
|
|
mov r4, #AT91_PMC_IXR_MCKRDY
|
2009-04-16 19:30:48 +00:00
|
|
|
MCKRDY_Loop:
|
|
|
|
ldr r3, [r2]
|
|
|
|
and r3, r4, r3
|
2010-02-03 21:46:58 +00:00
|
|
|
cmp r3, #AT91_PMC_IXR_MCKRDY
|
2009-04-16 19:30:48 +00:00
|
|
|
bne MCKRDY_Loop
|
|
|
|
|
|
|
|
ldr r0, =CONFIG_SYS_MCKR2_VAL
|
|
|
|
str r0, [r1]
|
|
|
|
|
|
|
|
/* Reading the PMC Status to detect when the Master clock is ready */
|
2010-02-03 21:46:58 +00:00
|
|
|
mov r4, #AT91_PMC_IXR_MCKRDY
|
2009-04-16 19:30:48 +00:00
|
|
|
MCKRDY_Loop1:
|
|
|
|
ldr r3, [r2]
|
|
|
|
and r3, r4, r3
|
2010-02-03 21:46:58 +00:00
|
|
|
cmp r3, #AT91_PMC_IXR_MCKRDY
|
2009-04-16 19:30:48 +00:00
|
|
|
bne MCKRDY_Loop1
|
|
|
|
PLL_setup_end:
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* - memory control configuration 2
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*/
|
2010-02-03 21:46:58 +00:00
|
|
|
ldr r0, =(AT91_ASM_SDRAMC_TR)
|
2009-04-16 19:30:48 +00:00
|
|
|
ldr r1, [r0]
|
|
|
|
cmp r1, #0
|
|
|
|
bne SDRAM_setup_end
|
|
|
|
|
|
|
|
ldr r0, =SMRDATA1
|
|
|
|
ldr r2, =SMRDATA2
|
|
|
|
add r0, r0, r5
|
|
|
|
add r2, r2, r5
|
|
|
|
2:
|
|
|
|
/* the address */
|
|
|
|
ldr r1, [r0], #4
|
|
|
|
/* the value */
|
|
|
|
ldr r3, [r0], #4
|
|
|
|
str r3, [r1]
|
|
|
|
cmp r2, r0
|
|
|
|
bne 2b
|
|
|
|
|
|
|
|
SDRAM_setup_end:
|
|
|
|
/* everything is fine now */
|
|
|
|
mov pc, lr
|
|
|
|
|
|
|
|
.ltorg
|
|
|
|
|
|
|
|
SMRDATA:
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_WDT_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_WDTC_WDMR_VAL
|
2009-06-13 10:50:04 +00:00
|
|
|
/* configure PIOx as EBI0 D[16-31] */
|
|
|
|
#if defined(CONFIG_AT91SAM9263)
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_PIOD_PDR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_PIOD_PDR_VAL1
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_PIOD_PUDR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_PIOD_PPUDR_VAL
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_PIOD_ASR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_PIOD_PPUDR_VAL
|
2009-09-27 16:10:09 +00:00
|
|
|
#elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9261) \
|
|
|
|
|| defined(CONFIG_AT91SAM9G20)
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_PIOC_PDR
|
2009-06-13 10:50:04 +00:00
|
|
|
.word CONFIG_SYS_PIOC_PDR_VAL1
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_PIOC_PUDR
|
2009-06-13 10:50:04 +00:00
|
|
|
.word CONFIG_SYS_PIOC_PPUDR_VAL
|
|
|
|
#endif
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_MATRIX_CSA0
|
2009-06-13 10:50:04 +00:00
|
|
|
.word CONFIG_SYS_MATRIX_EBICSA_VAL
|
2009-04-16 19:30:48 +00:00
|
|
|
|
|
|
|
/* flash */
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SMC_MODE0
|
2009-06-12 19:20:37 +00:00
|
|
|
.word CONFIG_SYS_SMC0_MODE0_VAL
|
2009-04-16 19:30:48 +00:00
|
|
|
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SMC_CYCLE0
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SMC0_CYCLE0_VAL
|
|
|
|
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SMC_PULSE0
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SMC0_PULSE0_VAL
|
|
|
|
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SMC_SETUP0
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SMC0_SETUP0_VAL
|
|
|
|
|
|
|
|
SMRDATA1:
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MR_VAL1
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_TR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_TR_VAL1
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_CR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_CR_VAL
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MDR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MDR_VAL
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MR_VAL2
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL1
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MR_VAL3
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL2
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL3
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL4
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL5
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL6
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL7
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL8
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL9
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MR_VAL4
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL10
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_MR_VAL5
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL11
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_SDRAMC_TR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRC_TR_VAL2
|
2011-06-06 22:48:27 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_BASE
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_SDRAM_VAL12
|
|
|
|
/* User reset enable*/
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_RSTC_MR
|
2009-04-16 19:30:48 +00:00
|
|
|
.word CONFIG_SYS_RSTC_RMR_VAL
|
|
|
|
#ifdef CONFIG_SYS_MATRIX_MCFG_REMAP
|
|
|
|
/* MATRIX_MCFG - REMAP all masters */
|
2010-02-03 21:46:58 +00:00
|
|
|
.word AT91_ASM_MATRIX_MCFG
|
2009-04-16 19:30:48 +00:00
|
|
|
.word 0x1FF
|
|
|
|
#endif
|
|
|
|
SMRDATA2:
|
|
|
|
.word 0
|