|
|
发表于 2009-10-13 14:24:33
|
显示全部楼层
回复 3# huyibo 的帖子
如果你说只考虑status中的bit 0,我想你的程序应该是不够严谨的。有时候我们其实不用考虑全部情况就可以把信息读出来这是有可能的。但是正如你现在遇到的问题,假如我们不把我们的程序考虑的完全点,那么我们的程序就可能有潜在的bug,也许一两次你还发现不了。smbus的操作一共有N个步骤,而且每个步骤都必须要去检查某些状态位等等(比如说data准备好了没有呀,bus是不是还在被占用呀什么的。。。我都忘记了,是不是data)。个人建议你还是参考一下bios code里的操作吧,这样比较严谨点。橘皮书上也有关于读取spd的操作。, ?2 l7 S @' ]- [
这个链接里有比较简单的介绍,(但是判断状态位还是没有写出来,有点担心会侵权之类的。。。)' m& ] c& h% L1 F1 B0 \
http://blog.csdn.net/lightseed/archive/2009/07/30/4392697.aspx1 o3 O4 q% n; `; K- J% @' _
总之,你的状态位判断尽量多点,这样会更加严密。否则就会出现莫名其妙的错误。
2 G. f! G" F3 p# O9 ?+ a! G, D$ Z
P/ Q7 l# G$ h9 N/ R9 [一下是在程式设计俱乐部上的一篇帖子的一部分,供你参考希望对你有用。0 C* K% c) O3 v4 D1 Q8 S
>Step 1.Make sure status bits is clear(in SMB Host Status)) t/ s& }+ l `0 X+ K# j
>Step 2.write the slave address to SMB Host Address(make care bit 0 is
9 V& l9 s$ _ \>Write)
; k* N/ C+ ~, F# K- F>Step 3.write EEPROM byte index to SMB Host Command
( m$ Z: |* e2 e M>Step 4.write the slave address to SMB Host Address(make care bit 0 is
- Y3 h& @# J! H7 b: ?>Read)! h$ d7 @# R N. m: t
>Step 5.Set byte read/wirte protocol with start bits enable to SMB Host Control
0 Y& ^: ]$ J( |4 Q0 a>Step 6.Check status BUSY bit to make sure transation is complete
; G( k% B! [/ S- X>(in SMB Host Status)1 x9 N# p: W1 X+ S
>Step 7.Read data From SMB Host Data 0
) S8 O$ i% ~7 H. Z; i7 X>Step 8.If no error, return to step 1
9 q* }: a6 Q1 I1. step 1 & 2 中間可能需要 kill bus...(depends on platform design)
, I& u+ U2 h7 N/ P. o( m2. step 2 & 4 不是很懂...想表達的是 ?
/ E0 _9 d H3 P3. Step 6時,除了check complete status,也要 check error status...
8 ]; F- I+ C# cif complete then get data0 j- d" Q* C' }( |
if error then do error handling
& t$ _% }8 O! t- c' S1 m( Ex. kill bus->clear status...etc, depends on platform design ); O Q$ ~8 f8 c
3 |! \: a9 S/ [- J9 [4 N[ 本帖最后由 LightSeed 于 2009-10-13 14:33 编辑 ] |
|