|
|
发表于 2009-10-13 14:24:33
|
显示全部楼层
回复 3# huyibo 的帖子
如果你说只考虑status中的bit 0,我想你的程序应该是不够严谨的。有时候我们其实不用考虑全部情况就可以把信息读出来这是有可能的。但是正如你现在遇到的问题,假如我们不把我们的程序考虑的完全点,那么我们的程序就可能有潜在的bug,也许一两次你还发现不了。smbus的操作一共有N个步骤,而且每个步骤都必须要去检查某些状态位等等(比如说data准备好了没有呀,bus是不是还在被占用呀什么的。。。我都忘记了,是不是data)。个人建议你还是参考一下bios code里的操作吧,这样比较严谨点。橘皮书上也有关于读取spd的操作。
7 j) `* z; f* n# s' q1 e这个链接里有比较简单的介绍,(但是判断状态位还是没有写出来,有点担心会侵权之类的。。。)0 f" b6 N* m; A5 R( o; p( c
http://blog.csdn.net/lightseed/archive/2009/07/30/4392697.aspx- X- w# M: f' _$ ?& g6 E( b7 B
总之,你的状态位判断尽量多点,这样会更加严密。否则就会出现莫名其妙的错误。: S! h0 C8 F B6 i$ y3 ?
8 f T1 {) K- U' F一下是在程式设计俱乐部上的一篇帖子的一部分,供你参考希望对你有用。$ C3 }6 F3 [$ b( p9 R7 B/ a
>Step 1.Make sure status bits is clear(in SMB Host Status), F/ y7 z) Y/ P
>Step 2.write the slave address to SMB Host Address(make care bit 0 is1 n& o( s' Y" c4 d
>Write)
! y1 O% Y! Q* }4 b$ T) R' D>Step 3.write EEPROM byte index to SMB Host Command" }3 L; Y; g7 H. a. Z8 L
>Step 4.write the slave address to SMB Host Address(make care bit 0 is
9 @ b2 V$ c+ T7 Q>Read): m0 p1 V/ D9 I/ J. a7 ?
>Step 5.Set byte read/wirte protocol with start bits enable to SMB Host Control( S! ?3 H; b/ w0 b
>Step 6.Check status BUSY bit to make sure transation is complete& }6 B* p% _' [4 Q) B0 w
>(in SMB Host Status)) g* r& e$ x8 ~; o7 g* c$ m
>Step 7.Read data From SMB Host Data 0& ^# `$ M7 [5 g0 k; C
>Step 8.If no error, return to step 1' r( m& Z2 Q. ^4 l# \- F
1. step 1 & 2 中間可能需要 kill bus...(depends on platform design)( e) D3 S o, @- S+ u" t8 W
2. step 2 & 4 不是很懂...想表達的是 ?( o2 A9 q7 ~( a. y
3. Step 6時,除了check complete status,也要 check error status...6 \: T) J9 v" v3 _
if complete then get data6 B% A: h; M0 Y$ ^0 Q; S( n; _7 ~
if error then do error handling5 R4 g+ ~; X# ~2 D8 N" B
( Ex. kill bus->clear status...etc, depends on platform design )1 z% p7 F& j) v: U7 ^
: I/ {, M. d- i. B" U[ 本帖最后由 LightSeed 于 2009-10-13 14:33 编辑 ] |
|