找回密码
 加入计匠网
搜索
热搜: BIOS ACPI CPU Windows
查看: 10190|回复: 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);
    9 l" G* \3 R3 e! I' b
  2.   //
    ! _, ~! Q2 F8 e3 P& L
  3.   // The SetJump returns EFI_SUCCESS when LongJump Buffer has been armed3 `( e! `$ ]2 q9 ^
  4.   // SetJump returns EFI_WARN_RETURN_FROM_LONG_JUMP as a result of the LongJump
    " |% G) a  P( Z
  5.   // All other return values for SetJump are undefined.
    5 ?& m$ U' m2 _1 N0 ?: [, C& Q+ m
  6.   //
    6 \- g3 V0 ?) q
  7.   if (Status == EFI_SUCCESS) {
    # ~7 p4 W1 w8 m( N! H# A# Q, ~

  8. 3 t; [$ O8 ?9 F* {
  9.     //
    1 E1 K$ g9 w$ |5 B, `
  10.     // Call the image's entry point
    7 H" Q9 y) P! l7 q
  11.     //
    9 c$ c0 h) u; |1 Y* c/ i
  12.     Image->Started = TRUE;
    * z& K8 T8 w& Y, \. K
  13.     Image->Status = Image->EntryPoint (ImageHandle, Image->Info.SystemTable);7 h  ^# _0 H% Q  r' g1 y" v  Z

  14. $ R: f9 p# T4 t) y. e3 p* q
  15.     //
    % l6 _* j( j( Y3 U& S
  16.     // Add some debug information if the image returned with error. 3 v1 G7 ^4 {8 M
  17.     // This make the user aware and check if the driver image have already released
      U6 D# _% a3 q% I: J5 W
  18.     // all the resource in this situation.
    " ]; m7 w' {- P- B$ J7 C0 b; I
  19.     //
    2 }/ a* r' t- y0 B! ^! r
  20.     DEBUG_CODE (
    / k% r, `: l, }! d9 a
  21.       if (EFI_ERROR (Image->Status)) {
    $ a& k* B! X2 l  o$ E
  22.         DEBUG ((EFI_D_ERROR, "Error: Image at %08X start failed: %x\n", Image->Info.ImageBase, Image->Status));
    * ^& ^$ Z8 a7 X# @
  23.       }1 O+ ?/ o0 y+ m; C( v8 }
  24.     )
    , ]+ J2 d) D8 i3 d- c. E# C
  25.    
    ' k* ~$ r6 f6 c; i% n. ~- c8 k& `
  26.     //3 y7 V1 }# i. N% f+ G+ u! Q
  27.     // If the image returns, exit it through Exit()
    , J7 l& N% L: F+ l; `5 p
  28.     //- m' C  H9 \" B& C
  29.     CoreExit (ImageHandle, Image->Status, 0, NULL);, G; s& I0 p) y+ v% `: z
  30.   }
复制代码
调用DXE driver前,为什么要用SetJump保存CPU的信息,driver返回后,再用CoreExit--LongJump恢复到SetJump时的状态" B8 k/ R, d, ?
既然driver可以返回,为什么非要这样恢复到调用前的状态呢?难道在调用driver的过程CPU的状态可能会被破坏吗?1 n; x& b0 e7 j4 I& H
而且目前来看driver只会返回Status而已,根据这个就可以做处理了.
' q* m' A: F, j
- I* p9 ~# m& ^+ Y+ j我感觉有点多此一举了...不解
发表于 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。& h( P% p" U  v! b4 b

0 e. ^8 |. a* W7 B! |2 v$ CEFI_PEI_TRANSFER_CONTROL_PROTOCOL提供的SetJump/LongJump函数就是支持Exit boot service用的。类似于C的setjmp和longjmp库函数。
回复

使用道具 举报

 楼主| 发表于 2008-10-31 10:03:16 | 显示全部楼层
有点了解了,Exit()可以直接退出返回一些参数.( d* p+ ~+ ?" K8 g& u
没有用过,暂且记下了.
5 X) V& q) x; z6 w7 @+ r4 ^& ~2 {& x' I2 O2 D
非常感谢!!!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-12-1 02:18 , Processed in 0.077344 second(s), 17 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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