BIOS engineer is responsible for working with customers and architects to drive firmware requirements into clientbased platform designs Responsibilities include triage and replication resolving and tracking incoming customer issues related to the firmware on customer designs involving BIOS ME TBT and other platform components defining compliance requirements for our customers and developingsupporting documents and application notesResponsibilities also include issue management and collaborating with other organizations such as firmware development System validation and other hardware teams to resolve issues together In addition the individual will coordinate with other global organizations A strong technical background is required with the ability to lead taskforces and initiatives supporting customer designs to match launch plans
Qualifications:
You must possess a Bachelor of Science degree in Electrical Engineering Computer Engineering or equivalent with at least four years of industry experience in BIOS with Intel platform development debug and engineering An advanced degree is preferred Additional qualifications include Excellent problemsolving skills comfortable with the use of software tools to diagnose and debug BIOS firmware and software issues Excellent knowledge of UEFI kernel architecture PEIDXEBDS dispatch flow EFI driver framework Strong coding skill knowledge of MASM and C languages Familiar with PC standards such as PCI SMBUS ACPI USB SATA PCI Express especially ACPI Deep knowledge of PC architecture hardware software firmware and Windows OS Excellent communication including spoken and written English and customer support skills Strong interpersonal skills with proven track record of cross group collaboration Presentation skills and the ability understand specify and communicate requirements to marketing and engineering teams Ability to work in a highly ambiguous environment and to achieve high quality results Ability to international and domestic travel and travel to customer facilities
The following qualifications would be added advantages Experience in Mobile UEFI BIOS with Intel platform Experience in EC firmware development Work experience in BIOS vendor Experience in UEFI source level debug Knowledge of Python languages
//
// if not supporting current mode, try 800x600 which is required by UEFI/EFI spec
//
HorizontalResolution = 800;
VerticalResolution = 600;
Status = CheckModeSupported (
Private->GraphicsOutput,
HorizontalResolution,
VerticalResolution,
&ModeNumber
);
#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/ShellCEntryLib.h>
#include <Protocol/SimpleFileSystem.h>
#include <Library/UefiBootServicesTableLib.h> //global gST gBS gImageHandle
#include <Library/ShellLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/BaseMemoryLib.h>
#include <Protocol/UgaDraw.h>
#include <Library/DebugLib.h>
#include <stdio.h>
#include <stdlib.h>
//
// Device Structure
//
#define GRAPHICS_CONSOLE_DEV_SIGNATURE SIGNATURE_32 ('g', 's', 't', 'o')
typedef struct
{
UINTN Columns;
UINTN Rows;
INTN DeltaX;
INTN DeltaY;
UINT32 GopWidth;
UINT32 GopHeight;
UINT32 GopModeNumber;
} GRAPHICS_CONSOLE_MODE_DATA;
typedef struct
{
UINTN Signature;
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL SimpleTextOutput;
EFI_SIMPLE_TEXT_OUTPUT_MODE SimpleTextOutputMode;
GRAPHICS_CONSOLE_MODE_DATA *ModeData;
EFI_GRAPHICS_OUTPUT_BLT_PIXEL *LineBuffer;
} GRAPHICS_CONSOLE_DEV;
#define GRAPHICS_CONSOLE_CON_OUT_DEV_FROM_THIS(a) \
CR (a, GRAPHICS_CONSOLE_DEV, SimpleTextOutput, GRAPHICS_CONSOLE_DEV_SIGNATURE)
// Include/Protocol/SimpleTextOut.h
EFI_GUID gEfiSimpleTextOutProtocolGuid = { 0x387477C2, 0x69C7, 0x11D2,
{ 0x8E, 0x39, 0x00, 0xA0, 0xC9, 0x69, 0x72, 0x3B }
};
/**
Check if the current specific mode supported the user defined resolution
for the Graphics Console device based on Graphics Output Protocol.
If yes, set the graphic devcice's current mode to this specific mode.
@param GraphicsOutput Graphics Output Protocol instance pointer.
@param HorizontalResolution User defined horizontal resolution
@param VerticalResolution User defined vertical resolution.
@param CurrentModeNumber Current specific mode to be check.
@retval EFI_SUCCESS The mode is supported.
@retval EFI_UNSUPPORTED The specific mode is out of range of graphics
device supported.
@retval other The specific mode does not support user defined
resolution or failed to set the current mode to the
specific mode on graphics device.
**/
EFI_STATUS
CheckModeSupported (
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput,
IN UINT32 HorizontalResolution,
IN UINT32 VerticalResolution,
OUT UINT32 *CurrentModeNumber
)
{
UINT32 ModeNumber;
EFI_STATUS Status;
UINTN SizeOfInfo;
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *Info;
UINT32 MaxMode;
Status = EFI_SUCCESS;
MaxMode = GraphicsOutput->Mode->MaxMode;
for (ModeNumber = 0; ModeNumber < MaxMode; ModeNumber++) {
Status = GraphicsOutput->QueryMode (
GraphicsOutput,
ModeNumber,
&SizeOfInfo,
&Info
);
if (!EFI_ERROR (Status)) {
if ((Info->HorizontalResolution == HorizontalResolution) &&
(Info->VerticalResolution == VerticalResolution)) {
if ((GraphicsOutput->Mode->Info->HorizontalResolution == HorizontalResolution) &&
(GraphicsOutput->Mode->Info->VerticalResolution == VerticalResolution)) {
//
// If video device has been set to this mode, we do not need to SetMode again
//
FreePool (Info);
break;
} else {
Status = GraphicsOutput->SetMode (GraphicsOutput, ModeNumber);
if (!EFI_ERROR (Status)) {
FreePool (Info);
break;
}
}
}
FreePool (Info);
}
}
if (ModeNumber == GraphicsOutput->Mode->MaxMode) {
Status = EFI_UNSUPPORTED;
}
*CurrentModeNumber = ModeNumber;
return Status;
}
INTN
EFIAPI
main (
IN UINTN Argc,
IN CHAR16 **Argv
)
{
UINTN NumHandles;
EFI_STATUS Status;
EFI_HANDLE *HandleBuffer;
GRAPHICS_CONSOLE_DEV *Private;
UINTN Index;
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *SimpleTextOutput;
UINT32 HorizontalResolution;
UINT32 VerticalResolution;
UINT32 ModeNumber;
EFI_GRAPHICS_OUTPUT_PROTOCOL_MODE *Mode;
//
// Locate all handles that are using the SFS protocol.
//
Status = gBS->LocateHandleBuffer(
ByProtocol,
&gEfiSimpleTextOutProtocolGuid,
NULL,
&NumHandles,
&HandleBuffer);
if (EFI_ERROR(Status) != FALSE)
{
Print(L"failed to locate any handles using the EfiSimpleTextOutProtocol\n");
goto CleanUp;
}
for (Index = 0; (Index < NumHandles); Index += 1)
{
Status = gBS->HandleProtocol(
HandleBuffer[Index],
&gEfiSimpleTextOutProtocolGuid,
(VOID**)&SimpleTextOutput);
if (EFI_ERROR(Status))
{
Print(L"Failed to locate SimpleTextOutProtocol.\n");
continue;
}
Private = GRAPHICS_CONSOLE_CON_OUT_DEV_FROM_THIS (SimpleTextOutput);
if (Private->Signature != GRAPHICS_CONSOLE_DEV_SIGNATURE) {
continue;
}
Print(L"Show ModeData:\n");
Print(L" Col : %d\n",Private->ModeData->Columns);
Print(L" Row : %d\n",Private->ModeData->Rows);
Print(L" DeltaX : %d\n",Private->ModeData->DeltaX);
Print(L" DeltaY : %d\n",Private->ModeData->DeltaY);
Print(L" GopWidth : %d\n",Private->ModeData->GopWidth);
Print(L" GopHeight: %d\n",Private->ModeData->GopHeight);
Print(L" GopMode : %d\n",Private->ModeData->GopModeNumber);
// Set new screen offset
Private->ModeData->DeltaX=80;
Private->ModeData->DeltaY=62;
//
// if not supporting current mode, try 800x600 which is required by UEFI/EFI spec
//
HorizontalResolution = 800;
VerticalResolution = 600;
Status = CheckModeSupported (
Private->GraphicsOutput,
HorizontalResolution,
VerticalResolution,
&ModeNumber
);
Mode = Private->GraphicsOutput->Mode;
if (EFI_ERROR (Status) && Mode->MaxMode != 0) {
//
// Set default mode failed or device don't support default mode, then get the current mode information
//
HorizontalResolution = Mode->Info->HorizontalResolution;
VerticalResolution = Mode->Info->VerticalResolution;
ModeNumber = Mode->Mode;
Print(L" CheckModeSupported failed\n");
} else {
Print(L" CheckModeSupported passed\n");
}
Private->SimpleTextOutput.Reset(&Private->SimpleTextOutput,TRUE);
}
CleanUp:
if (HandleBuffer != NULL)
{
FreePool(HandleBuffer);
}
return(0);
}
CATERR# 是 CPU 上的一个引脚,当CPU 有严重错误发生时,这个引脚会拉低(#表示低有效)。它在所有的Intel CPU 上都有。特别注意:这里是 OD 输出,是没法输出高电平,想要输出高电平,必须外部再接一个上拉电阻(pull-up resistor)。换句话说,如果测量这里为高或者低,务必记得在外面连接一个上拉电阻才能得到正确值【参考3】.
CATERR# 来自【参考1】
Intel 错误分类
首先是两大类:可以检测到的(Detected) 和 不可以检测到的(Undetected)。其中的 Undetected 是非常重要的,因为这种错误无法检测到的错误是没有办法捕捉到和处理的。进一步分为影响不大的 (Benign)和Critical(严重的,这种又被称作 Silent Data Corruption缩写 SDC)。作为系统设计者,必须努力降低这种情况的发生率。