lowlevel_init.s
来自「s3c6410的 Uboot 代码, 感兴趣的可以看看呀」· S 代码 · 共 328 行
S
328 行
/* * 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) * * Modified for the Samsung SMDK2410 by * (C) Copyright 2002 * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include <config.h>#include <version.h>#include <regs.h>#include "smdk2412_val.h"_TEXT_BASE: .word TEXT_BASE .globl lowlevel_initlowlevel_init: mov r12, lr /* LED on only #8 */ ldr r0, =ELFIN_GPIO_BASE ldr r1, =0x5555 str r1, [r0, #GPFCON_OFFSET] ldr r1, =0xff str r1, [r0, #GPFPU_OFFSET] ldr r1, =0x5f str r1, [r0, #GPFDAT_OFFSET] /* Disable all external interrupts */ ldr r1, =0xffffff str r1, [r0, #EINTMASK_OFFSET] /* Clear external interrupts pending bit */ str r1, [r0, #EINTPEND_OFFSET] /* For NAND Setting */ ldr r1, =0x3fffff str r1, [r0] /* Disable Watchdog */ ldr r0, =ELFIN_WATCHDOG_BASE mov r1, #0 str r1, [r0] /* Disable all interrupts */ ldr r0, =ELFIN_INTERRUPT_BASE mvn r1, #0x0 str r1, [r0, #INTMSK_OFFSET] /* Disable all sub-interrupts */ ldr r1, =0xff00 orr r1, r1, #0xff str r1, [r0, #INTSUBMSK_OFFSET] /* Set all interrupts as IRQ */ mov r1, #0x0 str r1, [r0, #INTMOD_OFFSET] /* Clear all interrupts pending bit */ ldr r1, =0xffffffff str r1, [r0, #INTPND_OFFSET] /* Disable LCD sub interrupts */ ldr r0, =ELFIN_LCD_BASE mov r1, #0x3 str r1, [r0, #LCDINTMSK_OFFSET] /* 0x2C is off of oLCDINTMSK */ /* init system clock */ bl system_clock_init /* for UART */ bl uart_asm_init /* simple init for NAND */ bl nand_asm_init /* when we already run in ram, we don't need to relocate U-Boot. * and actually, memory controller must be configured before U-Boot * is running in ram. */ ldr r0, =0xff000fff bic r1, pc, r0 /* r0 <- current base addr of code */ ldr r2, _TEXT_BASE /* r1 <- original base addr in ram */ bic r2, r2, r0 /* r0 <- current base addr of code */ cmp r1, r2 /* compare r0, r1 */ beq 1f /* r0 == r1 then skip sdram init */ bl sdram_bus_asm_init ldr r0, =sdram_bank_set_val bl sdr_ctrl_asm_init1: ldr r0, =ELFIN_UART_BASE ldr r1, =0x4b4b4b4b str r1, [r0, #0x20]#ifdef CONFIG_PM /* PM check */ @ Check if this is a wake-up from sleep ldr r0, =INFORM0_REG /* milestone for wakeup */ ldr r1, [r0] ldr r2, =0x2BED cmp r2, r1 bleq max1718_init ldreq r0, =INFORM1_REG /* go to the recovery block */ ldreq r1, [r0] moveq pc, r1 /* end PM check */#endif mov lr, r12 mov pc, lr/* * system_clock_init: Initialize core clock and bus clock. * void system_clock_init(void) */system_clock_init: ldr r0, =ELFIN_CLOCK_POWER_BASE ldr r1, =0x0fff0fff /*Set MPLL Locktime*/ str r1, [r0, #LOCKTIME_OFFSET] ldr r1, =0x00000065 /* */ str r1, [r0, #CLKDIVN_OFFSET] /* Set MPLL 200MHz: 0x0002a011 */ /* Set MPLL 266MHz: 0x0007d041 */#ifndef CONFIG_CLK_266_133_66 ldr r1,=0x0002a011#else ldr r1,=0x0007d041#endif str r1, [r0, #MPLLCON_OFFSET] ldr r1,=0x00040070 /*Set UPLL*/ str r1, [r0, #UPLLCON_OFFSET] ldr r1, [r0, #CLKSRC_OFFSET] orr r1, r1, #0x30 str r1, [r0, #CLKSRC_OFFSET] /* wait at least 200us to stablize all clock */ mov r2, #0x100001: subs r1, r1, #1 bne 1b mov pc, lr/* * uart_asm_init: Initialize UART in asm mode, 115200bps fixed. * void uart_asm_init(void) */uart_asm_init: /* set GPIO to enable UART */ ldr r0, =ELFIN_GPIO_BASE ldr r1, =0x0000aaaa str r1, [r0, #GPHCON_OFFSET] @GPIO ldr r0, =ELFIN_UART_BASE mov r1, #0x0 str r1, [r0, #UFCON_OFFSET] str r1, [r0, #UMCON_OFFSET] mov r1, #0x3 @was 0. str r1, [r0, #ULCON_OFFSET] ldr r1, =0x245 str r1, [r0, #UCON_OFFSET] ldr r1, =0x0000001a str r1, [r0, #UBRDIV_OFFSET] ldr r1, =0x4f4f4f4f str r1, [r0, #UTXH_OFFSET] mov pc, lr/* * sdram_bus_asm_init: before sdram init, some settings are necessary. * void sdram_bus_asm_init(void) */sdram_bus_asm_init: ldr r0, =BANK_CFG_REG ldr r1, [r0] orr r1, r1, #0xc0 str r1, [r0] mov pc, lr/* * Nand Interface Init for smdk2412 */nand_asm_init: ldr r0, =BANK_CFG_REG ldr r1, [r0] orr r1, r1, #0xc str r1, [r0] ldr r0, =ELFIN_GPIO_BASE ldr r1, [r0] bic r1, r1, #(0x1f<<17) str r1, [r0] orr r1, r1, #(0x1f<<17) str r1, [r0] ldr r0, =ELFIN_NAND_BASE ldr r1, [r0, #NFCONF_OFFSET] orr r1, r1, #0x70 orr r1, r1, #0x7700 str r1, [r0, #NFCONF_OFFSET] ldr r1, [r0, #NFCONT_OFFSET] orr r1, r1, #0x03 str r1, [r0, #NFCONT_OFFSET] mov pc, lr/* * Max1718 initialization from Sleep (default VDD_ARM = 1.4V) * GPFDAT : 0x7f(1.4V), 0x8f(1.35V), 0x9F(1.30V), 0xAF(1.25V) */max1718_init: ldr r0, =ELFIN_GPIO_BASE ldr r1, =0x7f // VDD_ARM = 1.4V str r1, [r0, #GPFDAT_OFFSET] ldr r1, =0x155555 str r1, [r0, #GPBCON_OFFSET] ldr r1, =0x441 str r1, [r0, #GPBDAT_OFFSET] mov pc, lrvar_in_lowlevel_init: .ltorg/* * struct sdram_val { * ulong bankcfg_val; // r5, val of bankcfg * ulong bankcon1_val; // r6, val of bankcon1 * ulong bankcon2_val; // r7, val of bankcon2 * ulong bankcon3_val; // r8, val of bankcon3 * ulong refresh_val; // r9, val of refresh * } */sdram_bank_set_val: .word CFG_BANK_CFG_VAL .word CFG_BANK_CON1_VAL .word CFG_BANK_CON2_VAL .word CFG_BANK_CON3_VAL .word CFG_BANK_REFRESH_VAL#ifdef CONFIG_SDRAM_AUTO_DETECTsdram_bank_sel_val_alt: .word CFG_BANK_CFG_VAL_ALT .word CFG_BANK_CON1_VAL#endif#ifdef CONFIG_ENABLE_MMU/* * MMU Table for SMDK2412 */ /* form a first-level section entry */.macro FL_SECTION_ENTRY base,ap,d,c,b .word (\base << 20) | (\ap << 10) | \ (\d << 5) | (1<<4) | (\c << 3) | (\b << 2) | (1<<1).endm.section .mmudata, "a" .align 14 /* the following alignment creates the mmu table at address 0x4000. */ .globl mmu_tablemmu_table: .set __base,0 /* 1:1 mapping for debugging */ .rept 0x600 FL_SECTION_ENTRY __base,3,0,0,0 .set __base,__base+1 .endr /* access is not allowed. */ .rept 0xC00 - 0x600 .word 0x00000000 .endr /* 32MB for SDRAM 0xC0000000 -> 0x30000000 */ .set __base, 0x300 .rept 0xC40 - 0xC00 FL_SECTION_ENTRY __base,3,0,1,1 .set __base,__base+1 .endr /* access is not allowed. */ .rept 0x1000 - 0xc40 .word 0x00000000 .endr#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?