|
Re: 'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
Could be that the portion of the address space that PciIo->Map() can
deal with gets fragmented in the part of code that you have now
eliminated, by moving the call earlier.
Laszlo
Could be that the portion of the address space that PciIo->Map() can
deal with gets fragmented in the part of code that you have now
eliminated, by moving the call earlier.
Laszlo
|
By
Laszlo Ersek
·
#498
·
|
|
what's the conditions of submodule updating
Hi all,
May I ask a question.
In what conditions will we update submodules. Will we update the sbumodule when it only fixes a vulnerability, or any other conditions should be meet before updating.
Hi all,
May I ask a question.
In what conditions will we update submodules. Will we update the sbumodule when it only fixes a vulnerability, or any other conditions should be meet before updating.
|
By
wenyi,xie
·
#497
·
|
|
Loading second PCI driver on the same PCI device hangs the system.
Hi,
I have two pci drivers (1) full driver with all functionality, (2) Driver which subset of (1).
Both drivers are working fine. Load/Unload at run time smoothly works when each of them are done
Hi,
I have two pci drivers (1) full driver with all functionality, (2) Driver which subset of (1).
Both drivers are working fine. Load/Unload at run time smoothly works when each of them are done
|
By
UdayS
·
#496
·
|
|
Re: edk2 build failure due to long paths
Thanks a lot Laszlo.
Regards,
Rajesh
Thanks a lot Laszlo.
Regards,
Rajesh
|
By
rajesh.ravi@broadcom.com
·
#495
·
|
|
Re: 'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
Small Update:
I could fix the issue by moving the PCI->Map little early in the initialization but couldn't root cause it yet.
Small Update:
I could fix the issue by moving the PCI->Map little early in the initialization but couldn't root cause it yet.
|
By
UdayS
·
#494
·
|
|
Re: 回复: [edk2-discuss] edk2 build failure due to long paths
Thanks a lot gaoliming.
Regards,
Rajesh
Thanks a lot gaoliming.
Regards,
Rajesh
|
By
rajesh.ravi@broadcom.com
·
#493
·
|
|
Exposing new block IO handle to Platform BIOS
I'm working on a drivers for a storage controller. In it I install block IO protocol on each drive connected to the controller. Some of these drives may have OS in them.
These block IO handles are
I'm working on a drivers for a storage controller. In it I install block IO protocol on each drive connected to the controller. Some of these drives may have OS in them.
These block IO handles are
|
By
sanket.goswami@...
·
#492
·
|
|
回复: [edk2-discuss] edk2 build failure due to long paths
BZ https://bugzilla.tianocore.org/show_bug.cgi?id=3032 has been fixed at 020ec963048340c9eaf9799471167d769239bcfc
Can you try the latest edk2?
BZ https://bugzilla.tianocore.org/show_bug.cgi?id=3032 has been fixed at 020ec963048340c9eaf9799471167d769239bcfc
Can you try the latest edk2?
|
By
gaoliming
·
#491
·
|
|
Re: edk2 build failure due to long paths
You may have hit <https://bugzilla.tianocore.org/show_bug.cgi?id=3032>.
Thanks
Laszlo
You may have hit <https://bugzilla.tianocore.org/show_bug.cgi?id=3032>.
Thanks
Laszlo
|
By
Laszlo Ersek
·
#490
·
|
|
edk2 build failure due to long paths
I 'm facing edk2 build issues on Linux build hosts when path length is long.
*Example scenarios*
Eg. A) manual/standalone builds: If edk2 code base is deep inside a
directory path instead of $HOME
I 'm facing edk2 build issues on Linux build hosts when path length is long.
*Example scenarios*
Eg. A) manual/standalone builds: If edk2 code base is deep inside a
directory path instead of $HOME
|
By
rajesh.ravi@broadcom.com
·
#489
·
|
|
HTTP Requests from UEFI Shell are denied access to HTTP Server
Hi,
My name is Hayden. I am working on communications between a machine running only the UEFI Shell and an external server via HTTP Protocol. The Shell binary I am using is built from ShellPkg in the
Hi,
My name is Hayden. I am working on communications between a machine running only the UEFI Shell and an external server via HTTP Protocol. The Shell binary I am using is built from ShellPkg in the
|
By
huynhhai323@...
·
#488
·
|
|
GDB server does not start.
It seems to be connected to DebugAgent, but the gdb server does not start.
I am using Hyper-V Generation 2.
==================================================
UEFI Shell:
Debug Agent: Initialized
It seems to be connected to DebugAgent, but the gdb server does not start.
I am using Hyper-V Generation 2.
==================================================
UEFI Shell:
Debug Agent: Initialized
|
By
joseph@...
·
#487
·
|
|
How to use TimerLib on X64?
Hello everyone, noob here.
I need an accurate timestamp counter for a UEFI_APPLICATION.currently i'm ussing MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf for the TimerLib but
Hello everyone, noob here.
I need an accurate timestamp counter for a UEFI_APPLICATION.currently i'm ussing MdePkg/Library/SecPeiDxeTimerLibCpu/SecPeiDxeTimerLibCpu.inf for the TimerLib but
|
By
vapciogaming@...
·
#486
·
|
|
Re: 'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
Ask your firmware vendor, or build your stuff upon open source software
that you can analyze yourself.
Thanks
Laszlo
Ask your firmware vendor, or build your stuff upon open source software
that you can analyze yourself.
Thanks
Laszlo
|
By
Laszlo Ersek
·
#485
·
|
|
Re: 'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
Hi Laszlo,
Thanks for replying.
Right. I have updated it now.
Prior to calling to above mentioned call, I do map two 16 bytes chunks for reading and current chunk where I get error is 128bytes
Hi Laszlo,
Thanks for replying.
Right. I have updated it now.
Prior to calling to above mentioned call, I do map two 16 bytes chunks for reading and current chunk where I get error is 128bytes
|
By
UdayS
·
#484
·
|
|
Re: 'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
(1) For BusMasterRead, you should not use AllocateBuffer. AllocateBuffer
is only needed for CommonBuffer operations. For BusMasterRead and
BusMasterWrite, Map will handle bounce buffers
(1) For BusMasterRead, you should not use AllocateBuffer. AllocateBuffer
is only needed for CommonBuffer operations. For BusMasterRead and
BusMasterWrite, Map will handle bounce buffers
|
By
Laszlo Ersek
·
#483
·
|
|
'PciIO->Map' is returning "EFI_OUT_OF_RESOURCES" on Intel CRB device
Hello Experts,
Need your help to understand why is PciIO->Map is returning "EFI_OUT_OF_RESOURCES" in my Intel CRB DQ57TM (v2.31) but same driver works in other SuperMicro system ( v2.31 and v2.4).
I
Hello Experts,
Need your help to understand why is PciIO->Map is returning "EFI_OUT_OF_RESOURCES" in my Intel CRB DQ57TM (v2.31) but same driver works in other SuperMicro system ( v2.31 and v2.4).
I
|
By
UdayS
·
#482
·
|
|
Runtime Capsule Update Support
Hi,
I was wondering if can update the FMP capsule in storage with CapsuleInRamSupport enabled and without system reset. I was referring to this file
Hi,
I was wondering if can update the FMP capsule in storage with CapsuleInRamSupport enabled and without system reset. I was referring to this file
|
By
Mayur Gudmeti
·
#481
·
|
|
Re: EDK2 CI and edk2-platforms
There are a few challenges with the model of the edk2-platforms repo given that it doesn't have tracking of edk2 or any other dependency (submodule or otherwise). It also has no clear owner or anyone
There are a few challenges with the model of the edk2-platforms repo given that it doesn't have tracking of edk2 or any other dependency (submodule or otherwise). It also has no clear owner or anyone
|
By
Sean
·
#480
·
|
|
Re: EDK2 CI and edk2-platforms
I believe the idea has been floated before; unfortunately I don't
remember any specifics.
Laszlo
I believe the idea has been floated before; unfortunately I don't
remember any specifics.
Laszlo
|
By
Laszlo Ersek
·
#479
·
|