A computer components & hardware forum. HardwareBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » HardwareBanter forum » General Hardware & Peripherals » Storage (alternative)
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

120GB PATA drive changes model number



 
 
Thread Tools Display Modes
  #1  
Old October 22nd 12, 09:32 PM posted to comp.sys.ibm.pc.hardware.storage
[email protected]
external usenet poster
 
Posts: 143
Default 120GB PATA drive changes model number

What would cause an old Western Digital PATA IDE 120GB drive to change its model name from WD1200BB-22FTA to WD1210CB-23-23FUA1 !!!!!!!!!! (exclamation marks given as part of the name)?

Also the maximum 48-bit LBA for the drive went from 234,441,648 to 72,058,693,783,997,360, and Paragon backup reported the drive's capacity at around 600GB.

This happened with the drive connected to the motherboard's built-in PATA controller (Intel G-41 chipset) or a Silicon Image SiL680A PCI controller card.

The drive seems to be back to normal now, with the original model number and LBA.

  #2  
Old October 22nd 12, 09:44 PM posted to comp.sys.ibm.pc.hardware.storage
Franc Zabkar
external usenet poster
 
Posts: 1,118
Default 120GB PATA drive changes model number

On Mon, 22 Oct 2012 13:32:35 -0700 (PDT),
put finger to keyboard and composed:

What would cause an old Western Digital PATA IDE 120GB drive to change its model name from WD1200BB-22FTA to WD1210CB-23-23FUA1 !!!!!!!!!! (exclamation marks given as part of the name)?

Also the maximum 48-bit LBA for the drive went from 234,441,648 to 72,058,693,783,997,360, and Paragon backup reported the drive's capacity at around 600GB.

This happened with the drive connected to the motherboard's built-in PATA controller (Intel G-41 chipset) or a Silicon Image SiL680A PCI controller card.

The drive seems to be back to normal now, with the original model number and LBA.


It looks like a stuck bit on the IDE interface. The IDE interface is
16 bits wide, and each character occupies 8 bits. Therefore a bad bit
would result in an error in alternate characters.

WD1200BB-22FTA
WD1210CB-23FUA
^ ^ ^ ^
12121212121212

As you can see, there is an error in the first byte of each pair. The
bit difference points to an error in the least significant bit.

C:\debug
-e 100 "WD1200BB-22FTA"
-e 110 "WD1210CB-23FUA"
-d 100 11f
100 57 44 31 32 30 30 42 42-2D 32 32 46 54 41 WD1200BB-22FTA
110 57 44 31 32 31 30 43 42-2D 32 33 46 55 41 WD1210CB-23FUA
-q

Therefore I suspect that DD8 (pin #4) in the IDE interface has a
problem. I would reseat the IDE cable at each end, and I would examine
the pin for a dry solder joint. Also examine the associated resistor.

http://pinouts.ru/HD/IdeInternal_pinout.shtml

- Franc Zabkar
--
Please remove one 'i' from my address when replying by email.
  #3  
Old October 22nd 12, 09:48 PM posted to comp.sys.ibm.pc.hardware.storage
Franc Zabkar
external usenet poster
 
Posts: 1,118
Default 120GB PATA drive changes model number

On Tue, 23 Oct 2012 07:44:55 +1100, Franc Zabkar
put finger to keyboard and composed:

As you can see, there is an error in the first byte of each pair. The
bit difference points to an error in the least significant bit.


BTW, the bit difference between an ASCII space and an exclamation mark
is also in the lowest bit, ie 0x20 and 0x21.

- Franc Zabkar
--
Please remove one 'i' from my address when replying by email.
  #5  
Old October 23rd 12, 11:12 AM posted to comp.sys.ibm.pc.hardware.storage
[email protected]
external usenet poster
 
Posts: 143
Default 120GB PATA drive changes model number

On Monday, October 22, 2012 1:44:56 PM UTC-7, Franc Zabkar wrote:

On Mon, 22 Oct 2012 13:32:35 -0700 (PDT), put finger to keyboard and composed:

What would cause an old Western Digital PATA IDE 120GB drive to
change its model name from WD1200BB-22FTA to WD1210CB-23-
23FUA1 !!!!!!!!!! (exclamation marks given as part of the name)?
Also the maximum 48-bit LBA for the drive went from 234,441,648 to
72,058,693,783,997,360, and Paragon backup reported the drive's
capacity at around 600GB.


It looks like a stuck bit on the IDE interface. The IDE
interface is 16 bits wide, and each character occupies 8 bits.
Therefore a bad bit would result in an error in alternate
characters. WD1200BB-22FTA WD1210CB-23FUA ^ ^ ^ ^ 12121212121212
As you can see, there is an error in the first byte of each pair.
The bit difference points to an error in the least significant bit.
C:\debug -e 100 "WD1200BB-22FTA" -e 110 "WD1210CB-23FUA" -d
100 11f 100 57 44 31 32 30 30 42 42-2D 32 32 46 54 41
WD1200BB-22FTA
110 57 44 31 32 31 30 43 42-2D 32 33 46 55 41
WD1210CB-23FUA -q
Therefore I suspect that DD8 (pin #4) in the IDE interface has a
problem. I would reseat the IDE cable at each end, and I would
examine the pin for a dry solder joint. Also examine the
associated resistor.
http://pinouts.ru/HD/IdeInternal_pinout.shtml

Great explanation. I had been under the mistaken impression that
parity or even ECC was sent along with the data and commands.
Changing cables didn't help, so I feared the drive had failed (would
be my first drive failure), but I think the problem was due to using
the PCI drive controller for the hard disks and the motherboard's
PATA controller for the CD drive, even with programs that didn't
use Windows. Every PCI HD controller I've tried has revealed a quirk
under some conditions.
  #7  
Old October 24th 12, 02:46 AM posted to comp.sys.ibm.pc.hardware.storage
Joe Pfeiffer
external usenet poster
 
Posts: 121
Default 120GB PATA drive changes model number

Franc Zabkar writes:

On Tue, 23 Oct 2012 07:44:55 +1100, Franc Zabkar
put finger to keyboard and composed:

As you can see, there is an error in the first byte of each pair. The
bit difference points to an error in the least significant bit.


BTW, the bit difference between an ASCII space and an exclamation mark
is also in the lowest bit, ie 0x20 and 0x21.


Very nicely done. I don't know if I ever would have noticed that and
diagnosed his likely problem.

  #8  
Old October 24th 12, 04:59 AM posted to comp.sys.ibm.pc.hardware.storage
Franc Zabkar
external usenet poster
 
Posts: 1,118
Default 120GB PATA drive changes model number

On Tue, 23 Oct 2012 19:46:55 -0600, Joe Pfeiffer
put finger to keyboard and composed:

I don't know if I ever would have noticed that and
diagnosed his likely problem.


I spent a large part of my career chasing bad bits in digital logic.
One of the first things I was taught was to compare the received and
expected data. I guess it's second nature to me now.

Actually, I have seen the OP's problem several times before, in
several forums, and I've experienced it once personally. In fact I
coincidentally encountered a similar question about 10 minutes before
posting he

http://forum.hddguru.com/galaxy2d-di...as-t24213.html

- Franc Zabkar
--
Please remove one 'i' from my address when replying by email.
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PATA vs SATA - Same model, same performance??? Noozer General 11 March 5th 07 11:41 AM
compaq model number help Earl Compaq Computers 5 December 19th 04 04:30 AM
Western Digital Hard Drive model number suffix - what does it mean? Allen Huffman Storage (alternative) 2 July 8th 04 08:37 AM
8KNXP - No ICH5R - 120GB SEAGATE SATA remapped as PATA on XP Azania Gigabyte Motherboards 5 October 5th 03 04:27 PM


All times are GMT +1. The time now is 06:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 HardwareBanter.
The comments are property of their posters.