找回密码
 加入计匠网
搜索
热搜: BIOS ACPI CPU Windows
查看: 9591|回复: 3

请教: UEFI CoreStartImage中为什么用EFI_PEI_TRANSFER_CONTROL_PROTOCOL?

[复制链接]
发表于 2008-10-28 10:50:31 | 显示全部楼层 |阅读模式
EDK_20080905(各家IBV的应该类似),文件Image.c,在CoreStartImage(),如下一段中:
  1.   Status = gEfiPeiTransferControl->SetJump (gEfiPeiTransferControl, Image->JumpContext);- w5 H8 [' @& f. J0 z3 l0 p
  2.   //
    4 k5 R) W' X, X* m; p3 ?/ t
  3.   // The SetJump returns EFI_SUCCESS when LongJump Buffer has been armed1 b7 Y& N6 n2 Q. A% v  n5 r
  4.   // SetJump returns EFI_WARN_RETURN_FROM_LONG_JUMP as a result of the LongJump2 \: @( b. g) N0 G" W) E5 K
  5.   // All other return values for SetJump are undefined.
    1 m& l/ c8 }9 Q) m, t) s
  6.   //
    ( u: {* e. k7 m0 ~
  7.   if (Status == EFI_SUCCESS) {
    . F3 B6 g4 j5 k0 X0 b+ q6 C
  8. $ W  g4 E5 D% _3 P+ s" a
  9.     //1 o/ o" A$ K6 m$ S' H' ~
  10.     // Call the image's entry point+ d% M& N4 E8 u8 M; U6 ?
  11.     //
    + k3 e+ ^  E9 U. A
  12.     Image->Started = TRUE;
    * K# Q9 C0 K" B2 T4 s6 a  k& H% t
  13.     Image->Status = Image->EntryPoint (ImageHandle, Image->Info.SystemTable);
    . S' ~! i, j8 v* y9 ~" n0 f

  14. , G3 [& ?0 M" x3 `- Y" L1 q# ^
  15.     //
    . S) ~5 ~/ H& ^; G7 l
  16.     // Add some debug information if the image returned with error. 7 _  P! S3 Z7 I2 @
  17.     // This make the user aware and check if the driver image have already released
    2 O7 r" A4 o( n0 Q* [0 P! \& |
  18.     // all the resource in this situation. 4 o- W/ |) q, U' H# A! k
  19.     /// i- b4 I/ Z2 ]' `8 l6 l/ z
  20.     DEBUG_CODE (
    & E0 Y. z: x# s9 F- f
  21.       if (EFI_ERROR (Image->Status)) {
    " K  I! a  V. Q
  22.         DEBUG ((EFI_D_ERROR, "Error: Image at %08X start failed: %x\n", Image->Info.ImageBase, Image->Status));
    ( d  o6 @- Z; k) {: \8 x
  23.       }+ t- \! C. p2 j. C/ s+ j
  24.     )
    * B) F7 D4 ~) [
  25.    
    ' E" n  t! A0 f. I% |
  26.     //5 I0 x3 N" Z6 e1 g  @
  27.     // If the image returns, exit it through Exit()
    0 U, d% Y4 A0 e# W+ [
  28.     //; t- Y+ l. {8 c( ]- Z
  29.     CoreExit (ImageHandle, Image->Status, 0, NULL);1 {6 e- ^# V3 Z- r4 _4 k
  30.   }
复制代码
调用DXE driver前,为什么要用SetJump保存CPU的信息,driver返回后,再用CoreExit--LongJump恢复到SetJump时的状态
9 A; S4 M3 g  ^$ y+ J$ e5 Z2 u5 M既然driver可以返回,为什么非要这样恢复到调用前的状态呢?难道在调用driver的过程CPU的状态可能会被破坏吗?: P) s7 V$ b7 P( ?+ O9 N
而且目前来看driver只会返回Status而已,根据这个就可以做处理了.
/ Z3 [8 m. Q4 J
3 f" |2 h8 s4 g0 C: X, C& n( g: Y我感觉有点多此一举了...不解
发表于 2008-10-28 22:29:18 | 显示全部楼层
我觉得可能是要保证DXE driver之间的独立性吧。
回复

使用道具 举报

发表于 2008-10-29 13:42:13 | 显示全部楼层
C程序可以用return语句在main()里退出,也可以用exit()函数在程序里任何合适的地方退出。UEFI也提供了类似的机制,即Exit boot service。与从UEFI driver的入口函数中用return退出相比,用Exit()除了可以在其它的函数中直接退出,而不用先返回到入口函数再退出之外,还可以返回额外的Exit data。& J7 z: K( F$ _, ^1 f; J- t

. ^, ^4 z3 J) W8 K- f  A: G' y( xEFI_PEI_TRANSFER_CONTROL_PROTOCOL提供的SetJump/LongJump函数就是支持Exit boot service用的。类似于C的setjmp和longjmp库函数。
回复

使用道具 举报

 楼主| 发表于 2008-10-31 10:03:16 | 显示全部楼层
有点了解了,Exit()可以直接退出返回一些参数.
7 r1 w6 v; ^, t1 h* L没有用过,暂且记下了.
1 b* ~4 {4 x- E9 [& l. I- D
; r6 J, W! d! b7 g% z/ d非常感谢!!!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 加入计匠网

本版积分规则

Archiver|手机版|小黑屋|计匠网

GMT+8, 2024-12-4 01:08 , Processed in 0.039175 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表