Building on the AMD Élan SC400 Reference Design with Embedded BIOS

Size: px
Start display at page:

Download "Building on the AMD Élan SC400 Reference Design with Embedded BIOS"

Transcription

1 Building on the AMD Élan SC400 Reference Design with Embedded BIOS Technical White Paper BIOS Development Group General Software, Inc. Approved for Public Release Introduction The AMD Élan SC400 Evaluation Board provides a rich hardware testbed for mobile, handheld, embedded, and consumer electronics applications. With its built-in support for matrix keyboards, LCD displays, PC cards, multiple banks of Flash memory, power management, VL bus video, ISA, and on-board UART and parallel ports, the board makes it possible to exercise these features before the OEM s actual hardware becomes available. The platform boots with General Software s Embedded BIOS firmware and can support application programming in DOS, Windows CE, Windows 95/98, Windows NT, QNX, and other embedded operating systems. The General Software Embedded BIOS Adaptation Kit for the SC400 provides industry-standard BIOS core software with the special embedded support for products built around this design. Using its rule-based expert system, BIOStart, to help configure the BIOS, an OEM can select from a range of over 400 configuration options to produce a perfect-fit BIOS for an application. At the same time, the BIOS adaptation remains compliant with PC BIOS industry standards as required by operating systems and application software. The special embedded features provided by the Embedded BIOS firmware makes practical use of the embedded features of the SC400 and makes it possible to prototype handheld and mobile designs. The Resident Flash Disk (RFD), Flash programming services, built-in BIOS debugger (Flash, Super I/O, and chipset-aware), Windows CE Loader, Manufacturing Mode host link, Burn-In Diagnostics in Setup, Console Redirection over serial links, LCD display driver, VL bus video driver, PC card driver (ATA and linear flash cards) and many other features are available to the OEM choosing the SC400 reference design and Embedded BIOS.

2 Introducing the Élan SC400 Evaluation Board and its Embedded Features The SC400 evaluation board (Figure 1) is a highly flexible embedded hardware design coupled with featurerich, pre-boot firmware, Embedded BIOS, from General Software. Here we ll visit different options for console I/O, mass storage, Flash programming, power management, and special software functions like Manufacturing Mode, the Debugger, and the Windows CE loader CE Ready TM. Finally, if no output device is attached, then the BIOS switches to a redirected console mode during POST, so that all console I/O is routed over the COM1 RS232 port at 9600 baud, no parity, and one stop bit try this with your favorite terminal program. If you re using HyperTerminal, make sure you select no flow control in the session properties, and don t forget that Hyper- Terminal doesn t actually use these parameters until after you save, exit, and restart its session. Console Redirection over Serial Links For headless systems (those without keyboards and video monitors), Console Redirection is perhaps the most important feature of Embedded BIOS. While simple in principle, Console Redirection is actually a dynamic feature that interplays with other software features of Embedded BIOS. There are really three types of console redirection in an embedded environment that uses a BIOS. First, using BIOS INT 10h and INT 16h services, the OEM can redirect POST messages and those printed by DOS and other applications. Fig. 1. AMD SC400 Evaluation Board. Console I/O: Keyboard and Display Options Handheld, mobile, embedded, and consumer electronics all have differing console requirements; some have no console in the traditional sense and others have remote consoles, or special keyboards and displays. The installed SC400 evaluation board BIOS includes support for console redirection, LCD display, ISA VGA, and VL local bus VGA. Experimenting with Console I/O To give the feeling for how the OEM can add policy to the BIOS adaptation, we ve added a bit of code to the SC400EV s Board Personality Module to determine which display is in use, and then redirect on that basis. If you plug in an ISA VGA card into an ISA slot, then the BIOS detects this and uses the standard PC/AT keyboard and VGA display. If the ISA VGA card is unplugged, and the VL bus daughter card is installed on the board, then the BIOS uses the VL bus VGA display and the PC/AT keyboard. If an LCD display is attached to the SC400EV board with the LCD daughter card, then the LCD and PC/AT keyboard are used. Second, the BIOS debugger uses console I/O services to interact with the user. In some cases, it is desirable for this console to be the same one as the POST/DOS console, and in others (i.e., graphical environments), it is best to have the debugger output streamed over an RS232 connection to a Windows Terminal session. Third, the Setup screen system uses console I/O services (including direct cursor addressing, which is translated transparently by the Embedded BIOS Console Redirection facility). Some embedded designs use a secondary COM port for this, allowing field service engineers to access the Setup screens independently of the end user s COM port connection to the device. This allows the system to be controlled at the lowest level. These three channels of I/O are defined in the SC400EV project file. While the reference design project file sets the redirection for each channel to the standard keyboard and video display, the OEM choosing the SC400EV reference design can redirect those channels statically to any combination of COM ports. Additionally, at run-time, the OEM s Board Personality Module routines can redirect output of any component during POST or during post-boot steady-state, and even applications can call INT 15h at run-time to redirect the console to another device. 2 Building on the AMD Élan SC400 Reference Design with Embedded BIOS

3 The Application Flash Array Most handheld and mobile embedded products require mass storage without the expensive real estate consumed by a hard drive or floppy drive. The Élan SC400 s three 2MB x 16 Flash ROM parts total 12MB of mass storage, the perfect medium for the Resident Flash Disk feature of Embedded BIOS to use for emulating floppy and hard disk drives. (Later, we ll see how to use this array for other purposes, such as CE Ready, the Windows CE bootloader.) The configuration of the disk emulation feature at the BIOS level is a two-step process. First, the Flash types, geometry, and interleave are specified to the BIOS through the adaptation s project file, so that the right Media Technology Drivers (MTDs) will be built into the BIOS, allowing read, write, and erase operations on the array. The second step is the configuration of the right File System Drivers (in this case, the Flash disk), specifying the location and size of the disk s Flash memory supported by the MTDs. Media Technology Driver Configuration Flash arrays are organized in many different ways, and Embedded BIOS supports a wide range of geometries. Each Flash memory component contains one or more erasable blocks of varying sizes, and may have an 8-bit, 16-bit, or 32-bit data path. Designs may gang-together multiple Flash components in parallel, to increase the effective data path width; this technique is called interleaving. It is common for 8-bit and 16-bit parts to be interleaved in 2-way or 4-way (two components wide or four components wide) configurations, and each of these combinations requires a different programming algorithm to engage in the same protocols with each component in the array, in parallel. Embedded BIOS helps manage this complexity. Its Media Control Layer and Media Technology Drivers (MTDs) abstract the Flash programming algorithms and hide the underlying Flash array s physical programming requirements from the RFD disk emulation software. MTDs are available for all AMD Flash parts, as well as for ROM and RAM arrays. In the case of the Élan SC400 reference design, the AMD 8-bit, two-way interleave drivers support the 16- bit wide AMD Flash components on the board. Figure 2 shows the MEDIA_REGION table for the Élan SC400 BIOS adaptation that defines the Flash drivers for the different chip selects. The region starting at media address h is actually a virtual address range that combines the three separate Flash components into one virtual Flash array. Windowing Flash with the SC400 s MMUs The Élan SC400 s application Flash parts are tied to the SC400 s CS0, CS1, and CS2 chip select lines, making them accessible through the programmable MMUs on the SC400 microprocessor. Embedded BIOS handles the programming of the MMUs automatically, and establishes a 32-bit media address space that allows the OEM to specify where parts are located. The assigned range of addresses are as follows: Media Address Range h-1fffffffh h-2fffffffh h-3fffffffh h-7fffffffh h-bfffffffh c h-ffffffffh Actual Hardware ISA Bus and DRAM Virtual area PCMCIA slots ROMCS0 device ROMCS1 device ROMCS2 device As you can see from the above table and the example MEDIA_REGION table in Figure 2, it s easy to assign BIOS functionality to parts tied to chip selects, or PCMCIA slots. ROM disks and RAM disks use the same mechanism; just different Media Addresses. Emulating Disks in ROM, RAM, and Flash Embedded in the core BIOS itself, are disk drivers for IDE, ATA, and floppy disks, as well as ROM, RAM, and Flash disks. The memory-oriented drivers emulate physical disk drives by receiving INT 13h (disk I/O) requests from operating system software when it reads and writes to what it believes are physical disk drives. The ROM, RAM, and Flash disks present artificial geometry (heads, tracks, and sectors) to the operating system through this interface, just as the floppy disk ; Starting Ending Technology ; Phys Addr Phys Addr Driver Name ; MEDIA_REGION h,01fffffffh, Ram ; system RAM. MEDIA_REGION h,03fffffffh, Amd8_2 ; Area mapped for Flash disk. MEDIA_REGION h,048ffffffh, Bulk8_1 ; ROMCS0#: up to 512KB bulk part. MEDIA_REGION h,04fffffffh, Amd8_1 ; ROMCS0#: up to 512KB bulk part. MEDIA_REGION h,05fffffffh, Amd8_2 ; ROMCS0#: 8bit 2way 29F016 pair. MEDIA_REGION h,0bfffffffh, Amd8_2 ; ROMCS1#: 8bit 2way 29F016 pair. MEDIA_REGION 0c h,0ffffffffh, Amd8_2 ; ROMCS2#: 8bit 2way 29F016 pair. Fig. 2. Configuration of Media Technology Drivers in the Embedded BIOS Project File for Élan SC400. Technical White Paper Published by General Software, Inc. 3

4 and hard disk drivers do. Internally, however, the drivers convert this artificial geometry into logical block addresses (LBAs) and use read, write, and erase operations on the underlying media to record 512-byte user sector data and maintain a record of the locations of those data for later retrieval. The configuration of the File System Drivers in the BIOS is based entirely on the simple directives in the Embedded BIOS Project File for the Élan SC400 (Figure 3.) In the listing, two floppy drives, two IDE hard drives, three soft-formatted Flash disks, and one PCMCIA ATA hard drive are configured as file systems with the FILE_SYSTEM directive. Once configured in the build, the end user of the BIOS can selectively enable them in the Setup screen system. Experimenting with the BIOS Flash Disk The reference design is a great platform to experiment with Flash disks. Three sizes have been preconfigured in the BIOS build, so you ll need to enter the SETUP screen to assign one of them to drive C:. Once you ve done this in BASIC setup, select Write to CMOS and Exit, then reenter setup and select the Format Flash Disk menu item. This procedure low-level formats the Flash region. Then, after this is done, you can let the target boot from another drive, and FORMAT /S the C: drive. Now the Flash disk is bootable and ready to use as a solid state disk. You can also perform the high-level FORMAT /S procedure and copy files around remotely, using the BIOS s Manufacturing Mode feature, described later. Remember that when you change Flash disk sizes in the setup screen, you ll need to redo the low-level formatting process within the setup main menu, as the internal structure of the Flash disk needs to take into account the different Flash disk geometry. You ll also want to experiment with various other drives in the system. You can add a floppy drive as drive A: and perhaps a bootable hard disk as drive C:. Then, your Flash disk can be assigned to D:. Note that not all versions of DOS, including MS-DOS, can SYS to drive D: and then boot from that drive after it has moved in the setup screen to be the first drive. If you want to make C: bootable, you ll need a floppy disk drive or Manufacturing Mode. DOSes Available for Smaller Systems Two DOSes come with the Embedded BIOS Adaptation Kit from General Software it s own micro-sized Embedded DOS-ROM TM operating system (licensed free with the BIOS) and Lineo s DR-DOS. Other industrystandard operating systems can also be used. Using the Resident Flash Disk with Protected Mode Operating Systems Once Embedded BIOS boots an operating system from the RFD, the operating system may continue to use INT 13h (disk I/O) BIOS services or might use only protected mode drivers. When the latter is the case, General Software can provide a protected mode version of its RFD file system for virtually any environment, including Windows NT, VxWorks, and real-time environments such as PharLap s Real Time Embedded Tool Suite. Protected mode drivers from General Software and its partners are licensed separately from the Embedded BIOS firmware itself. ; Note the address used for the RFD in the table below starting at ; h are translated in the SC400EVR board module to cause all ; the ROM_CS lines to be merged into a single media address range so ; the RFD can use all of the application Flash for one disk unit. ; ; Type Device Start addr Length SETUP name (unique) ; FILE_SYSTEM Soft, Floppy, 0h, 0h, "Floppy 0" FILE_SYSTEM Soft, Floppy, 1h, 0h, "Floppy 1" FILE_SYSTEM Hard, Flash, h, 000B80000h, "11.5MB Flash" FILE_SYSTEM Hard, Flash, h, h, "8MB Flash" FILE_SYSTEM Hard, Flash, h, h, "4MB Flash" FILE_SYSTEM Hard, Ide, 0h, 0h, "Ide 0" FILE_SYSTEM Hard, Ide, 1h, 0h, "Ide 1" FILE_SYSTEM Hard, Ide, 2h, 0h, "PCMCIA ATA card" Fig. 3. Configuration of File System Drivers in the Embedded BIOS Project File for Élan SC Building on the AMD Élan SC400 Reference Design with Embedded BIOS

5 Launching Windows CE with CE Ready Some operating systems, such as Windows CE, are loaded into RAM instead of executed in place. Embedded BIOS can launch XIP images, but it can also load images in various formats from either files on disks or their emulators, or from ROM/Flash memory images. The Flash array in the Élan SC400 is ideal for storage of the Windows CE image (NK.BIN) that is produced by an adaptation of the Microsoft Embedded Tool Kit (ETK). When the RFD is used to treat the Flash array as a disk drive, the NK.BIN file can be copied into the drive itself, and then loaded by the Embedded BIOS Windows CE Launcher. Alternatively, NK.BIN can be loaded from a specific Media Address (see the Flash section), without the use of the Flash disk. This capability, called CE Ready, is actually just a specific use of a more general architecture built into Embedded BIOS the integrated Load Image facility. Using this system, the OEM can instruct Embedded BIOS to load into RAM a variety of images in specific formats from disks or memory regions, and optionally begin their execution. For a look at how this feature is configured in the project file, see Figure 4 below. The Embedded BIOS Image Loader natively supports the Windows CE (NK.BIN) image format, as well as a raw format, that performs no translation. Additional methods can be added by the OEM for a particular application, without modifying the core software. In-System Flash Update/Programming The Élan SC400 reference design employs two types of Flash in the system a bulk erase Flash and sectored Flash parts in the large Flash array. A common set of BIOS services provided by Embedded BIOS allow application programs, as well as the debugger and Manufacturing Mode, to read, write, and erase any or all of the Flash in the system. There are many applications of Flash control. Starting with the OEM s board bring-up process, Flash programming commands in the debugger verify the correctness of the OEM s SC400-based design. The OEM can use debugger commands to interactively read and write Flash memory and erase whole blocks of Flash. Manufacturing Mode utilizes the Flash programming commands so that it can update the files on any disk or their emulators (such as the RFD) or even the BIOS. The REFLASH.EXE utility (part of a suite of programs that comes with the Embedded BIOS Adaptation Kit) uses the Flash programming interface supported by the BIOS to update copies of itself on the target. Unlike other Flash update programs, REFLASH.EXE uses the services of the BIOS to be installed on the target, not the services of the BIOS currently running. This means that the target s BIOS ROM can be safely updated even if it is accidently programmed with an incorrectly-configured copy of the BIOS. OPTION_SUPPORT_WINCE = 1 ; enable WINCE jump entry. OPTION_CMOS_LOAD_WINCE = 1 ; set default to load Windows CE. LOAD_IMAGE "NK.BIN", WinCe, h, h Fig 4 Configuration of Windows CE Launcher in the Embedded BIOS Project File. This example loads NK.BIN using the WinCe load method. Experimenting with the Windows CE Loader Try loading Windows CE on the Élan SC400 board. You ll need a generic version of NK.BIN (such as the version that LOADCEPC can run from the DOS prompt) copied onto the root directory of a hard drive or ATA drive. Next, boot the target and enter the BASIC setup screen, select the drive to be the first bootable drive, and in the bottom of the left-hand Drive Assignments box, change Boot Type from Boot Record to Windows CE. This causes the BIOS bootstrap routine to look for bootable files in the drive s root directory instead of loading the boot record on the drive. Finally, select Write to CMOS and Exit, and boot the target. Windows CE boots, with VGA display, PS/2 mouse, and PC/AT keyboard. Experimenting With Flash in the Debugger To use the debugger to display the contents of the Flash array, boot the target, enter the main setup screen, and select BIOS Debugger. From the debug prompt, use the RFL (Read Flash) command: EB43DBG: RFL 2000:0000 (see Fig 2)... Flash display is printed here... EB43DBG: HELP (displays commands)... Other Flash commands displayed here... You can experiment with the other Flash commands, too. RFL reads from Flash, WFL writes to Flash, EFL erases Flash blocks, SFL sets a region of Flash to a fill value, and UFL updates Flash from another memory location, like a block copy. Be careful not to write to or erase Embedded BIOS at the top of the application Flash. Technical White Paper Published by General Software, Inc. 5

6 Manufacturing Mode Host Link While the BIOS in a desktop PC only needs to boot an operating system, embedded systems and consumer electronic devices often need a special way for the device to be reprogrammed either in manufacturing or in the field. Embedded BIOS provides this capability with its unique Manufacturing Mode a special boot mode that responds to requests from a remote host over a highspeed serial connection. Manufacturing Mode can be started in several ways during BIOS POST on OEM designs based on the Élan SC400. First, the OEM can add a special board module routine to test certain hardware in the board s design (i.e., an I/O port or UART MSR) to determine if a hardware signal is present that signals the target s need to boot into Manufacturing Mode instead of booting the operating system. This routine returns its decision to POST, which starts Manufacturing Mode. Manufacturing Mode can also be invoked on critical POST errors, if the OEM desires. This allows selfcontained mobile or handheld devices, which have developed a systemic failure, to enter a mode whereby they can be remotely tested and reprogrammed in the field with a host. Embedded BIOS s POST can also invoke Manufacturing Mode as a standard boot activity, just as it can boot DOS in ROM, boot an operating system from any drive, or enter the ROM debugger. The high-speed Manufacturing Mode link can operate up to 115kbaud over standard UARTs, including those that drive infrared (IrDA or TV Remote) transceivers. On the host (a laptop or PC-compatible), General Software provides disk redirection software that (under DOS or Windows) allows the user to treat the target s disks as additional drives. This means that a previouslyunformatted target drive can be formatted and loaded with an operating system and application program files, all under batch file or program control on the host. Additional host-side libraries are provided to expose the Manufacturing Mode protocol via Application Programming Interfaces (APIs) that can be called by any C/C++ program. A sample application, complete with full source code, shows how to re-flash the Élan SC400 target, and test memory exhaustively. Experimenting with Manufacturing Mode To watch Manufacturing Mode work on your Élan SC400 board, you ll need to set up the target and the host. On the Élan SC400, the easiest way to start Manufacturing Mode is to boot the target, go into the main setup menu, and select Manufacturing Link. You ll also need to set up your host with the Manufacturing Mode driver. A DOS-compatible driver called MFGDRV.SYS is available on General Software s web site. Install this driver in the CONFIG.SYS file, boot the machine in MS-DOS mode, and finally connect a null modem cable from the host s COM1 port to the Élan SC400 s COM1 port. The next step is to use the HOST.EXE program (also from General Software s web site) to ping the target to see if the software and cables are set up properly. From the DOS prompt on your DOS host machine, run HOST and select PING TARGET from the main menu. The target should respond after a ping or two. If the PING works, you re ready to exit the program and manipulate the target s drives from the comfort of your host machine. (Remember to have the target s drives actually enabled and set up properly from the Élan SC400 s setup screen.) With all this set, you should have an additional drive beyond your last hard drive letter (probably, D:), that you can switch to and use DIR, COPY, and all the other DOS commands to manipulate. Keep in mind that the link is set to 56KB to allow for some slower hosts, and this can be changed at BIOS build time. Also, to optimize performance, you may wish to disable disk caching on the redirected drive by using a command like SMARTDRV D-. Élan SC400 board running Embedded BIOS in Manufacturing Mode Null Modem Cable Host Laptop or PC running DOS with MFGDRV.SYS device driver and HOST.EXE Fig. 5 Manufacturing Mode connects host PCs with embedded SC400 targets running Embedded BIOS in a pre-boot environment. 6 Building on the AMD Élan SC400 Reference Design with Embedded BIOS

7 Experimenting with the BIOS Debugger Embedded BIOS is the only BIOS to have a fully capable debugger. Features include disassembler breakpoints 32-bit register and memory access chipset, Super I/O, PCI, and Flash programming commands A20 and cache controls In addition, you ll find many other BIOS-level functions, like performing disk I/O to/from RAM. These facilities are all available in a command-line interface that is completely integrated into the core BIOS. This integration means facilities can be invoked any time and used to debug the hardware during board bring-up and the BIOS adaptation. Entering the debugger can be accomplished in a number of ways. The easiest is to go into the setup screen s main menu during POST, and select Enter BIOS Debugger. Another way to enter the debugger is to simultaneously press the CTL and LEFT SHIFT keys. In the BASIC setup screen, the debugger can even be selected as a boot-time activity, in case other boot options fail. Once in the debugger, a prompt (EB43DBG:) will appear, and you can type a command (or several, separated by semicolons.) Try HELP first, for a list of the commands available on the target. Then, refer to the debugger section of the Embedded BIOS Reference Manual. To exit the debugger, use the R (go) command. If you used CTL+SHF to enter at a DOS prompt, remember that the prompt has already printed and DOS is waiting for your next command. Here are some samples for using the debugger: EB43DBG: D F000: display dump of BIOS at segment F000h... EB43DBG: V display the INT 13h interrupt vector... EB43DBG: U... unassemble code at that location... EB43DBG: RFL 4000: display CS0 Flash device (see Fig 2 for addresses)... EB43DBG: CSR D3... display the SC400 s D3h chipset register... EB43DBG: CSW D3 xx... write xxh to the SC400 s D3h chipset register... Advanced Power Management Embedded BIOS s integrated power manager provides industry-standard APM services to operating systems and applications, while allowing the OEM to completely determine what devices in the system will participate in power management and what policies will be used for those devices. Callouts from the core BIOS to the OEM s board-level personality module allow for customization of all states and state transitions. For details on how this mechanism work (beyond the scope of this 8-page white paper), print the power management section of the Embedded BIOS Reference Manual. Some Closing Remarks The Élan SC400 platform is a great choice for prototyping embedded applications that need solid state storage, power management, remote access, and special console I/O features. Those applications can all benefit from the Embedded BIOS pre-boot firmware that has been tailored to the Élan SC400 platform. AMD s Partnership with General Software AMD and General Software worked closely together to bring the new Élan SC400 evaluation board to market. AMD s selection of General Software was a logical choice, says Richard Russell, AMD s System Software Engineering Manager, Embedded Processor Division. General Software s technical capabilities, product maturity, market vision, and outstanding support offered to our embedded customers is something that we want every AMD customer to experience when starting a new embedded design. In addition to the Élan SC400 reference design, General Software supplies the BIOS firmware for other AMD designs, such as those based on the AMD SC300 Elan and Am186 embedded processor family, and the Am486PCI Customer Development Platform. For more information and news about AMD s SC400 and other AMD products supported by General Software, visit the General Software web site at or AMD s site at We recommend experimenting with the CSR and CSW commands to see how the SC400 s registers can be manipulated to test out new hardware scenarios. Technical White Paper Published by General Software, Inc. 7

8 GENERAL SOFTWARE NE 33rd Place, Suite 102 Bellevue, WA General Software, Inc. All rights reserved. General Software, the GS logo, Embedded BIOS, Embedded DOS, and CE Ready are trademarks or registered trademarks of General Software, Inc. Copies of this material may be requested on the web at or by ing MK /00

Note: The configurations and factory defaults described here are for EBX-11 BIOS version

Note: The configurations and factory defaults described here are for EBX-11 BIOS version EBX-11 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EBX-11 (Python). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

Note: The configurations and factory defaults described here are for EPM-15 BIOS version

Note: The configurations and factory defaults described here are for EPM-15 BIOS version EPM-15 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPM-15 (Manx). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

Date and Time The date is factory set to the date of the BIOS build. The date and time are editable. NumLock

Date and Time The date is factory set to the date of the BIOS build. The date and time are editable. NumLock EPIC-2 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPIC-2 (Gecko). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

Note: The configurations and factory defaults described here are for EPM-4 BIOS version

Note: The configurations and factory defaults described here are for EPM-4 BIOS version EPM-4 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPM-4 (Lynx). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

FreeBSD and the IBM PC BIOS

FreeBSD and the IBM PC BIOS FreeBSD and the IBM PC BIOS Bruce M. Simpson bms@freebsd.org 27th December 2002 1 Introduction This document is intended as a source of technical information for individuals wishing to support FreeBSD

More information

Note: The configurations and factory defaults described here are for BIOS version

Note: The configurations and factory defaults described here are for BIOS version EBX-12 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EBX-12 (Cobra). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

T Series BIOS BIOS SETUP UTILITY

T Series BIOS BIOS SETUP UTILITY BIOS SECTION T4010 LifeBook T Series Tablet PC T Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your tablet. Your BIOS is set at the factory

More information

Embedded BIOS. Features and Board Support Packages congatec AG 1

Embedded BIOS. Features and Board Support Packages congatec AG 1 Embedded BIOS Features and Board Support Packages 2006 congatec AG 1 Our Mission To provide a first class, leading edge, innovative and extremely stable firmware solution for congatec embedded computer

More information

S Series BIOS BIOS SETUP UTILITY

S Series BIOS BIOS SETUP UTILITY BIOS SECTION S2110 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

DVD :50 PM Page 1 BIOS

DVD :50 PM Page 1 BIOS 99 0789729741 DVD 3.07 06 09 2003 1:50 PM Page 1 BIOS 99 0789729741 DVD 3.07 06 09 2003 1:50 PM Page 2 2 BIOS AMI BIOS POST Checkpoint Codes Table 1 AMI BIOS POST Checkpoint Codes for All AMI BIOS Products

More information

Advanced 486/586 PC/104 Embedded PC SBC1491

Advanced 486/586 PC/104 Embedded PC SBC1491 Advanced 486/586 PC/104 Embedded PC SBC1491 Features Ready to run 486/586 computer Small PC/104 format DiskOnChip, 64MB RAM On-board accelerated VGA COM1, COM2, KBD, mouse 10BASE-T Ethernet port PC/104

More information

Celeron EPIC Computer with GUI and Dual Ethernet SBC4685

Celeron EPIC Computer with GUI and Dual Ethernet SBC4685 Celeron EPIC Computer with GUI and Dual SBC4685 Features Ready to run Celeron/Pentium III computer Color flat-panel support Four serial ports CAN Bus interface PC/104 & PC/104-Plus expansion The SBC4685

More information

Firmbase Misc Video Chipset Board AdvancedCPU

Firmbase Misc Video Chipset Board AdvancedCPU EPMs-21 CMOS SETUP PARAMETERS This article provides reference information and tips for setting CMOS Setup parameters on the EPMs-21 (Ocelot). Start CMOS Setup by pressing Delete during the early boot cycle.

More information

Fujitsu LifeBook S Series

Fujitsu LifeBook S Series Fujitsu LifeBook S Series BIOS Guide LifeBook S Series Model: S2020 Document Date: 10/30/03 Document Part Number: FPC58-1035-01 FUJITSU COMPUTER SYSTEMS 1 LifeBook S Series Notebook BIOS S Series BIOS

More information

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure BIOS SECTION S6130 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Fujitsu LifeBook P Series

Fujitsu LifeBook P Series Fujitsu LifeBook P Series BIOS Guide LifeBook P Series Model: P1120 Document Date: 10/30/02 Document Part Number: FPC58-0796-01 FUJITSU PC CORPORATION LifeBook P Series Notebook BIOS P Series BIOS BIOS

More information

Manual: Errata 1 P R E L I M I N A R Y. Manual Index: 07. CP605 Manual: 25095

Manual: Errata 1 P R E L I M I N A R Y. Manual Index: 07. CP605 Manual: 25095 CP605 Errata 1 Manual Index: 07 Table of Contents: 1. Reference: Page 5-3, Chapter 5, Phoenix BIOS... 1-3 ID 25095, Rev. 07 Errata 1-1 CP605 This page has been intentionally left blank. Errata 1-2 ID 25095,

More information

1. BIOS setup BIOS SETUP UTILITY. Critical Point

1. BIOS setup BIOS SETUP UTILITY. Critical Point BIOS SECTION P2040 1. BIOS setup BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the factory for normal operating conditions,

More information

Fujitsu LifeBook T Series

Fujitsu LifeBook T Series Fujitsu LifeBook T Series BIOS Guide LifeBook T Series Model: T3010/T3010D Document Date: 09/16/03 Document Part Number: FPC58-0992-01 FUJITSU PC CORPORATION 1 LifeBook T Series Tablet PC T Series BIOS

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Models: A3040 Document Date: 2/10/06 Document Part Number: FPC58-1482-01 F U J I T S U C O M P U T E R S Y S T E M S 1 LifeBook A Series Notebook

More information

DiskOnChip 2000 MD2200, MD2201 Data Sheet

DiskOnChip 2000 MD2200, MD2201 Data Sheet DiskOnChip 2000 MD2200, MD2201 Data Sheet Features Single chip plug-and-play Flash Disk 2-72MB capacity (144MB in 1H99) Simple, easy to integrate interface 32-pin DIP JEDEC standard EEPROM compatible pin-out

More information

Fujitsu LifeBook P Series

Fujitsu LifeBook P Series Fujitsu LifeBook P Series BIOS Guide LifeBook P Series Model: P-1032 P-1035 Document Date: 02/01/02 Document Part Number: FPC58-0653-01 FUJITSU PC CORPORATION LifeBook P Series BIOS P Series BIOS BIOS

More information

Fujitsu LifeBook T Series

Fujitsu LifeBook T Series Fujitsu LifeBook T Series BIOS Guide LifeBook T Series Model: T4020/T4020D Document Date: 08/08/2005 Document Part Number: FPC58-1407-01 FUJITSU COMPUTER SYSTEMS 1 LifeBook T Series Tablet PC T Series

More information

GA-G1975X Post Code Definition

GA-G1975X Post Code Definition GA-G1975X Post Code Definition AWARD Post Code Definition CFh Test CMOS R/W functionality. C0h Early chipset initialization: -Disable shadow RAM -Disable L2 cache (socket 7 or below) -Program basic chipset

More information

Fujitsu LifeBook N Series

Fujitsu LifeBook N Series Fujitsu LifeBook N Series BIOS Guide LifeBook N Series Models: N6000 Document Date: 11/11/04 Document Part Number: FPC58-1268-01 F U J I T S U C O M P U T E R S Y S T E M S 1 LifeBook N Series Notebook

More information

E Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure

E Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure BIOS SECTION E8020 LifeBook E Series BIOS E Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the factory

More information

MMX Enhanced. 586 GXM-AV Main Board. Trademarks and / or Registered trademarks are the properties of their respective owners.

MMX Enhanced. 586 GXM-AV Main Board. Trademarks and / or Registered trademarks are the properties of their respective owners. 586 GXM-AV Main Board Trademarks and / or Registered trademarks are the properties of their respective owners. User s Manual Version 1.1 The Information presented in this publication has been carefully

More information

This chapter tells how to configure the system by setting the BIOS parameters. 3.1 Entering the AMI BIOS Setup

This chapter tells how to configure the system by setting the BIOS parameters. 3.1 Entering the AMI BIOS Setup Chapter 3 AMI BIOS This chapter tells how to configure the system by setting the BIOS parameters. 3.1 Entering the AMI BIOS Setup To enter the AMI BIOS Setup, press appears as shown below.. The AMI BIOS

More information

Implementing a Serial Download Manager for Two 256K Byte Flash Memories

Implementing a Serial Download Manager for Two 256K Byte Flash Memories TN220 Implementing a Serial Download Manager for Two 256K Byte Flash Memories Disclaimer The programs described in this note are provided as a sample field reprogramming method only with no guarantees

More information

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure

S Series BIOS BIOS SETUP UTILITY. Entering the BIOS Setup Utility. Entering the Setup Utility After a Configuration Change or System Failure BIOS SECTION S7010 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

BIOS SECTION S6210/6220

BIOS SECTION S6210/6220 BIOS SECTION S6210/6220 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at

More information

COMPUTER HARDWARE & NETWORK TROUBLESHOOTING

COMPUTER HARDWARE & NETWORK TROUBLESHOOTING COMPUTER HARDWARE & NETWORK TROUBLESHOOTING UNIT 1 1. What is processor? (NOV 2013) 2. Define system clock? (NOV 2013) 3. What are the two types of hardware interrupts (NOV 2010) 4. List the type of switching

More information

S Series BIOS BIOS SETUP UTILITY

S Series BIOS BIOS SETUP UTILITY BIOS SECTION S7020 LifeBook S Series Notebook BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Fujitsu Stylistic ST6000 Series

Fujitsu Stylistic ST6000 Series Fujitsu Stylistic ST6000 Series BIOS Guide Stylistic Series Model: ST6012 Document Date: 12/01/2008 Document Part Number: FPC65-4369-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 Stylistic ST Series BIOS ST

More information

IDE Plus 2.0. IDE Interface. User s manual

IDE Plus 2.0. IDE Interface. User s manual ATARI XL/XE IDE Plus 2.0 IDE Interface User s manual (preliminary) revised 29/10/2011 Copyright (c) 1995-2011 for the original design by Jacek Żuk Copyright (c) 1995-2011 for the software and the manual

More information

Fujitsu LifeBook E Series

Fujitsu LifeBook E Series Fujitsu LifeBook E Series BIOS Guide LifeBook E Series Models: E2010 Document Date: 02/05/03 Document Part Number: FPC58-0881-01 F U J I T S U P C C O R P O R A T I O N 1 LifeBook E Series BIOS E Series

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: A6030 Document Date: 06/06/2007 Document Part Number: FPC58-1698-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook A Series BIOS A Series

More information

A Series BIOS BIOS SETUP UTILITY

A Series BIOS BIOS SETUP UTILITY BIOS SECTION A3110 LifeBook A Series BIOS A Series BIOS BIOS SETUP UTILITY The is a program that sets up the operating environment for your notebook. Your BIOS is set at the factory for normal operating

More information

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics

Moodle WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Moodle 4 WILLINGDON COLLEGE SANGLI (B. SC.-II) Digital Electronics Advanced Microprocessors and Introduction to Microcontroller Moodle developed By Dr. S. R. Kumbhar Department of Electronics Willingdon

More information

MIP8 / MIP9 / MIP10 / MIP11 BIOS V1.5x

MIP8 / MIP9 / MIP10 / MIP11 BIOS V1.5x MIP8 / MIP9 / MIP10 / MIP11 BIOS V1.5x System Bios Setup - Utility v5.3 (C) 2005 General Software, Inc. All rights reserved System Information: >Basic CMOS Configuration Features Configuration Model: MIP10-A-1

More information

Fujitsu LifeBook S Series

Fujitsu LifeBook S Series Fujitsu LifeBook S Series BIOS Guide LifeBook S Series Model: S-4572 F U J I T S U P C C O R P O R A T I O N FPC58-0547-01 LifeBook S Series BIOS S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility

More information

Troubleshooting & Repair

Troubleshooting & Repair Chapter Troubleshooting & Repair 6.1 Introduction This chapter provides the most common problem encountered with the M785 notebook computer and some troubleshooting means. Some of the common problems are:

More information

Fujitsu LifeBook A Series

Fujitsu LifeBook A Series Fujitsu LifeBook A Series BIOS Guide LifeBook A Series Model: A3130 Document Date: 06/20/2007 Document Part Number: FPC58-1706-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook A Series BIOS A Series

More information

Fujitsu LifeBook E Series

Fujitsu LifeBook E Series Fujitsu LifeBook E Series BIOS Guide LifeBook E Series Model: E8410 Document Date: 05/25/2007 Document Part Number: FPC58-1690-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook E Series BIOS E Series

More information

Fujitsu LifeBook P Series

Fujitsu LifeBook P Series Fujitsu LifeBook P Series BIOS Guide LifeBook P Series Model: P7120/P7120D Document Date: 11/3/2005 Document Part Number: FPC58-1425-01 FUJITSU COMPUTER SYSTEMS CORPORATION LifeBook P7000 Notebook BIOS

More information

First Steps. DNP/SK18 Embedded Linux Starter Kit

First Steps. DNP/SK18 Embedded Linux Starter Kit DNP/SK18 Embedded Linux Starter Kit First Steps SSV Embedded Systems Heisterbergallee 72 D-30453 Hannover Phone: +49 (0)511/40 000-0 Fax: +49 (0)511/40 000-40 E-mail: sales@ist1.de Manual Revision: 1.0

More information

Assembly Language for Intel-Based Computers, 4 th Edition. Kip R. Irvine. Chapter 2: IA-32 Processor Architecture

Assembly Language for Intel-Based Computers, 4 th Edition. Kip R. Irvine. Chapter 2: IA-32 Processor Architecture Assembly Language for Intel-Based Computers, 4 th Edition Kip R. Irvine Chapter 2: IA-32 Processor Architecture Chapter Overview General Concepts IA-32 Processor Architecture IA-32 Memory Management Components

More information

Fujitsu LifeBook N Series

Fujitsu LifeBook N Series Fujitsu LifeBook N Series BIOS Guide LifeBook N Series Models: N6400 Document Date: 07/16/2007 Document Part Number: FPC58-1702-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook N Series BIOS N Series

More information

Soekris Engineering. net4501 series boards and systems. User s Manual

Soekris Engineering. net4501 series boards and systems. User s Manual Soekris Engineering net4501 series boards and systems. User s Manual Vers 0.11 September 26, 2001 Table of Contents 1 INTRODUCTION...4 2 SPECIFICATIONS...5 2.1 Overview... 5 2.2 Bus Expansion... 5 3 BIOS...6

More information

BIOS Setup DESKPOWER 5000

BIOS Setup DESKPOWER 5000 BIOS Setup DESKPOWER 5000 1 Preface What is BIOS setup? BIOS setup is a program that helps the user set up a hardware environment, including memory, hard disks, and floppy disk drives. Minimum setup has

More information

PanelViewt 1200 Transfer Utility User Manual

PanelViewt 1200 Transfer Utility User Manual User Manual Solid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines for the Application, Installation and Maintenance of Solid State

More information

Systems in Silicon. Converting Élan SC400/410 Design to Élan SC520

Systems in Silicon. Converting Élan SC400/410 Design to Élan SC520 Converting Élan SC400/410 Design to Élan SC520 1 Élan SC400/410 Block Diagram Am486 Core 8K Cache Parallel Port Mobile Logic Blocks PCMCIA (2) (2) PIO 16550 UART SW Compatibility Blocks PIC DMA PIT (2)

More information

Computer Organization (II) IA-32 Processor Architecture. Pu-Jen Cheng

Computer Organization (II) IA-32 Processor Architecture. Pu-Jen Cheng Computer Organization & Assembly Languages Computer Organization (II) IA-32 Processor Architecture Pu-Jen Cheng Materials Some materials used in this course are adapted from The slides prepared by Kip

More information

Boot Loader for the Z51F6412 MCU

Boot Loader for the Z51F6412 MCU Boot Loader for the Z51F6412 MCU AN037701-0215 Abstract This application note discusses how to create a boot loader program for the Z51F6412 microcontroller, a member of Zilog s Z8051 Family of Microcontrollers.

More information

Fujitsu LifeBook C Series

Fujitsu LifeBook C Series Fujitsu LifeBook C Series BIOS Guide LifeBook C Series Model: C1320D Document Date: 09/06/2005 Document Part Number: FPC58-1401-01 FUJITSU COMPUTER SYSTEMS LifeBook C Series Notebook BIOS C Series BIOS

More information

ROBO-603. User's Manual

ROBO-603. User's Manual ROBO-603 Embedded System Board User's Manual P/N: 861106030041 Version 1.0 Copyright Portwell, Inc., 2001. All rights reserved. All other brand names are registered trademarks of their respective owners.

More information

LifeBook P Series Notebook BIOS

LifeBook P Series Notebook BIOS BIOS SECTION P1610 LifeBook P1600 Notebook BIOS LifeBook P Series Notebook BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS

More information

1. S Series BIOS BIOS SETUP UTILITY

1. S Series BIOS BIOS SETUP UTILITY BIOS SECTION S6010 1. S Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the factory for normal operating

More information

Fujitsu LifeBook P Series

Fujitsu LifeBook P Series Fujitsu LifeBook P Series BIOS Guide LifeBook P Series Model: P8010 Document Date: 01/31/2008 Document Part Number: FPC58-1819-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook P Series BIOS P Series

More information

Fujitsu LifeBook E Series

Fujitsu LifeBook E Series Fujitsu LifeBook E Series BIOS Guide LifeBook E Series Model: E8110 (Vista OS) Document Date: 03/30/2007 Document Part Number: FPC58-1643-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook E Series BIOS

More information

Parts of Computer hardware Software

Parts of Computer hardware Software Parts of Computer Parts of Computer If you use a desktop computer, you might already know that there is not any single part called the "computer." A computer is really a system of many parts working together.

More information

The ROBO-8710VLA package should cover the following basic items

The ROBO-8710VLA package should cover the following basic items The ROBO-8710VLA all-in-one full size single board computer is designed to fit high performance and scalable Intel Pentium 4/Celeron processors and compatible for high-end industrial computer system with

More information

Élan SC300 Microcontroller

Élan SC300 Microcontroller Élan SC300 Microcontroller Programmer s Reference Manual Rev. B, January 1996 A D V A N C E D M I C R O D E V I C E S 1995 by Advanced Micro Devices, Inc. Advanced Micro Devices reserves the right to make

More information

Fujitsu LifeBook B Series

Fujitsu LifeBook B Series Fujitsu LifeBook B Series BIOS Guide LifeBook B Series Model: B6230 Document Date: 02/05/2008 Document Part Number: FPC58-1827-01 FUJITSU COMPUTER SYSTEMS CORPORATION LifeBook B6200 Notebook BIOS LifeBook

More information

BIOS Setup DESKPOWER 6000

BIOS Setup DESKPOWER 6000 BIOS Setup DESKPOWER 6000 1 Preface What is BIOS setup? BIOS setup is a program that helps the user set up a hardware environment, including memory, hard disks, and floppy disk drives. Minimum setup has

More information

Flash Loader Utility for the Z8 Encore! XP MCU

Flash Loader Utility for the Z8 Encore! XP MCU Application Note Flash Loader Utility for the Z8 Encore! XP MCU AN011806-0408 Abstract This application note describes Flash Loader utility for the Zilog s Z8 Encore! XP MCU that can be operated through

More information

Cisco OEM Servers Cisco Logo d Cisco AON 8340-K9

Cisco OEM Servers Cisco Logo d Cisco AON 8340-K9 Cisco OEM Servers Cisco Logo d Cisco AON 8340-K9 IMPORTANT! Service Instructions You must print and follow these instructions BEFORE taking a service call on this machine. Machine data: MT = 0159-080 IBM

More information

Introduction CHAPTER 1

Introduction CHAPTER 1 CHAPTER 1 Introduction The ROBO-667 all-in-one single board computer is designed to fit a high performance Pentium-III based CPU and compatible for high-end computer system with PCI/ISA Bus architecture.

More information

Fujitsu LifeBook P Series

Fujitsu LifeBook P Series Fujitsu LifeBook P Series BIOS Guide LifeBook P Series Model: P1620 Document Date: 1/29/2008 Document Part Number: FPC58-1817-01 FUJITSU COMPUTER SYSTEMS CORPORATION LifeBook P1600 Notebook BIOS LifeBook

More information

Fujitsu LifeBook S Series

Fujitsu LifeBook S Series Fujitsu LifeBook S Series BIOS Guide LifeBook S Series Model: S2210 - Vista Document Date: 01/30/2007 Document Part Number: FPC58-1655-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook S Series Notebook

More information

Fujitsu LifeBook T Series

Fujitsu LifeBook T Series Fujitsu LifeBook T Series BIOS Guide LifeBook T Series Model: T5010 - UMTS Model Document Date: 02/18/2009 Document Part Number: FPC58-2036-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook T Series BIOS

More information

Fujitsu LifeBook B Series

Fujitsu LifeBook B Series Fujitsu LifeBook B Series BIOS Guide LifeBook B Series Model: B2620 Document Date: 10/30/02 Document Part Number: FPC58-0792-01 FUJITSU PC CORPORATION LifeBook B Series Notebook BIOS B Series BIOS BIOS

More information

1 PC Hardware Basics Microprocessors (A) PC Hardware Basics Fal 2004 Hadassah College Dr. Martin Land

1 PC Hardware Basics Microprocessors (A) PC Hardware Basics Fal 2004 Hadassah College Dr. Martin Land 1 2 Basic Computer Ingredients Processor(s) and co-processors RAM main memory ROM initialization/start-up routines Peripherals: keyboard/mouse, display, mass storage, general I/O (printer, network, sound)

More information

Intel Corporation. About This Release MV85010A.86A.0069.P PXE 2.1 [Intel Boot Agent Version ] for ICH2 LAN Controller

Intel Corporation. About This Release MV85010A.86A.0069.P PXE 2.1 [Intel Boot Agent Version ] for ICH2 LAN Controller Intel Corporation DATE: April 21, 2003 SUBJECT: MV850.10A.86A Production BIOS P25-0069 About This Release MV85010A.86A.0069.P25.0304170949 PXE 2.1 [Intel Boot Agent Version 4.1.09] for ICH2 LAN Controller

More information

DiskOnChip PCI Evaluation Board

DiskOnChip PCI Evaluation Board User Manual DiskOnChip PCI Evaluation Board JANUARY 2002 91-SR-010-04-7L REV 1.1 Table of Contents 1 Introduction... 3 1.1 Supported Devices...3 1.2 Features... 4 2 DiskOnChip PCI EVB Package Contents...

More information

Soekris Engineering. net4801 series boards and systems. User s Manual

Soekris Engineering. net4801 series boards and systems. User s Manual Soekris Engineering net4801 series boards and systems. User s Manual Vers 0.05 April 10, 2004 Table of Contents 1 INTRODUCTION...4 1.1 Overview... 5 1.2 Bus Expansion... 5 1.3 Multi-IO Controller... 6

More information

Élan SC400 and ÉlanSC410 Microcontrollers User s Manual

Élan SC400 and ÉlanSC410 Microcontrollers User s Manual Élan SC400 and ÉlanSC410 Microcontrollers User s Manual 1997 Advanced Micro Devices, Inc. All rights reserved. Advanced Micro Devices, Inc. ( AMD ) reserves the right to make changes in its products without

More information

BIOS. Chapter The McGraw-Hill Companies, Inc. All rights reserved. Mike Meyers CompTIA A+ Guide to Managing and Troubleshooting PCs

BIOS. Chapter The McGraw-Hill Companies, Inc. All rights reserved. Mike Meyers CompTIA A+ Guide to Managing and Troubleshooting PCs BIOS Chapter 8 Overview In this chapter, you will learn how to Explain the function of BIOS Distinguish among various CMOS setup utility options Describe option ROM and device drivers Troubleshoot the

More information

Introduction CHAPTER 1

Introduction CHAPTER 1 CHAPTER 1 Introduction The ACTI-777 all-in-one single board computer is designed to fit a high performance Pentium-III FC-PGA based CPU and compatible for high-end computer system application with PCI/ISA

More information

Designing Interoperability into IA-64 Systems: DIG64 Guidelines

Designing Interoperability into IA-64 Systems: DIG64 Guidelines Designing Interoperability into IA-64 Systems: DIG64 Guidelines Michael Demshki - Intel, DIG64 Chair Melvin Benedict - Compaq, Hardware Architect Dong Wei - Hewlett-Packard, Platform Architect Tomm Aldridge

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

New Vision of the Computer Operating System

New Vision of the Computer Operating System New Vision of the Computer Operating System Syed Khasim Associate Professor, Department of Computer Science & Engineering, Dr.Samuel George Institute of Engineering & Technology Markapur, India Abstract

More information

About the Presentations

About the Presentations About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning of each presentation. You may customize the presentations

More information

8086 Interrupts and Interrupt Responses:

8086 Interrupts and Interrupt Responses: UNIT-III PART -A INTERRUPTS AND PROGRAMMABLE INTERRUPT CONTROLLERS Contents at a glance: 8086 Interrupts and Interrupt Responses Introduction to DOS and BIOS interrupts 8259A Priority Interrupt Controller

More information

Components of a personal computer

Components of a personal computer Components of a personal computer Computer systems ranging from a controller in a microwave oven to a large supercomputer contain components providing five functions. A typical personal computer has hard,

More information

Review Questions on Computer Basics

Review Questions on Computer Basics Review Questions on Computer Basics 1. Distinguish between and define (see glossary in Maxfield and Brown s Bebop Bytes Back for the definition of terms not found in Andrews A Guide to Managing and Maintaining

More information

Fujitsu LifeBook B Series

Fujitsu LifeBook B Series Fujitsu LifeBook B Series BIOS Guide LifeBook B Series Model: B6210 Document Date: 06/12/2006 Document Part Number: FPC58-1519-01 FUJITSU COMPUTER SYSTEMS LifeBook B Series Notebook BIOS B Series BIOS

More information

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT Types of User Interface USER INTERFACE Command Interface Menu Interface Graphical User Interface Voice actuated Interface Web- form Interface User interface

More information

Reference Manual VCM-DOC-1. Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1

Reference Manual VCM-DOC-1. Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1 Reference Manual VCM-DOC-1 Bootable DiskOnChip Module for the PC/104 Bus MVCMDOC1 VCM-DOC-1 Bootable DiskOnChip Module for the PC/104 Bus REFERENCE MANUAL Doc. Rev. 04/22/2003 VERSALOGIC CORPORATION WWW.VERSALOGIC.COM

More information

1. Restarting a computer which is already running is referred to as

1. Restarting a computer which is already running is referred to as Computer Knowledge 1. Restarting a computer which is already running is referred to as (1) booting (2) starting (3) rebooting (4) second-starting 2. If you open a menu and then decide you don t want to

More information

Phoenix BIOS Setup Utility

Phoenix BIOS Setup Utility Phoenix BIOS Setup Utility Important information: we continually strive to bring you the latest and proven features and technologies. As part of our drive to continually improve our products modifications

More information

EPIC board ensures reliability in the toughest environment

EPIC board ensures reliability in the toughest environment EPIC board ensures reliability in the toughest environment The XE 800 SBC is a high performance single board computer (SBC) with a rich family of essential I/O functions. It integrates video, serial ports,

More information

AMI Product Catalog. A Leader in Storage and Computing Innovations Worldwide

AMI Product Catalog. A Leader in Storage and Computing Innovations Worldwide AMI Product Catalog A Leader in Storage and Computing Innovations Worldwide American Megatrends Inc. 5555 Oakbrook Parkway, Suite 200 Norcross, GA 30093 Main: 770.246.8600 Sales: 800.828.9264 Tech Support:

More information

QuickPCI POST Diagnostic Card USER MANUAL.

QuickPCI POST Diagnostic Card USER MANUAL. QuickPCI POST Diagnostic Card USER MANUAL 2 Table of contents: Introduction...5 AWARD Elite (Version 4.51PG):...8 A WARD Version 6.0 (i810):...11 AMI Win BIOS:...18 AMI Ez-Flex BIOS:...22 Phoenix 4.0 BIOS:...27

More information

RTD cpumodule LX-Series Migration Guide

RTD cpumodule LX-Series Migration Guide RTD cpumodule LX-Series Migration Guide ISO9001 and AS9100 Certified SWM-640000023 Rev. D Page 1 of 9 Revision History Rev. A 02/29/2007 Preliminary Draft Rev. B 06/23/2008 Added information about the

More information

Experiment #0. PC Hardware and Operating Systems

Experiment #0. PC Hardware and Operating Systems Experiment #0 PC Hardware and Operating Systems Objective: The objective of this experiment is to introduce the operating systems and different hardware components of a microcomputer. Equipment: Microcomputer

More information

BIOS UPDATES Click to scan for Bios Updates

BIOS UPDATES Click to scan for Bios Updates Phoenix BIOS Beep - BIOS Central 1 di 16 13/02/2012 19:45 Home Forums About Us Awards Contact Us Upgrade your BIOS BIOS UPDATES Click to scan for Bios Updates BIOS Post: Acer BIOS Post ALR BIOS Post AMIT/AMI

More information

N Series BIOS BIOS SETUP UTILITY

N Series BIOS BIOS SETUP UTILITY BIOS SECTION N3530 LifeBook N Series Notebook BIOS N Series BIOS BIOS SETUP UTILITY The BIOS Setup Utility is a program that sets up the operating environment for your notebook. Your BIOS is set at the

More information

Fujitsu LifeBook E Series

Fujitsu LifeBook E Series Fujitsu LifeBook E Series BIOS Guide LifeBook E Series Model: E8420 Document Date: 07/10/2008 Document Part Number: FPC58-1911-01 FUJITSU COMPUTER SYSTEMS CORPORATION 1 LifeBook E Series BIOS E Series

More information

ROM (read-only memory) is a type of memory that stores data even when the main computer power is off.

ROM (read-only memory) is a type of memory that stores data even when the main computer power is off. ROM (read-only memory) is a type of memory that stores data even when the main computer power is off. This is necessary so that the system can access the data it needs to start up. When stored in ROM,

More information