在S3C2440手冊的時鐘一章里有這樣一句:
If HDIVN is not 0, the CPU bus mode has to be changed from the fast bus mode to the asynchronous
bus mode using following instructions(S3C2440 does not support synchronous bus mode).
MMU_SetAsyncBusMode
mrc p15,0,r0,c1,c0,0
orr r0,r0,#R1_nF:OR:R1_iA //請問這句的,#R1_nF:OR:R1_iA是什么意思啊
mcr p15,0,r0,c1,c0,0
還有在VIVI的一段代碼中,在做時鐘初始化時,是這樣來寫的
mrc p15, 0, r1, c1, c0, 0 @ read ctrl register
orr r1, r1, #0xc0000000 @ Asynchronous
mcr p15, 0, r1, c1, c0, 0 @ write ctrl register
請問這個是怎么一回事啊,為什么是0xc0000000 |