Pm1643a firmware

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

Jonasz

Member
Sep 3, 2023
34
5
8
Don't think so, it has to be done with a specific tool from samsung for a cryptographic reset.
 

michel333

Member
Apr 9, 2023
143
15
18
Hi everyone, got refurbished ddn ssd pm1643a and i did not suceed to make them work , tried all fw version (gxa0 , gxa2 and gxa5) and all sector sizes. The ssd still refuse to be partitioned and writted after that :’( .. someone managed to get them work??
Regards
hi, mines worked from the start, fw gxa0, i'm not sure what is different
are there two partitions on each ssd ? not sure if it makes a difference, if you need first to format/delete each partitions, and only then format the disk ?! ... maybe there is some protection that activates when trying to format the disk directly ?!

That is the question?
Had one ssd that i tried to format and did not work! And the others i deleted each partition first, then it could format.

Also, you have better chances if you try to format in command line; Maybe try these commands:

# Erase all blocks if supported
sudo blkdiscard /dev/sdX

# Low-level format (quick format: doesn't overwrite everything, just reinitializes)
sudo sg_format --format --size=512 /dev/sdX

# If you want to secure erase (can take a long time), use:
# sudo sg_format --format --size=512 --six /dev/sdX

# Reset SAS device
sudo sg_reset /dev/sdX

# Identify the drive
sudo sg_inq /dev/sdX

# List current partition table
sudo fdisk -l /dev/sdX

# Create a GPT partition table
sudo parted /dev/sdX mklabel gpt

# Create a single primary EXT4 partition
sudo parted -a opt /dev/sdX mkpart primary ext4 0% 100%

# Format the partition
sudo mkfs.ext4 /dev/sdX1
 

areg

New Member
Aug 11, 2025
3
0
1
hi, mines worked from the start, fw gxa0, i'm not sure what is different
are there two partitions on each ssd ? not sure if it makes a difference, if you need first to format/delete each partitions, and only then format the disk ?! ... maybe there is some protection that activates when trying to format the disk directly ?!

That is the question?
Had one ssd that i tried to format and did not work! And the others i deleted each partition first, then it could format.

Also, you have better chances if you try to format in command line; Maybe try these commands:

# Erase all blocks if supported
sudo blkdiscard /dev/sdX

# Low-level format (quick format: doesn't overwrite everything, just reinitializes)
sudo sg_format --format --size=512 /dev/sdX

# If you want to secure erase (can take a long time), use:
# sudo sg_format --format --size=512 --six /dev/sdX

# Reset SAS device
sudo sg_reset /dev/sdX

# Identify the drive
sudo sg_inq /dev/sdX

# List current partition table
sudo fdisk -l /dev/sdX

# Create a GPT partition table
sudo parted /dev/sdX mklabel gpt

# Create a single primary EXT4 partition
sudo parted -a opt /dev/sdX mkpart primary ext4 0% 100%

# Format the partition
sudo mkfs.ext4 /dev/sdX1
Nop it keep to refuse to be partitioned

root@pvenas:~# parted /dev/sde mklabel gpt
Error: Input/output error during write on /dev/sde

and dmesg :
[ 3352.182324] sd 0:0:4:0: [sde] tag#6 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s
[ 3352.182325] sd 0:0:4:0: [sde] tag#6 Sense Key : Illegal Request [current] [descriptor]
[ 3352.182327] sd 0:0:4:0: [sde] tag#6 Add. Sense: Invalid field in cdb
[ 3352.182329] sd 0:0:4:0: [sde] tag#6 CDB: Write(16) 8a 00 00 00 00 03 7e 3e 92 88 00 00 00 28 00 00
[ 3352.182330] critical target error, dev sde, sector 15002931848 op 0x1:(WRITE) flags 0x800 phys_seg 5 prio class 0


it's was a ddn disk so it might be a lock in issue.
 
Last edited: