找回密码
 加入计匠网
搜索
热搜: BIOS ACPI CPU Windows
查看: 10730|回复: 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);
    * Z. c: }' w* @2 C0 S
  2.   //; @  D2 S; F2 p2 C: H
  3.   // The SetJump returns EFI_SUCCESS when LongJump Buffer has been armed% u- e' q: R0 G; H
  4.   // SetJump returns EFI_WARN_RETURN_FROM_LONG_JUMP as a result of the LongJump. @$ Z, M# R+ f
  5.   // All other return values for SetJump are undefined.: a" o( j- U" k$ V: A
  6.   //
    ; s4 }; a1 t& N& U# m! F) A% v! n
  7.   if (Status == EFI_SUCCESS) {% K  u( K  S/ I8 u  O
  8. * u5 P2 |7 V2 X8 V1 v
  9.     //
    8 s% I! e) I+ r8 D. e
  10.     // Call the image's entry point# W+ h0 H. E$ G0 g! K$ H
  11.     //
    3 g; k& l. F/ m
  12.     Image->Started = TRUE;* _. D5 D# e+ N4 X) H- i- L
  13.     Image->Status = Image->EntryPoint (ImageHandle, Image->Info.SystemTable);
    + ?1 ?' U0 _3 ]' g* ~# v, K

  14. 3 Q% y& B& z5 P5 X: d
  15.     //
    # L% h) I+ i) V2 v+ K# C) O
  16.     // Add some debug information if the image returned with error.
      P& w' E7 e" K  J$ _, d* ~& A
  17.     // This make the user aware and check if the driver image have already released - d) m7 e. Q4 W, [% A* c8 v  i% \
  18.     // all the resource in this situation.
    / _3 Q4 P* L5 G  r+ A  j
  19.     //+ Y5 }0 P' e, Y" V, O$ c/ U
  20.     DEBUG_CODE (' w7 P9 s6 w- k4 m+ l
  21.       if (EFI_ERROR (Image->Status)) {
    6 Q# R1 k+ X7 R7 }$ @$ {
  22.         DEBUG ((EFI_D_ERROR, "Error: Image at %08X start failed: %x\n", Image->Info.ImageBase, Image->Status));2 _7 ^# s8 U; f! U) \! \
  23.       }
    / o2 R' r& j3 q8 ?# @
  24.     )# z: P; s9 E4 T4 R9 T- d9 L
  25.       T7 e) ]* U; X: g
  26.     //: M' Q" T. i. w0 C* m
  27.     // If the image returns, exit it through Exit(). P6 X3 R/ P% _% x
  28.     //
    * J$ A/ f7 J: s3 i& r
  29.     CoreExit (ImageHandle, Image->Status, 0, NULL);* u; V( R' ^) ], M6 @7 c) b  }
  30.   }
复制代码
调用DXE driver前,为什么要用SetJump保存CPU的信息,driver返回后,再用CoreExit--LongJump恢复到SetJump时的状态
9 i& X/ P! L/ u; N! ?既然driver可以返回,为什么非要这样恢复到调用前的状态呢?难道在调用driver的过程CPU的状态可能会被破坏吗?. n2 M" o1 x2 ~
而且目前来看driver只会返回Status而已,根据这个就可以做处理了.
. j% U5 \& g5 M* `
, C0 I, O& o& r0 a我感觉有点多此一举了...不解
发表于 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。! b0 Q3 G+ R1 ~3 J

& P% E1 Z: i7 ?+ rEFI_PEI_TRANSFER_CONTROL_PROTOCOL提供的SetJump/LongJump函数就是支持Exit boot service用的。类似于C的setjmp和longjmp库函数。
回复

使用道具 举报

 楼主| 发表于 2008-10-31 10:03:16 | 显示全部楼层
有点了解了,Exit()可以直接退出返回一些参数.
% R+ V1 H% j  o1 Q  {没有用过,暂且记下了.
; n/ O7 ]' M1 ^! {7 i3 Y5 y/ @) t
- G9 U, ]- ?* v$ v% Q非常感谢!!!
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2026-9-22 15:14 , Processed in 0.176415 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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