[bsp][qemu-vexpress-gemini] fix build error.
This commit is contained in:
parent
77bcf46ccb
commit
dc9e8df3c3
|
@ -81,7 +81,7 @@ CONFIG_RT_VER_NUM=0x40004
|
||||||
CONFIG_ARCH_ARM=y
|
CONFIG_ARCH_ARM=y
|
||||||
CONFIG_RT_USING_CPU_FFS=y
|
CONFIG_RT_USING_CPU_FFS=y
|
||||||
CONFIG_ARCH_ARM_CORTEX_A=y
|
CONFIG_ARCH_ARM_CORTEX_A=y
|
||||||
CONFIG_RT_NO_USING_GIC=y
|
CONFIG_RT_USING_GIC_V2=y
|
||||||
CONFIG_ARCH_ARM_CORTEX_A9=y
|
CONFIG_ARCH_ARM_CORTEX_A9=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -23,6 +23,7 @@ config SOC_VEXPRESS_GEMINI
|
||||||
select ARCH_ARM_CORTEX_A9
|
select ARCH_ARM_CORTEX_A9
|
||||||
select RT_USING_COMPONENTS_INIT
|
select RT_USING_COMPONENTS_INIT
|
||||||
# select RT_USING_USER_MAIN
|
# select RT_USING_USER_MAIN
|
||||||
|
select RT_USING_GIC_V2
|
||||||
default y
|
default y
|
||||||
|
|
||||||
source "$BSP_DIR/drivers/Kconfig"
|
source "$BSP_DIR/drivers/Kconfig"
|
||||||
|
|
|
@ -30,4 +30,21 @@ void rt_hw_cpu_shutdown()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef RT_USING_CPU_FFS
|
||||||
|
/**
|
||||||
|
* This function finds the first bit set (beginning with the least significant bit)
|
||||||
|
* in value and return the index of that bit.
|
||||||
|
*
|
||||||
|
* Bits are numbered starting at 1 (the least significant bit). A return value of
|
||||||
|
* zero from any of these functions means that the argument was zero.
|
||||||
|
*
|
||||||
|
* @return return the index of the first bit set. If value is 0, then this function
|
||||||
|
* shall return 0.
|
||||||
|
*/
|
||||||
|
int __rt_ffs(int value)
|
||||||
|
{
|
||||||
|
return __builtin_ffs(value);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*@}*/
|
/*@}*/
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
#define ARCH_ARM
|
#define ARCH_ARM
|
||||||
#define RT_USING_CPU_FFS
|
#define RT_USING_CPU_FFS
|
||||||
#define ARCH_ARM_CORTEX_A
|
#define ARCH_ARM_CORTEX_A
|
||||||
#define RT_NO_USING_GIC
|
#define RT_USING_GIC_V2
|
||||||
#define ARCH_ARM_CORTEX_A9
|
#define ARCH_ARM_CORTEX_A9
|
||||||
|
|
||||||
/* RT-Thread Components */
|
/* RT-Thread Components */
|
||||||
|
|
Loading…
Reference in New Issue