SMDK2410

所属分类:处理器开发
开发工具:C/C++
文件大小:3358KB
下载次数:33
上传日期:2008-04-11 16:37:20
上 传 者fanlt_arm
说明:  FS2410开发板的SMDK2410,S3C2410 是韩国三星公司的一款基于ARM920T 内核的16/32 位RISC 嵌入式微处理器,主要 面向手持设备以及高性价比,低功耗的应用。运行的频率可以达到203MHz。
(FS2410 development board of SMDK2410, S3C2410 Samsung in South Korea based on the ARM920T core, a 16/32-bit embedded RISC microprocessor, mainly for handheld devices, as well as cost-effective, low-power applications. Operation frequency can reach 203MHz.)

文件列表:
SMDK2410\INC\armmacros.s (1645, 2003-03-02)
SMDK2410\INC\BITFIELD.H (820, 2003-04-15)
SMDK2410\INC\bldver.h (693, 2004-07-01)
SMDK2410\INC\bootarg.h (3967, 2003-03-02)
SMDK2410\INC\CLKCON.H (2124, 2003-04-15)
SMDK2410\INC\cmtt1pos.h (27577, 2003-03-02)
SMDK2410\INC\cmtthal.h (9126, 2003-03-02)
SMDK2410\INC\drv_glob.h (8042, 2003-08-01)
SMDK2410\INC\drv_glob.inc (1650, 2003-03-02)
SMDK2410\INC\fmd.h (5158, 2003-05-20)
SMDK2410\INC\loader.h (11257, 2006-11-09)
SMDK2410\INC\mpc821.h (39442, 2003-03-02)
SMDK2410\INC\nand.h (2556, 2003-03-02)
SMDK2410\INC\oalintr.h (3086, 2006-11-08)
SMDK2410\INC\oalintr.inc (1296, 2006-11-08)
SMDK2410\INC\oalintra.inc (1147, 2006-11-08)
SMDK2410\INC\p2.h (15386, 2003-04-30)
SMDK2410\INC\p2debug.h (4352, 2003-03-02)
SMDK2410\INC\pc.h (3043, 2003-03-02)
SMDK2410\INC\pcm_dbg.h (519, 2003-03-02)
SMDK2410\INC\physmem.h (1266, 2003-03-02)
SMDK2410\INC\pmplatform.h (1037, 2002-11-29)
SMDK2410\INC\poseidon.h (64353, 2003-03-02)
SMDK2410\INC\posmodc.h (3308, 2003-03-02)
SMDK2410\INC\posmodul.h (3348, 2003-03-02)
SMDK2410\INC\r3912.h (29841, 2003-03-02)
SMDK2410\INC\reg4101.h (16784, 2003-03-02)
SMDK2410\INC\reg4102.h (20927, 2003-03-02)
SMDK2410\INC\reg4300.h (6022, 2003-03-02)
SMDK2410\INC\s2410.h (37994, 2008-03-06)
SMDK2410\INC\sa1100.h (5486, 2003-03-02)
SMDK2410\INC\sh3.h (3175, 2003-03-02)
SMDK2410\INC\sh3.inc (16751, 2003-03-02)
SMDK2410\INC\sh4.h (3331, 2003-03-02)
SMDK2410\INC\sh4.inc (7126, 2003-03-02)
SMDK2410\INC\shx.h (247, 2003-03-02)
SMDK2410\INC\tchaud.h (4063, 2003-03-02)
SMDK2410\INC\warning.h (3575, 2003-05-20)
SMDK2410\KERNEL\b.bat (275, 2003-06-19)
SMDK2410\KERNEL\Build.log (34305, 2006-10-09)
... ...

//--------------------------------------------------------------------- // Copyright (c) Microsoft Corporation // // Module: NAND bootloader // //--------------------------------------------------------------------- Purpose: -------- The NAND bootloader is the first piece of code executed by S3C2410 at power on. The code was based on NAND bootloader from Samsung with some modification to work with Catfish device. Development Tools Required: --------------------------- The NAND bootloader has to fit in 4KB for S3C2410 to boot off NAND flash. There is no simple way to build NAND bootloader using Windows CE tool set. In stead, we used ARM Development Suite v1.2 to build NAND bootloader. Both the retail version and evaluate version of ARM tools can be used. How does it work: ----------------- The boot loader does all the necessary hardware initialization. After that, it will look at block 1 of the NAND flash to read the table of content for the image(s) stored on the NAND flash. The table of content structure is defined in loader.h under Catfish\Inc directory. Two possible scenario are supported with the current bootloader implementation: 1) boot off a second stage boot loader, which is Ethernet bootloader. This is mainly used for development. 2) boot off the image stored on the NAND flash, the image parsing capability is not included with NAND flash to save sapce, so the image on the NAND has to be in RAW format (.nb0 file using Romimage). How to get image and bootloader onto the NAND flash: ---------------------------------------------------- The initial bootloader(s) is downloaded to the NAND flash via JTAG interface using SJF.exe tool provided under Catfish\tools\sjf\bin directory. NAND bootloader (nboot.bin under Catfish\Nboot\bin directory) is loaded via SJF to the block 0 of NAND flash. tocblock1 file, which is located at Catfish\Tools\SJF\bin directory, is loaded using SJF to the block 1 of NAND flash. Eboot.nb0, the Ethernet bootloader, which is located at Catfish\Eboot\bin directory is loaded to the block 2 of NAND flash. After you are done with the above work items, you can start development using Eboot. In order to download the full Pocket PC image to NAND, we need to use imgloader.exe tools which can be built from Catfish\tools\imgloader directory. Here is the steps you need to follow if you are using imgloader to download Pocket PC or any other big image to the NAND ( downloading big image via JTAG is EXTREMELY SLOW ) 1) Set BOOT_LOADER=1 and rebuild Catfish\Drivers\NandFlash\FMD directory 2) Build ImaLoader.exe from Catfish\tools\imgloader directory 3) Build your CE image (Pocket PC or any other CE image). You should get a NK.nb0 file. That is the file you need to store on the NAND. 4) Turn on the power on the device, and using eshell.exe (Catfish\tools\eshell) or PB 3.0 to download small.bin (Catfish\Eboot\bin) 5) At the cesh> prompt, run: s imgloader nk.nb0 to download the image to the NAND 6) For your convience, you may want to modify NAND bootloader so that it will boot from your image instead of Eboot.nb0, by modifying the default boot entry to 1. Dependencies: ------------- None Issues and Recommendations: --------------------------- The NAND bootloader here provides a general framework for you to develop NAND boot loader. The main restriction that we have to deal with is the space restriction (4KB). There are several improvements that can be done to the NAND bootloader: 1) Check ECC when reading from NAND. 2) Provide different table of content structure to allow more flexible way to boot.

近期下载者

相关文件


收藏者