Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

Computer is stuck at POST after upgrade...


  • Please log in to reply

#1
UV_Power

UV_Power

    Member

  • Member
  • PipPipPip
  • 391 posts
Hello everyone,

I have just transferred my old computer into a new Anted Nine Hundred with a TT Big Tyhpoon and now my computer doesn't get past the POST.

Here is what happens. When I first turned on the computer it said my Athlon XP 2600+ was running at 1250MHz and then right before the "Detecting IDE Drives" message comes up, it just sits there. The last message I see is "Dual Channel Enabled". At that point I can't even get into the BIOS. I've tried different connections, but for every possible connection, it just gets stuck right there. The only way the computer gets past everything (and lets me into BIOS) is if ALL my IDE drives are unplugged. So, I went into BIOS and changed the CPU settings back to it's normal speed and now with everything unplugged, it gets past the POST, but it (naturally) can't find my hard drive and says INSERT SYSTEM DISK... So, I turn off the machine and plug in the hard drives and it gets stuck at the same place again.

I have tried different IDE Cables, different combinations (using only one hard drive, using only one DVD Drive, etc....), a different PSU (550W), and I have triple checked all my connections and jumpers. So, what am I missing? :blink:

Thanks in advance! :whistling:
  • 0

Advertisements


#2
SRX660

SRX660

    motto - Just get-er-done

  • Technician
  • 4,345 posts
Heres how a computer boots up.

The power up process for a computer.

1.Power supply switched on.
The power supply performs a self-test. When all voltages and current levels are acceptable, the supply indicates that the power is stable and sends the Power Good signal to the processor. The time from switch-on to Power Good is usually between .1 and .5 seconds.

2.The microprocessor timer chip receives the Power Good signal.
With the arrival of the Power Good signal the timer chip stops sending reset signals to the processor allowing the CPU to begin operations.

3.The CPU starts executing the ROM BIOS code.
The CPU loads the ROM BIOS starting at ROM memory address FFFF:0000 which is only 16 bytes from the top of ROM memory. As such it contains only a JMP (jump) instruction that points to the actual address of the ROM BIOS code.

4.The ROM BIOS performs a basic test of central hardware to verify basic functionality.
Any errors that occur at this point in the boot process will be reported by means of 'beep-codes' because the video subsystem has not yet been initialized.

5.The BIOS searches for adapters that may need to load their own ROM BIOS routines.
Video adapters provide the most common source of adapter ROM BIOS. The start-up BIOS routines scan memory addresses C000:0000 through C780:0000 to find video ROM. An error loading any adapter ROM generates an error such as:

XXXX ROM Error

where XXXX represents the segment address of the failed module.

6.The ROM BIOS checks to see if this is a 'cold-start' or a 'warm-start'
To determine whether this is a warm-start or a cold start the ROM BIOS startup routines check the value of two bytes located at memory location 0000:0472. Any value other than 1234h indicates that this is a cold-start.

7.If this is a cold-start the ROM BIOS executes a full POST (Power On Self Test). If this is a warm-start the memory test portion of the POST is switched off.
The POST can be broken down into three components:
The Video Test initializes the video adapter, tests the video card and video memory, and displays configuration information or any errors.
The BIOS Identification displays the BIOS version, manufacturer, and date.
The Memory Test tests the memory chips and displays a running sum of installed memory.
Errors the occur during the POST can be classified as either 'fatal' or 'non-fatal'. A non-fatal error will typically display an error message on screen and allow the system to continue the boot process. A fatal error, on the other hand, stops the process of booting the computer and is generally signaled by a series of beep-codes.

8.The BIOS locates and reads the configuration information stored in CMOS.
CMOS (which stands for Complementary Metal-Oxide Semiconductor) is a small area of memory (64 bytes) which is maintained by the current of a small battery attached to the motherboard. Most importantly for the ROM BIOS startup routines CMOS indicates the order in which drives should be examined for an operating systems - floppy first, CD-Rom first, or fixed disk first.

Fixed Disk

9.If the first bootable disk is a fixed disk the BIOS examines the very first sector of the disk for a Master Boot Record (MBR). For a floppy the BIOS looks for a Boot Record in the very first sector.
On a fixed disk the Master Boot Record occupies the very first sector at cylinder 0, head 0, sector 1. It is 512 bytes in size. If this sector is found it is loaded into memory at address 0000:7C00 and tested for a valid signature. A valid signature would be the value 55AAh in the last two bytes. Lacking an MBR or a valid signature the boot process halts with an error message which might read: NO ROM BASIC - SYSTEM HALTED
A Master Boot Record is made up of two parts - the partition table which describes the layout of the fixed disk and the partition loader code which includes instructions for continuing the boot process.

MBR

10.With a valid MBR loaded into memory the BIOS transfers control of the boot process to the partition loader code that takes up most of the 512 bytes of the MBR.
The process of installing multiple operating systems on a single PC usually involves replacing the original partition loader code with a Boot Loader program that allows the user to select the specific fixed disk to load in the next step of the process

Partition Table

11.The partition loader (or Boot Loader) examines the partition table for a partition marked as active. The partition loader then searches the very first sector of that partition for a Boot Record.
The Boot Record is also 512 bytes and contains a table that describes the characteristics of the partition (number of bytes per sectors, number of sectors per cluster, etc.) and also the jump code that locates the first of the operating system files (IO.SYS in DOS).

Operating System
Boot Record

12.The active partition's boot record is checked for a valid boot signature and if found the boot sector code is executed as a program.
The loading of Windows XP is controlled by the file NTLDR which is a hidden, system file that resides in the root directory of the system partition. NTLDR will load XP in four stages:

1) Initial Boot Loader Phase
2) Operating System selection
3) Hardware Detection
4) Configuration Selection

NTLDR
Initial Phase

13. During the initial phase NTLDR switches the processor from real-mode to protected mode which places the processor in 32-bit memory mode and turns memory paging on. It then loads the appropriate mini-file system drivers to allow NTLDR to load files from a partition formatted with any of the files systems supported by XP.
Windows XP supports partitions formatted with either the FAT-16, FAT-32, or NTFS file system.

NTLDR
OS Selection
BOOT.INI

14.If the file BOOT.INI is located in the root directory NTLDR will read it's contents into memory. If BOOT.INI contains entries for more than one operating system NTLDR will stop the boot sequence at this point, display a menu of choices, and wait for a specified period of time for the user to make a selection.
f the file BOOT.INI is not found in the root directory NTLDR will continue the boot sequence and attempt to load XP from the first partition of the first disk, typically C:\.

F8

15.Assuming that the operating system being loaded is Windows NT, 2000, or XP pressing F8 at this stage of the boot sequence to display various boot options including "Safe Mode" and "Last Known Good Configuration"
After each successful boot sequence XP makes a copy of the current combination of driver and system settings and stores it as the Last Known Good Configuration. This collection of settings can be used to boot the system subsequently if the installation of some new device has caused a boot failure.

NTLDR
Hardware Detection

16.If the selected operating system is XP, NTLDR will continue the boot process by locating and loading the DOS based NTDETECT.COM program to perform hardware detection.
NTDETECT.COM collects a list of currently installed hardware components and returns this list for later inclusion in the registry under the HKEY_LOCAL_MACHINE\HARDWARE key.

NTLDR
Configuration Selection

17.If this computer has more than one defined Hardware Profile the NTLDR program will stop at this point and display the Hardware Profiles/Configuration Recovery menu.
Lacking more than one Hardware Profile NTLDR will skip this step and not display this menu.

Kernel Load

18. After selecting a hardware configuration (if necessary) NTLDR begins loading the XP kernel (NTOSKRNL.EXE).
During the loading of the kernel (but before it is initialized) NTLDR remains in control of the computer. The screen is cleared and a series of white rectangles progress across the bottom of the screen. NTLDR also loads the Hardware Abstraction Layer (HAL.DLL) at this time which will insulate the kernel from hardware. Both files are located in the \system32 directory.

NTLDR
Boot
Device Drivers

19. NTLDR now loads device drivers that are marked as boot devices. With the loading of these drivers NTLDR relinquishes control of the computer.
Every driver has a registry subkey entry under HKEY_LOCAL_MACHINE
\SYSTEM\Services. Any driver that has a Start value of
SERVICE_BOOT_START is considered a device to start at boot up. A period is printed to the screen for each loaded file (unless the /SOS switch is used in which case file names are printed.

Kernel Initialization

20.NTOSKRNL goes through two phases in its boot process - phase 0 and phase 1. Phase 0 initializes just enough of the microkernel and Executive subsystems so that basic services required for the completion of initialization become available.. At this point, the system display a graphical screen with a status bar indicating load status.
XP disables interrupts during phase 0 and enables them before phase 1. The HAL is called to prepare the interrupt controller; the Memory Manager, Object Manager, Security Reference Monitor, and Process Manager are initialized.

Phase 1 begins when the HAL is called to prepare the system to accept interrupts from devices. If more than one processor is present the additional processors are initialized at this point. All Executive subsystems are reinitialized in the following order:

1) Object Manager
2) Executive
3) Microkernel
4) Security Reference Monitor
5) Memory Manager
6) Cache Manager
7) LPCS
8) I/O Manager
9) Process Manager

I/O Manager

21. The initialization of I/O Manager begins the process of loading all the systems driver files. Picking up where NTLDR left off, it first finishes the loading of boot devices. Next it assembles a prioritized list of drivers and attempts to load each in turn.
The failure of a driver to load may prompt NT to reboot and try to start the system using the values stored in the Last Known Good Configuration.

SMSS

22.The last task for phase 1 initialization of the kernel is to launch the Session Manager Subsystem (SMSS). SMSS is responsible for creating the user-mode environment that provides the visible interface to NT.
SMSS runs in user-mode but unlike other user-mode applications SMSS is considered a trusted part of the operating system and is also a native application (it uses only core Executive functions). These two features allow SMSS to start the graphics subsystem and login processes.

win32k.sys

23.SMSS loads the win32k.sys device driver which implements the Win32 graphics subsystem.
Shortly after win32k.sys starts it switches the screen into graphics mode. The Services Subsystem now starts all services mark as Auto Start. Once all devices and services are started the boot is deemed successful and this configuration is saved as the Last Known Good Configuration.

Logon

24. The XP boot process is not considered complete until a user has successfully logged onto the system. The process is begun by the WINLOGON.EXE file which is loaded as a service by the kernel and continued by the Local Security Authority (LSASS.EXE) which displays the logon dialog box.
his dialog box appears at approximately the time that the Services Subsystem starts the network service.


If you can find where your computer stops you know what the problem is. It sounds like you have lost the chipset drivers so your computer does not see the hard drive. No#7 is where the computer reads the memory and after that the CMOS is read. There is where you start looking for your problem. At this point i would change the CMOS battery to see if it helps( the coin sized one on the motherboard). You may have inadvertently damaged the motherboard by static electricity. This is easily done and i have had it happen a few times( once by just walking across a living room rug and touching the video card before touching the computer case)( instant dead video card).

SRX660
  • 0

#3
Neil Jones

Neil Jones

    Member 5k

  • Member
  • PipPipPipPipPipPipPipPip
  • 8,476 posts
If you have four drives, make sure the hard drives are set to master and slave accordingly (don't use Cable Select on HDs or CD Units if you can help it, some boards really don't like it) and also check again for the CD units - ensure one is on Master and one is on Slave.

[quote name='http://www.pcguide.com/ref/hdd/if/ide/confCS-c.html']In fact, if cable select had actually caught on, it would have been great. The problem is that it has never been widely used, and this lack of universality has made cable select unattractive, which is a bit of a chicken and egg situation. Since cable select was never accepted in the industry, most drives come, by default, with the drive jumpered as a master or single drive. This means that to enable cable select, you have to change a jumper anyway, which obviously negates some of the advantage.

But the biggest reason why cable select never caught on was the cable itself. From the very beginning, all 40-conductor IDE/ATA cables should have been made so that they would work with cable select. There's actually no need to have different cable types, because if you set a drive to "master" or "slave" explicitly, it just ignores the CSEL setting. So a cable select cable can be used either way: regular jumpering or cable select.

Unfortunately, regular 40-conductor IDE/ATA cables don't support cable select. (Why this came about I do not know, but I suspect that some bean counter determined they could save five cents on each PC by doing this.) So to use cable select you need a special cable, and these are of course non-standard, making them a special purchase. Also, many people don't understand cable select, nor do they realize it needs a special cable. If you set both drives to "CS" and then use them on a regular (non-cable-select) IDE cable, both drives will configure themselves as "master", causing a configuration conflict.[/quote]
  • 0

#4
UV_Power

UV_Power

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 391 posts
Changed the CMOS battery and already made sure the jumpers are set to Master and Slave accordingly with both the hard drives and the DVD Drives. Same result.

It's like it gets to the part where the IDE Devices should be read and chokes. I can unplug all of them and it goes through fine. Just says "None" for all IDE Devices and goes through the rest of the boot process and when the OS should start it just says "INSERT SYSTEM DISK AND PRESS ENTER".

Edited by UV_Power, 07 April 2007 - 07:55 PM.

  • 0

#5
SRX660

SRX660

    motto - Just get-er-done

  • Technician
  • 4,345 posts
Still sounds like the BIOS has been corrupted badly. Either go for a bios install, or spring for another motherboard. At this point reflashing the bios cannot hurt. I don't see how you can do much of anything else if you can't even get to the bios.

http://www.pcnineone...biosflash1.html

SRX660
  • 0

#6
UV_Power

UV_Power

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 391 posts
Well, I can get into the BIOS just fine when all the IDE devices are unplugged, and everything looks good when I am in there (except for the missing IDE Devices) so I don't think re-flashing the BIOS would do much.
  • 0

#7
UV_Power

UV_Power

    Member

  • Topic Starter
  • Member
  • PipPipPip
  • 391 posts
For lack of a better idea, I went out and bought new IDE cables from the store, which is what I was going to do anyways since I changed my case. After plugging them in, everything worked great. I was shocked. I used other IDE cables that I had lying around (and the one from another working computer) and they didn't work, but new ones from the store worked fine.

It's a mystery to me, but thanks for the help everyone. G2G is the best! :blink:

BTW, in case your wondering, my CPU now runs an average of 12 degrees C cooler now after the switch, and my board runs 2 degrees cooler. :whistling:

Edited by UV_Power, 10 April 2007 - 06:48 PM.

  • 0






Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP