|
|
发表于 2009-10-13 14:24:33
|
显示全部楼层
回复 3# huyibo 的帖子
如果你说只考虑status中的bit 0,我想你的程序应该是不够严谨的。有时候我们其实不用考虑全部情况就可以把信息读出来这是有可能的。但是正如你现在遇到的问题,假如我们不把我们的程序考虑的完全点,那么我们的程序就可能有潜在的bug,也许一两次你还发现不了。smbus的操作一共有N个步骤,而且每个步骤都必须要去检查某些状态位等等(比如说data准备好了没有呀,bus是不是还在被占用呀什么的。。。我都忘记了,是不是data)。个人建议你还是参考一下bios code里的操作吧,这样比较严谨点。橘皮书上也有关于读取spd的操作。 A" }$ K' I1 `+ K( m* K* y: y2 V
这个链接里有比较简单的介绍,(但是判断状态位还是没有写出来,有点担心会侵权之类的。。。)
~1 N+ @5 L8 \6 nhttp://blog.csdn.net/lightseed/archive/2009/07/30/4392697.aspx
) ^& B; V" I, ^+ M# ], f% t总之,你的状态位判断尽量多点,这样会更加严密。否则就会出现莫名其妙的错误。
. e7 V9 R8 Z1 [ U) z6 Z9 N P" r4 a/ U) O$ Q9 R4 m
一下是在程式设计俱乐部上的一篇帖子的一部分,供你参考希望对你有用。3 c- W: c" E& j4 T
>Step 1.Make sure status bits is clear(in SMB Host Status): P% x/ m% z. ?8 t8 [$ y- q) X
>Step 2.write the slave address to SMB Host Address(make care bit 0 is
' B7 I) m( R" a, a, k>Write)1 z2 g' I% V( Z' S& i8 F
>Step 3.write EEPROM byte index to SMB Host Command' H* Z# R% I6 a& c
>Step 4.write the slave address to SMB Host Address(make care bit 0 is/ \/ V! _+ D1 p# Q# ]4 @0 r% [
>Read)
9 J: P4 ^4 Y4 N0 U1 h" {>Step 5.Set byte read/wirte protocol with start bits enable to SMB Host Control
5 s4 F* e, s5 N/ t: ^4 ]4 J- K>Step 6.Check status BUSY bit to make sure transation is complete3 |+ b: l: M) K; n
>(in SMB Host Status)
! ^1 p; r$ y- \; T" g( ^>Step 7.Read data From SMB Host Data 0
, }( P+ \. S/ G5 W7 c2 L! _>Step 8.If no error, return to step 1
( H( p) [# r3 k1. step 1 & 2 中間可能需要 kill bus...(depends on platform design)4 `2 V" H* t( B& M: }* v* A
2. step 2 & 4 不是很懂...想表達的是 ?$ u6 U8 n, @: F. H" L6 P. @- C+ a
3. Step 6時,除了check complete status,也要 check error status...# S0 e, Q; ~% l1 [4 D( Q0 a* \' O
if complete then get data
1 J* N7 l6 f1 ~/ kif error then do error handling6 M- V, M3 F# I) b' h9 R! `
( Ex. kill bus->clear status...etc, depends on platform design )
7 H; V# F- B( k0 x7 ]- Z. k, U) a$ f
[ 本帖最后由 LightSeed 于 2009-10-13 14:33 编辑 ] |
|