找回密码
 加入计匠网
搜索
热搜: BIOS ACPI CPU Windows
查看: 9245|回复: 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 m9 V" {1 W+ R6 N
  2.   //' u% X! S% D4 d; Q) X7 n% e) G
  3.   // The SetJump returns EFI_SUCCESS when LongJump Buffer has been armed
    4 @1 M( _1 u$ H2 l3 a. z/ G6 M2 W
  4.   // SetJump returns EFI_WARN_RETURN_FROM_LONG_JUMP as a result of the LongJump
    ' q2 }' E4 [: L" w9 o6 R& W+ }- x; ^* U& m
  5.   // All other return values for SetJump are undefined.
    $ D% z6 b* f" b1 @
  6.   //% }6 e: J9 E9 J6 x, S, U
  7.   if (Status == EFI_SUCCESS) {
    9 J8 ?" T, E  k; [8 @

  8. ) n+ _' I% Y" J4 ~  h$ I
  9.     //1 D  ]* |& A0 ~1 J
  10.     // Call the image's entry point8 d) I; p6 \2 u8 d; V  [" s
  11.     //
    1 `' d. C) o5 U
  12.     Image->Started = TRUE;  }: i5 s) {0 o$ M2 i
  13.     Image->Status = Image->EntryPoint (ImageHandle, Image->Info.SystemTable);
    & S. Z! z( D5 @3 l% j; ?2 C
  14. ( G0 ^& \7 a$ `# ]6 h) R1 ^/ L, R
  15.     //
    $ G+ w1 U) s5 l- s, {0 J
  16.     // Add some debug information if the image returned with error.
    1 S5 y/ W% M+ T. W' `! d2 N. U% P, g; q5 N) J
  17.     // This make the user aware and check if the driver image have already released
    : u/ r, _7 x. D+ N: @" A2 V
  18.     // all the resource in this situation.
    ) V' O$ K% _7 t" k+ Z
  19.     //2 Z: ]+ c; b7 `
  20.     DEBUG_CODE (
    # Y& F& r* Q" U2 m9 S
  21.       if (EFI_ERROR (Image->Status)) {
    # c0 D- q# F2 B; Y
  22.         DEBUG ((EFI_D_ERROR, "Error: Image at %08X start failed: %x\n", Image->Info.ImageBase, Image->Status));
    , O3 T4 U# Z/ b5 J" [2 R5 ]
  23.       }+ P+ q- J! d* b+ f7 H, e
  24.     )
    * |9 a/ i0 M4 F' l! J8 p0 `
  25.    
    2 D! w7 L2 G3 }2 D
  26.     //
    ; ~+ Y5 U( n) D7 s
  27.     // If the image returns, exit it through Exit(), W2 Y# g* D4 ?  k
  28.     //0 a- u( D' U; W3 e
  29.     CoreExit (ImageHandle, Image->Status, 0, NULL);
    ( {* t/ {  F3 X/ `9 F; \
  30.   }
复制代码
调用DXE driver前,为什么要用SetJump保存CPU的信息,driver返回后,再用CoreExit--LongJump恢复到SetJump时的状态
# b. s1 k$ t3 P( ~# R7 _. ?3 y既然driver可以返回,为什么非要这样恢复到调用前的状态呢?难道在调用driver的过程CPU的状态可能会被破坏吗?
# v( s! L4 w/ L而且目前来看driver只会返回Status而已,根据这个就可以做处理了.# `( ^3 n' x) J. S9 X8 u% Z6 }3 U
; i- K# p0 a" s, J" E8 _( q
我感觉有点多此一举了...不解
发表于 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。
- |2 W/ o: ]: ~& J. E( Q$ s0 V  z! ?
EFI_PEI_TRANSFER_CONTROL_PROTOCOL提供的SetJump/LongJump函数就是支持Exit boot service用的。类似于C的setjmp和longjmp库函数。
回复

使用道具 举报

 楼主| 发表于 2008-10-31 10:03:16 | 显示全部楼层
有点了解了,Exit()可以直接退出返回一些参数.
$ _" `+ t, t$ D! Q8 o1 o没有用过,暂且记下了.
1 g7 \; u3 O, b6 F  S$ j; z+ u* _! w
非常感谢!!!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-5-19 07:13 , Processed in 0.021714 second(s), 17 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

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