uclinux-2008R1-RC8(bf561)到VDSP5的移植(3):Head.s

 
  
uclinux系统的入口点为head.s,因此先将此文件添加到corea.dlb,先改下语法错误。
1             时钟配置
因为没有使用引导程序,因此在内核启动时需要重新配置CPU的运行速度。在config.h中添加以下定义:
 
// 时钟配置
#define CONFIG_CLKIN_HZ                        27000000      // 晶振频率
#define CONFIG_VCO_MULT                        22                 // 内核倍频
#define CONFIG_CCLK_DIV                        1                  // 内核分频
#define CONFIG_SCLK_DIV                        6                  // 系统分频
 
// SDRAM 配置
#define CONFIG_MEM_GENERIC_BOARD          1
#define CONFIG_MEM_SIZE                        64                 // 内存容量
#define CONFIG_MEM_ADD_WIDTH                   9                  // 位宽
 
#define CONFIG_BFIN_KERNEL_CLOCK          1                  // 配置时钟
2             __INIT
在include/linux/init.h中定义了这样一个宏:
#define __INIT         .section ".init.text","ax"
而VDSP5显然是不支持这样的定义的。
因为我的板子使用的是方式1启动,而head.s则是系统的入口,在启动时bf561的boot rom必然要将其写入到L1的0xffa0 0000,所以没有必要将其放到.init.text这个段中。直接在head.s中将
__INIT
这行注释掉。
同时加上以下几行:
.section/DOUBLEANY program;
.file_attr requiredForROMBoot;
.align 2;
3             trace_buffer_init
在head.s中有这样一行
       trace_buffer_init(p0,r0);
中vdsp中编译出错:
[Error ea5004] "../../arch/blackfin/mach-bf561/head.S":105 Syntax Error in :
;
syntax error is at or near text ';'.
Attempting error recovery by ignoring text until the ';'
    trace_buffer_init的定义,在include/asm/trace.h中
#define trace_buffer_init(preg, dreg) /
     preg.L = LO(TBUFCTL);         /
     preg.H = HI(TBUFCTL);         /
     dreg = BFIN_TRACE_INIT;       /
     [preg] = dreg;
看着没什么问题,原来在
       trace_buffer_init(p0,r0);
这行的末尾多了个分号!
4             ENDPROC
Head.s中有一行:
ENDPROC(__start)
其错误为:
[Error ea5004] "../../arch/blackfin/mach-bf561/head.S":242 Syntax Error in :
.type __start, @function; .size __start, .-__start
syntax error is at or near text '@'.
Attempting error recovery by ignoring text until the ';'
查了下ENDPROC的定义,在 include/linux/linkage.h 中:
#ifndef END
#define END(name) /
 .size name, .-name
#endif
 
#ifndef ENDPROC
#define ENDPROC(name) /
 .type name, @function; /
 END(name)
#endif
VDSP不需要使用
.size name, .-name
这样的定义,因此直接修改为:
#ifndef ENDPROC
#define ENDPROC(name) /
     #name.end:
#endif
5             __FINIT
在head.s中有这样一行:
__FINIT
这个宏在include/linux/init.h中定义为:
#define __FINIT        .previous
在VDSP的帮助中对.previos的说明为:
The .PREVIOUS directive instructs the assembler to set the current section in memory to the section described immediately before the current one. The .PREVIOUS directive operates on a stack.
Syntax:
   .PREVIOUS;
很明显,uclinux的定义少了个分号,嘿嘿。
#define __FINIT        .previous;

你可能感兴趣的:(uclinux-2008R1-RC8(bf561)到VDSP5的移植(3):Head.s)