找回密码
 加入计匠网
搜索
热搜: BIOS ACPI CPU Windows
查看: 10191|回复: 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);
    1 n9 n. E5 y4 a# J/ b
  2.   //# D, c0 w7 e# H3 w9 {* ?0 n: J
  3.   // The SetJump returns EFI_SUCCESS when LongJump Buffer has been armed/ l8 h" v( p* \" w* q
  4.   // SetJump returns EFI_WARN_RETURN_FROM_LONG_JUMP as a result of the LongJump5 P# Q2 c% ^! s" k  ]- w
  5.   // All other return values for SetJump are undefined.' F9 q% E* }/ I' q
  6.   //
    ) M# _: i0 O& b  n# [& l0 L5 e
  7.   if (Status == EFI_SUCCESS) {
    $ }7 G( C% l* G. \3 ~, J
  8. ! o/ H; V, v; c
  9.     //2 n8 W: l: Y2 j2 ?
  10.     // Call the image's entry point
    ! h8 f# H, d6 r" |0 @- h* e
  11.     //
    ; U& m2 F- H5 ]
  12.     Image->Started = TRUE;
    $ B* L8 R+ }0 [. p) f
  13.     Image->Status = Image->EntryPoint (ImageHandle, Image->Info.SystemTable);0 [% e$ x2 X, B8 @( L) c. G
  14. + Q& v% v) ?1 S  H1 m
  15.     //+ z9 t; i4 F) s$ Z9 J: I
  16.     // Add some debug information if the image returned with error.
    9 h; V' _- H; @- k, Q; Y  g4 H
  17.     // This make the user aware and check if the driver image have already released
    , k* T/ s: B* G! d* q6 p! k, M
  18.     // all the resource in this situation.
    ) {0 P" x! X9 y3 ?6 m. L! n3 \* T
  19.     //* o0 ^3 B3 N; J9 d6 q5 h
  20.     DEBUG_CODE (
    ( t& G* |4 q5 K9 h( F  V
  21.       if (EFI_ERROR (Image->Status)) {
    2 V8 u2 r7 X, o5 ^0 L
  22.         DEBUG ((EFI_D_ERROR, "Error: Image at %08X start failed: %x\n", Image->Info.ImageBase, Image->Status));9 _# q( ?7 @6 A; r5 Q4 H
  23.       }$ V" E+ q& E* e' L& h3 p) r* K
  24.     )
    ; I( \5 O8 n2 Z: @0 p$ ^
  25.     8 s2 i2 m8 ?/ t
  26.     //$ R$ k5 n1 x; u0 k/ N
  27.     // If the image returns, exit it through Exit()5 Y2 W  a% ]+ g' c, y) A# h$ O
  28.     //
    1 b+ c% u4 G, a' h
  29.     CoreExit (ImageHandle, Image->Status, 0, NULL);: o6 `; q5 {4 B% a8 Z
  30.   }
复制代码
调用DXE driver前,为什么要用SetJump保存CPU的信息,driver返回后,再用CoreExit--LongJump恢复到SetJump时的状态$ V3 g. `" o# Z0 {; i# r
既然driver可以返回,为什么非要这样恢复到调用前的状态呢?难道在调用driver的过程CPU的状态可能会被破坏吗?7 w- u4 I2 ~$ }
而且目前来看driver只会返回Status而已,根据这个就可以做处理了.
/ E; V% \% X# P: v, |* \7 m$ c  p0 m6 L. y6 q# G! M- 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。
8 H9 `/ W# `2 w' t7 c+ c
+ |: C5 P$ [4 xEFI_PEI_TRANSFER_CONTROL_PROTOCOL提供的SetJump/LongJump函数就是支持Exit boot service用的。类似于C的setjmp和longjmp库函数。
回复

使用道具 举报

 楼主| 发表于 2008-10-31 10:03:16 | 显示全部楼层
有点了解了,Exit()可以直接退出返回一些参数.
/ G; \0 S% b- ^" C. x( l没有用过,暂且记下了.- {, v; U7 f0 l' e3 L2 {* A+ B

8 N) X6 Z: ?5 \1 Z非常感谢!!!
回复

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

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