부트로더(Boot loader)의 소스는 "/opt/STM/
STLinux-2.3/devkit/sources/u-boot/"디렉토리 밑에 있습니다. 이것을 그대로 해당 디렉토리에서 빌드 및 수정작업을 하기보다는 자신의 작업디렉토리로 복사해서 작업하는게 좋습니다.
- 다음과 같이 u-boot source를 자신의 작업디렉토리로 복사합니다. (본 문서에서는 작업디렉토리를 "~/project/stprj"로 설정하였고 version 1.3.1_stm23_0044을 기준으로 설명합니다.)
[root@STLinux ~]# mkdir –p ~/project/stprj
[root@STLinux ~]# cp –a /opt/STM/STLinux-2.3/devkit/sources/u-boot/u-boot-sh4-1.3.1_stm23_0044 ~/project/stprj/
- 자신의 보드(Board)에 맞는 빌드설정을 하기 위해서 기존에 만들어져 있는 프로파일(Profile)로부터 새로운 프로파일(Profile)로 복사합니다. (본 문서에서는 프로파일 "5197cab"을 기준으로 새로운 프로파일인 "stprj"를 만드는것으로 설명합니다.)
[root@STLinux ~]# cd ~/projtect/stprj/u-boot-sh4-1.3.1_stm23_0044/
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# ls ./board/
5197cab
a3000
adder
.
.
.
mb411
mb442
mb448
mb519
mb618
mb628
mb671
mb680
mb704
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# cp -a ./board/5197cab ./board/stprj
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# mv ./board/stprj/init-5197cab.S ./board/stprj/init-stprj.S
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# mv ./board/stprj/5197cab.c ./board/stprj/stprj.c
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# cp ./include/configs/5197cab.h ./include/configs/stprj.h
- Text 편집기(예: vim)로 u-boot의 Makefile을 편집하는데 5197cab_config 부분을 찾아서 참고하면서 그 밑에 아래와 같이 추가합니다.
5197cab_config \
5197cabse_config : unconfig
@ >include/config.h
@echo "#define CONFIG_SH_STX5197 1" >>include/config.h
@echo "#define CONFIG_SH_5197CAB 1" >>include/config.h
$(if $(findstring se,$@), \
@echo "#define CONFIG_SH_SE_MODE 1" >>include/config.h)
$(if $(findstring se,$@), \
@echo "TEXT_BASE = 0x83F00000" >$(obj)board/5197cab/config.tmp)
@./mkconfig -a 5197cab sh sh 5197cab "" stx5197
###########################################
### 5197cab_config를 참고하여 새로 추가한 부분
###########################################
stprj_config \
stprjse_config : unconfig
@ >include/config.h
@echo "#define CONFIG_SH_STX5197 1" >>include/config.h
@echo "#define CONFIG_SH_STPRJ 1" >>include/config.h
$(if $(findstring se,$@), \
@echo "#define CONFIG_SH_SE_MODE 1" >>include/config.h)
$(if $(findstring se,$@), \
@echo "TEXT_BASE = 0x83F00000" >$(obj)board/stprj/config.tmp)
@./mkconfig -a stprj sh sh stprj "" stx5197
- "./board/stprj/config.mk"의 TEXT_BASE의 값을 수정해야 하는데 이것은 자신의 보드 (Board)에 따라서 값이 달라질수 있습니다. 이러한 TEXT_BASE의 값을 결정하는 공식은 다음과 같은 계산에 의해서 결정해야 하는데 이는 결국 SDRAM의 마지막 1Mbytes 영역에 u-boot을 올려서 실행하겠다는 의도로 나온 계산이라고 보시면 틀리지 않습니다.
TEXT_BASE = <SDRAM의 base주소> + (<SDRAM의 size> - 1Mbytes)
본 문서에서는 SDRAM의 base주소는 84000000H, SDRAM의 size는 64Mbytes를 기준으로 다음과 같이 "./board/stprj/config.mk"를 수정하였습니다.
#
# stprj board
#
# Installs at SDRAM BASE + 63M in cache region
TEXT_BASE = 0x87F00000
PLATFORM_LDFLAGS +=
- 자신의 Board에서 만약 Flash chip의 write기능을 사용하기 위한 Vpp 전압을 제어하는 부분이 구현되어야 하는 경우라면 소스파일인 "./board/stprj/stprj.c"에 flashWriteEnable 및 flashWriteDisable함수에 구현해 해당 Vpp제어부분을 적절하게 구현해 넣어야 합니다.
- 자신의보드에 맞는 설정을 하기 위해서 헤더파일인 "./include/configs/stprj.h"를 수정합니다.
- "./include/asm-sh/io.h"에 CONFIG_SH_STPRJ에 대한 부분을 추가합니다.
#if defined(CONFIG_SH_MB411) || \
defined(CONFIG_SH_MB442) || \
defined(CONFIG_SH_MB448) || \
defined(CONFIG_SH_HMS1) || \
defined(CONFIG_SH_MB519) || \
defined(CONFIG_SH_MB618) || \
defined(CONFIG_SH_MB628) || \
defined(CONFIG_SH_MB671) || \
defined(CONFIG_SH_MB680) || \
defined(CONFIG_SH_PDK7105) || \
defined(CONFIG_SH_IPIDTV7105) || \
defined(CONFIG_SH_MB704) || \
defined(CONFIG_SH_5197CAB) || \
defined(CONFIG_SH_CB101) || \
defined(CONFIG_SH_CB102) || \
defined(CONFIG_SH_STPRJ)
# include "asm/io_stb1eval.h"
#else
# error "What system is this?"
#endif
- U-boot 를 빌드합니다.
[root@STLinux
[root@STLinux
[root@STLinux
[root@STLinux
~]# cd ~/project/stprj/u-boot-sh4-1.3.1_stm23_0044/
u-boot-sh4-1.3.1_stm23_0044]# make mrproper
u-boot-sh4-1.3.1_stm23_0044]# make stprj_config
u-boot-sh4-1.3.1_stm23_0044]# make
빌드가 완료되면 u-boot, u-boot.bin, u-boot.map, u-boot.srec 가 생성됩니다. 여기서 우리가 flash에 write하게 될 파일은 u-boot.bin이며 GDB로 load하는 것은 ELF포맷인 u-boot파일이 사용됩니다.
- U-boot를 stprj board 에 flash로 write 하기 위해서 sh4-linux-gdb를 통해서 u-boot을 실행합니다. stprj board는 “ST Micro Connect”에 연결되어 있어야 하고 board내의
Serial console도 볼수 있도록 미리 준비해주어야 합니다. Board마다 접속하는 profile이름이 다르므로 이 부분은 각자 해결하셔야 할겁니다. (이 문서에서는 “ST Micro Connect”의 IP를 192.168.33.2로 설정하였다고 가정하고 작성되었습니다.)
[root@STLinux u-boot-sh4-1.3.1_stm23_0044]# sh4-linux-gdb ./u-boot
GNU gdb STMicroelectronics/Linux Base 6.8-41 [build Aug 3 2009]
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=i686-pc-linux-gnu --target=sh4-linux"...
(gdb) 5197cabbypass 192.168.33.2
The target is assumed to be little endian
0xa0000000 in ?? ()
(gdb) load
Loading section .text, size 0x1195c lma 0x87f00000
Loading section .rodata, size 0x750 lma 0x87f1195c
Loading section .rodata.str1.4, size 0x3e74 lma 0x87f120ac
Loading section .data, size 0xb50 lma 0x87f15f20
Loading section .u_boot_cmd, size 0x4b4 lma 0x87f16a70
Start address 0x87f00000, load size 93988
Transfer rate: 236 KB/sec, 18797 bytes/write.
(gdb) compare-sections
Section .text, range 0x87f00000 -- 0x87f1195c: matched.
Section .rodata, range 0x87f1195c -- 0x87f120ac: matched.
Section .rodata.str1.4, range 0x87f120ac -- 0x87f15f20: matched.
Section .data, range 0x87f15f20 -- 0x87f16a70: matched.
Section .u_boot_cmd, range 0x87f16a70 -- 0x87f16f24: matched.
(gdb) continue
Continuing.
GDB명령 compare-sections에서 matched로 나와야만 정상적인 실행이 됩니다. 마지막에 "Continuing." 메시지가 나온후 compare-sections가 matched가 아니면 다시 Ctrl-C키를 누
른후 load명령부터 다시 수행해보시면 matched라고 될때가 있습니다. 이때 Serial console상테 보면 u-boot의 부트메세지가 정상적으로 출력되는 것을 보실수 있습니다. Serial console로 아무키나 전송하면 프롬프트로 진입하게 됩니다.
U-Boot 1.3.1 (Aug 20 2009 - 18:16:28) - stm23_0044
DRAM: 64 MiB
NOR:
8 MiB
*** Warning - bad CRC, using default environment
In:
serial
Out: serial
Err: serial
Hit any key to stop autoboot: 15
stprj>
이제 빌드된 u-boot.bin을 serial로 전송하여 flash에 write 합니다. (이때 Serial console을 통해서 Ymodem으로 파일을 전송해야 되므로 Serial console terminal 프로그램이 Ymodem을 지원해야 합니다. 예를 들어서
SecureCRT같은 Terminal 프로그램이 Ymodem을 지원합니다.)
stprj> run updateboot
Un-Protect Flash Sectors 0-1 in Bank # 1
.. done
Erase Flash Sectors 0-1 in Bank # 1
.. done
## Ready for binary (ymodem) download to 0x84000000 at 115200 bps...
CCCC
Starting ymodem transfer. Press Ctrl+C to cancel.
Transferring u-boot.bin...
100%
91 KB
6 KB/s 00:00:15
0 Errors
xyzModem - CRC mode, 737(SOH)/0(STX)/0(CAN) packets, 6 retries
## Total Size
= 0x00016f24 = 93988 Bytes
Copy to Flash
........ done
Protect Flash Sectors 0-1 in Bank # 1
.. done
stprj>