ROM BIOS


BIOS stands for basic input/output system, and it consists of low-level software that controls the system hardware and acts as an interface between the operating system and the hardware. Most people know the term BIOS by another name: device drivers, or just drivers. In other words, the BIOS is a collection of all the drivers in a system. BIOS is essentially the link between hardware and software in a system. The system BIOS is contained in a ROM chip on the motherboard that also contains the power-on self-test (POST) program and a bootstrap loader. The BIOS directs the bootstrap loader to look for an operating system (OS) in any one of various drive locations. After the OS was loaded, the bootstrap program could call on the low-level routines (device drivers) in the BIOS to interact with the system hardware.

Motherboard BIOS

Every server with an x86 or Itanium processor must have a special chip that contains software called the ROM BIOS. This ROM chip contains the startup programs and drivers used to get the system running and act as the interface to the basic hardware in the system. When you turn on a system, the POST in the BIOS also tests the major components in the system. In addition, you can run a setup program to store system configuration data in the CMOS memory, which is powered by a battery on the motherboard. This CMOS RAM is often called NVRAM because it runs on about 1 millionth of an amp of electrical current and can store data for years when powered by a tiny lithium battery.

The BIOS is a collection of programs embedded in one or more chips, depending on the design of the computer. That collection of programs is the first thing loaded when you start the computer, even before the operating system. The BIOS in most x86 and Itanium servers has four main functions:

  • POST The POST tests the computer's processor, memory, chipset, video adapter, disk controllers, disk drives, keyboard, and other crucial components. It uses various methods to indicate problems, including beep codes, onscreen error messages, and status/problem codes output to a particular I/O port address.

  • Setup The system configuration and setup program is usually a menu-driven program that you activate by pressing a special key during the POST. It enables you to configure the motherboard and chipset settings, along with the date and time, passwords, disk drives, and other basic system settings. You can also control the power-management settings and boot-drive sequence from the BIOS Setup, and on some systems, you can configure CPU timing and clock-multiplier settings.

  • Bootstrap loader The bootstrap loader is a routine that reads the first physical sector of various disk drives, looking for a valid master boot record (MBR). If it finds one that meets certain minimum criteria (ending in the signature bytes 55AAh), the code within is executed. The MBR program code then continues the boot process by reading the first physical sector of the bootable volume, which is the start of the volume boot record (VBR). The VBR then loads the first operating system startup file, and the operating system is then in control and continues the boot process.

  • BIOS BIOS is the collection of drivers used to act as a basic interface between the operating system and the hardware when the system is booted and running. When running Windows in Safe Mode or Linux/UNIX in single-user mode, you are running almost solely on ROM-based BIOS drivers because none are loaded from disk.

The system ROM BIOS is loaded into upper memory (that is, memory between 640KB and 1MB) when the system is started, as are BIOS chips on the video adapter and other adapter ROM BIOS chips used in the system. Figure 4.40 shows a map of the first megabyte of memory in a PC; notice that the upper memory areas are reserved for adapter card and motherboard RAM or ROM BIOS at the end of the first megabyte.

Figure 4.40. PC memory map showing ROM BIOS.


If you are working with legacy (ISA/EISA) hardware that uses RAM or ROM BIOS chips, you need to make sure each device that uses RAM or ROM uses a non-overlapping section of upper memory. PnP hardware, BIOS, and operating systems automatically place RAM and ROM chips into nonconflicting memory addresses.

ROM BIOS Hardware

The main ROM BIOS is contained in a ROM chip on the motherboard, but adapter cards with ROMs contain auxiliary BIOS routines and drivers needed by the particular card, especially for cards that must be active early in the boot process, such as video cards. Cards that don't need drivers active during boot (such as sound cards) typically don't have ROM because those drivers can be loaded from the hard disk later in the boot process.

Because the BIOS is the main portion of the code stored in ROM, we often call the ROM the ROM BIOS. Adapter card ROMs, such as those used for video, SCSI, add-on ATA cards, and network cards for diskless workstations, are automatically scanned and read by the motherboard ROM during the early part of the boot processduring the POST. The motherboard ROM scans a special area of RAM reserved for adapter ROMs (addresses C0000DFFFFh), looking for 55AAh signature bytes, which indicates the start of a ROM.

All adapter ROMs must start with 55AAh; otherwise, the motherboard won't recognize them. The third byte indicates the size of the ROM in 512-byte units called paragraphs, and the fourth byte is the actual start of the driver programs. The motherboard ROM uses the size byte for testing purposes. The motherboard ROM adds all the bytes in the ROM and divides the sum by the number of bytes. The result should produce a remainder of 100h. Thus, when creating a ROM for an adapter, a programmer typically uses a "fill" byte at the end to get the checksum to come out right. Using this checksum, the motherboard tests each adapter ROM during the POST and flags any that appear to have been corrupted.

The motherboard BIOS automatically runs the programs in any adapter ROMs it finds during the scan. You see this in most systems when you turn on the system, and during the POST you see the video card BIOS and other BIOS chips, such as SATA, ATA/SATA RAID, and SCSI, initialize and display onscreen messages.

ROM Shadowing

ROM chips, by their nature, are very slow, with access times of 150ns (nanoseconds, or billionths of a second), compared to DRAM access times of less than 10ns on the newest systems. Because of this, in virtually all systems, the ROMs are shadowed, which means they are copied into DRAM chips at startup to allow faster access during normal operation. The shadowing procedure copies the ROM into RAM and then assigns that RAM the same address as the ROM originally used, disabling the actual ROM in the process. This makes the system seem as though it has ROM running at the same speed as RAM.

The performance gain from shadowing is often very slight, and it can cause problems if it is not set up properly. Therefore, in most cases, it is wise to shadow only the motherboard (and maybe the video card BIOS) and leave the others alone.

Typically, shadowing is useful only when running 16-bit operating systems, such as DOS or Windows 3.x. When running a 32-bit or 64-bit operating system, such as Windows Server 2000, Windows Server 2003, or Linux, shadowing is virtually useless because those operating systems do not use the 16-bit ROM code while running. Instead, those operating systems load 32-bit or 64-bit drivers into RAM, which replace the 16-bit BIOS code used only during system startup.

Shadowing controls are found in the CMOS Setup program in the motherboard ROM, which is covered in more detail later in this chapter.

EEPROM/Flash ROM

For over a decade, virtually all x86-based servers have used a BIOS chip with EEPROM or flash ROM technology. These chips can be erased and reprogrammed with software, unlike older technologies that required the chip to be removed from the motherboard for replacement or reprogramming.

If your server is having problems with hardware controlled by the BIOS, such as processor or memory upgrades, onboard ports or expansion slots, check with the system or motherboard manufacturer to see if a BIOS upgrade is available and if it solves the problems the server is experiencing.

Caution

Even if a BIOS upgrade is available for your server, don't install it blindly. Keep in mind that BIOS upgrades can cause problems as well as solve them. If possible, test the BIOS upgrade on a non-production server before upgrading other servers of the same type.


Be sure to follow the manufacturer's instructions for performing the BIOS upgrade. A failed BIOS upgrade will prevent your system from working.

See "Upgrading a Flash BIOS," p. 314, for more information on updating your PC motherboard flash ROMs.


Many other devices have flash ROMs; for example, you can update the flash ROM code (often called firmware) in network routers (which act as DHCP servers and frequently run Linux), wireless access points, rewritable CD and DVD drives, and even some digital cameras. Installing flash ROM or firmware upgrades is as easy as downloading a file from the device manufacturer's website and running the update program included in the file.

Flash ROM updates can also be used to add new capabilities to existing peripherals, such as modems and rewriteable DVD or CD drives, to meet the latest standards; for example, you can update a modem from X2 or K56Flex to V.90 or V.92 or add support for the latest types of media to a rewriteable drive.

BIOS Types

The system ROM BIOS is not the only BIOS chip found in a typical server. The following sections briefly discuss additional BIOS chips and BIOS types and how they work.

PnP BIOS

Traditionally, installing and configuring devices in PCs has been a difficult process. During installation, the user is faced with the task of configuring the new card by selecting the IRQ, I/O ports, and DMA channel. In the past, users were required to move jumpers or set switches on the add-in cards to control these settings. They needed to know exactly which resources were already in use so they could find a set of resources that did not conflict with the devices already in the system. If a conflict existed, the system might not boot, and the device might fail or cause the conflicting hardware to fail.

PnP technology is designed to prevent configuration problems and provide users with the capability to easily expand a PC. With PnP, the user simply plugs in the new card, and the system configures it automatically for proper operation.

PnP is composed of three principal components:

  • PnP BIOS

  • Extended System Configuration Data (ESCD)

  • PnP operating system

The PnP BIOS initiates the configuration of the PnP cards during the bootup process. If the cards were previously installed, the BIOS reads the information from ESCD, initializes the cards, and boots the system. During the installation of new PnP cards, the BIOS consults the ESCD to determine which system resources are available and needed for the add-in card. If the BIOS is capable of finding sufficient available resources, it configures the card. However, if the BIOS is incapable of locating sufficient available resources, the PnP routines in the operating system complete the configuration process. During the configuration process, the configuration registers (in flash BIOS) on the card and the ESCD are updated with the new configuration data.

PnP Device IDs

Every PnP device must contain a PnP device ID to enable the operating system to uniquely recognize the device so it can load the appropriate driver software. Each device manufacturer is responsible for assigning the PnP ID for each product and storing it in the hardware.

Each manufacturer of PnP devices is assigned an industry-unique, three-character vendor ID. The device manufacturer is responsible for assigning a unique product ID to each individual product model. After an ID is assigned to a product model, it must not be assigned to any other product model manufactured by the same company (that is, one that uses the same vendor ID).

ACPI

ACPI, which stands for Advanced Configuration and Power Interface, defines a standard method for integrating power management as well as system configuration features throughout an x86 or Itanium server, including the hardware, operating system, and application software. ACPI goes far beyond the previous standard, called Advanced Power Management (APM), which consists mainly of processor, hard disk, and display control. ACPI controls not only power but also all the PnP hardware configuration throughout the system. With ACPI, system configuration (PnP) as well as power management configuration is no longer controlled via the BIOS Setup; it is controlled entirely within the operating system instead.

ACPI enables system designers to implement a range of power management features with various hardware designs while using the same operating system driver. ACPI also uses the PnP BIOS data structures and takes control over the PnP interface, providing an operating-systemindependent interface for configuration and control. ACPI is supported by Windows 2000 Server, Windows 2003 Server, and Linux.

During the system setup and boot process, Windows versions that support ACPI perform a series of checks and tests to determine whether the system hardware and BIOS support ACPI. If support for ACPI is either not detected or found to be faulty, the system typically reverts to standard APM control, but problems can also cause a lockup with a blue screen with an ACPI error code.

The ACPI error codes are described in Table 4.27.

Table 4.27. ACPI Error Codes

Error Code

Description

1xxx

Indicates an error during the initialization phase of the ACPI driver and usually means the driver can't read one or more of the ACPI tables

2xxx

Indicates an ACPI machine language (AML) interpreter error

3xxx

Indicates an error within the ACPI driver event handler

4xxx

Indicates a thermal management error

5xxx

Indicates a device power management error


Virtually all these errors are the result of partial or incomplete ACPI implementations or incompatibilities in either the BIOS or device drivers. If you encounter any of these errors, you should contact your motherboard manufacturer for an updated BIOS or the device manufacturers for updated drivers.

However, ACPI problems don't always trigger error messages. If your server won't come out of standby mode, make sure the option Allow This Device to Bring the Computer Out of Standby is enabled in the Power Management tab of the Device Manager properties sheet for devices such as network adapters, keyboards, and mouse devices. With a network adapter, you should also enable the option Allow the Computer to Turnoff This Device to Save Power if the network adapter does not work properly after the server does not come out of standby mode. Do not select the Only Allow Management Stations option on a server. Enabling this option prevents the server from responding to requests from clients if the server goes into standby mode (see Figure 4.41).

Figure 4.41. Configuring a network adapter so it will wake a server from standby mode.


Initializing a PnP Device

One responsibility of a PNP BIOS during POST is to isolate and initialize all PnP cards and assign each a valid card select number (CSN). After CSNs are assigned, the system BIOS can then designate resources to the cards. The BIOS is responsible only for the configuration of boot devices; all the remaining PnP devices can be configured dynamically by the operating system software.

The following steps outline a typical flow of a PnP BIOS during the POST:

1.

Disable all configurable devices.

2.

Identify all PnP devices.

3.

Construct a resource map of resources that are statically allocated to devices in the system.

4.

Enable input and output devices.

5.

Perform ISA ROM scan.

6.

Configure the boot device.

7.

Enable PnP ISA and other configurable devices.

8.

Start the bootstrap loader.

If the loaded operating system is PnP compliant, it takes over management of the system resources. Any unconfigured PnP devices are configured by the appropriate system software or the PnP operating system.

At this point, the operating system is loaded and takes control over PnP system resources. Using the Device Manager in the operating system, the user can control any PnP devices.

Although PnP is often thought of as a Windows-specific technology, PnP configuration and device management are also performed by recent Linux distributions.

Other BIOS Chips

The PnP BIOS is built in to the system BIOS. However, other types of devices are supported by separate BIOS chips. If the device is built in to the motherboard, the BIOS chip is also located on the motherboard. If the device plugs in to a card slot, the BIOS chip is located on the card. These BIOS chips are mapped to the system's memory map at various locations between 640KB and 1MB.

Typical device BIOS chips include the following:

  • Video BIOS This chip controls the display of error and status messages onscreen during system startup. If the server uses a graphical operating system such as Windows 2000 Server or Windows Server 2003, video BIOS services are replaced by the operating system's video driver.

  • SCSI adaptor BIOS The SCSI adapter BIOS is used to initialize SCSI hard disks and configure SCSI boot options. During system startup, an onscreen message prompts the user to open the SCSI configuration menu to make changes. Some systems feature a SCSI BIOS that works in conjunction with special SCSI host adapters. Various types of server motherboards use BIOS settings or jumper blocks to enable or disable onboard SCSI.

  • NIC Wake-on-LAN (WOL) WOL is a common feature of both integrated NICs and NICs in add-on card slots used in servers. The setting used for WOL determines whether LAN activity will wake up a system. WOL is configured through the system BIOS Setup program, but if a WOL-capable NIC is used on a system, the WOL patch cable from the NIC must be connected to a WOL connection on the motherboard before WOL can be used with that NIC.

  • SMART Hard Disk Monitoring Self-Monitoring, Analysis, and Recording Technology (SMART) is a self-diagnostic feature commonly supported on ATA/IDE and SATA hard disks. If SMART monitoring is enabled in the system BIOS, drives with SMART functions are checked for proper operation during the POST process, and problems are reported. To detect SMART failures after initial startup, you need to use a monitoring program supported by the server's operating system.

  • RAID BIOS Many recent servers support onboard RAID, particularly with high-performance SATA or SCSI hard disks. Although in some cases a special configuration program is used to configure the RAID array, most servers with onboard RAID use a BIOS-based configuration program. See your system or RAID adapter's documentation for details.

Note

With Windows 2000 Server and Windows 2003 Server, you must load a driver during installation to enable most types of motherboard-based and all types of add-oncard RAID to operate. This is also required for support of SCSI host adapters. For details, see the section "ATA/SATA RAID Configurations for Server Platforms" in Chapter 6, "The ATA/IDE Interface."


System Management Features

Servers often need to be managed remotely, and IT staff need to determine when a server has problems before those problems cause a server to fail. As a result, several types of server management have been developed.

Many servers support System Management Bus (SMBus) management, developed by Intel in 1995 and based on an earlier Philips standard known as I2C. SMBus uses a two-wire serial-signaling connection to transmit information about temperature, intrusion detection, and battery charge to an external monitor. SMBus version 1.x was designed to support motherboard-based devices. However, SMBus version 2.x also supports add-on cards.

Many recent servers now support a newer, more advanced type of cross-platform system management standard known as the Intelligent Platform Management Interface (IPMI), which was developed by Intel, Hewlett-Packard, Dell, and NEC in 1999.

IPMI enables server status and management to occur, whether a server is running or shut down. Starting with version 1.5, IPMI can use direct serial, network, or serial over network connections for management and alert messages. IPMI incorporates SMBus signaling and sensors, and it interfaces with existing SMBus host controllers to permit the existing SMBus management infrastructure to continue to be used.

To learn more about SMBus, see the System Management Interface Forum, website, at www.smbus.com. To learn more about IPMI, see the Intel IPMI website, at www.intel.com/design/servers/ipmi/.

Intel's Advanced Server Management Interface (ASMI) is a 120-pin motherboard connector that supports integrated KVM over IP for remote server management and other features. ASMI supports the IPMI management standard. Some server and KVM vendors such as Avocent (www.avocent.com) and Raritan (www.raritan.com) are using ASMI or proprietary daughtercards to add KVM support to existing and forthcoming servers.

BIOS Manufacturers

Several popular BIOS manufacturers in the market today supply the majority of motherboard and system manufacturers with the code for their ROM chips. This section discusses the various available versions.

The leading manufacturers of server BIOS today include American Megatrends (AMI) and Phoenix Technologies. Phoenix also owns Award Software. The current Phoenix First BIOS software is based on Award BIOS version 6.x, and the current Phoenix First BIOS Pro software is based on Phoenix BIOS version 4.x.

There are various ways to determine what BIOS brand and version is being used by a particular server or server motherboard:

  • Turn on the server and watch for BIOS version messages, such as the example shown in Figure 4.42.

    Figure 4.42. A typical power-on display indicating BIOS vendor, motherboard model number and chipset, and BIOS version.

  • Check the technical specifications for the server or motherboard. This information may be included in the documentation, or it might need to be obtained from the vendor's website. The vendor's website will also list the available BIOS versions for a particular server or system. Note that preconfigured systems are less likely to display the name of the BIOS vendor at startup or list the name in their documentation than third-party server motherboard vendors.

  • Use a utility such as SiSoftware Sandra Lite (www.sisoftware.co.uk). Belarc Advisor (www.belarc.com), or eSupport BIOS Agent (www.esupport.com; eSupport also sells BIOS upgrades) to display BIOS vendor and version.

Note that because of BIOS customization, BIOS upgrades are provided by the system or motherboard vendor or by third-party companies specializing in BIOS upgrades, not by the original BIOS vendor.

If you need to troubleshoot a server, it's important to know the BIOS vendor and version number of the BIOS used by that server. Error codes and messages vary by BIOS vendor, and different versions of a BIOS for a particular server may affect compatibility. If you prefer the features and error reporting functions of a particular BIOS vendor, you may prefer to specify systems or motherboards that use your favorite BIOS.

Table 4.28 lists the BIOS vendors used by a selection of current x86 and Itanium-based server motherboards made by Intel and other major vendors.

Table 4.28. Selected Server Motherboards and BIOS Vendors

Model Number

BIOS Vendor

Processor Type

Asus (www.asus.com.tw)

K8N-DRE

AMI

Opteron

NCLV-DS

AMI

Xeon

Intel (www.intel.com)

SE7520AF2, SE7525GP2, SE7320SP2

AMI

Xeon

SE7210TP1

AMI

Pentium 4

SR870BN4

AMI

Itanium 2

Iwill (www.iwill.com.tw)

DK88

AMI

Opteron

DN800-L

AMI

Xeon

SuperMicro (www.supermicro.com)

X6DH3-G2

Phoenix

Xeon

P4QH8

AMI

Xeon

i2DML-iG2

AMI

Itanium 2

S2QR6

AMI

Pentium III

Tyan (www.tyan.com)

S3870

AMI

Opteron

S5360

Phoenix

Xeon

S5161

Phoenix

Pentium 4

S5112

Award

Pentium 4


For more information about Phoenix and Award BIOS, visit www.phoenix.com. For more information about AMI BIOS, visit www.ami.com.

Tip

If you support servers and clients that use several BIOS types, consider adding Phil Croucher's The BIOS Companion to your bookshelf or PDF file collection. This book provides detailed BIOS options and configuration information for today's leading BIOS. You can purchase various editions from Amazon.com and other bookstores, but for the most up-to-date (and least expensive) edition, I suggest ordering the PDF (Adobe Acrobat) version of The BIOS Companion from Electrocution.com.


Accessing the Motherboard BIOS

If you want to run the BIOS Setup program, you usually have to reboot the system and press a particular key or key combination during the POST. Normally, the correct key to press is displayed onscreen momentarily during the POST. If it flashes past too quickly to read, you can try pressing the Pause key on the keyboard when it appears. This freezes the system, allowing you to read the display. Pressing any other key (such as the spacebar) un-pauses the system and allows the POST to continue. The major vendors have standardized the following keystrokes to enter the BIOS Setup in recent systems:

  • AMI BIOS Press Delete during POST.

  • Phoenix BIOS (FirstBIOS Pro) Press F2 during POST.

  • Award BIOS (FirstBIOS) Press Delete or Ctrl+Alt+Esc during POST.

  • Microid Research (MR) BIOS Press Esc during POST.

If your system does not respond to one of these common keystroke settings, you might have to contact the manufacturer or read the system documentation to find the correct keystrokes.

The following are some unique keystrokes:

  • Older Phoenix BIOS Boot to a safe mode DOS command prompt and then press Ctrl+Alt+Esc or Ctrl+Alt+S.

  • Compaq Press F10 during POST.

When you are at the BIOS Setup main screen, you usually find a main menu that allows access to other menus and submenus of different sections or screens. The following sections cover typical BIOS menus and submenus found on typical servers running Intel or AMD processors. Even if you are familiar with the BIOS settings used on typical desktop computers, the following sections will be useful to you because servers often feature different settings than those used on desktop computers.

CMOS Settings and Specifications

After you enter the BIOS (CMOS) Setup menu, you can view current system settings and configuration and make changes to most settings. Some BIOS Setup listings are read-only, such as current fan RPM and motherboard/processor voltage readouts.

BIOS Setup Menus

Most modern BIOSs offer a menu bar at the top of the screen when you're in the BIOS Setup that controls navigation through the various primary menus. A typical menu bar offers the choices shown in Table 4.29.

Table 4.29. Typical Server BIOS Setup Menus

Setup Menu Screen

Description

Intel SE7520AF2 Server Board

Main

Displays BIOS, processor, and memory information. Sets date and time.

Advanced

Contains the following submenus:

Processor Displays processor information and configures processor settings.

IDE Configuration Configures ATA/IDE and SATA host adapter and drive settings.

Floppy Configuration Configures the floppy controller and drive.

Super I/O Configuration Configures serial ports.

Memory Configuration Displays installed memory and configures memory handling.

USB Configuration Configures USB host adapter and device settings.

PCI Configuration Configures onboard PCI devices such as SCSI, video, NIC, and option ROMs.

Intel SE7520AF2 Server Board

Boot

Specifies boot options via the following submenus:

Boot Settings Cfg Configures various boot settings.

Boot Device Priority Sets the order in which drives are used as boot devices by device type and specified drive (uses submenus for hard disk, removable drive, and ATAPI CD-ROM drives).

Security

Specifies passwords and security features.

Server

Configures system management, redirection of display output to a terminal, and other server-specific options via submenus.

Exit

Saves or discards changes to the setup program options.

Tyan Thunder K8SE Motherboard

Main

Displays BIOS, processor, and memory information. Sets date and time.

Advanced

Specifies access to the same submenus as for the Intel SE7520AF2 server board (see first part of table); configures operating system type and configuration data reset.

Memory

Sets memory size, memory caching, and memory addresses to cache.

Security

Specifies passwords and security features.

Boot

Specifies boot options and boot sequence.

Power

Specifies power management features.

Exit

Saves or discards changes to the setup program options.


Note

Because most common server BIOSs use similar settings but the exact order and features vary, the following tables focus on the setup programs used by an Intel Xeon-based server and an AMD-based Opteron server.

Because the BIOS is customized by the motherboard manufacturer, even the same BIOS can offer different options for different boards. The settings covered here help you get a general idea of the type of settings to expect and how the BIOS Setup settings affect your server's operation.


Choosing each of these selections takes you to another menu with more choices. The following sections examine the choices available in a typical server motherboard.

The Main Menu

The standard CMOS Setup menu dates back to the 286 days, when the complete BIOS Setup consisted of only one menu. In the standard menu, you can set the system clock and record hard disk and floppy drive parameters and the basic video type. Newer BIOSs have more complicated setups with more menus and submenus, so the main menu is often fairly sparse compared to those in older systems.

The main menu in a modern system reports system information such as the BIOS date and version, the processor type and speed, and the amount of memory. The main menu can also be used to set the system date and time.

Table 4.30 shows a typical main menu.

Table 4.30. Typical Main Menu Settings

Setting

Options

Description

BIOS Version

Displays the version of the BIOS.

BIOS (Build) Date

Displays the date of the BIOS.

Processor (CPU) Type

Displays the processor type.

Processor Speed

Displays the processor speed.

Count

Displays the number of installed processors.

(Installed) Memory

Displays the total amount of RAM.

Extended Memory

Displays the memory size, starting at 1MB.

Language

English (default)

Specifies the current default language used by the BIOS. You can select other languages listed as needed.

System Time

Hour:minute:second

Specifies the current time.

System Date

Month/day/year

Specifies the current date.


Some systems report a single value for installed memory, whereas others provide a separate display for extended memory. (Extended memory is the memory beyond the first megabyte in the system.)

You can't change any values in the memory fields; they are only for your information because they are automatically counted up by the system. If the memory count doesn't match what you have installed, a problem has likely occurred with some of the memory: It is defective, is not fully seated or properly installed, or is a type that is incompatible with your system. Most server BIOSs have one or more beep codes that alert you to memory problems.

The Advanced Menu

The Advanced menu is a doorway to submenus for setting advanced features that are available through the motherboard chipset. This part of your BIOS Setup is specific to the particular chipset the motherboard uses. Many chipsets are available on the market today, and each has unique features. The chipset setup is designed to enable the user to customize these features and control some of the chipset settings. Table 4.31 shows the typical Advanced submenus available.

Table 4.31. Typical Advanced BIOS Submenus

Submenu

Description

Processor Configuration

Displays processor information, such as cache sizes; configures processor settings.

Hammer Configuration

Configures AMD Opteron features.

PCI Configuration

Configures the IRQ priority of individual PCI slots.

Boot Configuration

Configures PnP, resets PnP configuration data, and configures the NumLock key.

Peripheral Configuration

Configures peripheral ports and devices.

IDE (ATA) Drive Configuration

Configures IDE and SATA devices.

Floppy Configuration

Configures the floppy drive.

Event Log Configuration

Configures event logging.

Video Configuration

Configures video features.

USB Configuration

Configures USB support.

Chipset Configuration

Configures advanced chipset features.

Fan Control Configuration

Configures fan operation.

Hardware Monitoring

Monitors system temperatures, voltages, and fan speeds.

Server

Configures system management and other server-specific functions.

System Management

Displays serial and part numbers for major components.

Serial Console

Configures console redirection options.

Event Log

Configures logging of system and BIOS events.


The following sections discuss these options. Note that different systems might list these options in different orders or might omit or combine some submenus.

The Processor and Hammer Configuration Submenus

Table 4.32 lists settings used by a typical Processor Configuration submenu used by a server running an Intel chipset and processor.

Table 4.32. Typical Processor Configuration Submenu Options

Option

Settings

Description

Frequency

Specifies processor speed.

FSB Speed

Specifies processor FSB speed.

CPUID[1]

Specifies the CPUID for the installed processor.

Cache L1[1]

Specifies the L1 cache size.

Cache L2[1]

Specifies the L2 cache size.

Cache L3[1]

Specifies the L3 cache size (if included in processor).

Hardware Prefetcher

Enabled and Disabled

Improves performance on some systems if enabled.

Hyper-Threading

Enabled and Disabled

Supported on Intel P4 or Xeon/XeonMP processors only; enable if using a Hyper-Threading (HT Technology)compatible operating system.


[1] Listed separately for each processor installed on the motherboard.

If your server uses AMD Opteron processors, you're likely to see a Hammer Configuration submenu (Table 4.33) instead of the Processor Configuration submenu.

Table 4.33. Typical Hammer Configuration Submenu Options

Option

Settings

Description

Memhole Mapping

Hardware, Software, and Disabled

Configures the PCI memory hole.

HT-LDT Frequency

(in MHz) 800, 200, 400, 600, and 1000

Specifies the speed of HyperTransport connections.

MTRR Mapping

Discrete and Continuous

Configures mapping of transfers to and from PCI or AGP video.


Advanced ECC Memory Configuration Settings

Servers that feature ECC memory error correction offer an option to enable or disable ECC. More advanced types of error correction require additional BIOS options. Table 4.34 lists typical ECC and advanced ECC BIOS settings. Depending on the server, these options might be found in various menus or submenus.

Table 4.34. Typical ECC/Advanced ECC Submenu Options

Option

Settings

Description

ECC

Enabled and Disabled

Configures ECC memory correction; requires ECC modules, if enabled.

ECC Scrub Redirect

Enabled, Disabled, and Foreground

When enabled, allows ECC scrubber to correct memory errors detected during normal operation.

4-bit ECC (Chip-Kill)

Enabled and Disabled

Enables 4-bit ECC (Chip-Kill); corrects up to 4-bit memory errors.

DCACHE ECC Scrub

Various

Configures background scrubbing rates for DCACHE.

L2 ECC Scrub

Various

Configures background scrubbing rates for L2 cache.

Dram ECC Scrub

Various

Configures background scrubbing rates for system memory.


The I/O Device Configuration Submenu

The I/O Device Configuration submenu is used to configure legacy I/O devices built in to the motherboard, such as serial ports, parallel ports, and sometimes others. Note that some motherboards place these options on two or more submenus.

Table 4.35 shows a typical I/O Device Configuration submenu's options.

Table 4.35. Typical I/O Device Configuration Submenu Options

Option

Settings

Description

Serial Port A

Auto,[1] Disabled[2], and Enabled[1]

Configures serial port A. Auto-assigns the first free COM port (normally COM 1) I/O addresses 3F8h and IRQ4.

Base I/O Address

3F8h (default), 2F8h, 3E8h, and 2E8h

Specifies the base I/O address for serial port A.

Interrupt

IRQ 4 (default) and IRQ 3

Specifies the interrupt for serial port A.

Serial Port B

Auto,[1] Disabled[2], and Enabled[1]

Configures serial port B. Auto-assigns the second free COM port (normally COM 2) I/O addresses 2F8h and IRQ3.

Base I/O Address

3F8h, 2F8h, (default) 3E8h, and 2E8h

Specifies the base I/O address for serial port B.

Interrupt

IRQ 4 and IRQ 3 (default)

Specifies the interrupt for serial port B.

Parallel Port

Auto (default), Enabled, and Disabled[2]

Configures the parallel port. Auto-assigns I/O addresses 378h and IRQ7.

Mode

Output Only, Bi-directional (default), EPP, and ECP[3]

Selects the mode for the parallel port. EPP is Extended Parallel Port mode, a high-speed, bidirectional mode. ECP is Enhanced Capabilities Port mode, another high-speed, bidirectional mode.

Base I/O Address

378 (default) and 278

Specifies the base I/O address for the parallel port.

Interrupt

IRQ 7 (default) and IRQ 5

Specifies the interrupt for the parallel port.

DMA

DMA 3 (default) and DMA 1

Specifies the DMA channel for the parallel port.


[1] Some systems use Enable as the default setting, whereas others use Auto.

[2] You should disable the serial and parallel ports if they are not being used because doing so frees up those resources for other devices.

[3] EPP and ECP are IEEE 1284compliant modes and require the use of an IEEE 1284compliant printer cable.

The Integrated Device Configuration Submenu

The Integrated Device Configuration submenu is used to configure newer I/O devices built in to the motherboard, such as USB ports, SATA ports, RAID arrays, and integrated NIC boot ROMs. Note that some motherboards place these options on different menus, such as the Advanced menu or the USB Configuration submenu.

Table 4.36 shows settings for typical Integrated Device Configuration submenu options.

Table 4.36. Typical Integrated Device Configuration Submenu Options

Option

Settings

Description

USB Control

USB 1.1+2.0, USB 1.1, and Disabled

Configures, enables, and disables onboard USB ports.

USB Legacy

Enabled and Disabled

Configures USB support for keyboard and mouse.

RAID Controller[1]

Enabled and Disabled

Enables or disables the listed SATA or ATA RAID host adapter.

Onboard LAN Boot ROM[1]

Disabled and Enabled

Enables or disables the boot ROM for the listed onboard NIC.

Interrupt Mode

APIC and 8259/PIC

Selects interrupt mode. APIC supports ACPI power management.


[1] Each controller or NIC ROM present is listed separately.

The USB Configuration Submenu

Some systems use the USB Configuration submenu to configure USB ports and devices. When present, this submenu might also contain a submenu used to configure specific USB mass-storage devices.

Table 4.37 lists typical options from a USB Configuration submenu, and Table 4.38 lists typical USB mass storage configuration settings.

Table 4.37. Typical USB Configuration Submenu Options

Option

Settings

Description

USB Function

Enabled and Disabled

Enables and disables onboard USB ports.

USB Legacy

Auto, Keyboard only, Keyboard and mouse, and Disabled

Configures USB support for keyboard and mouse.

Port 64/60 Emulation

Enabled and Disabled

When enabled, provides complete USB legacy support for non-USBaware operating systems

USB 2.0 Controller

Enabled and Disabled

Enables USB 2.0 support; if disabled, USB ports run in USB 1.1 mode only.

USB 2.0 Mode

FullSpeed (12Mbps) and HiSpeed (480Mbps)

Selects USB operating speed. Select HiSpeed for USB 2.0-specific devices.


Table 4.38. Typical USB Mass Storage Device Submenu Options

Option

Settings

Description

USB Mass Storage Reset Delay

Varies

Specifies the amount of time, in seconds, for POST to wait for device after start command.

(Device #x)[1] Emulation Type

Auto, Floppy, Forced FDD, Hard Disk, and CD/DVD

Auto-sets devices under 530MB as floppy; others as hard disk. Use Forced FDD to boot hard disk-formatted drives as if they were floppies.


[1] A separate listing is used for each USB mass storage device detected.

The PCI Configuration Submenus

The PCI Configuration submenus are used to configure PCI slots, to configure onboard PCI devices such as video, and to set aside hardware resources needed by legacy ISA devices. Hardly any systems have all the options shown in Table 4.39.

Table 4.39. Typical PCI Configuration Submenu Options

Option

Settings

Description

PCI Slot # Option ROM[1]

Enable and Disable

Enable to use option ROMs on NICs, SCSI host adapters, and other add-on cards.

Enable Master[1]

Disable and Enable

Enable to make the specified slot a bus master.

Onboard SCSI

Enable and Disable

Enable if SCSI devices are used.

SCSI ROM Mode

RAID 0 and RAID 1/1e

RAID 0 (integrated striping); RAID 1/1e (integrated mirroring/integrated mirroring enhanced); change only if you are prepared to rebuild the RAID array.

Onboard Video

Enable and Disable

Disable only if you use a PCI or other graphics card.

Dual Monitor Video

Disable and Enable

Enable if you want to use a PCI card along with internal video for a dual-display setup.

Integrated NIC[2]

Enable and Disable

Disable only if you plan to use a NIC in an add-on card slot.

Integrated NIC ROM[2]

Enable and Disable

Enable if you want to boot from the integrated NIC rather than from onboard drives.

PCI Slot[1] Frequency

Auto, PCI-X 133 (MHz), PCI-X 100, PCI-X 66, PCI 66, and PCI 33

Many systems configure PCI-X slot speeds via motherboard jumpers rather than via the system BIOS.


[1] Each PCI slot and its options are listed separately.

[2] If more than one NIC is built in to the motherboard, each is listed separately.

Table 4.40 lists typical options for setting aside resources needed by legacy ISA devices.

Table 4.40. Typical PCI/PnP Configuration Options

Option

Settings

Description

UMB Region[1]

Available and Reserved

Select Reserved if a legacy (non-PnP) ISA device uses the UMB area for option RAM or ROM.

ISA IRQ Resource Exclusion[2]

Available and Reserved

Select Reserved if a legacy (non-PnP) ISA device uses the specified IRQ.


[1] Each UMB region (C800-CBFF, CC00-CFFF, D000-D3FF, D400-D7FF, D800-D8FF, DC00-DFFF) is listed separately.

[2] Each ISA IRQ (3, 4, 5, 7, 9, 10, 11, 15) is listed separately.

For more information about ISA IRQ usage, see "IRQ," p. 269.


To make IRQs 3, 4, and 7 available, if needed, for PCI or other PnP devices you disable the serial ports (IRQs 3 and 4) and the parallel port (IRQ 7) if these ports are not used.

The ATA (IDE) Hard Disk Drive Configuration Submenu

You use the ATA Configuration submenu for configuring ATA and SATA devices, such as hard drives, CD-ROM drives, LS-120 (SuperDisk) drives, tape drives, and so on. Table 4.41 shows typical ATA Configuration submenu options for a typical modern server motherboard. Note that depending on the system, these options might be found on different menus.

Table 4.41. Typical ATA Interface Configuration Settings[1]

Option

Settings

Description

ATA Configuration

Enhanced (default), Disabled, and Legacy[2]

Enhanced causes all SATA and PATA resources to be enabled. PATA resources to resources to be disabled.

Legacy ATA Channels

PATA Pri Only, PATA Sec Only, PATA Pri and Sec, SATA P0/P1 Only, SATA P0/P1, PATA Sec, and SATA P0/P1, PATA Pri

Configures PATA and SATA resources for operating systems requiring legacy ATA operation. This feature is present only when the ATA Configuration option is set to Legacy.

PCI ATA Bus Master

Enabled (default) and Disabled

Enables/disables the use of DMA for hard drive BIOS INT13 reads and writes.

Hard Disk Pre-Delay

Various

Specifies the hard disk drive predelay, in seconds.

PATA or SATA RAID[3]

Disabled (default) and Enabled

Configures RAID support.

Large Disk Access

DOS and Other

Use DOS for Windows; use Other for Linux, Novell, and others.


[1] Key: PATA = parallel ATA (also known as ATA or ATA/IDE); SATA = Serial ATA; Pri = Primary; Sec = Secondary; P0 = SATA connector 0; and P1 = SATA connector 1.

[2] Legacy causes up to two ATA channels to be enabled for operating systems that require legacy ATA operation.

[3] From this menu, you can also select the SATA or PATA drive you need to configure. See Table 4.42 for settings.

The hard disk predelay function delays accessing drives that are slow to spin up. Some drives are not ready when the system begins to look for them during boot, which causes the system to display Fixed Disk Failure messages and fail to boot. Setting this delay allows time for the drive to become ready before continuing the boot. Of course, this slows down the boot process, so if your drives don't need this delay, it should be disabled.

The ATA/SATA Drive Configuration Submenus

The ATA/SATA Drive Configuration submenus are for configuring each ATA or SATA device. Of all the BIOS Setup menus, the hard disk settings are by far the most important. In fact, they are the most important of all the BIOS settings. Most modern servers have one or two ATA/IDE host adapters; each host adapter supports two drives. Many modern servers also incorporate two or more SATA host adapters; each host adapter supports one drive. Some servers include up to eight SATA host adapters.

Most modern BIOSs have an autodetect feature that enables automatic configuration of ATA or SATA drives. If this is available, in most cases you should use it because it will prevent confusion in the future. With the Auto setting, the BIOS sends a special Identify Drive command to the drive, which responds with information about the correct settings. From this, the BIOS can automatically detect the specifications and optimal operating mode of almost all ATA and SATA hard drives. When you select Auto for a hard drive, the BIOS redetects the drive specifications during POST every time the system boots. You could swap drives with the power off, and the system would automatically detect the new drive the next time it was turned on.

In addition to the Auto setting, most older BIOSs offered a standard table of up to 47 drive types with specifically prerecorded parameters. Each defined drive type has a specified number of cylinders, number of heads, write precompensation factor, landing zone, and number of sectors. This was often used many years ago, but it is rarely used today because virtually no drives today conform to the parameters on those drive type lists.

Another option is to select a setting called User or User Defined, which is where you can enter the specific drive CHS (Cylinder, Head, and Sector) parameters into the proper fields. These parameters are saved in the CMOS RAM and reloaded every time the system is powered up.

Most BIOSs today offer control over the drive translation settings if the type is set to User and not Auto. Usually, two translation settings are available: Standard and LBA. Standard, or LBA-disabled, is used only for drives of 528MB or less, where the maximum number of cylinders, heads, and sectors are 1,024, 16, and 63, respectively. Because most drives today are larger, this setting is rarely used.

LBA (logical block addressing) is used for virtually all ATA drives that are larger than 528MB. Note that systems from 1997 and earlier are usually limited to a maximum drive size of 8.4GB unless they have a BIOS upgrade. Systems from 1998 and later usually support drives up to 136.9GB; systems from 2002 and beyond usually support drives beyond 137GB (48-bit LBA support), although a BIOS upgrade might be necessary. During drive access, the ATA controller transforms the data address described by sector, head, and cylinder number into a physical block address, significantly improving data transfer rates.

Table 4.42 shows the ATA and SATA drive settings found in a typical modern server BIOS.

Table 4.42. Typical ATA and SATA Drive Settings

Option

Settings

Description

Drive Installed

Displays the type of drive installed.

Type

Auto (default) and User

Specifies the ATA configuration mode. Auto-reads settings from the ATA/ATAPI/SATA device. User allows settings to be changed.

Maximum Capacity

Displays the drive capacity.

LBA/Large Mode

Auto (default) and Disabled

Displays whether automatic translation mode is enabled for the hard disk.

Block Mode[1]

Auto (default) and Disabled

Displays whether automatic multiple-sector data transfers are enabled.

32-bit Data Transfer

Disabled and Enabled

Enable for faster transfer; disable if Enable is not reliable.

Transfer Mode

Auto (default), 0, 1, 2, 3, and 4

Sets Programmed I/O mode.

Ultra DMA Mode [2]

Auto

 
 

Mode 2

33MHz

 

Mode 3

66MHz

 

Mode 4

100MHz

 

Mode 5

133MHz

SMART

Auto (default), Disabled, and Enabled

Enables/disables SMART. Auto-enables SMART if it is supported by the drive.

Cable Detected

Displays the type of cable connected to the PATA interface: 40-conductor or 80-conductor. 80-conductor is required for UDMA Mode 3 or higher.

ARMD (ATAPI Removable Media Device) Emulation Type

Floppy

This is displayed only when an LS-120 SuperDisk drive is connected.


[1] Also known as multi-sector transfers on some systems.

[2] Some systems also list single-word DMA (SWDMA) and multi-word DMA (MWDMA) settings.

Setting the drive type to Auto causes the other values to be automatically configured correctly. You should do this for virtually all standard system configurations. When set to Auto, the BIOS sends an Identify command to the drive, causing it to report back all the options and features found on that drive. Using this information, the BIOS then automatically configures all the settings on this menu for maximum performance with that drive, including selecting the fastest possible transfer modes and other features.

For hard drives, the only option available other than Auto is User. When set to User, the other choices are made available and are not automatically set. This can be useful for somebody who wants to "play" with these settings, but in most cases, all you will get by doing so is lower performance and possibly even trouble in the form of corrupted data or a nonfunctional drive. User should be used only if a drive was originally prepared with a set of values different from those recognized automatically with the default Auto configuration setting.

The Boot Menu

You use the Boot menu for setting the boot features and the boot sequence (through submenus). If your operating system includes a bootable CDWindows Server 2003, for exampleyou use this menu to change the boot drive order so the BIOS checks your CD drive before your hard drive for boot files. Table 4.43 shows the functions and settings available on a typical motherboard.

Table 4.43. Typical Boot Menu Settings

Option

Settings

Description

Silent Boot

Enabled (default) and Disabled

Enabled displays the OEM graphic instead of POST messages. Disabled displays normal POST messages.

Add-On ROM Display Mode

Enabled (default) and Disabled

Enables/disables the splash screen for add-in cards.

Fast Boot

Enabled (default) and Disabled

Enables the computer to boot with or without running certain POST tests.

USB Boot

Enabled (default) and Disabled

Enables/disables booting from USB devices.

Boot Device Priority

Selects a submenu that specifies the boot sequence from the available types of boot devices.


By using the Boot menu, you can configure which devices your system boots from and in which order the devices are sequenced. From this menu, you can also access Hard Drive and Removable Devices submenus, which enable you to configure the ordering of these devices in the boot sequence. For example, you can set hard drives to be the first boot choice, and then in the hard drive submenu, you can decide to boot from the secondary drive first and the primary drive second. Normally, the default with two drives would be the other way around.

Some recent systems also enable you to boot from external USB drives, such as Zip or LS-120 SuperDisk drives.

The Boot Device Priority Submenu

You use the Boot Device Priority submenu to select the order in which boot devices will be read to start the system. Table 4.44 shows the options found on a typical motherboard.

Table 4.44. Boot Device Priority Submenu Options

Option

Settings

Description

1st Boot Device

Removable (Floppy)

Specifies the boot sequence according to the device type.

2nd Boot Device

Hard Drive device

Specifies the boot sequence according to the device type.

3rd Boot Device

ATAPI CD-ROM device

Specifies the boot sequence according to the device type.


Depending on the system, there might be as few as three or many more boot devices available. Some systems, primarily those that use late-model Intel chipsets, feature additional submenus in which you can select boot device priority for each drive type. Some systems offer an option to boot from any bootable drive in the system at startup time. Generally, systems with this option use the F12 key to activate a boot menu.

When you install an operating system for the first time, or if you need to run other CD-based diagnostics, you should set the first boot device as the CD-ROM or other optical drive. With this setting, you can boot from your operating system or diagnostics CD. The hard disk should generally be configured as the second boot device, unless you occasionally need to boot from a floppy disk to run diagnostics programs. In such cases, the floppy and CD-ROM should be listed before the hard disk.

The Maintenance/Health/Fan Control and Monitor Menus

The Maintenance menu has many names, but it typically displays motherboard and processor voltage levels, processor temperature, and fan speeds. System management software can monitor this information after the system starts, and network or SMBus management programs and devices can monitor it remotely. Table 4.45 lists typical settings in the Maintenance menu.

Table 4.45. Maintenance/PC Health/Fan Control Menu Options

Option

Settings

Description

CPU VCore

Displays voltage going to the CPU core.

VBAT

Displays current battery voltage.

+3.3V

Displays current voltage on 3.3V circuit.

+5V

Displays current voltage on 5.0V circuit.

+12V

Displays current voltage on 12V circuit.

DDR

Displays current DDR memory voltage.

CPUx Fan Speed1

Displays CPUx fan speed (RPM).

System Fanx Speed1

Displays System Fanx fan speed (RPM).

CPUx Temperature1

Displays the temperature of the listed processor.

Fan Speed Control

Enabled and Disabled

Enable to control fans through temperature sensors.[1]


[1] Each CPU fan and system fan connected to the motherboard is listed here. Replace x with the actual CPU or system fan number.

Some systems also list temperatures for other areas inside the chassis.

Power Management Settings

Table 4.46 shows the typical power settings found in a managed system.

Table 4.46. Typical Power Settings for a Managed System

Option

Settings

Description

ACPI

Selects a submenu that sets the ACPI power management options.

After Power Failure (AC Link)

Last State (default), Stay Off, and Power On

Specifies the mode of operation if an AC power loss occurs. Last State restores the computer to the power state it was in before the power loss. Stay Off keeps the computer powered off until the power button is pressed. Power On boots the computer when power is restored.

Power Button

On/Off and Wake/Sleep

Specifies how the front panel power button operates.

Spread Spectrum

Enabled and Disabled

Disable to improve system stability; enable to help pass EMI/RFI emissions tests.


Security Settings

Most BIOSs include two passwords for security: the supervisor and user passwords. These passwords help control who is allowed to access the BIOS Setup program and who is allowed to boot the computer. The supervisor password is also called a setup password because it controls access to the setup program. The user password is also called a system password because it controls access to the entire system.

If a supervisor password is set, a password prompt is displayed when an attempt is made to enter the BIOS Setup menus. When entered correctly, the supervisor password gives unrestricted access to view and change all the setup options in the setup program. If the supervisor password is not entered or is entered incorrectly, access to view and change setup options in the setup program is restricted.

If the user password is set, the password prompt is displayed before the computer boots up. The password must be entered correctly before the system is allowed to boot. Note that if only the supervisor password is set, the computer boots without asking for a password because the supervisor password controls access only to the BIOS Setup menus. If both passwords are set, the password prompt is displayed at boot time, and either the user or the supervisor password can be entered to boot the computer. In most systems, the password can be up to seven or eight characters long.

If you forget the password, most systems have a jumper on the board that allows all passwords to be cleared. This means that for most systems, the password security also requires that the system case be locked to prevent users from opening the cover and accessing the password-clear jumper. This jumper is often not labeled on the board for security reasons, but it can be found in the motherboard or system documentation.

If you know the password and can get into the BIOS Setup, you can also clear a password by entering the BIOS Setup and selecting the Clear Password function. If no clear function is available, you can still clear the password by selecting the Set Password function and pressing Enter (for no password) at the prompts.

Table 4.47 shows the security functions in a typical server's BIOS Setup.

Table 4.47. Typical Security Settings

Option

Settings

Description

Supervisor Password

Displays supervisor password.

User Password

Displays user password.

Set Supervisor Password

Specifies the supervisor password.

Set User Password

Specifies the user password.

Password Check

Setup and User

Specifies level to check password.

Password on Boot

Enable and Disable

Specifies when to check password.

Password Check

Full (default), No Access, View Only, and Limited

Sets the user access rights to the BIOS Setup utility. Full allows the user to change all fields except the supervisor password. No Access prevents user access to the BIOS Setup utility. View Only allows the user to view but not change the BIOS Setup utility fields. Limited allows the user to change some fields.

Chassis Intrusion

Disabled (default), Log; Log, notify once; and Log, notify until cleared

Disabled disables chassis intrusion; Log logs the intrusion in the event log. Log, notify once halts the system during POST, and the user must press F4 to continue, the intrusion flag is cleared, and the event log is updated. Log, notify until cleared halts the system during POST, and the user must enter the BIOS Setup Security menu and select Clear Chassis Intrusion Status to clear the chassis intrusion flag.


To clear passwords if the password is forgotten, most motherboards have a password-clear jumper or switch. If you can't find the documentation for your board and aren't sure how to clear the passwords, you can try removing the battery for a minute or so to clear the CMOS RAM. It can take that long for the CMOS RAM to clear on some systems because they have capacitors in the circuit that retain a charge. Note that this also erases all other BIOS settings, including the hard disk settings, so you should record them beforehand.

Event Logging, Console Redirection, and System Management Settings

Unlike desktop PCs, servers are usually managed remotely. To enable remote management at the console level, most servers include a BIOS menu for console redirection (also called remote management). Table 4.48 lists typical console redirection menu options.

Table 4.48. Console Redirection Menu Options

Option

Settings

Description

BIOS Redirection Port (COM Port Address)

Disabled, Serial A, and Serial B

Specifies COM (serial) port used for remote management.

Baud Rate

Varying rates from 300bps up to 115.2Kbps

Specifies the serial port transmission rate; theusual defaults are 9600bps and 19.2Kbps.

Flow Control

None, CTS/RTS (Hardware), XON/XOFF (Software), and CTS/RTS+CD (Modem)

Specifies the type of flow control used to manage the connection.

Remote Access

Enable and Disable

Enables or disables remote access to server.

Terminal Type

PC-ANSL, PC-ANSI 7-bit, VT100 8-bit, VT100+, VT100, and VT-UTF8

Specifies the type of terminal or terminal emulation mode on a remote PC used for remote management.


Note that all settings in the Console Redirection menu must be the same as those used by the ASCII terminal, modem, or PC terminal emulation software used to receive the redirected information. If the baud rate, flow control, or terminal type settings don't match at both ends of the connection, the terminal will see garbage onscreen.

Note that console redirection will fail if the specified serial (COM) port has been disabled in the system BIOS.

Many servers provide an Event Log menu in the system BIOS. The event log stores POST errors so they can be reviewed for clues to system problems. Table 4.49 lists typical Event Log menu options. In Table 4.49, DMI refers to the Desktop Management Interface standard developed by the Distributed Management Task Force (www.dmtf.org).

Table 4.49. Event Log Menu Options

Option

Settings

Description

DMI Event Log (BIOS Event Logging)

Disabled and Enabled

When enabled, stores POST errors in the event log.

Clear Event Log

Yes and No

When set to Yes, clears the event log when the system restarts.

View DMI Event Log

Press Enter key

Opens the log for viewing.

Mark DMI Events as Read

Press Enter key

Specifies that the log has been read.

Event Log Capacity

Space Available and Full

Indicates whether the log is full.

Event Log

Valid and Invalid

Indicates whether the log is valid.


Some BIOSs with event logging offer additional options for specifying the types of events logged, such as ECC, PCI, PCI Express, System Bus, Hub Interface, and Memory Buffer. Events can also be viewed by a DMI-compliant management program such as Intel's LANDesk Client Manager.

Note that some systems have the Console Redirection and Event Log menus as submenus under a Server menu that offers additional management options. Some servers also include a System Management menu that lists serial numbers of onboard components and MAC addresses for onboard NICs.

Additional BIOS Options

Some systems have additional features in their BIOS Setup screens that might not be found in all BIOSs. Some of the most common features you might see are listed in Table 4.50.

Table 4.50. Additional BIOS Options

Option

Description

System BIOS Cacheable

Allows caching of the system BIOS ROM at F0000hFFFFFh, resulting in better system performance when 16-bit applications are run. If any program writes to this memory area, a system error can result.

Video BIOS Cacheable

Allows caching of the video BIOS ROM at C0000hC7FFFh, resulting in better video performance when 16-bit applications are run. If any program writes to this memory area, a system error can result.

Video RAM Cacheable

Selecting Enabled allows Video Memory Cache Modecaching of the video memory (RAM) at A0000hAFFFFh, resulting in better video performance when 16-bit applications are run. If any program writes to this memory area, a memory access error can result. Uncacheable Speculative Write-Combining (USWC) mode is the same as Enabled on some systems.

Delayed Transaction

The chipset has an embedded 32-bit posted write buffer to support delay transaction cycles. Select Enabled to support compliance with PCI specification version 2.1.

Virus Warning

When enabled, you receive a warning message if a program attempts to write to the boot sector or the partition table of the hard disk drive. If you get this warning during normal operation, you should run an antivirus program to see whether an infection has occurred. This feature protects only the master boot sector, not the entire hard drive. Note that programs that usually write to the master boot sector, such as FDISK, can trigger the virus warning message.

Quick Power On Self Test

When enabled, this reduces the amount of time required to run the POST. A quick POST skips certain steps, such as the memory test. If you trust your system, you can enable the quick POST, but in most cases, you should leave it disabled so you get the full-length POST version.

Swap Floppy Drive

This field is functional only in systems with two floppy drives. Selecting Enabled assigns physical drive B: to logical drive A: and physical drive A: to logical drive B:.

Boot Up Floppy Seek

When enabled, the BIOS tests (seeks) floppy drives to determine whether they have 40 or 80 tracks. Only 360KB floppy drives have 40 tracks; drives with 720KB, 1.2MB, and 1.44MB capacity all have 80 tracks. Because very few modern PCs have 40-track floppy drives, you can disable this function to save time.

PS/2 Mouse Function Control

If your system has a PS/2 (motherboard) mouse port and you install a serial or USB pointing device, select Disabled.

ROM Shadowing

ROM chips are typically very slow, around 150ns (nanoseconds), and operate only 8 bits at a time, whereas RAM runs 60ns or even 10ns or less and is either 32 bits or 64 bits wide in most systems. Shadowing is the copying of BIOS code from ROM into RAM, where the CPU can read the BIOS drivers at the higher speed of RAM. This has little effect on GUI-based systems such as Windows.

Operating Frequency

Some motherboards enable you to select the FSB and CPU clock multiplier speeds within the BIOS rather than through the normal motherboard-based DIP switches or jumper blocks. Select this option to enable customized settings for the CPU Clock Multiplier and CPU Frequency options.

CPU Frequency

This option enables you to vary the CPU FSB frequency from the default 66MHz, 100MHz, or 133MHz to higher values, which enables you to over clock the system.

CPU Clock Multiplier

This option enables you to vary the CPU clock multiplier from its default values to higher values if the CPU is not multiplier-locked. Recent and current Intel CPUs ignore nonstandard CPU clock multiplier settings, but AMD Athlon and Duron CPUs can be overclocked with this option.

CPU Vcore Setting

This option enables you to vary the core voltage of the CPU to improve the stability of the system during overclocking or to install CPUs not specifically supported by the default Automatic voltage settings.

Quiet Boot

System does not display POST information.

Boot-Time Diagnostic Screen

System displays POST information.


Default, Fail-Safe, Optimized, and Custom Settings

The Exit menu is for exiting the setup program, saving changes, and loading and saving defaults. Table 4.51 shows the typical selections found in most motherboard BIOSs.

Table 4.51. Typical Exit Menu Settings

Option

Description

Exit Saving Changes

Exits and saves the changes in CMOS RAM.

Exit Discarding Changes

Exits without saving any changes made in the BIOS Setup.

Load Optimal Defaults

Loads the factory (optimal) default values for all the setup options.

Load Custom Defaults[1]

Loads the custom defaults for setup options.

Save Custom Defaults[1]

Saves the current values as custom defaults in CMOS RAM. Normally, the BIOS reads the saved setup values from CMOS RAM. If this memory is corrupted, the BIOS reads the custom defaults. If no custom defaults are set, the BIOS reads the factory defaults from the flash ROM.

Discard Changes

Discards changes without exiting setup. The option values present when the computer was turned on are used.


[1] Not present on all systems.

After you have selected an optimum set of BIOS Setup settings, you can save them by using the Save Custom Defaults option. This enables you to quickly restore your settings if they are corrupted or lost. All BIOS settings are stored in CMOS RAM memory, which is powered by a battery attached to the motherboard.

Considerations for BIOS Upgrades

The following are some of the primary functions of a ROM BIOS upgrade; the exact features and benefits of a particular BIOS upgrade depend on the system:

  • Added support for newer-type and faster-speed processors

  • Fast POST for decreasing boot times

  • Support for Ultra DMA/100 or Ultra DMA/133 ATA drives

  • Support for ATA hard drives greater than 8.4GB or 137GB (48-bit LBA)

  • Support for SATA drives

  • Support for a preboot environment and recovery software in the host protected area (HPA)

  • PnP support and compatibility

  • Correction of calendar-related and leap-year bugs

  • Correction of known bugs or compatibility problems with certain hardware and application or operating system software

  • Support for ACPI power management

  • Enhanced DMI support

  • Support for temperature monitoring and fan speed monitoring and control

  • Support for legacy USB devices (keyboards and mouse devices)

  • Support for chassis intrusion detection

If you install newer hardware or software and follow all the instructions properly, but you can't get it to work, specific problems might exist with the BIOS that an upgrade can fix. This is especially true with newer operating systems. Because these problems are random and vary from board to board, it pays to periodically check the board manufacturer's website to see whether any updates are posted and what problems they fix. Because new hardware and software that are not compatible with your system could cause it to fail, you should check the BIOS upgrades available for your system before you install new hardware or software, particularly processors.

Where to Get a BIOS Update

For most BIOS upgrades, you must download the upgrade from the motherboard or system vendor's website. BIOS manufacturers do not offer BIOS upgrades because the BIOSs in motherboards do not actually come from them. In other words, although you think you have a Phoenix, AMI, or Award BIOS, you really don't. Instead, you have a custom version of one of these BIOSs that was licensed by your server motherboard or system manufacturer and uniquely customized for its board. Therefore, you must get any BIOS upgrades from the motherboard or system manufacturer or from a third-party source because they must be customized for your board or system as well.

Tip

If you cannot get a BIOS upgrade from your server motherboard or system vendor, you may be able to obtain one from a third-party vendor. However, before you order one, compare the cost of a BIOS upgrade to the cost of a new server motherboard. If you have a low-end server motherboard based on the ATX form factor, it might be less expensive to purchase a new motherboard than to purchase a BIOS upgrade.

If you decide to buy a new motherboard, keep in mind that you will probably need to perform a repair install to enable the operating system to recognize and install drivers for the new motherboard's chipset and onboard hardware.

Before you buy a new motherboard, make sure your existing operating system license will work with the new motherboard. If it will not, you will also need to purchase a new operating system license. Be sure to look at the hidden costs of purchasing a new motherboard versus purchasing a replacement BIOS if you cannot get a BIOS upgrade from the original vendor.


Determining the BIOS Version

When seeking a BIOS upgrade for a particular motherboard (or system), you need to know the following information:

  • The make and model of the motherboard (or system)

  • The version of the existing BIOS

  • The type of CPU

You usually can identify the BIOS you have by watching the screen when the system is first powered up. It helps to turn on the monitor first because some take a few seconds to warm up, and the BIOS information is often displayed for only a few seconds.

Note

Many newer PCs do not display the typical POST screen. Instead, many show a logo for the motherboard or PC manufacturer, which is usually referred to as a splash screen. To enter BIOS Setup, you must press a key or keys (specific to the BIOS manufacturer). See the section "Accessing the Motherboard BIOS," earlier in this chapter, for more information. You might hear some in the industry refer to displaying a manufacturer's logo instead of the default POST screen as a quiet boot.


Tip

Look for any copyright notices or part number information. Sometimes you can press the Pause key on the keyboard to freeze the POST, which allows you to take your time to write down the information. You can then press any other key to cause the POST to resume.


You can often find BIOS ID information in the BIOS Setup screens. eSupport also offers the downloadable BIOS Agent, which you can use to determine this information, as well as the motherboard chipset and Super I/O chip the motherboard uses. When you have this information, you should be able to contact the motherboard manufacturer to see whether a new BIOS is available for the system. If you go to the website, check whether a version exists that is newer than the one you have. If so, you can download it and install it in your system.

Backing Up Your BIOS

Many BIOS upgrade programs enable you to make a backup of your current BIOS version before you install a new version. You should use this option, when available, in case the updated BIOS does not work as well as the previously installed version.

Backing Up BIOS CMOS Settings

A motherboard BIOS upgrade usually wipes out the BIOS Setup settings in the CMOS RAM. Therefore, you should record these settings, especially the important ones, such as hard disk parameters. The easiest way to record your BIOS setup parameters is to use a digital camera with a close-up setting to photograph each setup screen. Don't forget to scroll if necessary to see all the settings on a particular screen and to take an additional picture of the settings not displayed on the first screen. Use your digital camera's LCD display rather than the optical viewfinder to make sure you don't cut off part of the image.

Upgrading a Flash BIOS

Virtually all PCs built since 1996 include flash ROM to store the BIOS. Flash ROM is a type of EEPROM chip you can erase and reprogram directly in the system without special equipment. Older EPROMs required a special UV light source and an EPROM programmer device to erase and reprogram them, whereas flash ROM can be erased and rewritten without even being removed from the system. On many recent systems, flash ROM is not a separate chip but might be incorporated into the South Bridge chip.

Using flash ROM enables you to download ROM upgrades from a website or receive them on disk; you can then load the upgrade into the flash ROM chip on the motherboard without removing and replacing the chip. Depending on the server, you might need to create a bootable floppy with the new BIOS image and update program, or you might be able to install the update from within the operating system.

Note that motherboard manufacturers do not notify you when they upgrade the BIOS for a particular board. You must periodically log on to their websites to check for updates. Flash updates are usually free.

Before proceeding with a BIOS upgrade, you must first locate and download the updated BIOS from your motherboard or system manufacturer. Log on to its website and follow the menus to the BIOS updates page; then select and download the new BIOS for your motherboard.

Note

If a flash BIOS upgrade is identified as being for only certain board revisions of a particular model, you need to be sure to determine that it will work with your motherboard before you install it. You might need to open your system and look for a revision number on the motherboard or for a particular component. You can check the vendor's website for details.


If the BIOS upgrade must be installed from a bootable floppy disk, the upgrade is usually contained in a self-extracting archive file that can initially be downloaded to your hard drive, but it must be extracted and copied to a floppy before the upgrade can proceed. Different motherboard manufacturers have slightly different procedures and programs to accomplish a flash ROM upgrade, so you should read the directions included with the update. If the upgrade can be installed from within Windows, see the manufacturer's instructions to learn how to extract and install the BIOS upgrade.

Tip

Before you start the flash BIOS upgrade process, you should disconnect all USB devices except for your keyboard and mouse. On some systems, leaving USB drives connected prevents a BIOS upgrade from working properly.

If you have Byte Merge enabled in an Award BIOS or a FirstBIOS-based system, you need to disable this feature before you perform the BIOS upgrade. On some systems, leaving Byte Merge enabled during a BIOS upgrade can destroy the BIOS. You can reenable this feature after you complete the upgrade.


If the BIOS Setup is performed with a bootable floppy disk, the first step in the upgrade after downloading the new BIOS file is to enter the CMOS Setup and write down or record your existing CMOS settings because they will be erased during the upgrade. Then you need to create a DOS boot floppy and uncompress or extract the BIOS upgrade files to the floppy from the file you downloaded. Next, you reboot with the newly created upgrade disk and follow the menus for the actual reflash procedure. If necessary, you can change the BIOS boot order so that the floppy disk drive is listed before the hard disk. Many servers offer different versions of the flash bootable disk and BIOS loader, depending on the operating system in use.

During the actual BIOS update, you will be reminded not to shut off system power or restart the system until the update is finished. If the BIOS does not finish updating, see the section "Flash BIOS Recovery," later in this chapter, for suggestions on how to recover.

After the BIOS upgrade is complete, remove the floppy disk and restart the system. Enter the BIOS setup program and reset options to the settings you used with the old BIOS. If you have questions about new or changed options in the updated BIOS, check your vendor's website for help.

Note

If you encounter a CMOS checksum error or other problems after rebooting, try rebooting the system again. CMOS checksum errors require that you enter Setup, check and save your settings, and exit Setup a second time.


Some systems use a single downloadable executable file that contains the BIOS loader program and replacement BIOS code.

If you find that the updated BIOS causes problems, you should revert to the version you used previously. Most server system and motherboard vendors permit you to download older versions, or you can reinstall your older version if the update program made a backup copy for you.

Flash BIOS Recovery

When you performed the flash reprogramming, you should have seen a warning message onscreen similar to the following:

[View full width]

The BIOS is currently being updated. DO NOT REBOOT OR POWER DOWN until the update is completed (typically within three minutes)...


If you fail to heed this warning or something interrupts the update procedure, you will be left with a system that has a corrupted BIOS. This means you will not be able to restart the system and redo the procedure, at least not easily. Depending on the motherboard, you might have to replace the flash ROM chip with one that was preprogrammed by the motherboard manufacturer or from a vendor such as BIOSMAN (www.biosman.com), which provides replacement BIOS chips containing the same BIOS code as that provided by your motherboard vendor. This is an unfortunate necessity because your board will be nonfunctional until a valid ROM is present.

In some of the latest systems, the flash ROM is soldered into the motherboard so it can't be replaced, rendering the reprogramming idea moot. Figure 4.43 illustrates typical socketed and soldered ROM chips on server motherboards.

Figure 4.43. Socketed and soldered ROM BIOS chips.


However, this doesn't mean that the only way out is a complete motherboard replacement. Most motherboards with soldered-in flash ROMs have a special BIOS recovery procedure that can be performed. This hinges on a special non-erasable part of the flash ROM that is reserved for this purpose.

In the unlikely event that a flash upgrade is interrupted catastrophically, the BIOS might be left in an unusable state. You should check the documentation for your system to determine whether the system's BIOS supports flash recovery and how to perform a BIOS recovery.

Some servers use a two-chip BIOS to enable BIOS recovery. Changes are made to the secondary BIOS chip, leaving the BIOS code in the primary section alone so it can be used as a backup in case of failure. This feature is sometimes known as the rolling BIOS.

With either BIOS recovery or rolling BIOS technology, it may be necessary to adjust a chip on the motherboard to enable or configure recovery options. See your server or motherboard documentation for details.

Troubleshooting BIOS and System Problems

When an x86-based system is first powered on, the system runs a POST. If errors are encountered during the POST, you usually see a text error message displayed onscreen. Errors that occur very early in the POST might happen before the video card is initialized. These types of errors can't be displayed, so the system uses two other alternatives for communicating the error message. One is beepingthe system beeps the speaker in a specific pattern that indicates which error has occurred.

The other alternative is to send a hexadecimal error code to I/O port address 80h, which can be read by a special card in one of the bus slots. When the ROM BIOS is performing the POST, in most systems the results of these tests are continuously sent to I/O Port 80h so they can be monitored by special diagnostics cards called POST cards (see Figure 4.44). These tests sometimes are called manufacturing tests because they were designed for testing systems on the assembly line without video displays attached.

Figure 4.44. A typical POST card with two-digit hexadecimal code display (left) and a POST card in operation (right).


A POST card has a two-digit hexadecimal display used to report the number of the currently executing test routine. Before executing each test, a hexadecimal numeric code is sent to the port and then the test is run. If the test fails and locks up the machine, the hexadecimal code of the last test being executed remains on the card's display.

POST cards are available from vendors such as JDR (www.jdr.com), Ultra-X (www.uxd.com), eSupport (www.esupport.com), and many others. A PCI POST card will work in any system with PCI or PCI-X slots. Some ISA POST cards are still available, but you should purchase them only if you are maintaining legacy servers with ISA or EISA slots.

Many tests are executed in a system before the video display card is enabled, especially if the display is EGA or VGA. Therefore, many errors can occur that would lock up the system before the system could possibly display an error code through the video system. Because not all these errors generate beep codes, to most normal troubleshooting procedures, a system with this type of problem (such as a memory failure in Bank 0) would appear completely "dead." By using one of the commercially available POST cards, however, you can often diagnose the problem.

These codes are completely BIOS dependent because the card does nothing but display the codes sent to it. Some BIOSs have more detailed POST procedures and therefore send more informative codes. You can purchase POST cards from JDR Microdevices or other sources; they are available in both ISA and PCI bus versions.

For simple but otherwise fatal errors that can't be displayed onscreen, most of the BIOS versions also send audio codes that can be used to help diagnose such problems. The audio codes are similar to POST codes, but they are read by listening to the speaker beep rather than by using a special card.

The following sections detail the text error codes for all the popular BIOS versions and their beep codes.

Error Messages

During the boot process on an x86 or Itanium processor, the bootstrap loader routine in the motherboard ROM BIOS reads the first physical sector of each of the bootable drives or devices, which is cylinder 0, head 0, sector 1 in CHS mode or logical block address 0 in LBA mode. The code from the first sector is loaded into RAM, and the last 2 bytes are checked to see whether they match a signature value of 55AAh. If the signature bytes match, that tells the ROM that the first sector contains a valid MBR and that the ROM can continue by transferring control to the MBR code.

If the last 2 bytes of the first physical sector do not match 55AAh, the ROM continues by checking the first physical sector of the next bootable device in the boot sequence until it either finds one with a valid MBR or runs out of devices to check. If after checking all the drives or devices in the boot sequence, none are found to have the proper signature bytes indicating a valid MBR, the ROM invokes an interrupt 18h that calls a subroutine that displays an error message. The specific text or wording of the message varies according to the ROM manufacturer and version. The messages are detailed in the following section.

ROM BIOS Messages Indicating Boot Failure (No Valid MBR Found)

If a hard disk is not properly defined in the system BIOS, you might see an error message similar to one of the following when you start the server:

  • Boot failure... (AMI BIOS)

  • Insert Boot Media into selected Boot Device (AMI BIOS)

  • Reboot and select proper Boot device (AMI BIOS)

  • DISK BOOT FAILURE, INSERT SYSTEM DISK AND PRESS ENTER (AWARD BIOS)

  • Operating system not found (Phoenix BIOS)

  • No boot device available - strike F1 to retry boot, F2 for setup utility (Phoenix BIOS)

  • No boot sector on fixed disk - strike F1 to retry boot, F2 for setup utility (Phoenix BIOS)

These and similar error messages indicate that the system could not locate the startup (boot) files on the default boot device. However, such a message could also mean that you left a nonbootable floppy disk in drive A: if the floppy disk is listed before the hard disk in the boot sequence for your server. Before rerunning the BIOS setup to verify that you have properly configured your hard disks, remove any floppy disk found in drive A: and restart your computer.

Note

For a more complete list of startup error messages, see the documentation for your server or server motherboard. Or see the following documents:

  • AMI BIOS v8 error messages www.ami.com/support/doc/AMIBIOS8-error-messages.pdf

  • PhoenixBIOS 4.0 Revision 6 User's Manual Go to www.phoenix.com/en/Customer+Services/White+Papers-Specs/Other+Platform+Products/default.htm and select from User Guides

  • AwardBIOS Setup Utility Go to www.phoenix.com/en/Customer+Services/White+Papers-Specs/Other+Platform+Products/default.htm and select from User Guides


If the system was not trying to boot from a floppy drive, these error messages could indicate that the hard disk is not properly defined in the system BIOS. For example, if the hard disk is configured as user defined but incorrect values for cylinders, heads, or other settings such as LBA (required for ATA/IDE and SATA drives over 8.4GB) are not properly listed, the BIOS will not check the correct part of the hard disk for boot files and will not be able to start the operating system. Or, if the hard disk is listed as "not present" or its host adapter (particularly in the case of a SATA, an ATA RAID, or a SCSI host adapter) has been disabled in the system BIOS, the system will not be able to locate the hard disk and will not be able to start the system.

If you determine that the startup hard disk and its host adapter have been properly configured in the system BIOS or by the SCSI BIOS, the hard disk may not have been prepared by the operating system. Or, if the system previously booted from the hard disk, it might indicate that the hard disk's MBR has been corrupted.

You can repair a corrupt MBR by using the following programs:

  • Fixmbr (Windows NT/2000/Server 2003)

  • lilo (Linux)

  • fdisk -u (UNIX)

Review the documentation for your operating system for details and cautions.

Audio and Video Codes

Different system BIOS chips use different types of audio (beep) and video (text) error codes to indicate serious system problems. The following sections list these error codes for the most common BIOSs.

AMI BIOS POST Error Codes

Table 4.52. AMI BIOS POST Beep Codes[1]

Number of Beeps

Error Description

Action

1

Memory Refresh Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

2

Memory Parity Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

3

Base 64KB Memory Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

4

Timer Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

5

Processor Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Make sure the processor and heatsink are installed properly; remove and reseat them. Replace the processor. Replace the motherboard.

6

8042 - Gate A20 Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the keyboard, motherboard, and processor.

7

Processor Exception Interrupt Error

Make sure the processor and heatsink are installed properly; remove and reseat them. Replace the processor. Replace the motherboard.

8

Display Memory Read/Write Error

Check the video card for proper installation. Try replacing the video card memory, and replace the video card. Replace the motherboard.

9

ROM Checksum Error

Try reseating the motherboard ROM chip. Try reflashing the motherboard ROM. Replace the motherboard.

10

CMOS Shutdown Register Read/Write Error

Replace the CMOS battery. Replace the motherboard.

11

Cache Memory Bad

Make sure cache settings in BIOS Setup are properly configured. Replace the processor. Replace the motherboard.

1 long, 3 short

Conventional/Extended Memory Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

1 long, 8 short

Display/Retrace Error

Check the video card for proper installation. Try replacing the video card memory. Replace the video card. Replace the motherboard.


[1] AMI BIOS codes used by permission of American Megatrends, Inc.

If you have a POST card, you can find the AMI BIOS POST checkpoint codes in the documentation for your POST card or by downloading this file from the AMI website, at www.ami.com/support/doc/AMIBIOS-codes.pdf.

Award BIOS and Phoenix FirstBIOS POST Error Codes

Currently, only one standard beep code exists in the Award BIOS (also known as the Phoenix FirstBIOS). A single long beep followed by two short beeps indicates that a video error has occurred and that the BIOS cannot initialize the video screen to display any additional information. If multiple or continuous beeps occur with an Award BIOS, this usually indicates problems with the power supply or memory.

Table 4.53. Award BIOS/Phoenix FirstBIOS POST Beep Codes

Beeps

Error Description

Action

1 long, 2 short

Video Card Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

1 long, 3 short

Video Card Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

Continuous beeps

Memory Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.


If you have a POST card, you can find the Award BIOS and Phoenix FirstBIOS POST checkpoint codes at www.uxd.com/award.html (versions 4.x5.x PnP) and www.uxd.com/award2.html (version 6.x).

Table 4.54. Award BIOS POST Onscreen Error Messages

Message

Description

BIOS ROM checksum error - System halted

The checksum of the BIOS code in the BIOS chip is incorrect, indicating that the BIOS code might have become corrupt. Contact your system dealer to replace the BIOS.

CMOS battery failed

The CMOS battery is no longer functional. Contact your system dealer for a replacement battery.

CMOS checksum error - Defaults loaded

The checksum of CMOS is incorrect, so the system loads the default equipment configuration. A checksum error can indicate that CMOS has become corrupt. This error might have been caused by a weak battery. Check the battery and replace it if necessary.

CPU at nnnn

Displays the running speed of the CPU.

Display switch is set incorrectly

The display switch on the motherboard can be set to either monochrome or color. This message indicates that the switch is set to a different setting than indicated in Setup. Determine which setting is correct and then either turn off the system and change the jumper or enter setup and change the video selection.

Press ESC to skip memory test

The user can press Esc to skip the full memory test.

Floppy disk(s) fail

Cannot find or initialize the floppy drive controller or the drive. Make sure the controller is installed correctly. If no floppy drives are installed, be sure the Diskette Drive selection in setup is set to NONE or AUTO.

HARD DISK initializing. Please wait a moment

Some hard drives require extra time to initialize.

HARD DISK INSTALL FAILURE

Cannot find or initialize the hard drive controller or the drive. Make sure the controller is installed correctly. If no hard drives are installed, be sure the Hard Drive selection in setup is set to NONE.

Hard disk(s) diagnosis fail

The system might run specific disk diagnostic routines. This message appears if one or more hard disks return an error when the diagnostics run.

Keyboard error or no keyboard present

Cannot initialize the keyboard. Make sure the keyboard is attached correctly and no keys are pressed during POST. To purposely configure the system without a keyboard, set the Error Halt condition in setup to HALT ON ALL, BUT KEYBOARD. The BIOS then ignores the missing keyboard during POST.

Keyboard is locked out - Unlock the key

This message usually indicates that one or more keys have been pressed during the keyboard tests. Be sure no objects are resting on the keyboard.

Memory Test:

This message displays during a full memory test, counting down the memory areas being tested.

Memory test fail

If POST detects an error during memory testing, additional information appears, giving specifics about the type and location of the memory error.

Override enabled - Defaults loaded

If the system can't boot using the current CMOS configuration, the BIOS can override the current configuration with a set of BIOS defaults designed for the most stable, minimal-performance system operations.

Press TAB to show POST screen

System OEMs might replace Phoenix's AwardBIOS POST display with their own proprietary displays. Including this message in the OEM display permits the operator to switch between the OEM display and the default POST display.

Primary master hard disk fail

POST detects an error in the primary master IDE hard drive.

Primary slave hard disk fail

POST detects an error in the secondary master IDE hard drive.

Resuming from disk, Press TAB to show POST screen

Phoenix Technologies offers a save-to-disk feature for notebook computers. This message might appear when the operator restarts the system after a save-to-disk shutdown.

Secondary master hard disk fail

POST detects an error in the primary slave IDE hard drive.

Secondary slave hard disk fail

POST detects an error in the secondary slave IDE hard drive.


Phoenix BIOS POST Error Codes

Phoenix FirstBIOS Pro is based on Phoenix BIOS 6.x. It uses different beep codes than earlier versions.

Table 4.55. Phoenix BIOS 5.x and Earlier POST Beep Codes[1]

Beeps

Error Description

Action

1-2

Video Card Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

1-3

CMOS RAM Read/Write Error

Replace the CMOS battery. Replace the motherboard.

1-1-4

ROM Checksum Error

Try reseating the motherboard ROM chip. Try reflashing the motherboard ROM. Replace the motherboard.

1-2-1

Timer Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

1-2-2

DMA Initialization Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

1-2-3

DMA Page Register Read/Write Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

1-3-1

RAM Refresh Verification Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

1-3-3

First 64KB RAM Multibit Data Line Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

1-3-4

First 64KB RAM Odd/Even Logic Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

1-4-1

First 64KB RAM Address Line Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory, power supply, and motherboard.

1-4-2

First 64KB RAM Parity Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

2-x-x

First 64KB RAM Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

3-1-1

Slave DMA Register Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

3-1-2

Master DMA Register Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

3-1-3

Master Interrupt Mask Register Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

3-1-4

Slave Interrupt Mask Register Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

3-2-4

Keyboard Controller Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the keyboard. Replace the motherboard. Replace the processor.

3-3-4

Screen Initialization Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

3-4-1

Screen Retrace Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

3-4-2

Video ROM Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.

4-2-1

Timer Interrupt Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

4-2-2

Shutdown Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the keyboard. Replace the motherboard. Replace the processor.

4-2-3

Gate A20 Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the keyboard. Replace the motherboard. Replace the processor.

4-2-4

Unexpected Interrupt In Protected Mode

Check for a bad expansion card. Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

4-3-1

RAM Address Error >FFFh

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

4-3-3

Interval Timer Channel 2 Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

4-3-4

Real Time Clock Error

Replace the CMOS battery. Replace the motherboard.

4-4-1

Serial Port Error

Reset the port configuration in BIOS Setup. Disable the port.

4-4-2

Parallel Port Error

Reset the port configuration in BIOS Setup. Disable the port.

4-4-3

Math Coprocessor Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Make sure the processor and heatsink are installed properly; remove and reseat them. Replace the processor. Replace the motherboard.

Low 1-1-2

System Board Select Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Make sure the processor and heatsink are installed properly; remove and reseat them. Replace the processor. Replace the motherboard.

Low 1-1-3

Extended CMOS RAM Error

Replace the CMOS battery. Replace the motherboard.


[1] Second and third codes can be 14 beeps each, indicating different failed bits within the first 64KB of RAM.

Table 4.56. Phoenix BIOS 6.x and Later POST Beep Codes

Beeps

Error Description

Description/Action

1-2-2-3

BIOS ROM Checksum Error

Try reseating the motherboard ROM chip. Try reflashing the motherboard ROM. Replace the motherboard.

1-3-1-1

DRAM Refresh Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

1-3-1-3

8742 Keyboard Controller Error

Check for proper motherboard installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the keyboard. Replace the motherboard. Replace the processor.

1-3-4-1

Memory Address Line Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

1-3-4-3

Memory Low Byte Data Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

1-4-1-1

Memory High Byte Data Error

Clean the memory contacts and reseat the modules. Remove all modules except the first bank. Replace the memory. Replace the power supply. Replace the motherboard.

2-1-2-3

ROM Copyright Error

Try reseating the motherboard ROM chip. Try reflashing the motherboard ROM. Replace the motherboard.

2-2-3-1

Unexpected Interrupts

Check for a bad expansion card. Check for proper mother board installation, loose screws, foreign objects causing shorts, and overtightened screws. Replace the motherboard.

1-2

Video Card Error

Check the video card for proper installation. Try replacing the video card memory and replace the video card. Replace the motherboard.


If you are using a POST card, you can find the Phoenix BIOS v4 POST codes at www.uxd.com/phoenix.html.

IBM BIOS POST Error Codes

Table 4.57. IBM BIOS Beep Codes[1]

Audio Code

Sound Graph

Description

1 short beep

Normal POSTsystem okay

2 short beeps

••

POST errorerror code on display

No beep

 

Power supply, system board

Continuous beep

Power supply, system board

Repeating short beeps

••••••

Power supply, system board

1 long, 1 short beep

System board

1 long, 2 short beeps

••

Video adapter (MDA/CGA)

1 long, 3 short beeps

•••

Video adapter (EGA/VGA)

3 long beeps

3270 keyboard card


[1] IBM BIOS beep and alphanumeric error codes used by permission of IBM.

Table 4.58. IBM BIOS POST/Diagnostics Display Error Codes[1]

Code

Description

1xx

System board errors

2xx

Memory (RAM) errors

3xx

Keyboard errors

4xx

Monochrome display adapter (MDA) errors

4xx

PS/2 system board parallel port errors

5xx

Color graphics adapter (CGA) errors

6xx

Floppy drive/controller errors

7xx

Math coprocessor errors

9xx

Parallel printer adapter errors

10xx

Alternate parallel printer adapter errors

11xx

Primary async communications (Serial COM1:) errors

12xx

Alternate async communications (Serial COM2:, COM3:, and COM4:) errors

13xx

Game control adapter errors

14xx

Matrix printer errors

15xx

Synchronous data link control (SDLC) communications adapter errors

16xx

Display station emulation adapter (DSEA) errors (5520, 525x)

17xx

ST-506/412 fixed disk and controller errors

18xx

I/O expansion unit errors

19xx

3270 PC attachment card errors

20xx

Binary synchronous communications (BSC) adapter errors

21xx

Alternate BSC adapter errors

22xx

Cluster adapter errors

23xx

Plasma monitor adapter errors

24xx

EGA or VGA errors

25xx

Alternate EGA errors

26xx

XT or AT/370 370-M (memory) and 370-P (processor) adapter errors

27xx

XT or AT/370 3277-EM (emulation) adapter errors

28xx

3278/79 emulation adapter or 3270 connection adapter errors

29xx

Color/graphics printer errors

30xx

Primary PC network adapter errors

31xx

Secondary PC network adapter errors

32xx

3270 PC or AT display and programmed symbols adapter errors

33xx

Compact printer errors

35xx

Enhanced display station emulation adapter (EDSEA) errors

36xx

General-purpose interface bus (GPIB) adapter errors

37xx

System board SCSI controller errors

38xx

Data acquisition adapter errors

39xx

Professional graphics adapter (PGA) errors

44xx

5278 display attachment unit and 5279 display errors

45xx

IEEE interface adapter (IEEE 488) errors

46xx

A real-time interface coprocessor (ARTIC) multiport/2 adapter errors

48xx

Internal modem errors

49xx

Alternate internal modem errors

50xx

PC-convertible LCD errors

51xx

PC-convertible portable printer errors

56xx

Financial communication system errors

70xx

Phoenix BIOS/chipset unique error codes

71xx

Voice communications adapter (VCA) errors

73xx

3.5-inch external disk drive errors

74xx

IBM PS/2 display adapter (VGA card) errors

74xx

8514/A display adapter errors

76xx

4216 PagePrinter adapter errors

84xx

PS/2 speech adapter errors

85xx

2MB XMA memory adapter or XMA adapter/A errors

86xx

PS/2 pointing device (mouse) errors

89xx

MIDI adapter errors

91xx

IBM 3363 write-once read multiple (WORM) optical drive/adapter errors

96xx

SCSI adapter with cache (32-bit) errors

100xx

Multiprotocol adapter/A errors

101xx

300/1200bps internal modem/A errors

104xx

ESDI or MCA IDE fixed disk or adapter errors

107xx

5.25-inch external disk drive or adapter errors

112xx

SCSI adapter (16-bit without cache) errors

113xx

System board SCSI adapter (16-bit) errors

129xx

Processor complex (CPU board) errors

149xx

P70/P75 plasma display and adapter errors

152xx

XGA display adapter/A errors

164xx

120MB internal tape drive errors

165xx

6157 streaming tape drive or tape attachment adapter errors

166xx

Primary token-ring network adapter errors

167xx

Alternate token-ring network adapter errors

180xx

PS/2 wizard adapter errors

185xx

DBCS Japanese display adapter/A errors

194xx

80286 memory-expansion option memory-module errors

200xx

Image adapter/A errors

208xx

Unknown SCSI device errors

209xx

SCSI removable disk errors

210xx

SCSI fixed disk errors

211xx

SCSI tape drive errors

212xx

SCSI printer errors

213xx

SCSI processor errors

214xx

SCSI WORM drive errors

215xx

SCSI CD-ROM drive errors

216xx

SCSI scanner errors

217xx

SCSI magneto optical drive errors

218xx

SCSI jukebox changer errors

219xx

SCSI communications errors

243xxxx

XGA-2 adapter/A errors

I998xxxx

Dynamic configuration select (DCS) information codes

I99900xx

Initial microcode load (IML) error

I99903xx

No bootable device, initial program load (IPL) errors

I99904xx

IML-to-system mismatch

I99906xx

IML (boot) errors


[1] IBM BIOS beep and alphanumeric error codes used by permission of IBM.




Upgrading and Repairing Servers
Upgrading and Repairing Servers
ISBN: 078972815X
EAN: 2147483647
Year: 2006
Pages: 240

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net