一.tvout_app的移植
為了測試S3C6410的電視輸出,我拿了官方的tvout_app中的測試,這個做的相當初糙,好象是很老的版本,在更改了Makefile後編譯,最後發現有函數未定義
/home/huisen/project/tvout/tvout_app/tv_test.c:450: undefined reference to `s3c_get_media_memory'
查看源碼是這個原因造成的
ctrl.value = POST_BUFF_BASE_ADDR;
而這個宏是如下定義
#define POST_BUFF_BASE_ADDR (UINT32)s3c_get_media_memory(S3C_MDEV_TV)
這個應用程序直接調用驅動裡的函數,這在LINUX是不可以的。我估計三星也沒把這TVOUT當回事,直接就發布了,編譯通不過也不管。雖然在培訓上s3c6410用的很多,但是很多細節上來看,在花了很長時間做s3c2440後,三星匆忙推出s3c6410,然後大隊人馬就去搞s5p系列了。留一下一堆問題。
一種最簡單方法是擴展s3c-tvenc的驅動,增加一個VIDIOC_G_CTRL的ioctl指令,讓其在驅動中調用s3c_get_media_memory.
在s3c-tvenc.c 增加如下代碼:
新增函數: s3c_tvenc_get_v4l2_control()
在s3c_tvenc_do_ioctl()增加命令支持
- static int s3c_tvenc_get_v4l2_control(struct v4l2_control *ctrl)
- {
- switch(ctrl->id) {
- case V4L2_CID_MPEG_STREAM_PID_VIDEO:
- ctrl->value = tv_param.sp.SrcFrmSt;
- return 0;
- default:
- return -EINVAL;
- }
- return 0;
-
- }
- static int s3c_tvenc_do_ioctl(struct inode *inode,struct file *filp,unsigned int cmd,void *arg)
- {
- // ...
- /* add by Andrew Huang */
- case VIDIOC_G_CTRL:
- {
- struct v4l2_control *ctrl = arg;
- //printk("P: VIDIOC_S_CTRL \n");
- ret = s3c_tvenc_get_v4l2_control(ctrl);
- return ret;
- }
- // ...
- }
修改tv_test.c 代碼,增加對上述ioctl命令的調用
修改 450行,增加如下代碼
- //add by Andrew Huang
- #if 1
- ret = ioctl(tvout_fp, VIDIOC_G_CTRL, &ctrl);
- if(ret < 0) {
- printf("V4L2 APPL : ioctl(VIDIOC_G_CTRL) failed\n");
- goto err;
- }
- #else
- //ctrl.value = POST_BUFF_BASE_ADDR; // 編譯通不過
- #endif
去掉一些編譯警告後,可以測試了。
- [root@huisen tvout_app]# make clean
- rm -f tv_test ./tv_test.o ./FrameExtractor.o ./SsbSipH264Decode.o ./H264Frames.o ./SsbSipMfcDecode.o ./SsbSipLogMsg.o
- [root@huisen tvout_app]# make
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o tv_test.o tv_test.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o FrameExtractor.o FrameExtractor.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o SsbSipH264Decode.o SsbSipH264Decode.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o H264Frames.o H264Frames.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o SsbSipMfcDecode.o SsbSipMfcDecode.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -c -o SsbSipLogMsg.o SsbSipLogMsg.c
- arm-linux-gcc -Wall -O0 -lpthread -I/home/huisen/rom/mini6410/linux-2.6.28.6/include -I. -g -o tv_test ./tv_test.o ./FrameExtractor.o ./SsbSipH264Decode.o ./H264Frames.o ./SsbSipMfcDecode.o ./SsbSipLogMsg.o -lpthread