u-boot코드의 큰 흐름은
1. U-boot.lds에서 ENTRY에 지정된 "_start"함수로 u-boot프로그램이 시작된다.
2. start.s에서 "_start"가 실행되고 "b reset"에 의해 reset으로 제어가 넘어간다.
3. reset함수에서는
1) CPU를 supervisor mode로 set시키고
2) watchdog를 trun off시키고
3) interrupt를 disable시키고
4) CPU clock을 셋팅한다.
5) "cpu_init_crit"에 의해 memsetup.s로 분기되고 메모리를 초기화 한후 start.s로 돌아와
4. armboot를 RAM으로 재배치한다.
5. stackpoint를 설정해 주었으므로 C routine을 실행하기위해 board.c에 포함되어있는 start_armboot()로 branch한다.
6. board.c에서 board에 관련된 모든자원을 초기화하고 main()함수로 이동하게 된다.
이는 외울 필요없이 코드를 따라가보면 나오는 것이고, 부팅절차를 생각해보면 자연스러운 흐름이다.
그럼 먼저 U-boot.lds를 보도록 하겠다.
/*
* A EEEE SSSS OOO PPPP
*
A A E S O O P P
* AAAAA EEEE SSSS O O PPPP
*
A A E S O O P
* A A EEEE SSSS OOO P
*
*
An Entertainment Solution On a Platform (AESOP) is a completely Open
Source
* based graphical user environment and suite of
applications for PDAs and other
* devices running Linux. It is
included in various embedded Linux distributions
* such as
OpenZaurus - http://www.aesop-embedded.org
*
*
* 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.
*
*
* Title : u-boot.lds
* Author
:
* Created date : 2005. 06. 26. 23:07:07 KST
* Description
:
*
* $Revision: 1.1.1.1 $
* $Log: u-boot.lds,v $
* Revision
1.1.1.1 2005/06/27 17:04:29 linuxpark
* Initial import.
*
*
*
*/
/*
* (C) Copyright 2002
* Gary
Jennejohn, DENX Software Engineering, <gj@denx.de>
*
* 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
*/
OUTPUT_FORMAT("elf32-littlearm",
"elf32-littlearm", "elf32-littlearm")
/*
elf32의 little endian으로 코드를 생성하겠다. */
/*OUTPUT_FORMAT("elf32-arm",
"elf32-arm", "elf32-arm")*/
OUTPUT_ARCH(arm) /*
binary를 실행할 수 있는 CPU Architecture로 Arm을 사용하겠다 */
ENTRY(_start) /* u-boot 프로그램의
시작. 시작되는 함수의 이름은 "_start". 여기에서 _start로 제어가 넘어간다.*/
SECTIONS
{
.
= 0x00000000;
. = ALIGN(4); /* 프로그램
코드는 0x00000000에서 4byte단위로 정렬된 text section에 놓여질 것이다. */
.text
:
{
cpu/arm920t/start.o (.text)
*(.text)
}
. = ALIGN(4);
.rodata : { *(.rodata) }
. = ALIGN(4);
.data : { *(.data) }
. = ALIGN(4);
.got : { *(.got) }
__u_boot_cmd_start = .;
.u_boot_cmd : {
*(.u_boot_cmd) } //user interface command
stucture를 여기에 배치해라.
__u_boot_cmd_end = .;
. = ALIGN(4);
__bss_start = .;
.bss :
{ *(.bss) } //bss <= global 변수 중에서 0으로 초기화 되지
않은 영역.
_end = .;
}
---------------
출처 : http://blog.naver.com/idrukawa/100054112166