亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

君正4750開發板使用日記6-uCOS(minios)的開發配

系統 2649 0

大半年沒有搞君正的開發板了,最近總算有機會再試試JZ4750的uc/osII配置。也在此做個記錄,供參閱。

君正4750開發板使用日記6-uCOS(minios)的開發配置試驗

ucos要在linux環境下編譯,我仍是在windows下用VMWare UbuntuServer910虛擬機,用Putty連接登錄后執行命令。我一開始并沒有拿到了JZ4750的ucos的SDK(隨機光盤上只有一個可燒錄的DEMO),于是從君正官網的FTP里下載了Jz-uCOS-Development-guide.pdf、mipsel-4.1.2-nopic.tar.bz2、ucosii.tar等文件,然后將所有JZ的安裝文件打包成ISO掛在虛擬機光驅上,按照Jz-uCOS-Development-guide.pdf里的說明,進行解壓安裝。

首先是掛載光盤,安裝編譯器工具鏈:

root@ubuntu :~# mkdir -p /opt
root@ubuntu :~# cd /opt

根據過去的經驗,GCC等基本編譯包是必須要裝的:
root@ubuntu:/opt # apt-get install build-essential
...
root@ubuntu:/opt # mount /dev/cdrom /mnt
mount: block device /dev/sr0 is write-protected, mounting read-only
root@ubuntu:/opt # ls /mnt
ucosii.tar mipsel-4.1.2-nopic.tar.bz2
root@ubuntu:/opt # tar -xjf /mnt/mipsel-4.1.2-nopic.tar.bz2
root@ubuntu:/opt # ls
mipsel-4.1.2-nopic
root@ubuntu:/opt # mv mipsel-4.1.2-nopic mipsel-nopic
root@ubuntu:/opt # ls
mipsel-nopic
root@ubuntu:/opt #

然后是設置環境變量,寫個hello.c程序來驗證編譯工具是否安裝成功:

root@ubuntu:/opt # export GCC_EXEC_PREFIX=/opt/mipsel-nopic/lib/gcc/mipsel-linux/4.1.2/
root@ubuntu:/opt # export PATH=/opt/mipsel-nopic/bin:$PATH
root@ubuntu:/opt # vi hello.c

按I進入插入模式,輸入以下內容,按ESC,輸入wq保存退出:
#include <stdio.h>
int main()
{
printf("hello jz-mipsel-linux ucosii/r/n");
return 0;
}
root@ubuntu:/opt # mipsel-linux-gcc -o hello hello.c
mipsel-linux-gcc: error trying to exec 'cc1': execvp: No such file or directory

root@ubuntu:/opt #

非常郁悶,居然連最簡單的HELLO都編譯失敗。網上查一下,說可能是gcc沒裝好或路徑不對,于是又下載重裝更新,瞎折騰了一把,最后發現出錯是因為被文檔誤導了,有GCC_EXEC_PREFIX的環境變量定義反而不行,將其刪除即可:
root@ubuntu:/opt # export -n GCC_EXEC_PREFIX
root@ubuntu:/opt # mipsel-linux-gcc -o hello hello.c
...
/opt/mipsel-nopic/bin/../lib/gcc/mipsel-linux/4.1.2/../../../../mipsel-linux/bin/ld: /opt/mipsel-nopic/bin/../lib/gcc/mipsel-linux/4.1.2/crtend.o: warning: linking PIC files with non-PIC files
/opt/mipsel-nopic/bin/../lib/gcc/mipsel-linux/4.1.2/../../../../mipsel-linux/bin/ld: /opt/mipsel-nopic/bin/../lib/gcc/mipsel-linux/4.1.2/../../../../mipsel-linux/lib/crtn.o: warning: linking PIC files with non-PIC files

root@ubuntu:/opt #

編譯工具鏈裝好了,接著解開ucosii的源碼:

root@ubuntu:/opt # tar -xf /mnt/ucosii.tar
root@ubuntu:/opt # ls
hello hello.c mipsel-nopic ucosii
root@ubuntu:/opt # cd ucosii
root@ubuntu:/opt/ucosii # ls
audio cvs-up-dir.sh jz4740 lwip mips sample ucfs
CVS jz4730 LIBS madplay mmc src ucgui
root@ubuntu:/opt/ucosii #

按文檔說明,我應該要進JZ4750目錄編譯,但顯然此安裝包里沒有這個配置。不管那么多,先到JZ4740子目錄編譯一下:
root@ubuntu:/opt/ucosii # cd jz4740/
root@ubuntu:/opt/ucosii/jz4740 # make
mipsel-linux-gcc -mips32 -O2 -mno-abicalls -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -finit-priority -fomit-frame-pointer -msoft-float -G 0 -DJZ4740_PAV=1 -DCAMERA=0 -DUCGUI=1 -DUCFS=1 -DMMC=1 -DJPEG=1 -DTOUCH=2 -DJZ4740_PAV=1 -DDM=0 -I../src -I../jz4740/include -I../mips -I../jz4740 -I../jz4740/nand -DNAND=1 -DKEYTYPE=1 -I../jz4740/drv/key -DCODECTYPE=1 -I../jz4740/drv/codec -DRTCTYPE=1 -I../jz4740/drv/rtc -DLCDTYPE=1 -I../jz4740/drv/lcd -DTOUCH=2 -I../jz4740/drv/touch -I../mmc -I../ucfs -I../ucgui/Font -I../ucgui/LCDDriver -I../ucgui/Config -I../ucgui/Core -I../ucgui/ConvertColor -I../ucgui/WM -I../ucgui/Widget -I../ucgui/MemDev -I../ucgui/JPEG -DUDC=1 -DNAND_UDC_DISK=1 -DRAM_UDC_DISK=0 -I../jz4740/udc_new/udc_bus -I../jz4740/udc_new/udc_dma -I../jz4740/udc_new/mass_storage -I../jz4740/udc_new/block/ramdisk -I../jz4740/udc_new/block/nanddisk -I../madplay/libmad-0.15.1b -I../madplay/libid3tag-0.15.1b -D_ASSEMBLER_ -D__ASSEMBLY__ -o head.o -c head.S
cc1: error: unrecognized command line option "-finit-priority"
make: *** [head.o] Error 1
root@ubuntu:/opt/ucosii/jz4740 #

這下搞不掂了,重新下載了另一個編譯工具鏈mipsel-linux-gcc412-glibc236-nopic-sf-20101020.tar.bz2一樣不行,改makefile把此選項去掉,又有別的錯誤。折騰了半天,還是不行,最后放棄了這個網上的版本。

然后打電話給君正的技術支持重新要一個ucos的SDK。JZ的人員素質很高,很快就答應了,一會就傳了個minios SDK過來。SDK附帶一個minios sdk使用說明.pdf,看了此文檔后,才知道原來ucos的開發是需要先做資源,包括def、img、str、font和開機畫面等,生成res.bin和ResID.h,以及def_boot.bin、img_boot.bin,然后把ResID.h復制到源碼目錄加入編譯。燒錄時可以多個bin一起燒進去。

這次我拿到的是一個多媒體播放的SDK配置,其主目錄為mtv_50,首先仍是解壓安裝:
root@ubuntu:/opt # tar -xf /mnt/minios.tar
root@ubuntu:/opt # ls
hello hello.c minios mipsel-4.1.2-nopic ucosII ucosii-old
root@ubuntu:/opt # cd minios/
root@ubuntu:/opt/minios # ls
dcdv inc jzfs midware miniclib mtv_50 sample soc_src src

按照文檔說明,把mxu_as文件復制到編譯工具目錄:
root@ubuntu:/opt/minios # cd mtv_50/tools
root@ubuntu:/opt/minios/mtv_50/tools # ls
big5_tools crc32.c gb18030_tools ksc_tools Makefile mxu_as
root@ubuntu:/opt/minios/mtv_50/tools # cp mxu_as /opt/mipsel-nopic/bin/

然后編譯nandboot:

root@ubuntu:/opt/minios/mtv_50/tools # cd ..
root@ubuntu:/opt/minios/mtv_50 # cd ../soc_src/jz4755/nandboot/
root@ubuntu:/opt/minios/soc_src/jz4755/nandboot # make clean
rm -fr *.o nand.elf clock.o debug.o nandboot.o nandlib.o core *.sym *.map *.dump nand.bin *.lib
root@ubuntu:/opt/minios/soc_src/jz4755/nandboot # make
mipsel-linux-gcc -mips32 -O2 -mno-abicalls -fno-pic -fno-builtin -fno-exceptions -ffunction-sections -Wall -Werror -fomit-frame-pointer -msoft-float -G 0 -DSOC_GENERATION=4755 -DUARTQUERY=2 -DHAVE_DCDV=0 -DPLATFORM_CETUS -DPLATFORM_CETUS_4750L -DIMAGE_DECODE_MEM_LEN="(4*1024*1024)" -DAUDIO_DECODE_MEM_LEN="(5*1024*1024)" -DAUDIOTAG_MEM_SIZE="(5*1024*1024)" -DLCD16BPP=0 -DLCD32BPP=1 -DSCREEN_W=480 -DSCREEN_H=272 -DVIDEOMAXMEM=0x81fffc00 -DLCD_TYPE_BPP_32 -DNOT_SUPPORT_TVOUT -DTVOUTTYPE=0 -I../../../soc_src/jz4755/include -I../../../src -I../../../soc_src/jz4755/nandboot -D_ASSEMBLER_ -D__ASSEMBLY__ -o start.o -c start.S
...
mipsel-linux-gcc -nostdlib -T u-boot-nand.lds -o nand.elf start.o clock.o debug.o nandboot.o nandlib.o -lstdc++ -lc -lm -lgcc
mipsel-linux-objcopy -O binary nand.elf nand.bin
mipsel-linux-objdump -d nand.elf > nand.dump
mipsel-linux-nm nand.elf | sort > nand.sym
mipsel-linux-objdump -h nand.elf > nand.map
root@ubuntu:/opt/minios/soc_src/jz4755/nandboot #

一次成功,難得。接著清理并編譯主BIN:
root@ubuntu:/opt/minios/soc_src/jz4755/nandboot # cd /opt/minios/mtv_50/
root@ubuntu:/opt/minios/mtv_50 # make cleanall
#cd ;make clean;#cd ../mtv_50;
make[1]: Entering directory `/opt/minios/mtv_50/desktop'
make[2]: Entering directory `/opt/minios/mtv_50/desktop/simpleness'
rm -fr ../../../mtv_50/desktop/simpleness/rel
...
rm -f *~ *.o ../../../soc_src/LIBS/mass_lib.a depend
make[1]: Leaving directory `/opt/minios/soc_src/common/mass_lib'
root@ubuntu:/opt/minios/mtv_50 #
root@ubuntu:/opt/minios/mtv_50 # make build
...
../../mtv_50/genlds ../../mtv_50/video/rel/video.elf.obj ../../mtv_50/target/mobile_tv.lds > mobile_tv.lds
../../mtv_50/genlds: 4: gawk: not found
make[1]: *** [../../mtv_50/video/rel/video.elf] Error 127
make[1]: Leaving directory `/opt/minios/mtv_50/video'
make: *** [../mtv_50/video] Error 2
root@ubuntu:/opt/minios/mtv_50 #

不出所料又杯具了。不過還好,是缺了gawk這個包,將它裝上就是了:

root@ubuntu:/opt/minios/mtv_50 # apt-get install gawk
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
gawk
0 upgraded, 1 newly installed, 0 to remove and 43 not upgraded.
Need to get 525kB of archives.
After this operation, 2,122kB of additional disk space will be used.
Get:1 http://us.archive.ubuntu.com karmic/main gawk 1:3.1.6.dfsg-0ubuntu2 [525kB]
Fetched 525kB in 4s (114kB/s)
Selecting previously deselected package gawk.
(Reading database ... 40315 files and directories currently installed.)
Unpacking gawk (from .../gawk_1%3a3.1.6.dfsg-0ubuntu2_i386.deb) ...
Processing triggers for install-info ...
Processing triggers for man-db ...
Setting up gawk (1:3.1.6.dfsg-0ubuntu2) ...

root@ubuntu:/opt/minios/mtv_50 #

這次終于編譯通過了:

root@ubuntu:/opt/minios/mtv_50 # make build
...
head:----------------------------------
name = desktoplib_drawer.bin
nand = 6954
start = 0x80451000
size = 12160
---------------------------------------
head:----------------------------------
name = desktoplib_tradition.bin
nand = 6960
start = 0x80451000
size = 8728
---------------------------------------
Total File Count 62 Link File Count 62!
make: [app] Error 1 (ignored)
make: [app] Error 1 (ignored)
cp -f HostLink/minios.bin ../../
root@ubuntu:/opt/minios/mtv_50 #

其輸出文件minios.bin在/opt下:

root@ubuntu:/opt/minios/mtv_50 # cd ../../
root@ubuntu:/opt # ls -l
total 14504
-rwxr-xr-x 1 root root 572102 2010-12-07 02:44 hello
-rw-r--r-- 1 root root 105 2010-12-07 02:44 hello.c
drwxrwxrwx 11 root root 4096 2010-04-14 03:15 minios
-rw-r--r-- 1 root root 14264320 2010-12-07 05:00 minios.bin
drwxr-xr-x 10 508 500 4096 2008-03-25 00:52 mipsel-nopic
root@ubuntu:/opt #

文檔上還需要編譯minios/loader,但我沒有這個目錄。搜一下,最后發現在minios/mtv_50/loader目錄下,于是編譯之:

root@ubuntu:/opt/minios/mtv_50 # cd loader
root@ubuntu:/opt/minios/mtv_50/loader # make clean
rm -fr ../../mtv_50/loader/target
root@ubuntu:/opt/minios/mtv_50/loader # make
Compile: ../../soc_src/common/kernel_lib/head.S
Compile: ../../miniclib/libc_s.S
Compile: ../../soc_src/jz4755/kernel/clock.c
...
144 0 0 144 90 os_dbg.o (ex ../../src/minios.a)
2216 0 20496 22712 58b8 os_cpu_a.o (ex ../../src/minios.a)
148272 1632 49600 199504 30b50 (TOTALS)
text data bss dec hex filename
150896 1688 82532 235116 3966c ../../mtv_50/loader/target/loader.elf
150896 1688 82532 235116 3966c (TOTALS)
root@ubuntu:/opt/minios/mtv_50/loader #

接下來就是將所有BIN文件拷到燒錄目錄下,執行燒錄了。

至此基本上把JZ4750的主要幾種系統的開發模式都淺嘗試驗過了,都沒有做深入的軟硬件配置和應用開發,但感覺還是比較復雜。君正在UCOS上的資料還是太少,網上的源碼包和文檔都太久不更新過于陳舊,離開了技術支持絕對是不行的,對原廠商依賴性太強,需要提供較多的服務支持,這對其方案應用的發展來說顯然是有限制的。

順便解釋一下這里所謂的minios與uC/OS的關系,其實minios一般就是硬件方案廠商在uC/OS的基礎上作了移植開發增強功能的結果。移植的意思是從一種硬件架構移到另一種,因為不同的硬件方案中CPU指令、寄存器、時鐘中斷、數據類型等都不同,所以需要移植修改。比如凌陽的開發板會附帶一個凌陽從uC/OS移植過來的minios;我拿到的這個minios,其實是君正在uC/OS II的基礎上移植開發的。

君正4750開發板使用日記6-uCOS(minios)的開發配置試驗


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 中文字幕一二三区 | 亚洲国产日本 | 国产福利在线观看永久免费 | 国内精品久久久久久影院老狼 | 午夜国产精品久久影院 | 香蕉久久网站 | 天天做天天爱天天爽 | 天天做天天爱天天一爽一毛片 | 亚洲 欧美 国产 中文 | 啪啪网站色大全免费 | 中文字幕一二区 | 亚洲日本人成网站在线观看 | 国产精品成人一区二区1 | 色婷婷精品大全在线视频 | 午夜精品影院 | 精品动漫中文字幕一区二区三区 | 久久久免费网站 | a级毛片免费完整视频 | 久久的精品99精品66 | 中国性猛交xxxxx免费看 | 久草国产精品视频 | 老湿机午夜影院 | 九九色播 | 国内精品久久久久久久999下 | 国产成人高清精品免费观看 | 欧美精品久久久久久久小说 | 日韩综合图区 | 天天射天天 | 女性一级全黄生活片在线播放 | 久久久久免费精品视频 | 一级毛片私人影院 | 国产最新网站 | 欧美在线观看一区 | 亚洲欧美国产视频 | 波多野结衣3女同在线观看 波多野结衣av1区2区3区 | 精品哟啊呦v视频在线观看 精品哟哟国产在线观看 | 在线不卡视频 | 99热久久这里只有精品 | 九九热re| 日日噜噜夜夜躁躁狠狠 | 四虎影视国产精品永久在线 |