Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
[REQUEST] Add AHCI option to mod bios fo...
Last Post: Jelges
Today 08:07 PM
» Replies: 1
» Views: 2666
Gigabyte GA-G33-DS3R: USB Boot
Last Post: dinix
Today 10:37 AM
» Replies: 0
» Views: 101
Optiplex 7060 SFF 9th Generation Intel C...
Last Post: DeathBringer
08-31-2025 01:59 AM
» Replies: 68
» Views: 35190
Bios Powered classmate
Last Post: MosheNessi
08-28-2025 08:08 AM
» Replies: 0
» Views: 815
[REQUEST] Lenovo Thinkpad X12 Detachable...
Last Post: Kokoko123
08-28-2025 12:48 AM
» Replies: 0
» Views: 683
[REQUEST] Unlock advanced options to HP ...
Last Post: huguito
08-26-2025 02:57 PM
» Replies: 0
» Views: 996
[REQUEST] Dell Precision T3500 BIOS Unlo...
Last Post: DEX0ZEN
08-25-2025 01:30 PM
» Replies: 45
» Views: 33777
[REQUEST] Samsung NP900X4D AES-NI enable...
Last Post: Vesly
08-23-2025 05:25 PM
» Replies: 63
» Views: 30289
Acer Veriton X2640G Xeon support
Last Post: hercares
08-19-2025 03:21 PM
» Replies: 5
» Views: 1563
[Request] Lenovo v520s sff unit bios sup...
Last Post: DeathBringer
08-17-2025 02:05 PM
» Replies: 15
» Views: 3046
[Success] [Bios Mod] Dell XPS L321X EFI ...
Last Post: tuwumo
08-17-2025 11:37 AM
» Replies: 18
» Views: 12018
Samsung N140 JA05IT AHCI
Last Post: Ranmamez
08-12-2025 05:22 PM
» Replies: 0
» Views: 2132
MSI MS-9661 bios unlock/mod request
Last Post: Hunter2
08-12-2025 08:07 AM
» Replies: 3
» Views: 5324
Dell XPS m1730 - Unlock Power Supply che...
Last Post: Iljalein
08-11-2025 03:14 PM
» Replies: 7
» Views: 15446
[REQUEST] Samsung RV520 BIOS Unlock
Last Post: Dudu2002
08-08-2025 07:51 PM
» Replies: 8
» Views: 7048
[REQUEST] Asus G733PZ BIOS Unlock
Last Post: xfinity
08-07-2025 11:22 AM
» Replies: 0
» Views: 2730
[REQUEST] HP Envy 15-k203nl bios mod
Last Post: Maxinator500
08-05-2025 07:20 AM
» Replies: 3
» Views: 3786
[REQUEST] Acer Nitro 5 AN515-54 BIOS Unl...
Last Post: Dudu2002
07-31-2025 02:57 PM
» Replies: 133
» Views: 78288
[REQUEST] HP Stream 13 (13-c100nm) White...
Last Post: krusic22
07-29-2025 06:42 PM
» Replies: 0
» Views: 3006
Acer Aspire 7741G BIOS
Last Post: lucky42
07-28-2025 08:53 AM
» Replies: 1
» Views: 3284

[REQUEST] IBM System x3400 M3 7379 & AES-NI
#1
Hi people,

I have the same problem. My server is System x3400 M3 7379 with one Xeon E5606 processor. This processor support AES-NI.
I updated uEFI firmware but again the same problem occurs. In uEFI settings there is no option for AES-NI Enable/Disable.

Firmware Type Version String Release Date
IMM YUOOH5A-1.55 01/15/2018
UEFI Y4E160A-1.15 07/31/2013
DSA DSYT92O-4.01 02/01/2012

On IBM site it says it supports AES-NI: https://lenovopress.com/tips0808

@AdamBearWA: Did you solve this problem?
@DeathBringer: What is above .fv file and how to put it in bios?
find
quote
#2
remark78
Make the dump of BIOS by a hardware programmer.
find
quote
#3
I don't have a hardware programmer.
Can not solve the problem without it?
find
quote
#4
(04-03-2018, 09:31 AM)remark78 Wrote: I don't have a hardware programmer.
Can not solve the problem without it?
No
find
quote
#5
Ok, which tool is needed for this?
Attached is a picture of a BIOS chip.


Attached Files Thumbnail(s)
   
find
quote
#6
A hardware programmer (e.g. CH341A) and SOP16 flash clip to DIP8.
find
quote
#7
A have a problem to find SOP16 to DIP8 test clip in my country. Can I use SOP16 to DIP16 test clip and with dupont wire jumpercables connect to CH341a?
find
quote
#8
I think "yes" but I don't know suitable pinout.
find
quote
#9
(04-03-2018, 08:59 AM)DeathBringer Wrote: remark78
Make the dump of BIOS by a hardware programmer.
I join the request.
The code can be taken from the firmware file: https://drive.google.com/open?id=18UHxW8...SrArprkYZj
This update file is essentially a tar archive.
AES-NI function is disabled in the "FvDxe.fv" volume, in the DXE driver MpCpu.
There, searching for the sequence "B9 3C 01" we find the following code:
Code:
.text:0000000000002F36                 mov     ecx, 13Ch
.text:0000000000002F3B                 call    RdMSR_res_in_rax
.text:0000000000002F40                 test    al, 1
.text:0000000000002F42                 jnz     short loc_2F62
.text:0000000000002F44                 shr     rbx, 0Eh
.text:0000000000002F48                 mov     ecx, 13Ch
.text:0000000000002F4D                 not     ebx
.text:0000000000002F4F                 mov     dl, bl
.text:0000000000002F51                 xor     dl, al
.text:0000000000002F53                 and     edx, 2
.text:0000000000002F56                 xor     rdx, rax
.text:0000000000002F59                 or      rdx, 1
.text:0000000000002F5D                 call    WrMSR_val_rdx
It's easy to change the code. The question is how to pack it back?
find
quote
#10
Is there a solution?
find
quote


Forum Jump:


Users browsing this thread: 2 Guest(s)