请问高手VXWORKS中怎么打开cache?看了一下代码和别人介绍,好象是这样的
1、SYS_HW_INIT_0,最好放在最前面,里面应该包含cacheArm920tLibInstall和mmuArm920tLibInstall
2、cacheLibInit
3、cacheEnable
4、usrMmuInit
但是不知道第一步是不是一定需要,而且SYS_HW_INIT_0在哪里定义,主要做什么工作?
请大家指点指点
/*******************************************************************************
*
* sysHwInit0 - perform early BSP-specific initialisation
*
* This routine performs such BSP-specific initialisation as is necessary before
* the architecture-independent cacheLibInit can be called. It is called
* from usrInit() before cacheLibInit(), before sysHwInit() and before BSS
* has been cleared.
*
* RETURNS: N/A
*/
void sysHwInit0 (void)
{
#ifdef INCLUDE_CACHE_SUPPORT
/*
* Install the appropriate cache library, no address translation
* routines are required for this BSP, as the default memory map has
* virtual and physical addresses the same.
*/
cacheArm920tLibInstall (NULL, NULL);
#endif /* INCLUDE_CACHE_SUPPORT */
#ifdef INCLUDE_MMU_BASIC
/* Install the appropriate MMU library and translation routines */
mmuArm920tLibInstall (NULL, NULL);
#endif /* defined(INCLUDE_MMU) */
return;
}